@orbit-software/sdk 1.75.0 → 1.80.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/assets/icons/IconBalanceCoins.d.ts +3 -0
- package/dist/esm/{app/ui/components/IconBalanceCoin.d.ts → assets/icons/IconBalanceGems.d.ts} +1 -1
- package/dist/esm/assets/icons/IconUsdt.d.ts +3 -0
- package/dist/esm/components/BuyAdsFreeButton.d.ts +1 -0
- package/dist/esm/{features/profile/components → components}/OverlayProfile.d.ts +2 -2
- package/dist/esm/components/layout/BottomSentinel.d.ts +2 -0
- package/dist/esm/components/modals/BoxOpeningModal/AnimatedFullscreen.d.ts +14 -0
- package/dist/esm/components/modals/BoxOpeningModal/BoxOpeningModal.d.ts +2 -0
- package/dist/esm/{launcherSrc/features/profile/components → components/modals/BoxOpeningModal}/PrizeCarousel.d.ts +4 -3
- package/dist/esm/components/modals/BoxOpeningModal/RewardBoxRareBadge.d.ts +5 -0
- package/dist/esm/{launcherSrc/features/profile/components → components/modals/BoxOpeningModal}/RewardTypeBadge.d.ts +2 -2
- package/dist/esm/{launcherSrc/features/profile/components → components/modals/BoxOpeningModal}/RewardTypeImage.d.ts +3 -3
- package/dist/esm/{launcherSrc/features/profile → components/modals/BoxOpeningModal}/utils/findPrizeIndex.d.ts +1 -1
- package/dist/esm/components/modals/BoxOpeningModal/utils/generateExcitingPrizes.d.ts +9 -0
- package/dist/esm/components/modals/BoxOpeningModal/utils/sortPrizesDistributed.d.ts +2 -0
- package/dist/esm/components/modals/LevelInfoModal.d.ts +2 -0
- package/dist/esm/components/modals/ProfileInventoryModal.d.ts +2 -0
- package/dist/esm/components/modals/PurchaseAdsFreeModal.d.ts +2 -0
- package/dist/esm/components/modals/TopUpModal/TopUpModal.d.ts +2 -0
- package/dist/esm/components/{AnimatedBalance.d.ts → ui/AnimatedBalance.d.ts} +2 -1
- package/dist/esm/components/ui/BalanceHeader.d.ts +4 -0
- package/dist/esm/components/ui/Drawer.d.ts +9 -0
- package/dist/esm/components/ui/EventsStack.d.ts +6 -0
- package/dist/esm/components/ui/FormattedXP.d.ts +4 -0
- package/dist/esm/components/ui/Icon.d.ts +27 -0
- package/dist/esm/{launcherSrc/app/ui/components → components/ui}/XpProgress.d.ts +2 -4
- package/dist/esm/{launcherSrc/app/contexts → components/ui/snackbar}/SnackbarContext.d.ts +4 -2
- package/dist/esm/confirm/confirm.d.ts +2 -0
- package/dist/esm/constants/animations.d.ts +2 -0
- package/dist/esm/hooks/useAnimateNumber.d.ts +1 -0
- package/dist/esm/hooks/useLottie.d.ts +12 -0
- package/dist/esm/hooks/useThrottle.d.ts +1 -0
- package/dist/esm/i18n/generate-types.d.ts +1 -0
- package/dist/esm/i18n/generated-translation-type.d.ts +112 -0
- package/dist/esm/i18n/languages.d.ts +7 -0
- package/dist/esm/i18n/locales/en.json.d.ts +137 -0
- package/dist/esm/i18n/locales/es.json.d.ts +136 -0
- package/dist/esm/i18n/locales/hi.json.d.ts +137 -0
- package/dist/esm/i18n/locales/pt.json.d.ts +136 -0
- package/dist/esm/i18n/locales/ru.json.d.ts +137 -0
- package/dist/esm/i18n/types.d.ts +9 -0
- package/dist/esm/i18n/useTranslation.d.ts +6 -0
- package/dist/esm/lib/BannerManager.d.ts +36 -0
- package/dist/esm/lib/WebSocketManager.d.ts +3 -3
- package/dist/esm/lib/activity-detector.d.ts +1 -1
- package/dist/esm/lib/tma-network.d.ts +1 -1
- package/dist/esm/providers/BoxOpeningProvider.d.ts +21 -0
- package/dist/esm/providers/ConfettiProvider.d.ts +3 -0
- package/dist/esm/providers/I18nBackendLanguageProvider.d.ts +3 -0
- package/dist/esm/queries/box/useBoxRewards.d.ts +13 -0
- package/dist/esm/queries/box/useRevealReward.d.ts +10 -0
- package/dist/esm/queries/user/useCancelNoAds.d.ts +2 -0
- package/dist/esm/queries/user/useCreateInvoiceBuyNoAds.d.ts +3 -0
- package/dist/esm/queries/user/usePrices.d.ts +3 -0
- package/dist/esm/queries/user/useProfile.d.ts +4 -0
- package/dist/esm/queryClient.d.ts +2 -0
- package/dist/esm/sdk.d.ts +56 -31
- package/dist/esm/sdk.mjs +44640 -43919
- package/dist/esm/sdk.umd.js +134 -198
- package/dist/esm/stores/confettiStore.d.ts +8 -0
- package/dist/esm/stores/inventroryModalStore.d.ts +6 -0
- package/dist/esm/stores/topUpModalStore.d.ts +6 -0
- package/dist/esm/types/api.d.ts +39 -0
- package/dist/esm/utils/cn.d.ts +2 -0
- package/dist/esm/utils/formatter.d.ts +5 -0
- package/dist/esm/utils/price.d.ts +2 -0
- package/dist/esm/utils/shuffleArray.d.ts +1 -0
- package/dist/esm/utils/telegramLanguageCodeToFlagEmoji.d.ts +11 -0
- package/dist/stats-confirm.html +1 -1
- package/dist/stats-esm.html +1 -1
- package/dist/stats-umd-react.html +1 -1
- package/dist/stats-umd.html +1 -1
- package/dist/umd/sdk.umd.js +134 -198
- package/dist/umd_react/sdk_react.umd.js +191 -255
- package/package.json +28 -30
- package/dist/confirm/index.html +0 -24
- package/dist/esm/app/helpers.d.ts +0 -2
- package/dist/esm/app/ui/assets/IconBack.d.ts +0 -1
- package/dist/esm/app/ui/components/AvatarProgress.d.ts +0 -13
- package/dist/esm/app/ui/components/ClosableModal.d.ts +0 -12
- package/dist/esm/app/ui/components/IconBalanceDiamond.d.ts +0 -3
- package/dist/esm/app/ui/components/InputSwitch.d.ts +0 -9
- package/dist/esm/app/ui/components/Inventory/Inventory.d.ts +0 -2
- package/dist/esm/app/ui/components/Inventory/context.d.ts +0 -10
- package/dist/esm/app/ui/components/XsButton.d.ts +0 -6
- package/dist/esm/app/ui/hooks/useAnimateNumber.d.ts +0 -1
- package/dist/esm/app/utils.d.ts +0 -2
- package/dist/esm/components/AppContent/AppContent.d.ts +0 -10
- package/dist/esm/components/AppContent/BottomSentinel.d.ts +0 -2
- package/dist/esm/components/BuyShopItem.d.ts +0 -1
- package/dist/esm/components/ModalCardContent.d.ts +0 -5
- package/dist/esm/features/profile/assets/IconAd.d.ts +0 -1
- package/dist/esm/features/profile/assets/IconAddCircle.d.ts +0 -1
- package/dist/esm/features/profile/assets/IconChevronRight.d.ts +0 -2
- package/dist/esm/features/profile/assets/IconDrag.d.ts +0 -2
- package/dist/esm/features/profile/assets/IconEdit.d.ts +0 -2
- package/dist/esm/features/profile/assets/IconGame.d.ts +0 -2
- package/dist/esm/features/profile/assets/IconNoSign.d.ts +0 -1
- package/dist/esm/features/profile/assets/IconProfile.d.ts +0 -1
- package/dist/esm/features/profile/assets/profileBgGradients.d.ts +0 -6
- package/dist/esm/features/profile/components/BalanceConfetti.d.ts +0 -6
- package/dist/esm/features/profile/components/BuyMenu.d.ts +0 -8
- package/dist/esm/features/profile/components/CircleParticles.d.ts +0 -10
- package/dist/esm/features/profile/components/FormattedXP.d.ts +0 -8
- package/dist/esm/features/profile/components/LevelInfoModal.d.ts +0 -9
- package/dist/esm/features/profile/components/ModalContainer.d.ts +0 -6
- package/dist/esm/features/profile/components/PurchaseConfirm.d.ts +0 -9
- package/dist/esm/features/profile/components/TaskCard.d.ts +0 -21
- package/dist/esm/features/profile/components/XpProgress.d.ts +0 -14
- package/dist/esm/features/profile/components/adsFree/BuyAdsFreeButton.d.ts +0 -3
- package/dist/esm/features/profile/components/adsFree/PurchaseAdsFree.d.ts +0 -11
- package/dist/esm/features/profile/hooks/useAnimatedProfile.d.ts +0 -5
- package/dist/esm/features/profile/utils/getFormattedDate.d.ts +0 -1
- package/dist/esm/features/wages/components/ModalContainer.d.ts +0 -6
- package/dist/esm/features/wages/components/WageCollapsedOverlay.d.ts +0 -6
- package/dist/esm/features/wages/components/WageExpandedOverlay.d.ts +0 -7
- package/dist/esm/features/wages/components/WageMenu.d.ts +0 -4
- package/dist/esm/features/wages/index.d.ts +0 -3
- package/dist/esm/features/wages/utils/formatTime.d.ts +0 -1
- package/dist/esm/features/wages/utils/formatTimeWageItem.d.ts +0 -1
- package/dist/esm/features/wages/utils/getSecondsPassed.d.ts +0 -1
- package/dist/esm/i18n/locales/translations/en.json.d.ts +0 -300
- package/dist/esm/i18n/locales/translations/hi.json.d.ts +0 -300
- package/dist/esm/i18n/locales/translations/ru.json.d.ts +0 -300
- package/dist/esm/launcherSrc/App.d.ts +0 -2
- package/dist/esm/launcherSrc/api/types.d.ts +0 -211
- package/dist/esm/launcherSrc/api/userApi.d.ts +0 -24
- package/dist/esm/launcherSrc/app/components/DebugConsole.d.ts +0 -2
- package/dist/esm/launcherSrc/app/helpers.d.ts +0 -3
- package/dist/esm/launcherSrc/app/hooks/forceRerender.d.ts +0 -1
- package/dist/esm/launcherSrc/app/hooks/useMainButtonControl.d.ts +0 -7
- package/dist/esm/launcherSrc/app/hooks/useMiniApp.d.ts +0 -3
- package/dist/esm/launcherSrc/app/hooks.d.ts +0 -10
- package/dist/esm/launcherSrc/app/store.d.ts +0 -17
- package/dist/esm/launcherSrc/app/ui/assets/IconBack.d.ts +0 -1
- package/dist/esm/launcherSrc/app/ui/assets/IconCheck.d.ts +0 -2
- package/dist/esm/launcherSrc/app/ui/assets/IconCheckThin.d.ts +0 -2
- package/dist/esm/launcherSrc/app/ui/assets/IconCross.d.ts +0 -2
- package/dist/esm/launcherSrc/app/ui/assets/IconSearch.d.ts +0 -2
- package/dist/esm/launcherSrc/app/ui/components/AvatarProgress.d.ts +0 -13
- package/dist/esm/launcherSrc/app/ui/components/ClosableModal.d.ts +0 -10
- package/dist/esm/launcherSrc/app/ui/components/FormattedXP.d.ts +0 -8
- package/dist/esm/launcherSrc/app/ui/components/IconBalance.d.ts +0 -3
- package/dist/esm/launcherSrc/app/ui/components/InputSwitch.d.ts +0 -9
- package/dist/esm/launcherSrc/app/ui/components/Twemoji.d.ts +0 -8
- package/dist/esm/launcherSrc/app/ui/components/UICell.d.ts +0 -16
- package/dist/esm/launcherSrc/app/ui/components/UIDateInput.d.ts +0 -21
- package/dist/esm/launcherSrc/app/ui/components/UIDivider.d.ts +0 -4
- package/dist/esm/launcherSrc/app/ui/components/UIEmoji.d.ts +0 -8
- package/dist/esm/launcherSrc/app/ui/components/UIHero.d.ts +0 -10
- package/dist/esm/launcherSrc/app/ui/components/UISection.d.ts +0 -9
- package/dist/esm/launcherSrc/app/ui/components/UITextarea.d.ts +0 -7
- package/dist/esm/launcherSrc/app/ui/hooks/useAnimateNumber.d.ts +0 -1
- package/dist/esm/launcherSrc/app/utils.d.ts +0 -13
- package/dist/esm/launcherSrc/assets/Icon28Edit.d.ts +0 -2
- package/dist/esm/launcherSrc/assets/Icon28Game.d.ts +0 -1
- package/dist/esm/launcherSrc/assets/Icon28Link.d.ts +0 -1
- package/dist/esm/launcherSrc/features/games/assets/IconFilter.d.ts +0 -1
- package/dist/esm/launcherSrc/features/games/assets/IconPlayers.d.ts +0 -2
- package/dist/esm/launcherSrc/features/games/assets/IconQuestion.d.ts +0 -2
- package/dist/esm/launcherSrc/features/games/assets/IconQuestionCircle.d.ts +0 -2
- package/dist/esm/launcherSrc/features/games/assets/IconStar.d.ts +0 -4
- package/dist/esm/launcherSrc/features/games/assets/IconThumbsDownFilled.d.ts +0 -2
- package/dist/esm/launcherSrc/features/games/assets/IconThumbsDownOutlined.d.ts +0 -2
- package/dist/esm/launcherSrc/features/games/assets/IconThumbsUpFilled.d.ts +0 -2
- package/dist/esm/launcherSrc/features/games/assets/IconThumbsUpOutlined.d.ts +0 -2
- package/dist/esm/launcherSrc/features/games/components/GameItem.d.ts +0 -10
- package/dist/esm/launcherSrc/features/games/components/ResetStorageButton.d.ts +0 -3
- package/dist/esm/launcherSrc/features/games/components/ReviewModal.d.ts +0 -10
- package/dist/esm/launcherSrc/features/games/hooks/useGamesData.d.ts +0 -13
- package/dist/esm/launcherSrc/features/games/redux/gamesSlice.d.ts +0 -34
- package/dist/esm/launcherSrc/features/games/service/gamesService.d.ts +0 -3
- package/dist/esm/launcherSrc/features/leaderboard/components/Rating.d.ts +0 -1
- package/dist/esm/launcherSrc/features/leaderboard/components/RatingCard/RatingCard.d.ts +0 -10
- package/dist/esm/launcherSrc/features/leaderboard/components/RatingInfo/RatingInfo.d.ts +0 -1
- package/dist/esm/launcherSrc/features/leaderboard/components/RatingLevel/IconWreaths.d.ts +0 -3
- package/dist/esm/launcherSrc/features/leaderboard/components/RatingLevel/RatingLevel.d.ts +0 -6
- package/dist/esm/launcherSrc/features/leaderboard/components/RatingLevel/lock.d.ts +0 -3
- package/dist/esm/launcherSrc/features/leaderboard/hooks/useLeaderboardData.d.ts +0 -10
- package/dist/esm/launcherSrc/features/leaderboard/index.d.ts +0 -1
- package/dist/esm/launcherSrc/features/leaderboard/redux/leaderboardSlice.d.ts +0 -18
- package/dist/esm/launcherSrc/features/leaderboard/services/leaderboardService.d.ts +0 -2
- package/dist/esm/launcherSrc/features/navigation/assets/IconGame.d.ts +0 -1
- package/dist/esm/launcherSrc/features/navigation/assets/IconProfile.d.ts +0 -1
- package/dist/esm/launcherSrc/features/navigation/assets/IconSmile.d.ts +0 -2
- package/dist/esm/launcherSrc/features/navigation/components/FloatingProfile.d.ts +0 -2
- package/dist/esm/launcherSrc/features/navigation/components/IconWithCounter.d.ts +0 -7
- package/dist/esm/launcherSrc/features/navigation/redux/navigationSlice.d.ts +0 -15
- package/dist/esm/launcherSrc/features/navigation/redux/tabsSlice.d.ts +0 -12
- package/dist/esm/launcherSrc/features/profile/assets/IconAd.d.ts +0 -1
- package/dist/esm/launcherSrc/features/profile/assets/IconAddCircle.d.ts +0 -1
- package/dist/esm/launcherSrc/features/profile/assets/IconChevronRight.d.ts +0 -2
- package/dist/esm/launcherSrc/features/profile/assets/IconColorPicker.d.ts +0 -1
- package/dist/esm/launcherSrc/features/profile/assets/IconCurrencyStar.d.ts +0 -3
- package/dist/esm/launcherSrc/features/profile/assets/IconGlobe.d.ts +0 -2
- package/dist/esm/launcherSrc/features/profile/assets/IconLock.d.ts +0 -2
- package/dist/esm/launcherSrc/features/profile/assets/IconNoSign.d.ts +0 -1
- package/dist/esm/launcherSrc/features/profile/assets/IconSignature.d.ts +0 -5
- package/dist/esm/launcherSrc/features/profile/assets/profileBgGradients.d.ts +0 -50
- package/dist/esm/launcherSrc/features/profile/components/AdsFree/BuyAdsFreeButton.d.ts +0 -0
- package/dist/esm/launcherSrc/features/profile/components/AdsFree/PurchaseAdsFree.d.ts +0 -9
- package/dist/esm/launcherSrc/features/profile/components/Balance/ProfileBalance.d.ts +0 -6
- package/dist/esm/launcherSrc/features/profile/components/Balance/TopUpModal/BuyMenu.d.ts +0 -8
- package/dist/esm/launcherSrc/features/profile/components/Balance/TopUpModal/Ribbon.d.ts +0 -6
- package/dist/esm/launcherSrc/features/profile/components/BoxOpeningModal.d.ts +0 -3
- package/dist/esm/launcherSrc/features/profile/components/LevelInfoModal.d.ts +0 -9
- package/dist/esm/launcherSrc/features/profile/components/ProfileInventory.d.ts +0 -1
- package/dist/esm/launcherSrc/features/profile/components/ProfileLeaderboard.d.ts +0 -6
- package/dist/esm/launcherSrc/features/profile/components/ProfileReviews.d.ts +0 -6
- package/dist/esm/launcherSrc/features/profile/components/RewardBoxRareBadge.d.ts +0 -4
- package/dist/esm/launcherSrc/features/profile/components/particles/BalanceConfetti.d.ts +0 -6
- package/dist/esm/launcherSrc/features/profile/components/particles/CircleParticles.d.ts +0 -10
- package/dist/esm/launcherSrc/features/profile/components/particles/StarParticles.d.ts +0 -10
- package/dist/esm/launcherSrc/features/profile/contexts/BoxOpeningContext.d.ts +0 -12
- package/dist/esm/launcherSrc/features/profile/data/countries.d.ts +0 -10
- package/dist/esm/launcherSrc/features/profile/hooks/useProfileData.d.ts +0 -24
- package/dist/esm/launcherSrc/features/profile/redux/profileSlice.d.ts +0 -130
- package/dist/esm/launcherSrc/features/profile/services/buyMenuService.d.ts +0 -3
- package/dist/esm/launcherSrc/features/profile/services/profileService.d.ts +0 -12
- package/dist/esm/launcherSrc/i18n/index.d.ts +0 -2
- package/dist/esm/launcherSrc/index.d.ts +0 -0
- package/dist/esm/launcherSrc/setupTests.d.ts +0 -0
- package/dist/esm/launcherSrc/utils/openTelegramLinkFixed.d.ts +0 -1
- package/dist/esm/lib/init-sentry.d.ts +0 -5
- package/dist/esm/stores/buyShopModalStore.d.ts +0 -8
- package/dist/esm/stores/profileStore.d.ts +0 -17
- package/dist/esm/stores/wageStore.d.ts +0 -12
- package/dist/esm/{app/ui/assets → assets/icons}/IconClosePlain.d.ts +0 -0
- package/dist/esm/{features/profile/assets → assets/icons}/IconCurrencyStar.d.ts +0 -0
- package/dist/esm/{features/profile/assets → assets/icons}/IconTelegramStar.d.ts +0 -0
- package/dist/esm/{features/profile/assets → assets/lottie}/moneyTongue.json.d.ts +0 -0
- package/dist/esm/{features/profile/assets → assets/lottie}/newspaper.json.d.ts +0 -0
- package/dist/esm/{launcherSrc/features/profile/components/Balance → components/modals}/TopUpModal/BuyOption.d.ts +0 -0
- package/dist/esm/{features/profile/components → components/modals/TopUpModal}/Ribbon.d.ts +0 -0
- package/dist/esm/{launcherSrc/app/ui/components → components/ui/XsButton}/XsButton.d.ts +1 -1
- /package/dist/esm/{launcherSrc/features/profile/components → components/ui}/particles/ConfettiParticles.d.ts +0 -0
- /package/dist/esm/{features/profile/components → components/ui/particles}/StarParticles.d.ts +0 -0
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"balance": "Saldo",
|
|
3
|
+
"topUp": "Recargar",
|
|
4
|
+
"ads": "Anuncios",
|
|
5
|
+
"adsOn": "On",
|
|
6
|
+
"adsOff": "Off",
|
|
7
|
+
"level": "Nivel",
|
|
8
|
+
"toLevelUp": "para subir de nivel",
|
|
9
|
+
"xpCounter": "/ {{total}} XP",
|
|
10
|
+
"lootBox": "Caja de botín",
|
|
11
|
+
"forLevel": "para el nivel {{level}}",
|
|
12
|
+
"unopenedLootBox": "Caja de botín sin abrir",
|
|
13
|
+
"emptyBox": "Caja vacía",
|
|
14
|
+
"openItem": "Abrir objeto",
|
|
15
|
+
"reward_type": {
|
|
16
|
+
"coins": "{{count}} moneda",
|
|
17
|
+
"coins_one": "{{count}} moneda",
|
|
18
|
+
"coins_few": "{{count}} monedas",
|
|
19
|
+
"coins_many": "{{count}} monedas",
|
|
20
|
+
"usdt": "{{count}} USDT",
|
|
21
|
+
"usdt_one": "{{count}} USDT",
|
|
22
|
+
"usdt_few": "{{count}} USDT",
|
|
23
|
+
"usdt_many": "{{count}} USDT",
|
|
24
|
+
"ton": "{{count}} TON",
|
|
25
|
+
"ton_one": "{{count}} TON",
|
|
26
|
+
"ton_few": "{{count}} TON",
|
|
27
|
+
"ton_many": "{{count}} TON",
|
|
28
|
+
"telegram_premium": "Telegram Premium",
|
|
29
|
+
"double_balance": "Doble saldo",
|
|
30
|
+
"box": "CAJA DE BOTÍN",
|
|
31
|
+
"box_common": "BÁSICA",
|
|
32
|
+
"box_rare": "RARA",
|
|
33
|
+
"box_epic": "ÉPICA",
|
|
34
|
+
"box_legend": "LEGENDARIA"
|
|
35
|
+
},
|
|
36
|
+
"months": {
|
|
37
|
+
"january": "Ene",
|
|
38
|
+
"february": "Feb",
|
|
39
|
+
"march": "Mar",
|
|
40
|
+
"april": "Abr",
|
|
41
|
+
"may": "May",
|
|
42
|
+
"june": "Jun",
|
|
43
|
+
"july": "Jul",
|
|
44
|
+
"august": "Ago",
|
|
45
|
+
"september": "Sep",
|
|
46
|
+
"october": "Oct",
|
|
47
|
+
"november": "Nov",
|
|
48
|
+
"december": "Dic"
|
|
49
|
+
},
|
|
50
|
+
"box_open": {
|
|
51
|
+
"skip": "Omitir",
|
|
52
|
+
"you_ve_got": "Obtuviste",
|
|
53
|
+
"button_reveal_reward": "Revelar recompensa",
|
|
54
|
+
"button_open_now": "Abrir ahora",
|
|
55
|
+
"button_save_inventory": "Guardar en inventario",
|
|
56
|
+
"recent_rewards": "Recientes",
|
|
57
|
+
"later_open_later_inventory": "Puedes abrirla más tarde en el inventario"
|
|
58
|
+
},
|
|
59
|
+
"common": {
|
|
60
|
+
"error": "¡Ups! Algo salió mal. Inténtalo de nuevo más tarde.",
|
|
61
|
+
"continue": "Continuar",
|
|
62
|
+
"timeAgo": {
|
|
63
|
+
"sec_zero": "hace {{count}} segundos",
|
|
64
|
+
"sec_one": "hace {{count}} segundo",
|
|
65
|
+
"sec_two": "hace {{count}} segundos",
|
|
66
|
+
"sec_few": "hace {{count}} segundos",
|
|
67
|
+
"sec_many": "hace {{count}} segundos",
|
|
68
|
+
"sec_other": "hace {{count}} segundos",
|
|
69
|
+
"now": "Justo ahora",
|
|
70
|
+
"min_zero": "hace {{count}} minutos",
|
|
71
|
+
"min_one": "hace {{count}} minuto",
|
|
72
|
+
"min_two": "hace {{count}} minutos",
|
|
73
|
+
"min_few": "hace {{count}} minutos",
|
|
74
|
+
"min_many": "hace {{count}} minutos",
|
|
75
|
+
"min_other": "hace {{count}} minutos",
|
|
76
|
+
"h_zero": "hace {{count}} horas",
|
|
77
|
+
"h_one": "hace {{count}} hora",
|
|
78
|
+
"h_two": "hace {{count}} horas",
|
|
79
|
+
"h_few": "hace {{count}} horas",
|
|
80
|
+
"h_many": "hace {{count}} horas",
|
|
81
|
+
"h_other": "hace {{count}} horas",
|
|
82
|
+
"d_zero": "hace {{count}} días",
|
|
83
|
+
"d_one": "hace {{count}} día",
|
|
84
|
+
"d_two": "hace {{count}} días",
|
|
85
|
+
"d_few": "hace {{count}} días",
|
|
86
|
+
"d_many": "hace {{count}} días",
|
|
87
|
+
"d_other": "hace {{count}} días"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"snackbar": {
|
|
91
|
+
"purchase": {
|
|
92
|
+
"blackHolePurchaseChest": "Compra",
|
|
93
|
+
"blackHolePurchaseLevel": "Compra",
|
|
94
|
+
"blackHolePurchaseAutoBurn": "Compra",
|
|
95
|
+
"walletPurchaseGems": "Compra",
|
|
96
|
+
"blackHoleBurnCoins": "Quemado",
|
|
97
|
+
"error": "No se pudo realizar la compra"
|
|
98
|
+
},
|
|
99
|
+
"receiving": {
|
|
100
|
+
"claimedTask": "Recibido"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"purchaseAdsFreeModal": {
|
|
104
|
+
"title": "Eliminar anuncios",
|
|
105
|
+
"disableAllInterruptions": "Desactiva todas las interrupciones en los juegos con una suscripción mensual recurrente. No te preocupes, ¡también tendrás la opción de activar los anuncios cuando quieras!",
|
|
106
|
+
"noInterruptionsInGames": "Sin interrupciones en los juegos con una suscripción recurrente.",
|
|
107
|
+
"activeRecurring": "Pagos recurrentes activos a {{price}}",
|
|
108
|
+
"aMonth": " al mes.",
|
|
109
|
+
"nextPayment": "Próximo pago {{date}}",
|
|
110
|
+
"activeUntil": "Activo hasta {{date}}",
|
|
111
|
+
"subscriptionPaused": "La suscripción está en pausa",
|
|
112
|
+
"resumeSubscription": "Reanudar suscripción",
|
|
113
|
+
"cancelSubscription": "Cancelar suscripción",
|
|
114
|
+
"continue": "Continuar",
|
|
115
|
+
"month": "{{price}} / mes",
|
|
116
|
+
"errorCancelSubscription": "No se pudo cancelar la suscripción. Inténtalo de nuevo"
|
|
117
|
+
},
|
|
118
|
+
"levelInfoModal": {
|
|
119
|
+
"title": "Tu nivel",
|
|
120
|
+
"description": "Gana experiencia jugando. Al subir de nivel obtienes cajas de botín, que pueden contener USDT, monedas o mejores cajas. Compite con otros jugadores para ganar USDT real cada semana.",
|
|
121
|
+
"action": "Entendido"
|
|
122
|
+
},
|
|
123
|
+
"topUpModal": {
|
|
124
|
+
"balance": "Saldo",
|
|
125
|
+
"topUpBalance": "Recargar gemas",
|
|
126
|
+
"coins": "monedas",
|
|
127
|
+
"gems": "gemas",
|
|
128
|
+
"topUp": "Recargar"
|
|
129
|
+
},
|
|
130
|
+
"inventoryModal": {
|
|
131
|
+
"title": "Inventario",
|
|
132
|
+
"description": "Es tu espacio de almacenamiento personal para todas las cajas de botín sin abrir. Toca cada imagen para revelar la recompensa dentro."
|
|
133
|
+
}
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
export default _default;
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"balance": "बैलेंस",
|
|
3
|
+
"topUp": "रिचार्ज",
|
|
4
|
+
"ads": "विज्ञापन",
|
|
5
|
+
"adsOn": "चालू",
|
|
6
|
+
"adsOff": "बंद",
|
|
7
|
+
"level": "स्तर",
|
|
8
|
+
"toLevelUp": "लेवल अप तक",
|
|
9
|
+
"xpCounter": "/ {{total}} XP",
|
|
10
|
+
"lootBox": "लूट बॉक्स",
|
|
11
|
+
"forLevel": "स्तर {{level}} के लिए",
|
|
12
|
+
"unopenedLootBox": "बिना खोले गए लूट बॉक्स",
|
|
13
|
+
"emptyBox": "खाली बॉक्स",
|
|
14
|
+
"openItem": "आइटम खोलें",
|
|
15
|
+
"reward_type": {
|
|
16
|
+
"coins": "{{count}} सिक्के",
|
|
17
|
+
"coins_one": "{{count}} सिक्का",
|
|
18
|
+
"coins_few": "{{count}} सिक्के",
|
|
19
|
+
"coins_many": "{{count}} सिक्के",
|
|
20
|
+
"usdt": "{{count}} USDT",
|
|
21
|
+
"usdt_one": "{{count}} USDT",
|
|
22
|
+
"usdt_few": "{{count}} USDT",
|
|
23
|
+
"usdt_many": "{{count}} USDT",
|
|
24
|
+
"ton": "{{count}} TON",
|
|
25
|
+
"ton_one": "{{count}} TON",
|
|
26
|
+
"ton_few": "{{count}} TON",
|
|
27
|
+
"ton_many": "{{count}} TON",
|
|
28
|
+
"telegram_premium": "टेलीग्राम प्रीमियम",
|
|
29
|
+
"double_balance": "दोगुनी शेष राशि",
|
|
30
|
+
"box": "लूट बॉक्स",
|
|
31
|
+
"box_common": "बुनियादी",
|
|
32
|
+
"box_rare": "दुर्लभ",
|
|
33
|
+
"box_epic": "महाकाव्य",
|
|
34
|
+
"box_legend": "दंतकथा"
|
|
35
|
+
},
|
|
36
|
+
"months": {
|
|
37
|
+
"january": "जन",
|
|
38
|
+
"february": "फ़र",
|
|
39
|
+
"march": "मार्च",
|
|
40
|
+
"april": "अप्रै",
|
|
41
|
+
"may": "मई",
|
|
42
|
+
"june": "जून",
|
|
43
|
+
"july": "जुला",
|
|
44
|
+
"august": "अग",
|
|
45
|
+
"september": "सितं",
|
|
46
|
+
"october": "अक्टू",
|
|
47
|
+
"november": "नवं",
|
|
48
|
+
"december": "दिसं"
|
|
49
|
+
},
|
|
50
|
+
"box_open": {
|
|
51
|
+
"skip": "छोड़ें",
|
|
52
|
+
"you_ve_got": "आपको मिला",
|
|
53
|
+
"button_reveal_reward": "पुरस्कार प्रकट करें",
|
|
54
|
+
"button_open_now": "अभी खोलें",
|
|
55
|
+
"button_save_inventory": "इन्वेंटरी में सहेजें",
|
|
56
|
+
"recent_rewards": "हाल के पुरस्कार",
|
|
57
|
+
"later_open_later_inventory": "आप इसे बाद में इन्वेंटरी में खोल सकते हैं"
|
|
58
|
+
},
|
|
59
|
+
"common": {
|
|
60
|
+
"error": "उफ़! कुछ गलत हो गया। कृपया बाद में फिर प्रयास करें।",
|
|
61
|
+
"continue": "जारी रखें",
|
|
62
|
+
"timeAgo": {
|
|
63
|
+
"sec_zero": "{{count}} सेकंड पहले",
|
|
64
|
+
"sec_one": "{{count}} सेकंड पहले",
|
|
65
|
+
"sec_two": "{{count}} सेकंड पहले",
|
|
66
|
+
"sec_few": "{{count}} सेकंड पहले",
|
|
67
|
+
"sec_many": "{{count}} सेकंड पहले",
|
|
68
|
+
"sec_other": "{{count}} सेकंड पहले",
|
|
69
|
+
"now": "अभी",
|
|
70
|
+
"min_zero": "{{count}} मिनट पहले",
|
|
71
|
+
"min_one": "{{count}} मिनट पहले",
|
|
72
|
+
"min_two": "{{count}} मिनट पहले",
|
|
73
|
+
"min_few": "{{count}} मिनट पहले",
|
|
74
|
+
"min_many": "{{count}} मिनट पहले",
|
|
75
|
+
"min_other": "{{count}} मिनट पहले",
|
|
76
|
+
"h_zero": "{{count}} घंटे पहले",
|
|
77
|
+
"h_one": "{{count}} घंटा पहले",
|
|
78
|
+
"h_two": "{{count}} घंटे पहले",
|
|
79
|
+
"h_few": "{{count}} घंटे पहले",
|
|
80
|
+
"h_many": "{{count}} घंटे पहले",
|
|
81
|
+
"h_other": "{{count}} घंटे पहले",
|
|
82
|
+
"d_zero": "{{count}} दिन पहले",
|
|
83
|
+
"d_one": "{{count}} दिन पहले",
|
|
84
|
+
"d_two": "{{count}} दिन पहले",
|
|
85
|
+
"d_few": "{{count}} दिन पहले",
|
|
86
|
+
"d_many": "{{count}} दिन पहले",
|
|
87
|
+
"d_other": "{{count}} दिन पहले"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"snackbar": {
|
|
91
|
+
"purchase": {
|
|
92
|
+
"blackHolePurchaseChest": "खरीद",
|
|
93
|
+
"blackHolePurchaseLevel": "खरीद",
|
|
94
|
+
"blackHolePurchaseAutoBurn": "खरीद",
|
|
95
|
+
"walletPurchaseGems": "खरीद",
|
|
96
|
+
"blackHoleBurnCoins": "जलाया गया",
|
|
97
|
+
"error": "खरीदारी विफल रही"
|
|
98
|
+
},
|
|
99
|
+
"receiving": {
|
|
100
|
+
"claimedTask": "प्राप्त"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"purchaseAdsFreeModal": {
|
|
104
|
+
"title": "विज्ञापन हटाएँ",
|
|
105
|
+
"disableAllInterruptions": "मासिक आवर्ती सदस्यता के साथ खेलों में सभी बाधाएँ बंद करें। चिंता न करें, आप चाहें तो किसी भी समय विज्ञापन फिर से चालू कर सकते हैं!",
|
|
106
|
+
"noInterruptionsInGames": "आवर्ती सदस्यता के साथ खेलों में कोई व्यवधान नहीं।",
|
|
107
|
+
"activeRecurring": "सक्रिय आवर्ती भुगतान {{price}} पर",
|
|
108
|
+
"aMonth": " प्रति माह.",
|
|
109
|
+
"nextPayment": "अगला भुगतान {{date}}",
|
|
110
|
+
"activeUntil": "{{date}} तक सक्रिय",
|
|
111
|
+
"subscriptionPaused": "सदस्यता रोकी गई है",
|
|
112
|
+
"resumeSubscription": "सदस्यता फिर शुरू करें",
|
|
113
|
+
"cancelSubscription": "सदस्यता रद्द करें",
|
|
114
|
+
"continue": "जारी रखें",
|
|
115
|
+
"month": "{{price}} / माह",
|
|
116
|
+
"errorCancelSubscription": "सदस्यता रद्द नहीं हो सकी। कृपया पुनः प्रयास करें"
|
|
117
|
+
},
|
|
118
|
+
"levelInfoModal": {
|
|
119
|
+
"title": "आपका स्तर",
|
|
120
|
+
"description": "गेम खेलकर अनुभव अर्जित करें। लेवल बढ़ाने पर आपको लूट बॉक्स मिलते हैं जिनमें USDT, कॉइन्स या बेहतर लूट बॉक्स हो सकते हैं। हर सप्ताह वास्तविक USDT जीतने के लिए अन्य खिलाड़ियों से प्रतिस्पर्धा करें।",
|
|
121
|
+
"action": "समझ गया"
|
|
122
|
+
},
|
|
123
|
+
"topUpModal": {
|
|
124
|
+
"balance": "बैलेंस",
|
|
125
|
+
"topUpBalance": "जेम्स रिचार्ज करें",
|
|
126
|
+
"coins": "कॉइन्स",
|
|
127
|
+
"gems": "जेम्स",
|
|
128
|
+
"topUp": "रिचार्ज"
|
|
129
|
+
},
|
|
130
|
+
"inventoryModal": {
|
|
131
|
+
"title": "इन्वेंटरी",
|
|
132
|
+
"description": "यह आपके सभी बिना खुले लूट बॉक्स के लिए आपका व्यक्तिगत स्टोरेज स्पेस है। अंदर का इनाम प्रकट करने के लिए हर छवि पर टैप करें!"
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
;
|
|
136
|
+
|
|
137
|
+
export default _default;
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"balance": "Saldo",
|
|
3
|
+
"topUp": "Recarregar",
|
|
4
|
+
"ads": "Anúncios",
|
|
5
|
+
"adsOn": "On",
|
|
6
|
+
"adsOff": "Off",
|
|
7
|
+
"level": "Nível",
|
|
8
|
+
"toLevelUp": "para subir de nível",
|
|
9
|
+
"xpCounter": "/ {{total}} XP",
|
|
10
|
+
"lootBox": "Caixa de loot",
|
|
11
|
+
"forLevel": "para o nível {{level}}",
|
|
12
|
+
"unopenedLootBox": "Caixa de Loot Não Aberta",
|
|
13
|
+
"emptyBox": "Caixa vazia",
|
|
14
|
+
"openItem": "Abrir item",
|
|
15
|
+
"reward_type": {
|
|
16
|
+
"coins": "{{count}} moeda",
|
|
17
|
+
"coins_one": "{{count}} moeda",
|
|
18
|
+
"coins_few": "{{count}} moedas",
|
|
19
|
+
"coins_many": "{{count}} moedas",
|
|
20
|
+
"usdt": "{{count}} USDT",
|
|
21
|
+
"usdt_one": "{{count}} USDT",
|
|
22
|
+
"usdt_few": "{{count}} USDT",
|
|
23
|
+
"usdt_many": "{{count}} USDT",
|
|
24
|
+
"ton": "{{count}} TON",
|
|
25
|
+
"ton_one": "{{count}} TON",
|
|
26
|
+
"ton_few": "{{count}} TON",
|
|
27
|
+
"ton_many": "{{count}} TON",
|
|
28
|
+
"telegram_premium": "Telegram Premium",
|
|
29
|
+
"double_balance": "Saldo Duplo",
|
|
30
|
+
"box": "CAIXA DE LOOT",
|
|
31
|
+
"box_common": "BÁSICA",
|
|
32
|
+
"box_rare": "RARA",
|
|
33
|
+
"box_epic": "ÉPICA",
|
|
34
|
+
"box_legend": "LENDÁRIA"
|
|
35
|
+
},
|
|
36
|
+
"months": {
|
|
37
|
+
"january": "Jan",
|
|
38
|
+
"february": "Fev",
|
|
39
|
+
"march": "Mar",
|
|
40
|
+
"april": "Abr",
|
|
41
|
+
"may": "Mai",
|
|
42
|
+
"june": "Jun",
|
|
43
|
+
"july": "Jul",
|
|
44
|
+
"august": "Ago",
|
|
45
|
+
"september": "Set",
|
|
46
|
+
"october": "Out",
|
|
47
|
+
"november": "Nov",
|
|
48
|
+
"december": "Dez"
|
|
49
|
+
},
|
|
50
|
+
"box_open": {
|
|
51
|
+
"skip": "Pular",
|
|
52
|
+
"you_ve_got": "Você recebeu",
|
|
53
|
+
"button_reveal_reward": "Revelar Recompensa",
|
|
54
|
+
"button_open_now": "Abrir Agora",
|
|
55
|
+
"button_save_inventory": "Salvar no Inventário",
|
|
56
|
+
"recent_rewards": "Recentes",
|
|
57
|
+
"later_open_later_inventory": "Você pode abrir mais tarde no inventário"
|
|
58
|
+
},
|
|
59
|
+
"common": {
|
|
60
|
+
"error": "Ops! Algo deu errado. Tente novamente mais tarde.",
|
|
61
|
+
"continue": "Continuar",
|
|
62
|
+
"timeAgo": {
|
|
63
|
+
"sec_zero": "há {{count}} segundos",
|
|
64
|
+
"sec_one": "há {{count}} segundo",
|
|
65
|
+
"sec_two": "há {{count}} segundos",
|
|
66
|
+
"sec_few": "há {{count}} segundos",
|
|
67
|
+
"sec_many": "há {{count}} segundos",
|
|
68
|
+
"sec_other": "há {{count}} segundos",
|
|
69
|
+
"now": "Agora mesmo",
|
|
70
|
+
"min_zero": "há {{count}} minutos",
|
|
71
|
+
"min_one": "há {{count}} minuto",
|
|
72
|
+
"min_two": "há {{count}} minutos",
|
|
73
|
+
"min_few": "há {{count}} minutos",
|
|
74
|
+
"min_many": "há {{count}} minutos",
|
|
75
|
+
"min_other": "há {{count}} minutos",
|
|
76
|
+
"h_zero": "há {{count}} horas",
|
|
77
|
+
"h_one": "há {{count}} hora",
|
|
78
|
+
"h_two": "há {{count}} horas",
|
|
79
|
+
"h_few": "há {{count}} horas",
|
|
80
|
+
"h_many": "há {{count}} horas",
|
|
81
|
+
"h_other": "há {{count}} horas",
|
|
82
|
+
"d_zero": "há {{count}} dias",
|
|
83
|
+
"d_one": "há {{count}} dia",
|
|
84
|
+
"d_two": "há {{count}} dias",
|
|
85
|
+
"d_few": "há {{count}} dias",
|
|
86
|
+
"d_many": "há {{count}} dias",
|
|
87
|
+
"d_other": "há {{count}} dias"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"snackbar": {
|
|
91
|
+
"purchase": {
|
|
92
|
+
"blackHolePurchaseChest": "Compra",
|
|
93
|
+
"blackHolePurchaseLevel": "Compra",
|
|
94
|
+
"blackHolePurchaseAutoBurn": "Compra",
|
|
95
|
+
"walletPurchaseGems": "Compra",
|
|
96
|
+
"blackHoleBurnCoins": "Queimado",
|
|
97
|
+
"error": "Falha ao realizar a compra"
|
|
98
|
+
},
|
|
99
|
+
"receiving": {
|
|
100
|
+
"claimedTask": "Recebido"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"purchaseAdsFreeModal": {
|
|
104
|
+
"title": "Remover anúncios",
|
|
105
|
+
"disableAllInterruptions": "Desative todas as interrupções nos jogos com uma assinatura mensal recorrente. Sem preocupações, você também poderá ligar os anúncios quando quiser!",
|
|
106
|
+
"noInterruptionsInGames": "Sem interrupções nos jogos com uma assinatura recorrente.",
|
|
107
|
+
"activeRecurring": "Pagamentos recorrentes ativos em {{price}}",
|
|
108
|
+
"aMonth": " por mês.",
|
|
109
|
+
"nextPayment": "Próximo pagamento {{date}}",
|
|
110
|
+
"activeUntil": "Ativo até {{date}}",
|
|
111
|
+
"subscriptionPaused": "A assinatura está em pausa",
|
|
112
|
+
"resumeSubscription": "Retomar assinatura",
|
|
113
|
+
"cancelSubscription": "Cancelar assinatura",
|
|
114
|
+
"continue": "Continuar",
|
|
115
|
+
"month": "{{price}} / mês",
|
|
116
|
+
"errorCancelSubscription": "Falha ao cancelar a assinatura. Tente novamente"
|
|
117
|
+
},
|
|
118
|
+
"levelInfoModal": {
|
|
119
|
+
"title": "Seu nível",
|
|
120
|
+
"description": "Ganhe experiência jogando. Ao subir de nível você recebe caixas de loot, que podem conter USDT, moedas ou caixas melhores. Compita com outros jogadores para ganhar USDT real toda semana.",
|
|
121
|
+
"action": "Entendi"
|
|
122
|
+
},
|
|
123
|
+
"topUpModal": {
|
|
124
|
+
"balance": "Saldo",
|
|
125
|
+
"topUpBalance": "Recarregar gemas",
|
|
126
|
+
"coins": "moedas",
|
|
127
|
+
"gems": "gemas",
|
|
128
|
+
"topUp": "Recarregar"
|
|
129
|
+
},
|
|
130
|
+
"inventoryModal": {
|
|
131
|
+
"title": "Inventário",
|
|
132
|
+
"description": "É o seu espaço pessoal de armazenamento para todas as caixas de loot não abertas. Toque em cada imagem para revelar a recompensa dentro!"
|
|
133
|
+
}
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
export default _default;
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"balance": "Баланс",
|
|
3
|
+
"topUp": "Пополнить",
|
|
4
|
+
"ads": "Реклама",
|
|
5
|
+
"adsOn": "Вкл.",
|
|
6
|
+
"adsOff": "Выкл.",
|
|
7
|
+
"level": "Уровень",
|
|
8
|
+
"toLevelUp": "до повышения уровня",
|
|
9
|
+
"xpCounter": "/ {{total}} XP",
|
|
10
|
+
"lootBox": "Лутбокс",
|
|
11
|
+
"forLevel": "для уровня {{level}}",
|
|
12
|
+
"unopenedLootBox": "Неоткрытый лутбокс",
|
|
13
|
+
"emptyBox": "Пустой бокс",
|
|
14
|
+
"openItem": "Открыть предмет",
|
|
15
|
+
"reward_type": {
|
|
16
|
+
"coins": "{{count}} монета",
|
|
17
|
+
"coins_one": "{{count}} монета",
|
|
18
|
+
"coins_few": "{{count}} монеты",
|
|
19
|
+
"coins_many": "{{count}} монет",
|
|
20
|
+
"usdt": "{{count}} USDT",
|
|
21
|
+
"usdt_one": "{{count}} USDT",
|
|
22
|
+
"usdt_few": "{{count}} USDT",
|
|
23
|
+
"usdt_many": "{{count}} USDT",
|
|
24
|
+
"ton": "{{count}} TON",
|
|
25
|
+
"ton_one": "{{count}} TON",
|
|
26
|
+
"ton_few": "{{count}} TON",
|
|
27
|
+
"ton_many": "{{count}} TON",
|
|
28
|
+
"telegram_premium": "Телеграм Премиум",
|
|
29
|
+
"double_balance": "Двойной баланс",
|
|
30
|
+
"box": "ЛУТ БОКС",
|
|
31
|
+
"box_common": "ОБЫЧНЫЙ",
|
|
32
|
+
"box_rare": "РЕДКИЙ",
|
|
33
|
+
"box_epic": "ЭПИК",
|
|
34
|
+
"box_legend": "ЛЕГЕНДАРНЫЙ"
|
|
35
|
+
},
|
|
36
|
+
"months": {
|
|
37
|
+
"january": "янв",
|
|
38
|
+
"february": "фев",
|
|
39
|
+
"march": "мар",
|
|
40
|
+
"april": "апр",
|
|
41
|
+
"may": "май",
|
|
42
|
+
"june": "июн",
|
|
43
|
+
"july": "июл",
|
|
44
|
+
"august": "авг",
|
|
45
|
+
"september": "сен",
|
|
46
|
+
"october": "окт",
|
|
47
|
+
"november": "ноя",
|
|
48
|
+
"december": "дек"
|
|
49
|
+
},
|
|
50
|
+
"box_open": {
|
|
51
|
+
"skip": "Пропустить",
|
|
52
|
+
"you_ve_got": "Получено",
|
|
53
|
+
"button_reveal_reward": "Узнать награду",
|
|
54
|
+
"button_open_now": "Открыть",
|
|
55
|
+
"button_save_inventory": "Оставить в инвентаре",
|
|
56
|
+
"recent_rewards": "Недавние",
|
|
57
|
+
"later_open_later_inventory": "Можно открыть его позже в инвентаре"
|
|
58
|
+
},
|
|
59
|
+
"common": {
|
|
60
|
+
"error": "Упс! Что-то пошло не так. Попробуй позже.",
|
|
61
|
+
"continue": "Продолжить",
|
|
62
|
+
"timeAgo": {
|
|
63
|
+
"sec_zero": "{{count}} секунд назад",
|
|
64
|
+
"sec_one": "{{count}} секунду назад",
|
|
65
|
+
"sec_two": "{{count}} секунды назад",
|
|
66
|
+
"sec_few": "{{count}} секунды назад",
|
|
67
|
+
"sec_many": "{{count}} секунд назад",
|
|
68
|
+
"sec_other": "{{count}} секунд назад",
|
|
69
|
+
"now": "Только что",
|
|
70
|
+
"min_zero": "{{count}} минут назад",
|
|
71
|
+
"min_one": "{{count}} минуту назад",
|
|
72
|
+
"min_two": "{{count}} минуты назад",
|
|
73
|
+
"min_few": "{{count}} минуты назад",
|
|
74
|
+
"min_many": "{{count}} минут назад",
|
|
75
|
+
"min_other": "{{count}} минут назад",
|
|
76
|
+
"h_zero": "{{count}} часов назад",
|
|
77
|
+
"h_one": "{{count}} час назад",
|
|
78
|
+
"h_two": "{{count}} часа назад",
|
|
79
|
+
"h_few": "{{count}} часа назад",
|
|
80
|
+
"h_many": "{{count}} часов назад",
|
|
81
|
+
"h_other": "{{count}} часов назад",
|
|
82
|
+
"d_zero": "{{count}} дней назад",
|
|
83
|
+
"d_one": "{{count}} день назад",
|
|
84
|
+
"d_two": "{{count}} дня назад",
|
|
85
|
+
"d_few": "{{count}} дня назад",
|
|
86
|
+
"d_many": "{{count}} дней назад",
|
|
87
|
+
"d_other": "{{count}} дней назад"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"snackbar": {
|
|
91
|
+
"purchase": {
|
|
92
|
+
"blackHolePurchaseChest": "Покупка",
|
|
93
|
+
"blackHolePurchaseLevel": "Покупка",
|
|
94
|
+
"blackHolePurchaseAutoBurn": "Покупка",
|
|
95
|
+
"walletPurchaseGems": "Покупка",
|
|
96
|
+
"blackHoleBurnCoins": "Сожжено",
|
|
97
|
+
"error": "Не удалось совершить покупку"
|
|
98
|
+
},
|
|
99
|
+
"receiving": {
|
|
100
|
+
"claimedTask": "Получено"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"purchaseAdsFreeModal": {
|
|
104
|
+
"title": "Удалить рекламу",
|
|
105
|
+
"disableAllInterruptions": "Отключите все прерывания в играх с ежемесячной подпиской. Не волнуйтесь, при желании вы всегда сможете снова включить рекламу!",
|
|
106
|
+
"noInterruptionsInGames": "Без прерываний в играх при оформленной подписке.",
|
|
107
|
+
"activeRecurring": "Активные регулярные платежи по цене {{price}}",
|
|
108
|
+
"aMonth": " в месяц.",
|
|
109
|
+
"nextPayment": "Следующий платеж {{date}}",
|
|
110
|
+
"activeUntil": "Активна до {{date}}",
|
|
111
|
+
"subscriptionPaused": "Подписка приостановлена",
|
|
112
|
+
"resumeSubscription": "Возобновить подписку",
|
|
113
|
+
"cancelSubscription": "Отменить подписку",
|
|
114
|
+
"continue": "Продолжить",
|
|
115
|
+
"month": "{{price}} / месяц",
|
|
116
|
+
"errorCancelSubscription": "Не удалось отменить подписку. Пожалуйста, попробуйте еще раз"
|
|
117
|
+
},
|
|
118
|
+
"levelInfoModal": {
|
|
119
|
+
"title": "Ваш уровень",
|
|
120
|
+
"description": "Получайте опыт, играя в игры. За повышение уровня вы получаете лутбоксы, в которых могут быть USDT, монеты или более ценные лутбоксы. Соревнуйтесь с другими игроками, чтобы выигрывать реальные USDT каждую неделю.",
|
|
121
|
+
"action": "Понял"
|
|
122
|
+
},
|
|
123
|
+
"topUpModal": {
|
|
124
|
+
"balance": "Баланс",
|
|
125
|
+
"topUpBalance": "Пополнить баланс",
|
|
126
|
+
"coins": "монет",
|
|
127
|
+
"gems": "алмазов",
|
|
128
|
+
"topUp": "Пополнить"
|
|
129
|
+
},
|
|
130
|
+
"inventoryModal": {
|
|
131
|
+
"title": "Инвентарь",
|
|
132
|
+
"description": "Это твоё персональное хранилище для неоткрытых лутбоксов. Нажми на каждый, чтобы узнать, какая внутри награда!"
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
;
|
|
136
|
+
|
|
137
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TranslationKeys } from './generated-translation-type';
|
|
2
|
+
export type NestedKeyOf<T> = {
|
|
3
|
+
[K in keyof T & (string | number)]: T[K] extends object ? `${K}.${NestedKeyOf<T[K]>}` : `${K}`;
|
|
4
|
+
}[keyof T & (string | number)];
|
|
5
|
+
export type TranslationKey = NestedKeyOf<TranslationKeys>;
|
|
6
|
+
export interface TranslationParams {
|
|
7
|
+
[key: string]: string | number;
|
|
8
|
+
}
|
|
9
|
+
export type TranslationFunction = (key: TranslationKey, options?: TranslationParams) => string;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { CryptoSteamSDKProfile } from '../sdk';
|
|
2
|
+
export interface BannerConfig {
|
|
3
|
+
containerId?: string;
|
|
4
|
+
height?: number;
|
|
5
|
+
animationDuration?: number;
|
|
6
|
+
}
|
|
7
|
+
export declare class BannerManager {
|
|
8
|
+
private readonly containerId;
|
|
9
|
+
private readonly bannerHeight;
|
|
10
|
+
private readonly animationDuration;
|
|
11
|
+
constructor(config?: BannerConfig);
|
|
12
|
+
/**
|
|
13
|
+
* Checks if user has banner_test flag in their audiences
|
|
14
|
+
*/
|
|
15
|
+
checkBannerPermission(getProfile: () => Promise<CryptoSteamSDKProfile>): Promise<boolean>;
|
|
16
|
+
/**
|
|
17
|
+
* Sets and displays the bottom banner
|
|
18
|
+
*/
|
|
19
|
+
setBanner(content: string | HTMLElement, getProfile: () => Promise<CryptoSteamSDKProfile>): Promise<void>;
|
|
20
|
+
/**
|
|
21
|
+
* Creates default banner content (можно кастомизировать)
|
|
22
|
+
*/
|
|
23
|
+
createDefaultContent(): string;
|
|
24
|
+
/**
|
|
25
|
+
* Clears the bottom banner with animation
|
|
26
|
+
*/
|
|
27
|
+
clearBanner(): void;
|
|
28
|
+
/**
|
|
29
|
+
* Get current banner height
|
|
30
|
+
*/
|
|
31
|
+
getHeight(): number;
|
|
32
|
+
/**
|
|
33
|
+
* Check if banner is currently visible
|
|
34
|
+
*/
|
|
35
|
+
isVisible(): boolean;
|
|
36
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type MessageListener = (data:
|
|
1
|
+
type MessageListener<T = unknown> = (data: T) => void;
|
|
2
2
|
declare class WebSocketManager {
|
|
3
3
|
private static instance;
|
|
4
4
|
private centrifuge;
|
|
@@ -8,8 +8,8 @@ declare class WebSocketManager {
|
|
|
8
8
|
static getInstance(): WebSocketManager;
|
|
9
9
|
private initialize;
|
|
10
10
|
private connect;
|
|
11
|
-
subscribe(type: string, listener: MessageListener): Promise<() => void>;
|
|
12
|
-
unsubscribe(type: string, listener: MessageListener): void;
|
|
11
|
+
subscribe<T>(type: string, listener: MessageListener<T>): Promise<() => void>;
|
|
12
|
+
unsubscribe(type: string, listener: MessageListener<unknown>): void;
|
|
13
13
|
send(type: string, payload: unknown): void;
|
|
14
14
|
isConnected(): boolean;
|
|
15
15
|
waitForConnection(): Promise<void>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
|
+
type DisplayMode = 'wheel' | 'result';
|
|
3
|
+
export type WheelSpinState = 'IDLE' | 'SPINNING' | 'STOPPED';
|
|
4
|
+
interface BoxOpeningContextType {
|
|
5
|
+
wheelSpinState: WheelSpinState;
|
|
6
|
+
animationPhase: 'carousel' | 'transition' | 'final';
|
|
7
|
+
viewMode: DisplayMode;
|
|
8
|
+
isBoxOpeningModalOpen: boolean;
|
|
9
|
+
currentBoxId: number | undefined;
|
|
10
|
+
isSkipped: boolean;
|
|
11
|
+
openBoxModal: (boxId: number, mode?: DisplayMode) => void;
|
|
12
|
+
closeBoxModal: () => void;
|
|
13
|
+
setWheelSpinState: (state: WheelSpinState) => void;
|
|
14
|
+
setAnimationPhase: (phase: 'carousel' | 'transition' | 'final') => void;
|
|
15
|
+
setSkipped: (skipped: boolean) => void;
|
|
16
|
+
}
|
|
17
|
+
export declare const BoxOpeningProvider: FC<{
|
|
18
|
+
children: ReactNode;
|
|
19
|
+
}>;
|
|
20
|
+
export declare const useBoxOpening: () => BoxOpeningContextType;
|
|
21
|
+
export {};
|