File size: 942 Bytes
58ce155 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | <!--
Matomo - free/libre analytics platform
@link https://matomo.org
@license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
-->
<template>
<div class="system-check-legend">
<h2>{{ translate('Installation_Legend') }}</h2>
<p>
<span class="icon-ok"></span>
{{ translate('General_Ok') }}
</p>
<p>
<span class="icon-warning"></span>
{{ translate('General_Warning') }}: {{ translate('Installation_SystemCheckWarning') }}
</p>
<p>
<span class="icon-error"></span>
{{ translate('General_Error') }}: {{ translate('Installation_SystemCheckError') }}
</p>
</div>
<p class="next-step">
<a :href="url">{{ translate('General_RefreshPage') }} »</a>
</p>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
props: {
url: {
type: String,
required: true,
},
},
});
</script>
|