diff options
author | Git'Fellow <12234510+solracsf@users.noreply.github.com> | 2025-03-22 07:53:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-22 07:53:27 +0100 |
commit | 0b944351e41838fec915c85aef1bb7846038bdc6 (patch) | |
tree | ec09a6637f7a999169f650029ea7441ba4e9cc3a | |
parent | dc01363bc76cf106570df6d2566ad8b70b037a2c (diff) | |
download | nextcloud-server-fixWrongTranslation.tar.gz nextcloud-server-fixWrongTranslation.zip |
fix(user): Some strings not being translatedfixWrongTranslation
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
-rw-r--r-- | apps/settings/src/components/Users/UserRow.vue | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/settings/src/components/Users/UserRow.vue b/apps/settings/src/components/Users/UserRow.vue index 638a1bb39f8..485a139e285 100644 --- a/apps/settings/src/components/Users/UserRow.vue +++ b/apps/settings/src/components/Users/UserRow.vue @@ -576,7 +576,7 @@ export default { }) } catch (error) { // TRANSLATORS This string describes a line manager in the context of an organization - showError(t('setting', 'Failed to update line manager')) + showError(t('settings', 'Failed to update line manager')) console.error(error) } finally { this.loading.manager = false @@ -638,7 +638,7 @@ export default { }) if (this.editedDisplayName === this.user.displayname) { - showSuccess(t('setting', 'Display name was successfully changed')) + showSuccess(t('settings', 'Display name was successfully changed')) } } finally { this.loading.displayName = false @@ -651,7 +651,7 @@ export default { async updatePassword() { this.loading.password = true if (this.editedPassword.length === 0) { - showError(t('setting', "Password can't be empty")) + showError(t('settings', "Password can't be empty")) this.loading.password = false } else { try { @@ -661,7 +661,7 @@ export default { value: this.editedPassword, }) this.editedPassword = '' - showSuccess(t('setting', 'Password was successfully changed')) + showSuccess(t('settings', 'Password was successfully changed')) } finally { this.loading.password = false } @@ -674,7 +674,7 @@ export default { async updateEmail() { this.loading.mailAddress = true if (this.editedMail === '') { - showError(t('setting', "Email can't be empty")) + showError(t('settings', "Email can't be empty")) this.loading.mailAddress = false this.editedMail = this.user.email } else { @@ -686,7 +686,7 @@ export default { }) if (this.editedMail === this.user.email) { - showSuccess(t('setting', 'Email was successfully changed')) + showSuccess(t('settings', 'Email was successfully changed')) } } finally { this.loading.mailAddress = false @@ -890,7 +890,7 @@ export default { sendWelcomeMail() { this.loading.all = true this.$store.dispatch('sendWelcomeMail', this.user.id) - .then(() => showSuccess(t('setting', 'Welcome mail sent!'), { timeout: 2000 })) + .then(() => showSuccess(t('settings', 'Welcome mail sent!'), { timeout: 2000 })) .finally(() => { this.loading.all = false }) |