Metadata-Version: 1.1
Name: django-autotranslate
Version: 0.4
Summary: A simple Django app to automatically translate the pot (`.po`) files generated by django's makemessages command using google translate.
Home-page: https://github.com/ankitpopli1891/django-autotranslate/
Author: Ankit Popli
Author-email: ankitpopli1891@gmail.com
License: MIT License
Description: ====================
        django-autotranslate
        ====================
        
        A simple Django app to automatically translate the pot (`.po`) files generated by django's makemessages command
        using google translate.
        
        |pypi-version| |pypi-downloads-month| |requirements|
        
        Installation:
        -------------
        
            $  pip install django-autotranslate
        
        Quickstart:
        -----------
        
            **Assumption:** you already have run `makemessages` command and `.po` files have been generated.
        
        #. Add 'autotranslate' to **INSTALLED_APPS** setting.
        #. Add GOOGLE_TRANSLATE_KEY to your settings.py if you want to use the paid API
        #. Otherwise it will use the 'goslate' package to use free web-based Google Translate
        #. Run the following command to see the magic happen (fingers crossed):
        
            $  python manage.py translate_messages
        
        .. |pypi-version| image:: https://img.shields.io/pypi/v/django-autotranslate.svg
            :target: https://pypi.python.org/pypi/django-autotranslate/
        
        .. |pypi-downloads-month| image:: https://img.shields.io/pypi/dm/django-autotranslate.svg
            :target: https://pypi.python.org/pypi/django-autotranslate/
        
        .. |requirements| image:: https://requires.io/github/ankitpopli1891/django-autotranslate/requirements.svg?branch=master
            :target: https://requires.io/github/ankitpopli1891/django-autotranslate/requirements/?branch=master
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
