AwsLinker/lib/home-translations.ts

503 lines
18 KiB
TypeScript
Raw Permalink Normal View History

2025-09-16 17:19:58 +08:00
export interface HomeTranslations {
nav: {
home: string;
products: string;
news: string;
support: string;
about: string;
contact: string;
};
hero: {
title: string;
steps: {
num: string;
title: string;
desc: string;
}[];
};
advantages: {
title: string;
items: {
title: string;
desc: string[];
}[];
};
products: {
title: string;
items: {
id: string;
title: string;
desc: string;
}[];
};
news: {
title: string;
items: {
date: string;
year: string;
title: string;
desc: string;
}[];
};
contact: {
title: string;
company: string;
address: string;
email: string;
phone: string;
form: {
name: string;
phone: string;
message: string;
submit: string;
};
};
footer: {
sections: {
title: string;
items: string[];
}[];
};
}
export const homeTranslations: Record<string, HomeTranslations> = {
'zh-CN': {
nav: {
home: '首页',
products: '产品与服务',
news: '新闻资讯',
support: '客户支持',
about: '关于我们',
contact: '联系我们',
},
hero: {
title: '开通流程',
steps: [
{
num: '1',
title: '选择产品',
desc: '根据业务需求选择合适的产品或与客服沟通业务选择合适的产品。',
},
{
num: '2',
title: '联系销售',
desc: '联系销售沟通业务,多种联系方式,无障碍快速沟通。',
},
{ num: '3', title: '沟通业务', desc: '客户经理根据您的需求为您定制化配置。' },
{
num: '4',
title: '开通账户',
desc: '预付款项,三分钟极速开户,支持多渠道支付方式。',
},
],
},
advantages: {
title: '核心优势',
items: [
{
title: '本地化快速响应,服务更贴心',
desc: [
'1. 合肥本土团队7x24小时技术支持覆盖2小时内响应限合肥市内。',
'2. 面对面咨询,服务器测试,省去远程沟通成本。',
],
},
{
title: '专业技术护航,运维无忧',
desc: [
'1. 10年+经验工程师团队,提供架构优化,安全加固,数据迁移等增值服务。',
'2. 故障智能监控系统故障自动预警保障业务99.9%可用性。',
],
},
{
title: '企业级云服务,平台级价格',
desc: [
'1. 代理阿里云、腾讯云、华为云等主流平台,享受专有折扣+增值服务。',
'2. 根据业务需求定制解决方案避免资源浪费平均节省30%成本。',
],
},
{
title: '一站式上云服务,省心省力',
desc: [
'1. 从购买部署到运维—后期运维全流程等。',
'2. 免费提供云服务器迁移,满意后付款,零风险体验。',
],
},
],
},
products: {
title: '产品',
items: [
{
id: '01',
title: '轻量云服务器',
desc: 'AWS 轻量云服务器是针对个人开发者、中小企业以及学生群体的云服务,提供高性价比的云计算资源和服务。',
},
{
id: '02',
title: 'EC2服务器',
desc: '提供弹性 100 Gbps 500Gbps的大宽带服务器适用于需要大宽带大流量的高性能应用场景。',
},
{
id: '03',
title: '高防服务器',
desc: '适用服务器硬件—特性,提供弹性防护能力,适用于对网络安全有较高要求的应用场景。',
},
{
id: '04',
title: '高防服务器',
desc: '高防服务器适用于对网络安全要求较高的应用场景提供强大的DDoS防护能力。',
},
],
},
news: {
title: '新闻资讯',
items: [
{
date: '02.10',
year: '2025',
title: 'AwsLinker召开内部会议致力于提供卓越的AWS云服务体验',
desc: 'AwsLinker作为AWS云服务的优秀代理商今日召开了一次重要的内部会议旨在进一步提升公司上云服务体系并致力于提供更优质的客户体验。',
},
{
date: '02.24',
year: '2025',
title: 'AwsLinker携手亚马逊云科技共赴数字化升级与AI赋能之旅',
desc: '随着数字化转型的深度发展和全球范围内人工智能的崛起我们作为亚马逊云科技的重要合作伙伴与行业领袖携手共同推进企业级AI赋能的实践与落地。',
},
{
date: '04.25',
year: '2025',
title: 'AWS联手AwsLinker聚焦AWS云计算技术如何助力企业数字化转型',
desc: '作为云计算行业的领军者亚马逊AWS云计算技术本如何助力企业数字化转型这是我们今天要探讨的重要话题云服务器、云数据库等服务。',
},
],
},
contact: {
title: '联系我们',
company: '合肥懂云信息科技有限公司',
address: '中国 安徽省 合肥市 蜀山区',
email: '123123123@qq.com',
phone: '12345678910',
form: {
name: '姓名',
phone: '电话',
message: '留言',
submit: '发 送',
},
},
footer: {
sections: [
{
title: '目录',
items: ['首页', '产品与服务', '新闻资讯', '客户支持', '关于我们'],
},
{
title: '热门产品',
items: [
'轻量云服务器',
'站群服务器',
'EC2服务器',
'高防服务器',
'S3云存储',
],
},
{ title: '客户支持', items: ['技术支持', '在线客服', '帮助文档', '服务状态'] },
{ title: '', items: ['新闻资讯', '关于我们', '隐私政策', '站点地图'] },
],
},
},
'zh-TW': {
nav: {
home: '首頁',
products: '產品與服務',
news: '新聞資訊',
support: '客戶支持',
about: '關於我們',
contact: '聯繫我們',
},
hero: {
title: '開通流程',
steps: [
{
num: '1',
title: '選擇產品',
desc: '根據業務需求選擇合適的產品或與客服溝通業務選擇合適的產品。',
},
{
num: '2',
title: '聯繫銷售',
desc: '聯繫銷售溝通業務,多種聯繫方式,無障礙快速溝通。',
},
{ num: '3', title: '溝通業務', desc: '客戶經理根據您的需求為您定制化配置。' },
{
num: '4',
title: '開通賬戶',
desc: '預付款項,三分鐘極速開戶,支持多渠道支付方式。',
},
],
},
advantages: {
title: '核心優勢',
items: [
{
title: '本地化快速響應,服務更貼心',
desc: [
'1. 合肥本土團隊7x24小時技術支持覆蓋2小時內響應限合肥市內。',
'2. 面對面諮詢,服務器測試,省去遠程溝通成本。',
],
},
{
title: '專業技術護航,運維無憂',
desc: [
'1. 10年+經驗工程師團隊,提供架構優化,安全加固,數據遷移等增值服務。',
'2. 故障智能監控系統故障自動預警保障業務99.9%可用性。',
],
},
{
title: '企業級雲服務,平台級價格',
desc: [
'1. 代理阿里雲、騰訊雲、華為雲等主流平台,享受專有折扣+增值服務。',
'2. 根據業務需求定制解決方案避免資源浪費平均節省30%成本。',
],
},
{
title: '一站式上雲服務,省心省力',
desc: [
'1. 從購買部署到運維—後期運維全流程等。',
'2. 免費提供雲服務器遷移,滿意後付款,零風險體驗。',
],
},
],
},
products: {
title: '產品',
items: [
{
id: '01',
title: '輕量雲服務器',
desc: 'AWS 輕量雲服務器是針對個人開發者、中小企業以及學生群體的雲服務,提供高性價比的雲計算資源和服務。',
},
{
id: '02',
title: 'EC2服務器',
desc: '提供彈性 100 Gbps 500Gbps的大寬帶服務器適用於需要大寬帶大流量的高性能應用場景。',
},
{
id: '03',
title: '高防服務器',
desc: '適用服務器硬件—特性,提供彈性防護能力,適用於對網絡安全有較高要求的應用場景。',
},
{
id: '04',
title: '高防服務器',
desc: '高防服務器適用於對網絡安全要求較高的應用場景提供強大的DDoS防護能力。',
},
],
},
news: {
title: '新聞資訊',
items: [
{
date: '02.10',
year: '2025',
title: 'AwsLinker召開內部會議致力於提供卓越的AWS雲服務體驗',
desc: 'AwsLinker作為AWS雲服務的優秀代理商今日召開了一次重要的內部會議旨在進一步提升公司上雲服務體系並致力於提供更優質的客戶體驗。',
},
{
date: '02.24',
year: '2025',
title: 'AwsLinker攜手亞馬遜雲科技共赴數字化升級與AI賦能之旅',
desc: '隨著數字化轉型的深度發展和全球範圍內人工智能的崛起我們作為亞馬遜雲科技的重要合作夥伴與行業領袖攜手共同推進企業級AI賦能的實踐與落地。',
},
{
date: '04.25',
year: '2025',
title: 'AWS聯手AwsLinker聚焦AWS雲計算技術如何助力企業數字化轉型',
desc: '作為雲計算行業的領軍者亞馬遜AWS雲計算技術本如何助力企業數字化轉型這是我們今天要探討的重要話題雲服務器、雲數據庫等服務。',
},
],
},
contact: {
title: '聯繫我們',
company: '合肥懂雲信息科技有限公司',
address: '中國 安徽省 合肥市 蜀山區',
email: '123123123@qq.com',
phone: '12345678910',
form: {
name: '姓名',
phone: '電話',
message: '留言',
submit: '發 送',
},
},
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',
},
hero: {
title: 'Setup Process',
steps: [
{
num: '1',
title: 'Choose Product',
desc: 'Select the right product based on your business needs or communicate with customer service to choose the right product.',
},
{
num: '2',
title: 'Contact Sales',
desc: 'Contact sales to discuss business, multiple contact methods, barrier-free fast communication.',
},
{
num: '3',
title: 'Business Communication',
desc: 'Account manager customizes configuration according to your needs.',
},
{
num: '4',
title: 'Account Setup',
desc: 'Prepayment, 3-minute express account opening, supports multiple payment channels.',
},
],
},
advantages: {
title: 'Core Advantages',
items: [
{
title: 'Localized Fast Response, More Caring Service',
desc: [
'1. Hefei local team, 7x24 hour technical support, 2-hour response coverage (limited to Hefei city).',
'2. Face-to-face consultation, server testing, saving remote communication costs.',
],
},
{
title: 'Professional Technical Support, Worry-free Operations',
desc: [
'1. 10+ years experienced engineer team, providing architecture optimization, security hardening, data migration and other value-added services.',
'2. Intelligent fault monitoring system, automatic fault warning, ensuring 99.9% business availability.',
],
},
{
title: 'Enterprise-level Cloud Services, Platform-level Pricing',
desc: [
'1. Agent for Alibaba Cloud, Tencent Cloud, Huawei Cloud and other mainstream platforms, enjoy exclusive discounts + value-added services.',
'2. Customize solutions according to business needs, avoid resource waste, save 30% cost on average.',
],
},
{
title: 'One-stop Cloud Service, Worry-free and Effortless',
desc: [
'1. From purchase and deployment to operations - full process of later operations and maintenance.',
'2. Free cloud server migration, payment after satisfaction, zero-risk experience.',
],
},
],
},
products: {
title: 'Products',
items: [
{
id: '01',
title: 'Lightweight Cloud Server',
desc: 'AWS lightweight cloud server is a cloud service for individual developers, small and medium enterprises and student groups, providing cost-effective cloud computing resources and services.',
},
{
id: '02',
title: 'EC2 Server',
desc: 'Provides elastic 100 Gbps 500Gbps high-bandwidth servers, suitable for high-performance application scenarios that require high bandwidth and large traffic.',
},
{
id: '03',
title: 'High-Defense Server',
desc: 'Suitable for server hardware characteristics, providing elastic protection capabilities, suitable for application scenarios with high network security requirements.',
},
{
id: '04',
title: 'High-Defense Server',
desc: 'High-defense servers are suitable for application scenarios with high network security requirements, providing powerful DDoS protection capabilities.',
},
],
},
news: {
title: 'News',
items: [
{
date: '02.10',
year: '2025',
title: 'DongYun Technology Holds Internal Meeting, Committed to Providing Excellent AWS Cloud Service Experience',
desc: "DongYun Technology, as an excellent AWS cloud service agent, held an important internal meeting today, aiming to further improve the company's cloud service system and committed to providing better customer experience.",
},
{
date: '02.24',
year: '2025',
title: 'DongYun Technology Partners with Amazon Web Services for Digital Transformation and AI Empowerment Journey',
desc: 'With the deep development of digital transformation and the rise of artificial intelligence globally, we, as an important partner of Amazon Web Services, work hand in hand with industry leaders to promote the practice and implementation of enterprise-level AI empowerment.',
},
{
date: '04.25',
year: '2025',
title: 'AWS Partners with DongYun Technology to Focus on How AWS Cloud Computing Technology Helps Enterprise Digital Transformation',
desc: 'As a leader in the cloud computing industry, how Amazon AWS cloud computing technology helps enterprise digital transformation is an important topic we are discussing today, including cloud servers, cloud databases and other services.',
},
],
},
contact: {
title: 'Contact Us',
company: 'Hefei DongYun Information Technology Co., Ltd.',
address: 'Shushan District, Hefei City, Anhui Province, China',
email: '123123123@qq.com',
phone: '12345678910',
form: {
name: 'Name',
phone: 'Phone',
message: 'Message',
submit: 'Send',
},
},
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 Service', 'Help Documentation', 'Service Status'] },
{ title: '', items: ['News', 'About Us', 'Privacy Policy', 'Site Map'] },
],
},
},
};