From 884d4434b9a42d128fd94f99e16a8d93f8c7c19d Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Sun, 18 Aug 2024 18:59:13 +0200 Subject: [PATCH 01/84] Form names are now localized when catching a pokemon (and probably hatching a egg since its the same dialogue) --- src/ui/pokemon-info-container.ts | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/src/ui/pokemon-info-container.ts b/src/ui/pokemon-info-container.ts index edb85ecff7a..cf910499d06 100644 --- a/src/ui/pokemon-info-container.ts +++ b/src/ui/pokemon-info-container.ts @@ -12,6 +12,7 @@ import ConfirmUiHandler from "./confirm-ui-handler"; import { StatsContainer } from "./stats-container"; import { TextStyle, addBBCodeTextObject, addTextObject, getTextColor } from "./text"; import { addWindow } from "./ui-theme"; +import {Species} from "#enums/species"; interface LanguageSetting { infoContainerTextSize: string; @@ -226,7 +227,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonGenderText.setVisible(false); } - if (pokemon.species.forms?.[pokemon.formIndex]?.formName) { + if (pokemon.species.forms?.[pokemon.formIndex]?.formName && pokemon.species.forms?.[pokemon.formIndex]?.formName !== "Normal") { this.pokemonFormLabelText.setVisible(true); this.pokemonFormText.setVisible(true); const newForm = BigInt(1 << pokemon.formIndex) * DexAttr.DEFAULT_FORM; @@ -239,15 +240,28 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonFormLabelText.setShadowColor(getTextColor(TextStyle.WINDOW, true, this.scene.uiTheme)); } - const formName = pokemon.species.forms?.[pokemon.formIndex]?.formName; - this.pokemonFormText.setText(formName.length > this.numCharsBeforeCutoff ? formName.substring(0, this.numCharsBeforeCutoff - 3) + "..." : formName); - if (formName.length > this.numCharsBeforeCutoff) { - this.pokemonFormText.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.pokemonFormText.width, this.pokemonFormText.height), Phaser.Geom.Rectangle.Contains); - this.pokemonFormText.on("pointerover", () => (this.scene as BattleScene).ui.showTooltip("", pokemon.species.forms?.[pokemon.formIndex]?.formName, true)); - this.pokemonFormText.on("pointerout", () => (this.scene as BattleScene).ui.hideTooltip()); - } else { - this.pokemonFormText.disableInteractive(); + const pokemonForm = (pokemon.species?.forms?.[pokemon.formIndex!]?.formKey) || ""; + let formName = ""; + if (pokemonForm !== "") { + const formText = Utils.capitalizeString(pokemonForm, "-", false, false); // TODO: is the bang correct? + + const speciesName = Utils.capitalizeString(Species[pokemon.species.getRootSpeciesId()], "_", true, false); + if (pokemon.species.speciesId === Species.ARCEUS) { + formName = i18next.t(`pokemonInfo:Type.${formText?.toUpperCase()}`); + } else { + formName = formText ? i18next.t(`pokemonForm:${speciesName}${formText}`) : ""; + } + + this.pokemonFormText.setText(formName.length > this.numCharsBeforeCutoff ? formName.substring(0, this.numCharsBeforeCutoff - 3) + "..." : formName); + if (formName.length > this.numCharsBeforeCutoff) { + this.pokemonFormText.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.pokemonFormText.width, this.pokemonFormText.height), Phaser.Geom.Rectangle.Contains); + this.pokemonFormText.on("pointerover", () => (this.scene as BattleScene).ui.showTooltip("", formName, true)); + this.pokemonFormText.on("pointerout", () => (this.scene as BattleScene).ui.hideTooltip()); + } else { + this.pokemonFormText.disableInteractive(); + } } + } else { this.pokemonFormLabelText.setVisible(false); this.pokemonFormText.setVisible(false); From c31d849f5a0348078e431c71dc92b954b1342733 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Sun, 18 Aug 2024 19:12:29 +0200 Subject: [PATCH 02/84] Update src/ui/pokemon-info-container.ts --- src/ui/pokemon-info-container.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ui/pokemon-info-container.ts b/src/ui/pokemon-info-container.ts index cf910499d06..b289b51bc04 100644 --- a/src/ui/pokemon-info-container.ts +++ b/src/ui/pokemon-info-container.ts @@ -261,7 +261,6 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonFormText.disableInteractive(); } } - } else { this.pokemonFormLabelText.setVisible(false); this.pokemonFormText.setVisible(false); From 8b3a5ce6ae8fa8403a3bdd7ad0fe8a5478a6c8ff Mon Sep 17 00:00:00 2001 From: Lugiad Date: Tue, 10 Sep 2024 14:24:15 +0200 Subject: [PATCH 03/84] Update src/ui/pokemon-info-container.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/ui/pokemon-info-container.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/pokemon-info-container.ts b/src/ui/pokemon-info-container.ts index 9a14a4fecb8..648e342d650 100644 --- a/src/ui/pokemon-info-container.ts +++ b/src/ui/pokemon-info-container.ts @@ -12,7 +12,7 @@ import ConfirmUiHandler from "./confirm-ui-handler"; import { StatsContainer } from "./stats-container"; import { TextStyle, addBBCodeTextObject, addTextObject, getTextColor } from "./text"; import { addWindow } from "./ui-theme"; -import {Species} from "#enums/species"; +import { Species } from "#enums/species"; interface LanguageSetting { infoContainerTextSize: string; From dab99d551e3bd620f23d98be8f2225c9c43008cf Mon Sep 17 00:00:00 2001 From: Lugiad Date: Tue, 10 Sep 2024 14:24:30 +0200 Subject: [PATCH 04/84] Update src/ui/pokemon-info-container.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/ui/pokemon-info-container.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/pokemon-info-container.ts b/src/ui/pokemon-info-container.ts index 648e342d650..ffdd8f6cdbc 100644 --- a/src/ui/pokemon-info-container.ts +++ b/src/ui/pokemon-info-container.ts @@ -251,7 +251,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { const pokemonForm = (pokemon.species?.forms?.[pokemon.formIndex!]?.formKey) || ""; let formName = ""; if (pokemonForm !== "") { - const formText = Utils.capitalizeString(pokemonForm, "-", false, false); // TODO: is the bang correct? + const formText = Utils.capitalizeString(pokemonForm, "-", false, false); const speciesName = Utils.capitalizeString(Species[pokemon.species.getRootSpeciesId()], "_", true, false); if (pokemon.species.speciesId === Species.ARCEUS) { From 5c1c0d1a2103d32973609cd3db4c055ef4e18148 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Tue, 10 Sep 2024 14:33:07 +0200 Subject: [PATCH 05/84] Update pokemon-info-container.ts --- src/ui/pokemon-info-container.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/pokemon-info-container.ts b/src/ui/pokemon-info-container.ts index ffdd8f6cdbc..371bf44759e 100644 --- a/src/ui/pokemon-info-container.ts +++ b/src/ui/pokemon-info-container.ts @@ -235,7 +235,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonGenderText.setVisible(false); } - if (pokemon.species.forms?.[pokemon.formIndex]?.formName && pokemon.species.forms?.[pokemon.formIndex]?.formName !== "Normal") { + if (pokemon.species.forms?.[pokemon.formIndex]?.formName) { this.pokemonFormLabelText.setVisible(true); this.pokemonFormText.setVisible(true); const newForm = BigInt(1 << pokemon.formIndex) * DexAttr.DEFAULT_FORM; From 65f6549c71817a4fe08b1cd189dd8dfddad93006 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Tue, 17 Sep 2024 17:43:41 +0200 Subject: [PATCH 06/84] Update pokemon-info-container.ts --- src/ui/pokemon-info-container.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/pokemon-info-container.ts b/src/ui/pokemon-info-container.ts index 371bf44759e..ffdd8f6cdbc 100644 --- a/src/ui/pokemon-info-container.ts +++ b/src/ui/pokemon-info-container.ts @@ -235,7 +235,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonGenderText.setVisible(false); } - if (pokemon.species.forms?.[pokemon.formIndex]?.formName) { + if (pokemon.species.forms?.[pokemon.formIndex]?.formName && pokemon.species.forms?.[pokemon.formIndex]?.formName !== "Normal") { this.pokemonFormLabelText.setVisible(true); this.pokemonFormText.setVisible(true); const newForm = BigInt(1 << pokemon.formIndex) * DexAttr.DEFAULT_FORM; From 9aeb22bfae9b81ff2a0fc69d82ccd342bf49f4a7 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Tue, 17 Sep 2024 20:11:22 +0200 Subject: [PATCH 07/84] Update pokemon-form.json --- src/locales/fr/pokemon-form.json | 92 +++++++++++++++++++++++++++++++- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/src/locales/fr/pokemon-form.json b/src/locales/fr/pokemon-form.json index 44f2bcecf2c..45ab67dcb1f 100644 --- a/src/locales/fr/pokemon-form.json +++ b/src/locales/fr/pokemon-form.json @@ -40,9 +40,14 @@ "castformRainy": "Eau de Pluie", "castformSnowy": "Blizzard", "deoxysNormal": "Normal", + "deoxysAttack": "Attaque", + "deoxysDefense": "Défense", + "deoxysSpeed": "Vitesse", "burmyPlant": "Plante", "burmySandy": "Sable", "burmyTrash": "Déchet", + "cheribiOvercast": "Couvert", + "cheribiSunshine": "Ensoleillé", "shellosEast": "Orient", "shellosWest": "Occident", "rotomHeat": "Chaleur", @@ -50,21 +55,36 @@ "rotomFrost": "Froid", "rotomFan": "Hélice", "rotomMow": "Tonte", + "dialgaOrigin": "Originel", + "palkiaOrigin": "Originel", "giratinaAltered": "Alternatif", + "giratinaOrigin": "Originel", "shayminLand": "Terrestre", + "shayminSky": "Céleste", "basculinRedStriped": "Motif Rouge", "basculinBlueStriped": "Motif Bleu", "basculinWhiteStriped": "Motif Blanc", + "darumakaZen": "Zen", "deerlingSpring": "Printemps", "deerlingSummer": "Été", "deerlingAutumn": "Automne", "deerlingWinter": "Hiver", "tornadusIncarnate": "Avatar", + "tornadusTherian": "Totémique", "thundurusIncarnate": "Avatar", + "thundurusTherian": "Totémique", "landorusIncarnate": "Avatar", + "landorusTherian": "Totémique", + "kyuremBlack": "Noir", + "kyuremWhite": "Blanc", "keldeoOrdinary": "Normal", + "keldeoResolute": "Décidé", "meloettaAria": "Chant", "meloettaPirouette": "Danse", + "genesectShock": "Module Choc", + "genesectBurn": "Module Pyro", + "genesectChill": "Module Cryo", + "genesectDouse": "Module Aqua", "froakieBattleBond": "Synergie", "scatterbugMeadow": "Floraison", "scatterbugIcySnow": "Blizzard", @@ -100,6 +120,10 @@ "furfrouLaReine": "Reine", "furfrouKabuki": "Kabuki", "furfrouPharaoh": "Pharaon", + "espurrMale": "Mâle", + "espurrFemale": "Femelle", + "honedgeShiled": "Parade", + "honedgeBlade": "Assaut", "pumpkabooSmall": "Mini", "pumpkabooLarge": "Maxi", "pumpkabooSuper": "Ultra", @@ -109,12 +133,35 @@ "zygarde10": "Forme 10%", "zygarde50Pc": "Rassemblement Forme 50%", "zygarde10Pc": "Rassemblement Forme 10%", + "hoopaUnbound": "Déchainé", "zygardeComplete": "Parfait", "oricorioBaile": "Flamenco", "oricorioPompom": "Pom-Pom", "oricorioPau": "Hula", "oricorioSensu": "Buyō", "rockruffOwnTempo": "Tempo Perso", + "rockruffMidday": "Diurne", + "rockruffMidnight": "Nocturne", + "rockruffMidnight": "Crépusculaire", + "wishiwashiSchool": "Banc", + "typeNullNormal": "Type: Normal", + "typeNullFighting": "Type: Combat", + "typeNullFlying": "Type: Vol", + "typeNullPoison": "Type: Poison", + "typeNullGround": "Type: Sol", + "typeNullRock": "Type: Roche", + "typeNullBug": "Type: Insecte", + "typeNullGhost": "Type: Spectre", + "typeNullSteel": "Type: Acier", + "typeNullFire": "Type: Feu", + "typeNullWater": "Type: Eau", + "typeNullGrass": "Type: Plante", + "typeNullElectric": "Type: Électrik", + "typeNullPsychic": "Type: Psy", + "typeNullIce": "Type: Glace", + "typeNullDragon": "Type: Dragon", + "typeNullDark": "Type: Ténèbres", + "typeNullFairy": "Type: Fée", "miniorRedMeteor": "Météore Rouge", "miniorOrangeMeteor": "Météore Orange", "miniorYellowMeteor": "Météore Jaune", @@ -131,25 +178,55 @@ "miniorViolet": "Violet", "mimikyuDisguised": "Déguisé", "mimikyuBusted": "Démasqué", + "necrozmaDuskMane": "Crinière du Couchant", + "necrozmaDawnWings": "Ailes de l’Aurore", + "necrozmaUltra": "Ultra", "magearnaOriginal": "Couleur du Passé", "marshadowZenith": "Zénith", "sinisteaPhony": "Contrefaçon", "sinisteaAntique": "Authentique", + "milceryVanillaCream": "Lait Vanille", + "milceryRubyCream": "Lait Ruby", + "milceryMatchaCream": "Lait Matcha", + "milceryMintCream": "Lait Menthe", + "milceryLemonCream": "Lait Citron", + "milcerySaltedCream": "Lait Salé", + "milceryRubySwirl": "Mélange Ruby", + "milceryCaramelSwirl": "Mélange Caramel", + "milceryRainbowSwirl": "Mélange Tricolore", "eiscueNoIce": "Tête Dégel", "indeedeeMale": "Mâle", "indeedeeFemale": "Femelle", "morpekoFullBelly": "Rassasié", + "morpekoHangry": "Affamé", "zacianHeroOfManyBattles": "Héros Aguerri", + "zacianCrowned": "Épée Suprême", "zamazentaHeroOfManyBattles": "Héros Aguerri", + "zamazentaCrowned": "Bouclier Suprême", + "kubfuSingleStrike": "Poing Final", + "kubfuRapidStrike": "Mille Poings", "zarudeDada": "Papa", + "calyrexIce": "Cavalier du Froid", + "calyrexShadow": "Cavalier d’Effroi", + "basculinMale": "Mâle", + "basculinFemale": "Femelle", "enamorusIncarnate": "Avatar", + "enamorusTherian": "Totémique", + "lechonkMale": "Mâle", + "lechonkFemale": "Femelle", + "tandemausFour": "Famille de Quatre", + "tandemausThree": "Famille de Trois", "squawkabillyGreenPlumage": "Plumage Vert", "squawkabillyBluePlumage": "Plumage Bleu", "squawkabillyYellowPlumage": "Plumage Jaune", "squawkabillyWhitePlumage": "Plumage Blanc", + "finizenZero": "Ordinaire", + "finizenZero": "Super", "tatsugiriCurly": "Courbé", "tatsugiriDroopy": "Affalé", "tatsugiriStretchy": "Raide", + "dunsparceTwo": "Double", + "dunsparceThree": "Triple", "gimmighoulChest": "Coffre", "gimmighoulRoaming": "Marche", "koraidonApexBuild": "Final", @@ -164,7 +241,20 @@ "miraidonGlideMode": "Aérien", "poltchageistCounterfeit": "Imitation", "poltchageistArtisan": "Onéreux", + "poltchageistUnremarkable": "Médiocre", + "poltchageistMasterpiece": "Exceptionnelle", + "ogerponTealMaskTera": "Masque Turquoise", + "ogerponTealMask": "Masque Turquoise Téracristal", + "ogerponWellspringMask": "Masque du Puits", + "ogerponWellspringMaskTera": "Masque du Puits Téracristal", + "ogerponHearthflameMask": "Masque du Fourneau", + "ogerponHearthflameMaskTera": "Masque du Fourneau Téracristal", + "ogerponCornerstoneMask": "Masque de la Pierre", + "ogerponCornerstoneMaskTera": "Masque de la Pierre Téracristal", + "terpagosTerastal": "Téracristal", + "terpagosStellar": "Stellaire", + "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Combatif", "paldeaTaurosBlaze": "Flamboyant", "paldeaTaurosAqua": "Aquatique" -} \ No newline at end of file +} From bd13ae542f120ff17191df109e9c721cc5638208 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Tue, 17 Sep 2024 20:12:12 +0200 Subject: [PATCH 08/84] Update pokemon-form.json --- src/locales/en/pokemon-form.json | 92 +++++++++++++++++++++++++++++++- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/src/locales/en/pokemon-form.json b/src/locales/en/pokemon-form.json index ea7e0f60c90..e65fccf5ef4 100644 --- a/src/locales/en/pokemon-form.json +++ b/src/locales/en/pokemon-form.json @@ -40,9 +40,14 @@ "castformRainy": "Rainy", "castformSnowy": "Snowy", "deoxysNormal": "Normal", + "deoxysAttack": "Attack", + "deoxysDefense": "Defense", + "deoxysSpeed": "Speed", "burmyPlant": "Plant", "burmySandy": "Sandy", "burmyTrash": "Trash", + "cheribiOvercast": "Overcast", + "cheribiSunshine": "Sunshine", "shellosEast": "East", "shellosWest": "West", "rotomHeat": "Heat", @@ -50,21 +55,36 @@ "rotomFrost": "Frost", "rotomFan": "Fan", "rotomMow": "Mow", + "dialgaOrigin": "Origin", + "palkiaOrigin": "Origin", "giratinaAltered": "Altered", + "giratinaOrigin": "Origin", "shayminLand": "Land", + "shayminSky": "Sky", "basculinRedStriped": "Red Striped", "basculinBlueStriped": "Blue Striped", "basculinWhiteStriped": "White Striped", + "darumakaZen": "Zen", "deerlingSpring": "Spring", "deerlingSummer": "Summer", "deerlingAutumn": "Autumn", "deerlingWinter": "Winter", "tornadusIncarnate": "Incarnate", + "tornadusTherian": "Therian", "thundurusIncarnate": "Incarnate", + "thundurusTherian": "Therian", "landorusIncarnate": "Incarnate", + "landorusTherian": "Therian", + "kyuremBlack": "Black", + "kyuremWhite": "White", "keldeoOrdinary": "Ordinary", + "keldeoResolute": "Resolute", "meloettaAria": "Aria", "meloettaPirouette": "Pirouette", + "genesectShock": "Shock Drive", + "genesectBurn": "Burn Drive", + "genesectChill": "Chill Drive", + "genesectDouse": "Douse Drive", "froakieBattleBond": "Battle Bond", "scatterbugMeadow": "Meadow", "scatterbugIcySnow": "Icy Snow", @@ -100,6 +120,10 @@ "furfrouLaReine": "La Reine", "furfrouKabuki": "Kabuki", "furfrouPharaoh": "Pharaoh", + "espurrMale": "Male", + "espurrFemale": "Female", + "honedgeShiled": "Shield", + "honedgeBlade": "Blade", "pumpkabooSmall": "Small", "pumpkabooLarge": "Large", "pumpkabooSuper": "Super", @@ -110,11 +134,34 @@ "zygarde50Pc": "50% Forme Power Construct", "zygarde10Pc": "10% Forme Power Construct", "zygardeComplete": "Complete Forme", + "hoopaUnbound": "Unbound", "oricorioBaile": "Baile", "oricorioPompom": "Pom-Pom", "oricorioPau": "Pau", "oricorioSensu": "Sensu", "rockruffOwnTempo": "Own Tempo", + "rockruffMidday": "Midday", + "rockruffMidnight": "Midnight", + "rockruffMidnight": "Dusk", + "wishiwashiSchool": "School", + "typeNullNormal": "Type: Normal", + "typeNullFighting": "Type: Fighting", + "typeNullFlying": "Type: Flying", + "typeNullPoison": "Type: Poison", + "typeNullGround": "Type: Ground", + "typeNullRock": "Type: Rock", + "typeNullBug": "Type: Bug", + "typeNullGhost": "Type: Ghost", + "typeNullSteel": "Type: Steel", + "typeNullFire": "Type: Fire", + "typeNullWater": "Type: Water", + "typeNullGrass": "Type: Grass", + "typeNullElectric": "Type: Electric", + "typeNullPsychic": "Type: Psychic", + "typeNullIce": "Type: Ice", + "typeNullDragon": "Type: Dragon", + "typeNullDark": "Type: Dark", + "typeNullFairy": "Type: Fairy", "miniorRedMeteor": "Red Meteor", "miniorOrangeMeteor": "Orange Meteor", "miniorYellowMeteor": "Yellow Meteor", @@ -131,25 +178,55 @@ "miniorViolet": "Violet", "mimikyuDisguised": "Disguised", "mimikyuBusted": "Busted", + "necrozmaDuskMane": "Dusk Mane", + "necrozmaDawnWings": "Dawn Wings", + "necrozmaUltra": "Ultra", "magearnaOriginal": "Original", "marshadowZenith": "Zenith", "sinisteaPhony": "Phony", "sinisteaAntique": "Antique", + "milceryVanillaCream": "Vanilla Cream", + "milceryRubyCream": "Ruby Cream", + "milceryMatchaCream": "Matcha Cream", + "milceryMintCream": "Mint Cream", + "milceryLemonCream": "Lemon Cream", + "milcerySaltedCream": "Salted Cream", + "milceryRubySwirl": "Ruby Swirl", + "milceryCaramelSwirl": "Caramel Swirl", + "milceryRainbowSwirl": "Rainbow Swirl", "eiscueNoIce": "No Ice", "indeedeeMale": "Male", "indeedeeFemale": "Female", "morpekoFullBelly": "Full Belly", + "morpekoHangry": "Hangry", "zacianHeroOfManyBattles": "Hero Of Many Battles", + "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "Hero Of Many Battles", + "zamazentaCrowned": "Crowned", + "kubfuSingleStrike": "Single Strike", + "kubfuRapidStrike": "Rapid Strike", "zarudeDada": "Dada", + "calyrexIce": "Ice Rider", + "calyrexShadow": "Shadow Rider", + "basculinMale": "Male", + "basculinFemale": "Female", "enamorusIncarnate": "Incarnate", + "enamorusTherian": "Therian", + "lechonkMale": "Male", + "lechonkFemale": "Female", + "tandemausFour": "Family of Four", + "tandemausThree": "Family of Three", "squawkabillyGreenPlumage": "Green Plumage", "squawkabillyBluePlumage": "Blue Plumage", "squawkabillyYellowPlumage": "Yellow Plumage", "squawkabillyWhitePlumage": "White Plumage", + "finizenZero": "Zero", + "finizenZero": "Hero", "tatsugiriCurly": "Curly", "tatsugiriDroopy": "Droopy", "tatsugiriStretchy": "Stretchy", + "dunsparceTwo": "Two-Segment", + "dunsparceThree": "Three-Segment", "gimmighoulChest": "Chest", "gimmighoulRoaming": "Roaming", "koraidonApexBuild": "Apex Build", @@ -164,7 +241,20 @@ "miraidonGlideMode": "Glide Mode", "poltchageistCounterfeit": "Counterfeit", "poltchageistArtisan": "Artisan", + "poltchageistUnremarkable": "Unremarkable", + "poltchageistMasterpiece": "Masterpiece", + "ogerponTealMask": "Teal Mask", + "ogerponTealMaskTera": "Teal Mask Terastallized", + "ogerponWellspringMask": "Wellspring Mask", + "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", + "ogerponHearthflameMask": "Hearthflame Mask", + "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", + "ogerponCornerstoneMask": "Cornerstone Mask", + "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagosTerastal": "Terastal", + "terpagosStellar": "Stellar", + "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Combat", "paldeaTaurosBlaze": "Blaze", "paldeaTaurosAqua": "Aqua" -} \ No newline at end of file +} From a5e27bc3a7258ab957b76d982da79b54a449e8fe Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 02:01:43 +0200 Subject: [PATCH 09/84] Update pokemon-form.json --- src/locales/zh_TW/pokemon-form.json | 90 +++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/src/locales/zh_TW/pokemon-form.json b/src/locales/zh_TW/pokemon-form.json index f1fb4dff599..003d6cdd331 100644 --- a/src/locales/zh_TW/pokemon-form.json +++ b/src/locales/zh_TW/pokemon-form.json @@ -40,9 +40,14 @@ "castformRainy": "雨天", "castformSnowy": "雪天", "deoxysNormal": "普通", + "deoxysAttack": "Attack", + "deoxysDefense": "Defense", + "deoxysSpeed": "Speed", "burmyPlant": "草木蓑衣", "burmySandy": "砂土蓑衣", "burmyTrash": "垃圾蓑衣", + "cheribiOvercast": "Overcast", + "cheribiSunshine": "Sunshine", "shellosEast": "東海", "shellosWest": "西海", "rotomHeat": "加熱", @@ -50,21 +55,36 @@ "rotomFrost": "結冰", "rotomFan": "旋轉", "rotomMow": "切割", + "dialgaOrigin": "Origin", + "palkiaOrigin": "Origin", "giratinaAltered": "別種", + "giratinaOrigin": "Origin", "shayminLand": "陸上", + "shayminSky": "Sky", "basculinRedStriped": "紅條紋", "basculinBlueStriped": "藍條紋", "basculinWhiteStriped": "白條紋", + "darumakaZen": "Zen", "deerlingSpring": "春天", "deerlingSummer": "夏天", "deerlingAutumn": "秋天", "deerlingWinter": "冬天", "tornadusIncarnate": "化身", + "tornadusTherian": "Therian", "thundurusIncarnate": "化身", + "thundurusTherian": "Therian", "landorusIncarnate": "化身", + "landorusTherian": "Therian", + "kyuremBlack": "Black", + "kyuremWhite": "White", "keldeoOrdinary": "通常", + "keldeoResolute": "Resolute", "meloettaAria": "歌聲", "meloettaPirouette": "舞步形態", + "genesectShock": "Shock Drive", + "genesectBurn": "Burn Drive", + "genesectChill": "Chill Drive", + "genesectDouse": "Douse Drive", "froakieBattleBond": "牽絆變身", "scatterbugMeadow": "花園花紋", "scatterbugIcySnow": "冰雪花紋", @@ -100,6 +120,10 @@ "furfrouLaReine": "女王造型", "furfrouKabuki": "歌舞伎造型", "furfrouPharaoh": "國王造型", + "espurrMale": "Male", + "espurrFemale": "Female", + "honedgeShiled": "Shield", + "honedgeBlade": "Blade", "pumpkabooSmall": "小尺寸", "pumpkabooLarge": "大尺寸", "pumpkabooSuper": "特大尺寸", @@ -110,11 +134,34 @@ "zygarde50Pc": "50%形態 群聚變形", "zygarde10Pc": "10%形態 群聚變形", "zygardeComplete": "完全體形態", + "hoopaUnbound": "Unbound", "oricorioBaile": "熱辣熱辣風格", "oricorioPompom": "啪滋啪滋風格", "oricorioPau": "呼拉呼拉風格", "oricorioSensu": "輕盈輕盈風格", "rockruffOwnTempo": "特殊岩狗狗", + "rockruffMidday": "Midday", + "rockruffMidnight": "Midnight", + "rockruffMidnight": "Dusk", + "wishiwashiSchool": "School", + "typeNullNormal": "Type: Normal", + "typeNullFighting": "Type: Fighting", + "typeNullFlying": "Type: Flying", + "typeNullPoison": "Type: Poison", + "typeNullGround": "Type: Ground", + "typeNullRock": "Type: Rock", + "typeNullBug": "Type: Bug", + "typeNullGhost": "Type: Ghost", + "typeNullSteel": "Type: Steel", + "typeNullFire": "Type: Fire", + "typeNullWater": "Type: Water", + "typeNullGrass": "Type: Grass", + "typeNullElectric": "Type: Electric", + "typeNullPsychic": "Type: Psychic", + "typeNullIce": "Type: Ice", + "typeNullDragon": "Type: Dragon", + "typeNullDark": "Type: Dark", + "typeNullFairy": "Type: Fairy", "miniorRedMeteor": "紅色核心", "miniorOrangeMeteor": "橙色核心", "miniorYellowMeteor": "黃色核心", @@ -131,25 +178,55 @@ "miniorViolet": "紫色", "mimikyuDisguised": "化形", "mimikyuBusted": "現形", + "necrozmaDuskMane": "Dusk Mane", + "necrozmaDawnWings": "Dawn Wings", + "necrozmaUltra": "Ultra", "magearnaOriginal": "500年前的顔色", "marshadowZenith": "全力", "sinisteaPhony": "赝品", "sinisteaAntique": "真品", + "milceryVanillaCream": "Vanilla Cream", + "milceryRubyCream": "Ruby Cream", + "milceryMatchaCream": "Matcha Cream", + "milceryMintCream": "Mint Cream", + "milceryLemonCream": "Lemon Cream", + "milcerySaltedCream": "Salted Cream", + "milceryRubySwirl": "Ruby Swirl", + "milceryCaramelSwirl": "Caramel Swirl", + "milceryRainbowSwirl": "Rainbow Swirl", "eiscueNoIce": "解凍頭", "indeedeeMale": "雄性", "indeedeeFemale": "雌性", "morpekoFullBelly": "滿腹花紋", + "morpekoHangry": "Hangry", "zacianHeroOfManyBattles": "百戰勇者", + "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "百戰勇者", + "zamazentaCrowned": "Crowned", + "kubfuSingleStrike": "Single Strike", + "kubfuRapidStrike": "Rapid Strike", "zarudeDada": "老爹", + "calyrexIce": "Ice Rider", + "calyrexShadow": "Shadow Rider", + "basculinMale": "Male", + "basculinFemale": "Female", "enamorusIncarnate": "化身", + "enamorusTherian": "Therian", + "lechonkMale": "Male", + "lechonkFemale": "Female", + "tandemausFour": "Family of Four", + "tandemausThree": "Family of Three", "squawkabillyGreenPlumage": "綠羽毛", "squawkabillyBluePlumage": "藍羽毛", "squawkabillyYellowPlumage": "黃羽毛", "squawkabillyWhitePlumage": "白羽毛", + "finizenZero": "Zero", + "finizenZero": "Hero", "tatsugiriCurly": "上弓姿勢", "tatsugiriDroopy": "下垂姿勢", "tatsugiriStretchy": "平挺姿勢", + "dunsparceTwo": "Two-Segment", + "dunsparceThree": "Three-Segment", "gimmighoulChest": "寶箱形態", "gimmighoulRoaming": "徒步形態", "koraidonApexBuild": "頂尖形態", @@ -164,6 +241,19 @@ "miraidonGlideMode":"滑翔模式", "poltchageistCounterfeit": "冒牌貨", "poltchageistArtisan": "高檔貨", + "poltchageistUnremarkable": "Unremarkable", + "poltchageistMasterpiece": "Masterpiece", + "ogerponTealMask": "Teal Mask", + "ogerponTealMaskTera": "Teal Mask Terastallized", + "ogerponWellspringMask": "Wellspring Mask", + "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", + "ogerponHearthflameMask": "Hearthflame Mask", + "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", + "ogerponCornerstoneMask": "Cornerstone Mask", + "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagosTerastal": "Terastal", + "terpagosStellar": "Stellar", + "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "鬥戰種", "paldeaTaurosBlaze": "火熾種", "paldeaTaurosAqua": "水瀾種" From 36e14196de027be669ba38bd9fb6c2838780b4fe Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 02:01:47 +0200 Subject: [PATCH 10/84] Update pokemon-form.json --- src/locales/zh_CN/pokemon-form.json | 90 +++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/src/locales/zh_CN/pokemon-form.json b/src/locales/zh_CN/pokemon-form.json index e77f9bdb9fa..78d4669d30f 100644 --- a/src/locales/zh_CN/pokemon-form.json +++ b/src/locales/zh_CN/pokemon-form.json @@ -40,9 +40,14 @@ "castformRainy": "雨天", "castformSnowy": "雪天", "deoxysNormal": "普通", + "deoxysAttack": "Attack", + "deoxysDefense": "Defense", + "deoxysSpeed": "Speed", "burmyPlant": "草木蓑衣", "burmySandy": "砂土蓑衣", "burmyTrash": "垃圾蓑衣", + "cheribiOvercast": "Overcast", + "cheribiSunshine": "Sunshine", "shellosEast": "东海", "shellosWest": "西海", "rotomHeat": "加热", @@ -50,21 +55,36 @@ "rotomFrost": "结冰", "rotomFan": "旋转", "rotomMow": "切割", + "dialgaOrigin": "Origin", + "palkiaOrigin": "Origin", "giratinaAltered": "别种", + "giratinaOrigin": "Origin", "shayminLand": "陆上", + "shayminSky": "Sky", "basculinRedStriped": "红条纹", "basculinBlueStriped": "蓝条纹", "basculinWhiteStriped": "白条纹", + "darumakaZen": "Zen", "deerlingSpring": "春天", "deerlingSummer": "夏天", "deerlingAutumn": "秋天", "deerlingWinter": "冬天", "tornadusIncarnate": "化身", + "tornadusTherian": "Therian", "thundurusIncarnate": "化身", + "thundurusTherian": "Therian", "landorusIncarnate": "化身", + "landorusTherian": "Therian", + "kyuremBlack": "Black", + "kyuremWhite": "White", "keldeoOrdinary": "通常", + "keldeoResolute": "Resolute", "meloettaAria": "歌声", "meloettaPirouette": "舞步形态", + "genesectShock": "Shock Drive", + "genesectBurn": "Burn Drive", + "genesectChill": "Chill Drive", + "genesectDouse": "Douse Drive", "froakieBattleBond": "牵绊变身", "scatterbugMeadow": "花园花纹", "scatterbugIcySnow": "冰雪花纹", @@ -100,6 +120,10 @@ "furfrouLaReine": "女王造型", "furfrouKabuki": "歌舞伎造型", "furfrouPharaoh": "国王造型", + "espurrMale": "Male", + "espurrFemale": "Female", + "honedgeShiled": "Shield", + "honedgeBlade": "Blade", "pumpkabooSmall": "小尺寸", "pumpkabooLarge": "大尺寸", "pumpkabooSuper": "特大尺寸", @@ -110,11 +134,34 @@ "zygarde50Pc": "50%形态 群聚变形", "zygarde10Pc": "10%形态 群聚变形", "zygardeComplete": "完全体形态", + "hoopaUnbound": "Unbound", "oricorioBaile": "热辣热辣风格", "oricorioPompom": "啪滋啪滋风格", "oricorioPau": "呼拉呼拉风格", "oricorioSensu": "轻盈轻盈风格", "rockruffOwnTempo": "特殊岩狗狗", + "rockruffMidday": "Midday", + "rockruffMidnight": "Midnight", + "rockruffMidnight": "Dusk", + "wishiwashiSchool": "School", + "typeNullNormal": "Type: Normal", + "typeNullFighting": "Type: Fighting", + "typeNullFlying": "Type: Flying", + "typeNullPoison": "Type: Poison", + "typeNullGround": "Type: Ground", + "typeNullRock": "Type: Rock", + "typeNullBug": "Type: Bug", + "typeNullGhost": "Type: Ghost", + "typeNullSteel": "Type: Steel", + "typeNullFire": "Type: Fire", + "typeNullWater": "Type: Water", + "typeNullGrass": "Type: Grass", + "typeNullElectric": "Type: Electric", + "typeNullPsychic": "Type: Psychic", + "typeNullIce": "Type: Ice", + "typeNullDragon": "Type: Dragon", + "typeNullDark": "Type: Dark", + "typeNullFairy": "Type: Fairy", "miniorRedMeteor": "红色核心", "miniorOrangeMeteor": "橙色核心", "miniorYellowMeteor": "黄色核心", @@ -131,25 +178,55 @@ "miniorViolet": "紫色", "mimikyuDisguised": "化形", "mimikyuBusted": "现形", + "necrozmaDuskMane": "Dusk Mane", + "necrozmaDawnWings": "Dawn Wings", + "necrozmaUltra": "Ultra", "magearnaOriginal": "500年前的颜色", "marshadowZenith": "全力", "sinisteaPhony": "赝品", "sinisteaAntique": "真品", + "milceryVanillaCream": "Vanilla Cream", + "milceryRubyCream": "Ruby Cream", + "milceryMatchaCream": "Matcha Cream", + "milceryMintCream": "Mint Cream", + "milceryLemonCream": "Lemon Cream", + "milcerySaltedCream": "Salted Cream", + "milceryRubySwirl": "Ruby Swirl", + "milceryCaramelSwirl": "Caramel Swirl", + "milceryRainbowSwirl": "Rainbow Swirl", "eiscueNoIce": "解冻头", "indeedeeMale": "雄性", "indeedeeFemale": "雌性", "morpekoFullBelly": "满腹花纹", + "morpekoHangry": "Hangry", "zacianHeroOfManyBattles": "百战勇者", + "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "百战勇者", + "zamazentaCrowned": "Crowned", + "kubfuSingleStrike": "Single Strike", + "kubfuRapidStrike": "Rapid Strike", "zarudeDada": "老爹", + "calyrexIce": "Ice Rider", + "calyrexShadow": "Shadow Rider", + "basculinMale": "Male", + "basculinFemale": "Female", "enamorusIncarnate": "化身", + "enamorusTherian": "Therian", + "lechonkMale": "Male", + "lechonkFemale": "Female", + "tandemausFour": "Family of Four", + "tandemausThree": "Family of Three", "squawkabillyGreenPlumage": "绿羽毛", "squawkabillyBluePlumage": "蓝羽毛", "squawkabillyYellowPlumage": "黄羽毛", "squawkabillyWhitePlumage": "白羽毛", + "finizenZero": "Zero", + "finizenZero": "Hero", "tatsugiriCurly": "上弓姿势", "tatsugiriDroopy": "下垂姿势", "tatsugiriStretchy": "平挺姿势", + "dunsparceTwo": "Two-Segment", + "dunsparceThree": "Three-Segment", "gimmighoulChest": "宝箱形态", "gimmighoulRoaming": "徒步形态", "koraidonApexBuild": "顶尖形态", @@ -164,6 +241,19 @@ "miraidonGlideMode": "滑翔模式", "poltchageistCounterfeit": "冒牌货", "poltchageistArtisan": "高档货", + "poltchageistUnremarkable": "Unremarkable", + "poltchageistMasterpiece": "Masterpiece", + "ogerponTealMask": "Teal Mask", + "ogerponTealMaskTera": "Teal Mask Terastallized", + "ogerponWellspringMask": "Wellspring Mask", + "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", + "ogerponHearthflameMask": "Hearthflame Mask", + "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", + "ogerponCornerstoneMask": "Cornerstone Mask", + "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagosTerastal": "Terastal", + "terpagosStellar": "Stellar", + "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "斗战种", "paldeaTaurosBlaze": "火炽种", "paldeaTaurosAqua": "水澜种" From b5a83b689e65f3d923c44708eb6011691c698160 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 02:01:51 +0200 Subject: [PATCH 11/84] Update pokemon-form.json --- src/locales/pt_BR/pokemon-form.json | 90 +++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/src/locales/pt_BR/pokemon-form.json b/src/locales/pt_BR/pokemon-form.json index aa8f32a5d36..0e03ae034d4 100644 --- a/src/locales/pt_BR/pokemon-form.json +++ b/src/locales/pt_BR/pokemon-form.json @@ -40,9 +40,14 @@ "castformRainy": "Chuvoso", "castformSnowy": "Nevado", "deoxysNormal": "Normal", + "deoxysAttack": "Attack", + "deoxysDefense": "Defense", + "deoxysSpeed": "Speed", "burmyPlant": "Vegetal", "burmySandy": "Arenoso", "burmyTrash": "Lixo", + "cheribiOvercast": "Overcast", + "cheribiSunshine": "Sunshine", "shellosEast": "Leste", "shellosWest": "Oeste", "rotomHeat": "Calor", @@ -50,21 +55,36 @@ "rotomFrost": "Congelante", "rotomFan": "Ventilador", "rotomMow": "Corte", + "dialgaOrigin": "Origin", + "palkiaOrigin": "Origin", "giratinaAltered": "Alterado", + "giratinaOrigin": "Origin", "shayminLand": "Terrestre", + "shayminSky": "Sky", "basculinRedStriped": "Listras Vermelhas", "basculinBlueStriped": "Listras Azuis", "basculinWhiteStriped": "Listras Brancas", + "darumakaZen": "Zen", "deerlingSpring": "Primavera", "deerlingSummer": "Verão", "deerlingAutumn": "Outono", "deerlingWinter": "Inverno", "tornadusIncarnate": "Materializado", + "tornadusTherian": "Therian", "thundurusIncarnate": "Materializado", + "thundurusTherian": "Therian", "landorusIncarnate": "Materializado", + "landorusTherian": "Therian", + "kyuremBlack": "Black", + "kyuremWhite": "White", "keldeoOrdinary": "Comum", + "keldeoResolute": "Resolute", "meloettaAria": "Ária", "meloettaPirouette": "Pirueta", + "genesectShock": "Shock Drive", + "genesectBurn": "Burn Drive", + "genesectChill": "Chill Drive", + "genesectDouse": "Douse Drive", "froakieBattleBond": "Vínculo de Batalha", "scatterbugMeadow": "Prado", "scatterbugIcySnow": "Neve Congelada", @@ -100,6 +120,10 @@ "furfrouLaReine": "Aristocrático", "furfrouKabuki": "Kabuki", "furfrouPharaoh": "Faraó", + "espurrMale": "Male", + "espurrFemale": "Female", + "honedgeShiled": "Shield", + "honedgeBlade": "Blade", "pumpkabooSmall": "Pequeno", "pumpkabooLarge": "Grande", "pumpkabooSuper": "Extragrande", @@ -110,11 +134,34 @@ "zygarde50Pc": "Forma 50% Agrupada", "zygarde10Pc": "Forma 10% Agrupada", "zygardeComplete": "Forma Completa", + "hoopaUnbound": "Unbound", "oricorioBaile": "Flamenco", "oricorioPompom": "Pompom", "oricorioPau": "Hula", "oricorioSensu": "Leque", "rockruffOwnTempo": "Próprio Tempo", + "rockruffMidday": "Midday", + "rockruffMidnight": "Midnight", + "rockruffMidnight": "Dusk", + "wishiwashiSchool": "School", + "typeNullNormal": "Type: Normal", + "typeNullFighting": "Type: Fighting", + "typeNullFlying": "Type: Flying", + "typeNullPoison": "Type: Poison", + "typeNullGround": "Type: Ground", + "typeNullRock": "Type: Rock", + "typeNullBug": "Type: Bug", + "typeNullGhost": "Type: Ghost", + "typeNullSteel": "Type: Steel", + "typeNullFire": "Type: Fire", + "typeNullWater": "Type: Water", + "typeNullGrass": "Type: Grass", + "typeNullElectric": "Type: Electric", + "typeNullPsychic": "Type: Psychic", + "typeNullIce": "Type: Ice", + "typeNullDragon": "Type: Dragon", + "typeNullDark": "Type: Dark", + "typeNullFairy": "Type: Fairy", "miniorRedMeteor": "Meteoro Vermelho", "miniorOrangeMeteor": "Meteoro Laranja", "miniorYellowMeteor": "Meteoro Amarelo", @@ -131,25 +178,55 @@ "miniorViolet": "Violeta", "mimikyuDisguised": "Disfarçado", "mimikyuBusted": "Descoberto", + "necrozmaDuskMane": "Dusk Mane", + "necrozmaDawnWings": "Dawn Wings", + "necrozmaUltra": "Ultra", "magearnaOriginal": "Original", "marshadowZenith": "Zênite", "sinisteaPhony": "Falsificado", "sinisteaAntique": "Autêntico", + "milceryVanillaCream": "Vanilla Cream", + "milceryRubyCream": "Ruby Cream", + "milceryMatchaCream": "Matcha Cream", + "milceryMintCream": "Mint Cream", + "milceryLemonCream": "Lemon Cream", + "milcerySaltedCream": "Salted Cream", + "milceryRubySwirl": "Ruby Swirl", + "milceryCaramelSwirl": "Caramel Swirl", + "milceryRainbowSwirl": "Rainbow Swirl", "eiscueNoIce": "Descongelado", "indeedeeMale": "Macho", "indeedeeFemale": "Fêmea", "morpekoFullBelly": "Saciado", + "morpekoHangry": "Hangry", "zacianHeroOfManyBattles": "Herói Veterano", + "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "Herói Veterano", + "zamazentaCrowned": "Crowned", + "kubfuSingleStrike": "Single Strike", + "kubfuRapidStrike": "Rapid Strike", "zarudeDada": "Papa", + "calyrexIce": "Ice Rider", + "calyrexShadow": "Shadow Rider", + "basculinMale": "Male", + "basculinFemale": "Female", "enamorusIncarnate": "Materializado", + "enamorusTherian": "Therian", + "lechonkMale": "Male", + "lechonkFemale": "Female", + "tandemausFour": "Family of Four", + "tandemausThree": "Family of Three", "squawkabillyGreenPlumage": "Plumas Verdes", "squawkabillyBluePlumage": "Plumas Azuis", "squawkabillyYellowPlumage": "Plumas Amarelas", "squawkabillyWhitePlumage": "Plumas Brancas", + "finizenZero": "Zero", + "finizenZero": "Hero", "tatsugiriCurly": "Curvado", "tatsugiriDroopy": "Caído", "tatsugiriStretchy": "Reto", + "dunsparceTwo": "Two-Segment", + "dunsparceThree": "Three-Segment", "gimmighoulChest": "Baú", "gimmighoulRoaming": "Perambulante", "koraidonApexBuild": "Forma Plena", @@ -164,6 +241,19 @@ "miraidonGlideMode": "Modo Aéreo", "poltchageistCounterfeit": "Imitação", "poltchageistArtisan": "Artesão", + "poltchageistUnremarkable": "Unremarkable", + "poltchageistMasterpiece": "Masterpiece", + "ogerponTealMask": "Teal Mask", + "ogerponTealMaskTera": "Teal Mask Terastallized", + "ogerponWellspringMask": "Wellspring Mask", + "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", + "ogerponHearthflameMask": "Hearthflame Mask", + "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", + "ogerponCornerstoneMask": "Cornerstone Mask", + "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagosTerastal": "Terastal", + "terpagosStellar": "Stellar", + "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Combate", "paldeaTaurosBlaze": "Chamas", "paldeaTaurosAqua": "Aquático" From e5180cc89a0e05da4cb27a3650b655d0fd302012 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 02:01:55 +0200 Subject: [PATCH 12/84] Update pokemon-form.json --- src/locales/ko/pokemon-form.json | 92 +++++++++++++++++++++++++++++++- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/src/locales/ko/pokemon-form.json b/src/locales/ko/pokemon-form.json index 885f9a9b891..3a6d863bc1b 100644 --- a/src/locales/ko/pokemon-form.json +++ b/src/locales/ko/pokemon-form.json @@ -40,9 +40,14 @@ "castformRainy": "빗방울의 모습", "castformSnowy": "설운의 모습", "deoxysNormal": "노말폼", + "deoxysAttack": "Attack", + "deoxysDefense": "Defense", + "deoxysSpeed": "Speed", "burmyPlant": "초목도롱", "burmySandy": "모래땅도롱", "burmyTrash": "슈레도롱", + "cheribiOvercast": "Overcast", + "cheribiSunshine": "Sunshine", "shellosEast": "동쪽바다의 모습", "shellosWest": "서쪽바다의 모습", "rotomHeat": "히트", @@ -50,21 +55,36 @@ "rotomFrost": "프로스트", "rotomFan": "스핀", "rotomMow": "커트", + "dialgaOrigin": "Origin", + "palkiaOrigin": "Origin", "giratinaAltered": "어나더폼", + "giratinaOrigin": "Origin", "shayminLand": "랜드폼", + "shayminSky": "Sky", "basculinRedStriped": "적색근의 모습", "basculinBlueStriped": "청색근의 모습", "basculinWhiteStriped": "백색근의 모습", + "darumakaZen": "Zen", "deerlingSpring": "봄의 모습", "deerlingSummer": "여름의 모습", "deerlingAutumn": "가을의 모습", "deerlingWinter": "겨울의 모습", "tornadusIncarnate": "화신폼", + "tornadusTherian": "Therian", "thundurusIncarnate": "화신폼", + "thundurusTherian": "Therian", "landorusIncarnate": "화신폼", + "landorusTherian": "Therian", + "kyuremBlack": "Black", + "kyuremWhite": "White", "keldeoOrdinary": "평상시 모습", + "keldeoResolute": "Resolute", "meloettaAria": "보이스폼", "meloettaPirouette": "스텝폼", + "genesectShock": "Shock Drive", + "genesectBurn": "Burn Drive", + "genesectChill": "Chill Drive", + "genesectDouse": "Douse Drive", "froakieBattleBond": "유대변화", "scatterbugMeadow": "화원의 모양", "scatterbugIcySnow": "빙설의 모양", @@ -100,6 +120,10 @@ "furfrouLaReine": "퀸컷", "furfrouKabuki": "가부키컷", "furfrouPharaoh": "킹덤컷", + "espurrMale": "Male", + "espurrFemale": "Female", + "honedgeShiled": "Shield", + "honedgeBlade": "Blade", "pumpkabooSmall": "작은 사이즈", "pumpkabooLarge": "큰 사이즈", "pumpkabooSuper": "특대 사이즈", @@ -110,11 +134,34 @@ "zygarde50Pc": "스웜체인지 50%폼", "zygarde10Pc": "스웜체인지 10%폼", "zygardeComplete": "퍼펙트폼", + "hoopaUnbound": "Unbound", "oricorioBaile": "이글이글스타일", "oricorioPompom": "파칙파칙스타일", "oricorioPau": "훌라훌라스타일", "oricorioSensu": "하늘하늘스타일", "rockruffOwnTempo": "마이페이스", + "rockruffMidday": "Midday", + "rockruffMidnight": "Midnight", + "rockruffMidnight": "Dusk", + "wishiwashiSchool": "School", + "typeNullNormal": "Type: Normal", + "typeNullFighting": "Type: Fighting", + "typeNullFlying": "Type: Flying", + "typeNullPoison": "Type: Poison", + "typeNullGround": "Type: Ground", + "typeNullRock": "Type: Rock", + "typeNullBug": "Type: Bug", + "typeNullGhost": "Type: Ghost", + "typeNullSteel": "Type: Steel", + "typeNullFire": "Type: Fire", + "typeNullWater": "Type: Water", + "typeNullGrass": "Type: Grass", + "typeNullElectric": "Type: Electric", + "typeNullPsychic": "Type: Psychic", + "typeNullIce": "Type: Ice", + "typeNullDragon": "Type: Dragon", + "typeNullDark": "Type: Dark", + "typeNullFairy": "Type: Fairy", "miniorRedMeteor": "유성의 모습(빨강)", "miniorOrangeMeteor": "유성의 모습(주황)", "miniorYellowMeteor": "유성의 모습(노랑)", @@ -131,25 +178,55 @@ "miniorViolet": "보라색 코어", "mimikyuDisguised": "둔갑한 모습", "mimikyuBusted": "들킨 모습", + "necrozmaDuskMane": "Dusk Mane", + "necrozmaDawnWings": "Dawn Wings", + "necrozmaUltra": "Ultra", "magearnaOriginal": "500년 전의 색", "marshadowZenith": "투지를 불태운 마샤도", "sinisteaPhony": "위작품", "sinisteaAntique": "진작품", + "milceryVanillaCream": "Vanilla Cream", + "milceryRubyCream": "Ruby Cream", + "milceryMatchaCream": "Matcha Cream", + "milceryMintCream": "Mint Cream", + "milceryLemonCream": "Lemon Cream", + "milcerySaltedCream": "Salted Cream", + "milceryRubySwirl": "Ruby Swirl", + "milceryCaramelSwirl": "Caramel Swirl", + "milceryRainbowSwirl": "Rainbow Swirl", "eiscueNoIce": "나이스페이스", "indeedeeMale": "수컷의 모습", "indeedeeFemale": "암컷의 모습", "morpekoFullBelly": "배부른 모양", + "morpekoHangry": "Hangry", "zacianHeroOfManyBattles": "역전의 용사", + "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "역전의 용사", + "zamazentaCrowned": "Crowned", + "kubfuSingleStrike": "Single Strike", + "kubfuRapidStrike": "Rapid Strike", "zarudeDada": "아빠", + "calyrexIce": "Ice Rider", + "calyrexShadow": "Shadow Rider", + "basculinMale": "Male", + "basculinFemale": "Female", "enamorusIncarnate": "화신폼", + "enamorusTherian": "Therian", + "lechonkMale": "Male", + "lechonkFemale": "Female", + "tandemausFour": "Family of Four", + "tandemausThree": "Family of Three", "squawkabillyGreenPlumage": "그린 페더", "squawkabillyBluePlumage": "블루 페더", "squawkabillyYellowPlumage": "옐로 페더", "squawkabillyWhitePlumage": "화이트 페더", + "finizenZero": "Zero", + "finizenZero": "Hero", "tatsugiriCurly": "젖힌 모습", "tatsugiriDroopy": "늘어진 모습", "tatsugiriStretchy": "뻗은 모습", + "dunsparceTwo": "Two-Segment", + "dunsparceThree": "Three-Segment", "gimmighoulChest": "상자폼", "gimmighoulRoaming": "도보폼", "koraidonApexBuild": "완전형태", @@ -164,7 +241,20 @@ "miraidonGlideMode": "글라이드모드", "poltchageistCounterfeit": "가짜배기의 모습", "poltchageistArtisan": "알짜배기의 모습", + "poltchageistUnremarkable": "Unremarkable", + "poltchageistMasterpiece": "Masterpiece", + "ogerponTealMask": "Teal Mask", + "ogerponTealMaskTera": "Teal Mask Terastallized", + "ogerponWellspringMask": "Wellspring Mask", + "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", + "ogerponHearthflameMask": "Hearthflame Mask", + "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", + "ogerponCornerstoneMask": "Cornerstone Mask", + "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagosTerastal": "Terastal", + "terpagosStellar": "Stellar", + "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "컴뱃종", "paldeaTaurosBlaze": "블레이즈종", "paldeaTaurosAqua": "워터종" -} \ No newline at end of file +} From 6409fe83b5e9b707926fccc218b7a75d8d15fa1d Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 02:01:59 +0200 Subject: [PATCH 13/84] Update pokemon-form.json --- src/locales/ja/pokemon-form.json | 92 +++++++++++++++++++++++++++++++- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/src/locales/ja/pokemon-form.json b/src/locales/ja/pokemon-form.json index 76124904456..83ac10e7b43 100644 --- a/src/locales/ja/pokemon-form.json +++ b/src/locales/ja/pokemon-form.json @@ -40,9 +40,14 @@ "castformRainy": "あまみず", "castformSnowy": "ゆきぐも", "deoxysNormal": "ノーマル", + "deoxysAttack": "Attack", + "deoxysDefense": "Defense", + "deoxysSpeed": "Speed", "burmyPlant": "くさき", "burmySandy": "すなち", "burmyTrash": "ゴミ", + "cheribiOvercast": "Overcast", + "cheribiSunshine": "Sunshine", "shellosEast": "ひがし", "shellosWest": "にし", "rotomHeat": "ヒート", @@ -50,21 +55,36 @@ "rotomFrost": "フロスト", "rotomFan": "スピン", "rotomMow": "カット", + "dialgaOrigin": "Origin", + "palkiaOrigin": "Origin", "giratinaAltered": "アナザー", + "giratinaOrigin": "Origin", "shayminLand": "ランド", + "shayminSky": "Sky", "basculinRedStriped": "赤筋", "basculinBlueStriped": "青筋", "basculinWhiteStriped": "白筋", + "darumakaZen": "Zen", "deerlingSpring": "春", "deerlingSummer": "夏", "deerlingAutumn": "秋", "deerlingWinter": "冬", "tornadusIncarnate": "けしん", + "tornadusTherian": "Therian", "thundurusIncarnate": "けしん", + "thundurusTherian": "Therian", "landorusIncarnate": "けしん", + "landorusTherian": "Therian", + "kyuremBlack": "Black", + "kyuremWhite": "White", "keldeoOrdinary": "いつも", + "keldeoResolute": "Resolute", "meloettaAria": "ボイス", "meloettaPirouette": "ステップ", + "genesectShock": "Shock Drive", + "genesectBurn": "Burn Drive", + "genesectChill": "Chill Drive", + "genesectDouse": "Douse Drive", "froakieBattleBond": "きずなへんげ", "scatterbugMeadow": "はなぞの", "scatterbugIcySnow": "ひょうせつ", @@ -100,6 +120,10 @@ "furfrouLaReine": "クイーン", "furfrouKabuki": "カブキ", "furfrouPharaoh": "キングダム", + "espurrMale": "Male", + "espurrFemale": "Female", + "honedgeShiled": "Shield", + "honedgeBlade": "Blade", "pumpkabooSmall": "ちいさい", "pumpkabooLarge": "おおきい", "pumpkabooSuper": "とくだい", @@ -110,11 +134,34 @@ "zygarde50Pc": "50%フォルム スワームチェンジ", "zygarde10Pc": "10%フォルム スワームチェンジ", "zygardeComplete": "パーフェクトフォルム", + "hoopaUnbound": "Unbound", "oricorioBaile": "めらめら", "oricorioPompom": "ぱちぱち", "oricorioPau": "ふらふら", "oricorioSensu": "まいまい", "rockruffOwnTempo": "マイペース", + "rockruffMidday": "Midday", + "rockruffMidnight": "Midnight", + "rockruffMidnight": "Dusk", + "wishiwashiSchool": "School", + "typeNullNormal": "Type: Normal", + "typeNullFighting": "Type: Fighting", + "typeNullFlying": "Type: Flying", + "typeNullPoison": "Type: Poison", + "typeNullGround": "Type: Ground", + "typeNullRock": "Type: Rock", + "typeNullBug": "Type: Bug", + "typeNullGhost": "Type: Ghost", + "typeNullSteel": "Type: Steel", + "typeNullFire": "Type: Fire", + "typeNullWater": "Type: Water", + "typeNullGrass": "Type: Grass", + "typeNullElectric": "Type: Electric", + "typeNullPsychic": "Type: Psychic", + "typeNullIce": "Type: Ice", + "typeNullDragon": "Type: Dragon", + "typeNullDark": "Type: Dark", + "typeNullFairy": "Type: Fairy", "miniorRedMeteor": "赤 りゅうせい", "miniorOrangeMeteor": "オレンジ りゅうせい", "miniorYellowMeteor": "黄 りゅうせい", @@ -131,22 +178,52 @@ "miniorViolet": "紫", "mimikyuDisguised": "ばけたすがた", "mimikyuBusted": "ばれたすがた", + "necrozmaDuskMane": "Dusk Mane", + "necrozmaDawnWings": "Dawn Wings", + "necrozmaUltra": "Ultra", "magearnaOriginal": "500ねんまえ", "marshadowZenith": "Zパワー", "sinisteaPhony": "がんさく", "sinisteaAntique": "しんさく", + "milceryVanillaCream": "Vanilla Cream", + "milceryRubyCream": "Ruby Cream", + "milceryMatchaCream": "Matcha Cream", + "milceryMintCream": "Mint Cream", + "milceryLemonCream": "Lemon Cream", + "milcerySaltedCream": "Salted Cream", + "milceryRubySwirl": "Ruby Swirl", + "milceryCaramelSwirl": "Caramel Swirl", + "milceryRainbowSwirl": "Rainbow Swirl", "eiscueNoIce": "ナイスなし", "indeedeeMale": "オス", "indeedeeFemale": "メス", "morpekoFullBelly": "まんぷく", + "morpekoHangry": "Hangry", "zacianHeroOfManyBattles": "れきせんのゆうしゃ", + "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "れきせんのゆうしゃ", + "zamazentaCrowned": "Crowned", + "kubfuSingleStrike": "Single Strike", + "kubfuRapidStrike": "Rapid Strike", "zarudeDada": "とうちゃん", + "calyrexIce": "Ice Rider", + "calyrexShadow": "Shadow Rider", + "basculinMale": "Male", + "basculinFemale": "Female", "enamorusIncarnate": "けしん", + "enamorusTherian": "Therian", + "lechonkMale": "Male", + "lechonkFemale": "Female", + "tandemausFour": "Family of Four", + "tandemausThree": "Family of Three", "squawkabillyGreenPlumage": "グリーンフェザー", "squawkabillyBluePlumage": "ブルーフェザー", "squawkabillyYellowPlumage": "イエローフェザー", "squawkabillyWhitePlumage": "ホワイトフェザー", + "dunsparceTwo": "Two-Segment", + "dunsparceThree": "Three-Segment", + "finizenZero": "Zero", + "finizenZero": "Hero", "tatsugiriCurly": "そったすがた", "tatsugiriDroopy": "たれたすがた", "tatsugiriStretchy": "のびたすがた", @@ -164,7 +241,20 @@ "miraidonGlideMode":"グライドモード", "poltchageistCounterfeit": "マガイモノ", "poltchageistArtisan": "タカイモノ", + "poltchageistUnremarkable": "Unremarkable", + "poltchageistMasterpiece": "Masterpiece", + "ogerponTealMask": "Teal Mask", + "ogerponTealMaskTera": "Teal Mask Terastallized", + "ogerponWellspringMask": "Wellspring Mask", + "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", + "ogerponHearthflameMask": "Hearthflame Mask", + "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", + "ogerponCornerstoneMask": "Cornerstone Mask", + "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagosTerastal": "Terastal", + "terpagosStellar": "Stellar", + "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "コンバット", "paldeaTaurosBlaze": "ブレイズ", "paldeaTaurosAqua": "ウォーター" -} \ No newline at end of file +} From 4181f078ae08fc5946c2e7558baa97f88713702f Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 02:02:02 +0200 Subject: [PATCH 14/84] Update pokemon-form.json --- src/locales/it/pokemon-form.json | 92 +++++++++++++++++++++++++++++++- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 505173e4c8a..d0252ae37c7 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -40,9 +40,14 @@ "castformRainy": "Pioggia", "castformSnowy": "Nuvola di neve", "deoxysNormal": "Normale", + "deoxysAttack": "Attack", + "deoxysDefense": "Defense", + "deoxysSpeed": "Speed", "burmyPlant": "Pianta", "burmySandy": "Sabbia", "burmyTrash": "Scarti", + "cheribiOvercast": "Overcast", + "cheribiSunshine": "Sunshine", "shellosEast": "Est", "shellosWest": "Ovest", "rotomHeat": "Calore", @@ -50,21 +55,36 @@ "rotomFrost": "Gelo", "rotomFan": "Vortice", "rotomMow": "Taglio", + "dialgaOrigin": "Origin", + "palkiaOrigin": "Origin", "giratinaAltered": "Alterata", + "giratinaOrigin": "Origin", "shayminLand": "Terra", + "shayminSky": "Sky", "basculinRedStriped": "Linearossa", "basculinBlueStriped": "Lineablu", "basculinWhiteStriped": "Lineabianca", + "darumakaZen": "Zen", "deerlingSpring": "Primavera", "deerlingSummer": "Estate", "deerlingAutumn": "Autunno", "deerlingWinter": "Inverno", "tornadusIncarnate": "Incarnazione", + "tornadusTherian": "Therian", "thundurusIncarnate": "Incarnazione", + "thundurusTherian": "Therian", "landorusIncarnate": "Incarnazione", + "landorusTherian": "Therian", + "kyuremBlack": "Black", + "kyuremWhite": "White", "keldeoOrdinary": "Normale", + "keldeoResolute": "Resolute", "meloettaAria": "Canto", "meloettaPirouette": "Danza", + "genesectShock": "Shock Drive", + "genesectBurn": "Burn Drive", + "genesectChill": "Chill Drive", + "genesectDouse": "Douse Drive", "froakieBattleBond": "Morfosintonia", "scatterbugMeadow": "Giardinfiore", "scatterbugIcySnow": "Nevi perenni", @@ -100,6 +120,10 @@ "furfrouLaReine": "Regina", "furfrouKabuki": "Kabuki", "furfrouPharaoh": "Faraone", + "espurrMale": "Male", + "espurrFemale": "Female", + "honedgeShiled": "Shield", + "honedgeBlade": "Blade", "pumpkabooSmall": "Mini", "pumpkabooLarge": "Grande", "pumpkabooSuper": "Maxi", @@ -110,11 +134,34 @@ "zygarde50Pc": "Forma 50% Sciamefusione", "zygarde10Pc": "Forma 10% Sciamefusione", "zygardeComplete": "Forma perfetta", + "hoopaUnbound": "Unbound", "oricorioBaile": "Flamenco", "oricorioPompom": "Cheerdance", "oricorioPau": "Hula", "oricorioSensu": "Buyō", "rockruffOwnTempo": "Mentelocale", + "rockruffMidday": "Midday", + "rockruffMidnight": "Midnight", + "rockruffMidnight": "Dusk", + "wishiwashiSchool": "School", + "typeNullNormal": "Type: Normal", + "typeNullFighting": "Type: Fighting", + "typeNullFlying": "Type: Flying", + "typeNullPoison": "Type: Poison", + "typeNullGround": "Type: Ground", + "typeNullRock": "Type: Rock", + "typeNullBug": "Type: Bug", + "typeNullGhost": "Type: Ghost", + "typeNullSteel": "Type: Steel", + "typeNullFire": "Type: Fire", + "typeNullWater": "Type: Water", + "typeNullGrass": "Type: Grass", + "typeNullElectric": "Type: Electric", + "typeNullPsychic": "Type: Psychic", + "typeNullIce": "Type: Ice", + "typeNullDragon": "Type: Dragon", + "typeNullDark": "Type: Dark", + "typeNullFairy": "Type: Fairy", "miniorRedMeteor": "Nucleo Rosso", "miniorOrangeMeteor": "Nucleo Arancione", "miniorYellowMeteor": "Nucleo Giallo", @@ -131,25 +178,55 @@ "miniorViolet": "Violetto", "mimikyuDisguised": "Mascherata", "mimikyuBusted": "Smascherata", + "necrozmaDuskMane": "Dusk Mane", + "necrozmaDawnWings": "Dawn Wings", + "necrozmaUltra": "Ultra", "magearnaOriginal": "Colore Antico", "marshadowZenith": "Zenith", "sinisteaPhony": "Contraffatta", "sinisteaAntique": "Autentica", + "milceryVanillaCream": "Vanilla Cream", + "milceryRubyCream": "Ruby Cream", + "milceryMatchaCream": "Matcha Cream", + "milceryMintCream": "Mint Cream", + "milceryLemonCream": "Lemon Cream", + "milcerySaltedCream": "Salted Cream", + "milceryRubySwirl": "Ruby Swirl", + "milceryCaramelSwirl": "Caramel Swirl", + "milceryRainbowSwirl": "Rainbow Swirl", "eiscueNoIce": "Liquefaccia", "indeedeeMale": "Maschio", "indeedeeFemale": "Femmina", "morpekoFullBelly": "Panciapiena", + "morpekoHangry": "Hangry", "zacianHeroOfManyBattles": "Eroe di Mille Lotte", + "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "Eroe di Mille Lotte", + "zamazentaCrowned": "Crowned", + "kubfuSingleStrike": "Single Strike", + "kubfuRapidStrike": "Rapid Strike", "zarudeDada": "Papà", + "calyrexIce": "Ice Rider", + "calyrexShadow": "Shadow Rider", + "basculinMale": "Male", + "basculinFemale": "Female", "enamorusIncarnate": "Incarnazione", + "enamorusTherian": "Therian", + "lechonkMale": "Male", + "lechonkFemale": "Female", + "tandemausFour": "Family of Four", + "tandemausThree": "Family of Three", "squawkabillyGreenPlumage": "Piume Verdi", "squawkabillyBluePlumage": "Piume Azzurre", "squawkabillyYellowPlumage": "Piume Gialle", "squawkabillyWhitePlumage": "Piume Bianche", + "finizenZero": "Zero", + "finizenZero": "Hero", "tatsugiriCurly": "Arcuata", "tatsugiriDroopy": "Adagiata", "tatsugiriStretchy": "Tesa", + "dunsparceTwo": "Two-Segment", + "dunsparceThree": "Three-Segment", "gimmighoulChest": "Scrigno", "gimmighoulRoaming": "Ambulante", "koraidonApexBuild": "Foggia Integrale", @@ -164,7 +241,20 @@ "miraidonGlideMode": "Assetto Planata", "poltchageistCounterfeit": "Taroccata", "poltchageistArtisan": "Pregiata", + "poltchageistUnremarkable": "Unremarkable", + "poltchageistMasterpiece": "Masterpiece", + "ogerponTealMask": "Teal Mask", + "ogerponTealMaskTera": "Teal Mask Terastallized", + "ogerponWellspringMask": "Wellspring Mask", + "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", + "ogerponHearthflameMask": "Hearthflame Mask", + "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", + "ogerponCornerstoneMask": "Cornerstone Mask", + "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagosTerastal": "Terastal", + "terpagosStellar": "Stellar", + "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Combattiva", "paldeaTaurosBlaze": "Infuocata", "paldeaTaurosAqua": "Acquatica" -} \ No newline at end of file +} From 82f62158063498286f434bf15003a86b0e19c8ad Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 02:02:06 +0200 Subject: [PATCH 15/84] Update pokemon-form.json --- src/locales/es/pokemon-form.json | 90 ++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/src/locales/es/pokemon-form.json b/src/locales/es/pokemon-form.json index 2f70038ad2d..52f8f7ebebf 100644 --- a/src/locales/es/pokemon-form.json +++ b/src/locales/es/pokemon-form.json @@ -40,9 +40,14 @@ "castformRainy": "Lluvia", "castformSnowy": "Nieve", "deoxysNormal": "Normal", + "deoxysAttack": "Attack", + "deoxysDefense": "Defense", + "deoxysSpeed": "Speed", "burmyPlant": "Planta", "burmySandy": "Arena", "burmyTrash": "Basura", + "cheribiOvercast": "Overcast", + "cheribiSunshine": "Sunshine", "shellosEast": "Este", "shellosWest": "Oeste", "rotomHeat": "Calor", @@ -50,21 +55,36 @@ "rotomFrost": "Frío", "rotomFan": "Ventilador", "rotomMow": "Corte", + "dialgaOrigin": "Origin", + "palkiaOrigin": "Origin", "giratinaAltered": "Modificada", + "giratinaOrigin": "Origin", "shayminLand": "Tierra", + "shayminSky": "Sky", "basculinRedStriped": "Raya Roja", "basculinBlueStriped": "Raya Azul", "basculinWhiteStriped": "Raya Blanca", + "darumakaZen": "Zen", "deerlingSpring": "Primavera", "deerlingSummer": "Verano", "deerlingAutumn": "Otoño", "deerlingWinter": "Invierno", "tornadusIncarnate": "Avatar", + "tornadusTherian": "Therian", "thundurusIncarnate": "Avatar", + "thundurusTherian": "Therian", "landorusIncarnate": "Avatar", + "landorusTherian": "Therian", + "kyuremBlack": "Black", + "kyuremWhite": "White", "keldeoOrdinary": "Habitual", + "keldeoResolute": "Resolute", "meloettaAria": "Lírica", "meloettaPirouette": "Danza", + "genesectShock": "Shock Drive", + "genesectBurn": "Burn Drive", + "genesectChill": "Chill Drive", + "genesectDouse": "Douse Drive", "froakieBattleBond": "Fuerte Afecto", "scatterbugMeadow": "Floral", "scatterbugIcySnow": "Polar", @@ -100,6 +120,10 @@ "furfrouLaReine": "Aristócrata", "furfrouKabuki": "Kabuki", "furfrouPharaoh": "Faraónico", + "espurrMale": "Male", + "espurrFemale": "Female", + "honedgeShiled": "Shield", + "honedgeBlade": "Blade", "pumpkabooSmall": "Pequeño", "pumpkabooLarge": "Grande", "pumpkabooSuper": "Enorme", @@ -110,11 +134,34 @@ "zygarde50Pc": "Zygarde al 50%", "zygarde10Pc": "Zygarde al 10%", "zygardeComplete": "Zygarde Completo", + "hoopaUnbound": "Unbound", "oricorioBaile": "Apasionado", "oricorioPompom": "Animado", "oricorioPau": "Plácido", "oricorioSensu": "Refinado", "rockruffOwnTempo": "Ritmo Propio", + "rockruffMidday": "Midday", + "rockruffMidnight": "Midnight", + "rockruffMidnight": "Dusk", + "wishiwashiSchool": "School", + "typeNullNormal": "Type: Normal", + "typeNullFighting": "Type: Fighting", + "typeNullFlying": "Type: Flying", + "typeNullPoison": "Type: Poison", + "typeNullGround": "Type: Ground", + "typeNullRock": "Type: Rock", + "typeNullBug": "Type: Bug", + "typeNullGhost": "Type: Ghost", + "typeNullSteel": "Type: Steel", + "typeNullFire": "Type: Fire", + "typeNullWater": "Type: Water", + "typeNullGrass": "Type: Grass", + "typeNullElectric": "Type: Electric", + "typeNullPsychic": "Type: Psychic", + "typeNullIce": "Type: Ice", + "typeNullDragon": "Type: Dragon", + "typeNullDark": "Type: Dark", + "typeNullFairy": "Type: Fairy", "miniorRedMeteor": "Núcleo Rojo", "miniorOrangeMeteor": "Núcleo Naranja", "miniorYellowMeteor": "Núcleo Amarillo", @@ -131,25 +178,55 @@ "miniorViolet": "Violeta", "mimikyuDisguised": "Encubierta", "mimikyuBusted": "Descubierta", + "necrozmaDuskMane": "Dusk Mane", + "necrozmaDawnWings": "Dawn Wings", + "necrozmaUltra": "Ultra", "magearnaOriginal": "Vetusto", "marshadowZenith": "Cénit", "sinisteaPhony": "Falsificada", "sinisteaAntique": "Genuina", + "milceryVanillaCream": "Vanilla Cream", + "milceryRubyCream": "Ruby Cream", + "milceryMatchaCream": "Matcha Cream", + "milceryMintCream": "Mint Cream", + "milceryLemonCream": "Lemon Cream", + "milcerySaltedCream": "Salted Cream", + "milceryRubySwirl": "Ruby Swirl", + "milceryCaramelSwirl": "Caramel Swirl", + "milceryRainbowSwirl": "Rainbow Swirl", "eiscueNoIce": "Cara Deshielo", "indeedeeMale": "Macho", "indeedeeFemale": "Hembra", "morpekoFullBelly": "Saciada", + "morpekoHangry": "Hangry", "zacianHeroOfManyBattles": "Guerrero avezado", + "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "Guerrero avezado", + "zamazentaCrowned": "Crowned", + "kubfuSingleStrike": "Single Strike", + "kubfuRapidStrike": "Rapid Strike", "zarudeDada": "Papá", + "calyrexIce": "Ice Rider", + "calyrexShadow": "Shadow Rider", + "basculinMale": "Male", + "basculinFemale": "Female", "enamorusIncarnate": "Avatar", + "enamorusTherian": "Therian", + "lechonkMale": "Male", + "lechonkFemale": "Female", + "tandemausFour": "Family of Four", + "tandemausThree": "Family of Three", "squawkabillyGreenPlumage": "Plumaje Verde", "squawkabillyBluePlumage": "Plumaje Azul", "squawkabillyYellowPlumage": "Plumaje Amarillo", "squawkabillyWhitePlumage": "Plumaje Blanco", + "finizenZero": "Zero", + "finizenZero": "Hero", "tatsugiriCurly": "Curvada", "tatsugiriDroopy": "Lánguida", "tatsugiriStretchy": "Estirada", + "dunsparceTwo": "Two-Segment", + "dunsparceThree": "Three-Segment", "gimmighoulChest": "Cofre", "gimmighoulRoaming": "Andante", "koraidonApexBuild": "Forma Plena", @@ -164,6 +241,19 @@ "miraidonGlideMode": "Modo Planeo", "poltchageistCounterfeit": "Fraudulenta", "poltchageistArtisan": "Opulenta", + "poltchageistUnremarkable": "Unremarkable", + "poltchageistMasterpiece": "Masterpiece", + "ogerponTealMask": "Teal Mask", + "ogerponTealMaskTera": "Teal Mask Terastallized", + "ogerponWellspringMask": "Wellspring Mask", + "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", + "ogerponHearthflameMask": "Hearthflame Mask", + "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", + "ogerponCornerstoneMask": "Cornerstone Mask", + "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagosTerastal": "Terastal", + "terpagosStellar": "Stellar", + "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Combatiente", "paldeaTaurosBlaze": "Ardiente", "paldeaTaurosAqua": "Acuático" From 8fdae0f0ef081f20b78077ac78405191c3bc4aaf Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 02:02:09 +0200 Subject: [PATCH 16/84] Update pokemon-form.json --- src/locales/de/pokemon-form.json | 92 +++++++++++++++++++++++++++++++- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index d621e3165fa..c60f914475e 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -40,9 +40,14 @@ "castformRainy": "Regenform", "castformSnowy": "Schneeform", "deoxysNormal": "Normalform", + "deoxysAttack": "Attack", + "deoxysDefense": "Defense", + "deoxysSpeed": "Speed", "burmyPlant": "Pflanzenumhang", "burmySandy": "Sandumhang", "burmyTrash": "Lumpenumhang", + "cheribiOvercast": "Overcast", + "cheribiSunshine": "Sunshine", "shellosEast": "Östliches Meer", "shellosWest": "Westliches Meer", "rotomHeat": "Hitze-Rotom", @@ -50,21 +55,36 @@ "rotomFrost": "Frost-Rotom", "rotomFan": "Wirbel-Rotom", "rotomMow": "Schneid-Rotom", + "dialgaOrigin": "Origin", + "palkiaOrigin": "Origin", "giratinaAltered": "Wandelform", + "giratinaOrigin": "Origin", "shayminLand": "Landform", + "shayminSky": "Sky", "basculinRedStriped": "Rotlinige Form", "basculinBlueStriped": "Blaulinige Form", "basculinWhiteStriped": "Weißlinige Form", + "darumakaZen": "Zen", "deerlingSpring": "Frühlingsform", "deerlingSummer": "Sommerform", "deerlingAutumn": "Herbstform", "deerlingWinter": "Winterform", "tornadusIncarnate": "Inkarnationsform", + "tornadusTherian": "Therian", "thundurusIncarnate": "Inkarnationsform", + "thundurusTherian": "Therian", "landorusIncarnate": "Inkarnationsform", + "landorusTherian": "Therian", + "kyuremBlack": "Black", + "kyuremWhite": "White", "keldeoOrdinary": "Standardform", + "keldeoResolute": "Resolute", "meloettaAria": "Gesangsform", "meloettaPirouette": "Tanzform", + "genesectShock": "Shock Drive", + "genesectBurn": "Burn Drive", + "genesectChill": "Chill Drive", + "genesectDouse": "Douse Drive", "froakieBattleBond": "Ash-Form", "scatterbugMeadow": "Blumenmeermuster", "scatterbugIcySnow": "Frostmuster", @@ -100,6 +120,10 @@ "furfrouLaReine": "Königinnenschnitt", "furfrouKabuki": "Kabuki-Schnitt", "furfrouPharaoh": "Herrscherschnitt", + "espurrMale": "Male", + "espurrFemale": "Female", + "honedgeShiled": "Shield", + "honedgeBlade": "Blade", "pumpkabooSmall": "Größe S", "pumpkabooLarge": "Größe L", "pumpkabooSuper": "Größe XL", @@ -110,11 +134,34 @@ "zygarde50Pc": "50% Form Scharwandel", "zygarde10Pc": "10% Form Scharwandel", "zygardeComplete": "Optimum-Form", + "hoopaUnbound": "Unbound", "oricorioBaile": "Flamenco-Stil", "oricorioPompom": "Cheerleading-Stil", "oricorioPau": "Hula-Stil", "oricorioSensu": "Buyo-Stil", "rockruffOwnTempo": "Gleichmut", + "rockruffMidday": "Midday", + "rockruffMidnight": "Midnight", + "rockruffMidnight": "Dusk", + "wishiwashiSchool": "School", + "typeNullNormal": "Type: Normal", + "typeNullFighting": "Type: Fighting", + "typeNullFlying": "Type: Flying", + "typeNullPoison": "Type: Poison", + "typeNullGround": "Type: Ground", + "typeNullRock": "Type: Rock", + "typeNullBug": "Type: Bug", + "typeNullGhost": "Type: Ghost", + "typeNullSteel": "Type: Steel", + "typeNullFire": "Type: Fire", + "typeNullWater": "Type: Water", + "typeNullGrass": "Type: Grass", + "typeNullElectric": "Type: Electric", + "typeNullPsychic": "Type: Psychic", + "typeNullIce": "Type: Ice", + "typeNullDragon": "Type: Dragon", + "typeNullDark": "Type: Dark", + "typeNullFairy": "Type: Fairy", "miniorRedMeteor": "Rote-Meteorform", "miniorOrangeMeteor": "Oranger-Meteorform", "miniorYellowMeteor": "Gelber-Meteorform", @@ -131,25 +178,55 @@ "miniorViolet": "Violetter Kern", "mimikyuDisguised": "Verkleidete Form", "mimikyuBusted": "Entlarvte Form", + "necrozmaDuskMane": "Dusk Mane", + "necrozmaDawnWings": "Dawn Wings", + "necrozmaUltra": "Ultra", "magearnaOriginal": "Originalfarbe", "marshadowZenith": "Zenitform", "sinisteaPhony": "Fälschungsform", "sinisteaAntique": "Originalform", + "milceryVanillaCream": "Vanilla Cream", + "milceryRubyCream": "Ruby Cream", + "milceryMatchaCream": "Matcha Cream", + "milceryMintCream": "Mint Cream", + "milceryLemonCream": "Lemon Cream", + "milcerySaltedCream": "Salted Cream", + "milceryRubySwirl": "Ruby Swirl", + "milceryCaramelSwirl": "Caramel Swirl", + "milceryRainbowSwirl": "Rainbow Swirl", "eiscueNoIce": "Wohlfühlkopf", "indeedeeMale": "männlich", "indeedeeFemale": "weiblich", "morpekoFullBelly": "Pappsattmuster", + "morpekoHangry": "Hangry", "zacianHeroOfManyBattles": "Heldenhafter Krieger", + "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "Heldenhafter Krieger", + "zamazentaCrowned": "Crowned", + "kubfuSingleStrike": "Single Strike", + "kubfuRapidStrike": "Rapid Strike", "zarudeDada": "Papa", + "calyrexIce": "Ice Rider", + "calyrexShadow": "Shadow Rider", + "basculinMale": "Male", + "basculinFemale": "Female", "enamorusIncarnate": "Inkarnationsform", + "enamorusTherian": "Therian", + "lechonkMale": "Male", + "lechonkFemale": "Female", + "tandemausFour": "Family of Four", + "tandemausThree": "Family of Three", "squawkabillyGreenPlumage": "Grüngefiedert", "squawkabillyBluePlumage": "Blaugefiedert", "squawkabillyYellowPlumage": "Gelbgefiedert", "squawkabillyWhitePlumage": "Weißgefiedert", + "finizenZero": "Zero", + "finizenZero": "Hero", "tatsugiriCurly": "Gebogene Form", "tatsugiriDroopy": "Hängende Form", "tatsugiriStretchy": "Gestrekte Form", + "dunsparceTwo": "Two-Segment", + "dunsparceThree": "Three-Segment", "gimmighoulChest": "Truhenform", "gimmighoulRoaming": "Wanderform", "koraidonApexBuild": "Vollkommene Gestalt", @@ -164,7 +241,20 @@ "miraidonGlideMode": "Gleitmodus", "poltchageistCounterfeit": "Imitationsform", "poltchageistArtisan": "Kostbarkeitsform", + "poltchageistUnremarkable": "Unremarkable", + "poltchageistMasterpiece": "Masterpiece", + "ogerponTealMask": "Teal Mask", + "ogerponTealMaskTera": "Teal Mask Terastallized", + "ogerponWellspringMask": "Wellspring Mask", + "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", + "ogerponHearthflameMask": "Hearthflame Mask", + "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", + "ogerponCornerstoneMask": "Cornerstone Mask", + "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagosTerastal": "Terastal", + "terpagosStellar": "Stellar", + "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Gefechtsvariante", "paldeaTaurosBlaze": "Flammenvariante", "paldeaTaurosAqua": "Flutenvariante" -} \ No newline at end of file +} From 30feeee5bd31b310de4d5d28597b8f1d187fa6b3 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:02:48 +0200 Subject: [PATCH 17/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index c60f914475e..c4a9fb81c8b 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -40,9 +40,9 @@ "castformRainy": "Regenform", "castformSnowy": "Schneeform", "deoxysNormal": "Normalform", - "deoxysAttack": "Attack", - "deoxysDefense": "Defense", - "deoxysSpeed": "Speed", + "deoxysAttack": "Angriffsform", + "deoxysDefense": "Verteidigungsform", + "deoxysSpeed": "Initiativeform", "burmyPlant": "Pflanzenumhang", "burmySandy": "Sandumhang", "burmyTrash": "Lumpenumhang", From 6cd4ff42ebf237a44ef1671af583348f9273fa72 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:04:01 +0200 Subject: [PATCH 18/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index c4a9fb81c8b..1e84dc4b7d9 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "Pflanzenumhang", "burmySandy": "Sandumhang", "burmyTrash": "Lumpenumhang", - "cheribiOvercast": "Overcast", - "cheribiSunshine": "Sunshine", + "cheribiOvercast": "Wolkenform", + "cheribiSunshine": "Sonnenform", "shellosEast": "Östliches Meer", "shellosWest": "Westliches Meer", "rotomHeat": "Hitze-Rotom", From da8c11c5e813e369dc073fa1b5e1b21814940328 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:04:31 +0200 Subject: [PATCH 19/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 1e84dc4b7d9..2b3083d2639 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -55,8 +55,8 @@ "rotomFrost": "Frost-Rotom", "rotomFan": "Wirbel-Rotom", "rotomMow": "Schneid-Rotom", - "dialgaOrigin": "Origin", - "palkiaOrigin": "Origin", + "dialgaOrigin": "Urform", + "palkiaOrigin": "Urform", "giratinaAltered": "Wandelform", "giratinaOrigin": "Origin", "shayminLand": "Landform", From 0d2f6fb9955bfc6fe4f97cd23821a5bc710fe7fa Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:05:06 +0200 Subject: [PATCH 20/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 2b3083d2639..5ecef6c30a9 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -58,7 +58,7 @@ "dialgaOrigin": "Urform", "palkiaOrigin": "Urform", "giratinaAltered": "Wandelform", - "giratinaOrigin": "Origin", + "giratinaOrigin": "Urform", "shayminLand": "Landform", "shayminSky": "Sky", "basculinRedStriped": "Rotlinige Form", From 5d858376acf18254e4c20f4cdea4e9301e186429 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:05:26 +0200 Subject: [PATCH 21/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 5ecef6c30a9..00ee0560ce6 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -60,7 +60,7 @@ "giratinaAltered": "Wandelform", "giratinaOrigin": "Urform", "shayminLand": "Landform", - "shayminSky": "Sky", + "shayminSky": "Zenitform", "basculinRedStriped": "Rotlinige Form", "basculinBlueStriped": "Blaulinige Form", "basculinWhiteStriped": "Weißlinige Form", From 59f366d9f2d1ec2ac1a578d7829e682153c7692c Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:06:32 +0200 Subject: [PATCH 22/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 00ee0560ce6..d49f530abde 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -64,7 +64,7 @@ "basculinRedStriped": "Rotlinige Form", "basculinBlueStriped": "Blaulinige Form", "basculinWhiteStriped": "Weißlinige Form", - "darumakaZen": "Zen", + "darumakaZen": "Trance-Modus", "deerlingSpring": "Frühlingsform", "deerlingSummer": "Sommerform", "deerlingAutumn": "Herbstform", From 0e36275199eb88f0d0a9fedeeba2014313bed178 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:08:26 +0200 Subject: [PATCH 23/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index d49f530abde..c994231b958 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -70,21 +70,21 @@ "deerlingAutumn": "Herbstform", "deerlingWinter": "Winterform", "tornadusIncarnate": "Inkarnationsform", - "tornadusTherian": "Therian", + "tornadusTherian": "Tiergeistform", "thundurusIncarnate": "Inkarnationsform", - "thundurusTherian": "Therian", + "thundurusTherian": "Tiergeistform", "landorusIncarnate": "Inkarnationsform", - "landorusTherian": "Therian", - "kyuremBlack": "Black", - "kyuremWhite": "White", + "landorusTherian": "Tiergeistform", + "kyuremBlack": "Schwarzes Kyurem", + "kyuremWhite": "Weißes Kyurem", "keldeoOrdinary": "Standardform", - "keldeoResolute": "Resolute", + "keldeoResolute": "Resolutform", "meloettaAria": "Gesangsform", "meloettaPirouette": "Tanzform", - "genesectShock": "Shock Drive", - "genesectBurn": "Burn Drive", - "genesectChill": "Chill Drive", - "genesectDouse": "Douse Drive", + "genesectShock": "Blitzmodul", + "genesectBurn": "Flammenmodul", + "genesectChill": "Gefriermodul", + "genesectDouse": "Aquamodul", "froakieBattleBond": "Ash-Form", "scatterbugMeadow": "Blumenmeermuster", "scatterbugIcySnow": "Frostmuster", From 96378c2a8880746f8e185b261537ce6e294abb13 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:09:18 +0200 Subject: [PATCH 24/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index c994231b958..6f256039faf 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -120,10 +120,10 @@ "furfrouLaReine": "Königinnenschnitt", "furfrouKabuki": "Kabuki-Schnitt", "furfrouPharaoh": "Herrscherschnitt", - "espurrMale": "Male", - "espurrFemale": "Female", - "honedgeShiled": "Shield", - "honedgeBlade": "Blade", + "espurrMale": "männlich", + "espurrFemale": "weiblich", + "honedgeShiled": "Schildform", + "honedgeBlade": "Klingenform", "pumpkabooSmall": "Größe S", "pumpkabooLarge": "Größe L", "pumpkabooSuper": "Größe XL", From 75e24ef8761eaa0c892e029d60399dbd21525819 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:13:36 +0200 Subject: [PATCH 25/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 46 ++++++++++++++++---------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 6f256039faf..f30ee3a8569 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -134,34 +134,34 @@ "zygarde50Pc": "50% Form Scharwandel", "zygarde10Pc": "10% Form Scharwandel", "zygardeComplete": "Optimum-Form", - "hoopaUnbound": "Unbound", + "hoopaUnbound": "Entfesseltes Hoopa", "oricorioBaile": "Flamenco-Stil", "oricorioPompom": "Cheerleading-Stil", "oricorioPau": "Hula-Stil", "oricorioSensu": "Buyo-Stil", "rockruffOwnTempo": "Gleichmut", - "rockruffMidday": "Midday", - "rockruffMidnight": "Midnight", - "rockruffMidnight": "Dusk", - "wishiwashiSchool": "School", - "typeNullNormal": "Type: Normal", - "typeNullFighting": "Type: Fighting", - "typeNullFlying": "Type: Flying", - "typeNullPoison": "Type: Poison", - "typeNullGround": "Type: Ground", - "typeNullRock": "Type: Rock", - "typeNullBug": "Type: Bug", - "typeNullGhost": "Type: Ghost", - "typeNullSteel": "Type: Steel", - "typeNullFire": "Type: Fire", - "typeNullWater": "Type: Water", - "typeNullGrass": "Type: Grass", - "typeNullElectric": "Type: Electric", - "typeNullPsychic": "Type: Psychic", - "typeNullIce": "Type: Ice", - "typeNullDragon": "Type: Dragon", - "typeNullDark": "Type: Dark", - "typeNullFairy": "Type: Fairy", + "rockruffMidday": "Tagform", + "rockruffMidnight": "Nachtform", + "rockruffMidnight": "Zwielichtform", + "wishiwashiSchool": "Schwarmform", + "typeNullNormal": "Typ:Normal", + "typeNullFighting": "Typ:Kampf", + "typeNullFlying": "Typ:Flug", + "typeNullPoison": "Typ:Gift", + "typeNullGround": "Typ:Boden", + "typeNullRock": "Typ:Gestein", + "typeNullBug": "Typ:Käfer", + "typeNullGhost": "Typ:Geist", + "typeNullSteel": "Typ:Stahl", + "typeNullFire": "Typ:Feuer", + "typeNullWater": "Typ:Wasser", + "typeNullGrass": "Typ:Pflanze", + "typeNullElectric": "Typ:Elektro", + "typeNullPsychic": "Typ:Psycho", + "typeNullIce": "Typ:Eis", + "typeNullDragon": "Typ:Drache", + "typeNullDark": "Typ:Unlicht", + "typeNullFairy": "Typ:Fee", "miniorRedMeteor": "Rote-Meteorform", "miniorOrangeMeteor": "Oranger-Meteorform", "miniorYellowMeteor": "Gelber-Meteorform", From 71a79f3002cb03ab2bb345718ff9812f5079ace3 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:14:14 +0200 Subject: [PATCH 26/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index f30ee3a8569..cbd5ea2a1a1 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -178,9 +178,9 @@ "miniorViolet": "Violetter Kern", "mimikyuDisguised": "Verkleidete Form", "mimikyuBusted": "Entlarvte Form", - "necrozmaDuskMane": "Dusk Mane", - "necrozmaDawnWings": "Dawn Wings", - "necrozmaUltra": "Ultra", + "necrozmaDuskMane": "Abendmähne", + "necrozmaDawnWings": "Morgenschwingen", + "necrozmaUltra": "Ultra-Necrozma", "magearnaOriginal": "Originalfarbe", "marshadowZenith": "Zenitform", "sinisteaPhony": "Fälschungsform", From 405ef192992d1fea1f75e47424e44522d4e46d0f Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:15:32 +0200 Subject: [PATCH 27/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index cbd5ea2a1a1..689d4335dc9 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -185,15 +185,15 @@ "marshadowZenith": "Zenitform", "sinisteaPhony": "Fälschungsform", "sinisteaAntique": "Originalform", - "milceryVanillaCream": "Vanilla Cream", - "milceryRubyCream": "Ruby Cream", - "milceryMatchaCream": "Matcha Cream", - "milceryMintCream": "Mint Cream", - "milceryLemonCream": "Lemon Cream", - "milcerySaltedCream": "Salted Cream", - "milceryRubySwirl": "Ruby Swirl", - "milceryCaramelSwirl": "Caramel Swirl", - "milceryRainbowSwirl": "Rainbow Swirl", + "milceryVanillaCream": "Vanille-Creme", + "milceryRubyCream": "Ruby-Creme", + "milceryMatchaCream": "Matcha-Creme", + "milceryMintCream": "Minz-Creme", + "milceryLemonCream": "Zitronen-Creme", + "milcerySaltedCream": "Salz-Creme", + "milceryRubySwirl": "Ruby-Mix", + "milceryCaramelSwirl": "Karamell-Mix", + "milceryRainbowSwirl": "Trio-Mix", "eiscueNoIce": "Wohlfühlkopf", "indeedeeMale": "männlich", "indeedeeFemale": "weiblich", From 752e1c8c1bb63c9b6a5b9dcf6b848766387fafcc Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:15:59 +0200 Subject: [PATCH 28/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 689d4335dc9..1ffa1c65e66 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -198,7 +198,7 @@ "indeedeeMale": "männlich", "indeedeeFemale": "weiblich", "morpekoFullBelly": "Pappsattmuster", - "morpekoHangry": "Hangry", + "morpekoHangry": "Kohldampfmuster", "zacianHeroOfManyBattles": "Heldenhafter Krieger", "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "Heldenhafter Krieger", From 90fdf9cea78bcc9c89f3f7947141c81eb9db99e7 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:17:52 +0200 Subject: [PATCH 29/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 1ffa1c65e66..676261701a6 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -200,11 +200,11 @@ "morpekoFullBelly": "Pappsattmuster", "morpekoHangry": "Kohldampfmuster", "zacianHeroOfManyBattles": "Heldenhafter Krieger", - "zacianCrowned": "Crowned", + "zacianCrowned": "König des Schwertes", "zamazentaHeroOfManyBattles": "Heldenhafter Krieger", - "zamazentaCrowned": "Crowned", - "kubfuSingleStrike": "Single Strike", - "kubfuRapidStrike": "Rapid Strike", + "zamazentaCrowned": "König des Schildes", + "kubfuSingleStrike": "Fokussierter Stil", + "kubfuRapidStrike": "Fließender Stil", "zarudeDada": "Papa", "calyrexIce": "Ice Rider", "calyrexShadow": "Shadow Rider", From 57d8af90930c42d64a4304760f3c10b35e526b02 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:18:39 +0200 Subject: [PATCH 30/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 676261701a6..5a050303e86 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -206,10 +206,10 @@ "kubfuSingleStrike": "Fokussierter Stil", "kubfuRapidStrike": "Fließender Stil", "zarudeDada": "Papa", - "calyrexIce": "Ice Rider", - "calyrexShadow": "Shadow Rider", - "basculinMale": "Male", - "basculinFemale": "Female", + "calyrexIce": "Schimmelreiter", + "calyrexShadow": "Rappenreiter", + "basculinMale": "männlich", + "basculinFemale": "weiblich", "enamorusIncarnate": "Inkarnationsform", "enamorusTherian": "Therian", "lechonkMale": "Male", From b2c1ebd961b44459e21bbbc6ac124e1ebcff2ce1 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:19:34 +0200 Subject: [PATCH 31/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 5a050303e86..dd94cc14da5 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -211,11 +211,11 @@ "basculinMale": "männlich", "basculinFemale": "weiblich", "enamorusIncarnate": "Inkarnationsform", - "enamorusTherian": "Therian", - "lechonkMale": "Male", - "lechonkFemale": "Female", - "tandemausFour": "Family of Four", - "tandemausThree": "Family of Three", + "enamorusTherian": "Tiergeistform", + "lechonkMale": "männlich", + "lechonkFemale": "weiblich", + "tandemausFour": "Dreierfamilie", + "tandemausThree": "Viererfamilie", "squawkabillyGreenPlumage": "Grüngefiedert", "squawkabillyBluePlumage": "Blaugefiedert", "squawkabillyYellowPlumage": "Gelbgefiedert", From 10c21fcd914f302d37383b5ebc0d85507f368e74 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:20:22 +0200 Subject: [PATCH 32/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index dd94cc14da5..42f3cc72280 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -220,8 +220,8 @@ "squawkabillyBluePlumage": "Blaugefiedert", "squawkabillyYellowPlumage": "Gelbgefiedert", "squawkabillyWhitePlumage": "Weißgefiedert", - "finizenZero": "Zero", - "finizenZero": "Hero", + "finizenZero": "Alltagsform", + "finizenZero": "Heldenform", "tatsugiriCurly": "Gebogene Form", "tatsugiriDroopy": "Hängende Form", "tatsugiriStretchy": "Gestrekte Form", From b4c6c8c12be6e64b4bf98c2fccd3d779b3c9fc47 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:20:58 +0200 Subject: [PATCH 33/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 42f3cc72280..4f25de2d657 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -225,8 +225,8 @@ "tatsugiriCurly": "Gebogene Form", "tatsugiriDroopy": "Hängende Form", "tatsugiriStretchy": "Gestrekte Form", - "dunsparceTwo": "Two-Segment", - "dunsparceThree": "Three-Segment", + "dunsparceTwo": "Zweisegmentform", + "dunsparceThree": "Dreisegmentform", "gimmighoulChest": "Truhenform", "gimmighoulRoaming": "Wanderform", "koraidonApexBuild": "Vollkommene Gestalt", From 2ce7c4a74efb31f7fc4d3bbbe26b34789718c80c Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:21:44 +0200 Subject: [PATCH 34/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 4f25de2d657..4112c7c4b95 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -241,8 +241,8 @@ "miraidonGlideMode": "Gleitmodus", "poltchageistCounterfeit": "Imitationsform", "poltchageistArtisan": "Kostbarkeitsform", - "poltchageistUnremarkable": "Unremarkable", - "poltchageistMasterpiece": "Masterpiece", + "poltchageistUnremarkable": "Simple Form", + "poltchageistMasterpiece": "Edle Form", "ogerponTealMask": "Teal Mask", "ogerponTealMaskTera": "Teal Mask Terastallized", "ogerponWellspringMask": "Wellspring Mask", From 22a5edd590c05b7ec7a6445867fee01c187ad4cf Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:25:04 +0200 Subject: [PATCH 35/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 4112c7c4b95..d1dcde30d4e 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -243,14 +243,14 @@ "poltchageistArtisan": "Kostbarkeitsform", "poltchageistUnremarkable": "Simple Form", "poltchageistMasterpiece": "Edle Form", - "ogerponTealMask": "Teal Mask", - "ogerponTealMaskTera": "Teal Mask Terastallized", - "ogerponWellspringMask": "Wellspring Mask", - "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", - "ogerponHearthflameMask": "Hearthflame Mask", - "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", - "ogerponCornerstoneMask": "Cornerstone Mask", - "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "ogerponTealMask": "Türkisgrüne Maske", + "ogerponTealMaskTera": "Türkisgrüne Maske (Terakristallisiert)", + "ogerponWellspringMask": "Brunnenmaske", + "ogerponWellspringMaskTera": "Brunnenmaske (Terakristallisiert)", + "ogerponHearthflameMask": "Ofenmaske", + "ogerponHearthflameMaskTera": "Ofenmaske (Terakristallisiert)", + "ogerponCornerstoneMask": "Fundamentmaske", + "ogerponCornerstoneMaskTera": "Fundamentmaske (Terakristallisiert)", "terpagosTerastal": "Terastal", "terpagosStellar": "Stellar", "galarDarumakaZen": "Zen", From 16533b189f1b897caa505db6cbfa2a9111439a05 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:26:27 +0200 Subject: [PATCH 36/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index d1dcde30d4e..374208d56cc 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -251,9 +251,9 @@ "ogerponHearthflameMaskTera": "Ofenmaske (Terakristallisiert)", "ogerponCornerstoneMask": "Fundamentmaske", "ogerponCornerstoneMaskTera": "Fundamentmaske (Terakristallisiert)", - "terpagosTerastal": "Terastal", - "terpagosStellar": "Stellar", - "galarDarumakaZen": "Zen", + "terpagosTerastal": "Terakristall-Form", + "terpagosStellar": "Stellarform", + "galarDarumakaZen": "Trance-Modus", "paldeaTaurosCombat": "Gefechtsvariante", "paldeaTaurosBlaze": "Flammenvariante", "paldeaTaurosAqua": "Flutenvariante" From 0fd8ceb8ad3a7802967688496064b36d9833abfb Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 12:30:05 +0200 Subject: [PATCH 37/84] Update pokemon-form.json --- src/locales/de/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 374208d56cc..5e3217775d3 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "Pflanzenumhang", "burmySandy": "Sandumhang", "burmyTrash": "Lumpenumhang", - "cheribiOvercast": "Wolkenform", - "cheribiSunshine": "Sonnenform", + "cherubiOvercast": "Wolkenform", + "cherubiSunshine": "Sonnenform", "shellosEast": "Östliches Meer", "shellosWest": "Westliches Meer", "rotomHeat": "Hitze-Rotom", @@ -221,7 +221,7 @@ "squawkabillyYellowPlumage": "Gelbgefiedert", "squawkabillyWhitePlumage": "Weißgefiedert", "finizenZero": "Alltagsform", - "finizenZero": "Heldenform", + "finizenHero": "Heldenform", "tatsugiriCurly": "Gebogene Form", "tatsugiriDroopy": "Hängende Form", "tatsugiriStretchy": "Gestrekte Form", From 62680893cec104e666193c5b959905df73a87aa6 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 12:30:43 +0200 Subject: [PATCH 38/84] Update pokemon-form.json --- src/locales/en/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/en/pokemon-form.json b/src/locales/en/pokemon-form.json index e65fccf5ef4..39b9a19eb7b 100644 --- a/src/locales/en/pokemon-form.json +++ b/src/locales/en/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "Plant", "burmySandy": "Sandy", "burmyTrash": "Trash", - "cheribiOvercast": "Overcast", - "cheribiSunshine": "Sunshine", + "cherubiOvercast": "Overcast", + "cherubiSunshine": "Sunshine", "shellosEast": "East", "shellosWest": "West", "rotomHeat": "Heat", @@ -221,7 +221,7 @@ "squawkabillyYellowPlumage": "Yellow Plumage", "squawkabillyWhitePlumage": "White Plumage", "finizenZero": "Zero", - "finizenZero": "Hero", + "finizenHero": "Hero", "tatsugiriCurly": "Curly", "tatsugiriDroopy": "Droopy", "tatsugiriStretchy": "Stretchy", From 1b0ca24e9711ee3274359c3da42e969034b15177 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 12:31:10 +0200 Subject: [PATCH 39/84] Update pokemon-form.json --- src/locales/es/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/es/pokemon-form.json b/src/locales/es/pokemon-form.json index 52f8f7ebebf..31c04239e9e 100644 --- a/src/locales/es/pokemon-form.json +++ b/src/locales/es/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "Planta", "burmySandy": "Arena", "burmyTrash": "Basura", - "cheribiOvercast": "Overcast", - "cheribiSunshine": "Sunshine", + "cherubiOvercast": "Overcast", + "cherubiSunshine": "Sunshine", "shellosEast": "Este", "shellosWest": "Oeste", "rotomHeat": "Calor", @@ -221,7 +221,7 @@ "squawkabillyYellowPlumage": "Plumaje Amarillo", "squawkabillyWhitePlumage": "Plumaje Blanco", "finizenZero": "Zero", - "finizenZero": "Hero", + "finizenHero": "Hero", "tatsugiriCurly": "Curvada", "tatsugiriDroopy": "Lánguida", "tatsugiriStretchy": "Estirada", From 8779f051d4fd6ab030bab246487a3ec01cc49949 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 12:31:47 +0200 Subject: [PATCH 40/84] Update pokemon-form.json --- src/locales/fr/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/fr/pokemon-form.json b/src/locales/fr/pokemon-form.json index 45ab67dcb1f..0503890472d 100644 --- a/src/locales/fr/pokemon-form.json +++ b/src/locales/fr/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "Plante", "burmySandy": "Sable", "burmyTrash": "Déchet", - "cheribiOvercast": "Couvert", - "cheribiSunshine": "Ensoleillé", + "cherubiOvercast": "Couvert", + "cherubiSunshine": "Ensoleillé", "shellosEast": "Orient", "shellosWest": "Occident", "rotomHeat": "Chaleur", @@ -221,7 +221,7 @@ "squawkabillyYellowPlumage": "Plumage Jaune", "squawkabillyWhitePlumage": "Plumage Blanc", "finizenZero": "Ordinaire", - "finizenZero": "Super", + "finizenHero": "Super", "tatsugiriCurly": "Courbé", "tatsugiriDroopy": "Affalé", "tatsugiriStretchy": "Raide", From 88b40720dbca3b8c32d7e069467db3fbb74d8f1d Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 12:32:19 +0200 Subject: [PATCH 41/84] Update pokemon-form.json --- src/locales/it/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index d0252ae37c7..4f0fbe283cf 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "Pianta", "burmySandy": "Sabbia", "burmyTrash": "Scarti", - "cheribiOvercast": "Overcast", - "cheribiSunshine": "Sunshine", + "cherubiOvercast": "Overcast", + "cherubiSunshine": "Sunshine", "shellosEast": "Est", "shellosWest": "Ovest", "rotomHeat": "Calore", @@ -221,7 +221,7 @@ "squawkabillyYellowPlumage": "Piume Gialle", "squawkabillyWhitePlumage": "Piume Bianche", "finizenZero": "Zero", - "finizenZero": "Hero", + "finizenHero": "Hero", "tatsugiriCurly": "Arcuata", "tatsugiriDroopy": "Adagiata", "tatsugiriStretchy": "Tesa", From 31782cae3e41310dfc0c7f127489d5d85f37b352 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 12:32:51 +0200 Subject: [PATCH 42/84] Update pokemon-form.json --- src/locales/ja/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/ja/pokemon-form.json b/src/locales/ja/pokemon-form.json index 83ac10e7b43..4f8cd7e937e 100644 --- a/src/locales/ja/pokemon-form.json +++ b/src/locales/ja/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "くさき", "burmySandy": "すなち", "burmyTrash": "ゴミ", - "cheribiOvercast": "Overcast", - "cheribiSunshine": "Sunshine", + "cherubiOvercast": "Overcast", + "cherubiSunshine": "Sunshine", "shellosEast": "ひがし", "shellosWest": "にし", "rotomHeat": "ヒート", @@ -223,7 +223,7 @@ "dunsparceTwo": "Two-Segment", "dunsparceThree": "Three-Segment", "finizenZero": "Zero", - "finizenZero": "Hero", + "finizenHero": "Hero", "tatsugiriCurly": "そったすがた", "tatsugiriDroopy": "たれたすがた", "tatsugiriStretchy": "のびたすがた", From 47466b601804c0d631c35d2cb1433a330a1c0e5b Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 12:33:20 +0200 Subject: [PATCH 43/84] Update pokemon-form.json --- src/locales/ko/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/ko/pokemon-form.json b/src/locales/ko/pokemon-form.json index 3a6d863bc1b..b9dd2f5fa45 100644 --- a/src/locales/ko/pokemon-form.json +++ b/src/locales/ko/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "초목도롱", "burmySandy": "모래땅도롱", "burmyTrash": "슈레도롱", - "cheribiOvercast": "Overcast", - "cheribiSunshine": "Sunshine", + "cherubiOvercast": "Overcast", + "cherubiSunshine": "Sunshine", "shellosEast": "동쪽바다의 모습", "shellosWest": "서쪽바다의 모습", "rotomHeat": "히트", @@ -221,7 +221,7 @@ "squawkabillyYellowPlumage": "옐로 페더", "squawkabillyWhitePlumage": "화이트 페더", "finizenZero": "Zero", - "finizenZero": "Hero", + "finizenHero": "Hero", "tatsugiriCurly": "젖힌 모습", "tatsugiriDroopy": "늘어진 모습", "tatsugiriStretchy": "뻗은 모습", From 34a377de221ef98e9fa3b44f104ca4013963dcfa Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 12:34:03 +0200 Subject: [PATCH 44/84] Update pokemon-form.json --- src/locales/pt_BR/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/pt_BR/pokemon-form.json b/src/locales/pt_BR/pokemon-form.json index 0e03ae034d4..4556291831f 100644 --- a/src/locales/pt_BR/pokemon-form.json +++ b/src/locales/pt_BR/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "Vegetal", "burmySandy": "Arenoso", "burmyTrash": "Lixo", - "cheribiOvercast": "Overcast", - "cheribiSunshine": "Sunshine", + "cherubiOvercast": "Overcast", + "cherubiSunshine": "Sunshine", "shellosEast": "Leste", "shellosWest": "Oeste", "rotomHeat": "Calor", @@ -221,7 +221,7 @@ "squawkabillyYellowPlumage": "Plumas Amarelas", "squawkabillyWhitePlumage": "Plumas Brancas", "finizenZero": "Zero", - "finizenZero": "Hero", + "finizenHero": "Hero", "tatsugiriCurly": "Curvado", "tatsugiriDroopy": "Caído", "tatsugiriStretchy": "Reto", From 4d1705d4fbbeaab6dd28caa06e91197469c048f7 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 12:34:42 +0200 Subject: [PATCH 45/84] Update pokemon-form.json --- src/locales/zh_CN/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/zh_CN/pokemon-form.json b/src/locales/zh_CN/pokemon-form.json index 78d4669d30f..42b5247590a 100644 --- a/src/locales/zh_CN/pokemon-form.json +++ b/src/locales/zh_CN/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "草木蓑衣", "burmySandy": "砂土蓑衣", "burmyTrash": "垃圾蓑衣", - "cheribiOvercast": "Overcast", - "cheribiSunshine": "Sunshine", + "cherubiOvercast": "Overcast", + "cherubiSunshine": "Sunshine", "shellosEast": "东海", "shellosWest": "西海", "rotomHeat": "加热", @@ -221,7 +221,7 @@ "squawkabillyYellowPlumage": "黄羽毛", "squawkabillyWhitePlumage": "白羽毛", "finizenZero": "Zero", - "finizenZero": "Hero", + "finizenHero": "Hero", "tatsugiriCurly": "上弓姿势", "tatsugiriDroopy": "下垂姿势", "tatsugiriStretchy": "平挺姿势", From 4b93b9abe24c45b55778fc77dedbe33d0a12f754 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 12:35:07 +0200 Subject: [PATCH 46/84] Update pokemon-form.json --- src/locales/zh_TW/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/zh_TW/pokemon-form.json b/src/locales/zh_TW/pokemon-form.json index 003d6cdd331..39d025d5fcf 100644 --- a/src/locales/zh_TW/pokemon-form.json +++ b/src/locales/zh_TW/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "草木蓑衣", "burmySandy": "砂土蓑衣", "burmyTrash": "垃圾蓑衣", - "cheribiOvercast": "Overcast", - "cheribiSunshine": "Sunshine", + "cherubiOvercast": "Overcast", + "cherubiSunshine": "Sunshine", "shellosEast": "東海", "shellosWest": "西海", "rotomHeat": "加熱", @@ -221,7 +221,7 @@ "squawkabillyYellowPlumage": "黃羽毛", "squawkabillyWhitePlumage": "白羽毛", "finizenZero": "Zero", - "finizenZero": "Hero", + "finizenHero": "Hero", "tatsugiriCurly": "上弓姿勢", "tatsugiriDroopy": "下垂姿勢", "tatsugiriStretchy": "平挺姿勢", From a124411ef94c008de90e9f9071a60c7cde0a99b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ricardo?= Date: Wed, 18 Sep 2024 08:24:55 -0300 Subject: [PATCH 47/84] Update src/locales/pt_BR/pokemon-form.json --- src/locales/pt_BR/pokemon-form.json | 32 ++++++++++++++--------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/locales/pt_BR/pokemon-form.json b/src/locales/pt_BR/pokemon-form.json index 4556291831f..6cb3a6b2ba0 100644 --- a/src/locales/pt_BR/pokemon-form.json +++ b/src/locales/pt_BR/pokemon-form.json @@ -40,14 +40,14 @@ "castformRainy": "Chuvoso", "castformSnowy": "Nevado", "deoxysNormal": "Normal", - "deoxysAttack": "Attack", - "deoxysDefense": "Defense", - "deoxysSpeed": "Speed", + "deoxysAttack": "Ataque", + "deoxysDefense": "Defesa", + "deoxysSpeed": "Velocidade", "burmyPlant": "Vegetal", "burmySandy": "Arenoso", "burmyTrash": "Lixo", - "cherubiOvercast": "Overcast", - "cherubiSunshine": "Sunshine", + "cherubiOvercast": "Nublado", + "cherubiSunshine": "Solar", "shellosEast": "Leste", "shellosWest": "Oeste", "rotomHeat": "Calor", @@ -55,12 +55,12 @@ "rotomFrost": "Congelante", "rotomFan": "Ventilador", "rotomMow": "Corte", - "dialgaOrigin": "Origin", - "palkiaOrigin": "Origin", + "dialgaOrigin": "Origem", + "palkiaOrigin": "Origem", "giratinaAltered": "Alterado", - "giratinaOrigin": "Origin", + "giratinaOrigin": "Origem", "shayminLand": "Terrestre", - "shayminSky": "Sky", + "shayminSky": "Céu", "basculinRedStriped": "Listras Vermelhas", "basculinBlueStriped": "Listras Azuis", "basculinWhiteStriped": "Listras Brancas", @@ -75,16 +75,16 @@ "thundurusTherian": "Therian", "landorusIncarnate": "Materializado", "landorusTherian": "Therian", - "kyuremBlack": "Black", - "kyuremWhite": "White", + "kyuremBlack": "Preto", + "kyuremWhite": "Branco", "keldeoOrdinary": "Comum", - "keldeoResolute": "Resolute", + "keldeoResolute": "Resoluto", "meloettaAria": "Ária", "meloettaPirouette": "Pirueta", - "genesectShock": "Shock Drive", - "genesectBurn": "Burn Drive", - "genesectChill": "Chill Drive", - "genesectDouse": "Douse Drive", + "genesectShock": "Disco Elétrico", + "genesectBurn": "Disco Incendiante", + "genesectChill": "Disco Congelante", + "genesectDouse": "Disco Hídrico", "froakieBattleBond": "Vínculo de Batalha", "scatterbugMeadow": "Prado", "scatterbugIcySnow": "Neve Congelada", From 40fd3d0a9b82e0792aaab7bc2a18597fd1608f09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ricardo?= Date: Wed, 18 Sep 2024 08:28:09 -0300 Subject: [PATCH 48/84] Update src/locales/pt_BR/pokemon-form.json --- src/locales/pt_BR/pokemon-form.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/locales/pt_BR/pokemon-form.json b/src/locales/pt_BR/pokemon-form.json index 6cb3a6b2ba0..d2143f723c7 100644 --- a/src/locales/pt_BR/pokemon-form.json +++ b/src/locales/pt_BR/pokemon-form.json @@ -120,10 +120,10 @@ "furfrouLaReine": "Aristocrático", "furfrouKabuki": "Kabuki", "furfrouPharaoh": "Faraó", - "espurrMale": "Male", - "espurrFemale": "Female", - "honedgeShiled": "Shield", - "honedgeBlade": "Blade", + "espurrMale": "Macho", + "espurrFemale": "Fêmea", + "honedgeShiled": "Escudo", + "honedgeBlade": "Lâmina", "pumpkabooSmall": "Pequeno", "pumpkabooLarge": "Grande", "pumpkabooSuper": "Extragrande", From 8479e9e5eeae06e1d0a3bd47556c1d8081c4dbd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ricardo?= Date: Wed, 18 Sep 2024 08:35:09 -0300 Subject: [PATCH 49/84] Update src/locales/pt_BR/pokemon-form.json --- src/locales/pt_BR/pokemon-form.json | 46 ++++++++++++++--------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/src/locales/pt_BR/pokemon-form.json b/src/locales/pt_BR/pokemon-form.json index d2143f723c7..0e076821baa 100644 --- a/src/locales/pt_BR/pokemon-form.json +++ b/src/locales/pt_BR/pokemon-form.json @@ -134,34 +134,34 @@ "zygarde50Pc": "Forma 50% Agrupada", "zygarde10Pc": "Forma 10% Agrupada", "zygardeComplete": "Forma Completa", - "hoopaUnbound": "Unbound", + "hoopaUnbound": "Libertado", "oricorioBaile": "Flamenco", "oricorioPompom": "Pompom", "oricorioPau": "Hula", "oricorioSensu": "Leque", "rockruffOwnTempo": "Próprio Tempo", - "rockruffMidday": "Midday", - "rockruffMidnight": "Midnight", - "rockruffMidnight": "Dusk", - "wishiwashiSchool": "School", - "typeNullNormal": "Type: Normal", - "typeNullFighting": "Type: Fighting", - "typeNullFlying": "Type: Flying", - "typeNullPoison": "Type: Poison", - "typeNullGround": "Type: Ground", - "typeNullRock": "Type: Rock", - "typeNullBug": "Type: Bug", - "typeNullGhost": "Type: Ghost", - "typeNullSteel": "Type: Steel", - "typeNullFire": "Type: Fire", - "typeNullWater": "Type: Water", - "typeNullGrass": "Type: Grass", - "typeNullElectric": "Type: Electric", - "typeNullPsychic": "Type: Psychic", - "typeNullIce": "Type: Ice", - "typeNullDragon": "Type: Dragon", - "typeNullDark": "Type: Dark", - "typeNullFairy": "Type: Fairy", + "rockruffMidday": "Diurno", + "rockruffMidnight": "Noturno", + "rockruffMidnight": "Crepúsculo", + "wishiwashiSchool": "Cardume", + "typeNullNormal": "Tipo: Normal", + "typeNullFighting": "Tipo: Lutador", + "typeNullFlying": "Tipo: Voador", + "typeNullPoison": "Tipo: Veneno", + "typeNullGround": "Tipo: Terra", + "typeNullRock": "Tipo: Pedra", + "typeNullBug": "Tipo: Inseto", + "typeNullGhost": "Tipo: Fantasma", + "typeNullSteel": "Tipo: Aço", + "typeNullFire": "Tipo: Fogo", + "typeNullWater": "Tipo: Água", + "typeNullGrass": "Tipo: Grama", + "typeNullElectric": "Tipo: Elétrico", + "typeNullPsychic": "Tipo: Psíquico", + "typeNullIce": "Tipo: Gelo", + "typeNullDragon": "Tipo: Dragão", + "typeNullDark": "Tipo: Sombrio", + "typeNullFairy": "Tipo: Fada", "miniorRedMeteor": "Meteoro Vermelho", "miniorOrangeMeteor": "Meteoro Laranja", "miniorYellowMeteor": "Meteoro Amarelo", From 6553ae49f490c7a1f75e2b313575dde6379fdfe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ricardo?= Date: Wed, 18 Sep 2024 08:38:55 -0300 Subject: [PATCH 50/84] Update src/locales/pt_BR/pokemon-form.json --- src/locales/pt_BR/pokemon-form.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/locales/pt_BR/pokemon-form.json b/src/locales/pt_BR/pokemon-form.json index 0e076821baa..859b9764c2e 100644 --- a/src/locales/pt_BR/pokemon-form.json +++ b/src/locales/pt_BR/pokemon-form.json @@ -178,22 +178,22 @@ "miniorViolet": "Violeta", "mimikyuDisguised": "Disfarçado", "mimikyuBusted": "Descoberto", - "necrozmaDuskMane": "Dusk Mane", - "necrozmaDawnWings": "Dawn Wings", + "necrozmaDuskMane": "Juba Crepúsculo", + "necrozmaDawnWings": "Asas Alvorada", "necrozmaUltra": "Ultra", "magearnaOriginal": "Original", "marshadowZenith": "Zênite", "sinisteaPhony": "Falsificado", "sinisteaAntique": "Autêntico", - "milceryVanillaCream": "Vanilla Cream", - "milceryRubyCream": "Ruby Cream", - "milceryMatchaCream": "Matcha Cream", - "milceryMintCream": "Mint Cream", - "milceryLemonCream": "Lemon Cream", - "milcerySaltedCream": "Salted Cream", - "milceryRubySwirl": "Ruby Swirl", - "milceryCaramelSwirl": "Caramel Swirl", - "milceryRainbowSwirl": "Rainbow Swirl", + "milceryVanillaCream": "Creme de Baunilha", + "milceryRubyCream": "Creme Rubi", + "milceryMatchaCream": "Creme de Chá Verde", + "milceryMintCream": "Creme de Menta", + "milceryLemonCream": "Creme de Lima", + "milcerySaltedCream": "Creme Salgado", + "milceryRubySwirl": "Mistura Rubi", + "milceryCaramelSwirl": "Mistura de Caramelo", + "milceryRainbowSwirl": "Mistura Tricolor", "eiscueNoIce": "Descongelado", "indeedeeMale": "Macho", "indeedeeFemale": "Fêmea", From eaf5c3edd39fa3aaca5407c6b1f41f056b5a2bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ricardo?= Date: Wed, 18 Sep 2024 08:46:17 -0300 Subject: [PATCH 51/84] Update src/locales/pt_BR/pokemon-form.json --- src/locales/pt_BR/pokemon-form.json | 34 ++++++++++++++--------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/locales/pt_BR/pokemon-form.json b/src/locales/pt_BR/pokemon-form.json index 859b9764c2e..eb0379b791c 100644 --- a/src/locales/pt_BR/pokemon-form.json +++ b/src/locales/pt_BR/pokemon-form.json @@ -198,35 +198,35 @@ "indeedeeMale": "Macho", "indeedeeFemale": "Fêmea", "morpekoFullBelly": "Saciado", - "morpekoHangry": "Hangry", + "morpekoHangry": "Voraz", "zacianHeroOfManyBattles": "Herói Veterano", - "zacianCrowned": "Crowned", + "zacianCrowned": "Coroado", "zamazentaHeroOfManyBattles": "Herói Veterano", - "zamazentaCrowned": "Crowned", - "kubfuSingleStrike": "Single Strike", - "kubfuRapidStrike": "Rapid Strike", + "zamazentaCrowned": "Coroado", + "kubfuSingleStrike": "Golpe Decisivo", + "kubfuRapidStrike": "Golpe Fluido", "zarudeDada": "Papa", - "calyrexIce": "Ice Rider", - "calyrexShadow": "Shadow Rider", - "basculinMale": "Male", - "basculinFemale": "Female", + "calyrexIce": "Cavaleiro Glacial", + "calyrexShadow": "Cavaleiro Espectral", + "basculinMale": "Macho", + "basculinFemale": "Fêmea", "enamorusIncarnate": "Materializado", "enamorusTherian": "Therian", - "lechonkMale": "Male", - "lechonkFemale": "Female", - "tandemausFour": "Family of Four", - "tandemausThree": "Family of Three", + "lechonkMale": "Macho", + "lechonkFemale": "Fêmea", + "tandemausFour": "Família de Quatro", + "tandemausThree": "Família de Três", "squawkabillyGreenPlumage": "Plumas Verdes", "squawkabillyBluePlumage": "Plumas Azuis", "squawkabillyYellowPlumage": "Plumas Amarelas", "squawkabillyWhitePlumage": "Plumas Brancas", - "finizenZero": "Zero", - "finizenHero": "Hero", + "finizenZero": "Ingênuo", + "finizenHero": "Heroico", "tatsugiriCurly": "Curvado", "tatsugiriDroopy": "Caído", "tatsugiriStretchy": "Reto", - "dunsparceTwo": "Two-Segment", - "dunsparceThree": "Three-Segment", + "dunsparceTwo": "Duplo", + "dunsparceThree": "Triplo", "gimmighoulChest": "Baú", "gimmighoulRoaming": "Perambulante", "koraidonApexBuild": "Forma Plena", From 067d7c2da5190cacc27edcf3587c2ffc8430bdcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ricardo?= Date: Wed, 18 Sep 2024 08:51:07 -0300 Subject: [PATCH 52/84] Update src/locales/pt_BR/pokemon-form.json --- src/locales/pt_BR/pokemon-form.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/locales/pt_BR/pokemon-form.json b/src/locales/pt_BR/pokemon-form.json index eb0379b791c..402f4ded286 100644 --- a/src/locales/pt_BR/pokemon-form.json +++ b/src/locales/pt_BR/pokemon-form.json @@ -241,18 +241,18 @@ "miraidonGlideMode": "Modo Aéreo", "poltchageistCounterfeit": "Imitação", "poltchageistArtisan": "Artesão", - "poltchageistUnremarkable": "Unremarkable", - "poltchageistMasterpiece": "Masterpiece", - "ogerponTealMask": "Teal Mask", - "ogerponTealMaskTera": "Teal Mask Terastallized", - "ogerponWellspringMask": "Wellspring Mask", - "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", - "ogerponHearthflameMask": "Hearthflame Mask", - "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", - "ogerponCornerstoneMask": "Cornerstone Mask", - "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", - "terpagosTerastal": "Terastal", - "terpagosStellar": "Stellar", + "poltchageistUnremarkable": "Medíocre", + "poltchageistMasterpiece": "Excepcional", + "ogerponTealMask": "Máscara Turquesa", + "ogerponTealMaskTera": "Máscara Turquesa Terastalizada", + "ogerponWellspringMask": "Máscara Nascente", + "ogerponWellspringMaskTera": "Máscara Nascente Terastalizada", + "ogerponHearthflameMask": "Máscara Fornalha", + "ogerponHearthflameMaskTera": "Máscara Fornalha Terastalizada", + "ogerponCornerstoneMask": "Máscara Alicerce", + "ogerponCornerstoneMaskTera": "Máscara Alicerce Terastalizada", + "terpagosTerastal": "Teracristal", + "terpagosStellar": "Astral", "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Combate", "paldeaTaurosBlaze": "Chamas", From 007c9924f0d7e49c48150c14e81d5ff7a86939ec Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 16:32:52 +0200 Subject: [PATCH 53/84] Update pokemon-form.json --- src/locales/es/pokemon-form.json | 174 +++++++++++++++---------------- 1 file changed, 87 insertions(+), 87 deletions(-) diff --git a/src/locales/es/pokemon-form.json b/src/locales/es/pokemon-form.json index 31c04239e9e..73b2fe60180 100644 --- a/src/locales/es/pokemon-form.json +++ b/src/locales/es/pokemon-form.json @@ -40,9 +40,9 @@ "castformRainy": "Lluvia", "castformSnowy": "Nieve", "deoxysNormal": "Normal", - "deoxysAttack": "Attack", - "deoxysDefense": "Defense", - "deoxysSpeed": "Speed", + "deoxysAttack": "Ataque", + "deoxysDefense": "Defensa", + "deoxysSpeed": "Velocidad", "burmyPlant": "Planta", "burmySandy": "Arena", "burmyTrash": "Basura", @@ -55,36 +55,36 @@ "rotomFrost": "Frío", "rotomFan": "Ventilador", "rotomMow": "Corte", - "dialgaOrigin": "Origin", - "palkiaOrigin": "Origin", + "dialgaOrigin": "Origen", + "palkiaOrigin": "Origen", "giratinaAltered": "Modificada", - "giratinaOrigin": "Origin", + "giratinaOrigin": "Origen", "shayminLand": "Tierra", - "shayminSky": "Sky", + "shayminSky": "Cielo", "basculinRedStriped": "Raya Roja", "basculinBlueStriped": "Raya Azul", "basculinWhiteStriped": "Raya Blanca", - "darumakaZen": "Zen", + "darumakaZen": "Daruma", "deerlingSpring": "Primavera", "deerlingSummer": "Verano", "deerlingAutumn": "Otoño", "deerlingWinter": "Invierno", "tornadusIncarnate": "Avatar", - "tornadusTherian": "Therian", + "tornadusTherian": "Tótem", "thundurusIncarnate": "Avatar", - "thundurusTherian": "Therian", + "thundurusTherian": "Tótem", "landorusIncarnate": "Avatar", - "landorusTherian": "Therian", - "kyuremBlack": "Black", - "kyuremWhite": "White", + "landorusTherian": "Tótem", + "kyuremBlack": "Negro", + "kyuremWhite": "Blanco", "keldeoOrdinary": "Habitual", - "keldeoResolute": "Resolute", + "keldeoResolute": "Brío", "meloettaAria": "Lírica", "meloettaPirouette": "Danza", - "genesectShock": "Shock Drive", - "genesectBurn": "Burn Drive", - "genesectChill": "Chill Drive", - "genesectDouse": "Douse Drive", + "genesectShock": "FulgoROM", + "genesectBurn": "PiroROM", + "genesectChill": "CrioROM", + "genesectDouse": "HidroROM", "froakieBattleBond": "Fuerte Afecto", "scatterbugMeadow": "Floral", "scatterbugIcySnow": "Polar", @@ -120,10 +120,10 @@ "furfrouLaReine": "Aristócrata", "furfrouKabuki": "Kabuki", "furfrouPharaoh": "Faraónico", - "espurrMale": "Male", - "espurrFemale": "Female", - "honedgeShiled": "Shield", - "honedgeBlade": "Blade", + "espurrMale": "Macho", + "espurrFemale": "Hembra", + "honedgeShiled": "Escudo", + "honedgeBlade": "Filo", "pumpkabooSmall": "Pequeño", "pumpkabooLarge": "Grande", "pumpkabooSuper": "Enorme", @@ -134,34 +134,34 @@ "zygarde50Pc": "Zygarde al 50%", "zygarde10Pc": "Zygarde al 10%", "zygardeComplete": "Zygarde Completo", - "hoopaUnbound": "Unbound", + "hoopaUnbound": "Desatado", "oricorioBaile": "Apasionado", "oricorioPompom": "Animado", "oricorioPau": "Plácido", "oricorioSensu": "Refinado", "rockruffOwnTempo": "Ritmo Propio", - "rockruffMidday": "Midday", - "rockruffMidnight": "Midnight", - "rockruffMidnight": "Dusk", - "wishiwashiSchool": "School", - "typeNullNormal": "Type: Normal", - "typeNullFighting": "Type: Fighting", - "typeNullFlying": "Type: Flying", - "typeNullPoison": "Type: Poison", - "typeNullGround": "Type: Ground", - "typeNullRock": "Type: Rock", - "typeNullBug": "Type: Bug", - "typeNullGhost": "Type: Ghost", - "typeNullSteel": "Type: Steel", - "typeNullFire": "Type: Fire", - "typeNullWater": "Type: Water", - "typeNullGrass": "Type: Grass", - "typeNullElectric": "Type: Electric", - "typeNullPsychic": "Type: Psychic", - "typeNullIce": "Type: Ice", - "typeNullDragon": "Type: Dragon", - "typeNullDark": "Type: Dark", - "typeNullFairy": "Type: Fairy", + "rockruffMidday": "Diurna", + "rockruffMidnight": "Nocturna", + "rockruffMidnight": "Crepuscular", + "wishiwashiSchool": "Banco", + "typeNullNormal": "Tipo Normal", + "typeNullFighting": "Tipo Lucha", + "typeNullFlying": "Tipo Volador", + "typeNullPoison": "Tipo Veneno", + "typeNullGround": "Tipo Tierra", + "typeNullRock": "Tipo Roca", + "typeNullBug": "Tipo Bicho", + "typeNullGhost": "Tipo Fantasma", + "typeNullSteel": "Tipo Acero", + "typeNullFire": "Tipo Fuego", + "typeNullWater": "Tipo Agua", + "typeNullGrass": "Tipo Planta", + "typeNullElectric": "Tipo Eléctrico", + "typeNullPsychic": "Tipo Psíquico", + "typeNullIce": "Tipo Hielo", + "typeNullDragon": "Tipo Dragón", + "typeNullDark": "Tipo Siniestro", + "typeNullFairy": "Tipo Hada", "miniorRedMeteor": "Núcleo Rojo", "miniorOrangeMeteor": "Núcleo Naranja", "miniorYellowMeteor": "Núcleo Amarillo", @@ -178,55 +178,55 @@ "miniorViolet": "Violeta", "mimikyuDisguised": "Encubierta", "mimikyuBusted": "Descubierta", - "necrozmaDuskMane": "Dusk Mane", - "necrozmaDawnWings": "Dawn Wings", + "necrozmaDuskMane": "Melena Crepuscular", + "necrozmaDawnWings": "Asas Alvorada", "necrozmaUltra": "Ultra", "magearnaOriginal": "Vetusto", "marshadowZenith": "Cénit", "sinisteaPhony": "Falsificada", "sinisteaAntique": "Genuina", - "milceryVanillaCream": "Vanilla Cream", - "milceryRubyCream": "Ruby Cream", - "milceryMatchaCream": "Matcha Cream", - "milceryMintCream": "Mint Cream", - "milceryLemonCream": "Lemon Cream", - "milcerySaltedCream": "Salted Cream", - "milceryRubySwirl": "Ruby Swirl", - "milceryCaramelSwirl": "Caramel Swirl", - "milceryRainbowSwirl": "Rainbow Swirl", + "milceryVanillaCream": "Crema de Vainilla", + "milceryRubyCream": "Crema Rosa", + "milceryMatchaCream": "Crema de Té", + "milceryMintCream": "Crema de Menta", + "milceryLemonCream": "Crema de Limón", + "milcerySaltedCream": "Crema Salada", + "milceryRubySwirl": "Mezcla Rosa", + "milceryCaramelSwirl": "Mezcla Caramelo", + "milceryRainbowSwirl": "Tres Sabores", "eiscueNoIce": "Cara Deshielo", "indeedeeMale": "Macho", "indeedeeFemale": "Hembra", "morpekoFullBelly": "Saciada", - "morpekoHangry": "Hangry", + "morpekoHangry": "Voraz", "zacianHeroOfManyBattles": "Guerrero avezado", - "zacianCrowned": "Crowned", + "zacianCrowned": "Espada Suprema", "zamazentaHeroOfManyBattles": "Guerrero avezado", - "zamazentaCrowned": "Crowned", - "kubfuSingleStrike": "Single Strike", - "kubfuRapidStrike": "Rapid Strike", + "zamazentaCrowned": "Escudo Supremo", + "kubfuSingleStrike": "Estilo Brusco", + "kubfuRapidStrike": "Estilo Fluido", "zarudeDada": "Papá", - "calyrexIce": "Ice Rider", - "calyrexShadow": "Shadow Rider", - "basculinMale": "Male", - "basculinFemale": "Female", + "calyrexIce": "Jinete Glacial", + "calyrexShadow": "Jinete Espectral", + "basculinMale": "Macho", + "basculinFemale": "Hembra", "enamorusIncarnate": "Avatar", - "enamorusTherian": "Therian", - "lechonkMale": "Male", - "lechonkFemale": "Female", - "tandemausFour": "Family of Four", - "tandemausThree": "Family of Three", + "enamorusTherian": "Tótem", + "lechonkMale": "Macho", + "lechonkFemale": "Hembra", + "tandemausFour": "Familia de Cuatro", + "tandemausThree": "Familia de Tres", "squawkabillyGreenPlumage": "Plumaje Verde", "squawkabillyBluePlumage": "Plumaje Azul", "squawkabillyYellowPlumage": "Plumaje Amarillo", "squawkabillyWhitePlumage": "Plumaje Blanco", - "finizenZero": "Zero", - "finizenHero": "Hero", + "finizenZero": "Ingenua", + "finizenHero": "Heroica", "tatsugiriCurly": "Curvada", "tatsugiriDroopy": "Lánguida", "tatsugiriStretchy": "Estirada", - "dunsparceTwo": "Two-Segment", - "dunsparceThree": "Three-Segment", + "dunsparceTwo": "Binodular", + "dunsparceThree": "Trinodular", "gimmighoulChest": "Cofre", "gimmighoulRoaming": "Andante", "koraidonApexBuild": "Forma Plena", @@ -241,19 +241,19 @@ "miraidonGlideMode": "Modo Planeo", "poltchageistCounterfeit": "Fraudulenta", "poltchageistArtisan": "Opulenta", - "poltchageistUnremarkable": "Unremarkable", - "poltchageistMasterpiece": "Masterpiece", - "ogerponTealMask": "Teal Mask", - "ogerponTealMaskTera": "Teal Mask Terastallized", - "ogerponWellspringMask": "Wellspring Mask", - "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", - "ogerponHearthflameMask": "Hearthflame Mask", - "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", - "ogerponCornerstoneMask": "Cornerstone Mask", - "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", - "terpagosTerastal": "Terastal", - "terpagosStellar": "Stellar", - "galarDarumakaZen": "Zen", + "poltchageistUnremarkable": "Mediocre", + "poltchageistMasterpiece": "Exquisita", + "ogerponTealMask": "Máscara Turquesa", + "ogerponTealMaskTera": "Máscara Turquesa Teracristal", + "ogerponWellspringMask": "Máscara Fuente", + "ogerponWellspringMaskTera": "Máscara Fuente Teracristal", + "ogerponHearthflameMask": "Máscara Horno", + "ogerponHearthflameMaskTera": "Máscara Horno Teracristal", + "ogerponCornerstoneMask": "Máscara Cimiento", + "ogerponCornerstoneMaskTera": "Máscara Cimiento Teracristal", + "terpagosTerastal": "Teracristal", + "terpagosStellar": "Astral", + "galarDarumakaZen": "Daruma", "paldeaTaurosCombat": "Combatiente", "paldeaTaurosBlaze": "Ardiente", "paldeaTaurosAqua": "Acuático" From 3a9797ac47d931c0d5b1d20759a751fc10a5477f Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 16:36:41 +0200 Subject: [PATCH 54/84] Update pokemon-form.json --- src/locales/es/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/es/pokemon-form.json b/src/locales/es/pokemon-form.json index 73b2fe60180..baf0e273cc4 100644 --- a/src/locales/es/pokemon-form.json +++ b/src/locales/es/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "Planta", "burmySandy": "Arena", "burmyTrash": "Basura", - "cherubiOvercast": "Overcast", - "cherubiSunshine": "Sunshine", + "cherubiOvercast": "Encapotado", + "cherubiSunshine": "Soleado", "shellosEast": "Este", "shellosWest": "Oeste", "rotomHeat": "Calor", From d95db3d4beab0b2bfe8b0defe2aca1f95b8bba31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:18:20 +0200 Subject: [PATCH 55/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 4f0fbe283cf..439230e2b5e 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -40,9 +40,9 @@ "castformRainy": "Pioggia", "castformSnowy": "Nuvola di neve", "deoxysNormal": "Normale", - "deoxysAttack": "Attack", - "deoxysDefense": "Defense", - "deoxysSpeed": "Speed", + "deoxysAttack": "Attacco", + "deoxysDefense": "Difesa", + "deoxysSpeed": "Velocità", "burmyPlant": "Pianta", "burmySandy": "Sabbia", "burmyTrash": "Scarti", From b8ff30eb8926bda94d3443be139b8231492cb55f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:18:28 +0200 Subject: [PATCH 56/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 439230e2b5e..03135d7f87a 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -46,8 +46,8 @@ "burmyPlant": "Pianta", "burmySandy": "Sabbia", "burmyTrash": "Scarti", - "cherubiOvercast": "Overcast", - "cherubiSunshine": "Sunshine", + "cherubiOvercast": "Nuvola", + "cherubiSunshine": "Splendore", "shellosEast": "Est", "shellosWest": "Ovest", "rotomHeat": "Calore", From 8aa6b20feb8d9aaa80040172c283d5bac0bd9af2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:18:35 +0200 Subject: [PATCH 57/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 03135d7f87a..c82a9795bc6 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -55,8 +55,8 @@ "rotomFrost": "Gelo", "rotomFan": "Vortice", "rotomMow": "Taglio", - "dialgaOrigin": "Origin", - "palkiaOrigin": "Origin", + "dialgaOrigin": "Originale", + "palkiaOrigin": "Originale", "giratinaAltered": "Alterata", "giratinaOrigin": "Origin", "shayminLand": "Terra", From 39cba40c4a1182326afea370765d223decee4c56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:18:44 +0200 Subject: [PATCH 58/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index c82a9795bc6..2ec0ccde2ee 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -58,9 +58,9 @@ "dialgaOrigin": "Originale", "palkiaOrigin": "Originale", "giratinaAltered": "Alterata", - "giratinaOrigin": "Origin", + "giratinaOrigin": "Originale", "shayminLand": "Terra", - "shayminSky": "Sky", + "shayminSky": "Cielo", "basculinRedStriped": "Linearossa", "basculinBlueStriped": "Lineablu", "basculinWhiteStriped": "Lineabianca", From a976abdf783fe72299853defd00e7e86d612fb00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:18:52 +0200 Subject: [PATCH 59/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 2ec0ccde2ee..528f6883212 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -70,15 +70,15 @@ "deerlingAutumn": "Autunno", "deerlingWinter": "Inverno", "tornadusIncarnate": "Incarnazione", - "tornadusTherian": "Therian", + "tornadusTherian": "Totem", "thundurusIncarnate": "Incarnazione", - "thundurusTherian": "Therian", + "thundurusTherian": "Totem", "landorusIncarnate": "Incarnazione", - "landorusTherian": "Therian", - "kyuremBlack": "Black", - "kyuremWhite": "White", + "landorusTherian": "Totem", + "kyuremBlack": "Nero", + "kyuremWhite": "Bianco", "keldeoOrdinary": "Normale", - "keldeoResolute": "Resolute", + "keldeoResolute": "Risoluta", "meloettaAria": "Canto", "meloettaPirouette": "Danza", "genesectShock": "Shock Drive", From 264c28edce023dbb975bbcc982f2bafad72f6e6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:19:01 +0200 Subject: [PATCH 60/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 528f6883212..617ef6682a3 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -198,24 +198,24 @@ "indeedeeMale": "Maschio", "indeedeeFemale": "Femmina", "morpekoFullBelly": "Panciapiena", - "morpekoHangry": "Hangry", + "morpekoHangry": "Panciavuota", "zacianHeroOfManyBattles": "Eroe di Mille Lotte", - "zacianCrowned": "Crowned", + "zacianCrowned": "Re delle Spade", "zamazentaHeroOfManyBattles": "Eroe di Mille Lotte", - "zamazentaCrowned": "Crowned", - "kubfuSingleStrike": "Single Strike", - "kubfuRapidStrike": "Rapid Strike", + "zamazentaCrowned": "Re degli Scudi", + "kubfuSingleStrike": "Singolcolpo", + "kubfuRapidStrike": "Pluricolpo", "zarudeDada": "Papà", - "calyrexIce": "Ice Rider", - "calyrexShadow": "Shadow Rider", - "basculinMale": "Male", - "basculinFemale": "Female", + "calyrexIce": "Cavaliere Glaciale", + "calyrexShadow": "Cavaliere Spettrale", + "basculinMale": "Maschio", + "basculinFemale": "Femmina", "enamorusIncarnate": "Incarnazione", - "enamorusTherian": "Therian", - "lechonkMale": "Male", - "lechonkFemale": "Female", - "tandemausFour": "Family of Four", - "tandemausThree": "Family of Three", + "enamorusTherian": "Totem", + "lechonkMale": "Maschio", + "lechonkFemale": "Femmina", + "tandemausFour": "Quadrifamiglia", + "tandemausThree": "Trifamiglia", "squawkabillyGreenPlumage": "Piume Verdi", "squawkabillyBluePlumage": "Piume Azzurre", "squawkabillyYellowPlumage": "Piume Gialle", From 6b6ec765bd3cf9cdc250109ca26b8f2640ae19d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:19:08 +0200 Subject: [PATCH 61/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 617ef6682a3..85b90dae493 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -220,8 +220,8 @@ "squawkabillyBluePlumage": "Piume Azzurre", "squawkabillyYellowPlumage": "Piume Gialle", "squawkabillyWhitePlumage": "Piume Bianche", - "finizenZero": "Zero", - "finizenHero": "Hero", + "finizenZero": "Ingenua", + "finizenHero": "Possente", "tatsugiriCurly": "Arcuata", "tatsugiriDroopy": "Adagiata", "tatsugiriStretchy": "Tesa", From 58a31261697f03781d96a4dd8f314bcde11b2ea1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:19:16 +0200 Subject: [PATCH 62/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 85b90dae493..24b697fd837 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -241,18 +241,18 @@ "miraidonGlideMode": "Assetto Planata", "poltchageistCounterfeit": "Taroccata", "poltchageistArtisan": "Pregiata", - "poltchageistUnremarkable": "Unremarkable", - "poltchageistMasterpiece": "Masterpiece", - "ogerponTealMask": "Teal Mask", - "ogerponTealMaskTera": "Teal Mask Terastallized", - "ogerponWellspringMask": "Wellspring Mask", - "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", - "ogerponHearthflameMask": "Hearthflame Mask", - "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", - "ogerponCornerstoneMask": "Cornerstone Mask", - "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", - "terpagosTerastal": "Terastal", - "terpagosStellar": "Stellar", + "poltchageistUnremarkable": "Dozzinale", + "poltchageistMasterpiece": "Eccezionale", + "ogerponTealMask": "Maschera Turchese", + "ogerponTealMaskTera": "Maschera Turchese Teracristal", + "ogerponWellspringMask": "Maschera Pozzo", + "ogerponWellspringMaskTera": "Maschera Pozzo Teracristal", + "ogerponHearthflameMask": "Maschera Focolare", + "ogerponHearthflameMaskTera": "Maschera Focolare Teracristal", + "ogerponCornerstoneMask": "Maschera Fondamenta", + "ogerponCornerstoneMaskTera": "Maschera Fondamenta Teracristal", + "terpagosTerastal": "Teracristal", + "terpagosStellar": "Astrale", "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Combattiva", "paldeaTaurosBlaze": "Infuocata", From 243fb51f4721bc213da9675f841cc9c2575146a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:19:22 +0200 Subject: [PATCH 63/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 24b697fd837..1353db6ca71 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -225,8 +225,8 @@ "tatsugiriCurly": "Arcuata", "tatsugiriDroopy": "Adagiata", "tatsugiriStretchy": "Tesa", - "dunsparceTwo": "Two-Segment", - "dunsparceThree": "Three-Segment", + "dunsparceTwo": "Bimetamero", + "dunsparceThree": "Trimetamero", "gimmighoulChest": "Scrigno", "gimmighoulRoaming": "Ambulante", "koraidonApexBuild": "Foggia Integrale", From 47eb06bde03670de5704b681c3b54afc47abd129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:19:44 +0200 Subject: [PATCH 64/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 1353db6ca71..a9fac90ab7c 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -81,10 +81,10 @@ "keldeoResolute": "Risoluta", "meloettaAria": "Canto", "meloettaPirouette": "Danza", - "genesectShock": "Shock Drive", - "genesectBurn": "Burn Drive", - "genesectChill": "Chill Drive", - "genesectDouse": "Douse Drive", + "genesectShock": "Voltmodulo", + "genesectBurn": "Piromodulo", + "genesectChill": "Gelomodulo", + "genesectDouse": "Idromodulo", "froakieBattleBond": "Morfosintonia", "scatterbugMeadow": "Giardinfiore", "scatterbugIcySnow": "Nevi perenni", From 2c1851c417709eb09ba47cab095fb98740a828e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:19:55 +0200 Subject: [PATCH 65/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index a9fac90ab7c..7853cec3ee6 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -120,10 +120,10 @@ "furfrouLaReine": "Regina", "furfrouKabuki": "Kabuki", "furfrouPharaoh": "Faraone", - "espurrMale": "Male", - "espurrFemale": "Female", - "honedgeShiled": "Shield", - "honedgeBlade": "Blade", + "espurrMale": "Maschio", + "espurrFemale": "Femmina", + "honedgeShiled": "Scudo", + "honedgeBlade": "Spada", "pumpkabooSmall": "Mini", "pumpkabooLarge": "Grande", "pumpkabooSuper": "Maxi", From 7d6d57cb4d345dd8f0fa5ff25e3ae8cb9388b926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:20:03 +0200 Subject: [PATCH 66/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 7853cec3ee6..7a488845f6a 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -134,7 +134,7 @@ "zygarde50Pc": "Forma 50% Sciamefusione", "zygarde10Pc": "Forma 10% Sciamefusione", "zygardeComplete": "Forma perfetta", - "hoopaUnbound": "Unbound", + "hoopaUnbound": "Libero", "oricorioBaile": "Flamenco", "oricorioPompom": "Cheerdance", "oricorioPau": "Hula", From 4eb8173f92b53c147989b4cd7a23ab9f5f590a10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:20:15 +0200 Subject: [PATCH 67/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 44 ++++++++++++++++---------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 7a488845f6a..9c5240a4a78 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -140,28 +140,28 @@ "oricorioPau": "Hula", "oricorioSensu": "Buyō", "rockruffOwnTempo": "Mentelocale", - "rockruffMidday": "Midday", - "rockruffMidnight": "Midnight", - "rockruffMidnight": "Dusk", - "wishiwashiSchool": "School", - "typeNullNormal": "Type: Normal", - "typeNullFighting": "Type: Fighting", - "typeNullFlying": "Type: Flying", - "typeNullPoison": "Type: Poison", - "typeNullGround": "Type: Ground", - "typeNullRock": "Type: Rock", - "typeNullBug": "Type: Bug", - "typeNullGhost": "Type: Ghost", - "typeNullSteel": "Type: Steel", - "typeNullFire": "Type: Fire", - "typeNullWater": "Type: Water", - "typeNullGrass": "Type: Grass", - "typeNullElectric": "Type: Electric", - "typeNullPsychic": "Type: Psychic", - "typeNullIce": "Type: Ice", - "typeNullDragon": "Type: Dragon", - "typeNullDark": "Type: Dark", - "typeNullFairy": "Type: Fairy", + "rockruffMidday": "Giorno", + "rockruffMidnight": "Notte", + "rockruffMidnight": "Crepuscolo", + "wishiwashiSchool": "Banco", + "typeNullNormal": "Tipo Normale", + "typeNullFighting": "Tipo Lotta", + "typeNullFlying": "Tipo Volante", + "typeNullPoison": "Tipo Veleno", + "typeNullGround": "Tipo Terra", + "typeNullRock": "Tipo Roccia", + "typeNullBug": "Tipo Coleottero", + "typeNullGhost": "Tipo Spettro", + "typeNullSteel": "Tipo Acciaio", + "typeNullFire": "Tipo Fuoco", + "typeNullWater": "Tipo Acqua", + "typeNullGrass": "Tipo Erba", + "typeNullElectric": "Tipo Elettro", + "typeNullPsychic": "Tipo Psico", + "typeNullIce": "Tipo Ghiaccio", + "typeNullDragon": "Tipo Drago", + "typeNullDark": "Tipo Buio", + "typeNullFairy": "Tipo Folletto", "miniorRedMeteor": "Nucleo Rosso", "miniorOrangeMeteor": "Nucleo Arancione", "miniorYellowMeteor": "Nucleo Giallo", From e24523be45adc1167b4bc050d1d6580966518b63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:20:29 +0200 Subject: [PATCH 68/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 9c5240a4a78..fa363bcc925 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -178,8 +178,8 @@ "miniorViolet": "Violetto", "mimikyuDisguised": "Mascherata", "mimikyuBusted": "Smascherata", - "necrozmaDuskMane": "Dusk Mane", - "necrozmaDawnWings": "Dawn Wings", + "necrozmaDuskMane": "Criniera del Vespro", + "necrozmaDawnWings": "Ali dell'Aurora", "necrozmaUltra": "Ultra", "magearnaOriginal": "Colore Antico", "marshadowZenith": "Zenith", From 75dbc1fa76806b741a19416672ce136dd65928ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2?= <123510358+NicusPulcis@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:20:43 +0200 Subject: [PATCH 69/84] Update src/locales/it/pokemon-form.json --- src/locales/it/pokemon-form.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index fa363bcc925..b46e00ba3d3 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -185,15 +185,15 @@ "marshadowZenith": "Zenith", "sinisteaPhony": "Contraffatta", "sinisteaAntique": "Autentica", - "milceryVanillaCream": "Vanilla Cream", - "milceryRubyCream": "Ruby Cream", - "milceryMatchaCream": "Matcha Cream", - "milceryMintCream": "Mint Cream", - "milceryLemonCream": "Lemon Cream", - "milcerySaltedCream": "Salted Cream", - "milceryRubySwirl": "Ruby Swirl", - "milceryCaramelSwirl": "Caramel Swirl", - "milceryRainbowSwirl": "Rainbow Swirl", + "milceryVanillaCream": "Lattevaniglia", + "milceryRubyCream": "Latterosa", + "milceryMatchaCream": "Lattematcha", + "milceryMintCream": "Lattementa", + "milceryLemonCream": "Lattelimone", + "milcerySaltedCream": "Lattesale", + "milceryRubySwirl": "Rosamix", + "milceryCaramelSwirl": "Caramelmix", + "milceryRainbowSwirl": "Triplomix", "eiscueNoIce": "Liquefaccia", "indeedeeMale": "Maschio", "indeedeeFemale": "Femmina", From e6ec62d490589d43181948b11764ccdec340756e Mon Sep 17 00:00:00 2001 From: Lugiad Date: Wed, 18 Sep 2024 18:23:45 +0200 Subject: [PATCH 70/84] Update src/locales/ko/pokemon-form.json Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> --- src/locales/ko/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/ko/pokemon-form.json b/src/locales/ko/pokemon-form.json index b9dd2f5fa45..a8ad36feb62 100644 --- a/src/locales/ko/pokemon-form.json +++ b/src/locales/ko/pokemon-form.json @@ -40,9 +40,9 @@ "castformRainy": "빗방울의 모습", "castformSnowy": "설운의 모습", "deoxysNormal": "노말폼", - "deoxysAttack": "Attack", - "deoxysDefense": "Defense", - "deoxysSpeed": "Speed", + "deoxysAttack": "어택폼", + "deoxysDefense": "디펜스폼", + "deoxysSpeed": "스피드폼", "burmyPlant": "초목도롱", "burmySandy": "모래땅도롱", "burmyTrash": "슈레도롱", From 61e50898438dfbe6eea1eb869e6b4cd994435c54 Mon Sep 17 00:00:00 2001 From: EnochG1 Date: Thu, 19 Sep 2024 10:32:30 +0900 Subject: [PATCH 71/84] Add missed keys, make empty-key displayed, change EN to original formName --- src/locales/de/pokemon-form.json | 32 ++- src/locales/en/pokemon-form.json | 290 +++++++++++++++------------- src/locales/es/pokemon-form.json | 31 ++- src/locales/fr/pokemon-form.json | 31 ++- src/locales/it/pokemon-form.json | 31 ++- src/locales/ja/pokemon-form.json | 31 ++- src/locales/ko/pokemon-form.json | 31 ++- src/locales/pt_BR/pokemon-form.json | 31 ++- src/locales/zh_CN/pokemon-form.json | 31 ++- src/locales/zh_TW/pokemon-form.json | 31 ++- src/ui/pokemon-info-container.ts | 37 ++-- 11 files changed, 449 insertions(+), 158 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 5e3217775d3..4930461e824 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -1,4 +1,5 @@ { + "pikachu": "Normal", "pikachuCosplay": "Cosplay", "pikachuCoolCosplay": "Rocker-Pikachu", "pikachuBeautyCosplay": "Damen-Pikachu", @@ -6,7 +7,9 @@ "pikachuSmartCosplay": "Professoren-Pikachu", "pikachuToughCosplay": "Wrestler-Pikachu", "pikachuPartner": "Partner-Pikachu", + "eevee": "Normal", "eeveePartner": "Partner-Evoli", + "pichu": "Normal", "pichuSpiky": "Strubbelohr-Pichu", "unownA": "A", "unownB": "B", @@ -36,6 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", + "castform": "Normal Form", "castformSunny": "Sonnenform", "castformRainy": "Regenform", "castformSnowy": "Schneeform", @@ -50,12 +54,15 @@ "cherubiSunshine": "Sonnenform", "shellosEast": "Östliches Meer", "shellosWest": "Westliches Meer", + "rotom": "Normal", "rotomHeat": "Hitze-Rotom", "rotomWash": "Wasch-Rotom", "rotomFrost": "Frost-Rotom", "rotomFan": "Wirbel-Rotom", "rotomMow": "Schneid-Rotom", + "dialga": "Normal", "dialgaOrigin": "Urform", + "palkia": "Normal", "palkiaOrigin": "Urform", "giratinaAltered": "Wandelform", "giratinaOrigin": "Urform", @@ -64,6 +71,7 @@ "basculinRedStriped": "Rotlinige Form", "basculinBlueStriped": "Blaulinige Form", "basculinWhiteStriped": "Weißlinige Form", + "darumaka": "Standard Mode", "darumakaZen": "Trance-Modus", "deerlingSpring": "Frühlingsform", "deerlingSummer": "Sommerform", @@ -75,17 +83,21 @@ "thundurusTherian": "Tiergeistform", "landorusIncarnate": "Inkarnationsform", "landorusTherian": "Tiergeistform", + "kyurem": "Normal", "kyuremBlack": "Schwarzes Kyurem", "kyuremWhite": "Weißes Kyurem", "keldeoOrdinary": "Standardform", "keldeoResolute": "Resolutform", "meloettaAria": "Gesangsform", "meloettaPirouette": "Tanzform", + "genesect": "Normal", "genesectShock": "Blitzmodul", "genesectBurn": "Flammenmodul", "genesectChill": "Gefriermodul", "genesectDouse": "Aquamodul", + "froakie": "Normal", "froakieBattleBond": "Ash-Form", + "froakieAsh": "Ash", "scatterbugMeadow": "Blumenmeermuster", "scatterbugIcySnow": "Frostmuster", "scatterbugPolar": "Schneefeldmuster", @@ -111,6 +123,7 @@ "flabebeOrange": "Orangeblütler", "flabebeBlue": "Blaublütler", "flabebeWhite": "Weißblütler", + "furfrou": "Natural Form", "furfrouHeart": "Herzchenschnitt", "furfrouStar": "Sternchenschnitt", "furfrouDiamond": "Diamantenschitt", @@ -124,6 +137,7 @@ "espurrFemale": "weiblich", "honedgeShiled": "Schildform", "honedgeBlade": "Klingenform", + "pumpkaboo": "Average Size", "pumpkabooSmall": "Größe S", "pumpkabooLarge": "Größe L", "pumpkabooSuper": "Größe XL", @@ -134,15 +148,18 @@ "zygarde50Pc": "50% Form Scharwandel", "zygarde10Pc": "10% Form Scharwandel", "zygardeComplete": "Optimum-Form", + "hoopa": "Confined", "hoopaUnbound": "Entfesseltes Hoopa", "oricorioBaile": "Flamenco-Stil", "oricorioPompom": "Cheerleading-Stil", "oricorioPau": "Hula-Stil", "oricorioSensu": "Buyo-Stil", + "rockruff": "Normal", "rockruffOwnTempo": "Gleichmut", "rockruffMidday": "Tagform", "rockruffMidnight": "Nachtform", - "rockruffMidnight": "Zwielichtform", + "rockruffDusk": "Zwielichtform", + "wishiwashi": "Solo Form", "wishiwashiSchool": "Schwarmform", "typeNullNormal": "Typ:Normal", "typeNullFighting": "Typ:Kampf", @@ -178,11 +195,19 @@ "miniorViolet": "Violetter Kern", "mimikyuDisguised": "Verkleidete Form", "mimikyuBusted": "Entlarvte Form", + "necrozma": "Normal", "necrozmaDuskMane": "Abendmähne", "necrozmaDawnWings": "Morgenschwingen", "necrozmaUltra": "Ultra-Necrozma", + "magearna": "Normal", "magearnaOriginal": "Originalfarbe", + "marshadow": "Normal", "marshadowZenith": "Zenitform", + "cramorant": "Normal", + "cramorantGulping": "Gulping Form", + "cramorantGorging": "Gorging Form", + "toxelAmped": "Amped Form", + "toxelLowkey": "Low-Key Form", "sinisteaPhony": "Fälschungsform", "sinisteaAntique": "Originalform", "milceryVanillaCream": "Vanille-Creme", @@ -194,6 +219,7 @@ "milceryRubySwirl": "Ruby-Mix", "milceryCaramelSwirl": "Karamell-Mix", "milceryRainbowSwirl": "Trio-Mix", + "eiscue": "Ice Face", "eiscueNoIce": "Wohlfühlkopf", "indeedeeMale": "männlich", "indeedeeFemale": "weiblich", @@ -205,7 +231,9 @@ "zamazentaCrowned": "König des Schildes", "kubfuSingleStrike": "Fokussierter Stil", "kubfuRapidStrike": "Fließender Stil", + "zarude": "Normal", "zarudeDada": "Papa", + "calyrex": "Normal", "calyrexIce": "Schimmelreiter", "calyrexShadow": "Rappenreiter", "basculinMale": "männlich", @@ -251,8 +279,10 @@ "ogerponHearthflameMaskTera": "Ofenmaske (Terakristallisiert)", "ogerponCornerstoneMask": "Fundamentmaske", "ogerponCornerstoneMaskTera": "Fundamentmaske (Terakristallisiert)", + "terpagos": "Normal Form", "terpagosTerastal": "Terakristall-Form", "terpagosStellar": "Stellarform", + "galarDarumaka": "Standard Mode", "galarDarumakaZen": "Trance-Modus", "paldeaTaurosCombat": "Gefechtsvariante", "paldeaTaurosBlaze": "Flammenvariante", diff --git a/src/locales/en/pokemon-form.json b/src/locales/en/pokemon-form.json index 39b9a19eb7b..642d31a2a20 100644 --- a/src/locales/en/pokemon-form.json +++ b/src/locales/en/pokemon-form.json @@ -1,4 +1,5 @@ { + "pikachu": "Normal", "pikachuCosplay": "Cosplay", "pikachuCoolCosplay": "Cool Cosplay", "pikachuBeautyCosplay": "Beauty Cosplay", @@ -6,8 +7,10 @@ "pikachuSmartCosplay": "Smart Cosplay", "pikachuToughCosplay": "Tough Cosplay", "pikachuPartner": "Partner", + "eevee": "Normal", "eeveePartner": "Partner", - "pichuSpiky": "Spiky", + "pichu": "Normal", + "pichuSpiky": "Spiky-Eared", "unownA": "A", "unownB": "B", "unownC": "C", @@ -36,113 +39,127 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - "castformSunny": "Sunny", - "castformRainy": "Rainy", - "castformSnowy": "Snowy", - "deoxysNormal": "Normal", - "deoxysAttack": "Attack", - "deoxysDefense": "Defense", - "deoxysSpeed": "Speed", - "burmyPlant": "Plant", - "burmySandy": "Sandy", - "burmyTrash": "Trash", - "cherubiOvercast": "Overcast", - "cherubiSunshine": "Sunshine", - "shellosEast": "East", - "shellosWest": "West", + "castform": "Normal Form", + "castformSunny": "Sunny Form", + "castformRainy": "Rainy Form", + "castformSnowy": "Snowy Form", + "deoxysNormal": "Normal Forme", + "deoxysAttack": "Attack Forme", + "deoxysDefense": "Defense Forme", + "deoxysSpeed": "Speed Forme", + "burmyPlant": "Plant Cloak", + "burmySandy": "Sandy Cloak", + "burmyTrash": "Trash Cloak", + "cherubiOvercast": "Overcast Form", + "cherubiSunshine": "Sunshine Form", + "shellosEast": "East Sea", + "shellosWest": "West Sea", + "rotom": "Normal", "rotomHeat": "Heat", "rotomWash": "Wash", "rotomFrost": "Frost", "rotomFan": "Fan", "rotomMow": "Mow", - "dialgaOrigin": "Origin", - "palkiaOrigin": "Origin", - "giratinaAltered": "Altered", - "giratinaOrigin": "Origin", - "shayminLand": "Land", - "shayminSky": "Sky", - "basculinRedStriped": "Red Striped", - "basculinBlueStriped": "Blue Striped", - "basculinWhiteStriped": "White Striped", - "darumakaZen": "Zen", - "deerlingSpring": "Spring", - "deerlingSummer": "Summer", - "deerlingAutumn": "Autumn", - "deerlingWinter": "Winter", - "tornadusIncarnate": "Incarnate", - "tornadusTherian": "Therian", - "thundurusIncarnate": "Incarnate", - "thundurusTherian": "Therian", - "landorusIncarnate": "Incarnate", - "landorusTherian": "Therian", + "dialga": "Normal", + "dialgaOrigin": "Origin Forme", + "palkia": "Normal", + "palkiaOrigin": "Origin Forme", + "giratinaAltered": "Altered Forme", + "giratinaOrigin": "Origin Forme", + "shayminLand": "Land Forme", + "shayminSky": "Sky Forme", + "basculinRedStriped": "Red-Striped Form", + "basculinBlueStriped": "Blue-Striped Form", + "basculinWhiteStriped": "White-Striped Form", + "darumaka": "Standard Mode", + "darumakaZen": "Zen Mode", + "deerlingSpring": "Spring Form", + "deerlingSummer": "Summer Form", + "deerlingAutumn": "Autumn Form", + "deerlingWinter": "Winter Form", + "tornadusIncarnate": "Incarnate Forme", + "tornadusTherian": "Therian Forme", + "thundurusIncarnate": "Incarnate Forme", + "thundurusTherian": "Therian Forme", + "landorusIncarnate": "Incarnate Forme", + "landorusTherian": "Therian Forme", + "kyurem": "Normal", "kyuremBlack": "Black", "kyuremWhite": "White", - "keldeoOrdinary": "Ordinary", + "keldeoOrdinary": "Ordinary Form", "keldeoResolute": "Resolute", - "meloettaAria": "Aria", - "meloettaPirouette": "Pirouette", + "meloettaAria": "Aria Forme", + "meloettaPirouette": "Pirouette Forme", + "genesect": "Normal", "genesectShock": "Shock Drive", "genesectBurn": "Burn Drive", "genesectChill": "Chill Drive", "genesectDouse": "Douse Drive", + "froakie": "Normal", "froakieBattleBond": "Battle Bond", - "scatterbugMeadow": "Meadow", - "scatterbugIcySnow": "Icy Snow", - "scatterbugPolar": "Polar", - "scatterbugTundra": "Tundra", - "scatterbugContinental": "Continental", - "scatterbugGarden": "Garden", - "scatterbugElegant": "Elegant", - "scatterbugModern": "Modern", - "scatterbugMarine": "Marine", - "scatterbugArchipelago": "Archipelago", - "scatterbugHighPlains": "High Plains", - "scatterbugSandstorm": "Sandstorm", - "scatterbugRiver": "River", - "scatterbugMonsoon": "Monsoon", - "scatterbugSavanna": "Savanna", - "scatterbugSun": "Sun", - "scatterbugOcean": "Ocean", - "scatterbugJungle": "Jungle", - "scatterbugFancy": "Fancy", - "scatterbugPokeBall": "Poké Ball", - "flabebeRed": "Red", - "flabebeYellow": "Yellow", - "flabebeOrange": "Orange", - "flabebeBlue": "Blue", - "flabebeWhite": "White", - "furfrouHeart": "Heart", - "furfrouStar": "Star", - "furfrouDiamond": "Diamond", - "furfrouDebutante": "Debutante", - "furfrouMatron": "Matron", - "furfrouDandy": "Dandy", - "furfrouLaReine": "La Reine", - "furfrouKabuki": "Kabuki", - "furfrouPharaoh": "Pharaoh", + "froakieAsh": "Ash", + "scatterbugMeadow": "Meadow Pattern", + "scatterbugIcySnow": "Icy Snow Pattern", + "scatterbugPolar": "Polar Pattern", + "scatterbugTundra": "Tundra Pattern", + "scatterbugContinental": "Continental Pattern", + "scatterbugGarden": "Garden Pattern", + "scatterbugElegant": "Elegant Pattern", + "scatterbugModern": "Modern Pattern", + "scatterbugMarine": "Marine Pattern", + "scatterbugArchipelago": "Archipelago Pattern", + "scatterbugHighPlains": "High Plains Pattern", + "scatterbugSandstorm": "Sandstorm Pattern", + "scatterbugRiver": "River Pattern", + "scatterbugMonsoon": "Monsoon Pattern", + "scatterbugSavanna": "Savanna Pattern", + "scatterbugSun": "Sun Pattern", + "scatterbugOcean": "Ocean Pattern", + "scatterbugJungle": "Jungle Pattern", + "scatterbugFancy": "Fancy Pattern", + "scatterbugPokeBall": "Poké Ball Pattern", + "flabebeRed": "Red Flower", + "flabebeYellow": "Yellow Flower", + "flabebeOrange": "Orange Flower", + "flabebeBlue": "Blue Flower", + "flabebeWhite": "White Flower", + "furfrou": "Natural Form", + "furfrouHeart": "Heart Trim", + "furfrouStar": "Star Trim", + "furfrouDiamond": "Diamond Trim", + "furfrouDebutante": "Debutante Trim", + "furfrouMatron": "Matron Trim", + "furfrouDandy": "Dandy Trim", + "furfrouLaReine": "La Reine Trim", + "furfrouKabuki": "Kabuki Trim", + "furfrouPharaoh": "Pharaoh Trim", "espurrMale": "Male", "espurrFemale": "Female", - "honedgeShiled": "Shield", - "honedgeBlade": "Blade", - "pumpkabooSmall": "Small", - "pumpkabooLarge": "Large", - "pumpkabooSuper": "Super", - "xerneasNeutral": "Neutral", - "xerneasActive": "Active", + "honedgeShiled": "Shield Forme", + "honedgeBlade": "Blade Forme", + "pumpkaboo": "Average Size", + "pumpkabooSmall": "Small Size", + "pumpkabooLarge": "Large Size", + "pumpkabooSuper": "Super Size", + "xerneasNeutral": "Neutral Mode", + "xerneasActive": "Active Mode", "zygarde50": "50% Forme", "zygarde10": "10% Forme", "zygarde50Pc": "50% Forme Power Construct", "zygarde10Pc": "10% Forme Power Construct", "zygardeComplete": "Complete Forme", + "hoopa": "Confined", "hoopaUnbound": "Unbound", - "oricorioBaile": "Baile", - "oricorioPompom": "Pom-Pom", - "oricorioPau": "Pau", - "oricorioSensu": "Sensu", + "oricorioBaile": "Baile Style", + "oricorioPompom": "Pom-Pom Style", + "oricorioPau": "Pau Style", + "oricorioSensu": "Sensu Style", + "rockruff": "Normal", "rockruffOwnTempo": "Own Tempo", - "rockruffMidday": "Midday", - "rockruffMidnight": "Midnight", - "rockruffMidnight": "Dusk", + "rockruffMidday": "Midday Form", + "rockruffMidnight": "Midnight Form", + "rockruffDusk": "Dusk Form", + "wishiwashi": "Solo Form", "wishiwashiSchool": "School", "typeNullNormal": "Type: Normal", "typeNullFighting": "Type: Fighting", @@ -162,29 +179,37 @@ "typeNullDragon": "Type: Dragon", "typeNullDark": "Type: Dark", "typeNullFairy": "Type: Fairy", - "miniorRedMeteor": "Red Meteor", - "miniorOrangeMeteor": "Orange Meteor", - "miniorYellowMeteor": "Yellow Meteor", - "miniorGreenMeteor": "Green Meteor", - "miniorBlueMeteor": "Blue Meteor", - "miniorIndigoMeteor": "Indigo Meteor", - "miniorVioletMeteor": "Violet Meteor", - "miniorRed": "Red", - "miniorOrange": "Orange", - "miniorYellow": "Yellow", - "miniorGreen": "Green", - "miniorBlue": "Blue", - "miniorIndigo": "Indigo", - "miniorViolet": "Violet", - "mimikyuDisguised": "Disguised", - "mimikyuBusted": "Busted", + "miniorRedMeteor": "Red Meteor Form", + "miniorOrangeMeteor": "Orange Meteor Form", + "miniorYellowMeteor": "Yellow Meteor Form", + "miniorGreenMeteor": "Green Meteor Form", + "miniorBlueMeteor": "Blue Meteor Form", + "miniorIndigoMeteor": "Indigo Meteor Form", + "miniorVioletMeteor": "Violet Meteor Form", + "miniorRed": "Red Core Form", + "miniorOrange": "Orange Core Form", + "miniorYellow": "Yellow Core Form", + "miniorGreen": "Green Core Form", + "miniorBlue": "Blue Core Form", + "miniorIndigo": "Indigo Core Form", + "miniorViolet": "Violet Core Form", + "mimikyuDisguised": "Disguised Form", + "mimikyuBusted": "Busted Form", + "necrozma": "Normal", "necrozmaDuskMane": "Dusk Mane", "necrozmaDawnWings": "Dawn Wings", "necrozmaUltra": "Ultra", + "magearna": "Normal", "magearnaOriginal": "Original", + "marshadow": "Normal", "marshadowZenith": "Zenith", - "sinisteaPhony": "Phony", - "sinisteaAntique": "Antique", + "cramorant": "Normal", + "cramorantGulping": "Gulping Form", + "cramorantGorging": "Gorging Form", + "toxelAmped": "Amped Form", + "toxelLowkey": "Low-Key Form", + "sinisteaPhony": "Phony Form", + "sinisteaAntique": "Antique Form", "milceryVanillaCream": "Vanilla Cream", "milceryRubyCream": "Ruby Cream", "milceryMatchaCream": "Matcha Cream", @@ -194,24 +219,27 @@ "milceryRubySwirl": "Ruby Swirl", "milceryCaramelSwirl": "Caramel Swirl", "milceryRainbowSwirl": "Rainbow Swirl", + "eiscue": "Ice Face", "eiscueNoIce": "No Ice", "indeedeeMale": "Male", "indeedeeFemale": "Female", - "morpekoFullBelly": "Full Belly", - "morpekoHangry": "Hangry", + "morpekoFullBelly": "Full Belly Mode", + "morpekoHangry": "Hangry Mode", "zacianHeroOfManyBattles": "Hero Of Many Battles", "zacianCrowned": "Crowned", "zamazentaHeroOfManyBattles": "Hero Of Many Battles", "zamazentaCrowned": "Crowned", - "kubfuSingleStrike": "Single Strike", - "kubfuRapidStrike": "Rapid Strike", + "kubfuSingleStrike": "Single Strike Style", + "kubfuRapidStrike": "Rapid Strike Style", + "zarude": "Normal", "zarudeDada": "Dada", + "calyrex": "Normal", "calyrexIce": "Ice Rider", "calyrexShadow": "Shadow Rider", "basculinMale": "Male", "basculinFemale": "Female", - "enamorusIncarnate": "Incarnate", - "enamorusTherian": "Therian", + "enamorusIncarnate": "Incarnate Forme", + "enamorusTherian": "Therian Forme", "lechonkMale": "Male", "lechonkFemale": "Female", "tandemausFour": "Family of Four", @@ -220,29 +248,29 @@ "squawkabillyBluePlumage": "Blue Plumage", "squawkabillyYellowPlumage": "Yellow Plumage", "squawkabillyWhitePlumage": "White Plumage", - "finizenZero": "Zero", - "finizenHero": "Hero", - "tatsugiriCurly": "Curly", - "tatsugiriDroopy": "Droopy", - "tatsugiriStretchy": "Stretchy", - "dunsparceTwo": "Two-Segment", - "dunsparceThree": "Three-Segment", - "gimmighoulChest": "Chest", - "gimmighoulRoaming": "Roaming", + "finizenZero": "Zero Form", + "finizenHero": "Hero Form", + "tatsugiriCurly": "Curly Form", + "tatsugiriDroopy": "Droopy Form", + "tatsugiriStretchy": "Stretchy Form", + "dunsparceTwo": "Two-Segment Form", + "dunsparceThree": "Three-Segment Form", + "gimmighoulChest": "Chest Form", + "gimmighoulRoaming": "Roaming Form", "koraidonApexBuild": "Apex Build", "koraidonLimitedBuild": "Limited Build", "koraidonSprintingBuild": "Sprinting Build", "koraidonSwimmingBuild": "Swimming Build", "koraidonGlidingBuild": "Gliding Build", "miraidonUltimateMode": "Ultimate Mode", - "miraidonLowPowerMode": "Low Power Mode", + "miraidonLowPowerMode": "Low-Power Mode", "miraidonDriveMode": "Drive Mode", "miraidonAquaticMode": "Aquatic Mode", "miraidonGlideMode": "Glide Mode", - "poltchageistCounterfeit": "Counterfeit", - "poltchageistArtisan": "Artisan", - "poltchageistUnremarkable": "Unremarkable", - "poltchageistMasterpiece": "Masterpiece", + "poltchageistCounterfeit": "Counterfeit Form", + "poltchageistArtisan": "Artisan Form", + "poltchageistUnremarkable": "Unremarkable Form", + "poltchageistMasterpiece": "Masterpiece Form", "ogerponTealMask": "Teal Mask", "ogerponTealMaskTera": "Teal Mask Terastallized", "ogerponWellspringMask": "Wellspring Mask", @@ -251,10 +279,12 @@ "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", "ogerponCornerstoneMask": "Cornerstone Mask", "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", - "terpagosTerastal": "Terastal", - "terpagosStellar": "Stellar", - "galarDarumakaZen": "Zen", - "paldeaTaurosCombat": "Combat", - "paldeaTaurosBlaze": "Blaze", - "paldeaTaurosAqua": "Aqua" + "terpagos": "Normal Form", + "terpagosTerastal": "Terastal Form", + "terpagosStellar": "Stellar Form", + "galarDarumaka": "Standard Mode", + "galarDarumakaZen": "Zen Mode", + "paldeaTaurosCombat": "Combat Breed", + "paldeaTaurosBlaze": "Blaze Breed", + "paldeaTaurosAqua": "Aqua Breed" } diff --git a/src/locales/es/pokemon-form.json b/src/locales/es/pokemon-form.json index baf0e273cc4..bdd3eed56d1 100644 --- a/src/locales/es/pokemon-form.json +++ b/src/locales/es/pokemon-form.json @@ -1,4 +1,5 @@ { + "pikachu": "Normal", "pikachuCosplay": "Coqueta", "pikachuCoolCosplay": "Roquera", "pikachuBeautyCosplay": "Aristócrata", @@ -6,7 +7,9 @@ "pikachuSmartCosplay": "Erudita", "pikachuToughCosplay": "Enmascarada", "pikachuPartner": "Compañero", + "eevee": "Normal", "eeveePartner": "Compañero", + "pichu": "Normal", "pichuSpiky": "Picoreja", "unownA": "A", "unownB": "B", @@ -36,6 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", + "castform": "Normal Form", "castformSunny": "Sol", "castformRainy": "Lluvia", "castformSnowy": "Nieve", @@ -50,12 +54,15 @@ "cherubiSunshine": "Soleado", "shellosEast": "Este", "shellosWest": "Oeste", + "rotom": "Normal", "rotomHeat": "Calor", "rotomWash": "Lavado", "rotomFrost": "Frío", "rotomFan": "Ventilador", "rotomMow": "Corte", + "dialga": "Normal", "dialgaOrigin": "Origen", + "palkia": "Normal", "palkiaOrigin": "Origen", "giratinaAltered": "Modificada", "giratinaOrigin": "Origen", @@ -64,6 +71,7 @@ "basculinRedStriped": "Raya Roja", "basculinBlueStriped": "Raya Azul", "basculinWhiteStriped": "Raya Blanca", + "darumaka": "Standard Mode", "darumakaZen": "Daruma", "deerlingSpring": "Primavera", "deerlingSummer": "Verano", @@ -75,17 +83,21 @@ "thundurusTherian": "Tótem", "landorusIncarnate": "Avatar", "landorusTherian": "Tótem", + "kyurem": "Normal", "kyuremBlack": "Negro", "kyuremWhite": "Blanco", "keldeoOrdinary": "Habitual", "keldeoResolute": "Brío", "meloettaAria": "Lírica", "meloettaPirouette": "Danza", + "genesect": "Normal", "genesectShock": "FulgoROM", "genesectBurn": "PiroROM", "genesectChill": "CrioROM", "genesectDouse": "HidroROM", + "froakie": "Normal", "froakieBattleBond": "Fuerte Afecto", + "froakieAsh": "Ash", "scatterbugMeadow": "Floral", "scatterbugIcySnow": "Polar", "scatterbugPolar": "Taiga", @@ -111,6 +123,7 @@ "flabebeOrange": "Naranja", "flabebeBlue": "Azul", "flabebeWhite": "Blanco", + "furfrou": "Natural Form", "furfrouHeart": "Corazón", "furfrouStar": "Estrella", "furfrouDiamond": "Diamante", @@ -124,6 +137,7 @@ "espurrFemale": "Hembra", "honedgeShiled": "Escudo", "honedgeBlade": "Filo", + "pumpkaboo": "Average Size", "pumpkabooSmall": "Pequeño", "pumpkabooLarge": "Grande", "pumpkabooSuper": "Enorme", @@ -134,15 +148,18 @@ "zygarde50Pc": "Zygarde al 50%", "zygarde10Pc": "Zygarde al 10%", "zygardeComplete": "Zygarde Completo", + "hoopa": "Confined", "hoopaUnbound": "Desatado", "oricorioBaile": "Apasionado", "oricorioPompom": "Animado", "oricorioPau": "Plácido", "oricorioSensu": "Refinado", + "rockruff": "Normal", "rockruffOwnTempo": "Ritmo Propio", "rockruffMidday": "Diurna", "rockruffMidnight": "Nocturna", - "rockruffMidnight": "Crepuscular", + "rockruffDusk": "Crepuscular", + "wishiwashi": "Solo Form", "wishiwashiSchool": "Banco", "typeNullNormal": "Tipo Normal", "typeNullFighting": "Tipo Lucha", @@ -178,11 +195,19 @@ "miniorViolet": "Violeta", "mimikyuDisguised": "Encubierta", "mimikyuBusted": "Descubierta", + "necrozma": "Normal", "necrozmaDuskMane": "Melena Crepuscular", "necrozmaDawnWings": "Asas Alvorada", "necrozmaUltra": "Ultra", + "magearna": "Normal", "magearnaOriginal": "Vetusto", + "marshadow": "Normal", "marshadowZenith": "Cénit", + "cramorant": "Normal", + "cramorantGulping": "Gulping Form", + "cramorantGorging": "Gorging Form", + "toxelAmped": "Amped Form", + "toxelLowkey": "Low-Key Form", "sinisteaPhony": "Falsificada", "sinisteaAntique": "Genuina", "milceryVanillaCream": "Crema de Vainilla", @@ -194,6 +219,7 @@ "milceryRubySwirl": "Mezcla Rosa", "milceryCaramelSwirl": "Mezcla Caramelo", "milceryRainbowSwirl": "Tres Sabores", + "eiscue": "Ice Face", "eiscueNoIce": "Cara Deshielo", "indeedeeMale": "Macho", "indeedeeFemale": "Hembra", @@ -205,7 +231,9 @@ "zamazentaCrowned": "Escudo Supremo", "kubfuSingleStrike": "Estilo Brusco", "kubfuRapidStrike": "Estilo Fluido", + "zarude": "Normal", "zarudeDada": "Papá", + "calyrex": "Normal", "calyrexIce": "Jinete Glacial", "calyrexShadow": "Jinete Espectral", "basculinMale": "Macho", @@ -251,6 +279,7 @@ "ogerponHearthflameMaskTera": "Máscara Horno Teracristal", "ogerponCornerstoneMask": "Máscara Cimiento", "ogerponCornerstoneMaskTera": "Máscara Cimiento Teracristal", + "terpagos": "Normal Form", "terpagosTerastal": "Teracristal", "terpagosStellar": "Astral", "galarDarumakaZen": "Daruma", diff --git a/src/locales/fr/pokemon-form.json b/src/locales/fr/pokemon-form.json index 0503890472d..44904bd396e 100644 --- a/src/locales/fr/pokemon-form.json +++ b/src/locales/fr/pokemon-form.json @@ -1,4 +1,5 @@ { + "pikachu": "Normal", "pikachuCosplay": "Cosplayeur", "pikachuCoolCosplay": "Cosplay Rockeur", "pikachuBeautyCosplay": "Cosplay Lady", @@ -6,7 +7,9 @@ "pikachuSmartCosplay": "Cosplay Docteur", "pikachuToughCosplay": "Cosplay Catcheur", "pikachuPartner": "Partenaire", + "eevee": "Normal", "eeveePartner": "Partenaire", + "pichu": "Normal", "pichuSpiky": "Troizépi", "unownA": "A", "unownB": "B", @@ -36,6 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", + "castform": "Normal Form", "castformSunny": "Solaire", "castformRainy": "Eau de Pluie", "castformSnowy": "Blizzard", @@ -50,12 +54,15 @@ "cherubiSunshine": "Ensoleillé", "shellosEast": "Orient", "shellosWest": "Occident", + "rotom": "Normal", "rotomHeat": "Chaleur", "rotomWash": "Lavage", "rotomFrost": "Froid", "rotomFan": "Hélice", "rotomMow": "Tonte", + "dialga": "Normal", "dialgaOrigin": "Originel", + "palkia": "Normal", "palkiaOrigin": "Originel", "giratinaAltered": "Alternatif", "giratinaOrigin": "Originel", @@ -64,6 +71,7 @@ "basculinRedStriped": "Motif Rouge", "basculinBlueStriped": "Motif Bleu", "basculinWhiteStriped": "Motif Blanc", + "darumaka": "Standard Mode", "darumakaZen": "Zen", "deerlingSpring": "Printemps", "deerlingSummer": "Été", @@ -75,17 +83,21 @@ "thundurusTherian": "Totémique", "landorusIncarnate": "Avatar", "landorusTherian": "Totémique", + "kyurem": "Normal", "kyuremBlack": "Noir", "kyuremWhite": "Blanc", "keldeoOrdinary": "Normal", "keldeoResolute": "Décidé", "meloettaAria": "Chant", "meloettaPirouette": "Danse", + "genesect": "Normal", "genesectShock": "Module Choc", "genesectBurn": "Module Pyro", "genesectChill": "Module Cryo", "genesectDouse": "Module Aqua", + "froakie": "Normal", "froakieBattleBond": "Synergie", + "froakieAsh": "Ash", "scatterbugMeadow": "Floraison", "scatterbugIcySnow": "Blizzard", "scatterbugPolar": "Banquise", @@ -111,6 +123,7 @@ "flabebeOrange": "Orange", "flabebeBlue": "Bleu", "flabebeWhite": "Blanc", + "furfrou": "Natural Form", "furfrouHeart": "Cœur", "furfrouStar": "Étoile", "furfrouDiamond": "Diamant", @@ -124,6 +137,7 @@ "espurrFemale": "Femelle", "honedgeShiled": "Parade", "honedgeBlade": "Assaut", + "pumpkaboo": "Average Size", "pumpkabooSmall": "Mini", "pumpkabooLarge": "Maxi", "pumpkabooSuper": "Ultra", @@ -133,16 +147,19 @@ "zygarde10": "Forme 10%", "zygarde50Pc": "Rassemblement Forme 50%", "zygarde10Pc": "Rassemblement Forme 10%", + "hoopa": "Confined", "hoopaUnbound": "Déchainé", "zygardeComplete": "Parfait", "oricorioBaile": "Flamenco", "oricorioPompom": "Pom-Pom", "oricorioPau": "Hula", "oricorioSensu": "Buyō", + "rockruff": "Normal", "rockruffOwnTempo": "Tempo Perso", "rockruffMidday": "Diurne", "rockruffMidnight": "Nocturne", - "rockruffMidnight": "Crépusculaire", + "rockruffDusk": "Crépusculaire", + "wishiwashi": "Solo Form", "wishiwashiSchool": "Banc", "typeNullNormal": "Type: Normal", "typeNullFighting": "Type: Combat", @@ -178,11 +195,19 @@ "miniorViolet": "Violet", "mimikyuDisguised": "Déguisé", "mimikyuBusted": "Démasqué", + "necrozma": "Normal", "necrozmaDuskMane": "Crinière du Couchant", "necrozmaDawnWings": "Ailes de l’Aurore", "necrozmaUltra": "Ultra", + "magearna": "Normal", "magearnaOriginal": "Couleur du Passé", + "marshadow": "Normal", "marshadowZenith": "Zénith", + "cramorant": "Normal", + "cramorantGulping": "Gulping Form", + "cramorantGorging": "Gorging Form", + "toxelAmped": "Amped Form", + "toxelLowkey": "Low-Key Form", "sinisteaPhony": "Contrefaçon", "sinisteaAntique": "Authentique", "milceryVanillaCream": "Lait Vanille", @@ -194,6 +219,7 @@ "milceryRubySwirl": "Mélange Ruby", "milceryCaramelSwirl": "Mélange Caramel", "milceryRainbowSwirl": "Mélange Tricolore", + "eiscue": "Ice Face", "eiscueNoIce": "Tête Dégel", "indeedeeMale": "Mâle", "indeedeeFemale": "Femelle", @@ -205,7 +231,9 @@ "zamazentaCrowned": "Bouclier Suprême", "kubfuSingleStrike": "Poing Final", "kubfuRapidStrike": "Mille Poings", + "zarude": "Normal", "zarudeDada": "Papa", + "calyrex": "Normal", "calyrexIce": "Cavalier du Froid", "calyrexShadow": "Cavalier d’Effroi", "basculinMale": "Mâle", @@ -251,6 +279,7 @@ "ogerponHearthflameMaskTera": "Masque du Fourneau Téracristal", "ogerponCornerstoneMask": "Masque de la Pierre", "ogerponCornerstoneMaskTera": "Masque de la Pierre Téracristal", + "terpagos": "Normal Form", "terpagosTerastal": "Téracristal", "terpagosStellar": "Stellaire", "galarDarumakaZen": "Zen", diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index b46e00ba3d3..15feea0c221 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -1,4 +1,5 @@ { + "pikachu": "Normal", "pikachuCosplay": "Cosplay", "pikachuCoolCosplay": "Cosplay classe", "pikachuBeautyCosplay": "Cosplay bellezza", @@ -6,7 +7,9 @@ "pikachuSmartCosplay": "Cosplay acume", "pikachuToughCosplay": "Cosplay grinta", "pikachuPartner": "Compagno", + "eevee": "Normal", "eeveePartner": "Compagno", + "pichu": "Normal", "pichuSpiky": "Spunzorek", "unownA": "A", "unownB": "B", @@ -36,6 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", + "castform": "Normal Form", "castformSunny": "Sole", "castformRainy": "Pioggia", "castformSnowy": "Nuvola di neve", @@ -50,12 +54,15 @@ "cherubiSunshine": "Splendore", "shellosEast": "Est", "shellosWest": "Ovest", + "rotom": "Normal", "rotomHeat": "Calore", "rotomWash": "Lavaggio", "rotomFrost": "Gelo", "rotomFan": "Vortice", "rotomMow": "Taglio", + "dialga": "Normal", "dialgaOrigin": "Originale", + "palkia": "Normal", "palkiaOrigin": "Originale", "giratinaAltered": "Alterata", "giratinaOrigin": "Originale", @@ -64,6 +71,7 @@ "basculinRedStriped": "Linearossa", "basculinBlueStriped": "Lineablu", "basculinWhiteStriped": "Lineabianca", + "darumaka": "Standard Mode", "darumakaZen": "Zen", "deerlingSpring": "Primavera", "deerlingSummer": "Estate", @@ -75,17 +83,21 @@ "thundurusTherian": "Totem", "landorusIncarnate": "Incarnazione", "landorusTherian": "Totem", + "kyurem": "Normal", "kyuremBlack": "Nero", "kyuremWhite": "Bianco", "keldeoOrdinary": "Normale", "keldeoResolute": "Risoluta", "meloettaAria": "Canto", "meloettaPirouette": "Danza", + "genesect": "Normal", "genesectShock": "Voltmodulo", "genesectBurn": "Piromodulo", "genesectChill": "Gelomodulo", "genesectDouse": "Idromodulo", + "froakie": "Normal", "froakieBattleBond": "Morfosintonia", + "froakieAsh": "Ash", "scatterbugMeadow": "Giardinfiore", "scatterbugIcySnow": "Nevi perenni", "scatterbugPolar": "Nordico", @@ -111,6 +123,7 @@ "flabebeOrange": "Arancione", "flabebeBlue": "Blu", "flabebeWhite": "Bianco", + "furfrou": "Natural Form", "furfrouHeart": "Cuore", "furfrouStar": "Stella", "furfrouDiamond": "Diamante", @@ -124,6 +137,7 @@ "espurrFemale": "Femmina", "honedgeShiled": "Scudo", "honedgeBlade": "Spada", + "pumpkaboo": "Average Size", "pumpkabooSmall": "Mini", "pumpkabooLarge": "Grande", "pumpkabooSuper": "Maxi", @@ -134,15 +148,18 @@ "zygarde50Pc": "Forma 50% Sciamefusione", "zygarde10Pc": "Forma 10% Sciamefusione", "zygardeComplete": "Forma perfetta", + "hoopa": "Confined", "hoopaUnbound": "Libero", "oricorioBaile": "Flamenco", "oricorioPompom": "Cheerdance", "oricorioPau": "Hula", "oricorioSensu": "Buyō", + "rockruff": "Normal", "rockruffOwnTempo": "Mentelocale", "rockruffMidday": "Giorno", "rockruffMidnight": "Notte", - "rockruffMidnight": "Crepuscolo", + "rockruffDusk": "Crepuscolo", + "wishiwashi": "Solo Form", "wishiwashiSchool": "Banco", "typeNullNormal": "Tipo Normale", "typeNullFighting": "Tipo Lotta", @@ -178,11 +195,19 @@ "miniorViolet": "Violetto", "mimikyuDisguised": "Mascherata", "mimikyuBusted": "Smascherata", + "necrozma": "Normal", "necrozmaDuskMane": "Criniera del Vespro", "necrozmaDawnWings": "Ali dell'Aurora", "necrozmaUltra": "Ultra", + "magearna": "Normal", "magearnaOriginal": "Colore Antico", + "marshadow": "Normal", "marshadowZenith": "Zenith", + "cramorant": "Normal", + "cramorantGulping": "Gulping Form", + "cramorantGorging": "Gorging Form", + "toxelAmped": "Amped Form", + "toxelLowkey": "Low-Key Form", "sinisteaPhony": "Contraffatta", "sinisteaAntique": "Autentica", "milceryVanillaCream": "Lattevaniglia", @@ -194,6 +219,7 @@ "milceryRubySwirl": "Rosamix", "milceryCaramelSwirl": "Caramelmix", "milceryRainbowSwirl": "Triplomix", + "eiscue": "Ice Face", "eiscueNoIce": "Liquefaccia", "indeedeeMale": "Maschio", "indeedeeFemale": "Femmina", @@ -205,7 +231,9 @@ "zamazentaCrowned": "Re degli Scudi", "kubfuSingleStrike": "Singolcolpo", "kubfuRapidStrike": "Pluricolpo", + "zarude": "Normal", "zarudeDada": "Papà", + "calyrex": "Normal", "calyrexIce": "Cavaliere Glaciale", "calyrexShadow": "Cavaliere Spettrale", "basculinMale": "Maschio", @@ -251,6 +279,7 @@ "ogerponHearthflameMaskTera": "Maschera Focolare Teracristal", "ogerponCornerstoneMask": "Maschera Fondamenta", "ogerponCornerstoneMaskTera": "Maschera Fondamenta Teracristal", + "terpagos": "Normal Form", "terpagosTerastal": "Teracristal", "terpagosStellar": "Astrale", "galarDarumakaZen": "Zen", diff --git a/src/locales/ja/pokemon-form.json b/src/locales/ja/pokemon-form.json index 4f8cd7e937e..2575778726d 100644 --- a/src/locales/ja/pokemon-form.json +++ b/src/locales/ja/pokemon-form.json @@ -1,4 +1,5 @@ { + "pikachu": "Normal", "pikachuCosplay": "コスプレ", "pikachuCoolCosplay": "クールなコスプレ", "pikachuBeautyCosplay": "きれいなコスプレ", @@ -6,7 +7,9 @@ "pikachuSmartCosplay": "かしこいコスプレ", "pikachuToughCosplay": "パワフルなコスプレ", "pikachuPartner": "パートナー", + "eevee": "Normal", "eeveePartner": "パートナー", + "pichu": "Normal", "pichuSpiky": "ギザみみ", "unownA": "A", "unownB": "B", @@ -36,6 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", + "castform": "Normal Form", "castformSunny": "たいよう", "castformRainy": "あまみず", "castformSnowy": "ゆきぐも", @@ -50,12 +54,15 @@ "cherubiSunshine": "Sunshine", "shellosEast": "ひがし", "shellosWest": "にし", + "rotom": "Normal", "rotomHeat": "ヒート", "rotomWash": "ウォッシュ", "rotomFrost": "フロスト", "rotomFan": "スピン", "rotomMow": "カット", + "dialga": "Normal", "dialgaOrigin": "Origin", + "palkia": "Normal", "palkiaOrigin": "Origin", "giratinaAltered": "アナザー", "giratinaOrigin": "Origin", @@ -64,6 +71,7 @@ "basculinRedStriped": "赤筋", "basculinBlueStriped": "青筋", "basculinWhiteStriped": "白筋", + "darumaka": "Standard Mode", "darumakaZen": "Zen", "deerlingSpring": "春", "deerlingSummer": "夏", @@ -75,17 +83,21 @@ "thundurusTherian": "Therian", "landorusIncarnate": "けしん", "landorusTherian": "Therian", + "kyurem": "Normal", "kyuremBlack": "Black", "kyuremWhite": "White", "keldeoOrdinary": "いつも", "keldeoResolute": "Resolute", "meloettaAria": "ボイス", "meloettaPirouette": "ステップ", + "genesect": "Normal", "genesectShock": "Shock Drive", "genesectBurn": "Burn Drive", "genesectChill": "Chill Drive", "genesectDouse": "Douse Drive", + "froakie": "Normal", "froakieBattleBond": "きずなへんげ", + "froakieAsh": "Ash", "scatterbugMeadow": "はなぞの", "scatterbugIcySnow": "ひょうせつ", "scatterbugPolar": "ゆきぐに", @@ -111,6 +123,7 @@ "flabebeOrange": "オレンジ", "flabebeBlue": "青", "flabebeWhite": "白", + "furfrou": "Natural Form", "furfrouHeart": "ハート", "furfrouStar": "スター", "furfrouDiamond": "ダイア", @@ -124,6 +137,7 @@ "espurrFemale": "Female", "honedgeShiled": "Shield", "honedgeBlade": "Blade", + "pumpkaboo": "Average Size", "pumpkabooSmall": "ちいさい", "pumpkabooLarge": "おおきい", "pumpkabooSuper": "とくだい", @@ -134,15 +148,18 @@ "zygarde50Pc": "50%フォルム スワームチェンジ", "zygarde10Pc": "10%フォルム スワームチェンジ", "zygardeComplete": "パーフェクトフォルム", + "hoopa": "Confined", "hoopaUnbound": "Unbound", "oricorioBaile": "めらめら", "oricorioPompom": "ぱちぱち", "oricorioPau": "ふらふら", "oricorioSensu": "まいまい", + "rockruff": "Normal", "rockruffOwnTempo": "マイペース", "rockruffMidday": "Midday", "rockruffMidnight": "Midnight", - "rockruffMidnight": "Dusk", + "rockruffDusk": "Dusk", + "wishiwashi": "Solo Form", "wishiwashiSchool": "School", "typeNullNormal": "Type: Normal", "typeNullFighting": "Type: Fighting", @@ -178,11 +195,19 @@ "miniorViolet": "紫", "mimikyuDisguised": "ばけたすがた", "mimikyuBusted": "ばれたすがた", + "necrozma": "Normal", "necrozmaDuskMane": "Dusk Mane", "necrozmaDawnWings": "Dawn Wings", "necrozmaUltra": "Ultra", + "magearna": "Normal", "magearnaOriginal": "500ねんまえ", + "marshadow": "Normal", "marshadowZenith": "Zパワー", + "cramorant": "Normal", + "cramorantGulping": "Gulping Form", + "cramorantGorging": "Gorging Form", + "toxelAmped": "Amped Form", + "toxelLowkey": "Low-Key Form", "sinisteaPhony": "がんさく", "sinisteaAntique": "しんさく", "milceryVanillaCream": "Vanilla Cream", @@ -194,6 +219,7 @@ "milceryRubySwirl": "Ruby Swirl", "milceryCaramelSwirl": "Caramel Swirl", "milceryRainbowSwirl": "Rainbow Swirl", + "eiscue": "Ice Face", "eiscueNoIce": "ナイスなし", "indeedeeMale": "オス", "indeedeeFemale": "メス", @@ -205,7 +231,9 @@ "zamazentaCrowned": "Crowned", "kubfuSingleStrike": "Single Strike", "kubfuRapidStrike": "Rapid Strike", + "zarude": "Normal", "zarudeDada": "とうちゃん", + "calyrex": "Normal", "calyrexIce": "Ice Rider", "calyrexShadow": "Shadow Rider", "basculinMale": "Male", @@ -251,6 +279,7 @@ "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", "ogerponCornerstoneMask": "Cornerstone Mask", "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagos": "Normal Form", "terpagosTerastal": "Terastal", "terpagosStellar": "Stellar", "galarDarumakaZen": "Zen", diff --git a/src/locales/ko/pokemon-form.json b/src/locales/ko/pokemon-form.json index a8ad36feb62..85b040ad619 100644 --- a/src/locales/ko/pokemon-form.json +++ b/src/locales/ko/pokemon-form.json @@ -1,4 +1,5 @@ { + "pikachu": "Normal", "pikachuCosplay": "옷갈아입기", "pikachuCoolCosplay": "하드록", "pikachuBeautyCosplay": "마담", @@ -6,7 +7,9 @@ "pikachuSmartCosplay": "닥터", "pikachuToughCosplay": "마스크드", "pikachuPartner": "파트너", + "eevee": "Normal", "eeveePartner": "파트너", + "pichu": "Normal", "pichuSpiky": "삐쭉귀", "unownA": "A", "unownB": "B", @@ -36,6 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", + "castform": "Normal Form", "castformSunny": "태양의 모습", "castformRainy": "빗방울의 모습", "castformSnowy": "설운의 모습", @@ -50,12 +54,15 @@ "cherubiSunshine": "Sunshine", "shellosEast": "동쪽바다의 모습", "shellosWest": "서쪽바다의 모습", + "rotom": "Normal", "rotomHeat": "히트", "rotomWash": "워시", "rotomFrost": "프로스트", "rotomFan": "스핀", "rotomMow": "커트", + "dialga": "Normal", "dialgaOrigin": "Origin", + "palkia": "Normal", "palkiaOrigin": "Origin", "giratinaAltered": "어나더폼", "giratinaOrigin": "Origin", @@ -64,6 +71,7 @@ "basculinRedStriped": "적색근의 모습", "basculinBlueStriped": "청색근의 모습", "basculinWhiteStriped": "백색근의 모습", + "darumaka": "Standard Mode", "darumakaZen": "Zen", "deerlingSpring": "봄의 모습", "deerlingSummer": "여름의 모습", @@ -75,17 +83,21 @@ "thundurusTherian": "Therian", "landorusIncarnate": "화신폼", "landorusTherian": "Therian", + "kyurem": "Normal", "kyuremBlack": "Black", "kyuremWhite": "White", "keldeoOrdinary": "평상시 모습", "keldeoResolute": "Resolute", "meloettaAria": "보이스폼", "meloettaPirouette": "스텝폼", + "genesect": "Normal", "genesectShock": "Shock Drive", "genesectBurn": "Burn Drive", "genesectChill": "Chill Drive", "genesectDouse": "Douse Drive", + "froakie": "Normal", "froakieBattleBond": "유대변화", + "froakieAsh": "Ash", "scatterbugMeadow": "화원의 모양", "scatterbugIcySnow": "빙설의 모양", "scatterbugPolar": "설국의 모양", @@ -111,6 +123,7 @@ "flabebeOrange": "오렌지색 꽃", "flabebeBlue": "파란 꽃", "flabebeWhite": "하얀 꽃", + "furfrou": "Natural Form", "furfrouHeart": "하트컷", "furfrouStar": "스타컷", "furfrouDiamond": "다이아컷", @@ -124,6 +137,7 @@ "espurrFemale": "Female", "honedgeShiled": "Shield", "honedgeBlade": "Blade", + "pumpkaboo": "Average Size", "pumpkabooSmall": "작은 사이즈", "pumpkabooLarge": "큰 사이즈", "pumpkabooSuper": "특대 사이즈", @@ -134,15 +148,18 @@ "zygarde50Pc": "스웜체인지 50%폼", "zygarde10Pc": "스웜체인지 10%폼", "zygardeComplete": "퍼펙트폼", + "hoopa": "Confined", "hoopaUnbound": "Unbound", "oricorioBaile": "이글이글스타일", "oricorioPompom": "파칙파칙스타일", "oricorioPau": "훌라훌라스타일", "oricorioSensu": "하늘하늘스타일", + "rockruff": "Normal", "rockruffOwnTempo": "마이페이스", "rockruffMidday": "Midday", "rockruffMidnight": "Midnight", - "rockruffMidnight": "Dusk", + "rockruffDusk": "Dusk", + "wishiwashi": "Solo Form", "wishiwashiSchool": "School", "typeNullNormal": "Type: Normal", "typeNullFighting": "Type: Fighting", @@ -178,11 +195,19 @@ "miniorViolet": "보라색 코어", "mimikyuDisguised": "둔갑한 모습", "mimikyuBusted": "들킨 모습", + "necrozma": "Normal", "necrozmaDuskMane": "Dusk Mane", "necrozmaDawnWings": "Dawn Wings", "necrozmaUltra": "Ultra", + "magearna": "Normal", "magearnaOriginal": "500년 전의 색", + "marshadow": "Normal", "marshadowZenith": "투지를 불태운 마샤도", + "cramorant": "Normal", + "cramorantGulping": "Gulping Form", + "cramorantGorging": "Gorging Form", + "toxelAmped": "Amped Form", + "toxelLowkey": "Low-Key Form", "sinisteaPhony": "위작품", "sinisteaAntique": "진작품", "milceryVanillaCream": "Vanilla Cream", @@ -194,6 +219,7 @@ "milceryRubySwirl": "Ruby Swirl", "milceryCaramelSwirl": "Caramel Swirl", "milceryRainbowSwirl": "Rainbow Swirl", + "eiscue": "Ice Face", "eiscueNoIce": "나이스페이스", "indeedeeMale": "수컷의 모습", "indeedeeFemale": "암컷의 모습", @@ -205,7 +231,9 @@ "zamazentaCrowned": "Crowned", "kubfuSingleStrike": "Single Strike", "kubfuRapidStrike": "Rapid Strike", + "zarude": "Normal", "zarudeDada": "아빠", + "calyrex": "Normal", "calyrexIce": "Ice Rider", "calyrexShadow": "Shadow Rider", "basculinMale": "Male", @@ -251,6 +279,7 @@ "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", "ogerponCornerstoneMask": "Cornerstone Mask", "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagos": "Normal Form", "terpagosTerastal": "Terastal", "terpagosStellar": "Stellar", "galarDarumakaZen": "Zen", diff --git a/src/locales/pt_BR/pokemon-form.json b/src/locales/pt_BR/pokemon-form.json index 402f4ded286..25a2bec4d19 100644 --- a/src/locales/pt_BR/pokemon-form.json +++ b/src/locales/pt_BR/pokemon-form.json @@ -1,4 +1,5 @@ { + "pikachu": "Normal", "pikachuCosplay": "Cosplay", "pikachuCoolCosplay": "Cosplay Legal", "pikachuBeautyCosplay": "Cosplay Bonito", @@ -6,7 +7,9 @@ "pikachuSmartCosplay": "Cosplay Inteligente", "pikachuToughCosplay": "Cosplay Forte", "pikachuPartner": "Parceiro", + "eevee": "Normal", "eeveePartner": "Parceiro", + "pichu": "Normal", "pichuSpiky": "Orelha Espetada", "unownA": "A", "unownB": "B", @@ -36,6 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", + "castform": "Normal Form", "castformSunny": "Ensolarado", "castformRainy": "Chuvoso", "castformSnowy": "Nevado", @@ -50,12 +54,15 @@ "cherubiSunshine": "Solar", "shellosEast": "Leste", "shellosWest": "Oeste", + "rotom": "Normal", "rotomHeat": "Calor", "rotomWash": "Lavagem", "rotomFrost": "Congelante", "rotomFan": "Ventilador", "rotomMow": "Corte", + "dialga": "Normal", "dialgaOrigin": "Origem", + "palkia": "Normal", "palkiaOrigin": "Origem", "giratinaAltered": "Alterado", "giratinaOrigin": "Origem", @@ -64,6 +71,7 @@ "basculinRedStriped": "Listras Vermelhas", "basculinBlueStriped": "Listras Azuis", "basculinWhiteStriped": "Listras Brancas", + "darumaka": "Standard Mode", "darumakaZen": "Zen", "deerlingSpring": "Primavera", "deerlingSummer": "Verão", @@ -75,17 +83,21 @@ "thundurusTherian": "Therian", "landorusIncarnate": "Materializado", "landorusTherian": "Therian", + "kyurem": "Normal", "kyuremBlack": "Preto", "kyuremWhite": "Branco", "keldeoOrdinary": "Comum", "keldeoResolute": "Resoluto", "meloettaAria": "Ária", "meloettaPirouette": "Pirueta", + "genesect": "Normal", "genesectShock": "Disco Elétrico", "genesectBurn": "Disco Incendiante", "genesectChill": "Disco Congelante", "genesectDouse": "Disco Hídrico", + "froakie": "Normal", "froakieBattleBond": "Vínculo de Batalha", + "froakieAsh": "Ash", "scatterbugMeadow": "Prado", "scatterbugIcySnow": "Neve Congelada", "scatterbugPolar": "Polar", @@ -111,6 +123,7 @@ "flabebeOrange": "Laranja", "flabebeBlue": "Azul", "flabebeWhite": "Branca", + "furfrou": "Natural Form", "furfrouHeart": "Coração", "furfrouStar": "Estrela", "furfrouDiamond": "Diamante", @@ -124,6 +137,7 @@ "espurrFemale": "Fêmea", "honedgeShiled": "Escudo", "honedgeBlade": "Lâmina", + "pumpkaboo": "Average Size", "pumpkabooSmall": "Pequeno", "pumpkabooLarge": "Grande", "pumpkabooSuper": "Extragrande", @@ -134,15 +148,18 @@ "zygarde50Pc": "Forma 50% Agrupada", "zygarde10Pc": "Forma 10% Agrupada", "zygardeComplete": "Forma Completa", + "hoopa": "Confined", "hoopaUnbound": "Libertado", "oricorioBaile": "Flamenco", "oricorioPompom": "Pompom", "oricorioPau": "Hula", "oricorioSensu": "Leque", + "rockruff": "Normal", "rockruffOwnTempo": "Próprio Tempo", "rockruffMidday": "Diurno", "rockruffMidnight": "Noturno", - "rockruffMidnight": "Crepúsculo", + "rockruffDusk": "Crepúsculo", + "wishiwashi": "Solo Form", "wishiwashiSchool": "Cardume", "typeNullNormal": "Tipo: Normal", "typeNullFighting": "Tipo: Lutador", @@ -178,11 +195,19 @@ "miniorViolet": "Violeta", "mimikyuDisguised": "Disfarçado", "mimikyuBusted": "Descoberto", + "necrozma": "Normal", "necrozmaDuskMane": "Juba Crepúsculo", "necrozmaDawnWings": "Asas Alvorada", "necrozmaUltra": "Ultra", + "magearna": "Normal", "magearnaOriginal": "Original", + "marshadow": "Normal", "marshadowZenith": "Zênite", + "cramorant": "Normal", + "cramorantGulping": "Gulping Form", + "cramorantGorging": "Gorging Form", + "toxelAmped": "Amped Form", + "toxelLowkey": "Low-Key Form", "sinisteaPhony": "Falsificado", "sinisteaAntique": "Autêntico", "milceryVanillaCream": "Creme de Baunilha", @@ -194,6 +219,7 @@ "milceryRubySwirl": "Mistura Rubi", "milceryCaramelSwirl": "Mistura de Caramelo", "milceryRainbowSwirl": "Mistura Tricolor", + "eiscue": "Ice Face", "eiscueNoIce": "Descongelado", "indeedeeMale": "Macho", "indeedeeFemale": "Fêmea", @@ -205,7 +231,9 @@ "zamazentaCrowned": "Coroado", "kubfuSingleStrike": "Golpe Decisivo", "kubfuRapidStrike": "Golpe Fluido", + "zarude": "Normal", "zarudeDada": "Papa", + "calyrex": "Normal", "calyrexIce": "Cavaleiro Glacial", "calyrexShadow": "Cavaleiro Espectral", "basculinMale": "Macho", @@ -251,6 +279,7 @@ "ogerponHearthflameMaskTera": "Máscara Fornalha Terastalizada", "ogerponCornerstoneMask": "Máscara Alicerce", "ogerponCornerstoneMaskTera": "Máscara Alicerce Terastalizada", + "terpagos": "Normal Form", "terpagosTerastal": "Teracristal", "terpagosStellar": "Astral", "galarDarumakaZen": "Zen", diff --git a/src/locales/zh_CN/pokemon-form.json b/src/locales/zh_CN/pokemon-form.json index 42b5247590a..d5d344646e9 100644 --- a/src/locales/zh_CN/pokemon-form.json +++ b/src/locales/zh_CN/pokemon-form.json @@ -1,4 +1,5 @@ { + "pikachu": "Normal", "pikachuCosplay": "换装", "pikachuCoolCosplay": "摇滚巨星", "pikachuBeautyCosplay": "贵妇", @@ -6,7 +7,9 @@ "pikachuSmartCosplay": "博士", "pikachuToughCosplay": "面罩摔跤手", "pikachuPartner": "搭档", + "eevee": "Normal", "eeveePartner": "搭档", + "pichu": "Normal", "pichuSpiky": "刺刺耳", "unownA": "A", "unownB": "B", @@ -36,6 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", + "castform": "Normal Form", "castformSunny": "晴天", "castformRainy": "雨天", "castformSnowy": "雪天", @@ -50,12 +54,15 @@ "cherubiSunshine": "Sunshine", "shellosEast": "东海", "shellosWest": "西海", + "rotom": "Normal", "rotomHeat": "加热", "rotomWash": "清洗", "rotomFrost": "结冰", "rotomFan": "旋转", "rotomMow": "切割", + "dialga": "Normal", "dialgaOrigin": "Origin", + "palkia": "Normal", "palkiaOrigin": "Origin", "giratinaAltered": "别种", "giratinaOrigin": "Origin", @@ -64,6 +71,7 @@ "basculinRedStriped": "红条纹", "basculinBlueStriped": "蓝条纹", "basculinWhiteStriped": "白条纹", + "darumaka": "Standard Mode", "darumakaZen": "Zen", "deerlingSpring": "春天", "deerlingSummer": "夏天", @@ -75,17 +83,21 @@ "thundurusTherian": "Therian", "landorusIncarnate": "化身", "landorusTherian": "Therian", + "kyurem": "Normal", "kyuremBlack": "Black", "kyuremWhite": "White", "keldeoOrdinary": "通常", "keldeoResolute": "Resolute", "meloettaAria": "歌声", "meloettaPirouette": "舞步形态", + "genesect": "Normal", "genesectShock": "Shock Drive", "genesectBurn": "Burn Drive", "genesectChill": "Chill Drive", "genesectDouse": "Douse Drive", + "froakie": "Normal", "froakieBattleBond": "牵绊变身", + "froakieAsh": "Ash", "scatterbugMeadow": "花园花纹", "scatterbugIcySnow": "冰雪花纹", "scatterbugPolar": "雪国花纹", @@ -111,6 +123,7 @@ "flabebeOrange": "橙花", "flabebeBlue": "蓝花", "flabebeWhite": "白花", + "furfrou": "Natural Form", "furfrouHeart": "心形造型", "furfrouStar": "星形造型", "furfrouDiamond": "菱形造型", @@ -124,6 +137,7 @@ "espurrFemale": "Female", "honedgeShiled": "Shield", "honedgeBlade": "Blade", + "pumpkaboo": "Average Size", "pumpkabooSmall": "小尺寸", "pumpkabooLarge": "大尺寸", "pumpkabooSuper": "特大尺寸", @@ -134,15 +148,18 @@ "zygarde50Pc": "50%形态 群聚变形", "zygarde10Pc": "10%形态 群聚变形", "zygardeComplete": "完全体形态", + "hoopa": "Confined", "hoopaUnbound": "Unbound", "oricorioBaile": "热辣热辣风格", "oricorioPompom": "啪滋啪滋风格", "oricorioPau": "呼拉呼拉风格", "oricorioSensu": "轻盈轻盈风格", + "rockruff": "Normal", "rockruffOwnTempo": "特殊岩狗狗", "rockruffMidday": "Midday", "rockruffMidnight": "Midnight", - "rockruffMidnight": "Dusk", + "rockruffDusk": "Dusk", + "wishiwashi": "Solo Form", "wishiwashiSchool": "School", "typeNullNormal": "Type: Normal", "typeNullFighting": "Type: Fighting", @@ -178,11 +195,19 @@ "miniorViolet": "紫色", "mimikyuDisguised": "化形", "mimikyuBusted": "现形", + "necrozma": "Normal", "necrozmaDuskMane": "Dusk Mane", "necrozmaDawnWings": "Dawn Wings", "necrozmaUltra": "Ultra", + "magearna": "Normal", "magearnaOriginal": "500年前的颜色", + "marshadow": "Normal", "marshadowZenith": "全力", + "cramorant": "Normal", + "cramorantGulping": "Gulping Form", + "cramorantGorging": "Gorging Form", + "toxelAmped": "Amped Form", + "toxelLowkey": "Low-Key Form", "sinisteaPhony": "赝品", "sinisteaAntique": "真品", "milceryVanillaCream": "Vanilla Cream", @@ -194,6 +219,7 @@ "milceryRubySwirl": "Ruby Swirl", "milceryCaramelSwirl": "Caramel Swirl", "milceryRainbowSwirl": "Rainbow Swirl", + "eiscue": "Ice Face", "eiscueNoIce": "解冻头", "indeedeeMale": "雄性", "indeedeeFemale": "雌性", @@ -205,7 +231,9 @@ "zamazentaCrowned": "Crowned", "kubfuSingleStrike": "Single Strike", "kubfuRapidStrike": "Rapid Strike", + "zarude": "Normal", "zarudeDada": "老爹", + "calyrex": "Normal", "calyrexIce": "Ice Rider", "calyrexShadow": "Shadow Rider", "basculinMale": "Male", @@ -251,6 +279,7 @@ "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", "ogerponCornerstoneMask": "Cornerstone Mask", "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagos": "Normal Form", "terpagosTerastal": "Terastal", "terpagosStellar": "Stellar", "galarDarumakaZen": "Zen", diff --git a/src/locales/zh_TW/pokemon-form.json b/src/locales/zh_TW/pokemon-form.json index 39d025d5fcf..e741ffe2240 100644 --- a/src/locales/zh_TW/pokemon-form.json +++ b/src/locales/zh_TW/pokemon-form.json @@ -1,4 +1,5 @@ { + "pikachu": "Normal", "pikachuCosplay": "換裝", "pikachuCoolCosplay": "搖滾巨星", "pikachuBeautyCosplay": "貴婦", @@ -6,7 +7,9 @@ "pikachuSmartCosplay": "博士", "pikachuToughCosplay": "面罩摔跤手", "pikachuPartner": "搭檔", + "eevee": "Normal", "eeveePartner": "搭檔", + "pichu": "Normal", "pichuSpiky": "刺刺耳", "unownA": "A", "unownB": "B", @@ -36,6 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", + "castform": "Normal Form", "castformSunny": "晴天", "castformRainy": "雨天", "castformSnowy": "雪天", @@ -50,12 +54,15 @@ "cherubiSunshine": "Sunshine", "shellosEast": "東海", "shellosWest": "西海", + "rotom": "Normal", "rotomHeat": "加熱", "rotomWash": "清洗", "rotomFrost": "結冰", "rotomFan": "旋轉", "rotomMow": "切割", + "dialga": "Normal", "dialgaOrigin": "Origin", + "palkia": "Normal", "palkiaOrigin": "Origin", "giratinaAltered": "別種", "giratinaOrigin": "Origin", @@ -64,6 +71,7 @@ "basculinRedStriped": "紅條紋", "basculinBlueStriped": "藍條紋", "basculinWhiteStriped": "白條紋", + "darumaka": "Standard Mode", "darumakaZen": "Zen", "deerlingSpring": "春天", "deerlingSummer": "夏天", @@ -75,17 +83,21 @@ "thundurusTherian": "Therian", "landorusIncarnate": "化身", "landorusTherian": "Therian", + "kyurem": "Normal", "kyuremBlack": "Black", "kyuremWhite": "White", "keldeoOrdinary": "通常", "keldeoResolute": "Resolute", "meloettaAria": "歌聲", "meloettaPirouette": "舞步形態", + "genesect": "Normal", "genesectShock": "Shock Drive", "genesectBurn": "Burn Drive", "genesectChill": "Chill Drive", "genesectDouse": "Douse Drive", + "froakie": "Normal", "froakieBattleBond": "牽絆變身", + "froakieAsh": "Ash", "scatterbugMeadow": "花園花紋", "scatterbugIcySnow": "冰雪花紋", "scatterbugPolar": "雪國花紋", @@ -111,6 +123,7 @@ "flabebeOrange": "橙花", "flabebeBlue": "藍花", "flabebeWhite": "白花", + "furfrou": "Natural Form", "furfrouHeart": "心形造型", "furfrouStar": "星形造型", "furfrouDiamond": "菱形造型", @@ -124,6 +137,7 @@ "espurrFemale": "Female", "honedgeShiled": "Shield", "honedgeBlade": "Blade", + "pumpkaboo": "Average Size", "pumpkabooSmall": "小尺寸", "pumpkabooLarge": "大尺寸", "pumpkabooSuper": "特大尺寸", @@ -134,15 +148,18 @@ "zygarde50Pc": "50%形態 群聚變形", "zygarde10Pc": "10%形態 群聚變形", "zygardeComplete": "完全體形態", + "hoopa": "Confined", "hoopaUnbound": "Unbound", "oricorioBaile": "熱辣熱辣風格", "oricorioPompom": "啪滋啪滋風格", "oricorioPau": "呼拉呼拉風格", "oricorioSensu": "輕盈輕盈風格", + "rockruff": "Normal", "rockruffOwnTempo": "特殊岩狗狗", "rockruffMidday": "Midday", "rockruffMidnight": "Midnight", - "rockruffMidnight": "Dusk", + "rockruffDusk": "Dusk", + "wishiwashi": "Solo Form", "wishiwashiSchool": "School", "typeNullNormal": "Type: Normal", "typeNullFighting": "Type: Fighting", @@ -178,11 +195,19 @@ "miniorViolet": "紫色", "mimikyuDisguised": "化形", "mimikyuBusted": "現形", + "necrozma": "Normal", "necrozmaDuskMane": "Dusk Mane", "necrozmaDawnWings": "Dawn Wings", "necrozmaUltra": "Ultra", + "magearna": "Normal", "magearnaOriginal": "500年前的顔色", + "marshadow": "Normal", "marshadowZenith": "全力", + "cramorant": "Normal", + "cramorantGulping": "Gulping Form", + "cramorantGorging": "Gorging Form", + "toxelAmped": "Amped Form", + "toxelLowkey": "Low-Key Form", "sinisteaPhony": "赝品", "sinisteaAntique": "真品", "milceryVanillaCream": "Vanilla Cream", @@ -194,6 +219,7 @@ "milceryRubySwirl": "Ruby Swirl", "milceryCaramelSwirl": "Caramel Swirl", "milceryRainbowSwirl": "Rainbow Swirl", + "eiscue": "Ice Face", "eiscueNoIce": "解凍頭", "indeedeeMale": "雄性", "indeedeeFemale": "雌性", @@ -205,7 +231,9 @@ "zamazentaCrowned": "Crowned", "kubfuSingleStrike": "Single Strike", "kubfuRapidStrike": "Rapid Strike", + "zarude": "Normal", "zarudeDada": "老爹", + "calyrex": "Normal", "calyrexIce": "Ice Rider", "calyrexShadow": "Shadow Rider", "basculinMale": "Male", @@ -251,6 +279,7 @@ "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", "ogerponCornerstoneMask": "Cornerstone Mask", "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "terpagos": "Normal Form", "terpagosTerastal": "Terastal", "terpagosStellar": "Stellar", "galarDarumakaZen": "Zen", diff --git a/src/ui/pokemon-info-container.ts b/src/ui/pokemon-info-container.ts index 17d042eab4c..8042c931bcf 100644 --- a/src/ui/pokemon-info-container.ts +++ b/src/ui/pokemon-info-container.ts @@ -235,7 +235,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonGenderText.setVisible(false); } - if (pokemon.species.forms?.[pokemon.formIndex]?.formName && pokemon.species.forms?.[pokemon.formIndex]?.formName !== "Normal") { + if (pokemon.species.forms?.[pokemon.formIndex]?.formName) { this.pokemonFormLabelText.setVisible(true); this.pokemonFormText.setVisible(true); const newForm = BigInt(1 << pokemon.formIndex) * DexAttr.DEFAULT_FORM; @@ -248,26 +248,25 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonFormLabelText.setShadowColor(getTextColor(TextStyle.WINDOW, true, this.scene.uiTheme)); } - const pokemonForm = (pokemon.species?.forms?.[pokemon.formIndex!]?.formKey) || ""; + const formKey = (pokemon.species?.forms?.[pokemon.formIndex!]?.formKey); + const formText = Utils.capitalizeString(formKey, "-", false, false) || ""; + const speciesName = Utils.capitalizeString(Species[pokemon.species.getRootSpeciesId()], "_", true, false); + let formName = ""; - if (pokemonForm !== "") { - const formText = Utils.capitalizeString(pokemonForm, "-", false, false); + if (pokemon.species.speciesId === Species.ARCEUS) { + formName = i18next.t(`pokemonInfo:Type.${formText?.toUpperCase()}`); + } else { + const i18key = `pokemonForm:${speciesName}${formText}`; + formName = i18next.exists(i18key) ? i18next.t(i18key) : formText; + } - const speciesName = Utils.capitalizeString(Species[pokemon.species.getRootSpeciesId()], "_", true, false); - if (pokemon.species.speciesId === Species.ARCEUS) { - formName = i18next.t(`pokemonInfo:Type.${formText?.toUpperCase()}`); - } else { - formName = formText ? i18next.t(`pokemonForm:${speciesName}${formText}`) : ""; - } - - this.pokemonFormText.setText(formName.length > this.numCharsBeforeCutoff ? formName.substring(0, this.numCharsBeforeCutoff - 3) + "..." : formName); - if (formName.length > this.numCharsBeforeCutoff) { - this.pokemonFormText.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.pokemonFormText.width, this.pokemonFormText.height), Phaser.Geom.Rectangle.Contains); - this.pokemonFormText.on("pointerover", () => (this.scene as BattleScene).ui.showTooltip("", formName, true)); - this.pokemonFormText.on("pointerout", () => (this.scene as BattleScene).ui.hideTooltip()); - } else { - this.pokemonFormText.disableInteractive(); - } + this.pokemonFormText.setText(formName.length > this.numCharsBeforeCutoff ? formName.substring(0, this.numCharsBeforeCutoff - 3) + "..." : formName); + if (formName.length > this.numCharsBeforeCutoff) { + this.pokemonFormText.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.pokemonFormText.width, this.pokemonFormText.height), Phaser.Geom.Rectangle.Contains); + this.pokemonFormText.on("pointerover", () => (this.scene as BattleScene).ui.showTooltip("", formName, true)); + this.pokemonFormText.on("pointerout", () => (this.scene as BattleScene).ui.hideTooltip()); + } else { + this.pokemonFormText.disableInteractive(); } } else { this.pokemonFormLabelText.setVisible(false); From dd29eae9e940be086b25cbaff531908d807aeb13 Mon Sep 17 00:00:00 2001 From: EnochG1 Date: Thu, 19 Sep 2024 10:40:57 +0900 Subject: [PATCH 72/84] add missed key, add korean translation (partial) --- src/locales/es/pokemon-form.json | 1 + src/locales/fr/pokemon-form.json | 1 + src/locales/it/pokemon-form.json | 1 + src/locales/ja/pokemon-form.json | 1 + src/locales/ko/pokemon-form.json | 175 ++++++++++++++-------------- src/locales/pt_BR/pokemon-form.json | 1 + src/locales/zh_CN/pokemon-form.json | 1 + src/locales/zh_TW/pokemon-form.json | 1 + 8 files changed, 95 insertions(+), 87 deletions(-) diff --git a/src/locales/es/pokemon-form.json b/src/locales/es/pokemon-form.json index bdd3eed56d1..4926acc4eaa 100644 --- a/src/locales/es/pokemon-form.json +++ b/src/locales/es/pokemon-form.json @@ -282,6 +282,7 @@ "terpagos": "Normal Form", "terpagosTerastal": "Teracristal", "terpagosStellar": "Astral", + "galarDarumaka": "Standard Mode", "galarDarumakaZen": "Daruma", "paldeaTaurosCombat": "Combatiente", "paldeaTaurosBlaze": "Ardiente", diff --git a/src/locales/fr/pokemon-form.json b/src/locales/fr/pokemon-form.json index 44904bd396e..bb1646dc98e 100644 --- a/src/locales/fr/pokemon-form.json +++ b/src/locales/fr/pokemon-form.json @@ -282,6 +282,7 @@ "terpagos": "Normal Form", "terpagosTerastal": "Téracristal", "terpagosStellar": "Stellaire", + "galarDarumaka": "Standard Mode", "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Combatif", "paldeaTaurosBlaze": "Flamboyant", diff --git a/src/locales/it/pokemon-form.json b/src/locales/it/pokemon-form.json index 15feea0c221..8cda31679a5 100644 --- a/src/locales/it/pokemon-form.json +++ b/src/locales/it/pokemon-form.json @@ -282,6 +282,7 @@ "terpagos": "Normal Form", "terpagosTerastal": "Teracristal", "terpagosStellar": "Astrale", + "galarDarumaka": "Standard Mode", "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Combattiva", "paldeaTaurosBlaze": "Infuocata", diff --git a/src/locales/ja/pokemon-form.json b/src/locales/ja/pokemon-form.json index 2575778726d..00aca2094b7 100644 --- a/src/locales/ja/pokemon-form.json +++ b/src/locales/ja/pokemon-form.json @@ -282,6 +282,7 @@ "terpagos": "Normal Form", "terpagosTerastal": "Terastal", "terpagosStellar": "Stellar", + "galarDarumaka": "Standard Mode", "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "コンバット", "paldeaTaurosBlaze": "ブレイズ", diff --git a/src/locales/ko/pokemon-form.json b/src/locales/ko/pokemon-form.json index 85b040ad619..9fa01d5f5b8 100644 --- a/src/locales/ko/pokemon-form.json +++ b/src/locales/ko/pokemon-form.json @@ -50,8 +50,8 @@ "burmyPlant": "초목도롱", "burmySandy": "모래땅도롱", "burmyTrash": "슈레도롱", - "cherubiOvercast": "Overcast", - "cherubiSunshine": "Sunshine", + "cherubiOvercast": "네거폼", + "cherubiSunshine": "포지폼", "shellosEast": "동쪽바다의 모습", "shellosWest": "서쪽바다의 모습", "rotom": "Normal", @@ -61,40 +61,40 @@ "rotomFan": "스핀", "rotomMow": "커트", "dialga": "Normal", - "dialgaOrigin": "Origin", + "dialgaOrigin": "오리진폼", "palkia": "Normal", - "palkiaOrigin": "Origin", + "palkiaOrigin": "오리진폼", "giratinaAltered": "어나더폼", - "giratinaOrigin": "Origin", + "giratinaOrigin": "오리진폼", "shayminLand": "랜드폼", - "shayminSky": "Sky", + "shayminSky": "스카이폼", "basculinRedStriped": "적색근의 모습", "basculinBlueStriped": "청색근의 모습", "basculinWhiteStriped": "백색근의 모습", "darumaka": "Standard Mode", - "darumakaZen": "Zen", + "darumakaZen": "달마모드", "deerlingSpring": "봄의 모습", "deerlingSummer": "여름의 모습", "deerlingAutumn": "가을의 모습", "deerlingWinter": "겨울의 모습", "tornadusIncarnate": "화신폼", - "tornadusTherian": "Therian", + "tornadusTherian": "영물폼", "thundurusIncarnate": "화신폼", - "thundurusTherian": "Therian", + "thundurusTherian": "영물폼", "landorusIncarnate": "화신폼", - "landorusTherian": "Therian", + "landorusTherian": "영물폼", "kyurem": "Normal", - "kyuremBlack": "Black", - "kyuremWhite": "White", + "kyuremBlack": "블랙큐레무", + "kyuremWhite": "화이트큐레무", "keldeoOrdinary": "평상시 모습", - "keldeoResolute": "Resolute", + "keldeoResolute": "각오의 모습", "meloettaAria": "보이스폼", "meloettaPirouette": "스텝폼", "genesect": "Normal", - "genesectShock": "Shock Drive", - "genesectBurn": "Burn Drive", - "genesectChill": "Chill Drive", - "genesectDouse": "Douse Drive", + "genesectShock": "라이트닝폼", + "genesectBurn": "블레이즈폼", + "genesectChill": "프리즈폼", + "genesectDouse": "아쿠아폼", "froakie": "Normal", "froakieBattleBond": "유대변화", "froakieAsh": "Ash", @@ -133,10 +133,10 @@ "furfrouLaReine": "퀸컷", "furfrouKabuki": "가부키컷", "furfrouPharaoh": "킹덤컷", - "espurrMale": "Male", - "espurrFemale": "Female", - "honedgeShiled": "Shield", - "honedgeBlade": "Blade", + "espurrMale": "수컷의 모습", + "espurrFemale": "암컷의 모습", + "honedgeShiled": "실드폼", + "honedgeBlade": "블레이드폼", "pumpkaboo": "Average Size", "pumpkabooSmall": "작은 사이즈", "pumpkabooLarge": "큰 사이즈", @@ -149,36 +149,36 @@ "zygarde10Pc": "스웜체인지 10%폼", "zygardeComplete": "퍼펙트폼", "hoopa": "Confined", - "hoopaUnbound": "Unbound", + "hoopaUnbound": "굴레를 벗어난 모습", "oricorioBaile": "이글이글스타일", "oricorioPompom": "파칙파칙스타일", "oricorioPau": "훌라훌라스타일", "oricorioSensu": "하늘하늘스타일", "rockruff": "Normal", "rockruffOwnTempo": "마이페이스", - "rockruffMidday": "Midday", - "rockruffMidnight": "Midnight", - "rockruffDusk": "Dusk", + "rockruffMidday": "한낮의 모습", + "rockruffMidnight": "한밤중의 모습", + "rockruffDusk": "황혼의 모습", "wishiwashi": "Solo Form", - "wishiwashiSchool": "School", - "typeNullNormal": "Type: Normal", - "typeNullFighting": "Type: Fighting", - "typeNullFlying": "Type: Flying", - "typeNullPoison": "Type: Poison", - "typeNullGround": "Type: Ground", - "typeNullRock": "Type: Rock", - "typeNullBug": "Type: Bug", - "typeNullGhost": "Type: Ghost", - "typeNullSteel": "Type: Steel", - "typeNullFire": "Type: Fire", - "typeNullWater": "Type: Water", - "typeNullGrass": "Type: Grass", - "typeNullElectric": "Type: Electric", - "typeNullPsychic": "Type: Psychic", - "typeNullIce": "Type: Ice", - "typeNullDragon": "Type: Dragon", - "typeNullDark": "Type: Dark", - "typeNullFairy": "Type: Fairy", + "wishiwashiSchool": "군집의 모습", + "typeNullNormal": "노말", + "typeNullFighting": "격투", + "typeNullFlying": "비행", + "typeNullPoison": "독", + "typeNullGround": "땅", + "typeNullRock": "바위", + "typeNullBug": "벌레", + "typeNullGhost": "고스트", + "typeNullSteel": "강철", + "typeNullFire": "불꽃", + "typeNullWater": "물", + "typeNullGrass": "풀", + "typeNullElectric": "전기", + "typeNullPsychic": "에스퍼", + "typeNullIce": "얼음", + "typeNullDragon": "드래곤", + "typeNullDark": "악", + "typeNullFairy": "페어리", "miniorRedMeteor": "유성의 모습(빨강)", "miniorOrangeMeteor": "유성의 모습(주황)", "miniorYellowMeteor": "유성의 모습(노랑)", @@ -196,9 +196,9 @@ "mimikyuDisguised": "둔갑한 모습", "mimikyuBusted": "들킨 모습", "necrozma": "Normal", - "necrozmaDuskMane": "Dusk Mane", - "necrozmaDawnWings": "Dawn Wings", - "necrozmaUltra": "Ultra", + "necrozmaDuskMane": "황혼의 갈기", + "necrozmaDawnWings": "새벽의 날개", + "necrozmaUltra": "울트라네크로즈마", "magearna": "Normal", "magearnaOriginal": "500년 전의 색", "marshadow": "Normal", @@ -210,51 +210,51 @@ "toxelLowkey": "Low-Key Form", "sinisteaPhony": "위작품", "sinisteaAntique": "진작품", - "milceryVanillaCream": "Vanilla Cream", - "milceryRubyCream": "Ruby Cream", - "milceryMatchaCream": "Matcha Cream", - "milceryMintCream": "Mint Cream", - "milceryLemonCream": "Lemon Cream", - "milcerySaltedCream": "Salted Cream", - "milceryRubySwirl": "Ruby Swirl", - "milceryCaramelSwirl": "Caramel Swirl", - "milceryRainbowSwirl": "Rainbow Swirl", + "milceryVanillaCream": "밀키바닐라", + "milceryRubyCream": "밀키루비", + "milceryMatchaCream": "밀키말차", + "milceryMintCream": "밀키민트", + "milceryLemonCream": "밀키레몬", + "milcerySaltedCream": "밀키솔트", + "milceryRubySwirl": "루비믹스", + "milceryCaramelSwirl": "캐러멜믹스", + "milceryRainbowSwirl": "트리플믹스", "eiscue": "Ice Face", "eiscueNoIce": "나이스페이스", "indeedeeMale": "수컷의 모습", "indeedeeFemale": "암컷의 모습", "morpekoFullBelly": "배부른 모양", - "morpekoHangry": "Hangry", + "morpekoHangry": "배고픈 모양", "zacianHeroOfManyBattles": "역전의 용사", - "zacianCrowned": "Crowned", + "zacianCrowned": "검왕", "zamazentaHeroOfManyBattles": "역전의 용사", - "zamazentaCrowned": "Crowned", - "kubfuSingleStrike": "Single Strike", - "kubfuRapidStrike": "Rapid Strike", + "zamazentaCrowned": "방패왕", + "kubfuSingleStrike": "일격의 태세", + "kubfuRapidStrike": "연격의 태세", "zarude": "Normal", "zarudeDada": "아빠", "calyrex": "Normal", - "calyrexIce": "Ice Rider", - "calyrexShadow": "Shadow Rider", - "basculinMale": "Male", - "basculinFemale": "Female", + "calyrexIce": "백마 탄 모습", + "calyrexShadow": "흑마 탄 모습", + "basculinMale": "수컷의 모습", + "basculinFemale": "암컷의 모습", "enamorusIncarnate": "화신폼", - "enamorusTherian": "Therian", - "lechonkMale": "Male", - "lechonkFemale": "Female", - "tandemausFour": "Family of Four", - "tandemausThree": "Family of Three", + "enamorusTherian": "영물폼", + "lechonkMale": "수컷의 모습", + "lechonkFemale": "암컷의 모습", + "tandemausFour": "네 식구", + "tandemausThree": "세 식구", "squawkabillyGreenPlumage": "그린 페더", "squawkabillyBluePlumage": "블루 페더", "squawkabillyYellowPlumage": "옐로 페더", "squawkabillyWhitePlumage": "화이트 페더", - "finizenZero": "Zero", - "finizenHero": "Hero", + "finizenZero": "나이브폼", + "finizenHero": "마이티폼", "tatsugiriCurly": "젖힌 모습", "tatsugiriDroopy": "늘어진 모습", "tatsugiriStretchy": "뻗은 모습", - "dunsparceTwo": "Two-Segment", - "dunsparceThree": "Three-Segment", + "dunsparceTwo": "두 마디 폼", + "dunsparceThree": "세 마디 폼", "gimmighoulChest": "상자폼", "gimmighoulRoaming": "도보폼", "koraidonApexBuild": "완전형태", @@ -269,20 +269,21 @@ "miraidonGlideMode": "글라이드모드", "poltchageistCounterfeit": "가짜배기의 모습", "poltchageistArtisan": "알짜배기의 모습", - "poltchageistUnremarkable": "Unremarkable", - "poltchageistMasterpiece": "Masterpiece", - "ogerponTealMask": "Teal Mask", - "ogerponTealMaskTera": "Teal Mask Terastallized", - "ogerponWellspringMask": "Wellspring Mask", - "ogerponWellspringMaskTera": "Wellspring Mask Terastallized", - "ogerponHearthflameMask": "Hearthflame Mask", - "ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized", - "ogerponCornerstoneMask": "Cornerstone Mask", - "ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized", + "poltchageistUnremarkable": "범작의 모습", + "poltchageistMasterpiece": "걸작의 모습", + "ogerponTealMask": "벽록의가면", + "ogerponTealMaskTera": "벽록의가면 테라스탈", + "ogerponWellspringMask": "우물의가면", + "ogerponWellspringMaskTera": "우물의가면 테라스탈", + "ogerponHearthflameMask": "화덕의가면", + "ogerponHearthflameMaskTera": "화덕의가면 테라스탈", + "ogerponCornerstoneMask": "주춧돌의가면", + "ogerponCornerstoneMaskTera": "주춧돌의가면 테라스탈", "terpagos": "Normal Form", - "terpagosTerastal": "Terastal", - "terpagosStellar": "Stellar", - "galarDarumakaZen": "Zen", + "terpagosTerastal": "테라스탈폼", + "terpagosStellar": "스텔라폼", + "galarDarumaka": "Standard Mode", + "galarDarumakaZen": "달마모드", "paldeaTaurosCombat": "컴뱃종", "paldeaTaurosBlaze": "블레이즈종", "paldeaTaurosAqua": "워터종" diff --git a/src/locales/pt_BR/pokemon-form.json b/src/locales/pt_BR/pokemon-form.json index 25a2bec4d19..5513fc55a01 100644 --- a/src/locales/pt_BR/pokemon-form.json +++ b/src/locales/pt_BR/pokemon-form.json @@ -282,6 +282,7 @@ "terpagos": "Normal Form", "terpagosTerastal": "Teracristal", "terpagosStellar": "Astral", + "galarDarumaka": "Standard Mode", "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "Combate", "paldeaTaurosBlaze": "Chamas", diff --git a/src/locales/zh_CN/pokemon-form.json b/src/locales/zh_CN/pokemon-form.json index d5d344646e9..c2ad12bbf16 100644 --- a/src/locales/zh_CN/pokemon-form.json +++ b/src/locales/zh_CN/pokemon-form.json @@ -282,6 +282,7 @@ "terpagos": "Normal Form", "terpagosTerastal": "Terastal", "terpagosStellar": "Stellar", + "galarDarumaka": "Standard Mode", "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "斗战种", "paldeaTaurosBlaze": "火炽种", diff --git a/src/locales/zh_TW/pokemon-form.json b/src/locales/zh_TW/pokemon-form.json index e741ffe2240..104f8f5ea49 100644 --- a/src/locales/zh_TW/pokemon-form.json +++ b/src/locales/zh_TW/pokemon-form.json @@ -282,6 +282,7 @@ "terpagos": "Normal Form", "terpagosTerastal": "Terastal", "terpagosStellar": "Stellar", + "galarDarumaka": "Standard Mode", "galarDarumakaZen": "Zen", "paldeaTaurosCombat": "鬥戰種", "paldeaTaurosBlaze": "火熾種", From 8c3b26824db88800858555f02479f8ca4e05b218 Mon Sep 17 00:00:00 2001 From: EnochG1 Date: Thu, 19 Sep 2024 13:28:10 +0900 Subject: [PATCH 73/84] Korean translation, refactor code --- src/locales/ko/pokemon-form.json | 72 ++++++++++++++++---------------- src/ui/pokemon-info-container.ts | 26 ++++++------ 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/src/locales/ko/pokemon-form.json b/src/locales/ko/pokemon-form.json index 9fa01d5f5b8..dce2fcd35cf 100644 --- a/src/locales/ko/pokemon-form.json +++ b/src/locales/ko/pokemon-form.json @@ -1,5 +1,5 @@ { - "pikachu": "Normal", + "pikachu": "일반", "pikachuCosplay": "옷갈아입기", "pikachuCoolCosplay": "하드록", "pikachuBeautyCosplay": "마담", @@ -7,9 +7,9 @@ "pikachuSmartCosplay": "닥터", "pikachuToughCosplay": "마스크드", "pikachuPartner": "파트너", - "eevee": "Normal", + "eevee": "일반", "eeveePartner": "파트너", - "pichu": "Normal", + "pichu": "일반", "pichuSpiky": "삐쭉귀", "unownA": "A", "unownB": "B", @@ -39,7 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - "castform": "Normal Form", + "castform": "평상시", "castformSunny": "태양의 모습", "castformRainy": "빗방울의 모습", "castformSnowy": "설운의 모습", @@ -54,15 +54,15 @@ "cherubiSunshine": "포지폼", "shellosEast": "동쪽바다의 모습", "shellosWest": "서쪽바다의 모습", - "rotom": "Normal", - "rotomHeat": "히트", - "rotomWash": "워시", - "rotomFrost": "프로스트", - "rotomFan": "스핀", - "rotomMow": "커트", - "dialga": "Normal", + "rotom": "로토무", + "rotomHeat": "히트로토무", + "rotomWash": "워시로토무", + "rotomFrost": "프로스트로토무", + "rotomFan": "스핀로토무", + "rotomMow": "커트로토무", + "dialga": "어나더폼", "dialgaOrigin": "오리진폼", - "palkia": "Normal", + "palkia": "어나더폼", "palkiaOrigin": "오리진폼", "giratinaAltered": "어나더폼", "giratinaOrigin": "오리진폼", @@ -71,7 +71,7 @@ "basculinRedStriped": "적색근의 모습", "basculinBlueStriped": "청색근의 모습", "basculinWhiteStriped": "백색근의 모습", - "darumaka": "Standard Mode", + "darumaka": "노말모드", "darumakaZen": "달마모드", "deerlingSpring": "봄의 모습", "deerlingSummer": "여름의 모습", @@ -83,21 +83,21 @@ "thundurusTherian": "영물폼", "landorusIncarnate": "화신폼", "landorusTherian": "영물폼", - "kyurem": "Normal", + "kyurem": "큐레무", "kyuremBlack": "블랙큐레무", "kyuremWhite": "화이트큐레무", "keldeoOrdinary": "평상시 모습", "keldeoResolute": "각오의 모습", "meloettaAria": "보이스폼", "meloettaPirouette": "스텝폼", - "genesect": "Normal", + "genesect": "노말폼", "genesectShock": "라이트닝폼", "genesectBurn": "블레이즈폼", "genesectChill": "프리즈폼", "genesectDouse": "아쿠아폼", - "froakie": "Normal", + "froakie": "개굴닌자", "froakieBattleBond": "유대변화", - "froakieAsh": "Ash", + "froakieAsh": "지우개굴닌자", "scatterbugMeadow": "화원의 모양", "scatterbugIcySnow": "빙설의 모양", "scatterbugPolar": "설국의 모양", @@ -123,7 +123,7 @@ "flabebeOrange": "오렌지색 꽃", "flabebeBlue": "파란 꽃", "flabebeWhite": "하얀 꽃", - "furfrou": "Natural Form", + "furfrou": "일반", "furfrouHeart": "하트컷", "furfrouStar": "스타컷", "furfrouDiamond": "다이아컷", @@ -137,7 +137,7 @@ "espurrFemale": "암컷의 모습", "honedgeShiled": "실드폼", "honedgeBlade": "블레이드폼", - "pumpkaboo": "Average Size", + "pumpkaboo": "보통 사이즈", "pumpkabooSmall": "작은 사이즈", "pumpkabooLarge": "큰 사이즈", "pumpkabooSuper": "특대 사이즈", @@ -148,18 +148,18 @@ "zygarde50Pc": "스웜체인지 50%폼", "zygarde10Pc": "스웜체인지 10%폼", "zygardeComplete": "퍼펙트폼", - "hoopa": "Confined", + "hoopa": "굴레에 빠진 모습", "hoopaUnbound": "굴레를 벗어난 모습", "oricorioBaile": "이글이글스타일", "oricorioPompom": "파칙파칙스타일", "oricorioPau": "훌라훌라스타일", "oricorioSensu": "하늘하늘스타일", - "rockruff": "Normal", + "rockruff": "일반", "rockruffOwnTempo": "마이페이스", "rockruffMidday": "한낮의 모습", "rockruffMidnight": "한밤중의 모습", "rockruffDusk": "황혼의 모습", - "wishiwashi": "Solo Form", + "wishiwashi": "단독의 모습", "wishiwashiSchool": "군집의 모습", "typeNullNormal": "노말", "typeNullFighting": "격투", @@ -195,19 +195,19 @@ "miniorViolet": "보라색 코어", "mimikyuDisguised": "둔갑한 모습", "mimikyuBusted": "들킨 모습", - "necrozma": "Normal", + "necrozma": "네크로즈마", "necrozmaDuskMane": "황혼의 갈기", "necrozmaDawnWings": "새벽의 날개", "necrozmaUltra": "울트라네크로즈마", - "magearna": "Normal", + "magearna": "일반적인 모습", "magearnaOriginal": "500년 전의 색", - "marshadow": "Normal", - "marshadowZenith": "투지를 불태운 마샤도", - "cramorant": "Normal", - "cramorantGulping": "Gulping Form", - "cramorantGorging": "Gorging Form", - "toxelAmped": "Amped Form", - "toxelLowkey": "Low-Key Form", + "marshadow": "일반적인 모습", + "marshadowZenith": "타오르는 투지의 모습", + "cramorant": "일반", + "cramorantGulping": "그대로 삼킨 모습", + "cramorantGorging": "통째로 삼킨 모습", + "toxelAmped": "하이한 모습", + "toxelLowkey": "로우한 모습", "sinisteaPhony": "위작품", "sinisteaAntique": "진작품", "milceryVanillaCream": "밀키바닐라", @@ -219,7 +219,7 @@ "milceryRubySwirl": "루비믹스", "milceryCaramelSwirl": "캐러멜믹스", "milceryRainbowSwirl": "트리플믹스", - "eiscue": "Ice Face", + "eiscue": "아이스페이스", "eiscueNoIce": "나이스페이스", "indeedeeMale": "수컷의 모습", "indeedeeFemale": "암컷의 모습", @@ -231,9 +231,9 @@ "zamazentaCrowned": "방패왕", "kubfuSingleStrike": "일격의 태세", "kubfuRapidStrike": "연격의 태세", - "zarude": "Normal", + "zarude": "일반", "zarudeDada": "아빠", - "calyrex": "Normal", + "calyrex": "일반", "calyrexIce": "백마 탄 모습", "calyrexShadow": "흑마 탄 모습", "basculinMale": "수컷의 모습", @@ -279,10 +279,10 @@ "ogerponHearthflameMaskTera": "화덕의가면 테라스탈", "ogerponCornerstoneMask": "주춧돌의가면", "ogerponCornerstoneMaskTera": "주춧돌의가면 테라스탈", - "terpagos": "Normal Form", + "terpagos": "노말폼", "terpagosTerastal": "테라스탈폼", "terpagosStellar": "스텔라폼", - "galarDarumaka": "Standard Mode", + "galarDarumaka": "노말모드", "galarDarumakaZen": "달마모드", "paldeaTaurosCombat": "컴뱃종", "paldeaTaurosBlaze": "블레이즈종", diff --git a/src/ui/pokemon-info-container.ts b/src/ui/pokemon-info-container.ts index 8042c931bcf..2af1e8fbc04 100644 --- a/src/ui/pokemon-info-container.ts +++ b/src/ui/pokemon-info-container.ts @@ -235,7 +235,19 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonGenderText.setVisible(false); } - if (pokemon.species.forms?.[pokemon.formIndex]?.formName) { + const formKey = (pokemon.species?.forms?.[pokemon.formIndex!]?.formKey); + const formText = Utils.capitalizeString(formKey, "-", false, false) || ""; + const speciesName = Utils.capitalizeString(Species[pokemon.species.getRootSpeciesId()], "_", true, false); + + let formName = ""; + if (pokemon.species.speciesId === Species.ARCEUS) { + formName = i18next.t(`pokemonInfo:Type.${formText?.toUpperCase()}`); + } else { + const i18key = `pokemonForm:${speciesName}${formText}`; + formName = i18next.exists(i18key) ? i18next.t(i18key) : formText; + } + + if (formName) { this.pokemonFormLabelText.setVisible(true); this.pokemonFormText.setVisible(true); const newForm = BigInt(1 << pokemon.formIndex) * DexAttr.DEFAULT_FORM; @@ -248,18 +260,6 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonFormLabelText.setShadowColor(getTextColor(TextStyle.WINDOW, true, this.scene.uiTheme)); } - const formKey = (pokemon.species?.forms?.[pokemon.formIndex!]?.formKey); - const formText = Utils.capitalizeString(formKey, "-", false, false) || ""; - const speciesName = Utils.capitalizeString(Species[pokemon.species.getRootSpeciesId()], "_", true, false); - - let formName = ""; - if (pokemon.species.speciesId === Species.ARCEUS) { - formName = i18next.t(`pokemonInfo:Type.${formText?.toUpperCase()}`); - } else { - const i18key = `pokemonForm:${speciesName}${formText}`; - formName = i18next.exists(i18key) ? i18next.t(i18key) : formText; - } - this.pokemonFormText.setText(formName.length > this.numCharsBeforeCutoff ? formName.substring(0, this.numCharsBeforeCutoff - 3) + "..." : formName); if (formName.length > this.numCharsBeforeCutoff) { this.pokemonFormText.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.pokemonFormText.width, this.pokemonFormText.height), Phaser.Geom.Rectangle.Contains); From c05c5aa02cc74fac2db7681de52c11f1fde2989a Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:14:48 +0200 Subject: [PATCH 74/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 4930461e824..15824d4689a 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -39,7 +39,7 @@ "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - "castform": "Normal Form", + "castform": "Normalform", "castformSunny": "Sonnenform", "castformRainy": "Regenform", "castformSnowy": "Schneeform", From eacfaf5a28842d9b132376232e129bcc350bd374 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:15:17 +0200 Subject: [PATCH 75/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 15824d4689a..e8be57767e9 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -54,7 +54,7 @@ "cherubiSunshine": "Sonnenform", "shellosEast": "Östliches Meer", "shellosWest": "Westliches Meer", - "rotom": "Normal", + "rotom": "Normalform", "rotomHeat": "Hitze-Rotom", "rotomWash": "Wasch-Rotom", "rotomFrost": "Frost-Rotom", From c736400e91d6444f46d81461ad04c2996f038d8a Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:15:48 +0200 Subject: [PATCH 76/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index e8be57767e9..0230069c61e 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -60,9 +60,9 @@ "rotomFrost": "Frost-Rotom", "rotomFan": "Wirbel-Rotom", "rotomMow": "Schneid-Rotom", - "dialga": "Normal", + "dialga": "Normalform", "dialgaOrigin": "Urform", - "palkia": "Normal", + "palkia": "Normalform", "palkiaOrigin": "Urform", "giratinaAltered": "Wandelform", "giratinaOrigin": "Urform", From f13606c9f31499f7f2901928c212ad8e763581e7 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:16:32 +0200 Subject: [PATCH 77/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 0230069c61e..5d96587911a 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -71,7 +71,7 @@ "basculinRedStriped": "Rotlinige Form", "basculinBlueStriped": "Blaulinige Form", "basculinWhiteStriped": "Weißlinige Form", - "darumaka": "Standard Mode", + "darumaka": "Normalmodus", "darumakaZen": "Trance-Modus", "deerlingSpring": "Frühlingsform", "deerlingSummer": "Sommerform", From 0968c31e049bf95fce89e5ac049230c0073576b1 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:17:39 +0200 Subject: [PATCH 78/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 5d96587911a..d94407e8dfd 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -95,9 +95,9 @@ "genesectBurn": "Flammenmodul", "genesectChill": "Gefriermodul", "genesectDouse": "Aquamodul", - "froakie": "Normal", - "froakieBattleBond": "Ash-Form", - "froakieAsh": "Ash", + "froakie": "Normalform", + "froakieBattleBond": "Freundschaftsakt", + "froakieAsh": "Ash-Form", "scatterbugMeadow": "Blumenmeermuster", "scatterbugIcySnow": "Frostmuster", "scatterbugPolar": "Schneefeldmuster", From 03d0ccf8975246092a06b39eafdcf401623d58c5 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:18:05 +0200 Subject: [PATCH 79/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index d94407e8dfd..433f3e3a682 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -123,7 +123,7 @@ "flabebeOrange": "Orangeblütler", "flabebeBlue": "Blaublütler", "flabebeWhite": "Weißblütler", - "furfrou": "Natural Form", + "furfrou": "Zottelform", "furfrouHeart": "Herzchenschnitt", "furfrouStar": "Sternchenschnitt", "furfrouDiamond": "Diamantenschitt", From 286aead7da66fc2790ef1de4098ebb4be04ac17f Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:18:30 +0200 Subject: [PATCH 80/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 433f3e3a682..2e248295ea6 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -137,7 +137,7 @@ "espurrFemale": "weiblich", "honedgeShiled": "Schildform", "honedgeBlade": "Klingenform", - "pumpkaboo": "Average Size", + "pumpkaboo": "Größe M", "pumpkabooSmall": "Größe S", "pumpkabooLarge": "Größe L", "pumpkabooSuper": "Größe XL", From 390e8e4c165511b62c09e67375648acd4f7e1404 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:18:51 +0200 Subject: [PATCH 81/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 2e248295ea6..e8fdc3d4108 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -148,7 +148,7 @@ "zygarde50Pc": "50% Form Scharwandel", "zygarde10Pc": "10% Form Scharwandel", "zygardeComplete": "Optimum-Form", - "hoopa": "Confined", + "hoopa": "Gebanntes Hoopa", "hoopaUnbound": "Entfesseltes Hoopa", "oricorioBaile": "Flamenco-Stil", "oricorioPompom": "Cheerleading-Stil", From 867f769b80fa3493f681ad1e999188baa657a2fc Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:19:36 +0200 Subject: [PATCH 82/84] Apply suggestions from code review --- src/locales/de/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index e8fdc3d4108..0cc51355aec 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -154,12 +154,12 @@ "oricorioPompom": "Cheerleading-Stil", "oricorioPau": "Hula-Stil", "oricorioSensu": "Buyo-Stil", - "rockruff": "Normal", + "rockruff": "Normalform", "rockruffOwnTempo": "Gleichmut", "rockruffMidday": "Tagform", "rockruffMidnight": "Nachtform", "rockruffDusk": "Zwielichtform", - "wishiwashi": "Solo Form", + "wishiwashi": "Einzelform", "wishiwashiSchool": "Schwarmform", "typeNullNormal": "Typ:Normal", "typeNullFighting": "Typ:Kampf", From df432156d5a0ce75ea7689d96b12d837c752c8f5 Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:22:23 +0200 Subject: [PATCH 83/84] Update src/locales/de/pokemon-form.json --- src/locales/de/pokemon-form.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index 0cc51355aec..cc21b87afdb 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -231,9 +231,9 @@ "zamazentaCrowned": "König des Schildes", "kubfuSingleStrike": "Fokussierter Stil", "kubfuRapidStrike": "Fließender Stil", - "zarude": "Normal", + "zarude": "Normalform", "zarudeDada": "Papa", - "calyrex": "Normal", + "calyrex": "Normalform", "calyrexIce": "Schimmelreiter", "calyrexShadow": "Rappenreiter", "basculinMale": "männlich", From 1022c3360a457699ae4be40bee07f2fbe05a515c Mon Sep 17 00:00:00 2001 From: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:23:14 +0200 Subject: [PATCH 84/84] Apply suggestions from code review --- src/locales/de/pokemon-form.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/locales/de/pokemon-form.json b/src/locales/de/pokemon-form.json index cc21b87afdb..16efc3af653 100644 --- a/src/locales/de/pokemon-form.json +++ b/src/locales/de/pokemon-form.json @@ -195,19 +195,19 @@ "miniorViolet": "Violetter Kern", "mimikyuDisguised": "Verkleidete Form", "mimikyuBusted": "Entlarvte Form", - "necrozma": "Normal", + "necrozma": "Normalform", "necrozmaDuskMane": "Abendmähne", "necrozmaDawnWings": "Morgenschwingen", "necrozmaUltra": "Ultra-Necrozma", - "magearna": "Normal", + "magearna": "Normalform", "magearnaOriginal": "Originalfarbe", - "marshadow": "Normal", + "marshadow": "Normalform", "marshadowZenith": "Zenitform", - "cramorant": "Normal", - "cramorantGulping": "Gulping Form", - "cramorantGorging": "Gorging Form", - "toxelAmped": "Amped Form", - "toxelLowkey": "Low-Key Form", + "cramorant": "Normalform", + "cramorantGulping": "Schlingform", + "cramorantGorging": "Stopfform", + "toxelAmped": "Hoch-Form", + "toxelLowkey": "Tief-Form", "sinisteaPhony": "Fälschungsform", "sinisteaAntique": "Originalform", "milceryVanillaCream": "Vanille-Creme", @@ -219,7 +219,7 @@ "milceryRubySwirl": "Ruby-Mix", "milceryCaramelSwirl": "Karamell-Mix", "milceryRainbowSwirl": "Trio-Mix", - "eiscue": "Ice Face", + "eiscue": "Tiefkühlkopf", "eiscueNoIce": "Wohlfühlkopf", "indeedeeMale": "männlich", "indeedeeFemale": "weiblich", @@ -279,10 +279,10 @@ "ogerponHearthflameMaskTera": "Ofenmaske (Terakristallisiert)", "ogerponCornerstoneMask": "Fundamentmaske", "ogerponCornerstoneMaskTera": "Fundamentmaske (Terakristallisiert)", - "terpagos": "Normal Form", + "terpagos": "Normalform", "terpagosTerastal": "Terakristall-Form", "terpagosStellar": "Stellarform", - "galarDarumaka": "Standard Mode", + "galarDarumaka": "Normalmodus", "galarDarumakaZen": "Trance-Modus", "paldeaTaurosCombat": "Gefechtsvariante", "paldeaTaurosBlaze": "Flammenvariante",