master
1import type { BaseTranslation } from '../../i18n-types.js';
2
3const en_web = {
4 common: {
5 open: 'Open',
6 close: 'Close',
7 refresh: 'Refresh',
8 },
9 navigation: {
10 title: 'Navigation',
11 home: 'Home',
12 about: 'About',
13 archive: {
14 title: 'Archive',
15 time: 'Time',
16 tags: 'Tags',
17 categories: 'Categories',
18 },
19 friendLinks: 'Links',
20 menu: 'Menu',
21 prevPage: 'Previous Page',
22 nextPage: 'Next Page',
23 recentPosts: 'Recent Posts',
24 },
25 status: {
26 totalPosts: 'Total Posts',
27 totalWords: 'Total Words',
28 lastUpdated: 'Last Updated',
29 runTime: 'Run Time',
30 wordsCount: '{0} word{{s}}',
31 readTime: '{0} minute{{s}}',
32 postsCount: '{0} post{{s}}',
33 tagsCount: '{0} tag{{s}}',
34 categoriesCount: '{0} category{{s}}',
35 },
36 button: {
37 search: 'Search',
38 subscribe: 'Subscribe',
39 more: 'More',
40 themeToggle: {
41 title: 'Toggle Theme',
42 lightMode: 'Light',
43 darkMode: 'Dark',
44 systemMode: 'System',
45 },
46 },
47 meta: {
48 author: 'Author',
49 publishedAt: 'Published At',
50 license: 'License',
51 tags: 'Tags',
52 category: 'Category',
53 unTagged: 'No Tags',
54 unCategorized: 'Uncategorized',
55 wordsCount: 'Words Count',
56 readingTime: 'Reading Time',
57 },
58 info: {
59 toc: 'Table of Content',
60 fastActions: 'Fast Actions',
61 readingPercentage: 'Reading Percentage',
62 comments: 'Comments',
63 recentComments: 'Recent Comments',
64 commentAbbrs: {
65 image: '[Image]',
66 link: '[Link]',
67 code: '[Code]',
68 collapsed: '[Collapsed]',
69 pending: '[Pending]',
70 },
71 backLinks: 'Back Links',
72 devNote:
73 'This is a draft and will only be displayed in <code>DEV</code> mode. To disable draft preview, please modify <code>{configKey:string}</code> to <code>{configValue:boolean}</code> in <code>{configFilePath:string}</code>.',
74 openMenu: 'Open Menu',
75 closeMenu: 'Close Menu',
76 },
77 search: {
78 title: 'Search',
79 placeholder: 'Search Anything...',
80 searchResults: 'Search Results',
81 noSearchResults: 'No Results Found',
82 },
83} satisfies BaseTranslation;
84
85export default en_web;