Ticket #16005: blocktrans.diff

File blocktrans.diff, 588 bytes (added by bezidejni, 13 years ago)
  • docs/topics/i18n/internationalization.txt

     
    494494If you need to bind more than one expression inside a ``blocktrans`` tag,
    495495separate the pieces with ``and``::
    496496
    497     {% blocktrans with book_t=book|title author_t=author|title %}
     497    {% blocktrans with book_t=book|title and author_t=author|title %}
    498498    This is {{ book_t }} by {{ author_t }}
    499499    {% endblocktrans %}
    500500
Back to Top