mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-01 13:47:05 +00:00
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
|
||
|
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
||
|
"moveset": "Moveset",
|
||
|
"gender": "Gender:",
|
||
|
"ability": "Ability:",
|
||
|
"nature": "Nature:",
|
||
|
"form": "Form:"
|
||
|
} as const;
|