diff --git a/extensions/github-authentication/src/githubServer.ts b/extensions/github-authentication/src/githubServer.ts index 42e43549a58..830e6983700 100644 --- a/extensions/github-authentication/src/githubServer.ts +++ b/extensions/github-authentication/src/githubServer.ts @@ -163,7 +163,7 @@ export class GitHubServer implements IGitHubServer { } const message = userCancelled ? vscode.l10n.t('Having trouble logging in? Would you like to try a different way?') - : vscode.l10n.t('otherReasonMessage', 'You have not yet finished authorizing this extension to use GitHub. Would you like to keep trying?'); + : vscode.l10n.t('You have not yet finished authorizing this extension to use GitHub. Would you like to keep trying?'); const result = await vscode.window.showWarningMessage(message, yes, no); if (result !== yes) { throw new Error('Cancelled');