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