Skip to content

Commit 6871a40

Browse files
authored
added not translated texts, changed translations
1 parent bb68c8c commit 6871a40

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

ui/src/components/statsWidget.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ export default {
3232
return [
3333
[
3434
{
35-
label: 'Total Expenditure',
35+
label: this.$t('totalexpenses'),
3636
value: this.formatCurrency(0, this.user.currency),
3737
},
3838
{
39-
label: 'Fillup Costs',
39+
label: this.$t('fillupcost'),
4040
value: `${this.formatCurrency(0, this.user.currency)} (0)`,
4141
},
4242
{
43-
label: 'Other Expenses',
43+
label: this.$t('otherexpenses'),
4444
value: `${this.formatCurrency(0, this.user.currency)} (0)`,
4545
},
4646
],

ui/src/locales/de.json

+1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@
133133
"showunprocessed": "Zeige unbearbeitete",
134134
"unprocessed": "unbearbeitet",
135135
"sitesettingdesc": "Ändere die globalen Einstellungen. Diese werden als Standard für neue Benutzer verwendet.",
136+
"settingdesc": "Diese Einstellungen werden als Standard verwendet wenn du eine neue Ausgabe oder eine Tankfüllung erfasst.",
136137
"areyousure": "Bist du dir sicher?",
137138
"adduser": "Benutzer hinzufügen",
138139
"usercreatedsuccessfully": "Benutzer erfolgreich gespeichert",

ui/src/locales/en.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
"thisyear": "This year",
99
"alltime": "All Time",
1010
"noattachments": "No Attachments so far",
11-
"attachments": "Anhänge",
11+
"attachments": "Attachments",
1212
"choosefile": "Choose File",
1313
"addattachment": "Add Attachment",
1414
"sharedwith": "Shared with",
1515
"share": "Share",
1616
"you": "You",
1717
"addfillup": "Add Fillup",
1818
"createfillup": "Create Fillup",
19-
"deletefillup": "Lösche diese Tankfüllung",
19+
"deletefillup": "Delete this fillup",
2020
"addexpense": "Add Expense",
2121
"createexpense": "Create Expense",
2222
"deleteexpense": "Delete this expense",
@@ -136,6 +136,7 @@
136136
"showunprocessed": "Show unprocessed only",
137137
"unprocessed": "unprocessed",
138138
"sitesettingdesc": "Update site level settings. These will be used as default values for new users.",
139+
"settingdesc": "These will be used as default values whenever you create a new fillup or expense.",
139140
"areyousure": "Are you sure you want to do this?",
140141
"adduser": "Add User",
141142
"usercreatedsuccessfully": "User Created Successfully",

ui/src/router/views/settings.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export default {
137137
><div class="column">
138138
<form class="box " @submit.prevent="saveSettings">
139139
<h1 class="subtitle">
140-
These will be used as default values whenever you create a new fillup or expense.
140+
{{ $t('settingdesc') }}
141141
</h1>
142142
<b-field :label="$t('currency')">
143143
<b-autocomplete

0 commit comments

Comments
 (0)