Skip to content
Fabio Sirna edited this page Jun 2, 2024 · 5 revisions

To translate darktable.

If you are a first contributor, the first important step is to contact previous translators to coordinate the work with them.

Translate strings

Get the po file for your language from the repository: PO

Get the latest generic PO template file: POT

Put both files on the same directory and open the po fifle:

$ poedit <lang>.po

And update it using the POT file, go to menu Translation -> Update from POT File... and select darktable.pot file.

And start translating. Saving will update lang.po.

Having a cleaner diff:

To avoid lot of noises when having diff from a po file one can filter out the output by using the following filter:

$ git config diff.po.textconv "msgcat --no-location --no-wrap --sort-output"