-
-
+
+ {{$t('user.users')}}
+
{{ statistics.totalUsers }}
@@ -43,7 +46,7 @@
mdi-account
- Manage Users
+ {{$t('user.manage-users')}}
@@ -53,7 +56,9 @@
-
+
+ {{$t('group.groups')}}
+
{{ statistics.totalGroups }}
@@ -64,7 +69,7 @@
mdi-account-group
- Manage Groups
+ {{$t('group.manage-groups')}}
diff --git a/frontend/src/pages/Admin/Profile/APITokenCard.vue b/frontend/src/pages/Admin/Profile/APITokenCard.vue
index 3855c03b7..84dd40280 100644
--- a/frontend/src/pages/Admin/Profile/APITokenCard.vue
+++ b/frontend/src/pages/Admin/Profile/APITokenCard.vue
@@ -2,14 +2,16 @@
-
+
+ {{$t('settings.token.api-tokens')}}
+
{{ user.tokens.length }}
- ACTIVE TOKENS
+ {{$t('settings.token.active-tokens')}}
@@ -38,7 +40,7 @@
-
+
- Copy this token for use with an external application. This token will not be viewable again.
+ {{$t('settings.token.copy-this-token-for-use-with-an-external-application-this-token-will-not-be-viewable-again')}}
@@ -107,9 +109,9 @@ export default {
},
buttonText() {
if (this.createdToken === "") {
- return "Create";
+ return this.$t('general.create');
} else {
- return "Close";
+ return this.$t('general.close');
}
},
},
diff --git a/frontend/src/pages/Admin/Profile/ProfileGroupCard.vue b/frontend/src/pages/Admin/Profile/ProfileGroupCard.vue
index ce2c2abf7..36910d778 100644
--- a/frontend/src/pages/Admin/Profile/ProfileGroupCard.vue
+++ b/frontend/src/pages/Admin/Profile/ProfileGroupCard.vue
@@ -11,7 +11,7 @@
- DINNER TONIGHT
+ {{$t('meal-plan.dinner-tonight')}}
mdi-food-variant
- Mealplan Settings
+ {{$t('meal-plan.mealplan-settings')}}
- MEALPLAN CATEGORIES
+ {{$t('meal-plan.mealplan-categories')}}
{{ $t("meal-plan.only-recipes-with-these-categories-will-be-used-in-meal-plans") }}
@@ -66,7 +66,7 @@
/>
- WEBHOOKS
+ {{$t('settings.webhooks.webhooks-caps')}}
{{
$t(
@@ -93,7 +93,7 @@
mdi-webhook
- New
+ {{$t('general.new')}}
diff --git a/frontend/src/routes/admin.js b/frontend/src/routes/admin.js
index 8036290d7..a0746203e 100644
--- a/frontend/src/routes/admin.js
+++ b/frontend/src/routes/admin.js
@@ -39,7 +39,7 @@ export const adminRoutes = {
path: "manage-users",
component: ManageUsers,
meta: {
- title: "settings.manage-users",
+ title: "user.manage-users",
},
},
{