Skip to content

Commit 4233995

Browse files
committed
on -> in
1 parent eb8ad9a commit 4233995

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1418,8 +1418,8 @@
14181418
"category": "%command.pull.request.category%"
14191419
},
14201420
{
1421-
"command": "pr.checkoutOnCodespacesFromDescription",
1422-
"title": "%command.pr.checkoutOnCodespacesFromDescription.title%",
1421+
"command": "pr.checkoutInCodespacesFromDescription",
1422+
"title": "%command.pr.checkoutInCodespacesFromDescription.title%",
14231423
"category": "%command.pull.request.category%"
14241424
},
14251425
{
@@ -3608,7 +3608,7 @@
36083608
"when": "webviewId == PullRequestOverview && github:checkoutMenu"
36093609
},
36103610
{
3611-
"command": "pr.checkoutOnCodespacesFromDescription",
3611+
"command": "pr.checkoutInCodespacesFromDescription",
36123612
"group": "checkout@2",
36133613
"when": "webviewId == PullRequestOverview && github:checkoutMenu"
36143614
},

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@
288288
"command.pr.checkoutFromDescription.title": "Checkout",
289289
"command.pr.applyChangesFromDescription.title": "Apply Changes",
290290
"command.pr.checkoutOnVscodeDevFromDescription.title": "Checkout on vscode.dev",
291-
"command.pr.checkoutOnCodespacesFromDescription.title": "Checkout on Codespaces",
291+
"command.pr.checkoutInCodespacesFromDescription.title": "Checkout in Codespaces",
292292
"command.pr.openSessionLogFromDescription.title": "View Session",
293293
"command.issue.openDescription.title": "View Issue Description",
294294
"command.issue.copyGithubDevLink.title": "Copy github.dev Link",

src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ export function registerCommands(
725725
return vscode.env.openExternal(vscode.Uri.parse(vscodeDevPrLink(resolved.pr)));
726726
}));
727727

728-
context.subscriptions.push(vscode.commands.registerCommand('pr.checkoutOnCodespacesFromDescription', async (context: OverviewContext | undefined) => {
728+
context.subscriptions.push(vscode.commands.registerCommand('pr.checkoutInCodespacesFromDescription', async (context: OverviewContext | undefined) => {
729729
if (!context) {
730730
return vscode.window.showErrorMessage(vscode.l10n.t('No pull request context provided for checkout.'));
731731
}

0 commit comments

Comments
 (0)