From a48949aecaeed26996a51be2ea9f54d2de10b64c Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 1 Jun 2023 08:52:55 +0200 Subject: [PATCH] Bug 33798: Add colons after the labels on the edit form Signed-off-by: David Nind --- .../prog/en/modules/acqui/supplier.tt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt index 173089cc6f..24ce36e5ba 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt @@ -584,13 +584,13 @@ n.append(``); let ol = $('
    '); let attributes = [ - { label: _("Name"), name: 'name', node: 'input' }, - { label: _("Type"), name: 'type', node: 'av_select', av_cat: 'VENDOR_INTERFACE_TYPE' }, - { label: _("URI"), name: 'uri', node: 'input' }, - { label: _("Login"), name: 'login', node: 'input' }, - { label: _("Password"), name: 'password', node: 'input' }, - { label: _("Account email"), name: 'account_email', node: 'input' }, - { label: _("Notes"), name: 'notes', node: 'textarea' } + { label: _("Name:"), name: 'name', node: 'input' }, + { label: _("Type:"), name: 'type', node: 'av_select', av_cat: 'VENDOR_INTERFACE_TYPE' }, + { label: _("URI:"), name: 'uri', node: 'input' }, + { label: _("Login:"), name: 'login', node: 'input' }, + { label: _("Password:"), name: 'password', node: 'input' }, + { label: _("Account email:"), name: 'account_email', node: 'input' }, + { label: _("Notes:"), name: 'notes', node: 'textarea' } ]; attributes.forEach((attribute, ii) => { let li = $('
  1. '); -- 2.30.2