Skip to content

Commit

Permalink
他にもわかりにくいとこ直した
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed May 8, 2024
1 parent 2507cac commit 7f5a511
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 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,8 +594,7 @@ const discardOrNotDialog = async (okCallback: () => void) => {
if (isWordChanged.value) {
const result = await store.dispatch("SHOW_WARNING_DIALOG", {
title: "単語の追加・変更を破棄しますか?",
message:
"このまま続行すると、単語の追加・変更は破棄されてリセットされます。",
message: "破棄すると、単語の追加・変更はリセットされます。",
actionName: "破棄",
});
if (result === "OK") {
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 7f5a511

Please sign in to comment.