-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.json
74 lines (74 loc) · 2.53 KB
/
commands.json
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
{
"en_US": {
"set_language": {
"callback": "CommandsInterface.set_language",
"generic_name": "Hebrew",
"message": "Setting language to Hebrew",
"args": ["he_IL"],
"triggers": [
["set", "language", "hebrew"],
["change", "language", "hebrew"]
]
},
"turn_off": {
"callback": "CommandsInterface.turn_off",
"triggers": [
["turn", "off"],
["shut", "yourself", "off"],
["shut", "yourself", "down"],
["shut", "up"]
],
"message": "Shutting down."
},
"shut_down_computer": {
"callback": "CommandsInterface.shut_down",
"is_remote": true,
"remote_address": "BROADCAST",
"remote_and_local": false,
"message": "Shutting down the computer",
"triggers": [
["shut down the computer now"],
["shut off the computer now"],
["turn off the computer now"],
["shut down the computer immediately"],
["shut off the computer immediately"],
["turn off the computer immediately"]
]
}
},
"he_IL": {
"set_language": {
"callback": "CommandsInterface.set_language",
"generic_name": "English",
"message": "משנה שפה לאנגלית",
"args": ["en_US"],
"triggers": [
["שנה", "שפה", "ל", "אנגלית"],
["חליף", "שפה", "ל", "אנגלית"]
]
},
"turn_off": {
"callback": "CommandsInterface.turn_off",
"triggers": [
["תכבה", "את", "עצמך"],
["תסגור", "את", "עצמך"],
["שתוק"],
["סתום", "פה"]
],
"message": "מתכבה..."
},
"shut_down_computer": {
"callback": "CommandsInterface.shut_down",
"is_remote": true,
"remote_address": "BROADCAST",
"remote_and_local": false,
"message": "מכבה את המחשב",
"triggers": [
["תכבה את המחשב עכשיו"],
["תסגור את המחשב עכשיו"],
["תכבה את המחשב במיידית"],
["תסגור את המחשב במיידית"]
]
}
}
}