Grammalecte  Diff

Differences From Artifact [0a191cd7cc]:

To Artifact [b3a084563a]:








1

2





3

4

5
6
7
8
9
10
11






def getUI (sLang):

    if sLang in dStrings:





        return dStrings[sLang]

    return dStrings["fr"]


dStrings = {
    "fr": {
        "title": "Grammalecte · Options orthographiques",

        "spelling_section": "Correcteur orthographique",
        "activate_main": "Activer le correcteur orthographique de Grammalecte",
>
>
>
>
>
>
|
>

>
>
>
>
>
|
>
|
>







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
# Strings for Dictionary Options


sUI = "fr"


def selectLang (sLang):
    global sUI
    if sLang in dStrings:
        sUI = sLang


def get (sMsgCode):
    try:
        return dStrings[sUI].get(sMsgCode, sMsgCode)
    except:
        return "#error"


dStrings = {
    "fr": {
        "title": "Grammalecte · Options orthographiques",

        "spelling_section": "Correcteur orthographique",
        "activate_main": "Activer le correcteur orthographique de Grammalecte",