aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wince/wince-sdl.cpp
diff options
context:
space:
mode:
authorJordi Vilalta Prat2010-06-26 15:48:03 +0000
committerJordi Vilalta Prat2010-06-26 15:48:03 +0000
commit063cef0c284cda74f6ad366182818ac4d3dfca83 (patch)
tree9b0358b7bede862c83ea3d2586fa0b44b59aa22d /backends/platform/wince/wince-sdl.cpp
parent21831b61832060855017d5b30dc277eaa333aef8 (diff)
downloadscummvm-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 'backends/platform/wince/wince-sdl.cpp')
-rw-r--r--backends/platform/wince/wince-sdl.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/backends/platform/wince/wince-sdl.cpp b/backends/platform/wince/wince-sdl.cpp
index 970c9dce90..aef2117bd7 100644
--- a/backends/platform/wince/wince-sdl.cpp
+++ b/backends/platform/wince/wince-sdl.cpp
@@ -30,6 +30,7 @@
#include "common/events.h"
#include "common/util.h"
#include "common/timer.h"
+#include "common/translation.h"
#include "engines/engine.h"
@@ -107,14 +108,14 @@ bool _hasSmartphoneResolution = false;
// Low end devices 240x320
static const OSystem::GraphicsMode s_supportedGraphicsModesLow[] = {
- {"1x", "Normal (no scaling)", GFX_NORMAL},
+ {"1x", _s("Normal (no scaling)"), GFX_NORMAL},
{0, 0, 0}
};
// High end device 480x640
static const OSystem::GraphicsMode s_supportedGraphicsModesHigh[] = {
- {"1x", "Normal (no scaling)", GFX_NORMAL},
+ {"1x", _s("Normal (no scaling)"), GFX_NORMAL},
{"2x", "2x", GFX_DOUBLESIZE},
#ifndef _MSC_VER // EVC breaks template functions, and I'm tired of fixing them :)
{"2xsai", "2xSAI", GFX_2XSAI},