mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-29 04:59:16 +01:00
* Localization: Add new translations for party UI handler * fixes * Update src/locales/fr/party-ui-handler.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Update src/locales/de/party-ui-handler.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * minor fix * Update src/locales/fr/party-ui-handler.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Update src/locales/ko/party-ui-handler.ts Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> * change order and name of "Do what with this Pokémon?" message * reverted imports * update party-ui-handler translations for multiple languages * Update src/locales/fr/party-ui-handler.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Update src/locales/de/party-ui-handler.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/de/party-ui-handler.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/zh_CN/party-ui-handler.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/ko/party-ui-handler.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/locales/ko/party-ui-handler.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/locales/ko/party-ui-handler.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * minor fix * pt tweak * Update src/locales/ko/party-ui-handler.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/locales/ko/party-ui-handler.ts Co-authored-by: returntoice <dieandbecome@gmail.com> * Update src/locales/ko/party-ui-handler.ts Co-authored-by: returntoice <dieandbecome@gmail.com> * Update src/locales/ko/party-ui-handler.ts Co-authored-by: returntoice <dieandbecome@gmail.com> * Update src/locales/ko/party-ui-handler.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/locales/es/party-ui-handler.ts Co-authored-by: GoldTra <162721984+GoldTra@users.noreply.github.com> --------- Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> Co-authored-by: Enoch <enoch.jwsong@gmail.com> Co-authored-by: returntoice <dieandbecome@gmail.com> Co-authored-by: GoldTra <162721984+GoldTra@users.noreply.github.com>
54 lines
2.1 KiB
TypeScript
54 lines
2.1 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const partyUiHandler: SimpleTranslationEntries = {
|
|
"SEND_OUT": "Manda in campo",
|
|
"SUMMARY": "Sommario",
|
|
"CANCEL": "Annulla",
|
|
"RELEASE": "Rilascia",
|
|
"APPLY": "Applica",
|
|
"TEACH": "Insegna",
|
|
"SPLICE": "Splice",
|
|
"UNSPLICE": "Unsplice",
|
|
"ACTIVATE": "Activate",
|
|
"DEACTIVATE": "Deactivate",
|
|
"TRANSFER": "Transfer",
|
|
"ALL": "All",
|
|
"PASS_BATON": "Pass Baton",
|
|
"UNPAUSE_EVOLUTION": "Unpause Evolution",
|
|
"REVIVE": "Revive",
|
|
|
|
"choosePokemon": "Choose a Pokémon.",
|
|
"doWhatWithThisPokemon": "Do what with this Pokémon?",
|
|
"noEnergy": "{{pokemonName}} has no energy\nleft to battle!",
|
|
"hasEnergy": "{{pokemonName}} still has energy\nto battle!",
|
|
"cantBeUsed": "{{pokemonName}} can't be used in\nthis challenge!",
|
|
"tooManyItems": "{{pokemonName}} has too many\nof this item!",
|
|
"anyEffect": "It won't have any effect.",
|
|
"unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.",
|
|
"unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.",
|
|
"wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.",
|
|
"releaseConfirmation": "Do you really want to release {{pokemonName}}?",
|
|
"releaseInBattle": "You can't release a Pokémon that's in battle!",
|
|
"selectAMove": "Select a move.",
|
|
"changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.",
|
|
"selectAnotherPokemonToSplice": "Select another Pokémon to splice.",
|
|
"cancel": "Cancel",
|
|
|
|
// Slot TM text
|
|
"able": "Able",
|
|
"notAble": "Not able",
|
|
"learned": "Learned",
|
|
|
|
// Releasing messages
|
|
"goodbye": "Goodbye, {{pokemonName}}!",
|
|
"byebye": "Byebye, {{pokemonName}}!",
|
|
"farewell": "Farewell, {{pokemonName}}!",
|
|
"soLong": "So long, {{pokemonName}}!",
|
|
"thisIsWhereWePart": "This is where we part, {{pokemonName}}!",
|
|
"illMissYou": "I'll miss you, {{pokemonName}}!",
|
|
"illNeverForgetYou": "I'll never forget you, {{pokemonName}}!",
|
|
"untilWeMeetAgain": "Until we meet again, {{pokemonName}}!",
|
|
"sayonara": "Sayonara, {{pokemonName}}!",
|
|
"smellYaLater": "Smell ya later, {{pokemonName}}!",
|
|
} as const;
|