Adjust upload label

This commit is contained in:
Raphael Wickihalder 2022-07-12 16:12:02 +02:00
parent a2a795ae77
commit f974383e7b
No known key found for this signature in database
GPG key ID: 05179BB92383243D

View file

@ -240,7 +240,7 @@ function UploadForm(props: Props) {
if (isStillEditing || inEditMode) { if (isStillEditing || inEditMode) {
submitLabel = __('Saving...'); submitLabel = __('Saving...');
} else { } else {
submitLabel = __('Creating...'); submitLabel = __('Preparing...');
} }
} else if (previewing) { } else if (previewing) {
submitLabel = <Spinner type="small" />; submitLabel = <Spinner type="small" />;
@ -248,7 +248,7 @@ function UploadForm(props: Props) {
if (isStillEditing || inEditMode) { if (isStillEditing || inEditMode) {
submitLabel = __('Save'); submitLabel = __('Save');
} else { } else {
submitLabel = __('Create'); submitLabel = __('Upload');
} }
} }