From 6caf649dc3d982de9d64fe9c50326d24950b30b1 Mon Sep 17 00:00:00 2001 From: Ayoub Glizi-Vicioso Date: Mon, 2 Mar 2026 16:54:09 -0500 Subject: [PATCH] Bug 41769: (follow-up) Make ', by' string translatable in suggestions --- .../intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt index 2373e4835a..47bdf45599 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt @@ -1371,7 +1371,7 @@ render: function (data, type, row, meta) { let node = '%s'.format(row.suggestion_id, _("suggestion"), row.title); if(row.author) { - node += _("%s%s, by %s%s").format("", "", row.author.escapeHtml(), ""); + node += ", %s %s".format(_("by"),row.author.escapeHtml()); } node += '
'; if(row.copyright_date) node += ' © %s'.format(row.copyright_date); -- 2.53.0