HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/matomo.circ/plugins/Installation/vue/src/SystemCheck/SystemCheckLegend.vue
<!--
  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') }} &raquo;</a>
  </p>
</template>

<script lang="ts">
import { defineComponent } from 'vue';

export default defineComponent({
  props: {
    url: {
      type: String,
      required: true,
    },
  },
});
</script>