diffReview: clarify nls strings #98584

This commit is contained in:
isidor 2020-06-02 12:11:12 +02:00
parent ff4c7956ac
commit f48cb619ba

View file

@ -752,7 +752,7 @@ export class DiffReview extends Disposable {
switch (type) {
case DiffEntryType.Equal:
if (originalLine === modifiedLine) {
ariaLabel = nls.localize('unchangedLine', "{0} unchanged line {1}", lineContent, originalLine);
ariaLabel = nls.localize({ key: 'unchangedLine', comment: ['The placholders are contents of the line and should not be translated.'] }, "{0} unchanged line {1}", lineContent, originalLine);
} else {
ariaLabel = nls.localize('equalLine', "{0} original line {1} modified line {2}", lineContent, originalLine, modifiedLine);
}