-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.js
52 lines (52 loc) · 2.07 KB
/
i18n.js
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
const messages = {
zh: {
title: 'Favicon & Meta 信息获取工具',
subTitle: '快速获取任何网站的图标和元数据信息',
inputPlaceholder: '输入网址或域名 (例如: example.com)',
fetch: '获取信息',
fetching: '正在获取...',
inputRequired: '请输入网址或域名',
invalidUrl: '请输入有效的网址或域名',
fetchError: '获取失败,请检查网址是否正确',
favicon: '网站图标',
keywords: '关键词',
description: '网站描述',
language: '切换语言',
noKeywords: '未找到关键词信息',
noDescription: '未找到网站描述',
copySuccess: '已复制到剪贴板',
copyTip: '点击复制',
pageTitle: '网站标题',
noTitle: '未找到网站标题',
examples: '示例网站',
tryExamples: '点击尝试以下示例:',
loading: '加载中...',
copyright: '© 2024 Favicon & Meta 信息获取工具. 保留所有权利.',
version: '版本'
},
en: {
title: 'Favicon & Meta Info Fetcher',
subTitle: 'Quickly fetch favicon and metadata from any website',
inputPlaceholder: 'Enter URL or domain (e.g., example.com)',
fetch: 'Fetch Info',
fetching: 'Fetching...',
inputRequired: 'Please enter URL or domain',
invalidUrl: 'Please enter a valid URL or domain',
fetchError: 'Failed to fetch, please check the URL',
favicon: 'Website Icon',
keywords: 'Keywords',
description: 'Description',
language: 'Switch Language',
noKeywords: 'No keywords found',
noDescription: 'No description found',
copySuccess: 'Copied to clipboard',
copyTip: 'Click to copy',
pageTitle: 'Page Title',
noTitle: 'No title found',
examples: 'Example Sites',
tryExamples: 'Try these examples:',
loading: 'Loading...',
copyright: '© 2024 Favicon & Meta Info Fetcher. All rights reserved.',
version: 'Version'
}
}