|
1 |
| -fmt-about = Reformat paragraphs from input files (or stdin) to stdout. |
2 |
| -fmt-usage = fmt [-WIDTH] [OPTION]... [FILE]... |
| 1 | +fmt-about = Reformat paragraphs from input (or standard input) to stdout. |
| 2 | +fmt-usage = [OPTION]... [FILE]... |
| 3 | +
|
| 4 | +# Help messages |
| 5 | +fmt-crown-margin-help = First and second line of paragraph may have different indentations, in which case the first line's indentation is preserved, and each subsequent line's indentation matches the second line. |
| 6 | +fmt-tagged-paragraph-help = Like -c, except that the first and second line of a paragraph *must* have different indentation or they are treated as separate paragraphs. |
| 7 | +fmt-preserve-headers-help = Attempt to detect and preserve mail headers in the input. Be careful when combining this flag with -p. |
| 8 | +fmt-split-only-help = Split lines only, do not reflow. |
| 9 | +fmt-uniform-spacing-help = Insert exactly one space between words, and two between sentences. Sentence breaks in the input are detected as [?!.] followed by two spaces or a newline; other punctuation is not interpreted as a sentence break. |
| 10 | +fmt-prefix-help = Reformat only lines beginning with PREFIX, reattaching PREFIX to reformatted lines. Unless -x is specified, leading whitespace will be ignored when matching PREFIX. |
| 11 | +fmt-skip-prefix-help = Do not reformat lines beginning with PSKIP. Unless -X is specified, leading whitespace will be ignored when matching PSKIP |
| 12 | +fmt-exact-prefix-help = PREFIX must match at the beginning of the line with no preceding whitespace. |
| 13 | +fmt-exact-skip-prefix-help = PSKIP must match at the beginning of the line with no preceding whitespace. |
| 14 | +fmt-width-help = Fill output lines up to a maximum of WIDTH columns, default 75. This can be specified as a negative number in the first argument. |
| 15 | +fmt-goal-help = Goal width, default of 93% of WIDTH. Must be less than or equal to WIDTH. |
| 16 | +fmt-quick-help = Break lines more quickly at the expense of a potentially more ragged appearance. |
| 17 | +fmt-tab-width-help = Treat tabs as TABWIDTH spaces for determining line length, default 8. Note that this is used only for calculating line lengths; tabs are preserved in the output. |
| 18 | +
|
| 19 | +# Error messages |
| 20 | +fmt-error-invalid-goal = invalid goal: {$goal} |
| 21 | +fmt-error-goal-greater-than-width = GOAL cannot be greater than WIDTH. |
| 22 | +fmt-error-invalid-width = invalid width: {$width} |
| 23 | +fmt-error-width-out-of-range = invalid width: '{$width}': Numerical result out of range |
| 24 | +fmt-error-invalid-tabwidth = Invalid TABWIDTH specification: {$tabwidth} |
| 25 | +fmt-error-first-option-width = invalid option -- {$option}; -WIDTH is recognized only when it is the first |
| 26 | + option; use -w N instead |
| 27 | + Try 'fmt --help' for more information. |
| 28 | +fmt-error-read = read error |
| 29 | +fmt-error-invalid-width-malformed = invalid width: {$width} |
| 30 | +fmt-error-cannot-open-for-reading = cannot open {$file} for reading |
| 31 | +fmt-error-cannot-get-metadata = cannot get metadata for {$file} |
| 32 | +fmt-error-failed-to-write-output = failed to write output |
0 commit comments