From 5899e0befa6d27513b1cb31fad93fc9b233836cc Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Thu, 26 Aug 2021 04:09:02 +0300 Subject: [PATCH] - in Preferences the language names are in the native language --- CHANGELOG.md | 1 + appTranslation.py | 18 +++++++++--------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aced829c..07cb78f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ CHANGELOG for FlatCAM beta - updated the Italian translation by Massimiliano Golfetto - Turkish and Chinese small updates +- in Preferences the language names are in the native language 25.08.2021 diff --git a/appTranslation.py b/appTranslation.py index 0447cf0b..cd137616 100644 --- a/appTranslation.py +++ b/appTranslation.py @@ -23,16 +23,16 @@ if '_' not in builtins.__dict__: # ISO639-1 codes from here: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes languages_dict = { - 'zh': 'Chinese', - 'de': 'German', + 'zh': '简体中文', + 'de': 'Deutsche', 'en': 'English', - 'es': 'Spanish', - 'fr': 'French', - 'it': 'Italian', - 'pt_BR': 'Brazilian Portuguese', - 'ro': 'Romanian', - 'ru': 'Russian', - 'tr': 'Turkish', + 'es': 'Español', + 'fr': 'Français', + 'it': 'Italiano', + 'pt_BR': 'Portugues do Brasil', + 'ro': 'Română', + 'ru': 'Pусский', + 'tr': 'Türk', } translations = {}