Show how many cards are in my hand

The opponent row has had "hand N deck N" from the start, my own row only had
the remaining deck count. The hand count now sits to its left, in the same
order and the same dim colour, so both rows read the same way. Both numbers
got a tooltip: on a narrow panel "hand 5  21" needs one.

The refresh signature was missing my hand count, so a card leaving my hand
without a draw did not repaint the panel on its own.
This commit is contained in:
yusufipk
2026-07-28 00:09:49 +07:00
parent fa45c19d3b
commit b9695d39de
2 changed files with 16 additions and 0 deletions
+3
View File
@@ -27,6 +27,9 @@ STRINGS: dict[str, dict[str, str]] = {
"tr": "el {hand} deste {deck}",
"en": "hand {hand} deck {deck}",
},
"hand_count": {"tr": "el {hand}", "en": "hand {hand}"},
"hand_tooltip": {"tr": "Elindeki kart sayısı", "en": "Cards in your hand"},
"deck_count_tooltip": {"tr": "Destende kalan kart", "en": "Cards left in your deck"},
"deck_auto": {"tr": "Otomatik", "en": "Automatic"},
"deck_tooltip": {"tr": "Takip edilen deste", "en": "Tracked deck"},
"menu_to_window": {"tr": "Pencere moduna geç", "en": "Switch to window mode"},