-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlanguage.js
More file actions
20 lines (20 loc) · 811 Bytes
/
language.js
File metadata and controls
20 lines (20 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
en : {
OPENNING : function (host, notification) {
return 'Ping to ' + host + ' ' + (notification ? 'with notification' : 'silently.');
},
MANUAL : 'Use -silent or -s option to stop notification.',
PING_STATE_ERROR_MSG : 'Connection Failed!',
PING_STATE_WEAK_SIGNAL_MSG : 'Poor connection.',
PING_STATE_SUCCESS_MSG : 'Connection restored.'
},
vi : {
OPENNING : function (host, notification) {
return 'Ping tới ' + host + ' ' + (notification ? 'có thông báo.' : 'lặng câm.');
},
MANUAL : 'Dùng option -silent hoặc -s để ẩn thông báo.',
PING_STATE_ERROR_MSG : 'Mất mạng rồi!',
PING_STATE_WEAK_SIGNAL_MSG : 'Mạng lởm nhá.',
PING_STATE_SUCCESS_MSG : 'Mạng về làng.'
}
}