summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitalii Lysak <v.lysak@dunice.net>2022-08-15 10:51:05 +0300
committerVitalii Lysak <v.lysak@dunice.net>2022-08-15 10:51:05 +0300
commit7f97bbd82caf938c5a31fa80fbff16852b86dc85 (patch)
tree396d4b36222a265ebdd6dcbe97ca3fc94a3da096
parentdb29a8672f6737a3b112b22db53fae3366c67097 (diff)
downloadwebui-vue-7f97bbd82caf938c5a31fa80fbff16852b86dc85.tar.xz
SILABMC-213: rename browser time zone to default browser time zone
-rw-r--r--src/locales/en-US.json4
-rw-r--r--src/locales/ru-RU.json4
-rw-r--r--src/views/_sila/ProfileSettings/ProfileSettings.vue4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/locales/en-US.json b/src/locales/en-US.json
index ffede398..2c30c3c8 100644
--- a/src/locales/en-US.json
+++ b/src/locales/en-US.json
@@ -695,10 +695,10 @@
}
},
"pageProfileSettings": {
- "browserOffset": "Browser offset (%{timezone})",
+ "defaultBrowserOffset": "Default browser offset (%{timezone})",
"changePassword": "Change password",
"confirmPassword": "Confirm new password",
- "defaultUTC": "Default (UTC)",
+ "UTC": "UTC",
"newPassword": "New password",
"newPassLabelTextInfo": "Password must be between %{min} - %{max} characters",
"passwordsDoNotMatch": "Passwords do not match",
diff --git a/src/locales/ru-RU.json b/src/locales/ru-RU.json
index 47059163..2ec832fe 100644
--- a/src/locales/ru-RU.json
+++ b/src/locales/ru-RU.json
@@ -695,10 +695,10 @@
}
},
"pageProfileSettings": {
- "browserOffset": "Часовой пояс в браузере (%{timezone})",
+ "defaultBrowserOffset": "По умолчанию часовой пояс в браузере (%{timezone})",
"changePassword": "Изменить пароль",
"confirmPassword": "Подтвердите новый пароль",
- "defaultUTC": "По умолчанию (UTC)",
+ "UTC": "UTC",
"newPassword": "Новый пароль",
"newPassLabelTextInfo": "Пароль должен быть от %{min} до %{max} символов",
"passwordsDoNotMatch": "Пароли не совпадают",
diff --git a/src/views/_sila/ProfileSettings/ProfileSettings.vue b/src/views/_sila/ProfileSettings/ProfileSettings.vue
index 258668e0..f7ed6cd6 100644
--- a/src/views/_sila/ProfileSettings/ProfileSettings.vue
+++ b/src/views/_sila/ProfileSettings/ProfileSettings.vue
@@ -100,7 +100,7 @@
data-test-id="profileSettings-radio-browserOffset"
>
{{
- $t('pageProfileSettings.browserOffset', {
+ $t('pageProfileSettings.defaultBrowserOffset', {
timezone,
})
}}
@@ -110,7 +110,7 @@
:value="true"
data-test-id="profileSettings-radio-defaultUTC"
>
- {{ $t('pageProfileSettings.defaultUTC') }}
+ {{ $t('pageProfileSettings.UTC') }}
</b-form-radio>
</b-form-group>
</b-col>