Skip to content

Commit

Permalink
辞書保存ダイアログ・ツールバーカスタマイズの編集破棄の案内がわかりにくかったので修正 (#2069)
Browse files Browse the repository at this point in the history
* 辞書保存ダイアログの編集破棄の案内がわかりにくかったので修正

* 他にもわかりにくいとこ直した
  • Loading branch information
Hiroshiba authored May 21, 2024
1 parent 47f2e8b commit df8aabd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/components/Dialog/DictionaryManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ const isDeletable = computed(() => !!selectedId.value);
const deleteWord = async () => {
const result = await store.dispatch("SHOW_WARNING_DIALOG", {
title: "登録された単語を削除しますか?",
message: "削除された単語は復旧できません",
message: "削除された単語は元に戻せません",
actionName: "削除",
});
if (result === "OK") {
Expand Down Expand Up @@ -594,9 +594,8 @@ const discardOrNotDialog = async (okCallback: () => void) => {
if (isWordChanged.value) {
const result = await store.dispatch("SHOW_WARNING_DIALOG", {
title: "単語の追加・変更を破棄しますか?",
message:
"このまま続行すると、単語の追加・変更は破棄されてリセットされます。",
actionName: "続行",
message: "破棄すると、単語の追加・変更はリセットされます。",
actionName: "破棄",
});
if (result === "OK") {
okCallback();
Expand Down
3 changes: 2 additions & 1 deletion src/components/Dialog/ToolBarCustomDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ const finishOrNotDialog = async () => {
if (isChanged.value) {
const result = await store.dispatch("SHOW_WARNING_DIALOG", {
title: "カスタマイズを終了しますか?",
message: "このまま終了すると、カスタマイズは破棄されてリセットされます。",
message:
"保存せずに終了すると、カスタマイズは破棄されてリセットされます。",
actionName: "終了",
});
if (result === "OK") {
Expand Down

0 comments on commit df8aabd

Please sign in to comment.