mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-30 21:41:46 +01:00
Fix typo in batch replacement pop-up
This commit is contained in:
@@ -554,7 +554,7 @@ export class SearchView extends ViewletPanel {
|
||||
return nls.localize('replaceAll.occurrence.file.message', "Replaced {0} occurrence across {1} file with '{2}'.", occurrences, fileCount, replaceValue);
|
||||
}
|
||||
|
||||
return nls.localize('removeAll.occurrence.file.message', "Replaced {0} occurrence across {1} file'.", occurrences, fileCount);
|
||||
return nls.localize('removeAll.occurrence.file.message', "Replaced {0} occurrence across {1} file.", occurrences, fileCount);
|
||||
}
|
||||
|
||||
if (replaceValue) {
|
||||
@@ -569,7 +569,7 @@ export class SearchView extends ViewletPanel {
|
||||
return nls.localize('replaceAll.occurrences.file.message', "Replaced {0} occurrences across {1} file with '{2}'.", occurrences, fileCount, replaceValue);
|
||||
}
|
||||
|
||||
return nls.localize('removeAll.occurrences.file.message', "Replaced {0} occurrences across {1} file'.", occurrences, fileCount);
|
||||
return nls.localize('removeAll.occurrences.file.message', "Replaced {0} occurrences across {1} file.", occurrences, fileCount);
|
||||
}
|
||||
|
||||
if (replaceValue) {
|
||||
@@ -586,7 +586,7 @@ export class SearchView extends ViewletPanel {
|
||||
return nls.localize('removeAll.occurrence.file.confirmation.message', "Replace {0} occurrence across {1} file with '{2}'?", occurrences, fileCount, replaceValue);
|
||||
}
|
||||
|
||||
return nls.localize('replaceAll.occurrence.file.confirmation.message', "Replace {0} occurrence across {1} file'?", occurrences, fileCount);
|
||||
return nls.localize('replaceAll.occurrence.file.confirmation.message', "Replace {0} occurrence across {1} file?", occurrences, fileCount);
|
||||
}
|
||||
|
||||
if (replaceValue) {
|
||||
@@ -601,7 +601,7 @@ export class SearchView extends ViewletPanel {
|
||||
return nls.localize('removeAll.occurrences.file.confirmation.message', "Replace {0} occurrences across {1} file with '{2}'?", occurrences, fileCount, replaceValue);
|
||||
}
|
||||
|
||||
return nls.localize('replaceAll.occurrences.file.confirmation.message', "Replace {0} occurrences across {1} file'?", occurrences, fileCount);
|
||||
return nls.localize('replaceAll.occurrences.file.confirmation.message', "Replace {0} occurrences across {1} file?", occurrences, fileCount);
|
||||
}
|
||||
|
||||
if (replaceValue) {
|
||||
|
||||
Reference in New Issue
Block a user