Skip to content

Commit

Permalink
誤解を防ぐために「再起動が必要です」メッセージに「VOICEVOXの」を追加 (#1431)
Browse files Browse the repository at this point in the history
Co-authored-by: Nanashi. <[email protected]>
  • Loading branch information
nohimazin and sevenc-nanashi authored Jul 28, 2023
1 parent fcdf82d commit 9aed6e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/EngineManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ const addEngine = () => {
);
requireRestart(
"エンジンを追加しました。反映には再起動が必要です。今すぐ再起動しますか?"
"エンジンを追加しました。反映にはVOICEVOXの再起動が必要です。今すぐ再起動しますか?"
);
} else {
const success = await lockUi(
Expand All @@ -517,7 +517,7 @@ const addEngine = () => {
);
if (success) {
requireRestart(
"エンジンを追加しました。反映には再起動が必要です。今すぐ再起動しますか?"
"エンジンを追加しました。反映にはVOICEVOXの再起動が必要です。今すぐ再起動しますか?"
);
}
}
Expand Down Expand Up @@ -552,7 +552,7 @@ const deleteEngine = () => {
})
);
requireRestart(
"エンジンを削除しました。反映には再起動が必要です。今すぐ再起動しますか?"
"エンジンを削除しました。反映にはVOICEVOXの再起動が必要です。今すぐ再起動しますか?"
);
break;
}
Expand All @@ -563,7 +563,7 @@ const deleteEngine = () => {
);
if (success) {
requireRestart(
"エンジンの削除には再起動が必要です。今すぐ再起動しますか?"
"エンジンの削除にはVOICEVOXの再起動が必要です。今すぐ再起動しますか?"
);
}
break;
Expand Down Expand Up @@ -594,7 +594,7 @@ const restartSelectedEngine = () => {
const requireRestart = (message: string) => {
$q.dialog({
title: "再起動が必要です",
title: "VOICEVOXの再起動が必要です",
message: message,
noBackdropDismiss: true,
cancel: {
Expand Down

0 comments on commit 9aed6e8

Please sign in to comment.