en.ts 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. const win = window as any;
  2. export const languages = {
  3. Common: {
  4. NoGem: `Insufficient balance`,
  5. },
  6. Family: {
  7. CreateFamilySuccessTitle: "Success",
  8. CreateFamilySuccess:
  9. `🎉 Congrats! You’re now the Owner of the Family: [{value}].
  10. Start growing your family now!`,
  11. RemoveSuccessTitle: "Success",
  12. RemoveConfirmContent: "Are you sure to remove this player?",
  13. RemoveMemberSuccess: "Remove Success",
  14. },
  15. Rank: {
  16. Season: "SEASON",
  17. Total: "TOTAL",
  18. CurrentSeason: "Current Season",
  19. TotalPogTip: `Total prize pool
  20. New season will auto-reset after all POGs are distributed. Never too late to join the hype!`,
  21. TodaySend: "Sent",
  22. TodayRemaining: "Remaining POG",
  23. MyRankTip: `Rank high, earn seasonal $TOG & Badge NFTs!`,
  24. WeekTimeTip: `Current Season Playtime: Key Engagement Metric`,
  25. AllTankSegmentTitle: `Overview`,
  26. },
  27. Shop: {
  28. GameShards: `Game Shards`,
  29. GameShardsTips: `Collect Shards to earn a Game Pass. Unused Shards can carry over to the next season.`,
  30. GamePassItemTitle: `Season #{value} Game Pass`,
  31. GamePassSalesInfo: `Public Sale: {value} Shards Redemption: {value2}`,
  32. },
  33. Wallet: {
  34. MyAddress: "My Address",
  35. MyAssets: "My Assets",
  36. POGDesc: `POG — Proof of Game`,
  37. MyBadges: "My NFT Boosters",
  38. MyGames: "My Games",
  39. CurrentPOGBoosterTitle: "Current POG Boosters",
  40. TotalBoosterValue: `Overall {value}% extra POG boost`,
  41. MyRankDesc: `My Current Ranking: {value} #{value2}`,
  42. RankTips: `Rank high, earn seasonal $TOG & Badge NFTs!`,
  43. GamePassTips: `Game Passes can be stacked within a season. Capped at 30%.`,
  44. HowToEarnPOGTitle: `How to earn POG`,
  45. HowToEarnPOG1: `Play games`,
  46. HowToEarnPOG2: `Watch Ads`,
  47. HowToEarnPOG3: `Invite Friends to the Portal`,
  48. HowToEarnPOG4: `Open POG Box from the Shop`,
  49. POGUtilityDesc: `- Tracked as leaderboard score for each season
  50. - Determines eligibility for $TOG rewards
  51. - Enforces anti-bot integrity via velocity and participation caps
  52. - Unlocks power scaling and cosmetic boosts across mini-games
  53. - Redeemable for $TOG, Diamonds, and other rewards on the Portal`,
  54. TOGUtilityDesc: `Check out Telgather Economy from Litepaper:`,
  55. },
  56. };
  57. if (!win.languages) {
  58. win.languages = {};
  59. }
  60. win.languages.en = languages;