ABlog InternationalizationΒΆ

ABlog automatically generates certain labels like Posts and Categories. If these labels appear in English on your blog although you specified another language, then this page is for you.

ABlog needs your help for translation of these labels. Translation process involves the following steps:

  1. Update translatable messages:

    Execute extract_messages each time a translatable message text is changed or added:

    $ python setup.py extract_messages -o ablog/locales/sphinx.pot
    ...
    

    This will create or update ablog/locales/sphinx.pot file, the central messages catalog used by the different translations.

    1. Create new translation catalog:

      Execute init_catalog once for each new language, e.g.:

      $ python setup.py init_catalog -l de -i ablog/locales/sphinx.pot -o ablog/locales/de/LC_MESSAGES/sphinx.po
      

      This will create a file ablog/locales/de/LC_MESSAGES/sphinx.po in which translations needs to be placed.

    2. Update translation catalog:

      Execute update_catalog for each existing language, e.g.:

      $ python setup.py update_catalog -l de -i ablog/locales/sphinx.pot -o ablog/locales/de/LC_MESSAGES/sphinx.po
      

      This will update file ablog/locales/de/LC_MESSAGES/sphinx.po where translations of new text needs to be placed.

  2. Compile catalogs:

    Execute compile_catalog for each existing language, e.g:

    $ python setup.py compile_catalog --directory ablog/locales/ --domain sphinx --locale de
    

Comments

comments powered by Disqus