@@ -88,7 +88,7 @@ class LanguageSurvey {
8888 const message = nls . localize ( 'helpUs' , "Help us improve our support for {0}" , data . languageId ) ;
8989
9090 const takeSurveyAction = new Action ( 'takeSurvey' , nls . localize ( 'takeShortSurvey' , "Take Short Survey" ) , '' , true , ( ) => {
91- // __GDPR__TODO need to move away from dynamic event names as those cannot be registered statically
91+ // __GDPR__TODO__ Need to move away from dynamic event names as those cannot be registered statically
9292 telemetryService . publicLog ( `${ data . surveyId } .survey/takeShortSurvey` ) ;
9393 return telemetryService . getTelemetryInfo ( ) . then ( info => {
9494 window . open ( `${ data . surveyUrl } ?o=${ encodeURIComponent ( process . platform ) } &v=${ encodeURIComponent ( pkg . version ) } &m=${ encodeURIComponent ( info . machineId ) } ` ) ;
@@ -98,22 +98,22 @@ class LanguageSurvey {
9898 } ) ;
9999
100100 const remindMeLaterAction = new Action ( 'later' , nls . localize ( 'remindLater' , "Remind Me later" ) , '' , true , ( ) => {
101- // __GDPR__TODO need to move away from dynamic event names as those cannot be registered statically
101+ // __GDPR__TODO__ Need to move away from dynamic event names as those cannot be registered statically
102102 telemetryService . publicLog ( `${ data . surveyId } .survey/remindMeLater` ) ;
103103 storageService . store ( SESSION_COUNT_KEY , sessionCount - 3 , StorageScope . GLOBAL ) ;
104104 return TPromise . as ( null ) ;
105105 } ) ;
106106
107107 const neverAgainAction = new Action ( 'never' , nls . localize ( 'neverAgain' , "Don't Show Again" ) , '' , true , ( ) => {
108- // __GDPR__TODO need to move away from dynamic event names as those cannot be registered statically
108+ // __GDPR__TODO__ Need to move away from dynamic event names as those cannot be registered statically
109109 telemetryService . publicLog ( `${ data . surveyId } .survey/dontShowAgain` ) ;
110110 storageService . store ( IS_CANDIDATE_KEY , false , StorageScope . GLOBAL ) ;
111111 storageService . store ( SKIP_VERSION_KEY , pkg . version , StorageScope . GLOBAL ) ;
112112 return TPromise . as ( null ) ;
113113 } ) ;
114114
115115 const actions = [ neverAgainAction , remindMeLaterAction , takeSurveyAction ] ;
116- // __GDPR__TODO need to move away from dynamic event names as those cannot be registered statically
116+ // __GDPR__TODO__ Need to move away from dynamic event names as those cannot be registered statically
117117 telemetryService . publicLog ( `${ data . surveyId } .survey/userAsked` ) ;
118118 messageService . show ( Severity . Info , { message, actions } ) ;
119119 }
0 commit comments