Update QuickOpen label in watermark (#12716)

This commit is contained in:
Christof Marti
2016-09-28 11:34:48 -07:00
parent 180a5c6c2d
commit f1568a90b9

View File

@@ -16,7 +16,7 @@ const entries = [
ids: ['workbench.action.showCommands']
},
{
text: nls.localize('watermark.quickOpen', "Open File in Folder"),
text: nls.localize('watermark.quickOpen', "Go to File"),
ids: ['workbench.action.quickOpen']
},
{
@@ -51,7 +51,7 @@ export function create(container: Builder, keybindingService: IKeybindingService
.map(id => keybindingService.lookupKeybindings(id).slice(0, 1)
.map(k => keybindingService.getLabelFor(k))
.join('') || UNBOUND)
.join(' or ')
.join(' / ')
));
}));
}