Bugzilla – Attachment 167963 Details for
Bug 37047
Patron bookings are not visible from patrons checkout page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37047: (QA follow-up) Fix translations
Bug-37047-QA-follow-up-Fix-translations.patch (text/plain), 3.68 KB, created by
Martin Renvoize (ashimema)
on 2024-06-21 13:08:02 UTC
(
hide
)
Description:
Bug 37047: (QA follow-up) Fix translations
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-06-21 13:08:02 UTC
Size:
3.68 KB
patch
obsolete
>From 0520aff74ef387e06df77d670f18e375eda6feb9 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Fri, 21 Jun 2024 14:07:07 +0100 >Subject: [PATCH] Bug 37047: (QA follow-up) Fix translations > >--- > .../intranet-tmpl/prog/js/tables/bookings.js | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js b/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js >index a42a343677d..46776432bfd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js >@@ -16,11 +16,11 @@ $(document).ready(function () { > columns: [ > { > data: "booking_id", >- title: _("Booking ID"), >+ title: __("Booking ID"), > }, > { > data: "biblio.title", >- title: _("Title"), >+ title: __("Title"), > searchable: true, > orderable: true, > render: function (data, type, row, meta) { >@@ -31,10 +31,10 @@ $(document).ready(function () { > }, > { > data: "item.external_id", >- title: _("Item"), >+ title: __("Item"), > searchable: true, > orderable: true, >- defaultContent: _("Any item"), >+ defaultContent: __("Any item"), > render: function (data, type, row, meta) { > if (row.item) { > return ( >@@ -50,7 +50,7 @@ $(document).ready(function () { > }, > { > data: "start_date", >- title: _("Start date"), >+ title: __("Start date"), > searchable: true, > orderable: true, > render: function (data, type, row, meta) { >@@ -59,7 +59,7 @@ $(document).ready(function () { > }, > { > data: "end_date", >- title: _("End date"), >+ title: __("End date"), > searchable: true, > orderable: true, > render: function (data, type, row, meta) { >@@ -68,7 +68,7 @@ $(document).ready(function () { > }, > { > data: "", >- title: _("Actions"), >+ title: __("Actions"), > class: "actions", > searchable: false, > orderable: false, >@@ -79,7 +79,7 @@ $(document).ready(function () { > '<button type="button" class="btn btn-default btn-xs cancel-action" data-toggle="modal" data-target="#cancelBookingModal" data-booking="' + > row.booking_id + > '"><i class="fa fa-trash" aria-hidden="true"></i> ' + >- _("Cancel") + >+ __("Cancel") + > "</button>"; > } > return result; >-- >2.45.2
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 37047
:
167640
|
167650
|
167651
|
167652
|
167742
|
167743
|
167744
|
167745
|
167924
|
167925
|
167926
|
167927
|
167928
|
167958
|
167959
|
167960
|
167961
|
167962
| 167963