en.ts 3.5 KB

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