File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ let languagesAbbrDict = [
125
125
" Swedish " : " sv " ,
126
126
]
127
127
128
+
128
129
/// Returns the abbreviation of the language for use in commands.
129
130
func getControllerLanguageAbbr( ) -> String {
130
131
guard let abbreviation = languagesAbbrDict [ controllerLanguage] else {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import UIKit
7
7
class TableViewTemplateViewController : UIViewController {
8
8
@IBOutlet var mainTable : UITableView !
9
9
10
- var screenTitle : String = " "
10
+ var screenTitle : String = " "
11
11
var tableData : [ ParentTableCellModel ] = [ ]
12
12
var parentSection : Section ?
13
13
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ struct SettingsTableData {
21
21
hasDynamicData: . installedKeyboards
22
22
) ,
23
23
]
24
-
24
+
25
25
static var languageSettingsData : [ ParentTableCellModel ] = [
26
26
ParentTableCellModel (
27
27
headingTitle: " Layout " ,
@@ -32,12 +32,12 @@ struct SettingsTableData {
32
32
hasToggle: true ,
33
33
sectionState: . none( . toggleCommaAndPeriod)
34
34
) ,
35
- Section (
35
+ Section (
36
36
sectionTitle: " Disable accent characters " ,
37
37
imageString: " info.circle " ,
38
38
hasToggle: true ,
39
39
sectionState: . none( . toggleAccentCharacters)
40
- ) ,
40
+ )
41
41
] ,
42
42
hasDynamicData: nil
43
43
) ,
@@ -54,7 +54,7 @@ struct SettingsTableData {
54
54
hasDynamicData: nil
55
55
)
56
56
]
57
-
57
+
58
58
static func getInstalledKeyboardsSections( ) -> [ Section ] {
59
59
var installedKeyboards = [ String] ( )
60
60
@@ -86,3 +86,5 @@ struct SettingsTableData {
86
86
return sections
87
87
}
88
88
}
89
+
90
+
You can’t perform that action at this time.
0 commit comments