diff --git a/ui/src/components/statsWidget.vue b/ui/src/components/statsWidget.vue index 858188e..44112ab 100644 --- a/ui/src/components/statsWidget.vue +++ b/ui/src/components/statsWidget.vue @@ -32,15 +32,15 @@ export default { return [ [ { - label: 'Total Expenditure', + label: this.$t('totalexpenses'), value: this.formatCurrency(0, this.user.currency), }, { - label: 'Fillup Costs', + label: this.$t('fillupcost'), value: `${this.formatCurrency(0, this.user.currency)} (0)`, }, { - label: 'Other Expenses', + label: this.$t('otherexpenses'), value: `${this.formatCurrency(0, this.user.currency)} (0)`, }, ], diff --git a/ui/src/locales/de.json b/ui/src/locales/de.json index a99dab2..d394081 100644 --- a/ui/src/locales/de.json +++ b/ui/src/locales/de.json @@ -133,6 +133,7 @@ "showunprocessed": "Zeige unbearbeitete", "unprocessed": "unbearbeitet", "sitesettingdesc": "Ändere die globalen Einstellungen. Diese werden als Standard für neue Benutzer verwendet.", + "settingdesc": "Diese Einstellungen werden als Standard verwendet wenn du eine neue Ausgabe oder eine Tankfüllung erfasst.", "areyousure": "Bist du dir sicher?", "adduser": "Benutzer hinzufügen", "usercreatedsuccessfully": "Benutzer erfolgreich gespeichert", diff --git a/ui/src/locales/en.json b/ui/src/locales/en.json index 6e3940a..96d872b 100644 --- a/ui/src/locales/en.json +++ b/ui/src/locales/en.json @@ -8,7 +8,7 @@ "thisyear": "This year", "alltime": "All Time", "noattachments": "No Attachments so far", - "attachments": "Anhänge", + "attachments": "Attachments", "choosefile": "Choose File", "addattachment": "Add Attachment", "sharedwith": "Shared with", @@ -16,7 +16,7 @@ "you": "You", "addfillup": "Add Fillup", "createfillup": "Create Fillup", - "deletefillup": "Lösche diese Tankfüllung", + "deletefillup": "Delete this fillup", "addexpense": "Add Expense", "createexpense": "Create Expense", "deleteexpense": "Delete this expense", @@ -136,6 +136,7 @@ "showunprocessed": "Show unprocessed only", "unprocessed": "unprocessed", "sitesettingdesc": "Update site level settings. These will be used as default values for new users.", + "settingdesc": "These will be used as default values whenever you create a new fillup or expense.", "areyousure": "Are you sure you want to do this?", "adduser": "Add User", "usercreatedsuccessfully": "User Created Successfully", diff --git a/ui/src/router/views/settings.vue b/ui/src/router/views/settings.vue index fb9e194..f152a82 100644 --- a/ui/src/router/views/settings.vue +++ b/ui/src/router/views/settings.vue @@ -137,7 +137,7 @@ export default { >

- These will be used as default values whenever you create a new fillup or expense. + {{ $t('settingdesc') }}