Skip to content

Commit 6da1288

Browse files
committed
Update localization
1 parent 4933ab1 commit 6da1288

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

.devcontainer/devcontainer.json

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"vscode": {
2424
"extensions": [
2525
"vue.volar",
26-
"Vue.vscode-typescript-vue-plugin",
2726
"Lokalise.i18n-ally",
2827
"heybourn.headwind"
2928
]

src/components/ConsumptionCard.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
>
3434
</v-progress-linear>
3535
</div>
36-
<div>Today:</div>
36+
<div>{{$t('period.today')}}:</div>
3737
<div class="mt-2 items-center rounded-md bg-subgroup p-2">
3838
<div class="text-left">
3939
{{ $t('self_sufficiency') }}

src/translations/de.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"show_menu": "Menü anzeigen/verbergen"
6666
},
6767
"unavailable": "Nicht verfügbar",
68-
"statistics": {
68+
"period": {
6969
"today": "Heute",
7070
"week": "Woche",
7171
"month": "Monat",

src/translations/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"show_menu": "Show/hide menu"
6767
},
6868
"unavailable": "unavailable",
69-
"statistics": {
69+
"period": {
7070
"today": "Today",
7171
"week": "Week",
7272
"month": "Month",

src/translations/nl.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"show_menu": "Toon/verberg menu"
5959
},
6060
"unavailable": "Niet beschikbaar",
61-
"statistics": {
61+
"period": {
6262
"today": "Vandaag",
6363
"week": "Week",
6464
"month": "Maand",

src/views/Statistics.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
<template #append>
88
<v-tabs v-model="activeTab" align-tabs="end" height="100%">
99
<v-tab value="today">
10-
{{ $t('statistics.today') }}
10+
{{ $t('period.today') }}
1111
</v-tab>
1212
<v-tab value="week">
13-
{{ $t('statistics.week') }}
13+
{{ $t('period.week') }}
1414
</v-tab>
1515
<v-tab value="month">
16-
{{ $t('statistics.month') }}
16+
{{ $t('period.month') }}
1717
</v-tab>
1818
<v-tab value="year">
19-
{{ $t('statistics.year') }}
19+
{{ $t('period.year') }}
2020
</v-tab>
2121
</v-tabs>
2222
</template>

0 commit comments

Comments
 (0)