From 61fa8134ce41eb37f722ee9cfc5af4a35a7feb6f Mon Sep 17 00:00:00 2001 From: RickyRister Date: Mon, 6 Jul 2026 20:12:04 -0700 Subject: [PATCH] pluralize name --- cockatrice/src/game_graphics/player/menu/tally_menu.cpp | 6 +++--- cockatrice/src/game_graphics/player/menu/tally_menu.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cockatrice/src/game_graphics/player/menu/tally_menu.cpp b/cockatrice/src/game_graphics/player/menu/tally_menu.cpp index a507f4b2f..4517e75ec 100644 --- a/cockatrice/src/game_graphics/player/menu/tally_menu.cpp +++ b/cockatrice/src/game_graphics/player/menu/tally_menu.cpp @@ -5,11 +5,11 @@ TallyMenu::TallyMenu() { aTallyNone = createTallyAction(TallyType::None); - aTallySubtype = createTallyAction(TallyType::Subtypes); + aTallySubtypes = createTallyAction(TallyType::Subtypes); addAction(aTallyNone); addSeparator(); - addAction(aTallySubtype); + addAction(aTallySubtypes); retranslateUi(); } @@ -45,5 +45,5 @@ void TallyMenu::retranslateUi() setTitle(tr("Tally")); aTallyNone->setText(tr("None")); - aTallySubtype->setText(tr("Subtype")); + aTallySubtypes->setText(tr("Subtypes")); } diff --git a/cockatrice/src/game_graphics/player/menu/tally_menu.h b/cockatrice/src/game_graphics/player/menu/tally_menu.h index 4bfd42fcc..a079f0fdf 100644 --- a/cockatrice/src/game_graphics/player/menu/tally_menu.h +++ b/cockatrice/src/game_graphics/player/menu/tally_menu.h @@ -20,7 +20,7 @@ public: private: QAction *aTallyNone = nullptr; - QAction *aTallySubtype = nullptr; + QAction *aTallySubtypes = nullptr; QAction *createTallyAction(TallyType tallyType); };