1
2
3
4
5
6
7
8
9
10
11
12
|
# generated code, do not edit
def getUI (sLang):
if sLang in _dOptLabel:
return _dOptLabel[sLang]
return _dOptLabel["fr"]
lStructOpt = ${lStructOpt}
dOpt = ${dOptPython}
_dOptLabel = ${dOptLabel}
|
>
>
>
>
>
>
>
>
|
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# generated code, do not edit
def getUI (sLang):
if sLang in _dOptLabel:
return _dOptLabel[sLang]
return _dOptLabel["fr"]
def getOptions (sContext="Python"):
if sContext in dOpt:
return dOpt[sContext]
return dOpt["Python"]
lStructOpt = ${lStructOpt}
dOpt = {
"Python": ${dOptPython},
"Server": ${dOptServer},
"Writer": ${dOptWriter}
}
_dOptLabel = ${dOptLabel}
|