Create Pull Request Suggestion confirmation dialog is hard to parse (#6201)

Fixes #6189
This commit is contained in:
Alex Ross 2024-09-06 21:55:37 +02:00 коммит произвёл GitHub
Родитель 61bb6eeb70
Коммит fcdb14f0e3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1122,7 +1122,7 @@ ${contents}
*/
telemetry.sendTelemetryEvent('pr.deleteComment');
const deleteOption = vscode.l10n.t('Delete');
const shouldDelete = await vscode.window.showWarningMessage(vscode.l10n.t('Delete comment?'), { modal: true }, deleteOption);
const shouldDelete = await vscode.window.showWarningMessage(vscode.l10n.t('Are you sure you want to delete this comment?'), { modal: true }, deleteOption);
if (shouldDelete === deleteOption) {
const handler = resolveCommentHandler(comment.parent);

Просмотреть файл

@ -799,7 +799,7 @@ export class ReviewManager {
}));
});
if (!hasError) {
const checkoutAllFilesResponse = vscode.l10n.t('Checkout all files');
const checkoutAllFilesResponse = vscode.l10n.t('Reset all changes');
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) => {
if (response === checkoutAllFilesResponse) {
return Promise.all(convertedFiles.map(changeFile => this._folderRepoManager.repository.checkout(changeFile.fsPath)));