mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 20:27:09 +00:00
21 lines
635 B
TypeScript
21 lines
635 B
TypeScript
import { TranslationEntries } from "#app/interfaces/locales";
|
|||
|
|||
export const pokemonSummary: TranslationEntries = {
|
|||
"pokemonInfo": "Info Pokémon",
|
|||
"status": "Statut",
|
|||
"powerAccuracyCategory": "Puissance\nPrécision\nCatégorie",
|
|||
"type": "Type",
|
|||
"unknownTrainer": "Inconnu",
|
|||
"ot": "D.O.",
|
|||
"nature": "de nature",
|
|||
"expPoints": "Points Exp.",
|
|||
"nextLv": "N. suivant",
|
|||
"cancel": "Annuler",
|
|||
|
|||
"memoString": "{{natureFragment}} de nature,\n{{metFragment}}",
|
|||
"metFragment": {
|
|||
"normal": "rencontré au N.{{level}},\n{{biome}}.",
|
|||
"apparently": "apparemment rencontré au N.{{level}},\n{{biome}}.",
|
|||
},
|
|||
} as const;
|