mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 20:27:09 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
13 lines
317 B
TypeScript
13 lines
317 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
|
"moveset": "기술",
|
|
"gender": "성별:",
|
|
"ability": "특성:",
|
|
"nature": "성격:",
|
|
"epic": "에픽",
|
|
"rare": "레어",
|
|
"common": "커먼",
|
|
"form": "폼:"
|
|
} as const;
|