Metadata-Version: 1.1
Name: django-monkeytranslate
Version: 0.1.1
Summary: Monkeypatch django do-translation
Home-page: https://github.com/ashwoods/django-monkeytranslate
Author: Ashley Camba Garrido
Author-email: ashwoods@gmail.com
License: BSD
Description: 
        Django monkey patch translate
        =============================
        
        Small utility app for monkeypatching Django do_translate functions.
        It enables you to easily mark translations by wrapping them in curly braces,
        or do more funky stuff like override how static translations are 
        handled completely.
        
        
        Install
        -------
        
        Install into your python environment of choice using pip from
        the parent folder:
        
            pip install django-monkeytranslate
        
        
        Settings
        --------
        
        In your settings file include:
        
            MONKEYTRANSLATE_ENABLED = True
        
        And if you want to define the callable:
        
            MONKEYTRANSLATE_CALLABLE = callable
        
        
        Take a look at monkeytranslate.utils for an example of a callable to
         monkeypatch `django.utils.translation.trans_real.do_translate`
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Utilities
