From 87ab4fdf98302576c2324affe0b3108f50024cbe 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. Signed-off-by: David Nind Signed-off-by: Laura_Escamilla --- 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 bb10d3f889..098580d33e 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