mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-15 16:57:10 +00:00
13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
||
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
||
"moveset": "Capacités",
|
||
"gender": "Sexe :",
|
||
"ability": "Talent :",
|
||
"nature": "Nature :",
|
||
"epic": "Épique",
|
||
"rare": "Rare",
|
||
"common": "Commun",
|
||
"form": "Forme :"
|
||
} as const;
|