diff options
author | lukaslw | 2014-06-13 00:40:09 +0200 |
---|---|---|
committer | lukaslw | 2014-06-22 20:09:00 +0200 |
commit | 8536dcc7a3c50b50f76894c4b44f4108712cc257 (patch) | |
tree | db9b398af4eb489f8f52a3ad7e622aeb24e08f63 /engines/prince | |
parent | 8fd44cbbf3e0d34c71ab2b65d0e861a0e5a6c169 (diff) | |
download | scummvm-rg350-8536dcc7a3c50b50f76894c4b44f4108712cc257.tar.gz scummvm-rg350-8536dcc7a3c50b50f76894c4b44f4108712cc257.tar.bz2 scummvm-rg350-8536dcc7a3c50b50f76894c4b44f4108712cc257.zip |
PRINCE: option_text.h small update
Diffstat (limited to 'engines/prince')
-rw-r--r-- | engines/prince/option_text.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/engines/prince/option_text.h b/engines/prince/option_text.h index 0904704547..7bd0f3bc99 100644 --- a/engines/prince/option_text.h +++ b/engines/prince/option_text.h @@ -22,22 +22,23 @@ namespace Prince { -// Mazovia coding (with U2 negation) +// PL - Mazovia coding (with U2 negation for special letters) +// DE - Still problem with special letters const char invOptionsTextPL[5][18] = { - { 'O', 'b', 'e', 'j', 'r', 'z', 'y', 'j', '\0' }, + "Obejrzyj", { 'U', -89, 'y', 'j', '\0' }, { 'O', 't', 'w', -94, 'r', 'z', '/', 'P', 'c', 'h', 'n', 'i', 'j', '\0' }, { 'Z', 'a', 'm', 'k', 'n', 'i', 'j', '/', 'P', 'o', 'c', 'i', -122, 'g', 'n', 'i', 'j', '\0' }, - { 'D', 'a', 'j', '\0' } + "Daj" }; // TODO -const char *invOptionsTextDE[] = { +const char invOptionsTextDE[5][17] = { "Anschauen", "Benutzen", - "Öffnen/Stoßen", - "Schließen/Ziehen", + { 'Ö', 'f', 'f', 'n', 'e', 'n', '/', 'S', 't', 'o', 'ß', 'e', 'n', '\0' }, + { 'S', 'c', 'h', 'l', 'i', 'e', 'ß', 'e', 'n', '/', 'Z', 'i', 'e', 'h', 'e', 'n', '\0' }, "Geben" }; @@ -51,22 +52,22 @@ const char *invOptionsTextEN[] = { const char optionsTextPL[7][18] = { { 'P', 'o', 'd', 'e', 'j', 'd', -90, '\0' }, - { 'O', 'b', 'e', 'j', 'r', 'z', 'y', 'j', '\0' }, - { 'Z', 'a', 'b', 'i', 'e', 'r', 'z', '\0' }, + "Obejrzyj", + "Zabierz", { 'U', -89, 'y', 'j' }, { 'O', 't', 'w', -94, 'r', 'z', '/', 'P', 'c', 'h', 'n', 'i', 'j', '\0' }, { 'Z', 'a', 'm', 'k', 'n', 'i', 'j', '/', 'P', 'o', 'c', 'i', -122, 'g', 'n', 'i', 'j', '\0' }, - { 'P', 'o', 'r', 'o', 'z', 'm', 'a', 'w', 'i', 'a', 'j', '\0' } + "Porozmawiaj" }; // TODO -const char *optionsTextDE[] = { +const char optionsTextDE[7][17] = { "Hingehen", "Anschauen", "Wegnehmen", "Benutzen", - "Öffnen/Stoßen", - "Schließen/Ziehen", + { 'Ö', 'f', 'f', 'n', 'e', 'n', '/', 'S', 't', 'o', 'ß', 'e', 'n', '\0' }, + { 'S', 'c', 'h', 'l', 'i', 'e', 'ß', 'e', 'n', '/', 'Z', 'i', 'e', 'h', 'e', 'n', '\0' }, "Ansprechen" }; |