2024-06-17 17:05:33 -04:00
|
|
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
2024-05-16 10:31:50 +02:00
|
|
|
|
|
|
|
export const egg: SimpleTranslationEntries = {
|
|
|
|
"egg": "Egg",
|
|
|
|
"greatTier": "Rare",
|
|
|
|
"ultraTier": "Epic",
|
|
|
|
"masterTier": "Legendary",
|
|
|
|
"defaultTier": "Common",
|
|
|
|
"hatchWavesMessageSoon": "Sounds can be heard coming from inside! It will hatch soon!",
|
|
|
|
"hatchWavesMessageClose": "It appears to move occasionally. It may be close to hatching.",
|
|
|
|
"hatchWavesMessageNotClose": "What will hatch from this? It doesn't seem close to hatching.",
|
|
|
|
"hatchWavesMessageLongTime": "It looks like this Egg will take a long time to hatch.",
|
|
|
|
"gachaTypeLegendary": "Legendary Rate Up",
|
|
|
|
"gachaTypeMove": "Rare Egg Move Rate Up",
|
|
|
|
"gachaTypeShiny": "Shiny Rate Up",
|
|
|
|
"selectMachine": "Select a machine.",
|
|
|
|
"notEnoughVouchers": "You don't have enough vouchers!",
|
|
|
|
"tooManyEggs": "You have too many eggs!",
|
|
|
|
"pull": "Pull",
|
2024-06-22 02:19:56 +02:00
|
|
|
"pulls": "Pulls",
|
|
|
|
"sameSpeciesEgg": "{{species}} will hatch from this egg!",
|
2024-05-23 17:03:10 +02:00
|
|
|
} as const;
|