2 @cindex @code{msgcat} program, usage
4 msgcat [@var{option}] [@var{inputfile}]...
7 @cindex concatenate PO files
9 The @code{msgcat} program concatenates and merges the specified PO files.
10 It finds messages which are common to two or more of the specified PO files.
11 By using the @code{--more-than} option, greater commonality may be requested
12 before messages are printed. Conversely, the @code{--less-than} option may be
13 used to specify less commonality before messages are printed (i.e.
14 @samp{--less-than=2} will only print the unique messages). Translations,
15 comments and extract comments will be cumulated, except that if
16 @code{--use-first} is specified, they will be taken from the first PO file
17 to define them. File positions from all PO files will be cumulated.
19 @subsection Input file location
22 @item @var{inputfile} @dots{}
26 @itemx --files-from=@var{file}
27 @opindex -f@r{, @code{msgcat} option}
28 @opindex --files-from@r{, @code{msgcat} option}
29 Read the names of the input files from @var{file} instead of getting
30 them from the command line.
32 @item -D @var{directory}
33 @itemx --directory=@var{directory}
34 @opindex -D@r{, @code{msgcat} option}
35 @opindex --directory@r{, @code{msgcat} option}
36 Add @var{directory} to the list of directories. Source files are
37 searched relative to this list of directories. The resulting @file{.po}
38 file will be written relative to the current directory, though.
42 If @var{inputfile} is @samp{-}, standard input is read.
44 @subsection Output file location
48 @itemx --output-file=@var{file}
49 @opindex -o@r{, @code{msgcat} option}
50 @opindex --output-file@r{, @code{msgcat} option}
51 Write output to specified file.
55 @cindex standard output, and @code{msgcat}
56 The results are written to standard output if no output file is specified
59 @subsection Message selection
63 @itemx --less-than=@var{number}
64 @opindex -<@r{, @code{msgcat} option}
65 @opindex --less-than@r{, @code{msgcat} option}
66 Print messages with less than @var{number} definitions, defaults to infinite
70 @itemx --more-than=@var{number}
71 @opindex ->@r{, @code{msgcat} option}
72 @opindex --more-than@r{, @code{msgcat} option}
73 Print messages with more than @var{number} definitions, defaults to 0 if not
78 @opindex -u@r{, @code{msgcat} option}
79 @opindex --unique@r{, @code{msgcat} option}
80 Shorthand for @samp{--less-than=2}. Requests that only unique messages be
85 @subsection Input file syntax
89 @itemx --properties-input
90 @opindex -P@r{, @code{msgcat} option}
91 @opindex --properties-input@r{, @code{msgcat} option}
92 Assume the input files are Java ResourceBundles in Java @code{.properties}
93 syntax, not in PO file syntax.
95 @item --stringtable-input
96 @opindex --stringtable-input@r{, @code{msgcat} option}
97 Assume the input files are NeXTstep/GNUstep localized resource files in
98 @code{.strings} syntax, not in PO file syntax.
102 @subsection Output details
104 @c --no-escape and --escape omitted on purpose. They are not useful.
108 @itemx --to-code=@var{name}
109 @opindex -t@r{, @code{msgcat} option}
110 @opindex --to-code@r{, @code{msgcat} option}
111 Specify encoding for output.
114 @opindex --use-first@r{, @code{msgcat} option}
115 Use first available translation for each message. Don't merge several
116 translations into one.
119 @opindex --force-po@r{, @code{msgcat} option}
120 Always write an output file even if it contains no message.
124 @opindex -i@r{, @code{msgcat} option}
125 @opindex --indent@r{, @code{msgcat} option}
126 Write the .po file using indented style.
129 @opindex --no-location@r{, @code{msgcat} option}
130 Do not write @samp{#: @var{filename}:@var{line}} lines.
133 @itemx --add-location
134 @opindex -n@r{, @code{msgcat} option}
135 @opindex --add-location@r{, @code{msgcat} option}
136 Generate @samp{#: @var{filename}:@var{line}} lines (default).
139 @opindex --strict@r{, @code{msgcat} option}
140 Write out a strict Uniforum conforming PO file. Note that this
141 Uniforum format should be avoided because it doesn't support the
145 @itemx --properties-output
146 @opindex -p@r{, @code{msgcat} option}
147 @opindex --properties-output@r{, @code{msgcat} option}
148 Write out a Java ResourceBundle in Java @code{.properties} syntax. Note
149 that this file format doesn't support plural forms and silently drops
152 @item --stringtable-output
153 @opindex --stringtable-output@r{, @code{msgcat} option}
154 Write out a NeXTstep/GNUstep localized resource file in @code{.strings} syntax.
155 Note that this file format doesn't support plural forms.
157 @item -w @var{number}
158 @itemx --width=@var{number}
159 @opindex -w@r{, @code{msgcat} option}
160 @opindex --width@r{, @code{msgcat} option}
161 Set the output page width. Long strings in the output files will be
162 split across multiple lines in order to ensure that each line's width
163 (= number of screen columns) is less or equal to the given @var{number}.
166 @opindex --no-wrap@r{, @code{msgcat} option}
167 Do not break long message lines. Message lines whose width exceeds the
168 output page width will not be split into several lines. Only file reference
169 lines which are wider than the output page width will be split.
173 @opindex -s@r{, @code{msgcat} option}
174 @opindex --sort-output@r{, @code{msgcat} option}
175 @cindex sorting @code{msgcat} output
176 Generate sorted output. Note that using this option makes it much harder
177 for the translator to understand each message's context.
180 @itemx --sort-by-file
181 @opindex -F@r{, @code{msgcat} option}
182 @opindex --sort-by-file@r{, @code{msgcat} option}
183 Sort output by file location.
187 @subsection Informative output
192 @opindex -h@r{, @code{msgcat} option}
193 @opindex --help@r{, @code{msgcat} option}
194 Display this help and exit.
198 @opindex -V@r{, @code{msgcat} option}
199 @opindex --version@r{, @code{msgcat} option}
200 Output version information and exit.