Translate command, menu UI, and stats into Spanish
parent
4ad0dbeaa8
commit
252e20650d
|
@ -1,9 +1,9 @@
|
||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
export const commandUiHandler: SimpleTranslationEntries = {
|
export const commandUiHandler: SimpleTranslationEntries = {
|
||||||
"fight": "Fight",
|
"fight": "Luchar",
|
||||||
"ball": "Ball",
|
"ball": "Ball",
|
||||||
"pokemon": "Pokémon",
|
"pokemon": "Pokémon",
|
||||||
"run": "Run",
|
"run": "Huir",
|
||||||
"actionMessage": "What will\n{{pokemonName}} do?",
|
"actionMessage": "¿Qué debería\nhacer {{pokemonName}}?",
|
||||||
} as const;
|
} as const;
|
|
@ -1,23 +1,23 @@
|
||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
export const menuUiHandler: SimpleTranslationEntries = {
|
export const menuUiHandler: SimpleTranslationEntries = {
|
||||||
"GAME_SETTINGS": 'Game Settings',
|
"GAME_SETTINGS": 'Ajustes',
|
||||||
"ACHIEVEMENTS": "Achievements",
|
"ACHIEVEMENTS": "Logros",
|
||||||
"STATS": "Stats",
|
"STATS": "Estadísticas",
|
||||||
"VOUCHERS": "Vouchers",
|
"VOUCHERS": "Vales",
|
||||||
"EGG_LIST": "Egg List",
|
"EGG_LIST": "Lista de Huevos",
|
||||||
"EGG_GACHA": "Egg Gacha",
|
"EGG_GACHA": "Gacha de Huevos",
|
||||||
"MANAGE_DATA": "Manage Data",
|
"MANAGE_DATA": "Gestionar Datos",
|
||||||
"COMMUNITY": "Community",
|
"COMMUNITY": "Comunidad",
|
||||||
"RETURN_TO_TITLE": "Return To Title",
|
"RETURN_TO_TITLE": "Volver al Título",
|
||||||
"LOG_OUT": "Log Out",
|
"LOG_OUT": "Cerrar Sesión",
|
||||||
"slot": "Slot {{slotNumber}}",
|
"slot": "Ranura {{slotNumber}}",
|
||||||
"importSession": "Import Session",
|
"importSession": "Importar Sesión",
|
||||||
"importSlotSelect": "Select a slot to import to.",
|
"importSlotSelect": "Selecciona una ranura para importar.",
|
||||||
"exportSession": "Export Session",
|
"exportSession": "Exportar Sesión",
|
||||||
"exportSlotSelect": "Select a slot to export from.",
|
"exportSlotSelect": "Selecciona una ranura para exportar.",
|
||||||
"importData": "Import Data",
|
"importData": "Importar Datos",
|
||||||
"exportData": "Export Data",
|
"exportData": "Exportar Datos",
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancelar",
|
||||||
"losingProgressionWarning": "You will lose any progress since the beginning of the battle. Proceed?"
|
"losingProgressionWarning": "Perderás cualquier progreso desde el inicio de la batalla. ¿Continuar?"
|
||||||
} as const;
|
} as const;
|
|
@ -1,16 +1,16 @@
|
||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
export const pokemonStat: SimpleTranslationEntries = {
|
export const pokemonStat: SimpleTranslationEntries = {
|
||||||
"HP": "Max. HP",
|
"HP": "PV",
|
||||||
"HPshortened": "MaxHP",
|
"HPshortened": "PV",
|
||||||
"ATK": "Attack",
|
"ATK": "Ataque",
|
||||||
"ATKshortened": "Atk",
|
"ATKshortened": "Ataque",
|
||||||
"DEF": "Defense",
|
"DEF": "Defensa",
|
||||||
"DEFshortened": "Def",
|
"DEFshortened": "Defensa",
|
||||||
"SPATK": "Sp. Atk",
|
"SPATK": "At. Esp.",
|
||||||
"SPATKshortened": "SpAtk",
|
"SPATKshortened": "At. Esp.",
|
||||||
"SPDEF": "Sp. Def",
|
"SPDEF": "Def. Esp.",
|
||||||
"SPDEFshortened": "SpDef",
|
"SPDEFshortened": "Def. Esp.",
|
||||||
"SPD": "Speed",
|
"SPD": "Velocidad",
|
||||||
"SPDshortened": "Spd"
|
"SPDshortened": "Veloc."
|
||||||
} as const;
|
} as const;
|
Loading…
Reference in New Issue