cygnal/src/components/About.vue

20 lines
908 B
Vue
Raw Normal View History

2018-06-25 18:29:57 +02:00
<template>
<v-container fluid>
<v-layout row>
<v-flex xs6 offset-xs3>
<p>{{ $t('about.summary') }}</p>
2018-06-25 18:29:57 +02:00
<h2 class="body-2">{{ $t('about.availableReportsTitle') }}</h2>
2018-06-25 18:29:57 +02:00
<ul class="ml-3">
<li><strong>{{ $t('reportLabels.gcum') }}</strong>{{ $t('misc.spaceBeforeDoublePunctuations') }}: {{ $t('about.gcumDescription') }}</li>
<li><strong>{{ $t('reportLabels.interrupt') }}</strong>{{ $t('misc.spaceBeforeDoublePunctuations') }}: {{ $t('about.interruptDescription') }}</li>
<li><strong>{{ $t('reportLabels.pothole') }}</strong>{{ $t('misc.spaceBeforeDoublePunctuations') }}: {{ $t('about.potholeDescription') }}</li>
2018-06-25 18:29:57 +02:00
</ul>
<p class="mt-3" v-html="$t('about.license')"></p>
2018-06-25 18:29:57 +02:00
</v-flex>
</v-layout>
</v-container>
</template>