summaryrefslogtreecommitdiffstats
path: root/tools/linguist/tqm2ts/main.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-11-07 22:37:50 -0600
committerTimothy Pearson <[email protected]>2013-11-07 22:37:50 -0600
commit40e50e6f20276afb557992a51d47618b014e388d (patch)
tree4eed8c9c445c41a1dbe156e26466f600b4a8ffc7 /tools/linguist/tqm2ts/main.cpp
parente193e0140419d117a52e3756ddd9d2bdf3ab7a4a (diff)
downloadtqt3-40e50e6f20276afb557992a51d47618b014e388d.tar.gz
tqt3-40e50e6f20276afb557992a51d47618b014e388d.zip
Update minor TQt3 tool names to match current TQt3 sources in GIT
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 6e71a3cbc..3dcd6bc25 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"
- " tqm2ts [ options ] qm-files\n"
+ " ttqm2ts [ 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 tqm2ts and exit\n" );
+ " Display the version of ttqm2ts 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, "tqm2ts version %s\n", TQT_VERSION_STR );
+ fprintf( stderr, "ttqm2ts version %s\n", TQT_VERSION_STR );
return 0;
}
@@ -99,7 +99,7 @@ int main( int argc, char **argv )
if ( !metator.save(g) ) {
fprintf( stderr,
- "tqm2ts warning: For some reason, I cannot save '%s'\n",
+ "ttqm2ts 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,
- "tqm2ts warning: File '%s' is not a TQt 2.x .qm"
+ "ttqm2ts warning: File '%s' is not a TQt 2.x .qm"
" file (some information is lost)\n",
argv[i] );
}
} else {
fprintf( stderr,
- "tqm2ts warning: For some reason, I cannot load '%s'\n",
+ "ttqm2ts warning: For some reason, I cannot load '%s'\n",
argv[i] );
}
}