export type NewsDetailLanguage = 'zh-CN' | 'zh-TW' | 'en'; export const newsDetailTranslations = { 'zh-CN': { nav: { home: '首页', products: '产品与服务', news: '新闻资讯', support: '客户支持', about: '关于我们', contact: '联系我们', }, backToNews: '返回新闻列表', notFound: '文章未找到', notFoundMessage: '您访问的文章不存在或已被移除。', relatedArticles: '相关文章', relatedArticlesSubtitle: '发现更多精彩内容', shareArticle: '分享文章', publishedOn: '发布于', by: '作者', tryAgain: '重试', loading: '加载中...', footer: { sections: [ { title: '目录', items: ['首页', '产品与服务', '新闻资讯', '客户支持', '关于我们'], }, { title: '热门产品', items: ['轻量云服务器', '站群服务器', 'EC2服务器', '高防服务器', 'S3云存储'], }, { title: '客户支持', items: ['技术支持', '在线客服', '帮助文档', '服务状态'] }, { title: '公司信息', items: ['关于我们', '联系我们', '隐私政策', '服务条款'] }, ], }, }, 'zh-TW': { nav: { home: '首頁', products: '產品與服務', news: '新聞資訊', support: '客戶支持', about: '關於我們', contact: '聯繫我們', }, backToNews: '返回新聞列表', notFound: '文章未找到', notFoundMessage: '您訪問的文章不存在或已被移除。', relatedArticles: '相關文章', relatedArticlesSubtitle: '發現更多精彩內容', shareArticle: '分享文章', publishedOn: '發布於', by: '作者', tryAgain: '重試', loading: '加載中...', footer: { sections: [ { title: '目錄', items: ['首頁', '產品與服務', '新聞資訊', '客戶支持', '關於我們'], }, { title: '熱門產品', items: ['輕量雲服務器', '站群服務器', 'EC2服務器', '高防服務器', 'S3雲存儲'], }, { title: '客戶支持', items: ['技術支持', '在線客服', '幫助文檔', '服務狀態'] }, { title: '公司信息', items: ['關於我們', '聯繫我們', '隱私政策', '服務條款'] }, ], }, }, en: { nav: { home: 'Home', products: 'Products & Services', news: 'News', support: 'Support', about: 'About Us', contact: 'Contact Us', }, backToNews: 'Back to News', notFound: 'Article Not Found', notFoundMessage: 'The article you are looking for does not exist or has been removed.', relatedArticles: 'Related Articles', relatedArticlesSubtitle: 'Discover more great content', shareArticle: 'Share Article', publishedOn: 'Published on', by: 'By', tryAgain: 'Try Again', loading: 'Loading...', footer: { sections: [ { title: 'Directory', items: ['Home', 'Products & Services', 'News', 'Support', 'About Us'], }, { title: 'Popular Products', items: [ 'Lightweight Cloud Server', 'Station Group Server', 'EC2 Server', 'High-Defense Server', 'S3 Cloud Storage', ], }, { title: 'Customer Support', items: [ 'Technical Support', 'Online Chat', 'Help Documentation', 'Service Status', ], }, { title: 'Company Info', items: ['About Us', 'Contact Us', 'Privacy Policy', 'Terms of Service'], }, ], }, }, };