We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 875855a commit 11b3d6bCopy full SHA for 11b3d6b
src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.ts
@@ -92,7 +92,10 @@ export class MultiDiffEditorInput extends EditorInput implements ILanguageSuppor
92
/** @description Updates name */
93
const resources = this._resources.read(reader) ?? [];
94
const label = this.label ?? localize('name', "Multi Diff Editor");
95
- this._name = label + localize('files', " ({0} files)", resources?.length ?? 0);
+ this._name = label + localize({
96
+ key: 'files',
97
+ comment: ['the number of files being shown']
98
+ }, " ({0} files)", resources?.length ?? 0);
99
this._onDidChangeLabel.fire();
100
}));
101
}
0 commit comments