60 строки
5.9 KiB
JSON
60 строки
5.9 KiB
JSON
{
|
|
"description": "Manage Java projects in Visual Studio Code",
|
|
"contributes.commands.java.project.create": "Create Java Project...",
|
|
"contributes.commands.java.project.addLibraries": "Add Jar Libraries to Project Classpath...",
|
|
"contributes.commands.java.project.addLibraryFolders": "Add Library Folders to Project Classpath...",
|
|
"contributes.commands.java.project.removeLibrary": "Remove from Project Classpath",
|
|
"contributes.commands.java.view.package.refresh": "Refresh",
|
|
"contributes.commands.java.project.build.workspace": "Rebuild All",
|
|
"contributes.commands.java.project.clean.workspace": "Clean Workspace",
|
|
"contributes.commands.java.project.rebuild": "Rebuild Project",
|
|
"contributes.commands.java.project.update": "Reload Project",
|
|
"contributes.commands.java.project.reloadProjectFromActiveFile": "Reload Java Project",
|
|
"contributes.commands.java.view.package.revealInProjectExplorer": "Reveal in Java Project Explorer",
|
|
"contributes.commands.java.view.package.changeToFlatPackageView":"Flat View",
|
|
"contributes.commands.java.view.package.changeToHierarchicalPackageView":"Hierarchical View",
|
|
"contributes.commands.java.view.package.linkWithFolderExplorer":"Synchronize with Editor",
|
|
"contributes.commands.java.view.package.unlinkWithFolderExplorer":"Desynchronize with Editor",
|
|
"contributes.commands.java.project.explorer.showNonJavaResources": "Show Non-Java Resources",
|
|
"contributes.commands.java.project.explorer.hideNonJavaResources": "Hide Non-Java Resources",
|
|
"contributes.commands.java.view.package.revealFileInOS": "Reveal in Explorer",
|
|
"contributes.commands.java.view.package.exportJar": "Export Jar...",
|
|
"contributes.commands.java.view.package.copyFilePath": "Copy Path",
|
|
"contributes.commands.java.view.package.copyRelativeFilePath": "Copy Relative Path",
|
|
"contributes.commands.java.view.package.new": "New...",
|
|
"contributes.commands.java.view.package.newJavaClass": "Java Class",
|
|
"contributes.commands.java.view.package.newPackage": "Package",
|
|
"contributes.commands.java.view.package.newFile": "File",
|
|
"contributes.commands.java.view.package.newFolder": "Folder",
|
|
"contributes.commands.java.view.package.renameFile": "Rename",
|
|
"contributes.commands.java.view.package.moveFileToTrash": "Delete",
|
|
"contributes.commands.java.view.package.deleteFilePermanently": "Delete Permanently",
|
|
"contributes.submenus.javaProject.new": "New",
|
|
"contributes.commands.java.view.menus.file.newJavaClass": "New Java Class",
|
|
"configuration.java.dependency.showMembers": "Show the members in the explorer",
|
|
"configuration.java.dependency.syncWithFolderExplorer": "Synchronize Java Projects explorer selection with folder explorer",
|
|
"configuration.java.dependency.autoRefresh": "Synchronize Java Projects explorer with changes",
|
|
"configuration.java.dependency.refreshDelay": "The delay time (ms) the auto refresh is invoked when changes are detected",
|
|
"configuration.java.dependency.packagePresentation": "Package presentation mode: flat or hierarchical",
|
|
"configuration.java.project.explorer.showNonJavaResources": "When enabled, the explorer shows non-Java resources.",
|
|
"configuration.java.project.exportJar.targetPath.customization": "The output path of the exported jar. Leave it empty if you want to manually pick the output location.",
|
|
"configuration.java.project.exportJar.targetPath.workspaceFolder": "Export the jar file into the workspace folder. Its name is the same as the folder's.",
|
|
"configuration.java.project.exportJar.targetPath.select": "Select output location manually when exporting the jar file.",
|
|
"taskDefinitions.java.project.exportJar.label": "The label of export jar task.",
|
|
"taskDefinitions.java.project.exportJar.elements": "The content list of the exported jar.",
|
|
"taskDefinitions.java.project.exportJar.mainClass": "The main class in the manifest of the exported jar.",
|
|
"taskDefinitions.java.project.exportJar.compileOutput": "The folders containing output class files in the runtime scope.",
|
|
"taskDefinitions.java.project.exportJar.testCompileOutput": "The folders containing output class files in the test scope.",
|
|
"taskDefinitions.java.project.exportJar.dependencies": "The artifact dependencies in the runtime scope.",
|
|
"taskDefinitions.java.project.exportJar.testDependencies": "The artifact dependencies in the test scope.",
|
|
"taskDefinitions.java.project.build.path": "The project root paths that will be built. Both absolute path and relative path to the workspace folder are supported.",
|
|
"taskDefinitions.java.project.build.path.workspace": "All the projects in workspace.",
|
|
"taskDefinitions.java.project.build.path.exclude": "The path after '!' will be excluded from the paths to be built.",
|
|
"taskDefinitions.java.project.build.isFullBuild": "Whether to execute a clean build or not.",
|
|
"viewsWelcome.workbench.createNewJavaProject": "You can also [open a Java project folder](command:_java.project.open), or create a new Java project by clicking the button below.\n[Create Java Project](command:java.project.create)",
|
|
"viewsWelcome.workbench.noJavaProject": "No Java projects found in the current workspace. You can [open a Java project folder](command:_java.project.open), or create a new Java project by clicking the button below.\n[Create Java Project](command:java.project.create)",
|
|
"viewsWelcome.workbench.importFailed": "Oops, something went wrong when opening Java projects. Please use the following action for troubleshooting:\n[Open Problems View](command:workbench.panel.markers.view.focus)",
|
|
"viewsWelcome.workbench.inLightWeightMode": "To view the projects, you can import the projects into workspace.\n[Import Projects](command:java.server.mode.switch?%5B%22Standard%22,true%5D)",
|
|
"viewsWelcome.workbench.installLanguageSupport": "The Java Projects explorer requires [Extension Pack for Java](command:extension.open?%5B%22vscjava.vscode-java-pack%22%5D) to provide full features.\n[Install](command:java.project.installExtension?%5B%22vscjava.vscode-java-pack%22%5D)"
|
|
}
|