{% extends "templates/base.html" %} {% block navbar %}{{ select_navbar('LANGUAGES') }}{% endblock %} {% block body %}

{% trans %}Languages{% endtrans %}

{% trans %}

For now {{ APP_NAME }} has only to available languages: en_US and pt_BR. But you can contribute translating it for your language

The internationalization is made using Babel. To include a new language, add it on settings.py and runmake_files.py script. It will create a folder with the language name on locale the messages.po file. You use this file to make the translation. See pt_BR file as example.

After finishing the translation, run make_file.py again to compile the new information.

If you become a translator and the {{ APP_NAME }} begin to charge for the service in the future, you will be on the VIP list so you will be able to use the service for free!

{% endtrans %}
{% endblock %}