1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
-
+
-
+
|
"""
Grammar checker default options
"""
# generated code, do not edit
def getUI (sLang):
"returns dictionary of UI labels"
"returns dictionary of UI labels"
if sLang in _dOptLabel:
return _dOptLabel[sLang]
return _dOptLabel["fr"]
def getOptions (sContext="Python"):
"returns dictionary of options"
"returns dictionary of options"
if sContext in dOpt:
return dOpt[sContext]
return dOpt["Python"]
lStructOpt = ${lStructOpt}
|