Skip to content

Commit 47bb754

Browse files
committed
remove localized custom view string
1 parent 4eec0cf commit 47bb754

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/vs/workbench/services/views/browser/viewDescriptorService.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import { firstIndex } from 'vs/base/common/arrays';
1717
import { IStorageKeysSyncRegistryService } from 'vs/platform/userDataSync/common/storageKeys';
1818
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
1919
import { generateUuid } from 'vs/base/common/uuid';
20-
import { localize } from 'vs/nls';
2120

2221
class CounterSet<T> implements IReadableSet<T> {
2322

@@ -494,7 +493,7 @@ export class ViewDescriptorService extends Disposable implements IViewDescriptor
494493
return this.viewContainersRegistry.registerViewContainer({
495494
id,
496495
ctorDescriptor: new SyncDescriptor(ViewPaneContainer, [id, `${id}.state`, { mergeViewWithContainerWhenSingleView: true, donotShowContainerTitleWhenMergedWithContainer: true }]),
497-
name: localize('generatedContainerName', "Custom Views"),
496+
name: 'Custom Views', // we don't want to see this, so no need to localize
498497
icon: location === ViewContainerLocation.Sidebar ? 'codicon-window' : undefined,
499498
hideIfEmpty: true
500499
}, location);

0 commit comments

Comments
 (0)