mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-11 02:35:43 +00:00
21 lines
601 B
TypeScript
21 lines
601 B
TypeScript
import { TranslationEntries } from "#app/interfaces/locales";
|
|||
|
|||
export const pokemonSummary: TranslationEntries = {
|
|||
"pokemonInfo": "Pokémon Info",
|
|||
"status": "Status",
|
|||
"powerAccuracyCategory": "Power\nAccuracy\nCategory",
|
|||
"type": "Type",
|
|||
"unknownTrainer": "Unknown",
|
|||
"ot": "OT",
|
|||
"nature": "nature",
|
|||
"expPoints": "Exp. Points",
|
|||
"nextLv": "Next Lv.",
|
|||
"cancel": "Cancel",
|
|||
|
|||
"memoString": "{{natureFragment}} nature,\n{{metFragment}}",
|
|||
"metFragment": {
|
|||
"normal": "met at Lv{{level}},\n{{biome}}.",
|
|||
"apparently": "apparently met at Lv{{level}},\n{{biome}}.",
|
|||
},
|
|||
} as const;
|