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) } } }