oscarmlage / django-cruds-adminlte

django-cruds is simple drop-in django app that creates CRUD for faster prototyping
BSD 3-Clause "New" or "Revised" License
425 stars 82 forks source link

Translate #44

Closed fjbardelli closed 6 years ago

fjbardelli commented 6 years ago

It is possible to translate button and title labels into other languages

luisza commented 6 years ago

Hi, Inside the code we use translation approach so it's possible to make translation with only the django commands like

python manage.py makemessages -l es

translate to your language and compile

python manage.py compilemessages -l es

If you want to make a PR with you translation is always welcome.

fjbardelli commented 6 years ago

Thanks