17 lines
530 B
TypeScript
17 lines
530 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const SummaryUiHandler: SimpleTranslationEntries = {
|
|
"pokemonInfo": "Pokémon Info", //Currently unused
|
|
"originalTrainer": "OT",
|
|
"type": "Type",
|
|
"natureBeforeText": "",
|
|
"natureAfterText": " nature",
|
|
"apparently": "apparently",
|
|
"metAtLv":"met at Lv",
|
|
"status": "Status",
|
|
"lvl": "Lvl",
|
|
"unknown": 'Unknown',
|
|
"expPoints": "EXP. Points",
|
|
"nextLv": "Next Lv.",
|
|
"moveStats": "Power\nAccuracy\nCategory"
|
|
} as const; |