B. Petersen пре 2 година
родитељ
комит
7f7056ff49
1 измењених фајлова са 7 додато и 8 уклоњено
  1. 7 8
      deltachat-ios/Controller/Settings/AdvancedViewController.swift

+ 7 - 8
deltachat-ios/Controller/Settings/AdvancedViewController.swift

@@ -74,21 +74,20 @@ internal final class AdvancedViewController: UITableViewController, ProgressAler
     }()
 
     private lazy var sections: [SectionConfigs] = {
-        let preferencesSection = SectionConfigs(
+        let backupSection = SectionConfigs(
             headerTitle: nil,
-            footerTitle: nil,
-            cells: [videoChatInstanceCell]
-        )
+            footerTitle: String.localized("pref_backup_explain"),
+            cells: [exportBackupCell])
         let autocryptSection = SectionConfigs(
             headerTitle: String.localized("autocrypt"),
             footerTitle: String.localized("autocrypt_explain"),
             cells: [autocryptPreferencesCell, sendAutocryptMessageCell]
         )
-        let backupSection = SectionConfigs(
+        let experimentalSection = SectionConfigs(
             headerTitle: nil,
-            footerTitle: String.localized("pref_backup_explain"),
-            cells: [advancedCell, exportBackupCell])
-        return [preferencesSection, autocryptSection, backupSection]
+            footerTitle: nil,
+            cells: [videoChatInstanceCell, advancedCell])
+        return [backupSection, autocryptSection, experimentalSection]
     }()
 
     init(dcAccounts: DcAccounts) {