summaryrefslogtreecommitdiffstats
path: root/doc/msgunfmt.texi
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2003-02-13 20:22:13 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:09:01 +0200
commitd50ef6b440c5c8f6e00203e3f3f46753b84f345d (patch)
tree31473c9f3fe48d5c2b37c87a8df29eecea788edd /doc/msgunfmt.texi
parent8c1cf902a972af9c20ac8c84ff2af229af2074e5 (diff)
downloadexternal_gettext-d50ef6b440c5c8f6e00203e3f3f46753b84f345d.zip
external_gettext-d50ef6b440c5c8f6e00203e3f3f46753b84f345d.tar.gz
external_gettext-d50ef6b440c5c8f6e00203e3f3f46753b84f345d.tar.bz2
Move doc/msgunfmt.texi to gettext-tools/doc/msgunfmt.texi.
Diffstat (limited to 'doc/msgunfmt.texi')
-rw-r--r--doc/msgunfmt.texi158
1 files changed, 0 insertions, 158 deletions
diff --git a/doc/msgunfmt.texi b/doc/msgunfmt.texi
deleted file mode 100644
index a0051bb..0000000
--- a/doc/msgunfmt.texi
+++ /dev/null
@@ -1,158 +0,0 @@
-@pindex msgunfmt
-@cindex @code{msgunfmt} program, usage
-@example
-msgunfmt [@var{option}] [@var{file}]...
-@end example
-
-@cindex convert binary message catalog into PO file
-The @code{msgunfmt} program converts a binary message catalog to a
-Uniforum style .po file.
-
-@subsection Operation mode
-
-@table @samp
-@item -j
-@itemx --java
-@opindex -j@r{, @code{msgunfmt} option}
-@opindex --java@r{, @code{msgunfmt} option}
-@cindex Java mode, and @code{msgunfmt} program
-Java mode: input is a Java @code{ResourceBundle} class.
-
-@item --tcl
-@opindex --tcl@r{, @code{msgunfmt} option}
-@cindex Tcl mode, and @code{msgunfmt} program
-Tcl mode: input is a tcl/msgcat @file{.msg} file.
-
-@end table
-
-@subsection Input file location
-
-@table @samp
-@item @var{file} @dots{}
-Input .mo files.
-
-@end table
-
-If no input @var{file} is given or if it is @samp{-}, standard input is read.
-
-@subsection Input file location in Java mode
-
-@table @samp
-@item -r @var{resource}
-@itemx --resource=@var{resource}
-@opindex -r@r{, @code{msgunfmt} option}
-@opindex --resource@r{, @code{msgunfmt} option}
-Specify the resource name.
-
-@item -l @var{locale}
-@itemx --locale=@var{locale}
-@opindex -l@r{, @code{msgunfmt} option}
-@opindex --locale@r{, @code{msgunfmt} option}
-Specify the locale name, either a language specification of the form @var{ll}
-or a combined language and country specification of the form @var{ll_CC}.
-
-@end table
-
-The class name is determined by appending the locale name to the resource name,
-separated with an underscore. The class is located using the @code{CLASSPATH}.
-
-@subsection Input file location in Tcl mode
-
-@table @samp
-@item -l @var{locale}
-@itemx --locale=@var{locale}
-@opindex -l@r{, @code{msgunfmt} option}
-@opindex --locale@r{, @code{msgunfmt} option}
-Specify the locale name, either a language specification of the form @var{ll}
-or a combined language and country specification of the form @var{ll_CC}.
-
-@item -d @var{directory}
-@opindex -d@r{, @code{msgunfmt} option}
-Specify the base directory of @file{.msg} message catalogs.
-
-@end table
-
-The @samp{-l} and @samp{-d} options are mandatory. The @file{.msg} file is
-located in the specified directory.
-
-@subsection Output file location
-
-@table @samp
-@item -o @var{file}
-@itemx --output-file=@var{file}
-@opindex -o@r{, @code{msgunfmt} option}
-@opindex --output-file@r{, @code{msgunfmt} option}
-Write output to specified file.
-
-@end table
-
-The results are written to standard output if no output file is specified
-or if it is @samp{-}.
-
-@subsection Output details
-
-@c --no-escape and --escape omitted on purpose. They are not useful.
-
-@table @samp
-@item --force-po
-@opindex --force-po@r{, @code{msgunfmt} option}
-Always write an output file even if it contains no message.
-
-@item -i
-@itemx --indent
-@opindex -i@r{, @code{msgunfmt} option}
-@opindex --indent@r{, @code{msgunfmt} option}
-Write the .po file using indented style.
-
-@item --strict
-@opindex --strict@r{, @code{msgunfmt} option}
-Write out a strict Uniforum conforming PO file. Note that this
-Uniforum format should be avoided because it doesn't support the
-GNU extensions.
-
-@item -w @var{number}
-@itemx --width=@var{number}
-@opindex -w@r{, @code{msgunfmt} option}
-@opindex --width@r{, @code{msgunfmt} option}
-Set the output page width. Long strings in the output files will be
-split across multiple lines in order to ensure that each line's width
-(= number of screen columns) is less or equal to the given @var{number}.
-
-@item --no-wrap
-@opindex --no-wrap@r{, @code{msgunfmt} option}
-Do not break long message lines. Message lines whose width exceeds the
-output page width will not be split into several lines. Only file reference
-lines which are wider than the output page width will be split.
-
-@item -s
-@itemx --sort-output
-@opindex -s@r{, @code{msgunfmt} option}
-@opindex --sort-output@r{, @code{msgunfmt} option}
-@cindex sorting @code{msgunfmt} output
-Generate sorted output. Note that using this option makes it much harder
-for the translator to understand each message's context.
-
-@end table
-
-@subsection Informative output
-
-@table @samp
-@item -h
-@itemx --help
-@opindex -h@r{, @code{msgunfmt} option}
-@opindex --help@r{, @code{msgunfmt} option}
-Display this help and exit.
-
-@item -V
-@itemx --version
-@opindex -V@r{, @code{msgunfmt} option}
-@opindex --version@r{, @code{msgunfmt} option}
-Output version information and exit.
-
-@item -v
-@itemx --verbose
-@opindex -v@r{, @code{msgunfmt} option}
-@opindex --verbose@r{, @code{msgunfmt} option}
-Increase verbosity level.
-
-@end table