Unify backup creation progress model for local backups.

This commit is contained in:
Alex Hart
2026-03-12 13:25:51 -03:00
committed by Michelle Tang
parent cc282276c8
commit db17d1fd24
11 changed files with 418 additions and 181 deletions

View File

@@ -8744,6 +8744,24 @@
<!-- Button label to open QR scanner to scan a device and transfer a backup -->
<string name="RemoteBackupsSettingsFragment__scan_qr_code">Scan QR code</string>
<!-- BackupCreationProgressRow -->
<!-- Progress text shown while the backup database is being processed -->
<string name="BackupCreationProgressRow__processing_backup">Processing backup…</string>
<!-- Progress text shown while the backup is being prepared (e.g. exporting accounts, recipients, etc.) -->
<string name="BackupCreationProgressRow__preparing_backup">Preparing backup…</string>
<!-- Progress text shown while messages are being processed, with no count available yet -->
<string name="BackupCreationProgressRow__processing_messages">Processing messages…</string>
<!-- Progress text shown while messages are being processed. %1$s is the formatted current count (e.g. "1,000"), %2$s is the formatted total count (e.g. "100,000"), %3$d is the percent complete (e.g. 42). -->
<string name="BackupCreationProgressRow__processing_messages_s_of_s_d">Processing messages: %1$s of %2$s (%3$d%%)</string>
<!-- Progress text shown while media is being uploaded to the server. %1$d is the percent complete (e.g. 42). -->
<string name="BackupCreationProgressRow__uploading_media_d">Uploading media: %1$d%%</string>
<!-- Progress text shown while media is being exported to local storage. %1$d is the percent complete (e.g. 42). -->
<string name="BackupCreationProgressRow__exporting_media_d">Exporting media: %1$d%%</string>
<!-- LocalArchiveJob -->
<!-- Notification title shown while media attachments are being exported during a local backup -->
<string name="LocalArchiveJob__exporting_media">Exporting media…</string>
<!-- OnDeviceBackupsImprovementsScreen -->
<!-- Title displayed at the top of the screen explaining on-device backup improvements -->
<string name="OnDeviceBackupsImprovementsScreen__improvements_to_on_device_backups">Improvements to on-device backups</string>