Changeset 836
- Timestamp:
- 10/11/05 08:23:01 (3 years ago)
- Files:
-
- django/branches/i18n/tests/othertests/templates.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/i18n/tests/othertests/templates.py
r775 r836 252 252 # translation of string without i18n tag but with interpolation 253 253 'i18n12': ('{{ _("blah%(anton)s") }}', {'anton': 'blubb'}, "blahblubb"), 254 255 # translation of a variable with a translated filter 256 'i18n13': ('{{ bool|yesno:_("ja,nein") }}', {'bool': True}, 'ja'), 257 258 # translation of a variable with a non-translated filter 259 'i18n14': ('{{ bool|yesno:"ja,nein" }}', {'bool': True}, 'ja'), 254 260 } 255 261
