diff --git a/po/de_pysol.po b/po/de_pysol.po index 9361a9f5..d85b6202 100644 --- a/po/de_pysol.po +++ b/po/de_pysol.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PySol 0.0.1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2022-05-26 22:09-0400\n" +"PO-Revision-Date: 2022-06-04 21:34-0400\n" "Last-Translator: H. Schaekel \n" "Language-Team: German\n" "Language: de\n" @@ -5178,6 +5178,9 @@ msgstr "Nur Glück" msgid "Text below icons" msgstr "" +msgid "Text above icons" +msgstr "" + #: pysollib/ui/tktile/tkconst.py:55 msgid "Text beside icons" msgstr "" diff --git a/po/fr_pysol.po b/po/fr_pysol.po index 8e910a4d..2e9437fe 100644 --- a/po/fr_pysol.po +++ b/po/fr_pysol.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: 1.02\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2022-05-26 22:10-0400\n" +"PO-Revision-Date: 2022-06-04 21:35-0400\n" "Last-Translator: Eric Rausch \n" "Language-Team: French\n" "Language: fr\n" @@ -5230,6 +5230,9 @@ msgstr "Icônes" msgid "Text below icons" msgstr "Texte en-dessous" +msgid "Text above icons" +msgstr "" + #: pysollib/ui/tktile/tkconst.py:55 msgid "Text beside icons" msgstr "Texte à droite" diff --git a/po/it_pysol.po b/po/it_pysol.po index db452fae..4f2535ef 100644 --- a/po/it_pysol.po +++ b/po/it_pysol.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: it_pysol\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2022-05-26 22:10-0400\n" +"PO-Revision-Date: 2022-06-04 21:35-0400\n" "Last-Translator: Giuliano Colla \n" "Language-Team: Italiano \n" "Language: it\n" @@ -5293,6 +5293,9 @@ msgstr "Solo icone" msgid "Text below icons" msgstr "Testo sotto le icone" +msgid "Text above icons" +msgstr "" + #: pysollib/ui/tktile/tkconst.py:55 msgid "Text beside icons" msgstr "Testo a fianco delle icone" diff --git a/po/pl_pysol.po b/po/pl_pysol.po index 42230c82..8afe3107 100644 --- a/po/pl_pysol.po +++ b/po/pl_pysol.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2022-05-26 22:10-0400\n" +"PO-Revision-Date: 2022-06-04 21:35-0400\n" "Last-Translator: Jerzy Trzeciak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -5356,6 +5356,9 @@ msgstr "Tylko ikony" msgid "Text below icons" msgstr "Tekst poniżej ikon" +msgid "Text above icons" +msgstr "" + #: pysollib/ui/tktile/tkconst.py:55 msgid "Text beside icons" msgstr "Tekst obok ikon" diff --git a/po/pysol.pot b/po/pysol.pot index 36fcbb4e..df0d233d 100644 --- a/po/pysol.pot +++ b/po/pysol.pot @@ -4971,6 +4971,9 @@ msgstr "" msgid "Text below icons" msgstr "" +msgid "Text above icons" +msgstr "" + #: pysollib/ui/tktile/tkconst.py:55 msgid "Text beside icons" msgstr "" diff --git a/po/ru_pysol.po b/po/ru_pysol.po index 40c35ab7..8a1c6779 100644 --- a/po/ru_pysol.po +++ b/po/ru_pysol.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2022-05-26 22:10-0400\n" +"PO-Revision-Date: 2022-06-04 21:35-0400\n" "Last-Translator: Skomoroh \n" "Language-Team: Russian \n" "Language: ru\n" @@ -5320,6 +5320,9 @@ msgstr "Только пиктограммы" msgid "Text below icons" msgstr "Текст под пиктограммами" +msgid "Text above icons" +msgstr "" + #: pysollib/ui/tktile/tkconst.py:55 msgid "Text beside icons" msgstr "Текст рядом с пиктограммами" diff --git a/pysollib/ui/tktile/tkconst.py b/pysollib/ui/tktile/tkconst.py index 19322633..f4cbbddb 100644 --- a/pysollib/ui/tktile/tkconst.py +++ b/pysollib/ui/tktile/tkconst.py @@ -47,11 +47,11 @@ ANCHOR_W = tkinter.W ANCHOR_E = tkinter.E COMPOUNDS = ( - # (tkinter.BOTTOM, 'bottom'), # (tkinter.CENTER, 'center'), # (tkinter.RIGHT, 'right'), (tkinter.NONE, n_('Icons only')), (tkinter.TOP, n_('Text below icons')), + (tkinter.BOTTOM, n_('Text above icons')), (tkinter.LEFT, n_('Text beside icons')), ('text', n_('Text only')), )