https://github.com/mapsme/django_localize
A Django component for generating localizations
https://github.com/mapsme/django_localize
Last synced: 8 months ago
JSON representation
A Django component for generating localizations
- Host: GitHub
- URL: https://github.com/mapsme/django_localize
- Owner: mapsme
- License: other
- Created: 2019-07-22T14:53:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T20:39:24.000Z (over 3 years ago)
- Last Synced: 2025-10-11T06:32:06.973Z (8 months ago)
- Language: Python
- Size: 23.4 KB
- Stars: 1
- Watchers: 19
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
=============================
django_localize
=============================
.. image:: https://badge.fury.io/py/django_localize.svg
:target: https://badge.fury.io/py/django_localize
.. image:: https://travis-ci.org/therearesomewhocallmetim/django_localize.svg?branch=master
:target: https://travis-ci.org/therearesomewhocallmetim/django_localize
.. image:: https://codecov.io/gh/therearesomewhocallmetim/django_localize/branch/master/graph/badge.svg
:target: https://codecov.io/gh/therearesomewhocallmetim/django_localize
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`:
.. code-block:: python
INSTALLED_APPS = (
...
'django_localize.apps.DjangoLocalizeConfig',
...
)
Add django_localize's URL patterns:
.. code-block:: python
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 /bin/activate
(myenv) $ pip install tox
(myenv) $ tox
Credits
-------
Tools used in rendering this package:
* Cookiecutter_
* `cookiecutter-djangopackage`_
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage