summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--transex3/source/cfglex.l3
-rw-r--r--transex3/source/lngex.cxx7
-rw-r--r--transex3/source/srclex.l3
3 files changed, 8 insertions, 5 deletions
diff --git a/transex3/source/cfglex.l b/transex3/source/cfglex.l
index bd1b1e606888..b56a87f77d6e 100644
--- a/transex3/source/cfglex.l
+++ b/transex3/source/cfglex.l
@@ -156,7 +156,7 @@ main( int argc, char* argv[])
pOutput = GetOutputFile( argc, argv );
if ( !pOutput ) {
- fprintf( stdout, "Syntax: CFGEX[-p Prj][-r PrjRoot]-i FileIn [-o FileOut][-m DataBase][-e][-b][-u][-d DoneFile][-g[:dtd]]\n" );
+ fprintf( stdout, "Syntax: CFGEX[-p Prj][-r PrjRoot]-i FileIn [-o FileOut][-m DataBase][-e][-b][-u][-d DoneFile][-g[:dtd]][-UTF8]\n" );
fprintf( stdout, " Prj: Project\n" );
fprintf( stdout, " PrjRoot: Path to project root (..\\.. etc.)\n" );
fprintf( stdout, " FileIn: Source files (*.src)\n" );
@@ -167,6 +167,7 @@ main( int argc, char* argv[])
fprintf( stdout, " -u: [english] and [german] are allowed, Id is Taken from DataBase \n" );
fprintf( stdout, " -g[:dtd]: enables generation of properties (dtds if :dtd is set) - in this case FileOut is the output path\n" );
fprintf( stdout, " -d: enables generation of *.don if work is done\n" );
+ fprintf( stdout, " -UTF8: enable UTF8 as language independent encoding\n" );
return 1;
}
diff --git a/transex3/source/lngex.cxx b/transex3/source/lngex.cxx
index 127e5e0de644..2b79b48f73da 100644
--- a/transex3/source/lngex.cxx
+++ b/transex3/source/lngex.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: lngex.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: nf $ $Date: 2001-04-25 10:17:04 $
+ * last change: $Author: nf $ $Date: 2001-05-09 08:10:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -173,7 +173,7 @@ BOOL ParseCommandLine( int argc, char* argv[])
void Help()
/*****************************************************************************/
{
- fprintf( stdout, "Syntax:LNGEX[-p Prj][-r PrjRoot]-i FileIn -o FileOut[-m DataBase][-e][-b][-u]\n" );
+ fprintf( stdout, "Syntax:LNGEX[-p Prj][-r PrjRoot]-i FileIn -o FileOut[-m DataBase][-e][-b][-u][-UTF8]\n" );
fprintf( stdout, " Prj: Project\n" );
fprintf( stdout, " PrjRoot: Path to project root (..\\.. etc.)\n" );
fprintf( stdout, " FileIn: Source file (*.lng)\n" );
@@ -182,6 +182,7 @@ void Help()
fprintf( stdout, " -e: no function\n" );
fprintf( stdout, " -b: no function\n" );
fprintf( stdout, " -u: no function\n" );
+ fprintf( stdout, " -UTF8: enable UTF8 as language independent encoding\n" );
}
/*****************************************************************************/
diff --git a/transex3/source/srclex.l b/transex3/source/srclex.l
index d0af23396e27..b76b1b9ad72e 100644
--- a/transex3/source/srclex.l
+++ b/transex3/source/srclex.l
@@ -248,7 +248,7 @@ main( int argc, char* argv[])
pOutput = GetOutputFile( argc, argv );
if ( !pOutput ) {
- fprintf( stdout, "Syntax:TRANSEX[-p Prj][-r PrjRoot]-i FileIn...[-o FileOut][-m DataBase][-e][-b][-u]\n" );
+ fprintf( stdout, "Syntax:TRANSEX[-p Prj][-r PrjRoot]-i FileIn...[-o FileOut][-m DataBase][-e][-b][-u][-UTF8]\n" );
fprintf( stdout, " Prj: Project\n" );
fprintf( stdout, " PrjRoot: Path to project root (..\\.. etc.)\n" );
fprintf( stdout, " FileIn: Source files (*.src)\n" );
@@ -257,6 +257,7 @@ main( int argc, char* argv[])
fprintf( stdout, " -e: Disable writing errorlog\n" );
fprintf( stdout, " -b: Break when Token \"HelpText\" found in source\n" );
fprintf( stdout, " -u: [english] and [german] are allowed, Id is Taken from DataBase \n" );
+ fprintf( stdout, " -UTF8: enable UTF8 as language independent encoding\n" );
return 1;
}