From 731ccd92a99868de3e2738f65949f19768d9104c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 13 Feb 2022 12:28:24 +0530 Subject: [PATCH] ... --- src/pyj/file_uploads.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/file_uploads.pyj b/src/pyj/file_uploads.pyj index d74104b952..7d19c3aeee 100644 --- a/src/pyj/file_uploads.pyj +++ b/src/pyj/file_uploads.pyj @@ -19,7 +19,7 @@ def upload_files_widget(container, proceed, msg, single_file=False, accept_exten if callable(proceed) and files.length: proceed(container_id, files) - msg = msg or _('Upload books by selecting the book files or drag and drop of the files here') + msg = msg or _('Upload books by either selecting the book files or drag and drop the files here') c = E.div(E.span(), E.input(type='file', style='display:none', onchange=files_selected)) if not single_file: c.lastChild.setAttribute('multiple', 'multiple')