mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-30 13:33:01 +02:00
* Update achv.ts * Update challenges.ts * Update achv.ts * Update achv.ts * Update challenges.ts * Update challenges.ts * Update achv.ts * Update challenges.ts * Update achv.ts * Update src/locales/de/achv.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/pt_BR/challenges.ts Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> * Update achv.ts * Update challenges.ts * Update achv.ts * Update challenges.ts * Update achv.ts * Update challenges.ts * Update achv.ts * Update challenges.ts --------- Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br>
32 lines
1001 B
TypeScript
32 lines
1001 B
TypeScript
import { TranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const challenges: TranslationEntries = {
|
|
"title": "Modificatori delle sfide",
|
|
"illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!",
|
|
"singleGeneration": {
|
|
"name": "Mono gen",
|
|
"desc": "Puoi usare solo Pokémon di {{gen}} generazione.",
|
|
"desc_default": "Puoi usare solo Pokémon della generazione selezionata.",
|
|
"gen_1": "1ª",
|
|
"gen_2": "2ª",
|
|
"gen_3": "3ª",
|
|
"gen_4": "4ª",
|
|
"gen_5": "5ª",
|
|
"gen_6": "6ª",
|
|
"gen_7": "7ª",
|
|
"gen_8": "8ª",
|
|
"gen_9": "9ª",
|
|
},
|
|
"singleType": {
|
|
"name": "Mono tipo",
|
|
"desc": "Puoi usare solo Pokémon di tipo {{type}}.",
|
|
"desc_default": "Puoi usare solo Pokémon del tipo selezionato."
|
|
},
|
|
"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;
|