diff options
author | athrxx | 2019-04-29 21:43:59 +0200 |
---|---|---|
committer | athrxx | 2019-04-29 21:45:19 +0200 |
commit | 71ac9575a7a06e5595306e9fd80173b1b7e7e206 (patch) | |
tree | c5772a450b9442e015c90feddec0b005bcf32ee5 /engines/kyra/graphics | |
parent | 08a5feb1ee327d086467cb07e9497ab28819398c (diff) | |
download | scummvm-rg350-71ac9575a7a06e5595306e9fd80173b1b7e7e206.tar.gz scummvm-rg350-71ac9575a7a06e5595306e9fd80173b1b7e7e206.tar.bz2 scummvm-rg350-71ac9575a7a06e5595306e9fd80173b1b7e7e206.zip |
KYRA: (EOB/Amiga) - mark error dialogs as translateable
Diffstat (limited to 'engines/kyra/graphics')
-rw-r--r-- | engines/kyra/graphics/screen_eob.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/graphics/screen_eob.cpp b/engines/kyra/graphics/screen_eob.cpp index 0e5596221e..618f85fec6 100644 --- a/engines/kyra/graphics/screen_eob.cpp +++ b/engines/kyra/graphics/screen_eob.cpp @@ -2250,7 +2250,7 @@ void AmigaDOSFont::errorDialog(int index) { // I've made rather elaborate dialogs here, since the Amiga font file handling is quite prone to cause problems for users. // This will hopefully prevent unnecessary forum posts and bug reports. if (index == 0) { - ::GUI::displayErrorDialog(_s( + ::GUI::displayErrorDialog(_( "This AMIGA version requires the following font files:\n\nEOBF6.FONT\nEOBF6/6\nEOBF8.FONT\nEOBF8/8\n\n" "If you used the orginal installer for the installation these files\nshould be located in the AmigaDOS system 'Fonts/' folder.\n" "Please copy them into the EOB game data directory.\n" @@ -2258,7 +2258,7 @@ void AmigaDOSFont::errorDialog(int index) { error("Failed to load font files."); } else if (index == 1) { - ::GUI::displayErrorDialog(_s( + ::GUI::displayErrorDialog(_( "This AMIGA version requires the following font files:\n\nEOBF6.FONT\nEOBF6/6\nEOBF8.FONT\nEOBF8/8\n\n" "This is a localized (non-English) version of EOB II which uses language specific characters\n" "contained only in the specific font files that came with your game. You cannot use the font\n" |