10,000 UI Lines
This commit is contained in:
parent
bc8e7aa168
commit
528a43d18a
2 changed files with 10 additions and 10 deletions
|
|
@ -792,7 +792,7 @@ var $plugins = [
|
|||
autoSplit: "true",
|
||||
choiceFormat: "選択肢:{choice}",
|
||||
choiceColor: "17",
|
||||
choiceCancelText: "キャンセル",
|
||||
choiceCancelText: "Cancel",
|
||||
smoothBackFromLog: "true",
|
||||
backgroundImage: "",
|
||||
showLogWindowFrame: "true",
|
||||
|
|
@ -833,7 +833,7 @@ var $plugins = [
|
|||
itemOffsetX: "32",
|
||||
itemOffsetY: "32",
|
||||
terms:
|
||||
'{"saveConfirm":"\\"にセーブしますか?\\"","overwriteConfirm":"\\"に上書きセーブしますか?\\"","loadConfirm":"\\"をロードしますか?\\"","removeConfirm":"\\"データを削除します。\\\\nよろしいですか?\\"","gameEndConfirm":"\\"タイトルに戻りますか?\\"","ok":"はい","cancel":"いいえ"}',
|
||||
'{"saveConfirm":"\\"Save to this file?\\"","overwriteConfirm":"\\"Overwrite this save?\\"","loadConfirm":"\\"Load this file?\\"","removeConfirm":"\\"Delete this save data?\\\\nAre you sure?\\"","gameEndConfirm":"\\"Return to title?\\"","ok":"Yes","cancel":"No"}',
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -764,14 +764,14 @@
|
|||
var text_cancel = "";
|
||||
|
||||
if (this._mode == "save") {
|
||||
text_ok = "セーブする";
|
||||
text_cancel = "キャンセル";
|
||||
text_ok = "Save";
|
||||
text_cancel = "Cancel";
|
||||
} else if (this._mode == "load") {
|
||||
text_ok = "ロードする";
|
||||
text_cancel = "キャンセル";
|
||||
text_ok = "Load";
|
||||
text_cancel = "Cancel";
|
||||
} else if (this._mode == "gameEnd") {
|
||||
text_ok = "戻る";
|
||||
text_cancel = "キャンセル";
|
||||
text_ok = "Return";
|
||||
text_cancel = "Cancel";
|
||||
}
|
||||
if (!this._alert) {
|
||||
this.addCommand(text_cancel, "cancel");
|
||||
|
|
@ -804,7 +804,7 @@
|
|||
const textWidths = this.calcTextWidths(allText);
|
||||
const y = (bottomY - allTextHeight) / 2;
|
||||
|
||||
const textWidths2 = this.calcTextWidths(`ファイル ${this.fileIndex}`);
|
||||
const textWidths2 = this.calcTextWidths(`File ${this.fileIndex}`);
|
||||
|
||||
if (this._mode == "gameEnd") {
|
||||
this.drawTextEx(allText, 300 + textWidths2[0] + 11, 20, textWidths);
|
||||
|
|
@ -813,7 +813,7 @@
|
|||
}
|
||||
|
||||
if (this.fileIndex) {
|
||||
this.drawText(`ファイル ${this.fileIndex}`, 480, 20, 140);
|
||||
this.drawText(`File ${this.fileIndex}`, 480, 20, 140);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue