mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-12 08:36:09 +00:00
5512be8f31
* translation fixes * info container * localized position and text size in pokemon-info-container
30 lines
698 B
TypeScript
30 lines
698 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const nature: SimpleTranslationEntries = {
|
|
"Hardy": "Destemida",
|
|
"Lonely": "Solitária",
|
|
"Brave": "Valente",
|
|
"Adamant": "Adamante",
|
|
"Naughty": "Teimosa",
|
|
"Bold": "Corajosa",
|
|
"Docile": "Dócil",
|
|
"Relaxed": "Relaxada",
|
|
"Impish": "Inquieta",
|
|
"Lax": "Relaxada",
|
|
"Timid": "Tímida",
|
|
"Hasty": "Apressada",
|
|
"Serious": "Séria",
|
|
"Jolly": "Alegre",
|
|
"Naive": "Ingênua",
|
|
"Modest": "Modesta",
|
|
"Mild": "Mansa",
|
|
"Quiet": "Quieta",
|
|
"Bashful": "Atrapalhada",
|
|
"Rash": "Ousada",
|
|
"Calm": "Calma",
|
|
"Gentle": "Gentil",
|
|
"Sassy": "Atrevida",
|
|
"Careful": "Cuidadosa",
|
|
"Quirky": "Peculiar",
|
|
} as const;
|