chore: use static text until for completion description

This commit is contained in:
bwees 2025-10-17 11:11:18 -05:00
parent cebf43a857
commit d49df2dd0d
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -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",

View file

@ -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,
);
}