Skip to content

Commit c28fd98

Browse files
committed
Add a 'matomo.visitsLower' translation. Closes #36
1 parent ce1b1cb commit c28fd98

File tree

6 files changed

+6
-2
lines changed

6 files changed

+6
-2
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/languages/de.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
'matomo.all' => 'Alle',
6666
'matomo.refresh' => 'Aktualisieren',
6767
'matomo.visits' => 'Besuche',
68+
'matomo.visitsLower' => 'Besuche',
6869
'matomo.duration' => 'Dauer',
6970
'matomo.duration.caption' => 'ist die durchschnittliche Besuchsdauer',
7071
'matomo.bounce' => 'Absprung',

lib/languages/en.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
'matomo.all' => 'All',
6666
'matomo.refresh' => 'Refresh',
6767
'matomo.visits' => 'Visits',
68+
'matomo.visitsLower' => 'visits',
6869
'matomo.duration' => 'Duration',
6970
'matomo.duration.caption' => 'is the average visit duration',
7071
'matomo.bounce' => 'Bounce',

lib/languages/es.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
'matomo.all' => 'Todos',
6666
'matomo.refresh' => 'Recargar',
6767
'matomo.visits' => 'Visitas',
68+
'matomo.visitsLower' => 'visitas',
6869
'matomo.duration' => 'Duracion',
6970
'matomo.duration.caption' => 'Es el promedio de duracion',
7071
'matomo.bounce' => 'Rebotes',

lib/languages/fr.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
'matomo.all' => 'Tout',
6666
'matomo.refresh' => 'Actualiser',
6767
'matomo.visits' => 'Visites',
68+
'matomo.visitsLower' => 'visites',
6869
'matomo.duration' => 'Durée',
6970
'matomo.duration.caption' => 'durée moyenne d\'une visite',
7071
'matomo.bounce' => 'Rebond',

src/components/widgets/overview.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<span v-if="loading"><span class="loader"></span></span>
1313
<span v-else>{{current.visits}}</span>
1414
</div>
15-
<div class="details">{{ $t('matomo.visits').toLowerCase() }} {{ $t('matomo.period.'+currentPeriod) }}.</div>
15+
<div class="details">{{ $t('matomo.visitsLower') }} {{ $t('matomo.period.'+currentPeriod) }}.</div>
1616
</div>
1717
<div v-if="isFinite(visitsDiff.diff)" :class="['difference', visitsDiff.status, {grey: loading}]">
1818
<span v-if="loading"><span class="loader"></span></span>

0 commit comments

Comments
 (0)