mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-12 16:46:19 +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
647 B
TypeScript
29 lines
647 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const nature: SimpleTranslationEntries = {
|
|
"Hardy": "Hardy",
|
|
"Lonely": "Lonely",
|
|
"Brave": "Brave",
|
|
"Adamant": "Adamant",
|
|
"Naughty": "Naughty",
|
|
"Bold": "Bold",
|
|
"Docile": "Docile",
|
|
"Relaxed": "Relaxed",
|
|
"Impish": "Impish",
|
|
"Lax": "Lax",
|
|
"Timid": "Timid",
|
|
"Hasty": "Hasty",
|
|
"Serious": "Serious",
|
|
"Jolly": "Jolly",
|
|
"Naive": "Naive",
|
|
"Modest": "Modest",
|
|
"Mild": "Mild",
|
|
"Quiet": "Quiet",
|
|
"Bashful": "Bashful",
|
|
"Rash": "Rash",
|
|
"Calm": "Calm",
|
|
"Gentle": "Gentle",
|
|
"Sassy": "Sassy",
|
|
"Careful": "Careful",
|
|
"Quirky": "Quirky"
|
|
} as const; |