Skip to content

Commit

Permalink
Aligns select vs choose
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jan 4, 2025
1 parent 1988a0f commit 0180b3d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/commands/git/branch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export class BranchGitCommand extends QuickCommand {
while (this.canStepsContinue(state)) {
if (state.counter < 3 || state.reference == null) {
const result = yield* pickBranchOrTagStep(state, context, {
placeholder: `Select a base to create the new branch from`,
placeholder: `Choose a base to create the new branch from`,
picked: state.reference?.ref ?? (await state.repo.git.getBranch())?.ref,
title: 'Select Base to Create Branch From',
value: isRevisionReference(state.reference) ? state.reference.ref : undefined,
Expand Down
2 changes: 1 addition & 1 deletion src/plus/gk/account/__debug__accountDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class AccountDebug {
);

quickpick.title = 'Subscription Simulator';
quickpick.placeholder = 'Select the subscription state to simulate';
quickpick.placeholder = 'Choose the subscription state to simulate';

const [items, picked] = getItemsAndPicked(this.simulatingPick);
quickpick.items = items;
Expand Down
2 changes: 1 addition & 1 deletion src/plus/gk/account/subscriptionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ export class SubscriptionService implements Disposable {

const pick = await window.showQuickPick(picks, {
title: 'Switch Organization',
placeHolder: 'Select the active organization for your account',
placeHolder: 'Choose an active organization for your account',
});

const currentActiveOrganization = this._subscription?.activeOrganization;
Expand Down
4 changes: 2 additions & 2 deletions src/quickpicks/aiModelPicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export async function showAIModelPicker(
}),
);

quickpick.title = 'Choose AI Model';
quickpick.placeholder = 'Select an AI model to use';
quickpick.title = 'Select AI Model';
quickpick.placeholder = 'Choose an AI model to use';
quickpick.matchOnDescription = true;
quickpick.matchOnDetail = true;
quickpick.buttons = [ResetAIKeyButton];
Expand Down
8 changes: 4 additions & 4 deletions src/quickpicks/branchPicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ export async function showNewOrSelectBranchPicker(

// TODO: needs updating
const createNewBranch = {
label: 'Create new branch',
label: 'Create New Branch',
description:
'Creates a branch to apply the Cloud Patch to. (Typing an existing branch name will use that branch.)',
};
const selectExistingBranch = {
label: 'Select existing branch',
label: 'Select Existing Branch',
description: 'Selects an existing branch to apply the Cloud Patch to.',
};

Expand All @@ -131,7 +131,7 @@ export async function showNewOrSelectBranchPicker(
);

quickpick.title = title;
quickpick.placeholder = 'Select a branch option';
quickpick.placeholder = 'Choose a branch option';
quickpick.matchOnDescription = true;
quickpick.matchOnDetail = true;
quickpick.items = items;
Expand All @@ -142,7 +142,7 @@ export async function showNewOrSelectBranchPicker(
if (pick === createNewBranch) {
return await showNewBranchPicker(title, 'Enter a name for the new branch', repository);
} else if (pick === selectExistingBranch) {
return await showBranchPicker(title, 'Select an existing branch', repository);
return await showBranchPicker(title, 'Choose an existing branch', repository);
}

return undefined;
Expand Down
4 changes: 2 additions & 2 deletions src/webviews/plus/patchDetails/patchDetailsWebview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ export class PatchDetailsWebviewProvider
if (shouldPickBranch) {
const repo = commit.getRepository();
const branch = await showNewOrSelectBranchPicker(
`Choose a Branch ${GlyphChars.Dot} ${repo?.name}`,
`Select a Branch ${GlyphChars.Dot} ${repo?.name}`,
// 'Choose a branch to apply the Cloud Patch to',
repo,
);
Expand Down Expand Up @@ -551,7 +551,7 @@ export class PatchDetailsWebviewProvider

const members = await showOrganizationMembersPicker(
'Select Collaborators',
'Select the collaborators to share this patch with',
'Choose collaborators to share this patch with',
this.getOrganizationMembers(),
{
multiselect: true,
Expand Down

0 comments on commit 0180b3d

Please sign in to comment.