-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.53 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
91
92
93
94
95
{
"name": "antigravity-language-pack-zh-hans",
"displayName": "Chinese (Simplified) (简体中文) Language Pack for Antigravity",
"description": "Antigravity IDE 简体中文语言包扩展 — 为 Antigravity 专属功能提供中文翻译(含 NLS + 硬编码字符串补丁)",
"version": "1.41.1",
"publisher": "editorss",
"repository": {
"type": "git",
"url": "https://github.com/editorss/AntigravityChinesePack"
},
"license": "MIT",
"engines": {
"vscode": "^1.68.0"
},
"icon": "languagepack.png",
"main": "./extension.js",
"activationEvents": [
"onStartupFinished"
],
"categories": [
"Language Packs",
"Other"
],
"keywords": [
"中文(简体)",
"Chinese",
"Simplified Chinese",
"Antigravity",
"汉化",
"语言包",
"localization"
],
"contributes": {
"commands": [
{
"command": "antigravity-zh.applyPatch",
"title": "应用中文汉化补丁",
"category": "Antigravity 中文"
},
{
"command": "antigravity-zh.revertPatch",
"title": "恢复英文原始文件",
"category": "Antigravity 中文"
},
{
"command": "antigravity-zh.toggleBlockUpdate",
"title": "切换屏蔽 Antigravity 自动更新",
"category": "Antigravity 中文"
}
],
"configuration": {
"title": "Antigravity 中文汉化",
"properties": {
"antigravity-zh.blockAutoUpdate": {
"type": "boolean",
"default": false,
"description": "屏蔽 Antigravity 自动更新检测。开启后将阻止 IDE 检查和下载新版本。"
}
}
},
"localizations": [
{
"languageId": "zh-cn",
"languageName": "Chinese Simplified",
"localizedLanguageName": "中文(简体)",
"translations": [
{
"id": "google.antigravity",
"path": "./translations/extensions/google.antigravity.i18n.json"
},
{
"id": "google.antigravity-browser-launcher",
"path": "./translations/extensions/google.antigravity-browser-launcher.i18n.json"
},
{
"id": "google.antigravity-code-executor",
"path": "./translations/extensions/google.antigravity-code-executor.i18n.json"
},
{
"id": "google.antigravity-dev-containers",
"path": "./translations/extensions/google.antigravity-dev-containers.i18n.json"
},
{
"id": "google.antigravity-remote-openssh",
"path": "./translations/extensions/google.antigravity-remote-openssh.i18n.json"
},
{
"id": "google.antigravity-remote-wsl",
"path": "./translations/extensions/google.antigravity-remote-wsl.i18n.json"
}
]
}
]
}
}