Skip to content

Python Module to make translation files for all application python files

License

Notifications You must be signed in to change notification settings

bambier/py-auto-translate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

py-auto-translate

Python Module to make translation files for all application python files

Usage

./translate.py --log-level DEBUG --translate --compile --domain com.domain --path ./src

or in short

./translate.py -ll d -t -c -d com.domain -p ./src

Architecture

  graph TD;
    Path --> Translator;
    Translator --> File1;
    Translator --> File2;
    Translator --> File3;
    Translator --> ...;
    File1 --> Translate;
    File2 --> Translate;
    File3 --> Translate;
    ... --> Translate;
    Translate --> .po;
    Translate --> .pot;
    .po --> Compile;

    Compile --> .mo
    

Loading

About

Python Module to make translation files for all application python files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages