i18n: Simplify the version string

This commit is contained in:
Alexander Kojevnikov 2012-08-27 08:39:38 -07:00
parent 14e2cea74c
commit 88bd370881
2 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-26 19:50-0700\n"
"POT-Creation-Date: 2012-08-27 08:38-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -186,8 +186,8 @@ msgstr ""
msgid "Spek Website"
msgstr ""
#. TRANSLATORS: first %s is the package name, second %s is the package version.
#. TRANSLATORS: the %s is the package version.
#: ../src/spek.cc:90
#, c-format
msgid "%s version %s"
msgid "Spek version %s"
msgstr ""

View File

@ -86,8 +86,8 @@ bool Spek::OnInit()
return true;
}
if (parser.Found(wxT("version"))) {
// TRANSLATORS: first %s is the package name, second %s is the package version.
wxPrintf(_("%s version %s"), wxT(PACKAGE_NAME), wxT(PACKAGE_VERSION));
// TRANSLATORS: the %s is the package version.
wxPrintf(_("Spek version %s"), wxT(PACKAGE_VERSION));
wxPrintf(wxT("\n"));
this->quit = true;
return true;