Skip to content

A simple management command to get translations from localise.biz (Loco) for your django app.

License

Notifications You must be signed in to change notification settings

thisfro/djangoloco

Repository files navigation

djangoloco

A simple management command to get translations from localise.biz (Loco) for your django app. It will automatically download all the configured locales.

Install

pip install djangoloco

Don't forget to enable the app

INSTALLED_APPS = [
    ...
    "djangoloco",
    ...
]

Setup

In your settings.py, set the API key from Loco (get it here) and the app that you want to translate

LOCO_API_KEY = ...
LOCO_APP = "my_app"

Usage

To pull the translations, run

python manage.py loco

it will create the files for the enabled languages.

Then you must run makemessages and compilemessages to actually make and compile the messages for django.

About

A simple management command to get translations from localise.biz (Loco) for your django app.

Resources

License

Stars

Watchers

Forks

Languages