Ticket #10503: 10503.diff

File 10503.diff, 720 bytes (added by Matt Boersma, 15 years ago)

Reworded description of "noop" using admin docs' description

  • docs/topics/i18n.txt

     
    251251    <title>{% trans "This is the title." %}</title>
    252252    <title>{% trans myvar %}</title>
    253253
    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 require translation in the future::
     254Adding the ``noop`` option will mark the string for translation, but return it
     255unchanged. This is useful when "stubbing out" content that will require
     256translation in the future::
    257257
    258258    <title>{% trans "myvar" noop %}</title>
    259259
Back to Top