-
Notifications
You must be signed in to change notification settings - Fork 18
/
i18n.config.ts
78 lines (78 loc) · 2.95 KB
/
i18n.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
export default defineI18nConfig(() => ({
legacy: false,
locale: "en",
messages: {
en: {
officialWebsite: "Official Website",
visit: "Visit",
goTo: "Go to {name}",
siteTitle: "UILibHub: Discover Best UI Libraries for React、Vue",
siteDescription: "Discover and share top React, Vue, and mini program component libraries. UILibHub helps developers build modern applications with the best recommendations.",
mainFeatures: "Main Features",
moreFeatures: "More Features",
availableComponents: "Available Components",
viewDetail: 'View more about {name}',
popularity: "Popularity",
componentCount: "components",
userGuide: "User Guide",
footerDescription: "Discover Best UI Libraries for React and Vue",
footerTitle1: "Products",
footerTitle2: "About Us",
footerTitle3: "Legal Information",
footerTerms1: "About Us",
footerTerms2: "Privacy Policy",
footerTerms3: "Terms & Conditions",
footerTerms4: "Indie Hacker Tools",
clearFilters: "Clear {count} filter{suffix}",
becomeSponsor: "Become a sponsor",
baseInfo: "Base Information",
features: "Features",
preview: "Preview",
baseInfoField: "Field",
baseInfoValue: "Value",
baseInfoComponentCount: "Components",
baseInfoStars: "Stars",
baseInfoNpmDownloads: "NPM Downloads",
featuresField: "Feature",
featuresExplanation: "Explanation",
otherYouMayLike: "Other You May Like",
total: 'Results',
},
zh: {
officialWebsite: "官网",
visit: "官网",
goTo: "访问 {name}",
siteTitle: "UILibHub:精选最优质的 React、Vue UI、小程序组件库",
siteDescription: "专注收集和分享 React、Vue 和小程序组件库的优质资源。UILibHub 提供最新、最全面的组件库推荐,助力开发者高效构建现代化应用。",
mainFeatures: "主要功能",
moreFeatures: "其他功能",
availableComponents: "组件数量",
viewDetail: '查看 {name} 详情',
popularity: "流行度",
componentCount: "组件",
userGuide: "使用指南",
footerDescription: "精选最优质的 React、Vue UI 组件库",
footerTitle1: "产品",
footerTitle2: "关于网站",
footerTitle3: "法律信息",
footerTerms1: "关于我们",
footerTerms2: "隐私政策",
footerTerms3: "服务条款",
footerTerms4: "独立开发者出海工具箱",
clearFilters: "清除 {count} 个筛选",
becomeSponsor: "成为赞助商",
baseInfo: "基本信息",
features: "特性",
preview: "预览",
baseInfoField: "字段",
baseInfoValue: "值",
baseInfoComponentCount: "组件数",
baseInfoStars: "Stars",
baseInfoNpmDownloads: "NPM 下载量",
featuresField: "特性",
featuresExplanation: "说明",
otherYouMayLike: "猜你喜欢",
total: '个结果',
},
},
}))