Metadata-Version: 2.0
Name: django-suit-locale
Version: 1.0.8
Summary: Django Suit localization.
Home-page: https://github.com/jbub/django-suit-locale
Author: Juraj Bubniak
Author-email: contact@jbub.eu
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules

django-suit-locale
==================

.. image:: https://pypip.in/v/django-suit-locale/badge.png
    :target: https://pypi.python.org/pypi/django-suit-locale/

.. image:: https://pypip.in/d/django-suit-locale/badge.png
    :target: https://pypi.python.org/pypi/django-suit-locale/

.. image:: https://pypip.in/wheel/django-suit-locale/badge.png
    :target: https://pypi.python.org/pypi/django-suit-locale/

.. image:: https://pypip.in/license/django-suit-locale/badge.png
    :target: https://pypi.python.org/pypi/django-suit-locale/

The aim of this project is to bring better localization process for Django Suit (http://djangosuit.com/).

What i have done
----------------

* generated suit locale files
* compared with ``django.contrib.admin`` locale files and removed duplicates
* compared with the supported packages and removed duplicates
* left the translations that do not maintain their own translation process
* left the translations that are from maintained packages but i did not found them

Package support
---------------

django-reversion
    Fork https://github.com/etianen/django-reversion and translate.

django-cms
    Translate at Transifex https://www.transifex.com/projects/p/django-cms/.

django-filer
    Translate at Transifex https://www.transifex.com/projects/p/django-filer/.

django-import-export
    This package is not localized, so translation is included in this repository.

Localize
--------

Use Transifex to translate to your language https://www.transifex.com/projects/p/django-suit-locale/.

Installation
------------

* Install easily using pip:

.. code-block:: bash

    pip install django-suit-locale

* Add ``suitlocale`` to your ``INSTALLED_APPS`` settings:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'suitlocale',
        'suit',
    )


