From 9e20327672274d6f6327286ba78d6952d20e65be Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 4 Dec 2025 09:23:13 -0500 Subject: [PATCH] Bug 41348: Capitalization: "List Files" and others This patch corrects two strings in js/transport_status.js so that it has correct capitalization. I'm not sure how to test every way these strings are seen in the interface, but checking the patch should show only capitalization changes. --- koha-tmpl/intranet-tmpl/prog/js/transport_status.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/transport_status.js b/koha-tmpl/intranet-tmpl/prog/js/transport_status.js index bb10d3f8895..098580d33e1 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/transport_status.js +++ b/koha-tmpl/intranet-tmpl/prog/js/transport_status.js @@ -2,6 +2,6 @@ let operationLabels = { connection: __("Connection"), upload: __("Upload"), download: __("Download"), - list: __("List Files"), - change_directory: __("Change Directory"), + list: __("List files"), + change_directory: __("Change directory"), }; -- 2.39.5