Renamed buttons when asking user if she likes to secure her data to 'Later' and 'Yes'
This commit is contained in:
parent
3988e7ebac
commit
66feba0614
|
@ -3,6 +3,8 @@
|
|||
"Cancel" = "Cancel";
|
||||
"Done" = "Done";
|
||||
"Discard" = "Discard";
|
||||
"Yes" = "Yes";
|
||||
"Later" = "Later";
|
||||
|
||||
"Add" = "Add";
|
||||
"New" = "New";
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
"Cancel" = "Abbrechen";
|
||||
"Done" = "Fertig";
|
||||
"Discard" = "Verwerfen";
|
||||
"Yes" = "Ja";
|
||||
"Later" = "Später";
|
||||
|
||||
"Add" = "Hinzufügen";
|
||||
"New" = "Neu";
|
||||
|
|
|
@ -103,8 +103,8 @@ struct AddAccountDialog: View {
|
|||
authenticationService.setAuthenticationType(.none)
|
||||
|
||||
UIAlert("Secure data?", "Secure data with?",
|
||||
UIAlertAction.ok { SceneDelegate.navigateToView(ProtectAppSettingsDialog()) },
|
||||
UIAlertAction.cancel(self.closeDialog))
|
||||
UIAlertAction.default("Yes") { SceneDelegate.navigateToView(ProtectAppSettingsDialog()) },
|
||||
UIAlertAction.cancel("Later", self.closeDialog))
|
||||
.show()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue