mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 04:36:15 +00:00
fe6aefd910
* Natures lang files * Updated French nature.ts * Nature german translation + chinese added * Added nature to chinese config.ts --------- Co-authored-by: rnicar <rj.nieto.car@gmail.com> Co-authored-by: Lugiad <adrien.grivel@hotmail.fr> Co-authored-by: rnicar245 <55734812+rnicar245@users.noreply.github.com>
29 lines
662 B
TypeScript
29 lines
662 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
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; |