Metadata-Version: 1.1
Name: django-autotranslate
Version: 0.1
Summary: A simple Django app to autotranslate po files using google translate
Home-page: http://www.example.com/
Author: Ankit Popli
Author-email: ankitpopli1891@gmail.com
License: MIT License
Description: ====================
        django-autotranslate
        ====================
        
        A simple Django app to autotranslate `.po` files using google translate.
        
            Disclaimer: This code seems to work fine, and says what it does. 
        
        Caution:
        --------
        
        #. The code is highly unoptimized (at least in my opinion).
        #. Lacks proper Documentation.
        #. Lacks Test Cases.
        
        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.
        #. run the following command to see the magic happen (fingers crossed):
           
           python manage.py translate_messages
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
