summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris <xchrisx@uber.space>2019-12-31 14:23:13 +0100
committerSlávek Banko <slavek.banko@axis.cz>2020-01-01 16:47:08 +0100
commita381bc3305c0f85aa5f380e70a170570d1e9b3ab (patch)
treefd07e09748a624dec74bdd6fd9d92c3a5c933005
parent5e9b7c91bdbc0520e9035e02aff694afcc60094a (diff)
downloadtdegraphics-a381bc3305c0f85aa5f380e70a170570d1e9b3ab.tar.gz
tdegraphics-a381bc3305c0f85aa5f380e70a170570d1e9b3ab.zip
Make about dialog of Kooka translatable.
Signed-off-by: Chris <xchrisx@uber.space> (cherry picked from commit dc06cf7fc4bbfde00685155c75f1aaeb64865bb0)
-rw-r--r--kooka/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kooka/main.cpp b/kooka/main.cpp
index 1de30a0c..e3abcb15 100644
--- a/kooka/main.cpp
+++ b/kooka/main.cpp
@@ -44,14 +44,14 @@
#include "version.h"
static const char description[] =
- "Kooka is a TDE application which provides access to scanner hardware\n"
+ I18N_NOOP("Kooka is a TDE application which provides access to scanner hardware\n"
"using the SANE library.\n\n"
"Kooka helps you scan, save your image in the correct image format\n"
"and perform Optical Character Recognition on it, using gocr, Joerg\n"
- "Schulenburg's and friends' Open Source ocr program.";
+ "Schulenburg's and friends' Open Source ocr program.");
static const char license[] =
-"This program is distributed under the terms of the GPL v2 as publishec by\n"
+I18N_NOOP("This program is distributed under the terms of the GPL v2 as publishec by\n"
"the Free Software Foundation\n\n"
"As a special exception, permission is given to link this program\n"
"with any version of the KADMOS ocr/icr engine of reRecognition GmbH,\n"
@@ -59,7 +59,7 @@ static const char license[] =
"including the source code for KADMOS in the source distribution.\n\n"
"As a special exception, permission is given to link this program\n"
"with any edition of TQt, and distribute the resulting executable,\n"
-"without including the source code for TQt in the source distribution.\n";
+"without including the source code for TQt in the source distribution.\n");
static TDECmdLineOptions options[] =
@@ -73,7 +73,7 @@ static TDECmdLineOptions options[] =
int main( int argc, char *argv[] )
{
- TDEAboutData about("kooka", I18N_NOOP("Kooka"), KOOKA_VERSION, I18N_NOOP(description),
+ TDEAboutData about("kooka", I18N_NOOP("Kooka"), KOOKA_VERSION, description,
TDEAboutData::License_GPL_V2, "(C) 2000 Klaas Freitag", 0);
about.addAuthor( "Klaas Freitag", I18N_NOOP("developer"), "freitag@suse.de" );