http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8942
--- Comment #18 from Fridolyn SOMERS <[email protected]> --- Created attachment 13757 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=13757&action=edit Always use double quotes : follow-up 1 Follow-up 1 : In some places, a JavaScript string concatenation exists into translated string : _('Are you sure you want to delete the ' + count + ' attached items? ') This does not work (see coding gidelines). This patch corrects by using 2 translations : _("Are you sure you want to delete the") + " " + count + " " + _("attached items?") -- 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/
