summaryrefslogtreecommitdiffstats
path: root/doc/msgexec.texi
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-12-11 11:33:55 +0000
committerBruno Haible <bruno@clisp.org>2009-06-21 23:39:15 +0200
commit32446db9526f25419b5444861618ff269a4ca0cc (patch)
treea9fea03a68cc330b3cff7c326ed62bde8063911d /doc/msgexec.texi
parentbb7c51af98793b9fca0505f7c1a2b05b5bcac1a3 (diff)
downloadexternal_gettext-32446db9526f25419b5444861618ff269a4ca0cc.zip
external_gettext-32446db9526f25419b5444861618ff269a4ca0cc.tar.gz
external_gettext-32446db9526f25419b5444861618ff269a4ca0cc.tar.bz2
Move msgexec.texi to msgfilter.texi.
Diffstat (limited to 'doc/msgexec.texi')
-rw-r--r--doc/msgexec.texi116
1 files changed, 0 insertions, 116 deletions
diff --git a/doc/msgexec.texi b/doc/msgexec.texi
deleted file mode 100644
index 2ced8d5..0000000
--- a/doc/msgexec.texi
+++ /dev/null
@@ -1,116 +0,0 @@
-@example
-msgexec [@var{option}] @var{filter} [@var{filter-option}]
-@end example
-
-The @code{msgexec} program applies a filter to all translations of a
-translation catalog.
-
-@subsection Input file location
-
-@table @samp
-@item -i @var{inputfile}
-@itemx --input=@var{inputfile}
-Input PO file.
-
-@item -D @var{directory}
-@itemx --directory=@var{directory}
-Add @var{directory} to the list of directories. Source files are
-searched relative to this list of directories. The resulting @file{.po}
-file will be written relative to the current directory, though.
-
-@end table
-
-If no @var{inputfile} is given or if it is @samp{-}, standard input is read.
-
-@subsection Output file location
-
-@table @samp
-@item -o @var{file}
-@itemx --output-file=@var{file}
-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 The filter
-
-The @var{filter} can be any program that reads a translation from standard
-input and writes a modified translation to standard output. A frequently
-used filter is @samp{sed}.
-
-@subsection Useful @var{filter-option}s when the @var{filter} is @samp{sed}
-
-@table @samp
-@item -e @var{script}
-@itemx --expression=@var{script}
-Add @var{script} to the commands to be executed.
-
-@item -f @var{scriptfile}
-@itemx --file=@var{scriptfile}
-Add the contents of @var{scriptfile} to the commands to be executed.
-
-@item -n
-@itemx --quiet
-@itemx --silent
-Suppress automatic printing of pattern space.
-
-@end table
-
-@subsection Output details
-
-@c --no-escape and --escape omitted on purpose. They are not useful.
-
-@table @samp
-@item --force-po
-Always write an output file even if it contains no message.
-
-@item --indent
-Write the .po file using indented style.
-
-@item --keep-header
-Keep the header entry, i.e. the message with @samp{msgid ""}, unmodified,
-instead of filtering it. By default, the header entry is subject to
-filtering like any other message.
-
-@item --no-location
-Do not write @samp{#: @var{filename}:@var{line}} lines.
-
-@item --add-location
-Generate @samp{#: @var{filename}:@var{line}} lines (default).
-
-@item --strict
-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}
-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 -s
-@itemx --sort-output
-Generate sorted output. Note that using this option makes it much harder
-for the translator to understand each message's context.
-
-@item -F
-@itemx --sort-by-file
-Sort output by file location.
-
-@end table
-
-@subsection Informative output
-
-@table @samp
-@item -h
-@itemx --help
-Display this help and exit.
-
-@item -V
-@itemx --version
-Output version information and exit.
-
-@end table