mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-13 09:06:07 +00:00
30 lines
662 B
TypeScript
30 lines
662 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const nature: SimpleTranslationEntries = {
|
||
|
"Hardy": "Hardi",
|
||
|
"Lonely": "Solo",
|
||
|
"Brave": "Brave",
|
||
|
"Adamant": "Rigide",
|
||
|
"Naughty": "Mauvais",
|
||
|
"Bold": "Assuré",
|
||
|
"Docile": "Docile",
|
||
|
"Relaxed": "Relax",
|
||
|
"Impish": "Malin",
|
||
|
"Lax": "Lâche",
|
||
|
"Timid": "Timide",
|
||
|
"Hasty": "Pressé",
|
||
|
"Serious": "Sérieux",
|
||
|
"Jolly": "Jovial",
|
||
|
"Naive": "Naïf",
|
||
|
"Modest": "Modeste",
|
||
|
"Mild": "Doux",
|
||
|
"Quiet": "Discret",
|
||
|
"Bashful": "Pudique",
|
||
|
"Rash": "Foufou",
|
||
|
"Calm": "Calme",
|
||
|
"Gentle": "Gentil",
|
||
|
"Sassy": "Malpoli",
|
||
|
"Careful": "Prudent",
|
||
|
"Quirky": "Bizarre"
|
||
|
} as const;
|