Add type translation

This commit is contained in:
MadridPawmot 2024-05-18 23:35:56 +02:00 committed by GitHub
parent 2060426857
commit 6169ef0ced
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,23 +19,23 @@ export const pokemonInfo: PokemonInfoTranslationEntries = {
Type: { Type: {
"UNKNOWN": "Unknown", "UNKNOWN": "Unknown",
"NORMAL": "Normal", "NORMAL": "Normal",
"FIGHTING": "Fighting", "FIGHTING": "Lucha",
"FLYING": "Flying", "FLYING": "Volador",
"POISON": "Poison", "POISON": "Veneno",
"GROUND": "Ground", "GROUND": "Tierra",
"ROCK": "Rock", "ROCK": "Roca",
"BUG": "Bug", "BUG": "Bicho",
"GHOST": "Ghost", "GHOST": "Fantasma",
"STEEL": "Steel", "STEEL": "Acero",
"FIRE": "Fire", "FIRE": "Fuego",
"WATER": "Water", "WATER": "Agua",
"GRASS": "Grass", "GRASS": "Planta",
"ELECTRIC": "Electric", "ELECTRIC": "Eléctrico",
"PSYCHIC": "Psychic", "PSYCHIC": "Psíquico",
"ICE": "Ice", "ICE": "Hielo",
"DRAGON": "Dragon", "DRAGON": "Dragón",
"DARK": "Dark", "DARK": "Siniestro",
"FAIRY": "Fairy", "FAIRY": "Hada",
"STELLAR": "Stellar", "STELLAR": "Astral",
}, },
} as const; } as const;