Skip to content

Commit 0180b3d

Browse files
committed
Aligns select vs choose
1 parent 1988a0f commit 0180b3d

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

src/commands/git/branch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ export class BranchGitCommand extends QuickCommand {
361361
while (this.canStepsContinue(state)) {
362362
if (state.counter < 3 || state.reference == null) {
363363
const result = yield* pickBranchOrTagStep(state, context, {
364-
placeholder: `Select a base to create the new branch from`,
364+
placeholder: `Choose a base to create the new branch from`,
365365
picked: state.reference?.ref ?? (await state.repo.git.getBranch())?.ref,
366366
title: 'Select Base to Create Branch From',
367367
value: isRevisionReference(state.reference) ? state.reference.ref : undefined,

src/plus/gk/account/__debug__accountDebug.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ class AccountDebug {
239239
);
240240

241241
quickpick.title = 'Subscription Simulator';
242-
quickpick.placeholder = 'Select the subscription state to simulate';
242+
quickpick.placeholder = 'Choose the subscription state to simulate';
243243

244244
const [items, picked] = getItemsAndPicked(this.simulatingPick);
245245
quickpick.items = items;

src/plus/gk/account/subscriptionService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1621,7 +1621,7 @@ export class SubscriptionService implements Disposable {
16211621

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

16271627
const currentActiveOrganization = this._subscription?.activeOrganization;

src/quickpicks/aiModelPicker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ export async function showAIModelPicker(
6565
}),
6666
);
6767

68-
quickpick.title = 'Choose AI Model';
69-
quickpick.placeholder = 'Select an AI model to use';
68+
quickpick.title = 'Select AI Model';
69+
quickpick.placeholder = 'Choose an AI model to use';
7070
quickpick.matchOnDescription = true;
7171
quickpick.matchOnDetail = true;
7272
quickpick.buttons = [ResetAIKeyButton];

src/quickpicks/branchPicker.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,12 @@ export async function showNewOrSelectBranchPicker(
103103

104104
// TODO: needs updating
105105
const createNewBranch = {
106-
label: 'Create new branch',
106+
label: 'Create New Branch',
107107
description:
108108
'Creates a branch to apply the Cloud Patch to. (Typing an existing branch name will use that branch.)',
109109
};
110110
const selectExistingBranch = {
111-
label: 'Select existing branch',
111+
label: 'Select Existing Branch',
112112
description: 'Selects an existing branch to apply the Cloud Patch to.',
113113
};
114114

@@ -131,7 +131,7 @@ export async function showNewOrSelectBranchPicker(
131131
);
132132

133133
quickpick.title = title;
134-
quickpick.placeholder = 'Select a branch option';
134+
quickpick.placeholder = 'Choose a branch option';
135135
quickpick.matchOnDescription = true;
136136
quickpick.matchOnDetail = true;
137137
quickpick.items = items;
@@ -142,7 +142,7 @@ export async function showNewOrSelectBranchPicker(
142142
if (pick === createNewBranch) {
143143
return await showNewBranchPicker(title, 'Enter a name for the new branch', repository);
144144
} else if (pick === selectExistingBranch) {
145-
return await showBranchPicker(title, 'Select an existing branch', repository);
145+
return await showBranchPicker(title, 'Choose an existing branch', repository);
146146
}
147147

148148
return undefined;

src/webviews/plus/patchDetails/patchDetailsWebview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ export class PatchDetailsWebviewProvider
465465
if (shouldPickBranch) {
466466
const repo = commit.getRepository();
467467
const branch = await showNewOrSelectBranchPicker(
468-
`Choose a Branch ${GlyphChars.Dot} ${repo?.name}`,
468+
`Select a Branch ${GlyphChars.Dot} ${repo?.name}`,
469469
// 'Choose a branch to apply the Cloud Patch to',
470470
repo,
471471
);
@@ -551,7 +551,7 @@ export class PatchDetailsWebviewProvider
551551

552552
const members = await showOrganizationMembersPicker(
553553
'Select Collaborators',
554-
'Select the collaborators to share this patch with',
554+
'Choose collaborators to share this patch with',
555555
this.getOrganizationMembers(),
556556
{
557557
multiselect: true,

0 commit comments

Comments
 (0)