diff --git a/i18n/en.json b/i18n/en.json index d265c9b9d8..8393a9ba32 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -2077,6 +2077,7 @@ "upload_status_uploaded": "Uploaded", "upload_success": "Upload success, refresh the page to see new upload assets.", "upload_to_immich": "Upload to Immich ({count})", + "uploaded": "Uploaded", "uploading": "Uploading", "uploading_media": "Uploading media", "url": "URL", diff --git a/mobile/lib/utils/bootstrap.dart b/mobile/lib/utils/bootstrap.dart index c77ceaa62d..126c080157 100644 --- a/mobile/lib/utils/bootstrap.dart +++ b/mobile/lib/utils/bootstrap.dart @@ -43,14 +43,14 @@ void configureFileDownloaderNotifications() { FileDownloader().configureNotificationForGroup( kManualUploadGroup, running: TaskNotification('uploading_media'.t(), 'backup_background_service_in_progress_notification'.t()), - complete: TaskNotification('upload_finished'.t(), 'backup_background_service_in_progress_notification'.t()), + complete: TaskNotification('upload_finished'.t(), '${'uploaded'.t()} {numFinished} ${'assets'.t().toLowerCase()}'), groupNotificationId: kManualUploadGroup, ); FileDownloader().configureNotificationForGroup( kBackupGroup, running: TaskNotification('uploading_media'.t(), 'backup_background_service_in_progress_notification'.t()), - complete: TaskNotification('upload_finished'.t(), 'backup_background_service_in_progress_notification'.t()), + complete: TaskNotification('upload_finished'.t(), '${'uploaded'.t()} {numFinished} ${'assets'.t().toLowerCase()}'), groupNotificationId: kBackupGroup, ); }