aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorBen Castricum2014-10-13 09:12:52 +0200
committerBen Castricum2014-10-27 16:33:09 +0100
commitdf12402a58680a1215532ae6bd8e23d8b8256cc6 (patch)
treec50b05c59c7b8966791d58a9582b882ea8a1e09e /engines
parent2a6a79b1673e274420ca8c28f40f9855b1c6134f (diff)
downloadscummvm-rg350-df12402a58680a1215532ae6bd8e23d8b8256cc6.tar.gz
scummvm-rg350-df12402a58680a1215532ae6bd8e23d8b8256cc6.tar.bz2
scummvm-rg350-df12402a58680a1215532ae6bd8e23d8b8256cc6.zip
SCUMM: Fix bug 6739 - Untranslated dialogs
Diffstat (limited to 'engines')
-rw-r--r--engines/scumm/dialogs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/dialogs.cpp b/engines/scumm/dialogs.cpp
index 52120949cc..c22525b6f2 100644
--- a/engines/scumm/dialogs.cpp
+++ b/engines/scumm/dialogs.cpp
@@ -180,9 +180,9 @@ static const ResString string_map_table_v345[] = {
// I18N: You may specify 'Yes' symbol at the end of the line, like this:
// "Moechten Sie wirklich neu starten? (J/N)J"
// Will react to J as 'Yes'
- {5, _s("Are you sure you want to restart? (Y/N)")},
+ {5, _s("Are you sure you want to restart? (Y/N)Y")},
// I18N: you may specify 'Yes' symbol at the end of the line. See previous comment
- {6, _s("Are you sure you want to quit? (Y/N)")},
+ {6, _s("Are you sure you want to quit? (Y/N)Y")},
// Added in SCUMM4
{7, _s("Save")},
@@ -460,7 +460,7 @@ const Common::String InfoDialog::queryResString(int stringno) {
tmp += chr;
}
}
- return tmp;
+ return _(tmp);
}
#pragma mark -