diff options
-rw-r--r-- | unicode/game/languages/English.ini | 11 | ||||
-rw-r--r-- | unicode/src/screens/UScreenEditConvert.pas | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/unicode/game/languages/English.ini b/unicode/game/languages/English.ini index aaf320b9..780ef1c0 100644 --- a/unicode/game/languages/English.ini +++ b/unicode/game/languages/English.ini @@ -384,7 +384,18 @@ STAT_DESC_BANDS=Most popular Bands STAT_DESC_BANDS_REVERSED=Least popular Bands STAT_FORMAT_BANDS=%0:s \n %1:dx Sung +SCREENSHOT_SAVED=Screenshot saved +SCREENSHOT_FAILED=Couldn''t save screenshot + +INFO_FILE_SAVED=File saved +ERROR_SAVE_FILE_FAILED=Couldn''t save file +ERROR_FILE_NOT_FOUND=File not found + +ENCODING_ERROR_ASK_FOR_UTF8=Cannot save changes in current encoding. Convert to UTF-8? +EDITOR_ERROR_NO_TRACK_SELECTED=No track selected + MSG_ERROR_TITLE=Error +MSG_INFO_TITLE=Information MSG_QUESTION_TITLE=Question MSG_QUIT_USDX=Really leave UltraStar? MSG_END_PARTY=Really end Party Mode? diff --git a/unicode/src/screens/UScreenEditConvert.pas b/unicode/src/screens/UScreenEditConvert.pas index b4417cc7..b2fb7773 100644 --- a/unicode/src/screens/UScreenEditConvert.pas +++ b/unicode/src/screens/UScreenEditConvert.pas @@ -251,7 +251,7 @@ begin end else begin - ScreenPopupError.ShowPopup(Language.Translate('ERROR_EDITOR_NO_TRACK_SELECTED')); + ScreenPopupError.ShowPopup(Language.Translate('EDITOR_ERROR_NO_TRACK_SELECTED')); end; {$ENDIF} end; |