Update notification message for large backup attachment uploads.

This commit is contained in:
jeffrey-signal
2025-06-11 16:46:02 -04:00
committed by Michelle Tang
parent a5496c692f
commit 0ab77e159d
2 changed files with 5 additions and 1 deletions

View File

@@ -155,7 +155,7 @@ class UploadAttachmentToArchiveJob private constructor(
}
val progressServiceController = if (attachment.size >= AttachmentUploadUtil.FOREGROUND_LIMIT_BYTES) {
AttachmentProgressService.start(context, context.getString(R.string.AttachmentUploadJob_uploading_media))
AttachmentProgressService.start(context, context.getString(R.string.UploadAttachmentToArchiveJob_uploading_media))
} else {
null
}

View File

@@ -142,6 +142,10 @@
<string name="AttachmentUploadJob_uploading_media">Uploading media…</string>
<string name="AttachmentUploadJob_compressing_video_start">Compressing video…</string>
<!-- UploadAttachmentToArchiveJob -->
<!-- Notification message displayed when uploading large backup attachments to the archive CDN. -->
<string name="UploadAttachmentToArchiveJob_uploading_media">Backing up media…</string>
<!-- BackgroundMessageRetriever -->
<string name="BackgroundMessageRetriever_checking_for_messages">Checking for messages…</string>