spek

Acoustic spectrum analyser
git clone http://git.hanabi.in/repos/spek.git
Log | Files | Refs | README

commit 88bd3708818c7d9119285a4a3f6ef746674c7341
parent 14e2cea74cac8d969b1655c33dfbda535ff1a991
Author: Alexander Kojevnikov <alexander@kojevnikov.com>
Date:   Mon, 27 Aug 2012 08:39:38 -0700

i18n: Simplify the version string

Diffstat:
Mpo/spek.pot | 6+++---
Msrc/spek.cc | 4++--
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/po/spek.pot b/po/spek.pot @@ -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 "" diff --git a/src/spek.cc b/src/spek.cc @@ -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;