-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtranslations.js
More file actions
90 lines (90 loc) · 3.13 KB
/
translations.js
File metadata and controls
90 lines (90 loc) · 3.13 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
module.exports = {
'en': {
edit: 'Edit',
undo: 'Undo',
redo: 'Redo',
cut: 'Cut',
copy: 'Copy',
paste: 'Paste',
selectAll: 'Select All',
view: 'View',
reload: 'Reload',
forceReload: 'Force Reload',
resetZoom: 'Reset Zoom',
zoomIn: 'Zoom In',
zoomOut: 'Zoom Out',
toggleFullscreen: 'Toggle Full Screen',
enableNotifications: 'Enable Background Notifications',
launchAtStartup: 'Launch at Startup',
debug: 'Debug',
goBack: 'Go Back',
showCurrentUrl: 'Show Current URL',
openDevTools: 'Open DevTools',
help: 'Help',
about: 'About',
selectAllSingleMessage: 'Select All Single Message',
copySingleMessage: 'Copy Entire Message',
openInBrowser: 'Open in Browser',
copyImage: 'Copy Image',
language: 'Language',
github: 'GitHub Repository',
autoCheckUpdates: 'Auto Check for Updates',
checkUpdateNow: 'Check for Updates...',
sendTestNotification: 'Send Test Notification (3s delay)',
testNotificationTitle: 'Test Notification',
testNotificationBody: 'This is a test notification from Facebook Messenger App.',
noUpdateAvailable: 'No Update Available',
latestVersionMessage: 'You are using the latest version.',
updateAvailable: 'Update Available',
updateMessage: 'A new version {version} is available. Do you want to download it now?',
download: 'Download',
later: 'Later',
ignoreUpdate: 'Ignore this version',
loadFailedTitle: 'Messenger Load Failed',
loadFailedMessage: 'Please check your internet connection or click the button below to retry.'
},
'zh-TW': {
edit: '編輯',
undo: '復原',
redo: '重做',
cut: '剪下',
copy: '複製',
paste: '貼上',
selectAll: '全選',
view: '檢視',
reload: '重新載入',
forceReload: '強制重新載入',
resetZoom: '重設縮放',
zoomIn: '放大',
zoomOut: '縮小',
toggleFullscreen: '切換全螢幕',
enableNotifications: '啟用背景通知',
launchAtStartup: '開機自動啟動',
debug: '除錯',
goBack: '上一頁',
showCurrentUrl: '顯示目前網址',
openDevTools: '開啟開發者工具',
help: '說明',
about: '關於',
selectAllSingleMessage: '全選單一訊息',
copySingleMessage: '複製整個訊息',
openInBrowser: '在瀏覽器開啟',
copyImage: '複製圖片',
language: '語言',
github: 'GitHub 專案頁面',
autoCheckUpdates: '自動檢查更新',
checkUpdateNow: '檢查更新...',
sendTestNotification: '發送測試通知 (3秒延遲)',
testNotificationTitle: '測試通知',
testNotificationBody: '這是一封來自 Facebook Messenger App 的測試通知。',
noUpdateAvailable: '沒有可用的更新',
latestVersionMessage: '您目前使用的是最新版本。',
updateAvailable: '有新版本可用',
updateMessage: '發現新版本 {version}。您想要現在下載嗎?',
download: '下載',
later: '稍後',
ignoreUpdate: '忽略此次更新',
loadFailedTitle: 'Messenger 載入失敗',
loadFailedMessage: '請檢查您的網路連線,或點擊下方按鈕重新嘗試。'
}
};