Skip to main content

Django middleware to translate with language in user model

Project description

https://travis-ci.org/laura-barluzzi/django-user-language-middleware.svg?branch=master https://img.shields.io/pypi/v/django-user-language-middleware.svg

What’s this?

This package contains a middleware that activates translations based on the language field in the user model. This enables easy user-specific localization of a Django application: just add a language string field to the user model, install this middleware and you’re good to go!

Usage

Add a language field to your user model:

class User(auth_base.AbstractBaseUser, auth.PermissionsMixin):
    # ...
    language = models.CharField(max_length=10,
                                choices=settings.LANGUAGES,
                                default=settings.LANGUAGE_CODE)

Install the middleware from pip:

pip install django-user-language-middleware

and then add it to your middleware class list to listen to requests:

MIDDLEWARE = [  # Or MIDDLEWARE_CLASSES on Django < 1.10
    ...
    'user_language_middleware.UserLanguageMiddleware',
    ...
]

Supported versions

Python:

  • 2.7

  • 3.4 to 3.6

Django:

  • 1.8 to 1.11

  • 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-user-language-middleware-0.0.2.tar.gz (2.7 kB view details)

Uploaded Source

File details

Details for the file django-user-language-middleware-0.0.2.tar.gz.

File metadata

File hashes

Hashes for django-user-language-middleware-0.0.2.tar.gz
Algorithm Hash digest
SHA256 28035e8eec59303cc71b60ce9bffd1b1da48844c82f12dbe8d1dc10f580e1993
MD5 112b4e17beb25ff826977f7cb42e10c2
BLAKE2b-256 61bf76096ca01ec3660670132318371494df5db49f4e28808941dd94e169c380

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page