Skip to content

Commit 274adad

Browse files
committed
Addressed review comments
1 parent dfcc337 commit 274adad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

vscode/l10n/bundle.l10n.en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"jdk.extension.fileSelector.label.testFilesOrSourceFiles": "Test files or source files associated to each other",
4747
"jdk.extension.fileSelector.label.noFileSelected": "No file selected",
4848
"jdk.extension.fileSelector.label.noTestFound": "No Test or Tested class found",
49-
"jdk.extension.cache.message.confirmToDeleteCache": "Are you sure you want to delete cache for this workspace?",
49+
"jdk.extension.cache.message.confirmToDeleteCache": "Are you sure you want to delete cache for this workspace and reload the window ?",
5050
"jdk.extension.cache.label.confirmation.yes":"Yes",
5151
"jdk.extension.cache.label.confirmation.cancel":"Cancel",
5252
"jdk.extension.cache.message.cacheCleared":"Cache cleared successfully for this workspace",

vscode/src/commands/cache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const deleteCache = async () => {
3434
if (userDir && fs.existsSync(userDir)) {
3535
const yes = l10n.value("jdk.extension.cache.label.confirmation.yes")
3636
const cancel = l10n.value("jdk.extension.cache.label.confirmation.cancel")
37-
const confirmation = await window.showInformationMessage('Are you sure you want to delete cache for this workspace and reload the window ?',
37+
const confirmation = await window.showInformationMessage(l10n.value("jdk.extension.cache.message.confirmToDeleteCache"),
3838
yes, cancel);
3939
if (confirmation === yes) {
4040
const reloadWindowActionLabel = l10n.value("jdk.extension.cache.label.reloadWindow");

vscode/src/commands/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const extCommands = {
4949
selectEditorProjs: appendPrefixToCommand('select.editor.projects'),
5050
attachDebugger: appendPrefixToCommand("java.attachDebugger.connector"),
5151
loadWorkspaceTests: appendPrefixToCommand("load.workspace.tests"),
52-
projectDeleteEntry: "javals.foundProjects.deleteEntry"
52+
projectDeleteEntry: appendPrefixToCommand("foundProjects.deleteEntry")
5353
}
5454

5555
export const builtInCommands = {

0 commit comments

Comments
 (0)