Marino Faggiana před 8 roky
rodič
revize
8d36c20106

+ 3 - 3
iOSClient/Settings/CCManageAccount.m

@@ -61,12 +61,12 @@
     [form addFormSection:section];
     
     // Modify Account
-    row = [XLFormRowDescriptor formRowDescriptorWithTag:@"modifyAccount" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_modify_account_", nil)];
+    row = [XLFormRowDescriptor formRowDescriptorWithTag:@"changePassword" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_change_password_", nil)];
     [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
     [row.cellConfig setObject:[UIImage imageNamed:image_settingsAccountModify] forKey:@"imageView.image"];
     [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
     [row.cellConfig setObject:COLOR_BRAND forKey:@"textLabel.textColor"];
-    row.action.formSelector = @selector(modifyAccount:);
+    row.action.formSelector = @selector(changePassword:);
     if (listAccount.count == 0) row.disabled = @YES;
     [section addFormRow:row];
 
@@ -168,7 +168,7 @@
 #pragma mark === Modify Account ===
 #pragma --------------------------------------------------------------------------------------------
 
-- (void)modifyAccount:(XLFormRowDescriptor *)sender
+- (void)changePassword:(XLFormRowDescriptor *)sender
 {    
     [self deselectFormRow:sender];
     

+ 2 - 2
iOSClient/en.lproj/Localizable.strings

@@ -100,7 +100,7 @@
 "_want_exit_"               = "Attention! _brand_ will be reset to the initial state. Continue?";
 "_proceed_"                 = "Proceed";
 "_delete_cache_"            = "Delete cache";
-"_want_delete_cache_"       = "Do you want to delete cache (will also delete all local files and reset the file offline)?";
+"_want_delete_cache_"       = "Do you want to delete cache ?";
 "_mail_deleted_"            = "Email deleted";
 "_mail_saved_"              = "Email saved";
 "_mail_sent_"               = "Email sent successfully";
@@ -108,7 +108,7 @@
 "_information_req_"         = "Information request";
 "_credentials_"             = "Credentials";
 "_manage_account_"          = "Manage account";
-"_modify_account_"          = "Modify account";
+"_change_password_"         = "Change password";
 "_add_nextcloud_"           = "Add Nextcloud account";
 "_delete_account_"          = "Delete account";
 "_want_delete_"             = "Do you really want to delete it?";