From ddc401210d05924e817f8cfa8bc765ab238a1122 Mon Sep 17 00:00:00 2001 From: ghnoob Date: Wed, 22 Jan 2020 00:53:23 -0300 Subject: [PATCH] Added Spanish language --- tkfontchooser.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tkfontchooser.py b/tkfontchooser.py index 79a851e..a5f0eec 100755 --- a/tkfontchooser.py +++ b/tkfontchooser.py @@ -39,7 +39,9 @@ "Underline": "Sottolineato", "Overstrike": "Barrato"} RU = {"Cancel": "Отмена", "Bold": "Полужирный", "Italic": "Курсив", "Underline": "Подчеркнутый", "Overstrike": "Зачеркнутый"} -LANGUAGES = {"fr": FR, "en": EN, "it": IT, "ru": RU} +ES = {"Cancel": "Cancelar", "Bold": "Negrita", "Italic": "Cursiva", + "Underline": "Subrayado", "Overstrike": "Tachado"} +LANGUAGES = {"fr": FR, "en": EN, "it": IT, "ru": RU, "es": ES} try: lang_code = getdefaultlocale()[0][:2]