Ticket #10503: 10503.diff
File 10503.diff, 720 bytes (added by , 16 years ago) |
---|
-
docs/topics/i18n.txt
251 251 <title>{% trans "This is the title." %}</title> 252 252 <title>{% trans myvar %}</title> 253 253 254 If the ``noop`` option is present, variable lookup still takes place but the 255 translation is skipped. This is useful when "stubbing out" content that will 256 requiretranslation in the future::254 Adding the ``noop`` option will mark the string for translation, but return it 255 unchanged. This is useful when "stubbing out" content that will require 256 translation in the future:: 257 257 258 258 <title>{% trans "myvar" noop %}</title> 259 259