@@ -92,6 +92,8 @@ public class RNInstabugReactnativeModule extends ReactContextBaseJavaModule {
92
92
private final String REPORT_SUCCESSFULLY_SENT = "thankYouText" ;
93
93
private final String VIDEO_PLAYER_TITLE = "video" ;
94
94
95
+ private final String CONVERSATION_TEXT_FIELD_HINT = "conversationTextFieldHint" ;
96
+
95
97
private Application androidApplication ;
96
98
private Instabug mInstabug ;
97
99
private InstabugInvocationEvent invocationEvent ;
@@ -919,6 +921,29 @@ public Map<String, Object> getConstants() {
919
921
constants .put ("localeSwedish" , LOCALE_SWEDISH );
920
922
constants .put ("localeTurkish" , LOCALE_TURKISH );
921
923
924
+ constants .put ("shakeHint" , SHAKE_HINT );
925
+ constants .put ("swipeHint" , SWIPE_HINT );
926
+ constants .put ("invalidEmailMessage" , INVALID_EMAIL_MESSAGE );
927
+ constants .put ("invalidCommentMessage" , INVALID_COMMENT_MESSAGE );
928
+ constants .put ("emailFieldHint" , EMAIL_FIELD_HINT );
929
+ constants .put ("commentFieldHintForBugReport" , COMMENT_FIELD_HINT_FOR_BUG_REPORT );
930
+ constants .put ("commentFieldHintForFeedback" , COMMENT_FIELD_HINT_FOR_FEEDBACK );
931
+ constants .put ("invocationHeader" , INVOCATION_HEADER );
932
+ constants .put ("talkToUs" , START_CHATS );
933
+ constants .put ("reportBug" , REPORT_BUG );
934
+ constants .put ("reportFeedback" , REPORT_FEEDBACK );
935
+ constants .put ("conversationsHeaderTitle" , CONVERSATIONS_LIST_TITLE );
936
+ constants .put ("addVoiceMessage" , ADD_VOICE_MESSAGE );
937
+ constants .put ("addImageFromGallery" , ADD_IMAGE_FROM_GALLERY );
938
+ constants .put ("addExtraScreenshot" , ADD_EXTRA_SCREENSHOT );
939
+ constants .put ("addVideoMessage" , ADD_VIDEO );
940
+ constants .put ("audioRecordingPermissionDeniedMessage" , AUDIO_RECORDING_PERMISSION_DENIED );
941
+ constants .put ("recordingMessageToHoldText" , VOICE_MESSAGE_PRESS_AND_HOLD_TO_RECORD );
942
+ constants .put ("recordingMessageToReleaseText" , VOICE_MESSAGE_RELEASE_TO_ATTACH );
943
+ constants .put ("thankYouText" , REPORT_SUCCESSFULLY_SENT );
944
+ constants .put ("video" , VIDEO_PLAYER_TITLE );
945
+ constants .put ("conversationTextFieldHint" , CONVERSATION_TEXT_FIELD_HINT );
946
+
922
947
923
948
return constants ;
924
949
}
0 commit comments