From fd4a4e13788ae352f00fed5ff0f1160c0636c453 Mon Sep 17 00:00:00 2001 From: Joe R Date: Thu, 20 Feb 2025 18:59:01 -0500 Subject: [PATCH] Fill in missing translated names --- html-src/rules/bigbraid.html | 2 +- pysollib/games/braid.py | 3 ++- pysollib/games/siebenbisas.py | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/html-src/rules/bigbraid.html b/html-src/rules/bigbraid.html index 901cf77c..abb8f3f7 100644 --- a/html-src/rules/bigbraid.html +++ b/html-src/rules/bigbraid.html @@ -1,4 +1,4 @@ -

Big Braid

+

Big Braid (Der große Zopf)

Napoleon type. 3 decks. 2 redeals. diff --git a/pysollib/games/braid.py b/pysollib/games/braid.py index cf7147d4..fc74ba21 100644 --- a/pysollib/games/braid.py +++ b/pysollib/games/braid.py @@ -646,7 +646,8 @@ registerGame(GameInfo(376, Backbone, "Backbone", registerGame(GameInfo(377, BackbonePlus, "Backbone +", GI.GT_NAPOLEON, 2, 0, GI.SL_BALANCED)) registerGame(GameInfo(510, BigBraid, "Big Braid", - GI.GT_NAPOLEON | GI.GT_ORIGINAL, 3, 2, GI.SL_BALANCED)) + GI.GT_NAPOLEON | GI.GT_ORIGINAL, 3, 2, GI.SL_BALANCED, + altnames=("Der grose Zopf",))) registerGame(GameInfo(694, Casket, "Casket", GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED)) registerGame(GameInfo(717, Well, "Well", diff --git a/pysollib/games/siebenbisas.py b/pysollib/games/siebenbisas.py index 486d3b02..ad6e8773 100644 --- a/pysollib/games/siebenbisas.py +++ b/pysollib/games/siebenbisas.py @@ -291,7 +291,8 @@ class Maze(Game): # register the game registerGame(GameInfo(118, SiebenBisAs, "Sieben bis As", GI.GT_MONTANA | GI.GT_OPEN | GI.GT_STRIPPED, 1, 0, - GI.SL_MOSTLY_SKILL, ranks=(0, 6, 7, 8, 9, 10, 11, 12))) + GI.SL_MOSTLY_SKILL, ranks=(0, 6, 7, 8, 9, 10, 11, 12), + altnames=("Seven to Ace",))) registerGame(GameInfo(144, Maze, "Maze", GI.GT_MONTANA | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL, si={"ncards": 48}))