Replace Cancel with X to exit shortcuts

Misleading!
This commit is contained in:
Davide De Rosa 2019-03-19 17:52:09 +01:00
parent 63d74b6feb
commit af51911536
4 changed files with 4 additions and 2 deletions

View File

@ -54,7 +54,6 @@ class ShortcutsViewController: UITableViewController, TableModelHost {
super.viewDidLoad()
title = L10n.Organizer.Cells.SiriShortcuts.caption
// itemNext.title = L10n.Global.next
}
}

View File

@ -49,7 +49,7 @@
</connections>
</tableView>
<navigationItem key="navigationItem" id="Yck-NS-FzJ">
<barButtonItem key="leftBarButtonItem" systemItem="cancel" id="8HE-Ax-VIa">
<barButtonItem key="leftBarButtonItem" systemItem="stop" id="8HE-Ax-VIa">
<connections>
<action selector="close" destination="mG2-gQ-aPy" id="Eua-Wd-kuz"/>
</connections>

View File

@ -26,6 +26,7 @@
"global.ok" = "OK";
"global.cancel" = "Cancel";
"global.next" = "Next";
"global.close" = "Close";
"global.host.title_input.message" = "Acceptable characters are alphanumerics plus dash \"-\", underscore \"_\" and dot \".\".";
"global.host.title_input.placeholder" = "My Profile";

View File

@ -269,6 +269,8 @@ public enum L10n {
public enum Global {
/// Cancel
public static let cancel = L10n.tr("Localizable", "global.cancel")
/// Close
public static let close = L10n.tr("Localizable", "global.close")
/// Next
public static let next = L10n.tr("Localizable", "global.next")
/// OK