Bugzilla – Attachment 187375 Details for
Bug 38201
VueJS architecture rethink
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38201: Fix translation function: __ vs $__
Bug-38201-Fix-translation-function--vs-.patch (text/plain), 2.53 KB, created by
Jonathan Druart
on 2025-10-03 10:06:42 UTC
(
hide
)
Description:
Bug 38201: Fix translation function: __ vs $__
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2025-10-03 10:06:42 UTC
Size:
2.53 KB
patch
obsolete
>From 9c3c744fd6b6baf1b9a4ee657dec7284fdd5b5ef Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 3 Oct 2025 12:06:14 +0200 >Subject: [PATCH] Bug 38201: Fix translation function: __ vs $__ > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > .../vue/components/ERM/UsageStatisticsDataProvidersList.vue | 4 ++-- > .../prog/js/vue/components/Vendors/VendorResource.vue | 4 ++-- > 2 files changed, 4 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue >index 25f1584a116..4c53c33b774 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue >@@ -80,8 +80,8 @@ export default { > data: "active", > render: function (data, type, row, meta) { > const status = row.active >- ? __("Active") >- : __("Inactive"); >+ ? $__("Active") >+ : $__("Inactive"); > return status; > }, > searchable: false, >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorResource.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorResource.vue >index 882a2f2565d..a87ce3a1b7d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorResource.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorResource.vue >@@ -638,7 +638,7 @@ export default { > ) > ) + > "</a>" >- : escape_str(__("No baskets")); >+ : escape_str($__("No baskets")); > }, > }, > hideIn: ["Show", "Form"], >@@ -662,7 +662,7 @@ export default { > ) > ) + > "</a>" >- : escape_str(__("No subscriptions")); >+ : escape_str($__("No subscriptions")); > }, > }, > hideIn: ["Show", "Form"], >-- >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 38201
:
187373
|
187374
| 187375 |
187398