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')