diff options
| author | Eugene Sandulenko | 2010-06-15 11:01:41 +0000 | 
|---|---|---|
| committer | Eugene Sandulenko | 2010-06-15 11:01:41 +0000 | 
| commit | 9aa8a9d51903cf68b594a9403fe22fe92af7d036 (patch) | |
| tree | bab30af746c6c6a03a509f3702116228ce90c786 /backends/platform/symbian/src | |
| parent | 91078cc1bba6e768881ec099424b58cf822ef1b6 (diff) | |
| download | scummvm-rg350-9aa8a9d51903cf68b594a9403fe22fe92af7d036.tar.gz scummvm-rg350-9aa8a9d51903cf68b594a9403fe22fe92af7d036.tar.bz2 scummvm-rg350-9aa8a9d51903cf68b594a9403fe22fe92af7d036.zip | |
Symbian: sync with recent GUI changes. NOT TESTED.
svn-id: r49794
Diffstat (limited to 'backends/platform/symbian/src')
| -rw-r--r-- | backends/platform/symbian/src/SymbianActions.cpp | 41 | ||||
| -rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 3 | 
2 files changed, 23 insertions, 21 deletions
| diff --git a/backends/platform/symbian/src/SymbianActions.cpp b/backends/platform/symbian/src/SymbianActions.cpp index d925f5f0e7..1a55a68778 100644 --- a/backends/platform/symbian/src/SymbianActions.cpp +++ b/backends/platform/symbian/src/SymbianActions.cpp @@ -28,6 +28,7 @@  #include "gui/message.h"  #include "scumm/scumm.h"  #include "common/config-manager.h" +#include "common/translation.h"  #include <sdl.h> @@ -37,25 +38,25 @@ namespace GUI {  // or we put them in this file separated by #ifdefs, this one is up to you, AnotherGuest :)  const Common::String actionNames[] = { -	"Up", -	"Down", -	"Left", -	"Right", -	"Left Click", -	"Right Click", -	"Save", -	"Skip", -	"Zone", -	"Multi Function", -	"Swap character", -	"Skip text", -	"Pause", -	"Fast mode", -	"Quit", -	"Debugger", -	"Global menu", -	"Virtual keyboard", -	"Key mapper" +	_s("Up"), +	_s("Down"), +	_s("Left"), +	_s("Right"), +	_s("Left Click"), +	_s("Right Click"), +	_s("Save"), +	_s("Skip"), +	_s("Zone"), +	_s("Multi Function"), +	_s("Swap character"), +	_s("Skip text"), +	_s("Pause"), +	_s("Fast mode"), +	_s("Quit"), +	_s("Debugger"), +	_s("Global menu"), +	_s("Virtual keyboard"), +	_s("Key mapper")  };  #ifdef UIQ @@ -75,7 +76,7 @@ void SymbianActions::init() {  Common::String SymbianActions::actionName(ActionType action) { -	return actionNames[action]; +	return _(actionNames[action]);  }  int SymbianActions::size() { diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index 2ae47b07a8..d63c9fe044 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -35,6 +35,7 @@  #include "common/config-manager.h"  #include "common/scummsys.h" +#include "common/translation.h"  #include "gui/message.h" @@ -442,7 +443,7 @@ bool OSystem_SDL_Symbian::remapKey(SDL_Event &ev, Common::Event &event) {  			case GUI::ACTION_QUIT:  				{ -					GUI::MessageDialog alert("Do you want to quit ?", "Yes", "No"); +					GUI::MessageDialog alert(_("Do you want to quit ?"), _("Yes"), _("No"));  					if (alert.runModal() == GUI::kMessageOK)  						quit(); | 
