@@ -178,6 +178,15 @@ public class RNInstabugReactnativeModule extends ReactContextBaseJavaModule {
178
178
private final String REPORT_SUCCESSFULLY_SENT = "thankYouText" ;
179
179
private final String THANK_YOU_ALERT_TEXT = "thankYouAlertText" ;
180
180
181
+ private final String WELCOME_MESSAGE_BETA_WELCOME_STEP_TITLE = "welcomeMessageBetaWelcomeStepTitle" ;
182
+ private final String WELCOME_MESSAGE_BETA_WELCOME_STEP_CONTENT = "welcomeMessageBetaWelcomeStepContent" ;
183
+ private final String WELCOME_MESSAGE_HOW_TO_REPORT_STEP_TITLE = "welcomeMessageBetaHowToReportStepTitle" ;
184
+ private final String WELCOME_MESSAGE_HOW_TO_REPORT_STEP_CONTENT = "welcomeMessageBetaHowToReportStepContent" ;
185
+ private final String WELCOME_MESSAGE_FINISH_STEP_TITLE = "welcomeMessageBetaFinishStepTitle" ;
186
+ private final String WELCOME_MESSAGE_FINISH_STEP_CONTENT = "welcomeMessageBetaFinishStepContent" ;
187
+ private final String WELCOME_MESSAGE_LIVE_WELCOME_STEP_TITLE = "welcomeMessageLiveWelcomeStepTitle" ;
188
+ private final String WELCOME_MESSAGE_LIVE_WELCOME_STEP_CONTENT = "welcomeMessageLiveWelcomeStepContent" ;
189
+
181
190
private final String VIDEO_PLAYER_TITLE = "video" ;
182
191
183
192
private final String CONVERSATION_TEXT_FIELD_HINT = "conversationTextFieldHint" ;
@@ -2022,6 +2031,22 @@ private InstabugCustomTextPlaceHolder.Key getStringToKeyConstant(String key) {
2022
2031
return InstabugCustomTextPlaceHolder .Key .VIDEO_PLAYER_TITLE ;
2023
2032
case THANK_YOU_ALERT_TEXT :
2024
2033
return InstabugCustomTextPlaceHolder .Key .REPORT_SUCCESSFULLY_SENT ;
2034
+ case WELCOME_MESSAGE_BETA_WELCOME_STEP_TITLE :
2035
+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_WELCOME_STEP_TITLE ;
2036
+ case WELCOME_MESSAGE_BETA_WELCOME_STEP_CONTENT :
2037
+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_WELCOME_STEP_CONTENT ;
2038
+ case WELCOME_MESSAGE_HOW_TO_REPORT_STEP_TITLE :
2039
+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_HOW_TO_REPORT_STEP_TITLE ;
2040
+ case WELCOME_MESSAGE_HOW_TO_REPORT_STEP_CONTENT :
2041
+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_HOW_TO_REPORT_STEP_CONTENT ;
2042
+ case WELCOME_MESSAGE_FINISH_STEP_TITLE :
2043
+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_FINISH_STEP_TITLE ;
2044
+ case WELCOME_MESSAGE_FINISH_STEP_CONTENT :
2045
+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_FINISH_STEP_CONTENT ;
2046
+ case WELCOME_MESSAGE_LIVE_WELCOME_STEP_TITLE :
2047
+ return InstabugCustomTextPlaceHolder .Key .LIVE_WELCOME_MESSAGE_TITLE ;
2048
+ case WELCOME_MESSAGE_LIVE_WELCOME_STEP_CONTENT :
2049
+ return InstabugCustomTextPlaceHolder .Key .LIVE_WELCOME_MESSAGE_CONTENT ;
2025
2050
default :
2026
2051
return null ;
2027
2052
}
@@ -2208,6 +2233,15 @@ public Map<String, Object> getConstants() {
2208
2233
constants .put ("conversationTextFieldHint" , CONVERSATION_TEXT_FIELD_HINT );
2209
2234
constants .put ("thankYouAlertText" , THANK_YOU_ALERT_TEXT );
2210
2235
2236
+ constants .put ("welcomeMessageBetaWelcomeStepTitle" , WELCOME_MESSAGE_BETA_WELCOME_STEP_TITLE );
2237
+ constants .put ("welcomeMessageBetaWelcomeStepContent" , WELCOME_MESSAGE_BETA_WELCOME_STEP_CONTENT );
2238
+ constants .put ("welcomeMessageBetaHowToReportStepTitle" , WELCOME_MESSAGE_HOW_TO_REPORT_STEP_TITLE );
2239
+ constants .put ("welcomeMessageBetaHowToReportStepContent" , WELCOME_MESSAGE_HOW_TO_REPORT_STEP_CONTENT );
2240
+ constants .put ("welcomeMessageBetaFinishStepTitle" , WELCOME_MESSAGE_FINISH_STEP_TITLE );
2241
+ constants .put ("welcomeMessageBetaFinishStepContent" , WELCOME_MESSAGE_FINISH_STEP_CONTENT );
2242
+ constants .put ("welcomeMessageLiveWelcomeStepTitle" , WELCOME_MESSAGE_LIVE_WELCOME_STEP_TITLE );
2243
+ constants .put ("welcomeMessageLiveWelcomeStepContent" , WELCOME_MESSAGE_LIVE_WELCOME_STEP_CONTENT );
2244
+
2211
2245
return constants ;
2212
2246
}
2213
2247
}
0 commit comments