Skip to content

Commit 554e4ca

Browse files
authored
Confusing wording for "Create Pull Request Suggestions" (#6186)
Fixes #6169
1 parent fe157bc commit 554e4ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/view/reviewManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ export class ReviewManager {
777777
});
778778
if (!hasError) {
779779
const checkoutAllFilesResponse = vscode.l10n.t('Checkout all files');
780-
vscode.window.showInformationMessage(vscode.l10n.t('All changes have been converted to suggestions.'), { modal: true, detail: vscode.l10n.t('Do you want to checkout all files and reset your working state to match the pull request state?') }, checkoutAllFilesResponse).then((response) => {
780+
vscode.window.showInformationMessage(vscode.l10n.t('All changes have been converted to suggestions.'), { modal: true, detail: vscode.l10n.t('Do you want to reset your local changes?') }, checkoutAllFilesResponse).then((response) => {
781781
if (response === checkoutAllFilesResponse) {
782782
return Promise.all(convertedFiles.map(changeFile => this._folderRepoManager.repository.checkout(changeFile.fsPath)));
783783
}

0 commit comments

Comments
 (0)