Skip to content

Commit 3ceb796

Browse files
committed
fine tune titles
1 parent ac5492c commit 3ceb796

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/vs/workbench/contrib/userDataSync/browser/userDataSyncHistory.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class UserDataSyncHistoryViewContribution implements IWorkbenchContributi
3737

3838
private registerView(): void {
3939
const that = this;
40-
const name = localize('title', "Sync History");
40+
const name = localize('title', "Sync History (Remote)");
4141
const viewEnablementContext = CONTEXT_SHOW_USER_DATA_SYNC_HISTORY_VIEW.bindTo(this.contextKeyService);
4242
const treeView = this.instantiationService.createInstance(TreeView, this.viewId, name);
4343
treeView.showCollapseAllAction = true;
@@ -64,8 +64,8 @@ export class UserDataSyncHistoryViewContribution implements IWorkbenchContributi
6464
registerAction2(class extends Action2 {
6565
constructor() {
6666
super({
67-
id: 'workbench.actions.showSyncHistory',
68-
title: { value: localize('workbench.action.showRemoteUserDatraView', "Show Sync History"), original: `Show Sync History` },
67+
id: 'workbench.actions.showSyncRemoteHistoryView',
68+
title: { value: localize('workbench.action.showSyncRemoteHistory', "Show History (Remote)"), original: `Show History (Remote)` },
6969
category: { value: localize('sync', "Sync"), original: `Sync` },
7070
menu: {
7171
id: MenuId.CommandPalette,
@@ -181,7 +181,6 @@ class UserDataSyncHistoryViewDataProvider implements ITreeViewDataProvider {
181181
collapsibleState: TreeItemCollapsibleState.None,
182182
label: { label: label(new Date(created)) },
183183
description: fromNow(created, true),
184-
tooltip: ref,
185184
command: { id: 'workbench.actions.sync.resolveResourceRef', title: '', arguments: [<TreeViewItemHandleArg>{ $treeItemHandle: handle, $treeViewId: '' }] },
186185
themeIcon: FileThemeIcon,
187186
contextValue: `syncref-${resourceKey}`

0 commit comments

Comments
 (0)