-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathen_US.ts
More file actions
130 lines (128 loc) · 4.06 KB
/
en_US.ts
File metadata and controls
130 lines (128 loc) · 4.06 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import { SiteLocale } from './types';
const en_US: SiteLocale = {
locale: 'en_US',
nav: {
home: 'Home',
guide: 'Guide',
theme: 'Theme',
components: 'Components',
pro: 'Pro',
},
home: {
subtitle: 'A Friendly UI Component Set for React',
getStarted: 'Get Started',
github: 'GitHub',
designPrinciple: 'Design Principle',
componentCategories: 'Component Categories',
nComponents: (count) => `${count} components`,
features: {
themeable: 'Themeable',
themeableDesc:
'Quickly and easily reference values from your theme throughout your entire application with any components.',
elegant: 'Elegant',
elegantDesc: 'Thanks for React Hook, the source code is more light weight.',
composable: 'Composable',
composableDesc:
'Completely customisable for all components. You can leverage any component to create new things.',
accessible: 'Accessible',
accessibleDesc:
'Strictly follows WAI-ARIA standards. All components come with proper attributes and keyboard interactions.',
},
stats: {
components: 'Components',
categories: 'Categories',
typescript: 'TypeScript',
license: 'License',
},
themeShowcase: 'Make It Yours',
themeShowcaseDesc: 'Choose a preset theme and watch the entire site transform instantly.',
themeShowcaseCustomize: 'Customize in Theme Editor',
showcase: {
title: 'Components in Action',
subtitle: 'Real components, rendered live. What you see is what you ship.',
},
codeExample: {
title: 'Delightful Developer Experience',
subtitle: 'Clean APIs. Predictable patterns. Ship in minutes, not hours.',
},
cta: {
title: 'Start Building Today',
subtitle: 'Install Tiny UI and have your first component on screen in under a minute.',
install: 'npm install @tiny-design/react',
copied: 'Copied!',
readDocs: 'Read the Docs',
browseComponents: 'Browse Components',
},
},
overview: {
title: 'Component Overview',
desc: (count) =>
`There is an overview of all components. Currently Tiny-UI provides ${count} components.`,
},
categories: {
foundation: 'Foundation',
layout: 'Layout',
navigation: 'Navigation',
dataDisplay: 'Data Display',
formItem: 'Form Item',
feedback: 'Feedback',
miscellany: 'Miscellany',
},
guideMenu: {
introduction: 'Introduction',
getStarted: 'Get Started',
useWithVite: 'Use with Vite',
changelog: 'Changelog',
faq: 'FAQ',
mcpServer: 'MCP Server',
cli: 'CLI',
groups: {
overview: 'Overview',
gettingStarted: 'Getting Started',
ai: 'AI',
resources: 'Resources',
},
},
themeMenu: {
customiseTheme: 'Customise Theme',
colors: 'Colors',
themeEditor: 'Theme Editor',
},
color: {
title: 'Color',
intro:
'Tiny UI uses a specific set of palettes to specify colors to provide a consistent look and feel for the products you build.',
primaryTitle: 'Primary colors',
primaryDesc:
'Semantic colours used across all components. These map to CSS custom properties (e.g. --ty-color-primary) and update automatically when you apply a theme preset.',
neutralsTitle: 'Light neutrals',
neutralsDesc:
'Light neutrals are helpful for offsetting content in a primarily white layout without losing warmth and cleanliness, and are therefore often used as a background color for web components.',
nameLabel: 'NAME',
hexLabel: 'HEX',
defaultColor: 'Default',
primary: 'Primary',
secondary: 'Secondary',
info: 'Info',
success: 'Success',
danger: 'Danger',
warning: 'Warning',
},
codeBlock: {
showCode: 'Show Code',
hideCode: 'Hide Code',
copyCode: 'Copy Code',
resetDemo: 'Reset Demo',
copied: 'Copied',
openInStackBlitz: 'Open in StackBlitz',
openInCodeSandbox: 'Open in CodeSandbox',
},
commandPalette: {
placeholder: 'Search docs...',
noResults: 'No results found.',
},
common: {
loading: 'Loading...',
},
};
export default en_US;