summaryrefslogtreecommitdiff
path: root/src/store
diff options
context:
space:
mode:
authorDixsie Wolmers <dixsie@ibm.com>2021-07-23 09:29:33 +0300
committerDerick Montague <derick.montague@ibm.com>2021-07-28 18:14:16 +0300
commitfcb2f96b67e4cd2086c91c0d4c2c9835357c6258 (patch)
treea2b88aedbe219870f20ed5bef72871bc90bcc1d4 /src/store
parent4c0391996d04ffb229763bda67e9c9d9eeb5c47c (diff)
downloadwebui-vue-fcb2f96b67e4cd2086c91c0d4c2c9835357c6258.tar.xz
Add missing keys for en-US translations
- Updated power supplies to use identifyLed key - Updated system store identify LED toasts - Corrected DHCP key capitilization - Did not make changes to factory reset modal keys, they are being used dynamically with `${}` in the key. Same for Power restore policy `$t{powerState}` Signed-off-by: Dixsie Wolmers <dixsie@ibm.com> Change-Id: I19eeac4085326a2d18d90945028def88ec5ed991
Diffstat (limited to 'src/store')
-rw-r--r--src/store/modules/Health/SystemStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/store/modules/Health/SystemStore.js b/src/store/modules/Health/SystemStore.js
index b4ee3847..55f37542 100644
--- a/src/store/modules/Health/SystemStore.js
+++ b/src/store/modules/Health/SystemStore.js
@@ -57,11 +57,11 @@ const SystemStore = {
console.log('error', error);
if (ledState) {
throw new Error(
- i18n.t('pageHardwareStatus.toast.errorTurnOnIdentifyLed')
+ i18n.t('pageHardwareStatus.toast.errorEnableIdentifyLed')
);
} else {
throw new Error(
- i18n.t('pageHardwareStatus.toast.errorTurnOffIdentifyLed')
+ i18n.t('pageHardwareStatus.toast.errorDisableIdentifyLed')
);
}
});