mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 04:36:15 +00:00
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;
|