summaryrefslogtreecommitdiff
path: root/django/templatetags/i18n.py
Commit message (Expand)AuthorAgeFilesLines
* Replaced loop with dictionary comprehension.Toivo Mattila2018-12-191-4/+1
* Replaced TOKEN_* constants by TokenType enums.Claude Paroz2018-05-101-5/+5
* Refs #27656 -- Removed "This will" prefix from djanog/templatetags/i18n.py do...Tim Graham2018-03-211-32/+27
* Avoided creating temporary lists for obtaining the first item.Sergey Fedoseev2017-07-311-1/+1
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-071-4/+4
* Refs #23919 -- Replaced six.reraise by raiseClaude Paroz2017-01-221-13/+13
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-1/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-3/+5
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-311-1/+0
* Fixed #24257 -- Corrected i18n handling of percent signs.Doug Beck2015-08-121-0/+6
* Fixed #21695 -- Added asvar option to blocktrans.Matthew Somerville2015-07-011-3/+24
* Fixed #24230 -- Added translated language name for i18n template tag/filter.Tomáš Ehrlich2015-06-021-0/+8
* Removed cases of six.iter* wrapped in a list()Curtis Maloney2015-04-181-1/+1
* Fixed #24372 - Replaced TokenParser usage with traditional parsing.Preston Timmons2015-03-021-40/+49
* Set context.template instead of context.engine while rendering.Aymeric Augustin2015-02-191-1/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-4/+5
* Fixed #24149 -- Normalized tuple settings to lists.darkryder2015-02-031-1/+1
* Cleaned up the django.template namespace.Aymeric Augustin2014-12-281-3/+2
* Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne2014-12-081-1/+1
* Encapsulated TEMPLATE_STRING_IF_INVALID in Engine.Aymeric Augustin2014-11-231-1/+1
* Fix many many typos in comments throughout the codebaseAlex Gaynor2014-04-261-1/+1
* Fixed #21417 -- Expanded TEMPLATE_STRING_IF_INVALID in blocktransClaude Paroz2014-02-081-2/+8
* Fixed #5849 -- Strip whitespace from blocktransBouke Haarsma2013-11-081-3/+12
* Fixed the remaining E302 violations int eh django packageAlex Gaynor2013-11-021-0/+10
* Fixed up some more flake8 violations (this particular violation still has man...Alex Gaynor2013-10-261-2/+2
* Removed a few trailing backslashes.Aymeric Augustin2013-09-221-1/+1
* Fixed #20989 -- Removed explicit list comprehension inside dict() and tuple()Tim Graham2013-08-291-1/+1
* Fixed #18003 -- Preserved tracebacks when re-raising errors.konarkmodi2013-03-191-2/+5
* Fixed #19915 - Made blocktrans tag honor TEMPLATE_STRING_IF_INVALID.matiasb2013-03-031-2/+5
* Remove leading underscore from a function that's all growed up now.Carl Meyer2013-02-251-3/+3
* Used token.split_contents() for tokenisation in template tags accepting varia...Baptiste Mispelon2013-02-231-6/+9
* Fixed #19088 -- Always escape % inside blocktrans tagClaude Paroz2012-10-231-6/+7
* [py3] Fixed access to dict keys/values/items.Aymeric Augustin2012-08-071-1/+1
* [py3] Replaced basestring by six.string_types.Aymeric Augustin2012-07-221-1/+2
* Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz2012-06-071-4/+5
* Fixed #18393 -- Prevented blocktrans to crash when a variable name is badly f...Julien Phalip2012-05-281-1/+1
* Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...Claude Paroz2012-03-301-1/+0
* Fixed #14806 -- Added support for contextual translations to the `trans` and ...Julien Phalip2011-10-191-12/+65
* Fixed #16721 -- Made sure that blocktrans correctly handles percents (%), eve...Jannis Leidel2011-09-081-2/+3
* Fixed #16516 -- Relaxed the blocktrans rendering a little by falling back to ...Jannis Leidel2011-09-081-1/+6
* Fixed #16717 -- Added ability to store result of trans template tag in contex...Jannis Leidel2011-08-301-10/+21
* Fixed #16402 -- Correctly check for number of arguments to new language templ...Jannis Leidel2011-07-041-1/+1
* Fixed #16332 -- Added language template tag that switches the activate langua...Jannis Leidel2011-07-041-7/+46
* Replaced old-style with new-style decorator syntax.Jannis Leidel2011-05-011-12/+10
* Fixed #15535 -- Stopped the blocktrans template tag from raising a KeyError i...Jannis Leidel2011-03-021-1/+1
* Fixes #7817 and #9456.Chris Beaven2010-12-181-26/+38
* Fixed #4030 -- Added ability to translate language names. Thanks to Antti Kai...Jannis Leidel2010-12-121-0/+83
* Fixed #12248 -- Refactored django.template to get code out of __init__.py, to...Russell Keith-Magee2010-11-271-1/+2
* Fixed #14126 -- Fixed an issue with changes to the blocktrans tag introduced ...Jannis Leidel2010-10-161-2/+1