mapsme / django_localize

A Django component for generating localizations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django_localize

https://travis-ci.org/therearesomewhocallmetim/django_localize.svg?branch=master

A django module for turning strings.txt into po-mo files.

Documentation

The full documentation is at https://django_localize.readthedocs.io.

Quickstart

Install django_localize:

pip install django_localize

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'django_localize.apps.DjangoLocalizeConfig',
    ...
)

Add django_localize's URL patterns:

from django_localize import urls as django_localize_urls


urlpatterns = [
    ...
    url(r'^', include(django_localize_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

About

A Django component for generating localizations

License:Other


Languages

Language:Python 88.4%Language:Makefile 8.2%Language:HTML 3.4%