en.ts 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. const win = window as any;
  2. export const languages = {
  3. Common: {
  4. NoGem: `Insufficient balance`,
  5. },
  6. Family: {
  7. WhatIsFamily: `A Family is a group system where players team up to earn shared rewards.
  8. Families have unique names and earn shared bonuses by progressing together.`,
  9. FamilyOwnerBenefits: `Earn extra 15% bonus from your Family’s total POG
  10. Manage members and reward settings`,
  11. FamilyMemberBenefits: `Unlock Family Reward Boxes
  12. Help your Family climb event leaderboards
  13. Get bonus rewards through teamwork!`,
  14. CreateFamilySuccess: `🎉 Congrats! You’re now the Owner of the Family: [{value}].
  15. Start growing your family now!`,
  16. RemoveConfirmContent: "Are you sure to remove this player?",
  17. RemoveMemberSuccess: "Removal Complete",
  18. JoinFamilySuccess: "You have joined the family",
  19. KickedMe: "You have been kicked out of the family",
  20. UpgradeFamilyConfirm: `Family Expansion System
  21. - Create a Family: 10 Diamonds
  22. - Expand Family Capacity: +10 members for 30 Diamonds
  23. - Maximum Family Members: 100 players
  24. Spend {value}Diamond to upgrade family now?`,
  25. UpgradeFamilySuccess: "Family upgrade successful! Max member count: +10.",
  26. },
  27. Rank: {
  28. Season: "SEASON",
  29. Total: "TOTAL",
  30. CurrentSeason: "Current Season",
  31. TotalPogTip: `Total prize pool
  32. New season will auto-reset after all POGs are distributed. Never too late to join the hype!`,
  33. TodaySend: "Sent",
  34. TodayRemaining: "Remaining POG",
  35. MyRankTip: `Rank high, earn seasonal $TOG & Badge NFTs!`,
  36. WeekTimeTip: `Current Season Playtime: Key Engagement Metric`,
  37. AllTankSegmentTitle: `Overview`,
  38. },
  39. Shop: {
  40. GameShards: `Game Shards`,
  41. GameShardsTips: `Collect Shards to earn a Game Pass. Unused Shards can carry over to the next season.`,
  42. GamePassItemTitle: `Season #{value} Game Pass`,
  43. GamePassSalesInfo: `Public Sale: {value} Shards Redemption: {value2}`,
  44. },
  45. Wallet: {
  46. MyAddress: "My Address",
  47. MyAssets: "My Assets",
  48. POGDesc: `POG - Proof of Games`,
  49. MyBadges: "My NFT Boosters",
  50. MyGames: "My Games",
  51. CurrentPOGBoosterTitle: "Current POG Boosters",
  52. TotalBoosterValue: `Overall {value}% extra POG boost`,
  53. MyRankDesc: `My Current Ranking: {value} #{value2}`,
  54. RankTips: `Rank high, earn seasonal $TOG & Badge NFTs!`,
  55. GamePassTips: `Game Passes can be stacked within a season. Capped at 30%.`,
  56. HowToEarnPOGTitle: `How to earn POG`,
  57. HowToEarnPOG1: `Play games`,
  58. HowToEarnPOG2: `Watch Ads`,
  59. HowToEarnPOG3: `Invite Friends to the Portal`,
  60. HowToEarnPOG4: `Open POG Box from the Shop`,
  61. POGUtilityDesc: `- Tracked as leaderboard score for each season
  62. - Determines eligibility for $TOG rewards
  63. - Enforces anti-bot integrity via velocity and participation caps
  64. - Unlocks power scaling and cosmetic boosts across mini-games
  65. - Redeemable for $TOG, Diamonds, and other rewards on the Portal`,
  66. TOGUtilityDesc: `Check out Telgather Economy from Litepaper:`,
  67. },
  68. };
  69. if (!win.languages) {
  70. win.languages = {};
  71. }
  72. win.languages.en = languages;