mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-06 01:47:30 +00:00
30 lines
669 B
TypeScript
30 lines
669 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const nature: SimpleTranslationEntries = {
|
|
"Hardy": "Fuerte",
|
|
"Lonely": "Huraña",
|
|
"Brave": "Audaz",
|
|
"Adamant": "Firme",
|
|
"Naughty": "Pícara",
|
|
"Bold": "Osada",
|
|
"Docile": "Dócil",
|
|
"Relaxed": "Plácida",
|
|
"Impish": "Agitada",
|
|
"Lax": "Floja",
|
|
"Timid": "Miedosa",
|
|
"Hasty": "Activa",
|
|
"Serious": "Seria",
|
|
"Jolly": "Alegre",
|
|
"Naive": "Ingenua",
|
|
"Modest": "Modesta",
|
|
"Mild": "Afable",
|
|
"Quiet": "Mansa",
|
|
"Bashful": "Tímida",
|
|
"Rash": "Alocada",
|
|
"Calm": "Serena",
|
|
"Gentle": "Amable",
|
|
"Sassy": "Grosera",
|
|
"Careful": "Cauta",
|
|
"Quirky": "Rara"
|
|
} as const;
|