Skip to content

Commit 63ee5b1

Browse files
authored
Use plural form for reload projects command title (#2612)
* Use plural form for reload projects command title Signed-off-by: sheche <[email protected]>
1 parent 6d8884d commit 63ee5b1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Available commands
9494
==========================
9595
The following commands are available:
9696
- `Switch to Standard Mode`: switches the Java Language Server to `Standard` mode. This command is only available when the Java Language Server is in `LightWeight` mode.
97-
- `Java: Reload Project` (`Shift+Alt+U`): It forces project configuration / classpath updates (eg. dependency changes or Java compilation level), according to the project build descriptor.
97+
- `Java: Reload Projects` (`Shift+Alt+U`): It forces project configuration / classpath updates (eg. dependency changes or Java compilation level), according to the project build descriptor.
9898
- `Java: Import Java Projects into Workspace`: detects and imports all the Java projects into the Java Language Server workspace.
9999
- `Java: Open Java Language Server Log File`: opens the Java Language Server log file, useful for troubleshooting problems.
100100
- `Java: Open Java Extension Log File`: opens the Java extension log file, useful for troubleshooting problems.

document/_java.notCoveredExecution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Some Maven projects use 3rd party Maven plugins to generate sources or resources
4242

4343
For example, add [a processing instruction in the pom.xml](https://www.eclipse.org/m2e/documentation/release-notes-17.html#new-syntax-for-specifying-lifecycle-mapping-metadata) like `<?m2e execute onConfiguration?>` to execute it on every project configuration update.
4444

45-
You can use quick fixes to generate the inline lifecycle mapping in pom.xml, or manually configure it in pom.xml. If it's yourself that manually configure it, you have to let VS Code update the project configuration as well. The command is `"Java: Reload Project"`.
45+
You can use quick fixes to generate the inline lifecycle mapping in pom.xml, or manually configure it in pom.xml. If it's yourself that manually configure it, you have to let VS Code update the project configuration as well. The command is `"Java: Reload Projects"`.
4646

4747
```xml
4848
<project>

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"java.server.mode.switch": "Switch to Standard Mode",
3-
"java.projectConfiguration.update": "Reload Project",
3+
"java.projectConfiguration.update": "Reload Projects",
44
"java.project.import": "Import Java Projects into Workspace",
55
"java.open.serverLog": "Open Java Language Server Log File",
66
"java.open.serverStdoutLog": "Open Java Language Server Output Log File",

0 commit comments

Comments
 (0)