Marino Faggiana 7 years ago
parent
commit
15118b3572
1 changed files with 4 additions and 1 deletions
  1. 4 1
      iOSClient/Settings/NCManageEndToEndEncryption.m

+ 4 - 1
iOSClient/Settings/NCManageEndToEndEncryption.m

@@ -37,7 +37,7 @@
     
     // Section DELETE KEYS -------------------------------------------------
     
-    section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_e2e_settings_encryption_delete_keys_", nil)];
+    section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"Delete", nil)];
     [form addFormSection:section];
     
     // Delete publicKey
@@ -56,6 +56,9 @@
     row.action.formSelector = @selector(deletePrivateKey:);
     [section addFormRow:row];
     
+    section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"Init", nil)];
+    [form addFormSection:section];
+    
     // Inizializze e2e
     row = [XLFormRowDescriptor formRowDescriptorWithTag:@"initE2E" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_e2e_settings_encryption_initialize_", nil)];
     [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];