mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-29 04:59:16 +01:00
* Localization: Localized Gacha Machine Names * Update src/locales/zh_TW/egg.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/zh_TW/egg.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/locales/de/egg.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/fr/egg.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Update src/locales/ko/egg.ts Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> * Update src/locales/zh_TW/egg.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/zh_CN/egg.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/es/egg.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> * Update Brazilian Portuguese translation for egg.ts * added smaller text size option * update egg.ts translations for German and Brazilian Portuguese * some updates * update egg.ts translations for Spanish and Brazilian Portuguese * Update EggGachaUiHandler to use array.includes for language check * update German translation for legendary egg gatcha * Update src/locales/es/egg.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> * update translations for egg.ts in Spanish and Brazilian Portuguese --------- Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> Co-authored-by: Enoch <enoch.jwsong@gmail.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> Co-authored-by: InnocentGameDev <asdargmng@gmail.com>
29 lines
1.3 KiB
TypeScript
29 lines
1.3 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
||
export const egg: SimpleTranslationEntries = {
|
||
"egg": "Œuf",
|
||
"greatTier": "Rare",
|
||
"ultraTier": "Épique",
|
||
"masterTier": "Légendaire",
|
||
"defaultTier": "Commun",
|
||
"hatchWavesMessageSoon": "Il fait du bruit. Il va éclore !",
|
||
"hatchWavesMessageClose": "Il bouge de temps en temps. Il devrait bientôt éclore.",
|
||
"hatchWavesMessageNotClose": "Qu’est-ce qui va en sortir ? Ça va mettre du temps.",
|
||
"hatchWavesMessageLongTime": "Cet Œuf va sûrement mettre du temps à éclore.",
|
||
"gachaTypeLegendary": "Taux de Légendaires élevé",
|
||
"gachaTypeMove": "Taux de Capacité Œuf Rare élevé",
|
||
"gachaTypeShiny": "Taux de Chromatiques élevé",
|
||
"selectMachine": "Sélectionnez une machine.",
|
||
"notEnoughVouchers": "Vous n’avez pas assez de coupons !",
|
||
"tooManyEggs": "Vous avez trop d’Œufs !",
|
||
"pull": "Tirage",
|
||
"pulls": "Tirages",
|
||
"sameSpeciesEgg": "{{species}} sortira de cet Œuf !",
|
||
"hatchFromTheEgg": "{{pokemonName}} sort de l’Œuf !",
|
||
"eggMoveUnlock": "Capacité Œuf débloquée :\n{{moveName}}",
|
||
"rareEggMoveUnlock": "Capacité Œuf Rare débloquée :\n{{moveName}}",
|
||
"moveUPGacha": "Bonus Capacité\nŒuf Rare !",
|
||
"shinyUPGacha": "Bonus\nChromatique !",
|
||
"legendaryUPGacha": "Bonus !",
|
||
} as const;
|