summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-30 20:34:18 +0200
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-30 20:34:18 +0200
commitbb0257f9318c099a3ed5c061710e448e68517a96 (patch)
tree76f44ef7b2089bc11eb9ac548c7d9737a1836df3 /src
parent03ac2e9101be12551d5095e600c12fda942c2f9a (diff)
downloadmana-client-bb0257f9318c099a3ed5c061710e448e68517a96.tar.gz
mana-client-bb0257f9318c099a3ed5c061710e448e68517a96.tar.bz2
mana-client-bb0257f9318c099a3ed5c061710e448e68517a96.tar.xz
mana-client-bb0257f9318c099a3ed5c061710e448e68517a96.zip
Application name should not be translated
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 4fcd41dd..a2db380c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -415,7 +415,8 @@ static void initEngine(const Options &options)
SDL_EnableUNICODE(1);
SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
- SDL_WM_SetCaption(branding.getValue("appName", "The Mana World").c_str(), NULL);
+ SDL_WM_SetCaption(branding.getValue("appName", "The Mana World").c_str(),
+ NULL);
ResourceManager *resman = ResourceManager::getInstance();
@@ -595,7 +596,7 @@ static void printHelp()
static void printVersion()
{
- std::cout << strprintf(_("The Mana World %s"), FULL_VERSION) << std::endl;
+ std::cout << strprintf("The Mana World %s", FULL_VERSION) << std::endl;
}
static void parseOptions(int argc, char *argv[], Options &options)