diff --git a/lib/content-services/i18n/en.json b/lib/content-services/i18n/en.json
index a10468edb7..917babaca4 100644
--- a/lib/content-services/i18n/en.json
+++ b/lib/content-services/i18n/en.json
@@ -140,8 +140,7 @@
},
"MESSAGES": {
"UPLOAD_CANCELED": "Upload canceled",
- "UPLOAD_COMPLETED": "Uploaded {{ completed }} / {{ total }}",
- "UPLOAD_PROGRESS": "Uploading {{ completed }} / {{ total }}",
+ "UPLOAD_PROGRESS": "Uploaded {{ completed }} / {{ total }}",
"UPLOAD_ERROR": "{{ total }} upload unsuccessful",
"UPLOAD_ERRORS": "{{ total }} uploads unsuccessful",
"PROGRESS": "Upload in progress...",
diff --git a/lib/content-services/upload/components/file-uploading-dialog.component.html b/lib/content-services/upload/components/file-uploading-dialog.component.html
index 83b2c7c5b0..5fb2d6f526 100644
--- a/lib/content-services/upload/components/file-uploading-dialog.component.html
+++ b/lib/content-services/upload/components/file-uploading-dialog.component.html
@@ -19,7 +19,7 @@
+ *ngIf="!uploadList.isUploadCancelled()">
{{ 'FILE_UPLOAD.MESSAGES.UPLOAD_PROGRESS'
| translate: {
completed: totalCompleted,
@@ -28,17 +28,6 @@
}}
-
- {{ 'FILE_UPLOAD.MESSAGES.UPLOAD_COMPLETED'
- | translate: {
- completed: totalCompleted,
- total: filesUploadingList.length
- }
- }}
-
-