Metadata-Version: 1.1
Name: django-debug-toolbar-multilang
Version: 1.0.1
Summary: Language panel for django-debug-toolbar
Home-page: http://github.com/matt3o12/django-debug-toolbar-multilang
Author: Matteo Kloiber
Author-email: info@matt3o12.de
License: MIT
Description: Django-debug-toolbar-multilang
        ==============================
        
        |Build Status| |Coverage Status|
        
        Django-debug-toolbar-multilang aims to help you internationalize and
        localized Django apps. It adds a "Language" panel to the toolbar and
        shows you the current language as well as all available languages. It
        also lets you quickly change the language to the selected one.
        
        Screenshots
        ===========
        
        .. figure:: http://media.matt3o12.de/djdt-multilang/v1.0/panel-max.png
           :alt: panel preview1
        
           panel preview1
        
        Install
        -------
        
        The recommended way to install djdt-multilang is by using pip:
        
        ::
        
            pip install django-debug-toolbar-multilang
        
        If you'd like to test an upcoming release, use instead:
        
        ::
        
            pip install -e git+https://github.com/Matt3o12/django-debug-toolbar-multilang#egg=django-debug-toolbar-multilang
        
        Next, you will need to add djdt-multilang to add
        ``debug_toolbar_multilang.panels.multilang.MultiLangPanel`` to
        ``DEBUG_TOOLBAR_PANELS`` and ``debug_toolbar_multilang`` to
        ``INSTALLED_APPS``:
        
        ::
        
            DEBUG_TOOLBAR_PANELS = [
                ...
                'debug_toolbar_multilang.panels.multilang.MultiLangPanel',
            ]
        
            INSTALLED_APPS = [
                ...
                'debug_toolbar_multilang'
            ]
        
        If you haven't already set, ``DEBUG_TOOLBAR_PANELS`` make sure not to
        forget `the
        defaults <http://django-debug-toolbar.readthedocs.org/en/latest/configuration.html#debug-toolbar-panels>`__:
        
        ::
        
            DEBUG_TOOLBAR_PANELS = [
                'debug_toolbar.panels.versions.VersionsPanel',
                'debug_toolbar.panels.timer.TimerPanel',
                'debug_toolbar.panels.settings.SettingsPanel',
                'debug_toolbar.panels.headers.HeadersPanel',
                'debug_toolbar.panels.request.RequestPanel',
                'debug_toolbar.panels.sql.SQLPanel',
                'debug_toolbar.panels.staticfiles.StaticFilesPanel',
                'debug_toolbar.panels.templates.TemplatesPanel',
                'debug_toolbar.panels.cache.CachePanel',
                'debug_toolbar.panels.signals.SignalsPanel',
                'debug_toolbar.panels.logging.LoggingPanel',
                'debug_toolbar.panels.redirects.RedirectsPanel',
                'debug_toolbar_multilang.panels.multilang.MultiLangPanel',
            ]
        
        You will also need to enable the `Locale
        middleware <https://docs.djangoproject.com/en/dev/ref/middleware/#module-django.middleware.locale>`__.
        
        .. |Build Status| image:: https://travis-ci.org/Matt3o12/django-debug-toolbar-multilang.svg?branch=master
           :target: https://travis-ci.org/Matt3o12/django-debug-toolbar-multilang
        .. |Coverage Status| image:: https://img.shields.io/coveralls/Matt3o12/django-debug-toolbar-multilang.svg
           :target: https://coveralls.io/r/Matt3o12/django-debug-toolbar-multilang?branch=master
        
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Natural Language :: German
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
