@orbit-software/sdk 1.75.0 → 1.81.0
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
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const getSecondsPassed: (startedAt: string) => number;
|
|
@@ -1,300 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
"error": {
|
|
3
|
-
"insufficient_funds": "Insufficient Funds"
|
|
4
|
-
},
|
|
5
|
-
"wage": {
|
|
6
|
-
"quest": "Quest",
|
|
7
|
-
"left": "left",
|
|
8
|
-
"completeQuest": "Complete a Quest to Win Prize Reward",
|
|
9
|
-
"completeToWin": "Complete to win",
|
|
10
|
-
"feeStart": "entry fee for start",
|
|
11
|
-
"entryFree": "entry fee, convert it to withdrawable if you complete the quest",
|
|
12
|
-
"doubleCompleteQuest": "Double it as withdrawable if you complete quest",
|
|
13
|
-
"reward": "Reward",
|
|
14
|
-
"notNow": "Not Now",
|
|
15
|
-
"start": "Start"
|
|
16
|
-
},
|
|
17
|
-
"gamePage": {
|
|
18
|
-
"share": "Share",
|
|
19
|
-
"open": "Open",
|
|
20
|
-
"likedThisGame": "liked this game",
|
|
21
|
-
"noRatingsYet": "no ratings yet",
|
|
22
|
-
"players": "players",
|
|
23
|
-
"gainedXp": "gained",
|
|
24
|
-
"playedTime": {
|
|
25
|
-
"hours": "h",
|
|
26
|
-
"minutes": "min",
|
|
27
|
-
"played": "played"
|
|
28
|
-
},
|
|
29
|
-
"showMore": "Show more",
|
|
30
|
-
"developer": "developer",
|
|
31
|
-
"youMayAlsoLike": "You May Also Like",
|
|
32
|
-
"shareMessage": "🎮 Check out {{title}}!\n🌟 Join me in this awesome game."
|
|
33
|
-
},
|
|
34
|
-
"confirmIframe": {
|
|
35
|
-
"pay": "Pay",
|
|
36
|
-
"cancel": "Cancel"
|
|
37
|
-
},
|
|
38
|
-
"gameReviews": {
|
|
39
|
-
"reviewCount": "{{count}} reviews",
|
|
40
|
-
"reviewCount_one": "{{count}} review",
|
|
41
|
-
"reviewCount_few": "{{count}} reviews",
|
|
42
|
-
"reviewCount_many": "{{count}} reviews",
|
|
43
|
-
"noReviews": "No reviews yet",
|
|
44
|
-
"playToRate": "play 5 min to rate it",
|
|
45
|
-
"howWouldYouRate": "How would you rate it?",
|
|
46
|
-
"thanksForRating": "Thanks for your rating!",
|
|
47
|
-
"failedToRate": "Failed to rate a game",
|
|
48
|
-
"addYourReview": "Add your review",
|
|
49
|
-
"editYourReview": "Edit your review",
|
|
50
|
-
"anonymous": "Anonymous",
|
|
51
|
-
"notPlayed": "Not played",
|
|
52
|
-
"minutesPlayed": "{{count}} minutes played",
|
|
53
|
-
"minutesPlayed_one": "{{count}} minute played",
|
|
54
|
-
"minutesPlayed_few": "{{count}} minutes played",
|
|
55
|
-
"minutesPlayed_many": "{{count}} minutes played",
|
|
56
|
-
"hoursPlayed": "{{count}} hours played",
|
|
57
|
-
"hoursPlayed_one": "{{count}} hour played",
|
|
58
|
-
"hoursPlayed_few": "{{count}} hours played",
|
|
59
|
-
"hoursPlayed_many": "{{count}} hours played",
|
|
60
|
-
"writeReviewOf": "Write a review of",
|
|
61
|
-
"rewardMessage": "You will get {{reward}} as a reward",
|
|
62
|
-
"yourRating": "Your rating",
|
|
63
|
-
"likeCommentPlaceholder": "What did you like the most?",
|
|
64
|
-
"dislikeCommentPlaceholder": "What did you dislike the most?",
|
|
65
|
-
"submit": "Submit",
|
|
66
|
-
"describeRating": "Describe your rating to submit it!",
|
|
67
|
-
"reviewTooLong": "Unfortunately, reviews can't be that HUGE",
|
|
68
|
-
"reviewSuccess": "Review successfully submitted!",
|
|
69
|
-
"reviewError": "Failed to submit review. Please try again."
|
|
70
|
-
},
|
|
71
|
-
"profilePage": {
|
|
72
|
-
"balance": "Balance",
|
|
73
|
-
"topUp": "Top Up",
|
|
74
|
-
"removeAds": "Remove Ads",
|
|
75
|
-
"ads": "Ads",
|
|
76
|
-
"adsOn": "On",
|
|
77
|
-
"adsOff": "Off",
|
|
78
|
-
"removeAdsInGames": "Remove Ads in Games",
|
|
79
|
-
"removedAds": "Ads Disabled",
|
|
80
|
-
"removedAdsLeft": "Active until {{date}}",
|
|
81
|
-
"turnOnAds": "Turn On Ads",
|
|
82
|
-
"disableAds": "Disable Ads",
|
|
83
|
-
"cancelSubscription": "Cancel Subscription",
|
|
84
|
-
"resumeSubscription": "Resume Subscription",
|
|
85
|
-
"disableAllInterruptions": "Disable all interruptions in games with a recurring monthly subscription. No worries, you will also have the option to turn ads on back if you want anytime!",
|
|
86
|
-
"noInterruptionsInGames": "No interruptions in games with a recurring subscription.",
|
|
87
|
-
"activeRecurring": "Active recurring payments at {{price}}",
|
|
88
|
-
"activeUntil": "Active until {{date}}",
|
|
89
|
-
"subscriptionPaused": "Subscription is Paused",
|
|
90
|
-
"continue": "Continue",
|
|
91
|
-
"month": "{{price}} / month",
|
|
92
|
-
"aMonth": " a month.",
|
|
93
|
-
"nextPayment": "Next payment {{date}}",
|
|
94
|
-
"errorCancelSubscription": "Failed to cancel subscription. Please try again",
|
|
95
|
-
"purchaseConfirm": {
|
|
96
|
-
"balance": "Balance",
|
|
97
|
-
"removeAds": "Remove ads",
|
|
98
|
-
"description": "Completely disable all advertisements and unnecessary interruptions in any game from our library.",
|
|
99
|
-
"payOnce": "Pay only once – no ads forever.",
|
|
100
|
-
"confirmAndPay": "Confirm and Pay"
|
|
101
|
-
},
|
|
102
|
-
"played": "played",
|
|
103
|
-
"invited": "invited",
|
|
104
|
-
"lootBox": "Loot Box",
|
|
105
|
-
"forLevel": "for level {{level}}",
|
|
106
|
-
"errors": {
|
|
107
|
-
"general": "Error: {{message}}"
|
|
108
|
-
},
|
|
109
|
-
"avatar": {
|
|
110
|
-
"createAvatar": "Create Avatar",
|
|
111
|
-
"createAvatarAlt": "Avatars",
|
|
112
|
-
"edit": "Edit",
|
|
113
|
-
"changeBackgroundAria": "Change background color",
|
|
114
|
-
"menuItems": {
|
|
115
|
-
"avatar": "Avatar",
|
|
116
|
-
"profileInfo": "Profile Info"
|
|
117
|
-
}
|
|
118
|
-
},
|
|
119
|
-
"tasks": {
|
|
120
|
-
"reviewGame": "Review {{game}}",
|
|
121
|
-
"reviewDescription": "You played recently for {{time}} {{unit}}",
|
|
122
|
-
"openPortalDaily": "Open Portal daily",
|
|
123
|
-
"checkInDescription": "Check-in award for each day",
|
|
124
|
-
"inviteFriends": "Invite friends",
|
|
125
|
-
"inviteDescription": "It's always fun to play together",
|
|
126
|
-
"welcomeBonus": "Welcome bonus",
|
|
127
|
-
"fillProfile": "Fill your profile",
|
|
128
|
-
"fillProfileDescription": "Allow us know you better",
|
|
129
|
-
"fill": "Fill",
|
|
130
|
-
"filled": "Filled",
|
|
131
|
-
"invite": "Invite"
|
|
132
|
-
},
|
|
133
|
-
"invite": {
|
|
134
|
-
"message": "🕹️ Join me in Portal!\n⭐️ Get rating bonus for you."
|
|
135
|
-
},
|
|
136
|
-
"dailyModal": {
|
|
137
|
-
"title": "Your Daily Reward",
|
|
138
|
-
"subtitle": "Open Portal every day to receive freebies",
|
|
139
|
-
"day": "Day {{day}}",
|
|
140
|
-
"coin": "{{count}} coin",
|
|
141
|
-
"coin_one": "{{count}} coin",
|
|
142
|
-
"coin_few": "{{count}} coins",
|
|
143
|
-
"coin_many": "{{count}} coins",
|
|
144
|
-
"coins": "{{count}} coins",
|
|
145
|
-
"lootBox": "Loot Box",
|
|
146
|
-
"rewardClaimed": "Daily reward claimed!",
|
|
147
|
-
"claimed": "Claimed",
|
|
148
|
-
"claimReward": "Claim Reward",
|
|
149
|
-
"error": "Oops! Something went wrong. Try again later.",
|
|
150
|
-
"tapToOpen": "TAP TO OPEN",
|
|
151
|
-
"youGot": "You got {{reward}}!"
|
|
152
|
-
},
|
|
153
|
-
"review": {
|
|
154
|
-
"thanksMessage": "Thanks for your rating!",
|
|
155
|
-
"failedMessage": "Failed to rate a game",
|
|
156
|
-
"hours": "hours",
|
|
157
|
-
"minutes": "minutes"
|
|
158
|
-
},
|
|
159
|
-
"buyMenu": {
|
|
160
|
-
"balance": "Balance",
|
|
161
|
-
"topUpBalance": "Top Up Balance",
|
|
162
|
-
"coins": "coins",
|
|
163
|
-
"gems": "gems",
|
|
164
|
-
"topUp": "Top Up"
|
|
165
|
-
},
|
|
166
|
-
"taskCard": {
|
|
167
|
-
"completed": "Completed",
|
|
168
|
-
"writeReview": "Write Review",
|
|
169
|
-
"explore": "Explore",
|
|
170
|
-
"claim": "Claim",
|
|
171
|
-
"claimed": "Claimed",
|
|
172
|
-
"get": "Get",
|
|
173
|
-
"getUpTo": "Get up to"
|
|
174
|
-
},
|
|
175
|
-
"emptyBox": "Empty Box",
|
|
176
|
-
"bronzeBox": "Rare Box",
|
|
177
|
-
"silverBox": "Epic Box",
|
|
178
|
-
"goldBox": "Legendary Box",
|
|
179
|
-
"commonBox": "Common Box",
|
|
180
|
-
"openItem": "Open Item",
|
|
181
|
-
"openGame": "Open Game"
|
|
182
|
-
},
|
|
183
|
-
"xp": {
|
|
184
|
-
"level": "Level",
|
|
185
|
-
"toLevelUp": "to lvl up",
|
|
186
|
-
"xpCounter": "/ {{total}} XP",
|
|
187
|
-
"yourLevel": "Your Level",
|
|
188
|
-
"gainXpDescription": "Gain XP by playing games. Compete with other players and receive rewards.",
|
|
189
|
-
"gotIt": "Got It"
|
|
190
|
-
},
|
|
191
|
-
"navigation": {
|
|
192
|
-
"backToGamesLibrary": "Back to Games Library",
|
|
193
|
-
"admin": "Admin",
|
|
194
|
-
"balance": "Balance"
|
|
195
|
-
},
|
|
196
|
-
"games": {
|
|
197
|
-
"recentlyPlayed": "Recently Played",
|
|
198
|
-
"error": "Error: {{message}}"
|
|
199
|
-
},
|
|
200
|
-
"admin": {
|
|
201
|
-
"title": "Admin panel",
|
|
202
|
-
"profile": {
|
|
203
|
-
"title": "Profile",
|
|
204
|
-
"xp": "XP",
|
|
205
|
-
"balance": "Balance",
|
|
206
|
-
"adsFree": "Ads free"
|
|
207
|
-
},
|
|
208
|
-
"overlay": {
|
|
209
|
-
"title": "Toggle overlay",
|
|
210
|
-
"variants": {
|
|
211
|
-
"yourTheme": "Your theme",
|
|
212
|
-
"dark": "Dark",
|
|
213
|
-
"translucent": "Translucent"
|
|
214
|
-
}
|
|
215
|
-
},
|
|
216
|
-
"tasks": {
|
|
217
|
-
"title": "Tasks",
|
|
218
|
-
"resetClaimed": "Reset claimed tasks",
|
|
219
|
-
"dailyResetNote": "*Daily streak will reset",
|
|
220
|
-
"resetProfile": "Reset profile filling",
|
|
221
|
-
"claimedResetNote": "*Claimed tasks will reset"
|
|
222
|
-
},
|
|
223
|
-
"dailyCheckins": {
|
|
224
|
-
"title": "Daily checkins",
|
|
225
|
-
"openModal": "Open daily modal",
|
|
226
|
-
"unclaimTask": "Unclaim daily task"
|
|
227
|
-
},
|
|
228
|
-
"inventory": {
|
|
229
|
-
"title": "Inventory",
|
|
230
|
-
"fetchInventory": "Fetch inventory",
|
|
231
|
-
"boxId": "Box id",
|
|
232
|
-
"fetchContents": "Fetch contents",
|
|
233
|
-
"openBox": "Open box",
|
|
234
|
-
"boxOpenSuccess": "Box with id {{boxId}} opened!",
|
|
235
|
-
"boxOpenFail": "Failed to open box with id {{boxId}}!"
|
|
236
|
-
},
|
|
237
|
-
"snackbars": {
|
|
238
|
-
"title": "Snackbars",
|
|
239
|
-
"success": "Success",
|
|
240
|
-
"warning": "Warning",
|
|
241
|
-
"error": "Error",
|
|
242
|
-
"successMessage": "This is a success message",
|
|
243
|
-
"warningMessage": "This is a warning message",
|
|
244
|
-
"errorMessage": "This is an error message"
|
|
245
|
-
}
|
|
246
|
-
},
|
|
247
|
-
"inventory": {
|
|
248
|
-
"inventory": "Inventory",
|
|
249
|
-
"inventoryDescription": "It's your personal storage space for all collectibles",
|
|
250
|
-
"openItem": "Open item",
|
|
251
|
-
"emptyBox": "Empty Box"
|
|
252
|
-
},
|
|
253
|
-
"reward_type": {
|
|
254
|
-
"coins": "{{count}} coins",
|
|
255
|
-
"coins_one": "{{count}} coin",
|
|
256
|
-
"coins_few": "{{count}} coins",
|
|
257
|
-
"coins_many": "{{count}} coins",
|
|
258
|
-
"usdt": "{{count}} USDT",
|
|
259
|
-
"usdt_one": "{{count}} USDT",
|
|
260
|
-
"usdt_few": "{{count}} USDT",
|
|
261
|
-
"usdt_many": "{{count}} USDT",
|
|
262
|
-
"ton": "{{count}} TON",
|
|
263
|
-
"ton_one": "{{count}} TON",
|
|
264
|
-
"ton_few": "{{count}} TON",
|
|
265
|
-
"ton_many": "{{count}} TON",
|
|
266
|
-
"telegram_premium": "Telegram Premium",
|
|
267
|
-
"double_balance": "Double Balance",
|
|
268
|
-
"box": "LOOT BOX",
|
|
269
|
-
"box_rare": "RARE",
|
|
270
|
-
"box_epic": "EPIC",
|
|
271
|
-
"box_legend": "LEGEND"
|
|
272
|
-
},
|
|
273
|
-
"box_open": {
|
|
274
|
-
"you_ve_got": "You’ve got",
|
|
275
|
-
"button_reveal_reward": "Reveal Reward",
|
|
276
|
-
"button_open_now": "Open Now",
|
|
277
|
-
"button_save_inventory": "Save to Inventory",
|
|
278
|
-
"later_open_later_inventory": "You can open it later in inventory"
|
|
279
|
-
},
|
|
280
|
-
"common": {
|
|
281
|
-
"button_continue": "Continue"
|
|
282
|
-
},
|
|
283
|
-
"months": {
|
|
284
|
-
"january": "Jan",
|
|
285
|
-
"february": "Feb",
|
|
286
|
-
"march": "Mar",
|
|
287
|
-
"april": "Apr",
|
|
288
|
-
"may": "May",
|
|
289
|
-
"june": "Jun",
|
|
290
|
-
"july": "Jul",
|
|
291
|
-
"august": "Aug",
|
|
292
|
-
"september": "Sep",
|
|
293
|
-
"october": "Oct",
|
|
294
|
-
"november": "Nov",
|
|
295
|
-
"december": "Dec"
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
;
|
|
299
|
-
|
|
300
|
-
export default _default;
|
|
@@ -1,300 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
"error": {
|
|
3
|
-
"insufficient_funds": "अपर्याप्त धनराशि"
|
|
4
|
-
},
|
|
5
|
-
"wage": {
|
|
6
|
-
"quest": "खोज",
|
|
7
|
-
"left": "बाएं",
|
|
8
|
-
"completeQuest": "पुरस्कार जीतने के लिए एक quest पूरी करें",
|
|
9
|
-
"completeToWin": "जीतने के लिए पूरा करें",
|
|
10
|
-
"feeStart": "शुरुआत के लिए प्रवेश शुल्क",
|
|
11
|
-
"entryFree": "प्रवेश शुल्क, अगर आप quest पूरी करते हैं तो इसे निकालने योग्य में बदलें",
|
|
12
|
-
"doubleCompleteQuest": "अगर आप quest पूरी करते हैं तो इसे निकालने योग्य में दोगुना करें",
|
|
13
|
-
"reward": "पुरस्कार",
|
|
14
|
-
"notNow": "अभी नहीं",
|
|
15
|
-
"start": "शुरू करें"
|
|
16
|
-
},
|
|
17
|
-
"gamePage": {
|
|
18
|
-
"share": "शेयर करें",
|
|
19
|
-
"open": "खोलें",
|
|
20
|
-
"likedThisGame": "इस गेम को पसंद किया",
|
|
21
|
-
"noRatingsYet": "अभी तक कोई रेटिंग नहीं",
|
|
22
|
-
"players": "खिलाड़ी",
|
|
23
|
-
"gainedXp": "प्राप्त किया",
|
|
24
|
-
"playedTime": {
|
|
25
|
-
"hours": "घं",
|
|
26
|
-
"minutes": "मिनट",
|
|
27
|
-
"played": "खेला"
|
|
28
|
-
},
|
|
29
|
-
"showMore": "और दिखाओ",
|
|
30
|
-
"developer": "डेवलपर",
|
|
31
|
-
"youMayAlsoLike": "आपको यह भी पसंद आ सकता है",
|
|
32
|
-
"shareMessage": "🎮 {{title}} देखें!\n🌟 इस शानदार गेम में मेरे साथ शामिल हों।"
|
|
33
|
-
},
|
|
34
|
-
"confirmIframe": {
|
|
35
|
-
"pay": "वेतन",
|
|
36
|
-
"cancel": "रद्द करना"
|
|
37
|
-
},
|
|
38
|
-
"gameReviews": {
|
|
39
|
-
"reviewCount": "{{count}} समीक्षाएं",
|
|
40
|
-
"reviewCount_one": "{{count}} समीक्षा",
|
|
41
|
-
"reviewCount_few": "{{count}} समीक्षाएं",
|
|
42
|
-
"reviewCount_many": "{{count}} समीक्षाएं",
|
|
43
|
-
"noReviews": "अभी तक कोई समीक्षा नहीं",
|
|
44
|
-
"playToRate": "रेट करने के लिए 5 मिनट खेलें",
|
|
45
|
-
"howWouldYouRate": "आप इसे कैसे रेट करेंगे?",
|
|
46
|
-
"thanksForRating": "आपकी रेटिंग के लिए धन्यवाद!",
|
|
47
|
-
"failedToRate": "गेम को रेट करने में विफल",
|
|
48
|
-
"addYourReview": "अपनी समीक्षा जोड़ें",
|
|
49
|
-
"editYourReview": "अपनी समीक्षा संपादित करें",
|
|
50
|
-
"anonymous": "गुमनाम",
|
|
51
|
-
"notPlayed": "नहीं खेला",
|
|
52
|
-
"minutesPlayed": "{{count}} मिनट खेला",
|
|
53
|
-
"minutesPlayed_one": "{{count}} मिनट खेला",
|
|
54
|
-
"minutesPlayed_few": "{{count}} मिनट खेला",
|
|
55
|
-
"minutesPlayed_many": "{{count}} मिनट खेला",
|
|
56
|
-
"hoursPlayed": "{{count}} घंटे खेला",
|
|
57
|
-
"hoursPlayed_one": "{{count}} घंटा खेला",
|
|
58
|
-
"hoursPlayed_few": "{{count}} घंटे खेला",
|
|
59
|
-
"hoursPlayed_many": "{{count}} घंटे खेला",
|
|
60
|
-
"writeReviewOf": "की समीक्षा लिखें",
|
|
61
|
-
"rewardMessage": "आपको इनाम के तौर पर {{reward}} मिलेगा",
|
|
62
|
-
"yourRating": "आपकी रेटिंग",
|
|
63
|
-
"likeCommentPlaceholder": "आपको सबसे ज्यादा क्या पसंद आया?",
|
|
64
|
-
"dislikeCommentPlaceholder": "आपको सबसे ज्यादा क्या नापसंद आया?",
|
|
65
|
-
"submit": "जमा करें",
|
|
66
|
-
"describeRating": "इसे जमा करने के लिए अपनी रेटिंग का वर्णन करें!",
|
|
67
|
-
"reviewTooLong": "दुर्भाग्य से, समीक्षाएं इतनी बड़ी नहीं हो सकतीं",
|
|
68
|
-
"reviewSuccess": "समीक्षा सफलतापूर्वक सबमिट की गई!",
|
|
69
|
-
"reviewError": "समीक्षा सबमिट करने में विफल। कृपया पुनः प्रयास करें।"
|
|
70
|
-
},
|
|
71
|
-
"profilePage": {
|
|
72
|
-
"balance": "शेष राशि",
|
|
73
|
-
"topUp": "टॉप अप",
|
|
74
|
-
"withdraw": "निकालें",
|
|
75
|
-
"removeAds": "गेम में विज्ञापन हटाएं",
|
|
76
|
-
"ads": "विज्ञापन",
|
|
77
|
-
"adsOn": "पर",
|
|
78
|
-
"adsOff": "बंद",
|
|
79
|
-
"removedAds": "विज्ञापन अक्षम",
|
|
80
|
-
"removedAdsLeft": "{{date}} तक सक्रिय",
|
|
81
|
-
"turnOnAds": "विज्ञापन चालू करें",
|
|
82
|
-
"disableAds": "विज्ञापन अक्षम करें",
|
|
83
|
-
"cancelSubscription": "सदस्यता रद्द करें",
|
|
84
|
-
"resumeSubscription": "सदस्यता फिर से शुरू करें",
|
|
85
|
-
"disableAllInterruptions": "मासिक सदस्यता के साथ गेम में सभी रुकावटें अक्षम करें। चिंता न करें, आपके पास जब चाहें विज्ञापनों को वापस चालू करने का विकल्प भी होगा!",
|
|
86
|
-
"noInterruptionsInGames": "आवर्ती सदस्यता वाले खेलों में कोई रुकावट नहीं।",
|
|
87
|
-
"activeRecurring": "{{price}} पर सक्रिय आवर्ती भुगतान",
|
|
88
|
-
"activeUntil": "{{date}} तक सक्रिय",
|
|
89
|
-
"subscriptionPaused": "सदस्यता रोक दी गई है",
|
|
90
|
-
"continue": "जारी रखें",
|
|
91
|
-
"month": "{{price}} / महीना",
|
|
92
|
-
"aMonth": " प्रति माह।",
|
|
93
|
-
"nextPayment": "अगला भुगतान {{date}}",
|
|
94
|
-
"errorCancelSubscription": "सदस्यता रद्द करने में विफल। कृपया पुनः प्रयास करें",
|
|
95
|
-
"purchaseConfirm": {
|
|
96
|
-
"balance": "संतुलन",
|
|
97
|
-
"removeAds": "विज्ञापन हटाएँ",
|
|
98
|
-
"description": "हमारी लाइब्रेरी से किसी भी गेम में सभी विज्ञापनों और अनावश्यक रुकावटों को पूरी तरह से अक्षम करें।",
|
|
99
|
-
"payOnce": "केवल एक बार भुगतान करें - हमेशा के लिए कोई विज्ञापन नहीं।",
|
|
100
|
-
"confirmAndPay": "पुष्टि करें और भुगतान करें"
|
|
101
|
-
},
|
|
102
|
-
"played": "खेला",
|
|
103
|
-
"invited": "आमंत्रित",
|
|
104
|
-
"tasksToEarn": "कमाने के लिए कार्य",
|
|
105
|
-
"errors": {
|
|
106
|
-
"general": "त्रुटि: {{message}}"
|
|
107
|
-
},
|
|
108
|
-
"avatar": {
|
|
109
|
-
"createAvatar": "अवतार बनाएं",
|
|
110
|
-
"createAvatarAlt": "अवतार",
|
|
111
|
-
"edit": "संपादित करें",
|
|
112
|
-
"changeBackgroundAria": "पृष्ठभूमि का रंग बदलें",
|
|
113
|
-
"menuItems": {
|
|
114
|
-
"avatar": "अवतार",
|
|
115
|
-
"profileInfo": "प्रोफ़ाइल जानकारी"
|
|
116
|
-
}
|
|
117
|
-
},
|
|
118
|
-
"tasks": {
|
|
119
|
-
"reviewGame": "{{game}} की समीक्षा करें",
|
|
120
|
-
"reviewDescription": "आपने हाल ही में {{time}} {{unit}} के लिए खेला",
|
|
121
|
-
"openPortalDaily": "पोर्टल प्रतिदिन खोलें",
|
|
122
|
-
"checkInDescription": "प्रत्येक दिन के लिए चेक-इन पुरस्कार",
|
|
123
|
-
"inviteFriends": "दोस्तों को आमंत्रित करें",
|
|
124
|
-
"inviteDescription": "प्रत्येक शामिल होने और लगातार 3 दिनों तक खेलने पर, आपको एक सिक्का इनाम मिलता है, और एक दोस्त को लूट बॉक्स + 100 सिक्के इनाम मिलते हैं।",
|
|
125
|
-
"inviteStats": "आमंत्रित: {{invited}} • पूरा किया गया कार्य: {{completedTask}}",
|
|
126
|
-
"welcomeBonus": "स्वागत बोनस",
|
|
127
|
-
"fillProfile": "अपनी प्रोफ़ाइल भरें",
|
|
128
|
-
"fillProfileDescription": "हमें आपको बेहतर जानने दें",
|
|
129
|
-
"fill": "भरें",
|
|
130
|
-
"filled": "भरा हुआ",
|
|
131
|
-
"invite": "आमंत्रित करें",
|
|
132
|
-
"action_join_community": "समुदाय में शामिल हों",
|
|
133
|
-
"errorMessage": "कार्य पूरा करने में विफल। कृपया पुनः प्रयास करें।"
|
|
134
|
-
},
|
|
135
|
-
"invite": {
|
|
136
|
-
"message": "🕹️ पोर्टल में मेरे साथ शामिल हों!\n⭐️ अपने लिए रेटिंग बोनस प्राप्त करें।"
|
|
137
|
-
},
|
|
138
|
-
"dailyModal": {
|
|
139
|
-
"title": "आपका दैनिक इनाम",
|
|
140
|
-
"subtitle": "मुफ्त उपहार पाने के लिए हर दिन पोर्टल खोलें",
|
|
141
|
-
"day": "दिन {{day}}",
|
|
142
|
-
"coins": "{{count}} सिक्के",
|
|
143
|
-
"coins_one": "{{count}} सिक्का",
|
|
144
|
-
"coins_few": "{{count}} सिक्के",
|
|
145
|
-
"coins_many": "{{count}} सिक्के",
|
|
146
|
-
"lootBox": "लूट बॉक्स",
|
|
147
|
-
"rewardClaimed": "दैनिक इनाम का दावा किया गया!",
|
|
148
|
-
"claimed": "दावा किया गया",
|
|
149
|
-
"claimReward": "इनाम का दावा करें",
|
|
150
|
-
"error": "उफ़! कुछ गलत हो गया। बाद में पुन: प्रयास करें।",
|
|
151
|
-
"youGot": "आपको {{reward}} मिला!"
|
|
152
|
-
},
|
|
153
|
-
"review": {
|
|
154
|
-
"thanksMessage": "आपकी रेटिंग के लिए धन्यवाद!",
|
|
155
|
-
"failedMessage": "गेम को रेटिंग देने में विफल",
|
|
156
|
-
"hours": "घंटे",
|
|
157
|
-
"minutes": "मिनट"
|
|
158
|
-
},
|
|
159
|
-
"buyMenu": {
|
|
160
|
-
"balance": "शेष राशि",
|
|
161
|
-
"topUpBalance": "रत्न टॉप अप करें",
|
|
162
|
-
"coins": "सिक्के",
|
|
163
|
-
"gems": "रत्न",
|
|
164
|
-
"topUp": "टॉप अप"
|
|
165
|
-
},
|
|
166
|
-
"taskCard": {
|
|
167
|
-
"completed": "पूरा हुआ",
|
|
168
|
-
"writeReview": "समीक्षा लिखें",
|
|
169
|
-
"explore": "अन्वेषण करें",
|
|
170
|
-
"claim": "दावा करें",
|
|
171
|
-
"claimed": "दावा किया गया",
|
|
172
|
-
"get": "प्राप्त करें",
|
|
173
|
-
"getUpTo": "तक प्राप्त करें"
|
|
174
|
-
},
|
|
175
|
-
"emptyBox": "खाली बॉक्स",
|
|
176
|
-
"bronzeBox": "दुर्लभ बॉक्स",
|
|
177
|
-
"silverBox": "महाकाव्य बॉक्स",
|
|
178
|
-
"goldBox": "किंवदंती बॉक्स",
|
|
179
|
-
"commonBox": "सामान्य बॉक्स",
|
|
180
|
-
"openItem": "आइटम खोलें",
|
|
181
|
-
"openGame": "गेम खोलें"
|
|
182
|
-
},
|
|
183
|
-
"xp": {
|
|
184
|
-
"toLevelUp": "स्तर बढ़ाने के लिए",
|
|
185
|
-
"xpCounter": "/ {{total}} XP",
|
|
186
|
-
"yourLevel": "आपका स्तर",
|
|
187
|
-
"gainXpDescription": "गेम खेलकर XP प्राप्त करें। अन्य खिलाड़ियों के साथ प्रतिस्पर्धा करें और पुरस्कार प्राप्त करें।",
|
|
188
|
-
"gotIt": "समझ गया",
|
|
189
|
-
"level": "स्तर"
|
|
190
|
-
},
|
|
191
|
-
"navigation": {
|
|
192
|
-
"backToGamesLibrary": "गेम लाइब्रेरी पर वापस जाएं",
|
|
193
|
-
"admin": "एडमिन",
|
|
194
|
-
"balance": "शेष राशि"
|
|
195
|
-
},
|
|
196
|
-
"games": {
|
|
197
|
-
"recentlyPlayed": "हाल ही में खेला गया",
|
|
198
|
-
"error": "त्रुटि: {{message}}"
|
|
199
|
-
},
|
|
200
|
-
"admin": {
|
|
201
|
-
"title": "एडमिन पैनल",
|
|
202
|
-
"profile": {
|
|
203
|
-
"title": "प्रोफ़ाइल",
|
|
204
|
-
"xp": "XP",
|
|
205
|
-
"balance": "शेष राशि",
|
|
206
|
-
"adsFree": "विज्ञापन मुक्त"
|
|
207
|
-
},
|
|
208
|
-
"overlay": {
|
|
209
|
-
"title": "ओवरले टॉगल करें",
|
|
210
|
-
"variants": {
|
|
211
|
-
"yourTheme": "आपकी थीम",
|
|
212
|
-
"dark": "डार्क",
|
|
213
|
-
"translucent": "पारभासी"
|
|
214
|
-
}
|
|
215
|
-
},
|
|
216
|
-
"tasks": {
|
|
217
|
-
"title": "कार्य",
|
|
218
|
-
"resetClaimed": "दावा किए गए कार्यों को रीसेट करें",
|
|
219
|
-
"dailyResetNote": "*दैनिक स्ट्रीक रीसेट हो जाएगी",
|
|
220
|
-
"resetProfile": "प्रोफ़ाइल भरना रीसेट करें",
|
|
221
|
-
"claimedResetNote": "*दावा किए गए कार्य रीसेट हो जाएंगे"
|
|
222
|
-
},
|
|
223
|
-
"dailyCheckins": {
|
|
224
|
-
"title": "दैनिक चेक-इन",
|
|
225
|
-
"openModal": "दैनिक मोडल खोलें",
|
|
226
|
-
"unclaimTask": "दैनिक कार्य का दावा रद्द करें"
|
|
227
|
-
},
|
|
228
|
-
"inventory": {
|
|
229
|
-
"title": "इन्वेंटरी",
|
|
230
|
-
"fetchInventory": "इन्वेंटरी प्राप्त करें",
|
|
231
|
-
"boxId": "बॉक्स आईडी",
|
|
232
|
-
"fetchContents": "सामग्री प्राप्त करें",
|
|
233
|
-
"openBox": "बॉक्स खोलें",
|
|
234
|
-
"boxOpenSuccess": "आईडी {{boxId}} वाला बॉक्स खुल गया!",
|
|
235
|
-
"boxOpenFail": "आईडी {{boxId}} वाला बॉक्स खोलने में विफल!"
|
|
236
|
-
},
|
|
237
|
-
"snackbars": {
|
|
238
|
-
"title": "स्नैकबार",
|
|
239
|
-
"success": "सफलता",
|
|
240
|
-
"warning": "चेतावनी",
|
|
241
|
-
"error": "त्रुटि",
|
|
242
|
-
"successMessage": "यह एक सफलता संदेश है",
|
|
243
|
-
"warningMessage": "यह एक चेतावनी संदेश है",
|
|
244
|
-
"errorMessage": "यह एक त्रुटि संदेश है"
|
|
245
|
-
}
|
|
246
|
-
},
|
|
247
|
-
"inventory": {
|
|
248
|
-
"inventory": "इन्वेंट्री",
|
|
249
|
-
"inventoryDescription": "यह सभी संग्रहणीय वस्तुओं के लिए आपका निजी संग्रहण स्थान है",
|
|
250
|
-
"openItem": "खुली वस्तु",
|
|
251
|
-
"emptyBox": "खाली डिब्बा"
|
|
252
|
-
},
|
|
253
|
-
"reward_type": {
|
|
254
|
-
"coins": "{{count}} सिक्के",
|
|
255
|
-
"coins_one": "{{count}} सिक्का",
|
|
256
|
-
"coins_few": "{{count}} सिक्के",
|
|
257
|
-
"coins_many": "{{count}} सिक्के",
|
|
258
|
-
"usdt": "{{count}} USDT",
|
|
259
|
-
"usdt_one": "{{count}} USDT",
|
|
260
|
-
"usdt_few": "{{count}} USDT",
|
|
261
|
-
"usdt_many": "{{count}} USDT",
|
|
262
|
-
"ton": "{{count}} TON",
|
|
263
|
-
"ton_one": "{{count}} TON",
|
|
264
|
-
"ton_few": "{{count}} TON",
|
|
265
|
-
"ton_many": "{{count}} TON",
|
|
266
|
-
"telegram_premium": "टेलीग्राम प्रीमियम",
|
|
267
|
-
"double_balance": "दोगुनी शेष राशि",
|
|
268
|
-
"box": "बुनियादी",
|
|
269
|
-
"box_rare": "दुर्लभ",
|
|
270
|
-
"box_epic": "महाकाव्य",
|
|
271
|
-
"box_legend": "दंतकथा"
|
|
272
|
-
},
|
|
273
|
-
"box_open": {
|
|
274
|
-
"you_ve_got": "आपको मिला",
|
|
275
|
-
"button_reveal_reward": "पुरस्कार प्रकट करें",
|
|
276
|
-
"button_open_now": "अभी खोलें",
|
|
277
|
-
"button_save_inventory": "इन्वेंटरी में सहेजें",
|
|
278
|
-
"later_open_later_inventory": "आप इसे बाद में इन्वेंटरी में खोल सकते हैं"
|
|
279
|
-
},
|
|
280
|
-
"common": {
|
|
281
|
-
"button_continue": "जारी रखना"
|
|
282
|
-
},
|
|
283
|
-
"months": {
|
|
284
|
-
"january": "जनवरी",
|
|
285
|
-
"february": "फ़रवरी",
|
|
286
|
-
"march": "मार्च",
|
|
287
|
-
"april": "अप्रैल",
|
|
288
|
-
"may": "मई",
|
|
289
|
-
"june": "जून",
|
|
290
|
-
"july": "जुलाई",
|
|
291
|
-
"august": "अगस्त",
|
|
292
|
-
"september": "सितम्बर",
|
|
293
|
-
"october": "अक्टूबर",
|
|
294
|
-
"november": "नवंबर",
|
|
295
|
-
"december": "दिसम्बर"
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
;
|
|
299
|
-
|
|
300
|
-
export default _default;
|