Browse Source

Merge pull request #1802 from deltachat/reword-backup-success

say that exported backups are deleted with the app
cyBerta 2 years ago
parent
commit
c90dc65120

+ 2 - 2
deltachat-ios/Controller/Settings/SettingsViewController.swift

@@ -286,8 +286,8 @@ internal final class SettingsViewController: UITableViewController, ProgressAler
 
             self.progressAlert?.dismiss(animated: true) {
                 let alert = UIAlertController(
-                    title: String.localized("export_backup_desktop"),
-                    message: String.localizedStringWithFormat(String.localized("pref_backup_written_to_x"), "\(String.localized("Files")) ➔ Delta Chat"),
+                    title: String.localized("backup_successful"),
+                    message: String.localizedStringWithFormat(String.localized("backup_successful_explain_ios"), "\(String.localized("Files")) ➔ Delta Chat"),
                     preferredStyle: .alert)
                 alert.addAction(UIAlertAction(title: String.localized("ok"), style: .default, handler: { _ in
                     if let appDelegate = UIApplication.shared.delegate as? AppDelegate {

+ 2 - 0
deltachat-ios/en.lproj/Localizable.strings

@@ -955,3 +955,5 @@
 "connectivity_low_data_mode" = "Disabled by system's \"Low Data Mode\".";
 "connectivity_low_power_mode" = "Disabled by system's \"Low Power Mode\".";
 "add_encrypted_account" = "Add encrypted account";
+"backup_successful" = "Backup successful";
+"backup_successful_explain_ios" = "You can find the backup in the \"Delta Chat\" folder using the \"Files\" app.\n\nMove the backup out of this folder to keep it when deleting Delta Chat.";

+ 2 - 0
scripts/untranslated.xml

@@ -5,4 +5,6 @@
     <string name="connectivity_low_data_mode">Disabled by system's \"Low Data Mode\".</string>
     <string name="connectivity_low_power_mode">Disabled by system's \"Low Power Mode\".</string>
     <string name="add_encrypted_account">Add encrypted account</string>
+    <string name="backup_successful">Backup successful</string>
+    <string name="backup_successful_explain_ios">You can find the backup in the \"Delta Chat\" folder using the \"Files\" app.\n\nMove the backup out of this folder to keep it when deleting Delta Chat.</string>
 </resources>