You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/search/browser/searchView.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -554,7 +554,7 @@ export class SearchView extends ViewletPanel {
554
554
returnnls.localize('replaceAll.occurrence.file.message',"Replaced {0} occurrence across {1} file with '{2}'.",occurrences,fileCount,replaceValue);
555
555
}
556
556
557
-
returnnls.localize('removeAll.occurrence.file.message',"Replaced {0} occurrence across {1} file'.",occurrences,fileCount);
557
+
returnnls.localize('removeAll.occurrence.file.message',"Replaced {0} occurrence across {1} file.",occurrences,fileCount);
558
558
}
559
559
560
560
if(replaceValue){
@@ -569,7 +569,7 @@ export class SearchView extends ViewletPanel {
569
569
returnnls.localize('replaceAll.occurrences.file.message',"Replaced {0} occurrences across {1} file with '{2}'.",occurrences,fileCount,replaceValue);
570
570
}
571
571
572
-
returnnls.localize('removeAll.occurrences.file.message',"Replaced {0} occurrences across {1} file'.",occurrences,fileCount);
572
+
returnnls.localize('removeAll.occurrences.file.message',"Replaced {0} occurrences across {1} file.",occurrences,fileCount);
573
573
}
574
574
575
575
if(replaceValue){
@@ -586,7 +586,7 @@ export class SearchView extends ViewletPanel {
586
586
returnnls.localize('removeAll.occurrence.file.confirmation.message',"Replace {0} occurrence across {1} file with '{2}'?",occurrences,fileCount,replaceValue);
587
587
}
588
588
589
-
returnnls.localize('replaceAll.occurrence.file.confirmation.message',"Replace {0} occurrence across {1} file'?",occurrences,fileCount);
589
+
returnnls.localize('replaceAll.occurrence.file.confirmation.message',"Replace {0} occurrence across {1} file?",occurrences,fileCount);
590
590
}
591
591
592
592
if(replaceValue){
@@ -601,7 +601,7 @@ export class SearchView extends ViewletPanel {
601
601
returnnls.localize('removeAll.occurrences.file.confirmation.message',"Replace {0} occurrences across {1} file with '{2}'?",occurrences,fileCount,replaceValue);
602
602
}
603
603
604
-
returnnls.localize('replaceAll.occurrences.file.confirmation.message',"Replace {0} occurrences across {1} file'?",occurrences,fileCount);
604
+
returnnls.localize('replaceAll.occurrences.file.confirmation.message',"Replace {0} occurrences across {1} file?",occurrences,fileCount);
0 commit comments