mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-03 14:47:12 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
|
"moveset": "招式",
|
|
"gender": "性别:",
|
|
"ability": "特性:",
|
|
"nature": "性格:",
|
|
"epic": "史诗",
|
|
"rare": "稀有",
|
|
"common": "常见"
|
|
} as const;
|