summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/locales/en-US.json2
-rw-r--r--src/views/ProfileSettings/ProfileSettings.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/locales/en-US.json b/src/locales/en-US.json
index a66c3759..40d65531 100644
--- a/src/locales/en-US.json
+++ b/src/locales/en-US.json
@@ -631,7 +631,7 @@
"timezoneDisplayDesc": "Select how time is displayed throughout the application",
"username": "Username",
"toast": {
- "successSaveSettings": "Successfully saved account settings."
+ "successUpdatingTimeZone": "Timezone updated successfully."
}
},
"pageNetwork": {
diff --git a/src/views/ProfileSettings/ProfileSettings.vue b/src/views/ProfileSettings/ProfileSettings.vue
index 35fc800d..8f01c59b 100644
--- a/src/views/ProfileSettings/ProfileSettings.vue
+++ b/src/views/ProfileSettings/ProfileSettings.vue
@@ -208,7 +208,7 @@ export default {
localStorage.setItem('storedUtcDisplay', this.form.isUtcDisplay);
this.$store.commit('global/setUtcTime', this.form.isUtcDisplay);
this.successToast(
- this.$t('pageProfileSettings.toast.successSaveSettings')
+ this.$t('pageProfileSettings.toast.successUpdatingTimeZone')
);
},
submitForm() {