|
1 | 1 | {
|
2 | 2 | "name": "vscode-java-dependency",
|
3 | 3 | "displayName": "Java Dependency Viewer",
|
4 |
| - "description": "Manage Java Dependencies in VSCode", |
| 4 | + "description": "%description%", |
5 | 5 | "version": "0.2.0",
|
6 | 6 | "publisher": "vscjava",
|
7 | 7 | "preview": true,
|
|
36 | 36 | "commands": [
|
37 | 37 | {
|
38 | 38 | "command": "java.project.create",
|
39 |
| - "title": "Create Java Project", |
| 39 | + "title": "%contributes.commands.java.project.create%", |
40 | 40 | "category": "Java"
|
41 | 41 | },
|
42 | 42 | {
|
43 | 43 | "command": "java.view.package.refresh",
|
44 |
| - "title": "Refresh", |
| 44 | + "title": "%contributes.commands.java.view.package.refresh%", |
45 | 45 | "category": "Java",
|
46 | 46 | "icon": {
|
47 | 47 | "dark": "images/dark/icon-refresh.svg",
|
|
50 | 50 | },
|
51 | 51 | {
|
52 | 52 | "command": "java.view.package.changeRepresentation",
|
53 |
| - "title": "Change package representation", |
| 53 | + "title": "%contributes.commands.java.view.package.changeRepresentation%", |
54 | 54 | "category": "Java",
|
55 | 55 | "icon": {
|
56 | 56 | "dark": "images/dark/package.svg",
|
|
60 | 60 | ],
|
61 | 61 | "configuration": {
|
62 | 62 | "type": "object",
|
63 |
| - "title": "Java Dependency Configuration", |
| 63 | + "title": "%configuration.java.dependency.title%", |
64 | 64 | "properties": {
|
65 | 65 | "java.dependency.showOutline": {
|
66 | 66 | "type": "boolean",
|
67 |
| - "description": "Enable show outline in the Java Dependency explorer", |
| 67 | + "description": "%configuration.java.dependency.showOutline%", |
68 | 68 | "default": true
|
69 | 69 | },
|
70 | 70 | "java.dependency.syncWithFolderExplorer": {
|
71 | 71 | "type": "boolean",
|
72 |
| - "description": "Synchronize dependency viewer selection with folder explorer", |
| 72 | + "description": "%configuration.java.dependency.syncWithFolderExplorer%", |
73 | 73 | "default": true
|
74 | 74 | },
|
75 | 75 | "java.dependency.packagePresentation": {
|
|
78 | 78 | "flat",
|
79 | 79 | "hierarchical"
|
80 | 80 | ],
|
81 |
| - "description": "Package presentation mode: flat or hierarchical", |
| 81 | + "description": "%configuration.java.dependency.packagePresentation%", |
82 | 82 | "default": "flat"
|
83 | 83 | }
|
84 | 84 | }
|
|
0 commit comments