diff --git a/src/locales/en.json b/src/locales/en.json index 4f1cf02..afd3482 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -239,6 +239,13 @@ }, "settings": { "title": "User Settings", + "menu": { + "general": "General", + "security": "Account & Security", + "experiments": "Experiments", + "about": "About", + "title": "Settings" + }, "general": { "title": "General", "about": "About", diff --git a/src/views/Settings.vue b/src/views/Settings.vue index 4d442f7..8724c8d 100644 --- a/src/views/Settings.vue +++ b/src/views/Settings.vue @@ -42,15 +42,15 @@ export default { return { menuItems: [ { - name: "General", + name: this.$t('settings.menu.general'), route: "general", }, { - name: "Security", + name: this.$t('settings.menu.security'), route: "security", }, { - name: "About", + name: this.$t('settings.menu.about'), route: "about", }, ], diff --git a/src/views/SettingsSecurity.vue b/src/views/SettingsSecurity.vue index cd4ff6c..d40f162 100644 --- a/src/views/SettingsSecurity.vue +++ b/src/views/SettingsSecurity.vue @@ -118,7 +118,7 @@ export default { }, resendEmail() { this.resend.loading = true - this.axios.post(process.env.VUE_APP_API_ENDPOINT + process.env.VUE_APP_API_VERSION + `/` + `users/recovery/send`) + this.axios.post(process.env.VUE_APP_API_ENDPOINT + process.env.VUE_APP_API_VERSION + `/` + `users/verify/send`) .then(() => { this.$buefy.snackbar.open({ message: this.$t("errors.verifySent"),