Skip to content

Commit f48cb61

Browse files
committed
diffReview: clarify nls strings microsoft#98584
1 parent ff4c795 commit f48cb61

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/editor/browser/widget/diffReview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ export class DiffReview extends Disposable {
752752
switch (type) {
753753
case DiffEntryType.Equal:
754754
if (originalLine === modifiedLine) {
755-
ariaLabel = nls.localize('unchangedLine', "{0} unchanged line {1}", lineContent, originalLine);
755+
ariaLabel = nls.localize({ key: 'unchangedLine', comment: ['The placholders are contents of the line and should not be translated.'] }, "{0} unchanged line {1}", lineContent, originalLine);
756756
} else {
757757
ariaLabel = nls.localize('equalLine', "{0} original line {1} modified line {2}", lineContent, originalLine, modifiedLine);
758758
}

0 commit comments

Comments
 (0)