File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
packages/vscode-extension Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1212
1313 "BUTTONS_RESTART_NOW" : " Restart Now" ,
1414 "BUTTONS_SEE_DETAILS" : " See Details" ,
15- "BUTTONS_DISMISS " : " Dismiss " ,
15+ "BUTTONS_OK " : " Ok " ,
1616
1717 "COMMAND_ERROR" : " Something went wrong with '{0}'." ,
1818 "COMMAND_SUCCESS" : " '{0}' has been successfully executed." ,
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ export default class SetupAccount extends BaseAction {
205205
206206 const warning = ExecutionContextService . getBrowserBasedWarningMessages ( ) ;
207207 if ( warning ) {
208- this . messageService . showWarningMessageDismiss ( warning ) ;
208+ this . messageService . showWarningMessageWithOk ( warning ) ;
209209 }
210210 }
211211
Original file line number Diff line number Diff line change @@ -52,10 +52,10 @@ export default class MessageService {
5252 ) ;
5353 }
5454
55- showWarningMessageDismiss ( warningMessage : string , includeProjectName = true ) {
55+ showWarningMessageWithOk ( warningMessage : string , includeProjectName = true ) {
5656 window . showWarningMessage (
5757 includeProjectName ? this . addProjectNameToMessage ( warningMessage ) : warningMessage ,
58- this . translationService . getMessage ( BUTTONS . DISMISS ) ) ;
58+ this . translationService . getMessage ( BUTTONS . OK ) ) ;
5959 }
6060
6161 showErrorMessage ( errorMessage : string ) {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export const ANSWERS = {
2222export const BUTTONS = {
2323 RESTART_NOW : 'BUTTONS_RESTART_NOW' ,
2424 SEE_DETAILS : 'BUTTONS_SEE_DETAILS' ,
25- DISMISS : 'BUTTONS_DISMISS '
25+ OK : 'BUTTONS_OK '
2626} ;
2727
2828export const COMMAND = {
You can’t perform that action at this time.
0 commit comments