Koha/t/LangInstaller/templates/simple.tt
Jonathan Druart 92944ae3a4 Bug 15395: Fix QA failure - filter not found
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
2018-11-08 16:40:06 +00:00

35 lines
909 B
Text

[% PROCESS 'i18n.inc' %]
[% t('hello') | $raw %]
[% tx('hello {name}', { name = 'Bob' }) | $raw %]
[% tn('item', 'items', count) | $raw %]
[% tnx('{count} item', '{count} items', count, { count = count }) | $raw %]
[% tp('context', 'hello') | $raw %]
[% tpx('context', 'hello {name}', { name = 'Bob' }) | $raw %]
[% tnp('context', 'item', 'items', count) | $raw %]
[% tnpx('context', '{count} item', '{count} items', count, { count = count }) | $raw %]
[% # it also works on multiple lines
tnpx (
'context',
'{count} item',
'{count} items',
count,
{
count = count,
}
) | $raw
%]
[% # and t* calls can be nested
tx('status is {status}', {
status = active ? t('active') : t('inactive')
}) | $raw
%]
[%# but a TT comment won't get picked
t('not translatable')
%]
[% BLOCK %]
[% t('Inside block') | $raw %]
[% END %]