This commit is contained in:
Benjamin Pasero 2016-09-29 08:36:34 +02:00
parent 208ae4c062
commit 9677bba9cb
2 changed files with 5 additions and 5 deletions

View file

@ -31,7 +31,7 @@ export const SCOPE_PREFIX = ':';
export class GotoSymbolAction extends QuickOpenAction {
public static ID = 'workbench.action.gotoSymbol';
public static LABEL = nls.localize('gotoSymbol', "Go to Symbol...");
public static LABEL = nls.localize('gotoSymbol', "Go to Symbol in File...");
constructor(actionId: string, actionLabel: string, @IQuickOpenService quickOpenService: IQuickOpenService) {
super(actionId, actionLabel, GOTO_SYMBOL_PREFIX, quickOpenService);

View file

@ -93,7 +93,7 @@ class ExplorerViewerActionContributor extends ActionBarContributor {
}
const ACTION_ID = 'workbench.action.showAllSymbols';
const ACTION_LABEL = nls.localize('showTriggerActions', "Show All Symbols");
const ACTION_LABEL = nls.localize('showTriggerActions', "Go to Symbol in Workspace...");
const ALL_SYMBOLS_PREFIX = '#';
class ShowAllSymbolsAction extends QuickOpenAction {
@ -141,7 +141,7 @@ actionBarRegistry.registerActionBarContributor(Scope.VIEWER, ExplorerViewerActio
'vs/workbench/parts/search/browser/openAnythingHandler',
'OpenAnythingHandler',
'',
nls.localize('openAnythingHandlerDescription', "Open Files by Name")
nls.localize('openAnythingHandlerDescription', "Go to File")
)
);
@ -154,7 +154,7 @@ actionBarRegistry.registerActionBarContributor(Scope.VIEWER, ExplorerViewerActio
{
prefix: ALL_SYMBOLS_PREFIX,
needsEditor: false,
description: nls.localize('openSymbolDescriptionNormal', "Open Any Symbol By Name")
description: nls.localize('openSymbolDescriptionNormal', "Go to Symbol in Workspace")
}
]
)
@ -164,7 +164,7 @@ actionBarRegistry.registerActionBarContributor(Scope.VIEWER, ExplorerViewerActio
const registry = <IWorkbenchActionRegistry>Registry.as(ActionExtensions.WorkbenchActions);
registry.registerWorkbenchAction(new SyncActionDescriptor(ShowAllSymbolsAction, ACTION_ID, ACTION_LABEL, {
primary: KeyMod.CtrlCmd | KeyCode.KEY_T
}), 'Show All Symbols');
}), 'Go to Symbol in Workspace...');
registry.registerWorkbenchAction(new SyncActionDescriptor(searchActions.ShowNextSearchTermAction, searchActions.ShowNextSearchTermAction.ID, searchActions.ShowNextSearchTermAction.LABEL, ShowNextFindTermKeybinding, ContextKeyExpr.and(Constants.SearchViewletVisibleKey, Constants.SearchInputBoxFocussedKey)), '');