1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- const win = window as any;
- export const languages = {
- Common: {
- NoGem: `Insufficient balance`,
- },
- Family: {
- WhatIsFamily: `A Family is a group system where players team up to earn shared rewards.
- Families have unique names and earn shared bonuses by progressing together.`,
- FamilyOwnerBenefits: `Earn extra 15% bonus from your Family’s total POG
- Manage members and reward settings`,
- FamilyMemberBenefits: `Unlock Family Reward Boxes
- Help your Family climb event leaderboards
- Get bonus rewards through teamwork!`,
- CreateFamilySuccess: `🎉 Congrats! You’re now the Owner of the Family: [{value}].
- Start growing your family now!`,
- RemoveConfirmContent: "Are you sure to remove this player?",
- RemoveMemberSuccess: "Removal Complete",
- JoinFamilySuccess: "You have joined the family",
- KickedMe: "You have been kicked out of the family",
- UpgradeFamilyConfirm: `Family Expansion System
- - Create a Family: 10 Diamonds
- - Expand Family Capacity: +10 members for 30 Diamonds
- - Maximum Family Members: 100 players
- Spend {value}Diamond to upgrade family now?`,
- UpgradeFamilySuccess: "Family upgrade successful! Max member count: +10.",
- },
- Rank: {
- Season: "SEASON",
- Total: "TOTAL",
- CurrentSeason: "Current Season",
- TotalPogTip: `Total prize pool
- New season will auto-reset after all POGs are distributed. Never too late to join the hype!`,
- TodaySend: "Sent",
- TodayRemaining: "Remaining POG",
- MyRankTip: `Rank high, earn seasonal $TOG & Badge NFTs!`,
- WeekTimeTip: `Current Season Playtime: Key Engagement Metric`,
- AllTankSegmentTitle: `Overview`,
- },
- Shop: {
- GameShards: `Game Shards`,
- GameShardsTips: `Collect Shards to earn a Game Pass. Unused Shards can carry over to the next season.`,
- GamePassItemTitle: `Season #{value} Game Pass`,
- GamePassSalesInfo: `Public Sale: {value} Shards Redemption: {value2}`,
- },
- Wallet: {
- MyAddress: "My Address",
- MyAssets: "My Assets",
- POGDesc: `POG - Proof of Games`,
- MyBadges: "My NFT Boosters",
- MyGames: "My Games",
- CurrentPOGBoosterTitle: "Current POG Boosters",
- TotalBoosterValue: `Overall {value}% extra POG boost`,
- MyRankDesc: `My Current Ranking: {value} #{value2}`,
- RankTips: `Rank high, earn seasonal $TOG & Badge NFTs!`,
- GamePassTips: `Game Passes can be stacked within a season. Capped at 30%.`,
- HowToEarnPOGTitle: `How to earn POG`,
- HowToEarnPOG1: `Play games`,
- HowToEarnPOG2: `Watch Ads`,
- HowToEarnPOG3: `Invite Friends to the Portal`,
- HowToEarnPOG4: `Open POG Box from the Shop`,
- POGUtilityDesc: `- Tracked as leaderboard score for each season
- - Determines eligibility for $TOG rewards
- - Enforces anti-bot integrity via velocity and participation caps
- - Unlocks power scaling and cosmetic boosts across mini-games
- - Redeemable for $TOG, Diamonds, and other rewards on the Portal`,
- TOGUtilityDesc: `Check out Telgather Economy from Litepaper:`,
- },
- };
- if (!win.languages) {
- win.languages = {};
- }
- win.languages.en = languages;
|