HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

po4a-gettextize — Convert a file to a PO file. More information: <https://www.po4a.org/man/man1/po4a-gettextize.1.php>

Submitted by: @import:tldr-pages··
0
Viewed 0 times
po4a-gettextizecommandconvertclifileinformationmore
linux

Problem

How to use the po4a-gettextize command: Convert a file to a PO file. More information: <https://www.po4a.org/man/man1/po4a-gettextize.1.php>.

Solution

po4a-gettextize — Convert a file to a PO file. More information: <https://www.po4a.org/man/man1/po4a-gettextize.1.php>.

Convert a text file to PO file:
po4a-gettextize --format {{text}} --master {{path/to/master.txt}} --po {{path/to/result.po}}


List all available formats:
po4a-gettextize --help-format


Convert a text file along with a translated document to a PO file (-l option can be provided multiple times):
po4a-gettextize --format {{text}} --master {{path/to/master.txt}} --localized {{path/to/translated.txt}} --po {{path/to/result.po}}

Code Snippets

Convert a text file to PO file

po4a-gettextize --format {{text}} --master {{path/to/master.txt}} --po {{path/to/result.po}}

List all available formats

po4a-gettextize --help-format

Convert a text file along with a translated document to a PO file (`-l` option can be provided multiple times)

po4a-gettextize --format {{text}} --master {{path/to/master.txt}} --localized {{path/to/translated.txt}} --po {{path/to/result.po}}

Context

tldr-pages: linux/po4a-gettextize

Revisions (0)

No revisions yet.