summaryrefslogtreecommitdiff
path: root/django/utils/translation/trans_real.py
AgeCommit message (Expand)Author
2015-12-18[1.8.x] Fixed #25915 -- Allowed language not in Django's default LANGUAGESClaude Paroz
2015-11-11[1.8.x] Fixed #25720 -- Made gettext() return bytestring on Python 2 if input...Marti Raudsepp
2015-04-04[1.8.x] Fixed #24569 -- Made some translation functions accept None valueClaude Paroz
2015-03-21[1.8.x] Fixed #24515 -- Fixed DjangoTranslation plural handlingClaude Paroz
2015-02-28[1.8.x] Fixed #24413 -- Prevented translation fallback for EnglishClaude Paroz
2015-02-09[1.8.x] Sorted imports with isort; refs #23860.Tim Graham
2015-01-08Fixed #24073 -- Returned None for get_language when translations are deactivatedClaude Paroz
2014-12-28Cleaned up the django.template namespace.Aymeric Augustin
2014-12-24Fixed #20349 -- Moved setting_changed signal to django.core.signals.Collin Anderson
2014-11-19Simplified caching of supported languages.Aymeric Augustin
2014-09-21Fixed #23196 -- Short-circuited empty string translationYuri Kriachko
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-07-14Fixed #23005 -- Allowed specifying special fallback languagesClaude Paroz
2014-06-23Fixed #8033 -- Explained app registry error during translation setupClaude Paroz
2014-06-16Fixed #21498: Don't use a fallback language if you're en-us.Andrew Godwin
2014-06-06Fixed #22773 -- Forced templatize() to return unicodeClaude Paroz
2014-05-24Applied unicode_literals to makemessages commandClaude Paroz
2014-05-02Fixed #22565 -- Prevented pgettext_lazy crash with bytestring inputClaude Paroz
2014-04-30flake8 fixes.Tim Graham
2014-04-30Refactored DjangoTranslation classDoug Beck
2014-04-02Refactor. Stop using memory for list copies.Tomasz Wysocki
2014-03-29Increased memoization cache size for language codes.Aymeric Augustin
2014-03-21Removed reading of old 'django_language' session variable per deprecation tim...Tim Graham
2014-03-18Fixed #22283 -- Updated documentation referring to non-existent tuples.Matthew Somerville
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-02-26Fixed #21389 -- Accept most valid language codesBouke Haarsma
2014-02-22Fixed #22120 -- Documented persistent activation of languages and cleaned up ...Erik Romijn
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-22Stopped iterating on INSTALLED_APPS.Aymeric Augustin
2013-12-04Fixed 21406 -- Made blocktrans 'trimmed' option preserve line numbers.Bouke Haarsma
2013-11-20Fixed #21458 -- Made check_for_language more resistant to malformed input.Baptiste Mispelon
2013-11-11Fixed #21351 -- Replaced memoize with Python's lru_cache.Bouke Haarsma
2013-11-08Fixed #5849 -- Strip whitespace from blocktransBouke Haarsma
2013-11-06flake8 fixesAlex Gaynor
2013-11-06Distinguish between browser-deprecated locales and internallyBaptiste Mispelon
2013-11-05Fix python2 breakage caused by e5e044da87800feb6ef63fef1765d8c05022d926.Baptiste Mispelon
2013-11-05Fixed #18419 -- Full backwards compatibility for old language codesBouke Haarsma
2013-11-04Fixed python3 breakage introduced by c0a2388a1c4ead1afaec98e4ebc953a772ca3849.Baptiste Mispelon
2013-11-04Fixed #18149 -- Changed language codes for ChineseBouke Haarsma
2013-11-04Merge pull request #1821 from Bouke/tickets/14170Aymeric Augustin
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-11-03Fixed #14170 -- Reset i18n cache when settings changeBouke Haarsma
2013-11-02Correct flake8 E302 violationsRay Ashman Jr
2013-10-26Fixed all the E203 violationsAlex Gaynor
2013-10-26Fixed up some more flake8 violations (this particular violation still has man...Alex Gaynor
2013-10-22Fixed #5789 -- Changed LocaleMiddleware session variable to '_language'.Bouke Haarsma
2013-09-09Fixed #21078 -- Handled additional bad Accept-Language headerJosh Mize
2013-09-03Fixed "indentation is not a multiple of four" pep8 issues.Tim Graham
2013-08-04Deprecated SortedDict (replaced with collections.OrderedDict)Curtis Maloney