mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 04:06:09 +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
641 B
TypeScript
29 lines
641 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const nature: SimpleTranslationEntries = {
|
|
"Hardy": "Robust",
|
|
"Lonely": "Solo",
|
|
"Brave": "Mutig",
|
|
"Adamant": "Hart",
|
|
"Naughty": "Frech",
|
|
"Bold": "Kühn",
|
|
"Docile": "Sanft",
|
|
"Relaxed": "Locker",
|
|
"Impish": "Pfiffig",
|
|
"Lax": "Lasch",
|
|
"Timid": "Scheu",
|
|
"Hasty": "Hastig",
|
|
"Serious": "Ernst",
|
|
"Jolly": "Froh",
|
|
"Naive": "Naiv",
|
|
"Modest": "Mäßig",
|
|
"Mild": "Mild",
|
|
"Quiet": "Ruhig",
|
|
"Bashful": "Zaghaft",
|
|
"Rash": "Hitzig",
|
|
"Calm": "Still",
|
|
"Gentle": "Zart",
|
|
"Sassy": "Forsch",
|
|
"Careful": "Sacht",
|
|
"Quirky": "Kauzig"
|
|
} as const; |