-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.js
34 lines (34 loc) · 1.36 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
const i18n = {
zh: {
title: 'Google Sheets 超链接转换工具',
inputLabel: '输入链接',
inputExample: '示例:https://www.google.com/',
inputPlaceholder: '在此粘贴链接...',
outputLabel: '转换结果',
outputExample: '示例:=HYPERLINK("https://www.google.com/","Google")',
outputPlaceholder: '转换后的格式...',
copyButton: '复制到剪贴板',
statusProcessing: '正在获取页面标题...',
statusComplete: '转换完成',
statusInvalidUrl: '请输入有效的URL',
statusCopied: '已复制到剪贴板',
language: '语言',
languageSelect: '选择语言'
},
en: {
title: 'Google Sheets Hyperlink Converter',
inputLabel: 'Input URL',
inputExample: 'Example: https://www.google.com/',
inputPlaceholder: 'Paste URL here...',
outputLabel: 'Output Result',
outputExample: 'Example: =HYPERLINK("https://www.google.com/","Google")',
outputPlaceholder: 'Formatted result...',
copyButton: 'Copy to Clipboard',
statusProcessing: 'Getting page title...',
statusComplete: 'Conversion complete',
statusInvalidUrl: 'Please enter a valid URL',
statusCopied: 'Copied to clipboard',
language: 'Language',
languageSelect: 'Select Language'
}
};