Bugzilla – Attachment 188980 Details for
Bug 39320
Create a 'landing page' for ERM
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39320: (follow-up) Use __nx for languages with 3 plural forms (or more)
Bug-39320-follow-up-Use-nx-for-languages-with-3-pl.patch (text/plain), 3.52 KB, created by
Pedro Amorim
on 2025-11-03 16:17:49 UTC
(
hide
)
Description:
Bug 39320: (follow-up) Use __nx for languages with 3 plural forms (or more)
Filename:
MIME Type:
Creator:
Pedro Amorim
Created:
2025-11-03 16:17:49 UTC
Size:
3.52 KB
patch
obsolete
>From 883dbee662e8ef4348ac1e90a1f5733108682cbe Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 3 Nov 2025 15:03:27 +0100 >Subject: [PATCH] Bug 39320: (follow-up) Use __nx for languages with 3 plural > forms (or more) > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Signed-off-by: Pedro Amorim <pedro.amorim@openfifth.co.uk> >--- > .../ModuleDashboard/Widgets/ERMCounts.vue | 32 ++++++++++++------- > 1 file changed, 20 insertions(+), 12 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMCounts.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMCounts.vue >index f5f4c568b30..a3cc1a7c4f8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMCounts.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMCounts.vue >@@ -59,7 +59,9 @@ export default { > page: "AgreementsList", > name: "agreements_count", > i18nLabel: count => >- __n("%s agreement", "%s agreements", count).format(count), >+ __nx("{count} agreement", "{count} agreements", count, { >+ count, >+ }), > count: "", > loading: true, > }, >@@ -67,7 +69,9 @@ export default { > page: "LicensesList", > name: "licenses_count", > i18nLabel: count => >- __n("%s license", "%s licenses", count).format(count), >+ __nx("{count} license", "{count} licenses", count, { >+ count, >+ }), > count: "", > loading: true, > }, >@@ -75,8 +79,11 @@ export default { > page: "EHoldingsLocalPackagesList", > name: "eholdings_packages_count", > i18nLabel: count => >- __n("%s local package", "%s local packages", count).format( >- count >+ __nx( >+ "{count} local package", >+ "{count} local packages", >+ count, >+ { count } > ), > count: "", > loading: true, >@@ -85,9 +92,9 @@ export default { > page: "EHoldingsLocalTitlesList", > name: "eholdings_titles_count", > i18nLabel: count => >- __n("%s local title", "%s local titles", count).format( >- count >- ), >+ __nx("{count} local title", "{count} local titles", count, { >+ count, >+ }), > count: "", > loading: true, > }, >@@ -95,11 +102,12 @@ export default { > page: "UsageStatisticsDataProvidersList", > name: "usage_data_providers_count", > i18nLabel: count => >- __n( >- "%s usage data provider", >- "%s usage data providers", >- count >- ).format(count), >+ __nx( >+ "{count} usage data provider", >+ "{count} usage data providers", >+ count, >+ { count } >+ ), > count: "", > loading: true, > }, >-- >2.39.5
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 39320
:
187513
|
187514
|
187515
|
187516
|
187517
|
187518
|
187519
|
187520
|
187521
|
187522
|
187563
|
187568
|
187635
|
187636
|
187637
|
187638
|
187639
|
187640
|
187641
|
187642
|
187643
|
187644
|
187645
|
188094
|
188095
|
188096
|
188097
|
188098
|
188099
|
188100
|
188101
|
188102
|
188103
|
188104
|
188151
|
188279
|
188280
|
188281
|
188282
|
188283
|
188284
|
188285
|
188312
|
188315
|
188372
|
188375
|
188376
|
188637
|
188638
|
188639
|
188640
|
188641
|
188830
|
188831
|
188832
|
188833
|
188834
|
188835
|
188836
|
188837
|
188838
|
188839
|
188840
|
188841
|
188842
|
188843
|
188844
|
188845
|
188846
|
188847
|
188848
|
188849
|
188850
|
188851
|
188852
|
188853
|
188854
|
188855
|
188856
|
188857
|
188858
|
188859
|
188860
|
188861
|
188862
|
188863
|
188864
|
188885
|
188886
|
188887
|
188888
|
188889
|
188890
|
188891
|
188892
|
188893
|
188894
|
188895
|
188896
|
188897
|
188898
|
188899
|
188900
|
188901
|
188902
|
188903
|
188904
|
188905
|
188906
|
188907
|
188908
|
188909
|
188910
|
188911
|
188912
|
188913
|
188914
|
188915
|
188916
|
188917
|
188918
|
188919
|
188932
|
188938
|
188939
|
188940
|
188941
|
188942
|
188943
|
188944
|
188945
|
188946
|
188947
|
188948
|
188949
|
188950
|
188951
|
188952
|
188953
|
188954
|
188955
|
188956
|
188957
|
188958
|
188959
|
188960
|
188961
|
188962
|
188963
|
188964
|
188965
|
188966
|
188967
|
188968
|
188969
|
188970
|
188971
|
188972
|
188973
|
188974
| 188980 |
188981
|
188982
|
188987