Grammalecte  ca_strings.py at [d012b8a0d4]

File gc_lang/fr/oxt/ChangeAuthor/ca_strings.py artifact b67a9eb4f9 part of check-in d012b8a0d4


# -*- encoding: UTF-8 -*-

def getUI (sLang):
    if sLang in dStrings:
        return dStrings[sLang]
    return dStrings["fr"]

dStrings = {
    "fr": {
            "title": "Grammalecte · Édition du champ “Auteur”",

            "state": "Valeur actuelle du champ “Auteur” :",
            "empty": "[vide]",

            "newvalue": "Entrez la nouvelle valeur :",

            "modify": "Modifier",
            "cancel": "Annuler"
          },
    "en": {
            "title": "Grammalecte · Edition of field “Author”",

            "state": "Current value of field “Author”:",
            "empty": "[empty]",

            "newvalue": "Enter the new value:",

            "modify": "Modify",
            "cancel": "Cancel"
          }
}