{{ t(item.name) }}
diff --git a/frontend/src/components/UserProfile.vue b/frontend/src/components/UserProfile.vue
index 9345727f3..81310b215 100644
--- a/frontend/src/components/UserProfile.vue
+++ b/frontend/src/components/UserProfile.vue
@@ -26,7 +26,7 @@
- {{ t('userProfile.actions.editLanguage') }}
+ {{ t('userProfile.actions.changeLanguage') }}
diff --git a/frontend/src/i18n/de-DE.json b/frontend/src/i18n/de-DE.json
index d0aa95cbc..29a45947d 100644
--- a/frontend/src/i18n/de-DE.json
+++ b/frontend/src/i18n/de-DE.json
@@ -152,7 +152,7 @@
"userProfile.title": "Profil",
"userProfile.actions.manageAccount": "Account verwalten",
- "userProfile.actions.editLanguage": "Sprache ändern",
+ "userProfile.actions.changeLanguage": "Sprache ändern",
"vaultDetails.manageVault": "Tresor verwalten",
"vaultDetails.description.header": "Beschreibung",
diff --git a/frontend/src/i18n/en-US.json b/frontend/src/i18n/en-US.json
index d776a5fcd..be8bef059 100644
--- a/frontend/src/i18n/en-US.json
+++ b/frontend/src/i18n/en-US.json
@@ -152,7 +152,7 @@
"userProfile.title": "Profile",
"userProfile.actions.manageAccount": "Manage Account",
- "userProfile.actions.editLanguage": "Edit Language",
+ "userProfile.actions.changeLanguage": "Change Language",
"vaultDetails.manageVault": "Manage Vault",
"vaultDetails.warning.archived": "This vault is archived and cannot be unlocked.",
diff --git a/frontend/src/main.ts b/frontend/src/main.ts
index bc65d1b6e..b22319eba 100644
--- a/frontend/src/main.ts
+++ b/frontend/src/main.ts
@@ -12,7 +12,9 @@ const i18n = createI18n({
fallbackLocale: defaultLocale,
messages,
datetimeFormats,
- globalInjection: true
+ globalInjection: true,
+ missingWarn: false,
+ fallbackWarn: false
});
createApp(App)