summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorKess Vargavind <vargavind@gmail.com>2009-05-21 09:38:06 +0200
committerDavid Athay <ko2fan@gmail.com>2009-05-21 11:03:37 +0100
commit9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59 (patch)
treec6e13d9379916588114d77ab2aae498b76f82078 /src/main.cpp
parent2dad08e4e8e199c84da6a6f2f5289c8c0e40fc81 (diff)
downloadMana-9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59.tar.gz
Mana-9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59.tar.bz2
Mana-9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59.tar.xz
Mana-9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59.zip
Fixed a few strings for better translation
Just a few notes that would help us translators immensly: * Please do not split one sentence into several strings * Please try to refrain from inserting extra spaces into the strings
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 7c48e728..61e5a408 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -583,8 +583,8 @@ static void printHelp()
<< _(" -H --update-host : Use this update host") << endl
<< _(" -P --password : Login with this password") << endl
<< _(" -c --character : Login with this character") << endl
- << _(" -p --port : Login Server Port") << endl
- << _(" -s --server : Login Server name or IP") << endl
+ << _(" -p --port : Login server port") << endl
+ << _(" -s --server : Login server name or IP") << endl
<< _(" -u --skip-update : Skip the update downloads") << endl
<< _(" -U --username : Login with this username") << endl
#ifdef USE_OPENGL
@@ -595,7 +595,7 @@ static void printHelp()
static void printVersion()
{
- std::cout << _("The Mana World ") << FULL_VERSION << std::endl;
+ std::cout << strprintf(_("The Mana World %s"), FULL_VERSION) << std::endl;
}
static void parseOptions(int argc, char *argv[], Options &options)