-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
48 lines (48 loc) · 1.82 KB
/
Copy pathplugin.json
File metadata and controls
48 lines (48 loc) · 1.82 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
{
"Id": "cb491ba6-e73f-4434-922e-738a55f87558",
"TriggerKeywords": [
"kill"
],
"Name": "i18n:plugin_name",
"Description": "i18n:plugin_description",
"Author": "Wox-Launcher",
"Version": "0.0.3",
"MinWoxVersion": "2.0.0",
"Runtime": "python",
"Website": "https://github.com/Wox-Launcher/Wox.Plugin.KillProcess",
"Entry": "killprocess/main.py",
"Icon": "relative:image/app.png",
"SupportedOS": [
"windows",
"linux",
"darwin"
],
"I18n": {
"en_US": {
"plugin_name": "Kill Process",
"plugin_description": "Terminate a running process by its name or ID",
"process_title": "{friendly_name}",
"tail_pid": "PID: {pid}",
"tail_memory": "{memory_mb} MB",
"kill_action": "Kill Process",
"notify_success": "Successfully terminated process {pid}",
"notify_no_process": "Process {pid} no longer exists",
"notify_access_denied": "Access denied when trying to kill process {pid}",
"notify_error": "Error killing process {pid}: {error}",
"notify_invalid_pid": "Invalid process ID"
},
"zh_CN": {
"plugin_name": "进程杀手",
"plugin_description": "通过进程名称或 ID 终止正在运行的进程",
"process_title": "{friendly_name}",
"tail_pid": "PID: {pid}",
"tail_memory": "{memory_mb} MB",
"kill_action": "结束进程",
"notify_success": "成功终止进程 {pid}",
"notify_no_process": "进程 {pid} 已不存在",
"notify_access_denied": "没有权限终止进程 {pid}",
"notify_error": "终止进程 {pid} 时出错: {error}",
"notify_invalid_pid": "无效的进程 ID"
}
}
}