From 27ae2b025f81071abf4ffe2645f5f02e2987f3f2 Mon Sep 17 00:00:00 2001 From: Avior Date: Tue, 27 May 2025 13:28:44 +0200 Subject: [PATCH] fix: Boosters werent translated (#745) --- .../Pokémon TCG Pocket/Celestial Guardians.ts | 16 +++++++- data/Pokémon TCG Pocket/Genetic Apex.ts | 23 +++++++++-- .../Space-Time Smackdown.ts | 38 ++++++++++++------- 3 files changed, 59 insertions(+), 18 deletions(-) diff --git a/data/Pokémon TCG Pocket/Celestial Guardians.ts b/data/Pokémon TCG Pocket/Celestial Guardians.ts index d3f1758dd..d1c550a1c 100644 --- a/data/Pokémon TCG Pocket/Celestial Guardians.ts +++ b/data/Pokémon TCG Pocket/Celestial Guardians.ts @@ -23,12 +23,24 @@ const set: Set = { boosters: { solgaleo: { name: { - en: 'Solgaleo' + de: "Solgaleo", + en: 'Solgaleo', + fr: 'Solgaleo', + es: 'Solgaleo', + it: 'Solgaleo', + 'pt-br': 'Solgaleo', + ko: '솔가레오' } }, lunala: { name: { - en: 'Lunala' + de: "Lunala", + en: 'Lunala', + fr: 'Lunala', + es: 'Lunala', + it: 'Lunala', + 'pt-br': 'Lunala', + ko: '루나아라' } } }, diff --git a/data/Pokémon TCG Pocket/Genetic Apex.ts b/data/Pokémon TCG Pocket/Genetic Apex.ts index b46fc8e78..db6a69be0 100644 --- a/data/Pokémon TCG Pocket/Genetic Apex.ts +++ b/data/Pokémon TCG Pocket/Genetic Apex.ts @@ -23,17 +23,34 @@ const set: Set = { boosters: { mewtwo: { name: { - en: 'Mewtwo' + de: 'Mewtu', + en: 'Mewtwo', + fr: 'Mewtwo', + es: 'Mewtwo', + it: 'Mewtwo', + 'pt-br': 'Mewtwo', + ko: '뮤츠' } }, charizard: { name: { - en: 'Charizard' + de: 'Glurak', + en: 'Charizard', + fr: 'Dracaufeu', + es: 'Charizard', + it: 'Charizard', + 'pt-br': 'Charizard', + ko: '리자몽' } }, pikachu: { name: { - en: 'Pikachu' + en: 'Pikachu', + fr: 'Pikachu', + es: 'Pikachu', + it: 'Pikachu', + 'pt-br': 'Pikachu', + ko: '피카츄' } } }, diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown.ts index 8e991e60a..71da74c09 100644 --- a/data/Pokémon TCG Pocket/Space-Time Smackdown.ts +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown.ts @@ -1,5 +1,5 @@ -import { Set } from '../../interfaces' -import serie from '../Pokémon TCG Pocket' +import { Set } from "../../interfaces"; +import serie from "../Pokémon TCG Pocket"; const set: Set = { id: "A2", @@ -10,30 +10,42 @@ const set: Set = { es: "Pugna Espaciotemporal", fr: "Choc Spatio-Temporel", it: "Scontro Spaziotemporale", - 'pt-br': "Embate do Tempo e Espaço", - ko: '시공의 격투' + "pt-br": "Embate do Tempo e Espaço", + ko: "시공의 격투", }, serie: serie, cardCount: { - official: 140 + official: 140, }, boosters: { palkia: { name: { - en: 'Palkia' - } + de: "Palkia", + en: "Palkia", + fr: "Palkia", + es: "Palkia", + it: "Palkia", + "pt-br": "Palkia", + ko: "펄기아", + }, }, dialga: { name: { - en: 'Dialga' - } - } + de: "Dialga", + en: "Dialga", + fr: "Dialga", + es: "Dialga", + it: "Dialga", + "pt-br": "Dialga", + ko: "디아루가", + }, + }, }, - releaseDate: "2025-01-30" -} + releaseDate: "2025-01-30", +}; -export default set +export default set;