From 0b0f03354fdb4ffbcf9c0dd208d42c80235ade45 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Sat, 16 Jan 2021 03:26:15 +0100 Subject: [PATCH] Add last 2 variants in DB - still small bugs - will fix tomorrow --- client/src/translations/en.js | 2 ++ client/src/translations/es.js | 2 ++ client/src/translations/fr.js | 2 ++ client/src/translations/variants/en.pug | 2 ++ client/src/translations/variants/es.pug | 2 ++ client/src/translations/variants/fr.pug | 2 ++ server/db/populate.sql | 2 ++ 7 files changed, 14 insertions(+) diff --git a/client/src/translations/en.js b/client/src/translations/en.js index 9608ef18..9501efe2 100644 --- a/client/src/translations/en.js +++ b/client/src/translations/en.js @@ -167,6 +167,7 @@ export const translations = { "64 pieces on the board": "64 pieces on the board", "A Clockwork Orange": "A Clockwork Orange", "A pawns cloud": "A pawns cloud", + "A quantum story": "A quantum story", "A wizard in the corner": "A wizard in the corner", "Absorb powers": "Absorb powers", "All of the same color": "All of the same color", @@ -198,6 +199,7 @@ export const translations = { "Dance with the King": "Dance with the King", "Dangerous captures": "Dangerous captures", "Dangerous collisions": "Dangerous collisions", + "Do not play that!": "Do not play that!", "Double moves (v1)": "Double moves (v1)", "Double moves (v2)": "Double moves (v2)", "Dynasty versus Kingdom": "Dynasty versus Kingdom", diff --git a/client/src/translations/es.js b/client/src/translations/es.js index 980f6f92..152ee64c 100644 --- a/client/src/translations/es.js +++ b/client/src/translations/es.js @@ -167,6 +167,7 @@ export const translations = { "64 pieces on the board": "64 piezas en el tablero", "A Clockwork Orange": "Naranja Mecánica", "A pawns cloud": "Une nube de peones", + "A quantum story": "Una historia cuántica", "A wizard in the corner": "Un mago en la esquina", "Absorb powers": "Absorber poderes", "All of the same color": "Todo el mismo color", @@ -198,6 +199,7 @@ export const translations = { "Dance with the King": "Baila con el Rey", "Dangerous captures": "Capturas peligrosas", "Dangerous collisions": "Colisiones peligrosas", + "Do not play that!": "¡No juegues eso!", "Double moves (v1)": "Jugadas doble (v1)", "Double moves (v2)": "Jugadas doble (v2)", "Dynasty versus Kingdom": "Dinastía contra Reino", diff --git a/client/src/translations/fr.js b/client/src/translations/fr.js index 6484ba00..2c6809a4 100644 --- a/client/src/translations/fr.js +++ b/client/src/translations/fr.js @@ -167,6 +167,7 @@ export const translations = { "64 pieces on the board": "64 pièces sur l'échiquier", "A Clockwork Orange": "Orange Mécanique", "A pawns cloud": "Une nuée de pions", + "A quantum story": "Une histoire quantique", "A wizard in the corner": "Un sorcier dans le coin", "Absorb powers": "Absorber les pouvoirs", "All of the same color": "Tout de la même couleur", @@ -198,6 +199,7 @@ export const translations = { "Dance with the King": "Dansez avec le Roi", "Dangerous captures": "Captures dangeureuses", "Dangerous collisions": "Collisions dangeureuses", + "Do not play that!": "Ne joue pas ça !", "Double moves (v1)": "Coups doubles (v1)", "Double moves (v2)": "Coups doubles (v2)", "Dynasty versus Kingdom": "Dynastie contre Royaume", diff --git a/client/src/translations/variants/en.pug b/client/src/translations/variants/en.pug index af4c5505..aea01ff7 100644 --- a/client/src/translations/variants/en.pug +++ b/client/src/translations/variants/en.pug @@ -442,6 +442,7 @@ p. var varlist = [ "Alice", "Ambiguous", + "Bario", "Bicolour", "Evolution", "Forward", @@ -449,6 +450,7 @@ p. "Hamilton", "Kingsmaker", "Magnetic", + "Refusal", "Relayup", "Rollerball", "Takenmake", diff --git a/client/src/translations/variants/es.pug b/client/src/translations/variants/es.pug index b6386175..e087a42e 100644 --- a/client/src/translations/variants/es.pug +++ b/client/src/translations/variants/es.pug @@ -452,6 +452,7 @@ p. var varlist = [ "Alice", "Ambiguous", + "Bario", "Bicolour", "Evolution", "Forward", @@ -459,6 +460,7 @@ p. "Hamilton", "Kingsmaker", "Magnetic", + "Refusal", "Relayup", "Rollerball", "Takenmake", diff --git a/client/src/translations/variants/fr.pug b/client/src/translations/variants/fr.pug index 9ce01601..bb640db0 100644 --- a/client/src/translations/variants/fr.pug +++ b/client/src/translations/variants/fr.pug @@ -450,6 +450,7 @@ p. var varlist = [ "Alice", "Ambiguous", + "Bario", "Bicolour", "Evolution", "Forward", @@ -457,6 +458,7 @@ p. "Hamilton", "Kingsmaker", "Magnetic", + "Refusal", "Relayup", "Rollerball", "Takenmake", diff --git a/server/db/populate.sql b/server/db/populate.sql index b2740327..122224d1 100644 --- a/server/db/populate.sql +++ b/server/db/populate.sql @@ -26,6 +26,7 @@ insert or ignore into Variants (name, description) values ('Avalanche', 'Pawnfalls'), ('Ball', 'Score a goal'), ('Balaklava', 'Meet the Mammoth'), + ('Bario', 'A quantum story'), ('Baroque', 'Exotic captures'), ('Benedict', 'Change colors'), ('Berolina', 'Pawns move diagonally'), @@ -119,6 +120,7 @@ insert or ignore into Variants (name, description) values ('Relayup', 'Upgrade pieces'), ('Rifle', 'Shoot pieces'), ('Recycle', 'Reuse pieces'), + ('Refusal', 'Do not play that!'), ('Rollerball', 'As in the movie'), ('Rococo', 'Capture on the edge'), ('Rookpawns', 'Rook versus pawns'), -- 2.44.0