mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-29 04:59:16 +01:00
* Updating locale folder from ca-ES to ca_ES * Updated the i18n config file to include ca_ES instead of ca-ES
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;
|