material-icon-theme 4.22.0 → 4.23.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/.eslintrc.json +51 -51
  2. package/.github/workflows/build.yml +45 -45
  3. package/.github/workflows/color-check.yml +22 -22
  4. package/.github/workflows/release.yml +73 -73
  5. package/.vscodeignore +21 -21
  6. package/CHANGELOG.md +1292 -1267
  7. package/README.md +199 -199
  8. package/icons/craco.svg +45 -0
  9. package/icons/folder-changesets-open.svg +5 -0
  10. package/icons/folder-changesets.svg +2 -0
  11. package/icons/folder-decorators-open.svg +2 -2
  12. package/icons/folder-decorators.svg +5 -5
  13. package/icons/folder-supabase-open.svg +5 -5
  14. package/icons/folder-supabase.svg +2 -2
  15. package/icons/sonarcloud.svg +4 -4
  16. package/icons/stylable.svg +10 -10
  17. package/icons/supabase.svg +4 -4
  18. package/icons/vitest.svg +6 -0
  19. package/images/contributors.png +0 -0
  20. package/images/fileIcons.png +0 -0
  21. package/images/folderIcons.png +0 -0
  22. package/package.json +252 -252
  23. package/package.nls.de.json +32 -32
  24. package/package.nls.es.json +29 -29
  25. package/package.nls.fr.json +29 -29
  26. package/package.nls.ja.json +32 -32
  27. package/package.nls.json +32 -32
  28. package/package.nls.nl.json +32 -32
  29. package/package.nls.pl.json +32 -32
  30. package/package.nls.pt-BR.json +29 -29
  31. package/package.nls.pt-PT.json +29 -29
  32. package/package.nls.ru.json +29 -29
  33. package/package.nls.zh-CN.json +29 -29
  34. package/package.nls.zh-TW.json +29 -29
  35. package/src/commands/activate.ts +28 -28
  36. package/src/commands/explorerArrows.ts +55 -55
  37. package/src/commands/folderColor.ts +96 -96
  38. package/src/commands/folders.ts +55 -55
  39. package/src/commands/grayscale.ts +55 -55
  40. package/src/commands/iconPacks.ts +64 -64
  41. package/src/commands/index.ts +30 -30
  42. package/src/commands/opacity.ts +46 -46
  43. package/src/commands/saturation.ts +46 -46
  44. package/src/extension.ts +37 -37
  45. package/src/helpers/customIcons.ts +8 -8
  46. package/src/helpers/index.ts +88 -88
  47. package/src/i18n/index.ts +78 -78
  48. package/src/i18n/lang-de.ts +43 -43
  49. package/src/i18n/lang-en.ts +43 -43
  50. package/src/i18n/lang-es.ts +43 -43
  51. package/src/i18n/lang-fr.ts +43 -43
  52. package/src/i18n/lang-ja.ts +43 -43
  53. package/src/i18n/lang-nl.ts +43 -43
  54. package/src/i18n/lang-pl.ts +43 -43
  55. package/src/i18n/lang-pt-br.ts +43 -43
  56. package/src/i18n/lang-pt-pt.ts +43 -43
  57. package/src/i18n/lang-ru.ts +43 -43
  58. package/src/i18n/lang-uk.ts +43 -43
  59. package/src/i18n/lang-zh-cn.ts +43 -43
  60. package/src/i18n/lang-zh-tw.ts +43 -43
  61. package/src/icons/fileIcons.ts +2197 -2159
  62. package/src/icons/folderIcons.ts +806 -804
  63. package/src/icons/generator/folderGenerator.ts +340 -340
  64. package/src/icons/generator/iconOpacity.ts +111 -111
  65. package/src/icons/generator/iconSaturation.ts +140 -140
  66. package/src/icons/generator/jsonGenerator.ts +191 -191
  67. package/src/icons/languageIcons.ts +141 -141
  68. package/src/models/i18n/translation.ts +41 -41
  69. package/src/models/iconConfiguration.ts +37 -37
  70. package/src/models/icons/iconJsonOptions.ts +21 -21
  71. package/src/models/index.ts +3 -3
  72. package/src/scripts/contributors/index.ts +138 -138
  73. package/src/scripts/helpers/screenshots.ts +32 -32
  74. package/src/scripts/icons/checks/checkIconAvailability.ts +215 -215
  75. package/src/scripts/icons/checks/checkIconConflicts.ts +152 -152
  76. package/src/scripts/icons/checks/checkIconUsage.ts +137 -137
  77. package/src/scripts/icons/checks/index.ts +7 -7
  78. package/src/scripts/preview/index.ts +40 -40
  79. package/src/scripts/preview/preview.ts +163 -163
  80. package/src/test/runTest.ts +26 -26
  81. package/src/test/spec/i18n/i18n.spec.ts +54 -54
  82. package/src/test/spec/icons/fileIcons.spec.ts +250 -250
  83. package/src/test/spec/icons/folderIcons.spec.ts +418 -418
  84. package/src/test/spec/icons/languageIcons.spec.ts +184 -184
