From 67388999f07e464a2601063a9c8fb9c2e69c0274 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Tue, 4 Jul 2023 21:50:20 +0900 Subject: [PATCH] lang update --- assets/locales/en/terrarum_sentences.json | 3 ++- assets/locales/koKR/terrarum_sentences.json | 3 ++- .../torvald/terrarum/modulebasegame/ui/UIInventoryEscMenu.kt | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/assets/locales/en/terrarum_sentences.json b/assets/locales/en/terrarum_sentences.json index fef5845ee..e1d4c0945 100644 --- a/assets/locales/en/terrarum_sentences.json +++ b/assets/locales/en/terrarum_sentences.json @@ -11,5 +11,6 @@ "GAME_PREV_SAVE_WAS_LOADED2": "The previously saved game was loaded.", "GAME_MORE_RECENT_AUTOSAVE1": "The Autosave is more recent than the manual save.", "GAME_MORE_RECENT_AUTOSAVE2": "Please select the saved game you wish to play:", - "MENU_LABEL_SAVE_WILL_BE_DELETED": "The selected save file will be deleted." + "MENU_LABEL_SAVE_WILL_BE_DELETED": "The selected save file will be deleted.", + "MENU_LABEL_UNSAVED_PROGRESS_WILL_BE_LOST": "Unsaved progress will be lost." } \ No newline at end of file diff --git a/assets/locales/koKR/terrarum_sentences.json b/assets/locales/koKR/terrarum_sentences.json index 4df3c3e45..bb2980034 100644 --- a/assets/locales/koKR/terrarum_sentences.json +++ b/assets/locales/koKR/terrarum_sentences.json @@ -11,5 +11,6 @@ "GAME_PREV_SAVE_WAS_LOADED2": "이전에 저장된 게임을 불러왔습니다.", "GAME_MORE_RECENT_AUTOSAVE1": "자동 저장된 게임이 수동으로 저장한 게임보다 더 최신입니다.", "GAME_MORE_RECENT_AUTOSAVE2": "불러올 게임을 선택해 주십시오.", - "MENU_LABEL_SAVE_WILL_BE_DELETED": "선택된 세이브가 삭제됩니다." + "MENU_LABEL_SAVE_WILL_BE_DELETED": "선택된 세이브가 삭제됩니다.", + "MENU_LABEL_UNSAVED_PROGRESS_WILL_BE_LOST": "저장하지 않은 진행 상황을 잃게 됩니다." } diff --git a/src/net/torvald/terrarum/modulebasegame/ui/UIInventoryEscMenu.kt b/src/net/torvald/terrarum/modulebasegame/ui/UIInventoryEscMenu.kt index 42d213fd0..c5fe015f8 100644 --- a/src/net/torvald/terrarum/modulebasegame/ui/UIInventoryEscMenu.kt +++ b/src/net/torvald/terrarum/modulebasegame/ui/UIInventoryEscMenu.kt @@ -50,7 +50,7 @@ class UIInventoryEscMenu(val full: UIInventoryFull) : UICanvas() { defaultSelection = null ) private val areYouSureMainMenuButtons = UIItemTextButtonList( - this, DEFAULT_LINE_HEIGHT, arrayOf("MENU_LABEL_QUIT_CONFIRM", "MENU_LABEL_UNSAVED_PROGRESSES_WILL_BE_LOST", "MENU_LABEL_QUIT", "MENU_LABEL_CANCEL"), + this, DEFAULT_LINE_HEIGHT, arrayOf("MENU_LABEL_QUIT_CONFIRM", "MENU_LABEL_UNSAVED_PROGRESS_WILL_BE_LOST", "MENU_LABEL_QUIT", "MENU_LABEL_CANCEL"), (width - gameMenuListWidth) / 2, INVENTORY_CELLS_OFFSET_Y() + (INVENTORY_CELLS_UI_HEIGHT - (DEFAULT_LINE_HEIGHT * 3)) / 2, gameMenuListWidth, DEFAULT_LINE_HEIGHT * 3,