Skip to content

Commit

Permalink
Fix inconsistent capitalization on some menu bar items
Browse files Browse the repository at this point in the history
  • Loading branch information
joeraz committed Nov 24, 2024
1 parent 5392190 commit 86d92c2
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions po/de_pysol.po
Original file line number Diff line number Diff line change
Expand Up @@ -4971,10 +4971,10 @@ msgstr "Karte suchen"
msgid "Full picture"
msgstr ""

msgid "Icon Style"
msgid "Icon style"
msgstr ""

msgid "Icon Size"
msgid "Icon size"
msgstr ""

msgid "Small icons"
Expand Down Expand Up @@ -5543,7 +5543,7 @@ msgstr "&Regeln dieses Spiels"
msgid "What's &new?"
msgstr ""

msgid "R&eport a Bug"
msgid "R&eport a bug"
msgstr ""

#: pysollib/ui/tktile/menubar.py:660
Expand Down
6 changes: 3 additions & 3 deletions po/fr_pysol.po
Original file line number Diff line number Diff line change
Expand Up @@ -5022,10 +5022,10 @@ msgstr "Trouver carte"
msgid "Full picture"
msgstr ""

msgid "Icon Style"
msgid "Icon style"
msgstr ""

msgid "Icon Size"
msgid "Icon size"
msgstr ""

msgid "Small icons"
Expand Down Expand Up @@ -5591,7 +5591,7 @@ msgstr "&Règles de ce jeu"
msgid "What's &new?"
msgstr ""

msgid "R&eport a Bug"
msgid "R&eport a bug"
msgstr ""

#: pysollib/ui/tktile/menubar.py:660
Expand Down
6 changes: 3 additions & 3 deletions po/it_pysol.po
Original file line number Diff line number Diff line change
Expand Up @@ -5088,10 +5088,10 @@ msgstr "Trova carta"
msgid "Full picture"
msgstr ""

msgid "Icon Style"
msgid "Icon style"
msgstr ""

msgid "Icon Size"
msgid "Icon size"
msgstr ""

msgid "Small icons"
Expand Down Expand Up @@ -5656,7 +5656,7 @@ msgstr "&Regole di questo gioco"
msgid "What's &new?"
msgstr ""

msgid "R&eport a Bug"
msgid "R&eport a bug"
msgstr ""

#: pysollib/ui/tktile/menubar.py:660
Expand Down
6 changes: 3 additions & 3 deletions po/pl_pysol.po
Original file line number Diff line number Diff line change
Expand Up @@ -5042,10 +5042,10 @@ msgstr "Znajdź kartę"
msgid "Full picture"
msgstr ""

msgid "Icon Style"
msgid "Icon style"
msgstr "Wygląd ikon"

msgid "Icon Size"
msgid "Icon size"
msgstr "Rozmiar ikon"

msgid "Small icons"
Expand Down Expand Up @@ -5605,7 +5605,7 @@ msgstr "Zasady tej g&ry"
msgid "What's &new?"
msgstr "Co &nowego?"

msgid "R&eport a Bug"
msgid "R&eport a bug"
msgstr "Zgłoś błąd"

#: pysollib/ui/tktile/menubar.py:660
Expand Down
8 changes: 4 additions & 4 deletions po/pt_BR_pysol.po
Original file line number Diff line number Diff line change
Expand Up @@ -5044,10 +5044,10 @@ msgstr "Encontrar carta"
msgid "Full picture"
msgstr ""

msgid "Icon Style"
msgid "Icon style"
msgstr ""

msgid "Icon Size"
msgid "Icon size"
msgstr ""

msgid "Small icons"
Expand Down Expand Up @@ -5613,8 +5613,8 @@ msgstr "&Regras desse jogo"
msgid "What's &new?"
msgstr "&Novidades"

msgid "R&eport a Bug"
msgstr "R&eportar um Bug"
msgid "R&eport a bug"
msgstr "R&eportar um bug"

#: pysollib/ui/tktile/menubar.py:660
msgid "&License terms"
Expand Down
6 changes: 3 additions & 3 deletions po/pysol.pot
Original file line number Diff line number Diff line change
Expand Up @@ -4774,10 +4774,10 @@ msgstr ""
msgid "Full picture"
msgstr ""

msgid "Icon Style"
msgid "Icon style"
msgstr ""

msgid "Icon Size"
msgid "Icon size"
msgstr ""

msgid "Small icons"
Expand Down Expand Up @@ -5337,7 +5337,7 @@ msgstr ""
msgid "What's &new?"
msgstr ""

msgid "R&eport a Bug"
msgid "R&eport a bug"
msgstr ""

#: pysollib/ui/tktile/menubar.py:660
Expand Down
6 changes: 3 additions & 3 deletions po/ru_pysol.po
Original file line number Diff line number Diff line change
Expand Up @@ -5111,10 +5111,10 @@ msgstr "Найти карту"
msgid "Full picture"
msgstr ""

msgid "Icon Style"
msgid "Icon style"
msgstr ""

msgid "Icon Size"
msgid "Icon size"
msgstr ""

msgid "Small icons"
Expand Down Expand Up @@ -5681,7 +5681,7 @@ msgstr "&Правила текущей игры"
msgid "What's &new?"
msgstr ""

msgid "R&eport a Bug"
msgid "R&eport a bug"
msgstr ""

#: pysollib/ui/tktile/menubar.py:660
Expand Down
6 changes: 3 additions & 3 deletions pysollib/ui/tktile/menubar.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
def createToolbarMenu(menubar, menu):
tearoff = menu.cget('tearoff')
data_dir = os.path.join(menubar.app.dataloader.dir, 'images', 'toolbar')
submenu = MfxMenu(menu, label=n_('Icon Style'), tearoff=tearoff)
submenu = MfxMenu(menu, label=n_('Icon style'), tearoff=tearoff)
styledirs = os.listdir(data_dir)
styledirs.sort()
for f in styledirs:
Expand All @@ -34,7 +34,7 @@ def createToolbarMenu(menubar, menu):
label=name,
variable=menubar.tkopt.toolbar_style,
value=f, command=menubar.mOptToolbarStyle)
submenu = MfxMenu(menu, label=n_('Icon Size'), tearoff=tearoff)
submenu = MfxMenu(menu, label=n_('Icon size'), tearoff=tearoff)
submenu.add_radiobutton(label=n_("Small icons"),
variable=menubar.tkopt.toolbar_size, value=0,
command=menubar.mOptToolbarSize)
Expand Down Expand Up @@ -911,7 +911,7 @@ def _createMenubar(self):
label=n_("What's &new?"),
command=self.mHelpNews)
menu.add_command(
label=n_("R&eport a Bug"),
label=n_("R&eport a bug"),
command=self.mHelpReportBug)
menu.add_command(
label=n_("&License terms"),
Expand Down

0 comments on commit 86d92c2

Please sign in to comment.