diff options
| author | Jordi Vilalta Prat | 2010-06-26 15:48:03 +0000 |
|---|---|---|
| committer | Jordi Vilalta Prat | 2010-06-26 15:48:03 +0000 |
| commit | 063cef0c284cda74f6ad366182818ac4d3dfca83 (patch) | |
| tree | 9b0358b7bede862c83ea3d2586fa0b44b59aa22d /common | |
| parent | 21831b61832060855017d5b30dc277eaa333aef8 (diff) | |
| download | scummvm-rg350-063cef0c284cda74f6ad366182818ac4d3dfca83.tar.gz scummvm-rg350-063cef0c284cda74f6ad366182818ac4d3dfca83.tar.bz2 scummvm-rg350-063cef0c284cda74f6ad366182818ac4d3dfca83.zip | |
GUI: Add and improve some messages to translate
svn-id: r50324
Diffstat (limited to 'common')
| -rw-r--r-- | common/util.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/common/util.cpp b/common/util.cpp index b6f7bcd58f..53630fc6f3 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -24,6 +24,7 @@ #include "common/util.h" #include "common/system.h" +#include "common/translation.h" #include "common/config-manager.h" namespace Common { @@ -31,7 +32,7 @@ namespace Common { // // Print hexdump of the data passed in // -void hexdump(const byte * data, int len, int bytesPerLine, int startOffset) { +void hexdump(const byte *data, int len, int bytesPerLine, int startOffset) { assert(1 <= bytesPerLine && bytesPerLine <= 32); int i; byte c; @@ -250,8 +251,8 @@ const char *getPlatformDescription(Platform id) { const RenderModeDescription g_renderModes[] = { - {"hercGreen", "Hercules Green", kRenderHercG}, - {"hercAmber", "Hercules Amber", kRenderHercA}, + {"hercGreen", _s("Hercules Green"), kRenderHercG}, + {"hercAmber", _s("Hercules Amber"), kRenderHercA}, {"cga", "CGA", kRenderCGA}, {"ega", "EGA", kRenderEGA}, {"amiga", "Amiga", kRenderAmiga}, |
