diff options
Diffstat (limited to 'npc/functions/asklanguage.txt')
-rw-r--r-- | npc/functions/asklanguage.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/npc/functions/asklanguage.txt b/npc/functions/asklanguage.txt index 03e057e2c..04cbf44d1 100644 --- a/npc/functions/asklanguage.txt +++ b/npc/functions/asklanguage.txt @@ -32,14 +32,16 @@ function script asklanguage { "Eu te ouço... (Português)", // Portuguese "Je vous entends... (Français)", // French "Ich höre euch... (Deutsch)", // German - "Te oigo... (Español)"; // Spanish + "Te oigo... (Español)", // Spanish + "Да я вас слышу... (Русский)"; // Russian break; case LANG_IN_SHIP: setarray .@messages$[0], "I speak English.", // English "Eu falo Português.", // Portuguese "Je parle français.", // French "Ich spreche Deutsch.", // German - "Hablo Español."; // Spanish + "Hablo Español.", // Spanish + "Я говорю на русском."; // Russian break; default: return; @@ -49,7 +51,8 @@ function script asklanguage { "flags/pt_BR", "flags/fr", "flags/de", - "flags/es"; + "flags/es", + "flags/00"; .@menustr$ = ""; .@separator$ = ":"; |