Bugzilla – Attachment 155662 Details for
Bug 34801
Fix incorrect use of __() in .tt and .inc files (bug 34038 follow-up)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34801: Fix incorrect use of __() in .tt and .inc files (bug 34038 follow-up)
Bug-34801-Fix-incorrect-use-of--in-tt-and-inc-file.patch (text/plain), 2.38 KB, created by
Matt Blenkinsop
on 2023-09-15 10:30:42 UTC
(
hide
)
Description:
Bug 34801: Fix incorrect use of __() in .tt and .inc files (bug 34038 follow-up)
Filename:
MIME Type:
Creator:
Matt Blenkinsop
Created:
2023-09-15 10:30:42 UTC
Size:
2.38 KB
patch
obsolete
>From 112585cac17f4444905bc8a79d7a9ab72a75ee50 Mon Sep 17 00:00:00 2001 >From: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> >Date: Fri, 15 Sep 2023 10:27:39 +0000 >Subject: [PATCH] Bug 34801: Fix incorrect use of __() in .tt and .inc files > (bug 34038 follow-up) > >__() should be used in .js files, not .tt files > >To test, apply the patch and update a translation, e.g. fr-FR: > > > cd misc/translator > > perl translate update fr-FR > >- Open the corresponding .po file for JavaScript strings, in this case > misc/translator/po/fr-FR-staff-prog.po >- Confirm that the strings are now in the .po file for translation. You > should find the lines in the commit >--- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt | 2 +- > koha-tmpl/opac-tmpl/bootstrap/en/includes/js-biblio-format.inc | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt >index 0681c355b2..2304de2177 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt >@@ -1178,7 +1178,7 @@ > if( row.creator ) { > $("#creator").html([row.creator.surname, row.creator.firstname].filter(function(name){return name}).join(', ')+" ("+row.creator.patron_id+')') > } else { >- $("#creator").html(__("Account has been deleted")); >+ $("#creator").html(_("Account has been deleted")); > } > $("#quantity_to_receive").val(row.quantity).prop('readonly', !row.subscription_id); > $("#quantity").val( effective_create_items == 'cataloguing' ? row.quantity_received || 1 : row.quantity_received ) >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/js-biblio-format.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/js-biblio-format.inc >index 77c2fe5c18..7d125e2060 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/js-biblio-format.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/js-biblio-format.inc >@@ -17,7 +17,7 @@ > if (biblio.title != null && biblio.title != '') { > title += escape_str(biblio.title); > } else { >- title += __("No title"); >+ title += _("No title"); > } > title += '</span>'; > >-- >2.37.1 (Apple Git-137.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 34801
:
155662
|
156448
|
156452