diff --git a/i18n/en.json b/i18n/en.json index 8393a9ba32..945f69beb1 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -557,6 +557,7 @@ "backup_albums_sync": "Backup albums synchronization", "backup_all": "All", "backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…", + "backup_background_service_complete_notification": "Asset backup complete", "backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…", "backup_background_service_current_upload_notification": "Uploading {filename}", "backup_background_service_default_notification": "Checking for new assets…", @@ -2077,7 +2078,6 @@ "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 126c080157..f5c7513d1b 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(), '${'uploaded'.t()} {numFinished} ${'assets'.t().toLowerCase()}'), + complete: TaskNotification('upload_finished'.t(), 'backup_background_service_complete_notification'.t()), groupNotificationId: kManualUploadGroup, ); FileDownloader().configureNotificationForGroup( kBackupGroup, running: TaskNotification('uploading_media'.t(), 'backup_background_service_in_progress_notification'.t()), - complete: TaskNotification('upload_finished'.t(), '${'uploaded'.t()} {numFinished} ${'assets'.t().toLowerCase()}'), + complete: TaskNotification('upload_finished'.t(), 'backup_background_service_complete_notification'.t()), groupNotificationId: kBackupGroup, ); }