From b2420a777e48686237fa9338808dab018a5de2d6 Mon Sep 17 00:00:00 2001 From: Alexander Kojevnikov Date: Sun, 26 Aug 2012 19:50:05 -0700 Subject: [PATCH] i18n: Don't ask to translate \n --- src/spek.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/spek.cc b/src/spek.cc index 664fdfd..72e0bec 100644 --- 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; }