pokerogue/src/locales/fr/nature.ts
Matthew d70dd16f8c
[Refactor] I18n Cleaning (#2348)
* I18n Cleaning

* pr comments

* appease typedoc

* moved types into src
2024-06-17 17:05:33 -04:00

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;