Skip to content

Commit 4216e61

Browse files
authored
New File.. polish (microsoft#159570)
1 parent 43a909c commit 4216e61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/workbench/contrib/welcomeViews/common/newFile.contribution.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ class NewFileTemplatesManager extends Disposable {
101101

102102
const disposables = new DisposableStore();
103103
const qp = this.quickInputService.createQuickPick();
104-
qp.title = localize('selectFileType', "Select File Type...");
105-
qp.placeholder = qp.title;
104+
qp.title = localize('newFileTitle', "New File...");
105+
qp.placeholder = localize('newFilePlaceholder', "Select File Type or Enter File Name...");
106106
qp.sortByLabel = false;
107107
qp.matchOnDetail = true;
108108
qp.matchOnDescription = true;
@@ -172,7 +172,7 @@ class NewFileTemplatesManager extends Disposable {
172172
const currentTextEntry: NewFileItem = {
173173
commandID: 'workbench.action.files.newFile',
174174
commandArgs: { languageId: undefined, viewType: undefined, fileName: val },
175-
title: localize('miNewFileWithName', "New File ({0})", val),
175+
title: localize('miNewFileWithName', "Create New File ({0})", val),
176176
group: 'file',
177177
from: builtInSource,
178178
};

0 commit comments

Comments
 (0)