summaryrefslogtreecommitdiffstats
path: root/tools/linguist/qm2ts/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/linguist/qm2ts/main.cpp')
-rw-r--r--tools/linguist/qm2ts/main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/linguist/qm2ts/main.cpp b/tools/linguist/qm2ts/main.cpp
index e04c99c..3cd00ca 100644
--- a/tools/linguist/qm2ts/main.cpp
+++ b/tools/linguist/qm2ts/main.cpp
@@ -42,13 +42,13 @@ typedef QValueList<QTranslatorMessage> TML;
static void printUsage()
{
fprintf( stderr, "Usage:\n"
- " qm2ts [ options ] qm-files\n"
+ " tqm2ts [ options ] qm-files\n"
"Options:\n"
" -help Display this information and exit\n"
" -verbose\n"
" Explain what is being done\n"
" -version\n"
- " Display the version of qm2ts and exit\n" );
+ " Display the version of tqm2ts and exit\n" );
}
int main( int argc, char **argv )
@@ -64,7 +64,7 @@ int main( int argc, char **argv )
verbose = TRUE;
continue;
} else if ( qstrcmp(argv[i], "-version") == 0 ) {
- fprintf( stderr, "qm2ts version %s\n", QT_VERSION_STR );
+ fprintf( stderr, "tqm2ts version %s\n", QT_VERSION_STR );
return 0;
}
@@ -99,7 +99,7 @@ int main( int argc, char **argv )
if ( !metator.save(g) ) {
fprintf( stderr,
- "qm2ts warning: For some reason, I cannot save '%s'\n",
+ "tqm2ts warning: For some reason, I cannot save '%s'\n",
g.latin1() );
} else {
if ( verbose ) {
@@ -109,13 +109,13 @@ int main( int argc, char **argv )
}
if ( ignored > 0 )
fprintf( stderr,
- "qm2ts warning: File '%s' is not a Qt 2.x .qm"
+ "tqm2ts warning: File '%s' is not a Qt 2.x .qm"
" file (some information is lost)\n",
argv[i] );
}
} else {
fprintf( stderr,
- "qm2ts warning: For some reason, I cannot load '%s'\n",
+ "tqm2ts warning: For some reason, I cannot load '%s'\n",
argv[i] );
}
}