Skip to content

Commit 601e3e0

Browse files
authored
Merge pull request microsoft#81572 from shifuchen98/typo
Fix typo in batch replacement pop-up
2 parents f2d4172 + 7e18b80 commit 601e3e0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/vs/workbench/contrib/search/browser/searchView.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ export class SearchView extends ViewletPanel {
554554
return nls.localize('replaceAll.occurrence.file.message', "Replaced {0} occurrence across {1} file with '{2}'.", occurrences, fileCount, replaceValue);
555555
}
556556

557-
return nls.localize('removeAll.occurrence.file.message', "Replaced {0} occurrence across {1} file'.", occurrences, fileCount);
557+
return nls.localize('removeAll.occurrence.file.message', "Replaced {0} occurrence across {1} file.", occurrences, fileCount);
558558
}
559559

560560
if (replaceValue) {
@@ -569,7 +569,7 @@ export class SearchView extends ViewletPanel {
569569
return nls.localize('replaceAll.occurrences.file.message', "Replaced {0} occurrences across {1} file with '{2}'.", occurrences, fileCount, replaceValue);
570570
}
571571

572-
return nls.localize('removeAll.occurrences.file.message', "Replaced {0} occurrences across {1} file'.", occurrences, fileCount);
572+
return nls.localize('removeAll.occurrences.file.message', "Replaced {0} occurrences across {1} file.", occurrences, fileCount);
573573
}
574574

575575
if (replaceValue) {
@@ -586,7 +586,7 @@ export class SearchView extends ViewletPanel {
586586
return nls.localize('removeAll.occurrence.file.confirmation.message', "Replace {0} occurrence across {1} file with '{2}'?", occurrences, fileCount, replaceValue);
587587
}
588588

589-
return nls.localize('replaceAll.occurrence.file.confirmation.message', "Replace {0} occurrence across {1} file'?", occurrences, fileCount);
589+
return nls.localize('replaceAll.occurrence.file.confirmation.message', "Replace {0} occurrence across {1} file?", occurrences, fileCount);
590590
}
591591

592592
if (replaceValue) {
@@ -601,7 +601,7 @@ export class SearchView extends ViewletPanel {
601601
return nls.localize('removeAll.occurrences.file.confirmation.message', "Replace {0} occurrences across {1} file with '{2}'?", occurrences, fileCount, replaceValue);
602602
}
603603

604-
return nls.localize('replaceAll.occurrences.file.confirmation.message', "Replace {0} occurrences across {1} file'?", occurrences, fileCount);
604+
return nls.localize('replaceAll.occurrences.file.confirmation.message', "Replace {0} occurrences across {1} file?", occurrences, fileCount);
605605
}
606606

607607
if (replaceValue) {

0 commit comments

Comments
 (0)