-
Notifications
You must be signed in to change notification settings - Fork 75
/
index.js
79 lines (79 loc) · 2.41 KB
/
index.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
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
module.exports = {
title: 'P3X Redis UI',
updater: {
'checking-for-update': 'Checking for update ...',
'update-available': 'Downloading latest release ...',
'update-not-available': 'No new update available.',
error: (opts) => {
return `Error in auto-updater: ${opts.errorMessage}`
},
'download-progress': (opts) => {
return 'Downloaded ' + opts.progressObj.percent + '%'
},
'update-downloaded': 'Update downloaded. You may restart the app to update.'
},
button: {
ok: 'OK',
},
message: {
restart: 'Please hang on, the application is restarting.',
},
menu: {
main: {
home: 'Home',
console: 'Console',
settings: 'Settings',
overview: 'Overview',
quit: 'Quit',
},
edit: {
title: 'Edit',
undo: 'Undo',
redo: 'Redo',
cut: 'Cut',
copy: 'Copy',
paste: 'Paste',
pasteandmatchstyle: 'Paste and match style',
delete: 'Delete',
selectall: 'Select all',
},
view: {
title: 'View',
reload: 'Reload',
forcereload: 'Force reload',
toggledevtools: 'Toggle development tools',
resetzoom: 'Reset Zoom',
zoomin: 'Zoom In',
zoomout: 'Zoom out',
togglefullscreen: 'Toggle full screen',
},
language: {
// When you translate the language, keep the Language in English
// eg. Idioma / Language
title: 'Language',
translation: {
// When you translate the english name, keep the Language in English
// eg. Inglés / English
en: 'English',
zn: 'Chinese / 中文',
ru: 'Russian / Русский'
}
},
settings: {
title: 'Settings',
hideMenu: 'Hide main menu (show with ALT)',
optionToHideMenuState: {
yes: 'After restart, it will hide the menu and show on ALT.',
},
},
help: {
changelog: 'Change log',
download: 'Download',
developer: 'Developer',
checkUpdates: 'Check updates',
},
donate: {
title: 'Donate',
}
},
}