@@ -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 ;
0 commit comments