mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-05 13:16:07 +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>
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;
|