1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-03-12 04:07:01 -04:00

Tweak menu text for consistency

This commit is contained in:
Joe R 2025-02-06 21:56:32 -05:00
parent ed2da8cd46
commit 21c2780e8e
10 changed files with 18 additions and 18 deletions

View file

@ -2653,7 +2653,7 @@ msgid "Automatic play"
msgstr "Automatisierung"
#: pysollib/kivy/menubar.py:513
msgid "Auto face up"
msgid "Auto face-up"
msgstr "Automatisch aufdecken"
#: pysollib/kivy/menubar.py:523
@ -5174,7 +5174,7 @@ msgstr "Kommentare..."
msgid "Log..."
msgstr ""
msgid "Demo Log..."
msgid "Demo log..."
msgstr ""
#: pysollib/ui/tktile/menubar.py:427

View file

@ -2694,7 +2694,7 @@ msgid "Automatic play"
msgstr "Jouer auto"
#: pysollib/kivy/menubar.py:513
msgid "Auto face up"
msgid "Auto face-up"
msgstr "Retourner auto"
#: pysollib/kivy/menubar.py:523
@ -5225,7 +5225,7 @@ msgstr "&Commentaires..."
msgid "Log..."
msgstr "Journal..."
msgid "Demo Log..."
msgid "Demo log..."
msgstr ""
#: pysollib/ui/tktile/menubar.py:427

View file

@ -2707,7 +2707,7 @@ msgstr "Gioco automatico"
#: pysollib/kivy/menubar.py:513
#, fuzzy
msgid "Auto face up"
msgid "Auto face-up"
msgstr "Auto &scopri"
#: pysollib/kivy/menubar.py:523
@ -5291,7 +5291,7 @@ msgstr "&Commenti..."
msgid "Log..."
msgstr "Log..."
msgid "Demo Log..."
msgid "Demo log..."
msgstr ""
#: pysollib/ui/tktile/menubar.py:427

View file

@ -2707,7 +2707,7 @@ msgid "Automatic play"
msgstr "Gra &automatyczna"
#: pysollib/kivy/menubar.py:513
msgid "Auto face up"
msgid "Auto face-up"
msgstr "Odkrywaj automatycznie"
#: pysollib/kivy/menubar.py:523
@ -5245,7 +5245,7 @@ msgstr "Komentarze..."
msgid "Log..."
msgstr "Log..."
msgid "Demo Log..."
msgid "Demo log..."
msgstr ""
#: pysollib/ui/tktile/menubar.py:427

View file

@ -2715,7 +2715,7 @@ msgid "Automatic play"
msgstr "Jogar automaticamente"
#: pysollib/kivy/menubar.py:513
msgid "Auto face up"
msgid "Auto face-up"
msgstr "Virar pra cima automaticamente"
#: pysollib/kivy/menubar.py:523
@ -5247,7 +5247,7 @@ msgstr "&Comentários..."
msgid "Log..."
msgstr "Registro"
msgid "Demo Log..."
msgid "Demo log..."
msgstr ""
#: pysollib/ui/tktile/menubar.py:427

View file

@ -2524,7 +2524,7 @@ msgid "Automatic play"
msgstr ""
#: pysollib/kivy/menubar.py:513
msgid "Auto face up"
msgid "Auto face-up"
msgstr ""
#: pysollib/kivy/menubar.py:523
@ -4977,7 +4977,7 @@ msgstr ""
msgid "Log..."
msgstr ""
msgid "Demo Log..."
msgid "Demo log..."
msgstr ""
#: pysollib/ui/tktile/menubar.py:427

View file

@ -2713,7 +2713,7 @@ msgstr "Настройки &автоматической игры"
#: pysollib/kivy/menubar.py:513
#, fuzzy
msgid "Auto face up"
msgid "Auto face-up"
msgstr "Автоматически &переворачивать"
#: pysollib/kivy/menubar.py:523
@ -5314,7 +5314,7 @@ msgstr "&Комментарии..."
msgid "Log..."
msgstr "Лог..."
msgid "Demo Log..."
msgid "Demo log..."
msgstr ""
#: pysollib/ui/tktile/menubar.py:427

View file

@ -571,7 +571,7 @@ class LOptionsMenuGenerator(LTreeGenerator):
LTreeNode(text=_('Automatic play')))
if rg:
self.addCheckNode(tv, rg,
_('Auto face up'),
_('Auto face-up'),
self.menubar.tkopt.autofaceup,
self.menubar.mOptAutoFaceUp)

View file

@ -259,7 +259,7 @@ class PysolMenubarTk:
]
for label, action, opt_name, update_game in (
('A&uto drop', 'optautodrop', 'autodrop', False),
('Auto &face up', '', 'autofaceup', False),
('Auto &face-up', '', 'autofaceup', False),
('Auto &deal', '', 'autodeal', False),
('&Quick play', '', 'quickplay', False),
('Enable &undo', '', 'undo', False),

View file

@ -621,7 +621,7 @@ class PysolMenubarTkCommon:
label=n_("Log..."),
command=lambda: self.mPlayerStats(mode=103))
menu.add_command(
label=n_("Demo Log..."),
label=n_("Demo log..."),
command=lambda: self.mPlayerStats(mode=1103))
menu.add_separator()
menu.add_command(
@ -666,7 +666,7 @@ class PysolMenubarTkCommon:
command=self.mOptPlayerOptions, accelerator=m+'P')
submenu = MfxMenu(menu, label=n_("&Automatic play"))
submenu.add_checkbutton(
label=n_("Auto &face up"), variable=self.tkopt.autofaceup,
label=n_("Auto &face-up"), variable=self.tkopt.autofaceup,
command=self.mOptAutoFaceUp)
submenu.add_checkbutton(
label=n_("A&uto drop"), variable=self.tkopt.autodrop,