Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 743 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 743 Bytes

Trubar

A tool for translation and localization of Python programs via modification of source files.

Trubar supports f-strings and does not require any changes to the original source code, such as marking strings for translation.

Installation and use

Use pip to install Trubar

pip install trubar`

Collect (or update) all strings in your project by

trubar collect -s myproject/source messages.jaml

Add translations to messages.jaml and then run

trubar translate -s myproject/source -d translated/myproject/source messages.jaml

to produce translated source files.

See Getting Started for a slightly longer introduction and complete documentation.