mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-13 00:56:08 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
30 lines
668 B
TypeScript
30 lines
668 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
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;
|