https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19889 --- Comment #80 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (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.