From b45803f969a8ddbda65eacda9c64ddabf386a926 Mon Sep 17 00:00:00 2001 From: dkanada Date: Mon, 17 Aug 2020 20:42:26 +0900 Subject: [PATCH] fix issue with rebase --- src/scripts/clientUtils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripts/clientUtils.js b/src/scripts/clientUtils.js index 564f5784b..1bad8bc81 100644 --- a/src/scripts/clientUtils.js +++ b/src/scripts/clientUtils.js @@ -101,7 +101,7 @@ export function processPluginConfigurationUpdateResult() { ]) .then(([{default: loading}, {default: toast}]) => { loading.hide(); - toast(Globalize.translate('MessageSettingsSaved')); + toast(Globalize.translate('SettingsSaved')); }); } @@ -112,7 +112,7 @@ export function processServerConfigurationUpdateResult(result) { ]) .then(([{default: loading}, {default: toast}]) => { loading.hide(); - toast(Globalize.translate('MessageSettingsSaved')); + toast(Globalize.translate('SettingsSaved')); }); }