0
0
Fork 0

翻訳を追加

This commit is contained in:
Xeltica 2021-10-11 18:23:30 +09:00
parent d8664775cc
commit 6e40f8c3ec
3 changed files with 7 additions and 3 deletions

View file

@ -73,7 +73,7 @@ export const MisshaiPage: React.VFC = () => {
dispatch(showModal({
type: 'dialog',
icon: 'error',
message: 'エラー'
message: t('error'),
}));
dispatchDraft(previousDraft);
});
@ -84,7 +84,7 @@ export const MisshaiPage: React.VFC = () => {
.then(() => dispatch(showModal({
type: 'dialog',
icon: 'info',
message: '保存しました。'
message: t('saved'),
})));
}, [updateSetting]);