Bugzilla – Attachment 161346 Details for
Bug 35769
Untranslatable strings when placing holds in staff
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35769: Remove extra parenthesis
Bug-35769-Remove-extra-parenthesis.patch (text/plain), 1.55 KB, created by
Jonathan Druart
on 2024-01-24 15:21:07 UTC
(
hide
)
Description:
Bug 35769: Remove extra parenthesis
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2024-01-24 15:21:07 UTC
Size:
1.55 KB
patch
obsolete
>From cc76006c6d6cf5fafbc2658773af88f59ecfd3fa Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 24 Jan 2024 16:20:50 +0100 >Subject: [PATCH] Bug 35769: Remove extra parenthesis > >--- > koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >index 07150eb36e8..d0e35ae98d4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >@@ -1509,15 +1509,15 @@ > .closest('tr') > .find(".pickup_locations").val() === null) { > >- msg = (_("- Please select a pickup location for the item") + "\n"); >+ msg = _("- Please select a pickup location for the item") + "\n" > } > } > else { >- msg = (_("- Please select an item to place a hold") + "\n"); >+ msg = _("- Please select an item to place a hold") + "\n"; > } > } else { > if( $("#pickup").length < 1 || $("#pickup").val() == "" || $('#pickup').val() === null ){ >- msg = (_("- Please select a pickup location for this hold") + "\n"); >+ msg = _("- Please select a pickup location for this hold") + "\n"; > } > } > >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 35769
:
160797
|
161011
|
161222
|
161312
| 161346