https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19889
--- Comment #80 from Jonathan Druart <[email protected]> --- (In reply to Jonathan Druart from comment #58) > * I think the following block is not translator friendly > + <i>Exclude from local holds priority</i> updated to > + [% IF updated_exclude_from_local_holds_priority %]<i>Yes</i>[% ELSE > %]<i>No</i>[% END %] You replaced it with: - [% IF updated_exclude_from_local_holds_priority %]<i>Yes</i>[% ELSE %]<i>No</i>[% END %] + [% IF updated_exclude_from_local_holds_priority %] + <i>Yes</i> + [% ELSE %] + <i>No</i> + [% END %] What I meant is that it will be displayed with the TT block in the po files. I think it would be better: [% IF updated_exclude_from_local_holds_priority %] <i>Exclude from local holds priority</i> updated to <i>Yes</i> [% ELSE %] <i>Exclude from local holds priority</i> updated to <i>No</i> [% END %] Asking confirmation to Katrin. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://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/
