From 844784445c5b6209ac79fc10cb4e89345be94099 Mon Sep 17 00:00:00 2001 From: Steven Wexler Date: Thu, 5 Jun 2025 09:35:26 -0400 Subject: [PATCH] Localize commit message generation error notification --- src/vs/workbench/contrib/void/browser/voidSCMService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/void/browser/voidSCMService.ts b/src/vs/workbench/contrib/void/browser/voidSCMService.ts index ab542928..dfe49e1d 100644 --- a/src/vs/workbench/contrib/void/browser/voidSCMService.ts +++ b/src/vs/workbench/contrib/void/browser/voidSCMService.ts @@ -179,7 +179,7 @@ class GenerateCommitMessageService extends Disposable implements IGenerateCommit private onError(error: any) { if (!isCancellationError(error)) { console.error(error) - this.notificationService.error('Failed to generate commit message') + this.notificationService.error(localize2('voidFailedToGenerateCommitMessage', 'Failed to generate commit message.').value) } } }