parent
63d74b6feb
commit
af51911536
|
@ -54,7 +54,6 @@ class ShortcutsViewController: UITableViewController, TableModelHost {
|
|||
super.viewDidLoad()
|
||||
|
||||
title = L10n.Organizer.Cells.SiriShortcuts.caption
|
||||
// itemNext.title = L10n.Global.next
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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";
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue