We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f065191 commit d457d53Copy full SHA for d457d53
x-pack/plugins/uptime/public/state/effects/dynamic_settings.ts
@@ -47,7 +47,11 @@ export function* setDynamicSettingsEffect() {
47
}
48
yield call(setDynamicSettingsAPI, { settings: action.payload });
49
yield put(setDynamicSettingsSuccess(action.payload));
50
- kibanaService.core.notifications.toasts.addSuccess('Settings saved!');
+ kibanaService.core.notifications.toasts.addSuccess(
51
+ i18n.translate('xpack.uptime.settings.saveSuccess', {
52
+ defaultMessage: 'Settings saved!',
53
+ })
54
+ );
55
} catch (err) {
56
kibanaService.core.notifications.toasts.addError(err, {
57
title: couldNotSaveSettingsText,
0 commit comments