Created attachment 186270 [details] the title (tab) says "Issuing to {user}" instead of the user's name When issuing to a user in the staff client, the title (tab) says "Issuing to {user}" instead of the user's name
I think "Issuing" is a en-NZ localisation as the core code uses "Checking out". When I grep "Checking out to", I see the following: grep -R "Checking out to " koha-tmpl/* koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt: [% tx("Checking out to {patron}", { patron = patron_in_title }) | html %] koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt: <label class="circ_barcode" for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label> koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt: <h4>Checking out to [% INCLUDE 'patron-title.inc' %]</h4> koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt: <legend>Checking out to [% INCLUDE 'patron-title.inc' %]</legend> koha-tmpl/intranet-tmpl/prog/fr-FR/modules/circ/circulation.tt: [% tx("Checking out to {patron}", { patron = patron_in_title }) | html %] If I do this 'grep "Issuing" misc/translator/po/en-NZ*', I can see the following: misc/translator/po/en-NZ-messages.po:msgstr "Issuing to {user}" -- If I look at that file then I see the following: 7329 #: koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt:20 7330 #, perl-brace-format 7331 msgid "Checking out to {patron}" 7332 msgstr "Issuing to {user}" -- There are similar issues further down: 7342 #: koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt:16 7343 #, perl-brace-format 7344 msgid "Batch check out to {patron}" 7345 msgstr "Batch issue to {user}" -- So overall I think this is a translation issue.
I tried running the following: misc/translator/translate update en-NZ -v But it didn't update the existing msgstr, since the msgid "Checking out to {patron}" is still the same I imagine. So I imagine the solution will be to update the msgstr in Weblate?
(In reply to David Cook from comment #2) > I tried running the following: > misc/translator/translate update en-NZ -v > > But it didn't update the existing msgstr, since the msgid "Checking out to > {patron}" is still the same I imagine. > > So I imagine the solution will be to update the msgstr in Weblate? When I go on to Weblate and start looking at the messages, I see there's a warning that says the following: Things to check Perl brace format The following format strings are missing: {patron} The following format strings are extra: {user}
Thanks heaps David!