diff --git a/src/backend/electron/main.ts b/src/backend/electron/main.ts index 24a142f2..4e934323 100644 --- a/src/backend/electron/main.ts +++ b/src/backend/electron/main.ts @@ -867,7 +867,7 @@ app.on("ready", async () => { message: `設定ファイルの読み込みに失敗しました。${app.getPath( "userData", )} にある config.json の名前を変えることで解決することがあります(ただし設定がすべてリセットされます)。設定ファイルがあるフォルダを開きますか?`, - buttons: ["いいえ", "はい"], + buttons: ["キャンセル", "設定ファイルがあるフォルダを開く"], noLink: true, cancelId: 0, }) diff --git a/src/components/Dialog/Dialog.ts b/src/components/Dialog/Dialog.ts index 3e2b8715..a187479b 100644 --- a/src/components/Dialog/Dialog.ts +++ b/src/components/Dialog/Dialog.ts @@ -295,7 +295,7 @@ const showWriteErrorDialog = ({ if (mediaType === "text") { // テキスト書き出し時のエラーを出力 void actions.SHOW_ALERT_DIALOG({ - title: "テキストの書き出しに失敗しました。", + title: "テキストの書き出しに失敗しました", message: "書き込みエラーによって失敗しました。空き容量があることや、書き込み権限があることをご確認ください。", }); @@ -311,7 +311,7 @@ const showWriteErrorDialog = ({ // 音声書き出し時のエラーを出力 void actions.SHOW_ALERT_DIALOG({ - title: "書き出しに失敗しました。", + title: "書き出しに失敗しました", message: result.errorMessage ?? defaultErrorMessages[result.result] ?? "", }); } diff --git a/src/components/Dialog/DictionaryManageDialog.vue b/src/components/Dialog/DictionaryManageDialog.vue index 1e505291..e9ee0b39 100644 --- a/src/components/Dialog/DictionaryManageDialog.vue +++ b/src/components/Dialog/DictionaryManageDialog.vue @@ -36,7 +36,7 @@