https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20941
Katrin Fischer <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #17 from Katrin Fischer <[email protected]> --- It would be good to test that this construct actually gets picked up. I am not sure if our script look for HTML inside the TT constructs... I think it would be safer not to take shortcuts here: [% request.cost || '<span>N/A</span>' | html %] Could also be: [% IF ( request.cost ) %][%request.cost%][% ELSE %]<span>N/A</span>[% END %] To test, in koha-shell you can do: cd misc/translator perl translate update de-DE (or any other language) Then check the updated po files for N/A. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
