GUI: Add and improve some messages to translate

svn-id: r50324
This commit is contained in:
Jordi Vilalta Prat 2010-06-26 15:48:03 +00:00
parent 21831b6183
commit 063cef0c28
10 changed files with 31 additions and 24 deletions

View file

@ -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},