Translate questReport

This commit is contained in:
Dazed 2023-07-26 19:57:22 -05:00
parent 67bccb6f4f
commit fc854fc4d2
2 changed files with 1199 additions and 894 deletions

File diff suppressed because it is too large Load diff

View file

@ -5860,7 +5860,7 @@ let $isOrderedQuest;
Window_questReport_Title_Window.prototype.initialize = function (allCnt, clearCnt, notCnt) {
let xPos = 300;
Window_Base.prototype.initialize.call(this, xPos, -10, Graphics.width - xPos, 90);
this.drawText("総クエスト数 : " + allCnt + " クリア済みクエスト数 : " + clearCnt + " 受注中クエスト数 : " + notCnt, 10, 10, 650);
this.drawText("Total: " + allCnt + " Completed: " + clearCnt + " In Progress: " + notCnt, 10, 10, 650);
};
Window_questReport_Title_Window.prototype.setTitle = function (text) {