summaryrefslogtreecommitdiff
path: root/po4a
Commit message (Collapse)AuthorAgeFilesLines
* po4a/update-po: Display the script name consistently in error messages.Lasse Collin2023-03-171-1/+1
|
* po4a/po4a.conf: Sort the language identifiers in alphabetical order.Lasse Collin2023-01-271-1/+1
|
* Translations: Add Brazilian Portuguese translation of man pages.Jia Tan2023-01-272-1/+3678
| | | | Thanks to Rafael Fontenelle.
* Translations: Add Korean translation of man pages.Jia Tan2023-01-032-1/+5553
| | | | Thanks to Seong-ho Cho
* Translations: Add Ukrainian translations of man pages.Jia Tan2022-12-302-1/+3677
| | | | Thanks to Yuri Chornoivan
* Translations: Update the German man page translations.Lasse Collin2022-12-081-3189/+1367
|
* Translations: Add Romanian translation of man pages.Jia Tan2022-12-082-1/+3693
| | | | Thanks to Remus-Gabriel Chelu.
* Translations: Rename poa4/fr_FR.po to po4a/fr.po.Lasse Collin2022-11-102-1/+1
| | | | | | | | | That's how it is preferred at the Translation Project. On my system /usr/share/man/fr_FR doesn't contain any other man pages than XZ Utils while /usr/share/man/fr has quite a few, so this will fix that too. Thanks to Benno Schulenberg from the Translation Project.
* Translations: Change the copyright comment string to use with po4a.Lasse Collin2022-07-251-1/+1
| | | | | | This affects the second line in po4a/xz-man.pot. The man pages of xzdiff, xzgrep, and xzmore are from GNU gzip and under GNU GPLv2+ while the rest of the man pages are in the public domain.
* Translations: Fix po4a failure with the French man page translations.Lasse Collin2022-02-181-2/+4
| | | | Thanks to Mario Blättermann for the patch.
* Translations: Add French translation of man pages.Lasse Collin2022-02-072-1/+3542
| | | | | | | | This matches xz-utils 5.2.5-2 in Debian. The translation was done by "bubu", proofread by the debian-l10n-french mailing list contributors, and submitted to me on the xz-devel mailing list by Jean-Pierre Giraud. Thanks to everyone!
* Translations: Add German translation of the man pages.Lasse Collin2020-02-142-1/+5533
| | | | Thanks to Mario Blättermann.
* Build: Add support for translated man pages using po4a.Lasse Collin2020-02-073-0/+61
The dependency on po4a is optional. It's never required to install the translated man pages when xz is built from a release tarball. If po4a is missing when building from xz.git, the translated man pages won't be generated but otherwise the build will work normally. The translations are only updated automatically by autogen.sh and by "make mydist". This makes it easy to keep po4a as an optional dependency and ensures that I won't forget to put updated translations to a release tarball. The translated man pages aren't installed if --disable-nls is used. The installation of translated man pages abuses Automake internals by calling "install-man" with redefined dist_man_MANS and man_MANS. This makes the hairy script code slightly less hairy. If it breaks some day, this code needs to be fixed; don't blame Automake developers. Also, this adds more quotes to the existing shell script code in the Makefile.am "-hook"s.