package/package.json CHANGED
@@ -1,252 +1,252 @@
1
- {
2
- "name": "material-icon-theme",
3
- "displayName": "Material Icon Theme",
4
- "description": "Material Design Icons for Visual Studio Code",
5
- "version": "4.22.0",
6
- "scripts": {
7
- "build": "npm run compile:dev && npm run generateJson",
8
- "check": "ts-node ./src/scripts/icons/checks",
9
- "compile": "webpack --config ./build/webpack.config.js --mode production",
10
- "compile:dev": "webpack --config ./build/webpack.config.js --mode none",
11
- "compile:watch": "webpack --config ./build/webpack.config.js --mode none --watch",
12
- "compile-web": "webpack --config ./build/web-extension.webpack.config.js",
13
- "watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
14
- "package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js",
15
- "contributors": "ts-node ./src/scripts/contributors/index.ts",
16
- "generateJson": "ts-node ./src/scripts/icons/generateJson.ts",
17
- "lint": "eslint -c .eslintrc.json --ext .ts ./src/**/*.ts",
18
- "postcompile": "npm run generateJson && npm run check",
19
- "pretest": "npm run build && tsc -p ./",
20
- "preview": "ts-node ./src/scripts/preview",
21
- "svgo": "svgo -i icons -o icons -q",
22
- "test": "node ./out/test/runTest.js",
23
- "changelog": "changelog-machine --config changelog.config.json",
24
- "preversion": "npm run contributors && git add images/contributors.png && npm run preview && git add images/fileIcons.png && git add images/folderIcons.png",
25
- "version": "npm run changelog && git add CHANGELOG.md",
26
- "vscode:prepublish": "npm run lint && npm run compile && npm run package-web"
27
- },
28
- "publisher": "PKief",
29
- "author": {
30
- "name": "Philipp Kief",
31
- "email": "philipp.kief@gmx.de",
32
- "url": "https://pkief.github.io"
33
- },
34
- "funding": "https://github.com/sponsors/PKief",
35
- "sponsor": {
36
- "url": "https://github.com/sponsors/PKief"
37
- },
38
- "engines": {
39
- "vscode": "^1.51.0"
40
- },
41
- "homepage": "https://github.com/PKief/vscode-material-icon-theme/blob/main/README.md",
42
- "repository": {
43
- "type": "git",
44
- "url": "https://github.com/PKief/vscode-material-icon-theme.git"
45
- },
46
- "bugs": {
47
- "url": "https://github.com/PKief/vscode-material-icon-theme/issues"
48
- },
49
- "icon": "logo.png",
50
- "galleryBanner": {
51
- "color": "#1e1e1e",
52
- "theme": "dark"
53
- },
54
- "categories": [
55
- "Themes"
56
- ],
57
- "keywords": [
58
- "icons",
59
- "theme",
60
- "material",
61
- "icon-theme",
62
- "customization"
63
- ],
64
- "extensionKind": [
65
- "ui",
66
- "workspace"
67
- ],
68
- "capabilities": {
69
- "untrustedWorkspaces": {
70
- "supported": true
71
- },
72
- "virtualWorkspaces": true
73
- },
74
- "activationEvents": [
75
- "onStartupFinished"
76
- ],
77
- "main": "./dist/extension",
78
- "browser": "./dist/web/extension.js",
79
- "sideEffects": false,
80
- "contributes": {
81
- "iconThemes": [
82
- {
83
- "id": "material-icon-theme",
84
- "label": "Material Icon Theme",
85
- "path": "./dist/material-icons.json",
86
- "_watch": true
87
- }
88
- ],
89
- "commands": [
90
- {
91
- "command": "material-icon-theme.activateIcons",
92
- "title": "%command.activateIcons%",
93
- "enablement": "!isWeb"
94
- },
95
- {
96
- "command": "material-icon-theme.toggleIconPacks",
97
- "title": "%command.toggleIconPacks%",
98
- "enablement": "!isWeb"
99
- },
100
- {
101
- "command": "material-icon-theme.changeFolderTheme",
102
- "title": "%command.changeFolderTheme%",
103
- "enablement": "!isWeb"
104
- },
105
- {
106
- "command": "material-icon-theme.changeFolderColor",
107
- "title": "%command.changeFolderColor%",
108
- "enablement": "!isWeb"
109
- },
110
- {
111
- "command": "material-icon-theme.restoreDefaultConfig",
112
- "title": "%command.restoreDefaultConfig%",
113
- "enablement": "!isWeb"
114
- },
115
- {
116
- "command": "material-icon-theme.toggleExplorerArrows",
117
- "title": "%command.toggleExplorerArrows%",
118
- "enablement": "!isWeb"
119
- },
120
- {
121
- "command": "material-icon-theme.changeOpacity",
122
- "title": "%command.changeOpacity%",
123
- "enablement": "!isWeb"
124
- },
125
- {
126
- "command": "material-icon-theme.toggleGrayscale",
127
- "title": "%command.toggleGrayscale%",
128
- "enablement": "!isWeb"
129
- },
130
- {
131
- "command": "material-icon-theme.changeSaturation",
132
- "title": "%command.changeSaturation%",
133
- "enablement": "!isWeb"
134
- }
135
- ],
136
- "configuration": {
137
- "type": "object",
138
- "title": "%configuration.title%",
139
- "properties": {
140
- "material-icon-theme.activeIconPack": {
141
- "type": "string",
142
- "default": "angular",
143
- "description": "%configuration.activeIconPack%",
144
- "enumDescriptions": [
145
- "%configuration.activeIconPack.angular%",
146
- "%configuration.activeIconPack.angular_ngrx%",
147
- "%configuration.activeIconPack.react%",
148
- "%configuration.activeIconPack.react_redux%",
149
- "%configuration.activeIconPack.vue%",
150
- "%configuration.activeIconPack.vue_vuex%",
151
- "%configuration.activeIconPack.nest%",
152
- "%configuration.activeIconPack.none%"
153
- ],
154
- "enum": [
155
- "angular",
156
- "angular_ngrx",
157
- "react",
158
- "react_redux",
159
- "vue",
160
- "vue_vuex",
161
- "nest",
162
- "none"
163
- ]
164
- },
165
- "material-icon-theme.files.associations": {
166
- "type": "object",
167
- "default": {},
168
- "description": "%configuration.files.associations%"
169
- },
170
- "material-icon-theme.folders.associations": {
171
- "type": "object",
172
- "default": {},
173
- "description": "%configuration.folders.associations%"
174
- },
175
- "material-icon-theme.languages.associations": {
176
- "type": "object",
177
- "default": {},
178
- "description": "%configuration.languages.associations%"
179
- },
180
- "material-icon-theme.folders.theme": {
181
- "type": "string",
182
- "default": "specific",
183
- "description": "%configuration.folders.theme%",
184
- "enumDescriptions": [
185
- "%configuration.folders.theme.specific%",
186
- "%configuration.folders.theme.classic%",
187
- "%configuration.folders.theme.none%"
188
- ],
189
- "enum": [
190
- "specific",
191
- "classic",
192
- "none"
193
- ]
194
- },
195
- "material-icon-theme.folders.color": {
196
- "type": "string",
197
- "default": "#90a4ae",
198
- "pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
199
- "description": "%configuration.folders.color%"
200
- },
201
- "material-icon-theme.opacity": {
202
- "type": "number",
203
- "default": 1,
204
- "minimum": 0,
205
- "maximum": 1,
206
- "description": "%configuration.opacity%"
207
- },
208
- "material-icon-theme.hidesExplorerArrows": {
209
- "type": "boolean",
210
- "default": false,
211
- "description": "%configuration.hidesExplorerArrows%"
212
- },
213
- "material-icon-theme.saturation": {
214
- "type": "number",
215
- "default": 1,
216
- "minimum": 0,
217
- "maximum": 1,
218
- "description": "%configuration.saturation%"
219
- }
220
- }
221
- }
222
- },
223
- "dependencies": {
224
- "lodash.merge": "4.6.2"
225
- },
226
- "devDependencies": {
227
- "@types/glob": "^7.2.0",
228
- "@types/lodash.merge": "^4.6.7",
229
- "@types/mocha": "^9.1.1",
230
- "@types/node": "^17.0.35",
231
- "@types/puppeteer": "^5.4.6",
232
- "@types/vscode": "~1.51.0",
233
- "@typescript-eslint/eslint-plugin": "^5.26.0",
234
- "@typescript-eslint/parser": "^5.26.0",
235
- "changelog-machine": "^1.0.2",
236
- "eslint": "^8.16.0",
237
- "eslint-config-prettier": "^8.5.0",
238
- "eslint-plugin-prettier": "^4.0.0",
239
- "glob": "^8.0.3",
240
- "mocha": "^10.0.0",
241
- "prettier": "^2.6.2",
242
- "puppeteer": "^14.1.1",
243
- "rimraf": "^3.0.2",
244
- "svgo": "^2.8.0",
245
- "ts-loader": "^9.3.0",
246
- "ts-node": "^10.8.0",
247
- "typescript": "^4.7.2",
248
- "vscode-test": "^1.6.1",
249
- "webpack": "^5.71.1",
250
- "webpack-cli": "^4.9.2"
251
- }
252
- }
1
+ {
2
+ "name": "material-icon-theme",
3
+ "displayName": "Material Icon Theme",
4
+ "description": "Material Design Icons for Visual Studio Code",
5
+ "version": "4.23.1",
6
+ "scripts": {
7
+ "build": "npm run compile:dev && npm run generateJson",
8
+ "check": "ts-node ./src/scripts/icons/checks",
9
+ "compile": "webpack --config ./build/webpack.config.js --mode production",
10
+ "compile:dev": "webpack --config ./build/webpack.config.js --mode none",
11
+ "compile:watch": "webpack --config ./build/webpack.config.js --mode none --watch",
12
+ "compile-web": "webpack --config ./build/web-extension.webpack.config.js",
13
+ "watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
14
+ "package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js",
15
+ "contributors": "ts-node ./src/scripts/contributors/index.ts",
16
+ "generateJson": "ts-node ./src/scripts/icons/generateJson.ts",
17
+ "lint": "eslint -c .eslintrc.json --ext .ts ./src/**/*.ts",
18
+ "postcompile": "npm run generateJson && npm run check",
19
+ "pretest": "npm run build && tsc -p ./",
20
+ "preview": "ts-node ./src/scripts/preview",
21
+ "svgo": "svgo -i icons -o icons -q",
22
+ "test": "node ./out/test/runTest.js",
23
+ "changelog": "changelog-machine --config changelog.config.json",
24
+ "preversion": "npm run contributors && git add images/contributors.png && npm run preview && git add images/fileIcons.png && git add images/folderIcons.png",
25
+ "version": "npm run changelog && git add CHANGELOG.md",
26
+ "vscode:prepublish": "npm run lint && npm run compile && npm run package-web"
27
+ },
28
+ "publisher": "PKief",
29
+ "author": {
30
+ "name": "Philipp Kief",
31
+ "email": "philipp.kief@gmx.de",
32
+ "url": "https://pkief.github.io"
33
+ },
34
+ "funding": "https://github.com/sponsors/PKief",
35
+ "sponsor": {
36
+ "url": "https://github.com/sponsors/PKief"
37
+ },
38
+ "engines": {
39
+ "vscode": "^1.51.0"
40
+ },
41
+ "homepage": "https://github.com/PKief/vscode-material-icon-theme/blob/main/README.md",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/PKief/vscode-material-icon-theme.git"
45
+ },
46
+ "bugs": {
47
+ "url": "https://github.com/PKief/vscode-material-icon-theme/issues"
48
+ },
49
+ "icon": "logo.png",
50
+ "galleryBanner": {
51
+ "color": "#1e1e1e",
52
+ "theme": "dark"
53
+ },
54
+ "categories": [
55
+ "Themes"
56
+ ],
57
+ "keywords": [
58
+ "icons",
59
+ "theme",
60
+ "material",
61
+ "icon-theme",
62
+ "customization"
63
+ ],
64
+ "extensionKind": [
65
+ "ui",
66
+ "workspace"
67
+ ],
68
+ "capabilities": {
69
+ "untrustedWorkspaces": {
70
+ "supported": true
71
+ },
72
+ "virtualWorkspaces": true
73
+ },
74
+ "activationEvents": [
75
+ "onStartupFinished"
76
+ ],
77
+ "main": "./dist/extension",
78
+ "browser": "./dist/web/extension.js",
79
+ "sideEffects": false,
80
+ "contributes": {
81
+ "iconThemes": [
82
+ {
83
+ "id": "material-icon-theme",
84
+ "label": "Material Icon Theme",
85
+ "path": "./dist/material-icons.json",
86
+ "_watch": true
87
+ }
88
+ ],
89
+ "commands": [
90
+ {
91
+ "command": "material-icon-theme.activateIcons",
92
+ "title": "%command.activateIcons%",
93
+ "enablement": "!isWeb"
94
+ },
95
+ {
96
+ "command": "material-icon-theme.toggleIconPacks",
97
+ "title": "%command.toggleIconPacks%",
98
+ "enablement": "!isWeb"
99
+ },
100
+ {
101
+ "command": "material-icon-theme.changeFolderTheme",
102
+ "title": "%command.changeFolderTheme%",
103
+ "enablement": "!isWeb"
104
+ },
105
+ {
106
+ "command": "material-icon-theme.changeFolderColor",
107
+ "title": "%command.changeFolderColor%",
108
+ "enablement": "!isWeb"
109
+ },
110
+ {
111
+ "command": "material-icon-theme.restoreDefaultConfig",
112
+ "title": "%command.restoreDefaultConfig%",
113
+ "enablement": "!isWeb"
114
+ },
115
+ {
116
+ "command": "material-icon-theme.toggleExplorerArrows",
117
+ "title": "%command.toggleExplorerArrows%",
118
+ "enablement": "!isWeb"
119
+ },
120
+ {
121
+ "command": "material-icon-theme.changeOpacity",
122
+ "title": "%command.changeOpacity%",
123
+ "enablement": "!isWeb"
124
+ },
125
+ {
126
+ "command": "material-icon-theme.toggleGrayscale",
127
+ "title": "%command.toggleGrayscale%",
128
+ "enablement": "!isWeb"
129
+ },
130
+ {
131
+ "command": "material-icon-theme.changeSaturation",
132
+ "title": "%command.changeSaturation%",
133
+ "enablement": "!isWeb"
134
+ }
135
+ ],
136
+ "configuration": {
137
+ "type": "object",
138
+ "title": "%configuration.title%",
139
+ "properties": {
140
+ "material-icon-theme.activeIconPack": {
141
+ "type": "string",
142
+ "default": "angular",
143
+ "description": "%configuration.activeIconPack%",
144
+ "enumDescriptions": [
145
+ "%configuration.activeIconPack.angular%",
146
+ "%configuration.activeIconPack.angular_ngrx%",
147
+ "%configuration.activeIconPack.react%",
148
+ "%configuration.activeIconPack.react_redux%",
149
+ "%configuration.activeIconPack.vue%",
150
+ "%configuration.activeIconPack.vue_vuex%",
151
+ "%configuration.activeIconPack.nest%",
152
+ "%configuration.activeIconPack.none%"
153
+ ],
154
+ "enum": [
155
+ "angular",
156
+ "angular_ngrx",
157
+ "react",
158
+ "react_redux",
159
+ "vue",
160
+ "vue_vuex",
161
+ "nest",
162
+ "none"
163
+ ]
164
+ },
165
+ "material-icon-theme.files.associations": {
166
+ "type": "object",
167
+ "default": {},
168
+ "description": "%configuration.files.associations%"
169
+ },
170
+ "material-icon-theme.folders.associations": {
171
+ "type": "object",
172
+ "default": {},
173
+ "description": "%configuration.folders.associations%"
174
+ },
175
+ "material-icon-theme.languages.associations": {
176
+ "type": "object",
177
+ "default": {},
178
+ "description": "%configuration.languages.associations%"
179
+ },
180
+ "material-icon-theme.folders.theme": {
181
+ "type": "string",
182
+ "default": "specific",
183
+ "description": "%configuration.folders.theme%",
184
+ "enumDescriptions": [
185
+ "%configuration.folders.theme.specific%",
186
+ "%configuration.folders.theme.classic%",
187
+ "%configuration.folders.theme.none%"
188
+ ],
189
+ "enum": [
190
+ "specific",
191
+ "classic",
192
+ "none"
193
+ ]
194
+ },
195
+ "material-icon-theme.folders.color": {
196
+ "type": "string",
197
+ "default": "#90a4ae",
198
+ "pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
199
+ "description": "%configuration.folders.color%"
200
+ },
201
+ "material-icon-theme.opacity": {
202
+ "type": "number",
203
+ "default": 1,
204
+ "minimum": 0,
205
+ "maximum": 1,
206
+ "description": "%configuration.opacity%"
207
+ },
208
+ "material-icon-theme.hidesExplorerArrows": {
209
+ "type": "boolean",
210
+ "default": false,
211
+ "description": "%configuration.hidesExplorerArrows%"
212
+ },
213
+ "material-icon-theme.saturation": {
214
+ "type": "number",
215
+ "default": 1,
216
+ "minimum": 0,
217
+ "maximum": 1,
218
+ "description": "%configuration.saturation%"
219
+ }
220
+ }
221
+ }
222
+ },
223
+ "dependencies": {
224
+ "lodash.merge": "4.6.2"
225
+ },
226
+ "devDependencies": {
227
+ "@types/glob": "^7.2.0",
228
+ "@types/lodash.merge": "^4.6.7",
229
+ "@types/mocha": "^9.1.1",
230
+ "@types/node": "^17.0.35",
231
+ "@types/puppeteer": "^5.4.6",
232
+ "@types/vscode": "~1.51.0",
233
+ "@typescript-eslint/eslint-plugin": "^5.26.0",
234
+ "@typescript-eslint/parser": "^5.26.0",
235
+ "changelog-machine": "^1.0.2",
236
+ "eslint": "^8.16.0",
237
+ "eslint-config-prettier": "^8.5.0",
238
+ "eslint-plugin-prettier": "^4.0.0",
239
+ "glob": "^8.0.3",
240
+ "mocha": "^10.0.0",
241
+ "prettier": "^2.6.2",
242
+ "puppeteer": "^14.1.1",
243
+ "rimraf": "^3.0.2",
244
+ "svgo": "^2.8.0",
245
+ "ts-loader": "^9.3.0",
246
+ "ts-node": "^10.8.0",
247
+ "typescript": "^4.7.2",
248
+ "vscode-test": "^1.6.1",
249
+ "webpack": "^5.71.1",
250
+ "webpack-cli": "^4.9.2"
251
+ }
252
+ }
@@ -1,32 +1,32 @@
1
- {
2
- "command.activateIcons": "Material Icons: Icon Theme aktivieren",
3
- "command.toggleIconPacks": "Material Icons: Icon Packs konfigurieren",
4
- "command.changeFolderTheme": "Material Icons: Ordner Thema auswählen",
5
- "command.changeFolderColor": "Material Icons: Ordner Farbe ändern",
6
- "command.restoreDefaultConfig": "Material Icons: Standard Einstellungen wiederherstellen",
7
- "command.toggleExplorerArrows": "Material Icons: Explorer Pfeilsymbole umschalten",
8
- "command.changeOpacity": "Material Icons: Deckkraft verändern",
9
- "command.toggleGrayscale": "Material Icons: Graustufen umschalten",
10
- "command.changeSaturation": "Material Icons: Sättigung verändern",
11
- "configuration.title": "Material Icons",
12
- "configuration.files.associations": "Benutzerdefinierte Datei Icons konfigurieren.",
13
- "configuration.folders.associations": "Benutzerdefinierte Ordner Icons konfigurieren.",
14
- "configuration.languages.associations": "Benutzerdefinierte Language Icons konfigurieren.",
15
- "configuration.activeIconPack": "Icon-Pack auswählen, die bestimme Icons aktivieren.",
16
- "configuration.activeIconPack.angular": "Icons für Angular",
17
- "configuration.activeIconPack.angular_ngrx": "Icons für Angular und Ngrx",
18
- "configuration.activeIconPack.react": "Icons für React",
19
- "configuration.activeIconPack.react_redux": "Icons für React und Redux",
20
- "configuration.activeIconPack.vue": "Icons für Vue.",
21
- "configuration.activeIconPack.vue_vuex": "Icons für Vue und Vuex.",
22
- "configuration.activeIconPack.nest": "Icons für NestJS.",
23
- "configuration.activeIconPack.none": "Kein Icon-Pack aktiviert.",
24
- "configuration.folders.theme": "Art der Ordner Icons auswählen.",
25
- "configuration.folders.theme.specific": "Spezifische Ordner Icons auswählen.",
26
- "configuration.folders.theme.classic": "Klassische Ordner Icons auswählen.",
27
- "configuration.folders.theme.none": "Keine Ordner Icons.",
28
- "configuration.folders.color": "Farbe der Ordner Icons verändern.",
29
- "configuration.hidesExplorerArrows": "Pfeile vor den Ordnern deaktivieren.",
30
- "configuration.opacity": "Deckkraft der Icons anpassen.",
31
- "configuration.saturation": "Sättigung der Icons anpassen."
32
- }
1
+ {
2
+ "command.activateIcons": "Material Icons: Icon Theme aktivieren",
3
+ "command.toggleIconPacks": "Material Icons: Icon Packs konfigurieren",
4
+ "command.changeFolderTheme": "Material Icons: Ordner Thema auswählen",
5
+ "command.changeFolderColor": "Material Icons: Ordner Farbe ändern",
6
+ "command.restoreDefaultConfig": "Material Icons: Standard Einstellungen wiederherstellen",
7
+ "command.toggleExplorerArrows": "Material Icons: Explorer Pfeilsymbole umschalten",
8
+ "command.changeOpacity": "Material Icons: Deckkraft verändern",
9
+ "command.toggleGrayscale": "Material Icons: Graustufen umschalten",
10
+ "command.changeSaturation": "Material Icons: Sättigung verändern",
11
+ "configuration.title": "Material Icons",
12
+ "configuration.files.associations": "Benutzerdefinierte Datei Icons konfigurieren.",
13
+ "configuration.folders.associations": "Benutzerdefinierte Ordner Icons konfigurieren.",
14
+ "configuration.languages.associations": "Benutzerdefinierte Language Icons konfigurieren.",
15
+ "configuration.activeIconPack": "Icon-Pack auswählen, die bestimme Icons aktivieren.",
16
+ "configuration.activeIconPack.angular": "Icons für Angular",
17
+ "configuration.activeIconPack.angular_ngrx": "Icons für Angular und Ngrx",
18
+ "configuration.activeIconPack.react": "Icons für React",
19
+ "configuration.activeIconPack.react_redux": "Icons für React und Redux",
20
+ "configuration.activeIconPack.vue": "Icons für Vue.",
21
+ "configuration.activeIconPack.vue_vuex": "Icons für Vue und Vuex.",
22
+ "configuration.activeIconPack.nest": "Icons für NestJS.",
23
+ "configuration.activeIconPack.none": "Kein Icon-Pack aktiviert.",
24
+ "configuration.folders.theme": "Art der Ordner Icons auswählen.",
25
+ "configuration.folders.theme.specific": "Spezifische Ordner Icons auswählen.",
26
+ "configuration.folders.theme.classic": "Klassische Ordner Icons auswählen.",
27
+ "configuration.folders.theme.none": "Keine Ordner Icons.",
28
+ "configuration.folders.color": "Farbe der Ordner Icons verändern.",
29
+ "configuration.hidesExplorerArrows": "Pfeile vor den Ordnern deaktivieren.",
30
+ "configuration.opacity": "Deckkraft der Icons anpassen.",
31
+ "configuration.saturation": "Sättigung der Icons anpassen."
32
+ }
@@ -1,29 +1,29 @@
1
- {
2
- "command.activateIcons": "Material Icon Theme: Activar los iconos",
3
- "command.toggleIconPacks": "Material Icons: Configurar paquetes de iconos",
4
- "command.changeFolderTheme": "Material Icons: Personalizar iconos de carpetas",
5
- "command.changeFolderColor": "Material Icons: Cambiar color de carpeta",
6
- "command.restoreDefaultConfig": "Material Icons: Restaurar la configuración predeterminada",
7
- "command.toggleExplorerArrows": "Material Icons: Deshabilitar flechas delante de carpetas",
8
- "command.changeOpacity": "Material Icons: Cambiar la opacidad",
9
- "configuration.title": "Material Icons",
10
- "configuration.files.associations": "Configurar asociaciones personalizadas de iconos de archivos.",
11
- "configuration.folders.associations": "Configurar asociaciones personalizadas de iconos de carpetas.",
12
- "configuration.languages.associations": "Configurar asociaciones personalizadas de iconos de idioma.",
13
- "configuration.activeIconPack": "Seleccione un paquete de iconos que permita iconos específicos.",
14
- "configuration.activeIconPack.angular": "Iconos de Angular.",
15
- "configuration.activeIconPack.angular_ngrx": "Iconos de Angular y ngrx.",
16
- "configuration.activeIconPack.react": "Iconos de React.",
17
- "configuration.activeIconPack.react_redux": "Iconos de React y Redux.",
18
- "configuration.activeIconPack.vue": "Iconos de Vue.",
19
- "configuration.activeIconPack.vue_vuex": "Iconos de Vue y Vuex.",
20
- "configuration.activeIconPack.nest": "Iconos de NestJS.",
21
- "configuration.activeIconPack.none": "No hay ningún paquete de iconos activo.",
22
- "configuration.folders.theme": "Seleccione el tipo de iconos de carpeta.",
23
- "configuration.folders.theme.specific": "Seleccione iconos de carpeta específicos.",
24
- "configuration.folders.theme.classic": "Seleccione iconos de carpetas clásicas.",
25
- "configuration.folders.theme.none": "Sin iconos de carpeta.",
26
- "configuration.folders.color": "Cambia el color de las carpetas.",
27
- "configuration.hidesExplorerArrows": "Deshabilitar flechas delante de carpetas.",
28
- "configuration.opacity": "Cambia la opacidad de los iconos."
29
- }
1
+ {
2
+ "command.activateIcons": "Material Icon Theme: Activar los iconos",
3
+ "command.toggleIconPacks": "Material Icons: Configurar paquetes de iconos",
4
+ "command.changeFolderTheme": "Material Icons: Personalizar iconos de carpetas",
5
+ "command.changeFolderColor": "Material Icons: Cambiar color de carpeta",
6
+ "command.restoreDefaultConfig": "Material Icons: Restaurar la configuración predeterminada",
7
+ "command.toggleExplorerArrows": "Material Icons: Deshabilitar flechas delante de carpetas",
8
+ "command.changeOpacity": "Material Icons: Cambiar la opacidad",
9
+ "configuration.title": "Material Icons",
10
+ "configuration.files.associations": "Configurar asociaciones personalizadas de iconos de archivos.",
11
+ "configuration.folders.associations": "Configurar asociaciones personalizadas de iconos de carpetas.",
12
+ "configuration.languages.associations": "Configurar asociaciones personalizadas de iconos de idioma.",
13
+ "configuration.activeIconPack": "Seleccione un paquete de iconos que permita iconos específicos.",
14
+ "configuration.activeIconPack.angular": "Iconos de Angular.",
15
+ "configuration.activeIconPack.angular_ngrx": "Iconos de Angular y ngrx.",
16
+ "configuration.activeIconPack.react": "Iconos de React.",
17
+ "configuration.activeIconPack.react_redux": "Iconos de React y Redux.",
18
+ "configuration.activeIconPack.vue": "Iconos de Vue.",
19
+ "configuration.activeIconPack.vue_vuex": "Iconos de Vue y Vuex.",
20
+ "configuration.activeIconPack.nest": "Iconos de NestJS.",
21
+ "configuration.activeIconPack.none": "No hay ningún paquete de iconos activo.",
22
+ "configuration.folders.theme": "Seleccione el tipo de iconos de carpeta.",
23
+ "configuration.folders.theme.specific": "Seleccione iconos de carpeta específicos.",
24
+ "configuration.folders.theme.classic": "Seleccione iconos de carpetas clásicas.",
25
+ "configuration.folders.theme.none": "Sin iconos de carpeta.",
26
+ "configuration.folders.color": "Cambia el color de las carpetas.",
27
+ "configuration.hidesExplorerArrows": "Deshabilitar flechas delante de carpetas.",
28
+ "configuration.opacity": "Cambia la opacidad de los iconos."
29
+ }