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";
|
"Cancel" = "Cancel";
|
||||||
"Done" = "Done";
|
"Done" = "Done";
|
||||||
"Discard" = "Discard";
|
"Discard" = "Discard";
|
||||||
|
"Yes" = "Yes";
|
||||||
|
"Later" = "Later";
|
||||||
|
|
||||||
"Add" = "Add";
|
"Add" = "Add";
|
||||||
"New" = "New";
|
"New" = "New";
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
"Cancel" = "Abbrechen";
|
"Cancel" = "Abbrechen";
|
||||||
"Done" = "Fertig";
|
"Done" = "Fertig";
|
||||||
"Discard" = "Verwerfen";
|
"Discard" = "Verwerfen";
|
||||||
|
"Yes" = "Ja";
|
||||||
|
"Later" = "Später";
|
||||||
|
|
||||||
"Add" = "Hinzufügen";
|
"Add" = "Hinzufügen";
|
||||||
"New" = "Neu";
|
"New" = "Neu";
|
||||||
|
|
|
@ -103,8 +103,8 @@ struct AddAccountDialog: View {
|
||||||
authenticationService.setAuthenticationType(.none)
|
authenticationService.setAuthenticationType(.none)
|
||||||
|
|
||||||
UIAlert("Secure data?", "Secure data with?",
|
UIAlert("Secure data?", "Secure data with?",
|
||||||
UIAlertAction.ok { SceneDelegate.navigateToView(ProtectAppSettingsDialog()) },
|
UIAlertAction.default("Yes") { SceneDelegate.navigateToView(ProtectAppSettingsDialog()) },
|
||||||
UIAlertAction.cancel(self.closeDialog))
|
UIAlertAction.cancel("Later", self.closeDialog))
|
||||||
.show()
|
.show()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue