pages.ts 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. export default {
  2. error: {
  3. ['404']: {
  4. title: '404',
  5. subtitle: 'Sorry, the page you visited does not exist',
  6. backHome: 'Back to Home',
  7. },
  8. ['403']: {
  9. title: '403',
  10. subtitle: 'Sorry, you are not authorized to access this page',
  11. backHome: 'Back to Home',
  12. },
  13. ['500']: {
  14. title: '500',
  15. subtitle: 'Sorry, the server is reporting an error',
  16. backHome: 'Back to Home',
  17. },
  18. },
  19. pricing: {
  20. title: 'Purchase NOMO VPN Plan',
  21. selecPlan: 'Select a plan that suits you',
  22. selectPayMethod: 'Select your payment method',
  23. userInfo: {
  24. account: 'Your Account',
  25. planExpireTime: 'Plan Expire Time',
  26. },
  27. planTag: {
  28. mostPopular: 'Most Popular',
  29. limitedTime: 'Limited Time',
  30. },
  31. payMethod: {
  32. wechat: 'WeChat',
  33. alipay: 'Alipay',
  34. paypal: 'PayPal',
  35. applePay: 'Apple Pay',
  36. googlePay: 'Google Pay',
  37. },
  38. orderSummary: {
  39. orderTotal: 'Order Total',
  40. terms: 'Continue to pay, you agree to our service terms',
  41. goPayNow: 'Pay Now',
  42. },
  43. },
  44. privacyPolicy: {
  45. title: 'Privacy Policy',
  46. },
  47. termsOfService: {
  48. title: 'Terms of Service',
  49. },
  50. // 以下是 框架功能演示 页面的翻译
  51. featureDemo: {
  52. title: 'Feature Demo',
  53. description: 'This is an example page using Ant Design and Tailwind CSS',
  54. features: {
  55. title: 'Key Features',
  56. antd: 'Using Ant Design Component Library',
  57. tailwind: 'Using Tailwind CSS Framework',
  58. i18n: 'Support for Internationalization',
  59. },
  60. getStarted: 'Get Started',
  61. },
  62. };