From fd28ecc2a9af9f0ec079261f17aeaeb52a8cc554 Mon Sep 17 00:00:00 2001 From: pierre Date: Fri, 2 Aug 2024 17:54:19 +0200 Subject: [PATCH] ... --- chemins.py | 2 ++ dialog.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/chemins.py b/chemins.py index 6d36c76..55fbd95 100644 --- a/chemins.py +++ b/chemins.py @@ -196,6 +196,8 @@ def ConstructDicoPath(AppliPath): 'spanish_exp' : os.path.join(BasePath, 'expression_sp.txt'), 'galician' : os.path.join(BasePath, 'lexique_gl.txt'), 'galician_exp' : os.path.join(BasePath, 'expression_gl.txt'), + 'dutch' : os.path.join(BasePath, 'lexique_nl.txt'), + 'norwegian' : os.path.join(BasePath, 'lexique_nn.txt'), } return DictPath diff --git a/dialog.py b/dialog.py index 87c4076..5ca0a2f 100755 --- a/dialog.py +++ b/dialog.py @@ -127,8 +127,8 @@ encodages = [['cp1252','Western Europe'], ['utf_7', 'all languages'], ['utf_8_sig', 'all languages']] -langues_n = ['français', 'english', 'german (expérimentale)', 'italian', 'swedish (expérimentale)', 'portuguese', 'spanish', 'greek (expériementale)', 'galician (expérimentale)', 'autre...'] -langues = ['french', 'english', 'german', 'italian', 'swedish', 'portuguese', 'spanish', 'greek', 'galician', 'other'] +langues_n = ['french', 'english', 'german', 'italian', 'swedish', 'portuguese', 'spanish', 'greek', 'galician', 'dutch', 'norwegian', 'autre...'] +langues = ['french', 'english', 'german', 'italian', 'swedish', 'portuguese', 'spanish', 'greek', 'galician', 'dutch', 'norwegian', 'other'] class FileOptionDialog(wx.Dialog): -- 2.7.4