File tree Expand file tree Collapse file tree
src/vs/workbench/contrib/userDataSync/browser Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ export class UserDataSyncWorkbenchContribution extends Disposable implements IWo
251251 return new Promise ( ( resolve , _ ) => {
252252 const quickPick = this . quickInputService . createQuickPick < { label : string , session : AuthenticationSession } > ( ) ;
253253 quickPick . title = localize ( 'chooseAccountTitle' , "Preferences Sync: Choose Account" ) ;
254- quickPick . placeholder = localize ( 'chooseAccount' , "Choose an account you would like to use for settings sync" ) ;
254+ quickPick . placeholder = localize ( 'chooseAccount' , "Choose an account you would like to use for preferences sync" ) ;
255255 const dedupedSessions = distinct ( sessions , ( session ) => session . accountName ) ;
256256 quickPick . items = dedupedSessions . map ( session => {
257257 return {
You can’t perform that action at this time.
0 commit comments