summaryrefslogtreecommitdiffstats
path: root/tools/linguist/tqm2ts/main.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-11-07 22:42:05 -0600
committerTimothy Pearson <[email protected]>2013-11-07 22:42:05 -0600
commit36753ac659fe85fd02a8dffa84143812e011cd71 (patch)
tree2581a958653985ed91ff63ff702ad47a253553b3 /tools/linguist/tqm2ts/main.cpp
parent40e50e6f20276afb557992a51d47618b014e388d (diff)
downloadtqt3-36753ac659fe85fd02a8dffa84143812e011cd71.tar.gz
tqt3-36753ac659fe85fd02a8dffa84143812e011cd71.zip
Revert "Update minor TQt3 tool names to match current TQt3 sources in GIT"
This reverts commit 40e50e6f20276afb557992a51d47618b014e388d.
Diffstat (limited to 'tools/linguist/tqm2ts/main.cpp')
-rw-r--r--tools/linguist/tqm2ts/main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/linguist/tqm2ts/main.cpp b/tools/linguist/tqm2ts/main.cpp
index 3dcd6bc25..6e71a3cbc 100644
--- a/tools/linguist/tqm2ts/main.cpp
+++ b/tools/linguist/tqm2ts/main.cpp
@@ -42,13 +42,13 @@ typedef TQValueList<TQTranslatorMessage> TML;
static void printUsage()
{
fprintf( stderr, "Usage:\n"
- " ttqm2ts [ 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 ttqm2ts 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, "ttqm2ts version %s\n", TQT_VERSION_STR );
+ fprintf( stderr, "tqm2ts version %s\n", TQT_VERSION_STR );
return 0;
}
@@ -99,7 +99,7 @@ int main( int argc, char **argv )
if ( !metator.save(g) ) {
fprintf( stderr,
- "ttqm2ts 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,
- "ttqm2ts warning: File '%s' is not a TQt 2.x .qm"
+ "tqm2ts warning: File '%s' is not a TQt 2.x .qm"
" file (some information is lost)\n",
argv[i] );
}
} else {
fprintf( stderr,
- "ttqm2ts warning: For some reason, I cannot load '%s'\n",
+ "tqm2ts warning: For some reason, I cannot load '%s'\n",
argv[i] );
}
}