1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Added text above toolbar icon option.

This commit is contained in:
Joe R 2022-06-04 21:36:49 -04:00
parent 2487830d7e
commit a8c307fd3a
7 changed files with 24 additions and 6 deletions

View file

@ -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 <Holger.Schaekel@web.de>\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 ""

View file

@ -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 <neelix570@gmail.com>\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"

View file

@ -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 <giuliano.colla@gmail.com>\n"
"Language-Team: Italiano <it@li.org>\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"

View file

@ -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 <artusek@wp.pl>\n"
"Language-Team: Polish <pl@li.org>\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"

View file

@ -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 ""

View file

@ -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 <skomoroh@gmail.com>\n"
"Language-Team: Russian <ru@li.org>\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 "Текст рядом с пиктограммами"

View file

@ -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')),
)