mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-26 11:39:17 +01:00
* Updating locale folder from ca-ES to ca_ES * Updated the i18n config file to include ca_ES instead of ca-ES
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import { TranslationEntries } from "#app/interfaces/locales.js";
|
|
|
|
export const challenges: TranslationEntries = {
|
|
"title": "Challenge Modifiers",
|
|
"illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!",
|
|
"singleGeneration": {
|
|
"name": "Mono Gen",
|
|
"desc": "You can only use Pokémon from Generation {{gen}}.",
|
|
"desc_default": "You can only use Pokémon from the chosen generation.",
|
|
"gen_1": "one",
|
|
"gen_2": "two",
|
|
"gen_3": "three",
|
|
"gen_4": "four",
|
|
"gen_5": "five",
|
|
"gen_6": "six",
|
|
"gen_7": "seven",
|
|
"gen_8": "eight",
|
|
"gen_9": "nine",
|
|
},
|
|
"singleType": {
|
|
"name": "Mono Type",
|
|
"desc": "You can only use Pokémon with the {{type}} type.",
|
|
"desc_default": "You can only use Pokémon of the chosen type."
|
|
//types in pokemon-info
|
|
},
|
|
"freshStart": {
|
|
"name": "Fresh Start",
|
|
"desc": "You can only use the original starters, and only as if you had just started PokéRogue.",
|
|
"value.0": "Off",
|
|
"value.1": "On",
|
|
}
|
|
} as const;
|