commit b2420a777e48686237fa9338808dab018a5de2d6
parent 7f99f1ff3ecf71eb0592a2a92309e8c5a5f30c0c
Author: Alexander Kojevnikov <alexander@kojevnikov.com>
Date: Sun, 26 Aug 2012 19:50:05 -0700
i18n: Don't ask to translate \n
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/spek.cc b/src/spek.cc
@@ -87,7 +87,8 @@ bool Spek::OnInit()
}
if (parser.Found(wxT("version"))) {
// TRANSLATORS: first %s is the package name, second %s is the package version.
- wxPrintf(_("%s version %s\n"), wxT(PACKAGE_NAME), wxT(PACKAGE_VERSION));
+ wxPrintf(_("%s version %s"), wxT(PACKAGE_NAME), wxT(PACKAGE_VERSION));
+ wxPrintf(wxT("\n"));
this->quit = true;
return true;
}