Skip to content

Commit 11b3d6b

Browse files
committed
1 parent 875855a commit 11b3d6b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,10 @@ export class MultiDiffEditorInput extends EditorInput implements ILanguageSuppor
9292
/** @description Updates name */
9393
const resources = this._resources.read(reader) ?? [];
9494
const label = this.label ?? localize('name', "Multi Diff Editor");
95-
this._name = label + localize('files', " ({0} files)", resources?.length ?? 0);
95+
this._name = label + localize({
96+
key: 'files',
97+
comment: ['the number of files being shown']
98+
}, " ({0} files)", resources?.length ?? 0);
9699
this._onDidChangeLabel.fire();
97100
}));
98101
}

0 commit comments

Comments
 (0)