diff options
Diffstat (limited to 'src/game/text.cpp')
-rw-r--r-- | src/game/text.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/game/text.cpp b/src/game/text.cpp index bdd68ed..00441f8 100644 --- a/src/game/text.cpp +++ b/src/game/text.cpp @@ -11,6 +11,12 @@ static const char *soldier_names[] = { static std::string get_english(index_t index) { switch (index) { + case PAUSED: + return "PAUSED"; + + case UNPAUSED: + return "UNPAUSED"; + case SAY_BLOCKED: return "Something is in my way."; @@ -58,6 +64,12 @@ static std::string get_english(index_t index) static std::string get_polish(index_t index) { switch (index) { + case PAUSED: + return "WSTRZYMANO"; + + case UNPAUSED: + return "WZNOWIONO"; + case SAY_BLOCKED: return "Coś jest na mojej drodze."; |