@capillarytech/creatives-library 8.0.259 → 8.0.260-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (157) hide show
  1. package/assets/Android.png +0 -0
  2. package/assets/iOS.png +0 -0
  3. package/constants/unified.js +1 -2
  4. package/initialReducer.js +0 -2
  5. package/package.json +1 -1
  6. package/services/api.js +0 -10
  7. package/services/tests/api.test.js +0 -34
  8. package/translations/en.json +3 -4
  9. package/utils/common.js +0 -12
  10. package/utils/commonUtils.js +5 -28
  11. package/utils/tests/commonUtil.test.js +0 -224
  12. package/utils/transformTemplateConfig.js +10 -0
  13. package/v2Components/CapDeviceContent/index.js +56 -61
  14. package/v2Components/CapTagList/index.js +1 -6
  15. package/v2Components/CapTagListWithInput/index.js +1 -5
  16. package/v2Components/CapTagListWithInput/messages.js +1 -1
  17. package/v2Components/CapWhatsappCTA/tests/index.test.js +0 -5
  18. package/v2Components/ErrorInfoNote/index.js +72 -457
  19. package/v2Components/ErrorInfoNote/messages.js +6 -36
  20. package/v2Components/ErrorInfoNote/style.scss +6 -282
  21. package/v2Components/FormBuilder/index.js +4 -4
  22. package/v2Components/FormBuilder/tests/index.test.js +4 -13
  23. package/v2Components/HtmlEditor/HTMLEditor.js +94 -547
  24. package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +133 -1441
  25. package/v2Components/HtmlEditor/__tests__/index.lazy.test.js +16 -27
  26. package/v2Components/HtmlEditor/_htmlEditor.scss +45 -108
  27. package/v2Components/HtmlEditor/_index.lazy.scss +1 -0
  28. package/v2Components/HtmlEditor/components/CodeEditorPane/_codeEditorPane.scss +102 -23
  29. package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +140 -148
  30. package/v2Components/HtmlEditor/components/DeviceToggle/_deviceToggle.scss +1 -2
  31. package/v2Components/HtmlEditor/components/DeviceToggle/index.js +3 -3
  32. package/v2Components/HtmlEditor/components/EditorToolbar/_editorToolbar.scss +0 -9
  33. package/v2Components/HtmlEditor/components/EditorToolbar/index.js +4 -4
  34. package/v2Components/HtmlEditor/components/FullscreenModal/_fullscreenModal.scss +0 -22
  35. package/v2Components/HtmlEditor/components/InAppPreviewPane/DeviceFrame.js +7 -4
  36. package/v2Components/HtmlEditor/components/InAppPreviewPane/__tests__/DeviceFrame.test.js +45 -35
  37. package/v2Components/HtmlEditor/components/InAppPreviewPane/_inAppPreviewPane.scss +3 -1
  38. package/v2Components/HtmlEditor/components/InAppPreviewPane/constants.js +33 -33
  39. package/v2Components/HtmlEditor/components/InAppPreviewPane/index.js +6 -7
  40. package/v2Components/HtmlEditor/components/PreviewPane/_previewPane.scss +6 -3
  41. package/v2Components/HtmlEditor/components/PreviewPane/index.js +43 -22
  42. package/v2Components/HtmlEditor/components/SplitContainer/_splitContainer.scss +1 -1
  43. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/__tests__/index.test.js +152 -0
  44. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/_validationErrorDisplay.scss +0 -1
  45. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/index.js +31 -49
  46. package/v2Components/HtmlEditor/components/ValidationPanel/_validationPanel.scss +34 -50
  47. package/v2Components/HtmlEditor/components/ValidationPanel/index.js +41 -70
  48. package/v2Components/HtmlEditor/constants.js +20 -42
  49. package/v2Components/HtmlEditor/hooks/__tests__/useInAppContent.test.js +16 -373
  50. package/v2Components/HtmlEditor/hooks/__tests__/useValidation.test.js +16 -120
  51. package/v2Components/HtmlEditor/hooks/useEditorContent.js +2 -5
  52. package/v2Components/HtmlEditor/hooks/useInAppContent.js +146 -88
  53. package/v2Components/HtmlEditor/hooks/useValidation.js +53 -189
  54. package/v2Components/HtmlEditor/index.js +1 -1
  55. package/v2Components/HtmlEditor/messages.js +94 -92
  56. package/v2Components/HtmlEditor/utils/__tests__/htmlValidator.enhanced.test.js +45 -94
  57. package/v2Components/HtmlEditor/utils/__tests__/validationAdapter.test.js +0 -134
  58. package/v2Components/HtmlEditor/utils/contentSanitizer.js +41 -40
  59. package/v2Components/HtmlEditor/utils/htmlValidator.js +72 -71
  60. package/v2Components/HtmlEditor/utils/liquidTemplateSupport.js +102 -134
  61. package/v2Components/HtmlEditor/utils/properSyntaxHighlighting.js +25 -23
  62. package/v2Components/HtmlEditor/utils/validationAdapter.js +41 -66
  63. package/v2Components/MobilePushPreviewV2/index.js +7 -32
  64. package/v2Components/TemplatePreview/_templatePreview.scss +24 -55
  65. package/v2Components/TemplatePreview/index.js +32 -47
  66. package/v2Components/TemplatePreview/messages.js +0 -4
  67. package/v2Components/TestAndPreviewSlidebox/_testAndPreviewSlidebox.scss +0 -1
  68. package/v2Containers/BeeEditor/index.js +90 -172
  69. package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +3 -4
  70. package/v2Containers/CreativesContainer/SlideBoxContent.js +52 -128
  71. package/v2Containers/CreativesContainer/SlideBoxFooter.js +13 -163
  72. package/v2Containers/CreativesContainer/SlideBoxHeader.js +1 -2
  73. package/v2Containers/CreativesContainer/constants.js +0 -1
  74. package/v2Containers/CreativesContainer/index.js +46 -240
  75. package/v2Containers/CreativesContainer/messages.js +0 -8
  76. package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +2 -11
  77. package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +50 -38
  78. package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +0 -106
  79. package/v2Containers/Email/actions.js +0 -7
  80. package/v2Containers/Email/constants.js +1 -5
  81. package/v2Containers/Email/index.js +30 -239
  82. package/v2Containers/Email/messages.js +0 -32
  83. package/v2Containers/Email/reducer.js +1 -12
  84. package/v2Containers/Email/sagas.js +7 -61
  85. package/v2Containers/Email/tests/__snapshots__/reducer.test.js.snap +0 -2
  86. package/v2Containers/Email/tests/reducer.test.js +0 -46
  87. package/v2Containers/Email/tests/sagas.test.js +29 -320
  88. package/v2Containers/EmailWrapper/components/EmailWrapperView.js +21 -211
  89. package/v2Containers/EmailWrapper/components/HTMLEditorTesting.js +74 -40
  90. package/v2Containers/EmailWrapper/components/__tests__/HTMLEditorTesting.test.js +67 -2
  91. package/v2Containers/EmailWrapper/constants.js +0 -2
  92. package/v2Containers/EmailWrapper/hooks/useEmailWrapper.js +77 -629
  93. package/v2Containers/EmailWrapper/index.js +23 -103
  94. package/v2Containers/EmailWrapper/messages.js +1 -65
  95. package/v2Containers/EmailWrapper/tests/EmailWrapperView.test.js +214 -0
  96. package/v2Containers/EmailWrapper/tests/useEmailWrapper.test.js +77 -594
  97. package/v2Containers/InApp/actions.js +0 -7
  98. package/v2Containers/InApp/constants.js +4 -20
  99. package/v2Containers/InApp/index.js +360 -804
  100. package/v2Containers/InApp/index.scss +3 -4
  101. package/v2Containers/InApp/messages.js +3 -7
  102. package/v2Containers/InApp/reducer.js +3 -21
  103. package/v2Containers/InApp/sagas.js +9 -29
  104. package/v2Containers/InApp/selectors.js +5 -25
  105. package/v2Containers/InApp/tests/index.test.js +71 -152
  106. package/v2Containers/InApp/tests/reducer.test.js +0 -34
  107. package/v2Containers/InApp/tests/sagas.test.js +9 -61
  108. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +12 -39
  109. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +6 -10
  110. package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +75 -102
  111. package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +54 -81
  112. package/v2Containers/MobilePushNew/index.js +2 -3
  113. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +178 -262
  114. package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +12 -16
  115. package/v2Containers/SmsTrai/Edit/index.js +1 -2
  116. package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +111 -468
  117. package/v2Containers/TagList/index.js +19 -62
  118. package/v2Containers/Templates/_templates.scss +1 -60
  119. package/v2Containers/Templates/index.js +4 -89
  120. package/v2Containers/Templates/messages.js +0 -4
  121. package/v2Containers/WebPush/Create/messages.js +8 -0
  122. package/v2Containers/WebPush/Create/preview/PreviewControls.js +2 -2
  123. package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +3 -1
  124. package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +5 -1
  125. package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +5 -1
  126. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +5 -1
  127. package/v2Containers/WebPush/Create/preview/preview.scss +7 -0
  128. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +734 -1306
  129. package/v2Components/ErrorInfoNote/constants.js +0 -1
  130. package/v2Components/HtmlEditor/__tests__/HTMLEditor.apiErrors.test.js +0 -874
  131. package/v2Components/HtmlEditor/components/ValidationPanel/constants.js +0 -6
  132. package/v2Components/HtmlEditor/components/ValidationTabs/_validationTabs.scss +0 -255
  133. package/v2Components/HtmlEditor/components/ValidationTabs/index.js +0 -364
  134. package/v2Components/HtmlEditor/components/ValidationTabs/messages.js +0 -51
  135. package/v2Components/HtmlEditor/utils/validationConstants.js +0 -40
  136. package/v2Containers/BeePopupEditor/_beePopupEditor.scss +0 -14
  137. package/v2Containers/BeePopupEditor/constants.js +0 -10
  138. package/v2Containers/BeePopupEditor/index.js +0 -194
  139. package/v2Containers/BeePopupEditor/tests/index.test.js +0 -627
  140. package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +0 -1285
  141. package/v2Containers/EmailWrapper/components/__tests__/EmailHTMLEditor.test.js +0 -1880
  142. package/v2Containers/EmailWrapper/components/__tests__/EmailWrapperView.test.js +0 -520
  143. package/v2Containers/EmailWrapper/tests/useEmailWrapper.edgeCases.test.js +0 -643
  144. package/v2Containers/InApp/__tests__/InAppHTMLEditor.test.js +0 -376
  145. package/v2Containers/InApp/__tests__/sagas.test.js +0 -363
  146. package/v2Containers/InApp/tests/selectors.test.js +0 -612
  147. package/v2Containers/InAppWrapper/components/InAppWrapperView.js +0 -151
  148. package/v2Containers/InAppWrapper/components/__tests__/InAppWrapperView.test.js +0 -267
  149. package/v2Containers/InAppWrapper/components/inAppWrapperView.scss +0 -23
  150. package/v2Containers/InAppWrapper/constants.js +0 -16
  151. package/v2Containers/InAppWrapper/hooks/__tests__/useInAppWrapper.test.js +0 -473
  152. package/v2Containers/InAppWrapper/hooks/useInAppWrapper.js +0 -198
  153. package/v2Containers/InAppWrapper/index.js +0 -148
  154. package/v2Containers/InAppWrapper/messages.js +0 -49
  155. package/v2Containers/InappAdvance/index.js +0 -1099
  156. package/v2Containers/InappAdvance/index.scss +0 -10
  157. package/v2Containers/InappAdvance/tests/index.test.js +0 -448
@@ -189,7 +189,7 @@ exports[`Creatives rcs test/> template desc change 1`] = `
189
189
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
190
190
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
191
191
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
192
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
192
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
193
193
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
194
194
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
195
195
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -197,13 +197,13 @@ exports[`Creatives rcs test/> template desc change 1`] = `
197
197
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
198
198
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
199
199
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
200
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
200
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
201
201
  "creatives.componentsV2.CapImageUpload.or": "OR",
202
202
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
203
203
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
204
204
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
205
205
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
206
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
206
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
207
207
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
208
208
  "creatives.componentsV2.CapTagList.Ok": "Ok",
209
209
  "creatives.componentsV2.CapTagList.all": "All",
@@ -1896,7 +1896,6 @@ new message content.",
1896
1896
  "creatives.containersV2.WeChat.templateName": "Template Name",
1897
1897
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
1898
1898
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
1899
- "creatives.containersV2.WebPush.addLabels": "Add labels",
1900
1899
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
1901
1900
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
1902
1901
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -2282,7 +2281,6 @@ new message content.",
2282
2281
  "email": [Function],
2283
2282
  "facebookPreview": [Function],
2284
2283
  "gallery": [Function],
2285
- "inApp": [Function],
2286
2284
  "language": [Function],
2287
2285
  "navigationConfig": [Function],
2288
2286
  "previewAndTest": [Function],
@@ -4188,7 +4186,7 @@ new message content.",
4188
4186
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
4189
4187
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
4190
4188
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
4191
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
4189
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
4192
4190
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
4193
4191
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
4194
4192
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -4196,13 +4194,13 @@ new message content.",
4196
4194
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
4197
4195
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
4198
4196
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
4199
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
4197
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
4200
4198
  "creatives.componentsV2.CapImageUpload.or": "OR",
4201
4199
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
4202
4200
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
4203
4201
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
4204
4202
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
4205
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
4203
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
4206
4204
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
4207
4205
  "creatives.componentsV2.CapTagList.Ok": "Ok",
4208
4206
  "creatives.componentsV2.CapTagList.all": "All",
@@ -5895,7 +5893,6 @@ new message content.",
5895
5893
  "creatives.containersV2.WeChat.templateName": "Template Name",
5896
5894
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
5897
5895
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
5898
- "creatives.containersV2.WebPush.addLabels": "Add labels",
5899
5896
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
5900
5897
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
5901
5898
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -6447,7 +6444,7 @@ new message content.",
6447
6444
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
6448
6445
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
6449
6446
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
6450
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
6447
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
6451
6448
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
6452
6449
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
6453
6450
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -6455,13 +6452,13 @@ new message content.",
6455
6452
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
6456
6453
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
6457
6454
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
6458
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
6455
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
6459
6456
  "creatives.componentsV2.CapImageUpload.or": "OR",
6460
6457
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
6461
6458
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
6462
6459
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
6463
6460
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
6464
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
6461
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
6465
6462
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
6466
6463
  "creatives.componentsV2.CapTagList.Ok": "Ok",
6467
6464
  "creatives.componentsV2.CapTagList.all": "All",
@@ -8154,7 +8151,6 @@ new message content.",
8154
8151
  "creatives.containersV2.WeChat.templateName": "Template Name",
8155
8152
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
8156
8153
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
8157
- "creatives.containersV2.WebPush.addLabels": "Add labels",
8158
8154
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
8159
8155
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
8160
8156
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -11495,7 +11491,7 @@ new message content.",
11495
11491
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
11496
11492
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
11497
11493
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
11498
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
11494
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
11499
11495
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
11500
11496
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
11501
11497
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -11503,13 +11499,13 @@ new message content.",
11503
11499
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
11504
11500
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
11505
11501
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
11506
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
11502
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
11507
11503
  "creatives.componentsV2.CapImageUpload.or": "OR",
11508
11504
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
11509
11505
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
11510
11506
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
11511
11507
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
11512
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
11508
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
11513
11509
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
11514
11510
  "creatives.componentsV2.CapTagList.Ok": "Ok",
11515
11511
  "creatives.componentsV2.CapTagList.all": "All",
@@ -13202,7 +13198,6 @@ new message content.",
13202
13198
  "creatives.containersV2.WeChat.templateName": "Template Name",
13203
13199
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
13204
13200
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
13205
- "creatives.containersV2.WebPush.addLabels": "Add labels",
13206
13201
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
13207
13202
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
13208
13203
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -13807,7 +13802,7 @@ new message content.",
13807
13802
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
13808
13803
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
13809
13804
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
13810
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
13805
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
13811
13806
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
13812
13807
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
13813
13808
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -13815,13 +13810,13 @@ new message content.",
13815
13810
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
13816
13811
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
13817
13812
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
13818
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
13813
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
13819
13814
  "creatives.componentsV2.CapImageUpload.or": "OR",
13820
13815
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
13821
13816
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
13822
13817
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
13823
13818
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
13824
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
13819
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
13825
13820
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
13826
13821
  "creatives.componentsV2.CapTagList.Ok": "Ok",
13827
13822
  "creatives.componentsV2.CapTagList.all": "All",
@@ -15514,7 +15509,6 @@ new message content.",
15514
15509
  "creatives.containersV2.WeChat.templateName": "Template Name",
15515
15510
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
15516
15511
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
15517
- "creatives.containersV2.WebPush.addLabels": "Add labels",
15518
15512
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
15519
15513
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
15520
15514
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -16227,7 +16221,7 @@ exports[`Creatives rcs test/> template desc change 2`] = `
16227
16221
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
16228
16222
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
16229
16223
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
16230
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
16224
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
16231
16225
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
16232
16226
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
16233
16227
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -16235,13 +16229,13 @@ exports[`Creatives rcs test/> template desc change 2`] = `
16235
16229
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
16236
16230
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
16237
16231
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
16238
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
16232
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
16239
16233
  "creatives.componentsV2.CapImageUpload.or": "OR",
16240
16234
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
16241
16235
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
16242
16236
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
16243
16237
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
16244
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
16238
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
16245
16239
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
16246
16240
  "creatives.componentsV2.CapTagList.Ok": "Ok",
16247
16241
  "creatives.componentsV2.CapTagList.all": "All",
@@ -17934,7 +17928,6 @@ new message content.",
17934
17928
  "creatives.containersV2.WeChat.templateName": "Template Name",
17935
17929
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
17936
17930
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
17937
- "creatives.containersV2.WebPush.addLabels": "Add labels",
17938
17931
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
17939
17932
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
17940
17933
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -18320,7 +18313,6 @@ new message content.",
18320
18313
  "email": [Function],
18321
18314
  "facebookPreview": [Function],
18322
18315
  "gallery": [Function],
18323
- "inApp": [Function],
18324
18316
  "language": [Function],
18325
18317
  "navigationConfig": [Function],
18326
18318
  "previewAndTest": [Function],
@@ -20226,7 +20218,7 @@ new message content.",
20226
20218
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
20227
20219
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
20228
20220
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
20229
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
20221
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
20230
20222
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
20231
20223
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
20232
20224
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -20234,13 +20226,13 @@ new message content.",
20234
20226
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
20235
20227
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
20236
20228
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
20237
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
20229
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
20238
20230
  "creatives.componentsV2.CapImageUpload.or": "OR",
20239
20231
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
20240
20232
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
20241
20233
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
20242
20234
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
20243
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
20235
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
20244
20236
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
20245
20237
  "creatives.componentsV2.CapTagList.Ok": "Ok",
20246
20238
  "creatives.componentsV2.CapTagList.all": "All",
@@ -21933,7 +21925,6 @@ new message content.",
21933
21925
  "creatives.containersV2.WeChat.templateName": "Template Name",
21934
21926
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
21935
21927
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
21936
- "creatives.containersV2.WebPush.addLabels": "Add labels",
21937
21928
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
21938
21929
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
21939
21930
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -22485,7 +22476,7 @@ new message content.",
22485
22476
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
22486
22477
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
22487
22478
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
22488
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
22479
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
22489
22480
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
22490
22481
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
22491
22482
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -22493,13 +22484,13 @@ new message content.",
22493
22484
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
22494
22485
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
22495
22486
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
22496
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
22487
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
22497
22488
  "creatives.componentsV2.CapImageUpload.or": "OR",
22498
22489
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
22499
22490
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
22500
22491
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
22501
22492
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
22502
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
22493
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
22503
22494
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
22504
22495
  "creatives.componentsV2.CapTagList.Ok": "Ok",
22505
22496
  "creatives.componentsV2.CapTagList.all": "All",
@@ -24192,7 +24183,6 @@ new message content.",
24192
24183
  "creatives.containersV2.WeChat.templateName": "Template Name",
24193
24184
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
24194
24185
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
24195
- "creatives.containersV2.WebPush.addLabels": "Add labels",
24196
24186
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
24197
24187
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
24198
24188
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -27533,7 +27523,7 @@ new message content.",
27533
27523
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
27534
27524
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
27535
27525
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
27536
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
27526
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
27537
27527
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
27538
27528
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
27539
27529
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -27541,13 +27531,13 @@ new message content.",
27541
27531
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
27542
27532
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
27543
27533
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
27544
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
27534
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
27545
27535
  "creatives.componentsV2.CapImageUpload.or": "OR",
27546
27536
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
27547
27537
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
27548
27538
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
27549
27539
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
27550
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
27540
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
27551
27541
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
27552
27542
  "creatives.componentsV2.CapTagList.Ok": "Ok",
27553
27543
  "creatives.componentsV2.CapTagList.all": "All",
@@ -29240,7 +29230,6 @@ new message content.",
29240
29230
  "creatives.containersV2.WeChat.templateName": "Template Name",
29241
29231
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
29242
29232
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
29243
- "creatives.containersV2.WebPush.addLabels": "Add labels",
29244
29233
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
29245
29234
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
29246
29235
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -29845,7 +29834,7 @@ new message content.",
29845
29834
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
29846
29835
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
29847
29836
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
29848
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
29837
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
29849
29838
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
29850
29839
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
29851
29840
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -29853,13 +29842,13 @@ new message content.",
29853
29842
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
29854
29843
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
29855
29844
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
29856
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
29845
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
29857
29846
  "creatives.componentsV2.CapImageUpload.or": "OR",
29858
29847
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
29859
29848
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
29860
29849
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
29861
29850
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
29862
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
29851
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
29863
29852
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
29864
29853
  "creatives.componentsV2.CapTagList.Ok": "Ok",
29865
29854
  "creatives.componentsV2.CapTagList.all": "All",
@@ -31552,7 +31541,6 @@ new message content.",
31552
31541
  "creatives.containersV2.WeChat.templateName": "Template Name",
31553
31542
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
31554
31543
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
31555
- "creatives.containersV2.WebPush.addLabels": "Add labels",
31556
31544
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
31557
31545
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
31558
31546
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -32265,7 +32253,7 @@ exports[`Creatives rcs test/> template name change 1`] = `
32265
32253
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
32266
32254
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
32267
32255
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
32268
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
32256
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
32269
32257
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
32270
32258
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
32271
32259
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -32273,13 +32261,13 @@ exports[`Creatives rcs test/> template name change 1`] = `
32273
32261
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
32274
32262
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
32275
32263
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
32276
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
32264
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
32277
32265
  "creatives.componentsV2.CapImageUpload.or": "OR",
32278
32266
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
32279
32267
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
32280
32268
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
32281
32269
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
32282
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
32270
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
32283
32271
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
32284
32272
  "creatives.componentsV2.CapTagList.Ok": "Ok",
32285
32273
  "creatives.componentsV2.CapTagList.all": "All",
@@ -33972,7 +33960,6 @@ new message content.",
33972
33960
  "creatives.containersV2.WeChat.templateName": "Template Name",
33973
33961
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
33974
33962
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
33975
- "creatives.containersV2.WebPush.addLabels": "Add labels",
33976
33963
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
33977
33964
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
33978
33965
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -34358,7 +34345,6 @@ new message content.",
34358
34345
  "email": [Function],
34359
34346
  "facebookPreview": [Function],
34360
34347
  "gallery": [Function],
34361
- "inApp": [Function],
34362
34348
  "language": [Function],
34363
34349
  "navigationConfig": [Function],
34364
34350
  "previewAndTest": [Function],
@@ -36438,7 +36424,7 @@ new message content.",
36438
36424
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
36439
36425
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
36440
36426
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
36441
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
36427
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
36442
36428
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
36443
36429
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
36444
36430
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -36446,13 +36432,13 @@ new message content.",
36446
36432
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
36447
36433
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
36448
36434
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
36449
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
36435
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
36450
36436
  "creatives.componentsV2.CapImageUpload.or": "OR",
36451
36437
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
36452
36438
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
36453
36439
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
36454
36440
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
36455
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
36441
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
36456
36442
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
36457
36443
  "creatives.componentsV2.CapTagList.Ok": "Ok",
36458
36444
  "creatives.componentsV2.CapTagList.all": "All",
@@ -38145,7 +38131,6 @@ new message content.",
38145
38131
  "creatives.containersV2.WeChat.templateName": "Template Name",
38146
38132
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
38147
38133
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
38148
- "creatives.containersV2.WebPush.addLabels": "Add labels",
38149
38134
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
38150
38135
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
38151
38136
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -38697,7 +38682,7 @@ new message content.",
38697
38682
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
38698
38683
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
38699
38684
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
38700
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
38685
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
38701
38686
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
38702
38687
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
38703
38688
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -38705,13 +38690,13 @@ new message content.",
38705
38690
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
38706
38691
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
38707
38692
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
38708
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
38693
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
38709
38694
  "creatives.componentsV2.CapImageUpload.or": "OR",
38710
38695
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
38711
38696
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
38712
38697
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
38713
38698
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
38714
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
38699
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
38715
38700
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
38716
38701
  "creatives.componentsV2.CapTagList.Ok": "Ok",
38717
38702
  "creatives.componentsV2.CapTagList.all": "All",
@@ -40404,7 +40389,6 @@ new message content.",
40404
40389
  "creatives.containersV2.WeChat.templateName": "Template Name",
40405
40390
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
40406
40391
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
40407
- "creatives.containersV2.WebPush.addLabels": "Add labels",
40408
40392
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
40409
40393
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
40410
40394
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -44093,7 +44077,7 @@ new message content.",
44093
44077
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
44094
44078
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
44095
44079
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
44096
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
44080
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
44097
44081
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
44098
44082
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
44099
44083
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -44101,13 +44085,13 @@ new message content.",
44101
44085
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
44102
44086
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
44103
44087
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
44104
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
44088
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
44105
44089
  "creatives.componentsV2.CapImageUpload.or": "OR",
44106
44090
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
44107
44091
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
44108
44092
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
44109
44093
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
44110
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
44094
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
44111
44095
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
44112
44096
  "creatives.componentsV2.CapTagList.Ok": "Ok",
44113
44097
  "creatives.componentsV2.CapTagList.all": "All",
@@ -45800,7 +45784,6 @@ new message content.",
45800
45784
  "creatives.containersV2.WeChat.templateName": "Template Name",
45801
45785
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
45802
45786
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
45803
- "creatives.containersV2.WebPush.addLabels": "Add labels",
45804
45787
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
45805
45788
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
45806
45789
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -46405,7 +46388,7 @@ new message content.",
46405
46388
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
46406
46389
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
46407
46390
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
46408
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
46391
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
46409
46392
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
46410
46393
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
46411
46394
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -46413,13 +46396,13 @@ new message content.",
46413
46396
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
46414
46397
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
46415
46398
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
46416
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
46399
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
46417
46400
  "creatives.componentsV2.CapImageUpload.or": "OR",
46418
46401
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
46419
46402
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
46420
46403
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
46421
46404
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
46422
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
46405
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
46423
46406
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
46424
46407
  "creatives.componentsV2.CapTagList.Ok": "Ok",
46425
46408
  "creatives.componentsV2.CapTagList.all": "All",
@@ -48112,7 +48095,6 @@ new message content.",
48112
48095
  "creatives.containersV2.WeChat.templateName": "Template Name",
48113
48096
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
48114
48097
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
48115
- "creatives.containersV2.WebPush.addLabels": "Add labels",
48116
48098
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
48117
48099
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
48118
48100
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -48825,7 +48807,7 @@ exports[`Creatives rcs test/> template name change 2`] = `
48825
48807
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
48826
48808
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
48827
48809
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
48828
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
48810
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
48829
48811
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
48830
48812
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
48831
48813
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -48833,13 +48815,13 @@ exports[`Creatives rcs test/> template name change 2`] = `
48833
48815
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
48834
48816
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
48835
48817
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
48836
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
48818
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
48837
48819
  "creatives.componentsV2.CapImageUpload.or": "OR",
48838
48820
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
48839
48821
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
48840
48822
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
48841
48823
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
48842
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
48824
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
48843
48825
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
48844
48826
  "creatives.componentsV2.CapTagList.Ok": "Ok",
48845
48827
  "creatives.componentsV2.CapTagList.all": "All",
@@ -50532,7 +50514,6 @@ new message content.",
50532
50514
  "creatives.containersV2.WeChat.templateName": "Template Name",
50533
50515
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
50534
50516
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
50535
- "creatives.containersV2.WebPush.addLabels": "Add labels",
50536
50517
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
50537
50518
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
50538
50519
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -50918,7 +50899,6 @@ new message content.",
50918
50899
  "email": [Function],
50919
50900
  "facebookPreview": [Function],
50920
50901
  "gallery": [Function],
50921
- "inApp": [Function],
50922
50902
  "language": [Function],
50923
50903
  "navigationConfig": [Function],
50924
50904
  "previewAndTest": [Function],
@@ -53178,7 +53158,7 @@ new message content.",
53178
53158
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
53179
53159
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
53180
53160
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
53181
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
53161
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
53182
53162
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
53183
53163
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
53184
53164
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -53186,13 +53166,13 @@ new message content.",
53186
53166
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
53187
53167
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
53188
53168
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
53189
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
53169
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
53190
53170
  "creatives.componentsV2.CapImageUpload.or": "OR",
53191
53171
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
53192
53172
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
53193
53173
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
53194
53174
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
53195
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
53175
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
53196
53176
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
53197
53177
  "creatives.componentsV2.CapTagList.Ok": "Ok",
53198
53178
  "creatives.componentsV2.CapTagList.all": "All",
@@ -54885,7 +54865,6 @@ new message content.",
54885
54865
  "creatives.containersV2.WeChat.templateName": "Template Name",
54886
54866
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
54887
54867
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
54888
- "creatives.containersV2.WebPush.addLabels": "Add labels",
54889
54868
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
54890
54869
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
54891
54870
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -55437,7 +55416,7 @@ new message content.",
55437
55416
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
55438
55417
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
55439
55418
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
55440
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
55419
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
55441
55420
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
55442
55421
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
55443
55422
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -55445,13 +55424,13 @@ new message content.",
55445
55424
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
55446
55425
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
55447
55426
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
55448
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
55427
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
55449
55428
  "creatives.componentsV2.CapImageUpload.or": "OR",
55450
55429
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
55451
55430
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
55452
55431
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
55453
55432
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
55454
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
55433
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
55455
55434
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
55456
55435
  "creatives.componentsV2.CapTagList.Ok": "Ok",
55457
55436
  "creatives.componentsV2.CapTagList.all": "All",
@@ -57144,7 +57123,6 @@ new message content.",
57144
57123
  "creatives.containersV2.WeChat.templateName": "Template Name",
57145
57124
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
57146
57125
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
57147
- "creatives.containersV2.WebPush.addLabels": "Add labels",
57148
57126
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
57149
57127
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
57150
57128
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -61201,7 +61179,7 @@ new message content.",
61201
61179
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
61202
61180
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
61203
61181
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
61204
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
61182
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
61205
61183
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
61206
61184
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
61207
61185
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -61209,13 +61187,13 @@ new message content.",
61209
61187
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
61210
61188
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
61211
61189
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
61212
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
61190
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
61213
61191
  "creatives.componentsV2.CapImageUpload.or": "OR",
61214
61192
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
61215
61193
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
61216
61194
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
61217
61195
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
61218
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
61196
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
61219
61197
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
61220
61198
  "creatives.componentsV2.CapTagList.Ok": "Ok",
61221
61199
  "creatives.componentsV2.CapTagList.all": "All",
@@ -62908,7 +62886,6 @@ new message content.",
62908
62886
  "creatives.containersV2.WeChat.templateName": "Template Name",
62909
62887
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
62910
62888
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
62911
- "creatives.containersV2.WebPush.addLabels": "Add labels",
62912
62889
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
62913
62890
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
62914
62891
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -63513,7 +63490,7 @@ new message content.",
63513
63490
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
63514
63491
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
63515
63492
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
63516
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
63493
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
63517
63494
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
63518
63495
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
63519
63496
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -63521,13 +63498,13 @@ new message content.",
63521
63498
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
63522
63499
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
63523
63500
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
63524
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
63501
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
63525
63502
  "creatives.componentsV2.CapImageUpload.or": "OR",
63526
63503
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
63527
63504
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
63528
63505
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
63529
63506
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
63530
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
63507
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
63531
63508
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
63532
63509
  "creatives.componentsV2.CapTagList.Ok": "Ok",
63533
63510
  "creatives.componentsV2.CapTagList.all": "All",
@@ -65220,7 +65197,6 @@ new message content.",
65220
65197
  "creatives.containersV2.WeChat.templateName": "Template Name",
65221
65198
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
65222
65199
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
65223
- "creatives.containersV2.WebPush.addLabels": "Add labels",
65224
65200
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
65225
65201
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
65226
65202
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -65933,7 +65909,7 @@ exports[`Creatives rcs test/> template title change 1`] = `
65933
65909
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
65934
65910
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
65935
65911
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
65936
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
65912
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
65937
65913
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
65938
65914
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
65939
65915
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -65941,13 +65917,13 @@ exports[`Creatives rcs test/> template title change 1`] = `
65941
65917
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
65942
65918
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
65943
65919
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
65944
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
65920
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
65945
65921
  "creatives.componentsV2.CapImageUpload.or": "OR",
65946
65922
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
65947
65923
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
65948
65924
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
65949
65925
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
65950
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
65926
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
65951
65927
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
65952
65928
  "creatives.componentsV2.CapTagList.Ok": "Ok",
65953
65929
  "creatives.componentsV2.CapTagList.all": "All",
@@ -67640,7 +67616,6 @@ new message content.",
67640
67616
  "creatives.containersV2.WeChat.templateName": "Template Name",
67641
67617
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
67642
67618
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
67643
- "creatives.containersV2.WebPush.addLabels": "Add labels",
67644
67619
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
67645
67620
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
67646
67621
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -68026,7 +68001,6 @@ new message content.",
68026
68001
  "email": [Function],
68027
68002
  "facebookPreview": [Function],
68028
68003
  "gallery": [Function],
68029
- "inApp": [Function],
68030
68004
  "language": [Function],
68031
68005
  "navigationConfig": [Function],
68032
68006
  "previewAndTest": [Function],
@@ -69932,7 +69906,7 @@ new message content.",
69932
69906
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
69933
69907
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
69934
69908
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
69935
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
69909
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
69936
69910
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
69937
69911
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
69938
69912
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -69940,13 +69914,13 @@ new message content.",
69940
69914
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
69941
69915
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
69942
69916
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
69943
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
69917
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
69944
69918
  "creatives.componentsV2.CapImageUpload.or": "OR",
69945
69919
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
69946
69920
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
69947
69921
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
69948
69922
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
69949
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
69923
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
69950
69924
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
69951
69925
  "creatives.componentsV2.CapTagList.Ok": "Ok",
69952
69926
  "creatives.componentsV2.CapTagList.all": "All",
@@ -71639,7 +71613,6 @@ new message content.",
71639
71613
  "creatives.containersV2.WeChat.templateName": "Template Name",
71640
71614
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
71641
71615
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
71642
- "creatives.containersV2.WebPush.addLabels": "Add labels",
71643
71616
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
71644
71617
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
71645
71618
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -72191,7 +72164,7 @@ new message content.",
72191
72164
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
72192
72165
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
72193
72166
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
72194
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
72167
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
72195
72168
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
72196
72169
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
72197
72170
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -72199,13 +72172,13 @@ new message content.",
72199
72172
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
72200
72173
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
72201
72174
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
72202
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
72175
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
72203
72176
  "creatives.componentsV2.CapImageUpload.or": "OR",
72204
72177
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
72205
72178
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
72206
72179
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
72207
72180
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
72208
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
72181
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
72209
72182
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
72210
72183
  "creatives.componentsV2.CapTagList.Ok": "Ok",
72211
72184
  "creatives.componentsV2.CapTagList.all": "All",
@@ -73898,7 +73871,6 @@ new message content.",
73898
73871
  "creatives.containersV2.WeChat.templateName": "Template Name",
73899
73872
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
73900
73873
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
73901
- "creatives.containersV2.WebPush.addLabels": "Add labels",
73902
73874
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
73903
73875
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
73904
73876
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -77239,7 +77211,7 @@ new message content.",
77239
77211
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
77240
77212
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
77241
77213
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
77242
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
77214
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
77243
77215
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
77244
77216
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
77245
77217
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -77247,13 +77219,13 @@ new message content.",
77247
77219
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
77248
77220
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
77249
77221
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
77250
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
77222
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
77251
77223
  "creatives.componentsV2.CapImageUpload.or": "OR",
77252
77224
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
77253
77225
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
77254
77226
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
77255
77227
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
77256
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
77228
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
77257
77229
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
77258
77230
  "creatives.componentsV2.CapTagList.Ok": "Ok",
77259
77231
  "creatives.componentsV2.CapTagList.all": "All",
@@ -78946,7 +78918,6 @@ new message content.",
78946
78918
  "creatives.containersV2.WeChat.templateName": "Template Name",
78947
78919
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
78948
78920
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
78949
- "creatives.containersV2.WebPush.addLabels": "Add labels",
78950
78921
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
78951
78922
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
78952
78923
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -79551,7 +79522,7 @@ new message content.",
79551
79522
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
79552
79523
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
79553
79524
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
79554
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
79525
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
79555
79526
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
79556
79527
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
79557
79528
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -79559,13 +79530,13 @@ new message content.",
79559
79530
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
79560
79531
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
79561
79532
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
79562
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
79533
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
79563
79534
  "creatives.componentsV2.CapImageUpload.or": "OR",
79564
79535
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
79565
79536
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
79566
79537
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
79567
79538
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
79568
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
79539
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
79569
79540
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
79570
79541
  "creatives.componentsV2.CapTagList.Ok": "Ok",
79571
79542
  "creatives.componentsV2.CapTagList.all": "All",
@@ -81258,7 +81229,6 @@ new message content.",
81258
81229
  "creatives.containersV2.WeChat.templateName": "Template Name",
81259
81230
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
81260
81231
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
81261
- "creatives.containersV2.WebPush.addLabels": "Add labels",
81262
81232
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
81263
81233
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
81264
81234
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -81971,7 +81941,7 @@ exports[`Creatives rcs test/> template title change 2`] = `
81971
81941
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
81972
81942
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
81973
81943
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
81974
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
81944
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
81975
81945
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
81976
81946
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
81977
81947
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -81979,13 +81949,13 @@ exports[`Creatives rcs test/> template title change 2`] = `
81979
81949
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
81980
81950
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
81981
81951
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
81982
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
81952
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
81983
81953
  "creatives.componentsV2.CapImageUpload.or": "OR",
81984
81954
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
81985
81955
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
81986
81956
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
81987
81957
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
81988
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
81958
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
81989
81959
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
81990
81960
  "creatives.componentsV2.CapTagList.Ok": "Ok",
81991
81961
  "creatives.componentsV2.CapTagList.all": "All",
@@ -83678,7 +83648,6 @@ new message content.",
83678
83648
  "creatives.containersV2.WeChat.templateName": "Template Name",
83679
83649
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
83680
83650
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
83681
- "creatives.containersV2.WebPush.addLabels": "Add labels",
83682
83651
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
83683
83652
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
83684
83653
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -84064,7 +84033,6 @@ new message content.",
84064
84033
  "email": [Function],
84065
84034
  "facebookPreview": [Function],
84066
84035
  "gallery": [Function],
84067
- "inApp": [Function],
84068
84036
  "language": [Function],
84069
84037
  "navigationConfig": [Function],
84070
84038
  "previewAndTest": [Function],
@@ -86531,7 +86499,6 @@ new message content.",
86531
86499
  },
86532
86500
  ]
86533
86501
  }
86534
- showTruncatedTooltip={false}
86535
86502
  size="large"
86536
86503
  style={
86537
86504
  Object {
@@ -86551,7 +86518,6 @@ new message content.",
86551
86518
  />
86552
86519
  }
86553
86520
  onChange={[Function]}
86554
- onDropdownVisibleChange={[Function]}
86555
86521
  removeIcon={
86556
86522
  <_default
86557
86523
  size="s"
@@ -86617,7 +86583,6 @@ new message content.",
86617
86583
  onBlur={[Function]}
86618
86584
  onChange={[Function]}
86619
86585
  onDeselect={[Function]}
86620
- onDropdownVisibleChange={[Function]}
86621
86586
  onFocus={[Function]}
86622
86587
  onInputKeyDown={[Function]}
86623
86588
  onSearch={[Function]}
@@ -86856,13 +86821,9 @@ new message content.",
86856
86821
  "opacity": 1,
86857
86822
  }
86858
86823
  }
86859
- title=""
86824
+ title="Vertical Medium"
86860
86825
  >
86861
- <div
86862
- className="cap-select-option-tooltip"
86863
- >
86864
- Vertical Medium
86865
- </div>
86826
+ Vertical Medium
86866
86827
  </div>
86867
86828
  </div>
86868
86829
  <span
@@ -87698,7 +87659,7 @@ new message content.",
87698
87659
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
87699
87660
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
87700
87661
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
87701
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
87662
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
87702
87663
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
87703
87664
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
87704
87665
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -87706,13 +87667,13 @@ new message content.",
87706
87667
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
87707
87668
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
87708
87669
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
87709
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
87670
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
87710
87671
  "creatives.componentsV2.CapImageUpload.or": "OR",
87711
87672
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
87712
87673
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
87713
87674
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
87714
87675
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
87715
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
87676
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
87716
87677
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
87717
87678
  "creatives.componentsV2.CapTagList.Ok": "Ok",
87718
87679
  "creatives.componentsV2.CapTagList.all": "All",
@@ -89405,7 +89366,6 @@ new message content.",
89405
89366
  "creatives.containersV2.WeChat.templateName": "Template Name",
89406
89367
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
89407
89368
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
89408
- "creatives.containersV2.WebPush.addLabels": "Add labels",
89409
89369
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
89410
89370
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
89411
89371
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -89957,7 +89917,7 @@ new message content.",
89957
89917
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
89958
89918
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
89959
89919
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
89960
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
89920
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
89961
89921
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
89962
89922
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
89963
89923
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -89965,13 +89925,13 @@ new message content.",
89965
89925
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
89966
89926
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
89967
89927
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
89968
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
89928
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
89969
89929
  "creatives.componentsV2.CapImageUpload.or": "OR",
89970
89930
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
89971
89931
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
89972
89932
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
89973
89933
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
89974
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
89934
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
89975
89935
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
89976
89936
  "creatives.componentsV2.CapTagList.Ok": "Ok",
89977
89937
  "creatives.componentsV2.CapTagList.all": "All",
@@ -91664,7 +91624,6 @@ new message content.",
91664
91624
  "creatives.containersV2.WeChat.templateName": "Template Name",
91665
91625
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
91666
91626
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
91667
- "creatives.containersV2.WebPush.addLabels": "Add labels",
91668
91627
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
91669
91628
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
91670
91629
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -96593,7 +96552,7 @@ new message content.",
96593
96552
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
96594
96553
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
96595
96554
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
96596
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
96555
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
96597
96556
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
96598
96557
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
96599
96558
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -96601,13 +96560,13 @@ new message content.",
96601
96560
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
96602
96561
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
96603
96562
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
96604
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
96563
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
96605
96564
  "creatives.componentsV2.CapImageUpload.or": "OR",
96606
96565
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
96607
96566
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
96608
96567
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
96609
96568
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
96610
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
96569
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
96611
96570
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
96612
96571
  "creatives.componentsV2.CapTagList.Ok": "Ok",
96613
96572
  "creatives.componentsV2.CapTagList.all": "All",
@@ -98300,7 +98259,6 @@ new message content.",
98300
98259
  "creatives.containersV2.WeChat.templateName": "Template Name",
98301
98260
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
98302
98261
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
98303
- "creatives.containersV2.WebPush.addLabels": "Add labels",
98304
98262
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
98305
98263
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
98306
98264
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -98905,7 +98863,7 @@ new message content.",
98905
98863
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
98906
98864
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
98907
98865
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
98908
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
98866
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
98909
98867
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
98910
98868
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
98911
98869
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -98913,13 +98871,13 @@ new message content.",
98913
98871
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
98914
98872
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
98915
98873
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
98916
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
98874
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
98917
98875
  "creatives.componentsV2.CapImageUpload.or": "OR",
98918
98876
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
98919
98877
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
98920
98878
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
98921
98879
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
98922
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
98880
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
98923
98881
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
98924
98882
  "creatives.componentsV2.CapTagList.Ok": "Ok",
98925
98883
  "creatives.componentsV2.CapTagList.all": "All",
@@ -100612,7 +100570,6 @@ new message content.",
100612
100570
  "creatives.containersV2.WeChat.templateName": "Template Name",
100613
100571
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
100614
100572
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
100615
- "creatives.containersV2.WebPush.addLabels": "Add labels",
100616
100573
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
100617
100574
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
100618
100575
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -101325,7 +101282,7 @@ exports[`Creatives rcs test/> template title change 3`] = `
101325
101282
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
101326
101283
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
101327
101284
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
101328
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
101285
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
101329
101286
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
101330
101287
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
101331
101288
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -101333,13 +101290,13 @@ exports[`Creatives rcs test/> template title change 3`] = `
101333
101290
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
101334
101291
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
101335
101292
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
101336
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
101293
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
101337
101294
  "creatives.componentsV2.CapImageUpload.or": "OR",
101338
101295
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
101339
101296
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
101340
101297
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
101341
101298
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
101342
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
101299
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
101343
101300
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
101344
101301
  "creatives.componentsV2.CapTagList.Ok": "Ok",
101345
101302
  "creatives.componentsV2.CapTagList.all": "All",
@@ -103032,7 +102989,6 @@ new message content.",
103032
102989
  "creatives.containersV2.WeChat.templateName": "Template Name",
103033
102990
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
103034
102991
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
103035
- "creatives.containersV2.WebPush.addLabels": "Add labels",
103036
102992
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
103037
102993
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
103038
102994
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -103418,7 +103374,6 @@ new message content.",
103418
103374
  "email": [Function],
103419
103375
  "facebookPreview": [Function],
103420
103376
  "gallery": [Function],
103421
- "inApp": [Function],
103422
103377
  "language": [Function],
103423
103378
  "navigationConfig": [Function],
103424
103379
  "previewAndTest": [Function],
@@ -105885,7 +105840,6 @@ new message content.",
105885
105840
  },
105886
105841
  ]
105887
105842
  }
105888
- showTruncatedTooltip={false}
105889
105843
  size="large"
105890
105844
  style={
105891
105845
  Object {
@@ -105905,7 +105859,6 @@ new message content.",
105905
105859
  />
105906
105860
  }
105907
105861
  onChange={[Function]}
105908
- onDropdownVisibleChange={[Function]}
105909
105862
  removeIcon={
105910
105863
  <_default
105911
105864
  size="s"
@@ -105971,7 +105924,6 @@ new message content.",
105971
105924
  onBlur={[Function]}
105972
105925
  onChange={[Function]}
105973
105926
  onDeselect={[Function]}
105974
- onDropdownVisibleChange={[Function]}
105975
105927
  onFocus={[Function]}
105976
105928
  onInputKeyDown={[Function]}
105977
105929
  onSearch={[Function]}
@@ -106210,13 +106162,9 @@ new message content.",
106210
106162
  "opacity": 1,
106211
106163
  }
106212
106164
  }
106213
- title=""
106165
+ title="Vertical Medium"
106214
106166
  >
106215
- <div
106216
- className="cap-select-option-tooltip"
106217
- >
106218
- Vertical Medium
106219
- </div>
106167
+ Vertical Medium
106220
106168
  </div>
106221
106169
  </div>
106222
106170
  <span
@@ -107052,7 +107000,7 @@ new message content.",
107052
107000
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
107053
107001
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
107054
107002
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
107055
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
107003
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
107056
107004
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
107057
107005
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
107058
107006
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -107060,13 +107008,13 @@ new message content.",
107060
107008
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
107061
107009
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
107062
107010
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
107063
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
107011
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
107064
107012
  "creatives.componentsV2.CapImageUpload.or": "OR",
107065
107013
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
107066
107014
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
107067
107015
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
107068
107016
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
107069
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
107017
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
107070
107018
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
107071
107019
  "creatives.componentsV2.CapTagList.Ok": "Ok",
107072
107020
  "creatives.componentsV2.CapTagList.all": "All",
@@ -108759,7 +108707,6 @@ new message content.",
108759
108707
  "creatives.containersV2.WeChat.templateName": "Template Name",
108760
108708
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
108761
108709
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
108762
- "creatives.containersV2.WebPush.addLabels": "Add labels",
108763
108710
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
108764
108711
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
108765
108712
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -109311,7 +109258,7 @@ new message content.",
109311
109258
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
109312
109259
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
109313
109260
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
109314
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
109261
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
109315
109262
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
109316
109263
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
109317
109264
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -109319,13 +109266,13 @@ new message content.",
109319
109266
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
109320
109267
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
109321
109268
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
109322
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
109269
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
109323
109270
  "creatives.componentsV2.CapImageUpload.or": "OR",
109324
109271
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
109325
109272
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
109326
109273
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
109327
109274
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
109328
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
109275
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
109329
109276
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
109330
109277
  "creatives.componentsV2.CapTagList.Ok": "Ok",
109331
109278
  "creatives.componentsV2.CapTagList.all": "All",
@@ -111018,7 +110965,6 @@ new message content.",
111018
110965
  "creatives.containersV2.WeChat.templateName": "Template Name",
111019
110966
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
111020
110967
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
111021
- "creatives.containersV2.WebPush.addLabels": "Add labels",
111022
110968
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
111023
110969
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
111024
110970
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -115947,7 +115893,7 @@ new message content.",
115947
115893
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
115948
115894
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
115949
115895
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
115950
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
115896
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
115951
115897
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
115952
115898
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
115953
115899
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -115955,13 +115901,13 @@ new message content.",
115955
115901
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
115956
115902
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
115957
115903
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
115958
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
115904
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
115959
115905
  "creatives.componentsV2.CapImageUpload.or": "OR",
115960
115906
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
115961
115907
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
115962
115908
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
115963
115909
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
115964
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
115910
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
115965
115911
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
115966
115912
  "creatives.componentsV2.CapTagList.Ok": "Ok",
115967
115913
  "creatives.componentsV2.CapTagList.all": "All",
@@ -117654,7 +117600,6 @@ new message content.",
117654
117600
  "creatives.containersV2.WeChat.templateName": "Template Name",
117655
117601
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
117656
117602
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
117657
- "creatives.containersV2.WebPush.addLabels": "Add labels",
117658
117603
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
117659
117604
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
117660
117605
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -118259,7 +118204,7 @@ new message content.",
118259
118204
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
118260
118205
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
118261
118206
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
118262
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
118207
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
118263
118208
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
118264
118209
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
118265
118210
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -118267,13 +118212,13 @@ new message content.",
118267
118212
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
118268
118213
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
118269
118214
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
118270
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
118215
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
118271
118216
  "creatives.componentsV2.CapImageUpload.or": "OR",
118272
118217
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
118273
118218
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
118274
118219
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
118275
118220
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
118276
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
118221
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
118277
118222
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
118278
118223
  "creatives.componentsV2.CapTagList.Ok": "Ok",
118279
118224
  "creatives.componentsV2.CapTagList.all": "All",
@@ -119966,7 +119911,6 @@ new message content.",
119966
119911
  "creatives.containersV2.WeChat.templateName": "Template Name",
119967
119912
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
119968
119913
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
119969
- "creatives.containersV2.WebPush.addLabels": "Add labels",
119970
119914
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
119971
119915
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
119972
119916
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -120679,7 +120623,7 @@ exports[`Creatives rcs test/> template title change 4`] = `
120679
120623
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
120680
120624
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
120681
120625
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
120682
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
120626
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
120683
120627
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
120684
120628
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
120685
120629
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -120687,13 +120631,13 @@ exports[`Creatives rcs test/> template title change 4`] = `
120687
120631
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
120688
120632
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
120689
120633
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
120690
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
120634
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
120691
120635
  "creatives.componentsV2.CapImageUpload.or": "OR",
120692
120636
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
120693
120637
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
120694
120638
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
120695
120639
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
120696
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
120640
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
120697
120641
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
120698
120642
  "creatives.componentsV2.CapTagList.Ok": "Ok",
120699
120643
  "creatives.componentsV2.CapTagList.all": "All",
@@ -122386,7 +122330,6 @@ new message content.",
122386
122330
  "creatives.containersV2.WeChat.templateName": "Template Name",
122387
122331
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
122388
122332
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
122389
- "creatives.containersV2.WebPush.addLabels": "Add labels",
122390
122333
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
122391
122334
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
122392
122335
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -122772,7 +122715,6 @@ new message content.",
122772
122715
  "email": [Function],
122773
122716
  "facebookPreview": [Function],
122774
122717
  "gallery": [Function],
122775
- "inApp": [Function],
122776
122718
  "language": [Function],
122777
122719
  "navigationConfig": [Function],
122778
122720
  "previewAndTest": [Function],
@@ -126034,7 +125976,7 @@ new message content.",
126034
125976
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
126035
125977
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
126036
125978
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
126037
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
125979
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
126038
125980
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
126039
125981
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
126040
125982
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -126042,13 +125984,13 @@ new message content.",
126042
125984
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
126043
125985
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
126044
125986
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
126045
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
125987
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
126046
125988
  "creatives.componentsV2.CapImageUpload.or": "OR",
126047
125989
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
126048
125990
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
126049
125991
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
126050
125992
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
126051
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
125993
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
126052
125994
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
126053
125995
  "creatives.componentsV2.CapTagList.Ok": "Ok",
126054
125996
  "creatives.componentsV2.CapTagList.all": "All",
@@ -127741,7 +127683,6 @@ new message content.",
127741
127683
  "creatives.containersV2.WeChat.templateName": "Template Name",
127742
127684
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
127743
127685
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
127744
- "creatives.containersV2.WebPush.addLabels": "Add labels",
127745
127686
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
127746
127687
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
127747
127688
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -128293,7 +128234,7 @@ new message content.",
128293
128234
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
128294
128235
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
128295
128236
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
128296
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
128237
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
128297
128238
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
128298
128239
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
128299
128240
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -128301,13 +128242,13 @@ new message content.",
128301
128242
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
128302
128243
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
128303
128244
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
128304
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
128245
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
128305
128246
  "creatives.componentsV2.CapImageUpload.or": "OR",
128306
128247
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
128307
128248
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
128308
128249
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
128309
128250
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
128310
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
128251
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
128311
128252
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
128312
128253
  "creatives.componentsV2.CapTagList.Ok": "Ok",
128313
128254
  "creatives.componentsV2.CapTagList.all": "All",
@@ -130000,7 +129941,6 @@ new message content.",
130000
129941
  "creatives.containersV2.WeChat.templateName": "Template Name",
130001
129942
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
130002
129943
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
130003
- "creatives.containersV2.WebPush.addLabels": "Add labels",
130004
129944
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
130005
129945
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
130006
129946
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -135969,7 +135909,7 @@ new message content.",
135969
135909
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
135970
135910
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
135971
135911
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
135972
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
135912
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
135973
135913
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
135974
135914
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
135975
135915
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -135977,13 +135917,13 @@ new message content.",
135977
135917
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
135978
135918
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
135979
135919
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
135980
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
135920
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
135981
135921
  "creatives.componentsV2.CapImageUpload.or": "OR",
135982
135922
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
135983
135923
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
135984
135924
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
135985
135925
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
135986
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
135926
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
135987
135927
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
135988
135928
  "creatives.componentsV2.CapTagList.Ok": "Ok",
135989
135929
  "creatives.componentsV2.CapTagList.all": "All",
@@ -137676,7 +137616,6 @@ new message content.",
137676
137616
  "creatives.containersV2.WeChat.templateName": "Template Name",
137677
137617
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
137678
137618
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
137679
- "creatives.containersV2.WebPush.addLabels": "Add labels",
137680
137619
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
137681
137620
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
137682
137621
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -138281,7 +138220,7 @@ new message content.",
138281
138220
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
138282
138221
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
138283
138222
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
138284
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
138223
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
138285
138224
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
138286
138225
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
138287
138226
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -138289,13 +138228,13 @@ new message content.",
138289
138228
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
138290
138229
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
138291
138230
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
138292
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
138231
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
138293
138232
  "creatives.componentsV2.CapImageUpload.or": "OR",
138294
138233
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
138295
138234
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
138296
138235
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
138297
138236
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
138298
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
138237
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
138299
138238
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
138300
138239
  "creatives.componentsV2.CapTagList.Ok": "Ok",
138301
138240
  "creatives.componentsV2.CapTagList.all": "All",
@@ -139988,7 +139927,6 @@ new message content.",
139988
139927
  "creatives.containersV2.WeChat.templateName": "Template Name",
139989
139928
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
139990
139929
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
139991
- "creatives.containersV2.WebPush.addLabels": "Add labels",
139992
139930
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
139993
139931
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
139994
139932
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -140701,7 +140639,7 @@ exports[`Creatives rcs test/> template type change 1`] = `
140701
140639
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
140702
140640
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
140703
140641
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
140704
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
140642
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
140705
140643
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
140706
140644
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
140707
140645
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -140709,13 +140647,13 @@ exports[`Creatives rcs test/> template type change 1`] = `
140709
140647
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
140710
140648
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
140711
140649
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
140712
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
140650
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
140713
140651
  "creatives.componentsV2.CapImageUpload.or": "OR",
140714
140652
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
140715
140653
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
140716
140654
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
140717
140655
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
140718
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
140656
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
140719
140657
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
140720
140658
  "creatives.componentsV2.CapTagList.Ok": "Ok",
140721
140659
  "creatives.componentsV2.CapTagList.all": "All",
@@ -142408,7 +142346,6 @@ new message content.",
142408
142346
  "creatives.containersV2.WeChat.templateName": "Template Name",
142409
142347
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
142410
142348
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
142411
- "creatives.containersV2.WebPush.addLabels": "Add labels",
142412
142349
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
142413
142350
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
142414
142351
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -142794,7 +142731,6 @@ new message content.",
142794
142731
  "email": [Function],
142795
142732
  "facebookPreview": [Function],
142796
142733
  "gallery": [Function],
142797
- "inApp": [Function],
142798
142734
  "language": [Function],
142799
142735
  "navigationConfig": [Function],
142800
142736
  "previewAndTest": [Function],
@@ -144700,7 +144636,7 @@ new message content.",
144700
144636
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
144701
144637
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
144702
144638
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
144703
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
144639
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
144704
144640
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
144705
144641
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
144706
144642
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -144708,13 +144644,13 @@ new message content.",
144708
144644
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
144709
144645
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
144710
144646
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
144711
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
144647
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
144712
144648
  "creatives.componentsV2.CapImageUpload.or": "OR",
144713
144649
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
144714
144650
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
144715
144651
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
144716
144652
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
144717
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
144653
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
144718
144654
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
144719
144655
  "creatives.componentsV2.CapTagList.Ok": "Ok",
144720
144656
  "creatives.componentsV2.CapTagList.all": "All",
@@ -146407,7 +146343,6 @@ new message content.",
146407
146343
  "creatives.containersV2.WeChat.templateName": "Template Name",
146408
146344
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
146409
146345
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
146410
- "creatives.containersV2.WebPush.addLabels": "Add labels",
146411
146346
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
146412
146347
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
146413
146348
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -146959,7 +146894,7 @@ new message content.",
146959
146894
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
146960
146895
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
146961
146896
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
146962
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
146897
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
146963
146898
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
146964
146899
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
146965
146900
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -146967,13 +146902,13 @@ new message content.",
146967
146902
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
146968
146903
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
146969
146904
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
146970
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
146905
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
146971
146906
  "creatives.componentsV2.CapImageUpload.or": "OR",
146972
146907
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
146973
146908
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
146974
146909
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
146975
146910
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
146976
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
146911
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
146977
146912
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
146978
146913
  "creatives.componentsV2.CapTagList.Ok": "Ok",
146979
146914
  "creatives.componentsV2.CapTagList.all": "All",
@@ -148666,7 +148601,6 @@ new message content.",
148666
148601
  "creatives.containersV2.WeChat.templateName": "Template Name",
148667
148602
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
148668
148603
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
148669
- "creatives.containersV2.WebPush.addLabels": "Add labels",
148670
148604
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
148671
148605
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
148672
148606
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -152007,7 +151941,7 @@ new message content.",
152007
151941
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
152008
151942
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
152009
151943
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
152010
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
151944
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
152011
151945
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
152012
151946
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
152013
151947
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -152015,13 +151949,13 @@ new message content.",
152015
151949
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
152016
151950
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
152017
151951
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
152018
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
151952
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
152019
151953
  "creatives.componentsV2.CapImageUpload.or": "OR",
152020
151954
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
152021
151955
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
152022
151956
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
152023
151957
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
152024
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
151958
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
152025
151959
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
152026
151960
  "creatives.componentsV2.CapTagList.Ok": "Ok",
152027
151961
  "creatives.componentsV2.CapTagList.all": "All",
@@ -153714,7 +153648,6 @@ new message content.",
153714
153648
  "creatives.containersV2.WeChat.templateName": "Template Name",
153715
153649
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
153716
153650
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
153717
- "creatives.containersV2.WebPush.addLabels": "Add labels",
153718
153651
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
153719
153652
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
153720
153653
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -154319,7 +154252,7 @@ new message content.",
154319
154252
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
154320
154253
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
154321
154254
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
154322
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
154255
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
154323
154256
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
154324
154257
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
154325
154258
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -154327,13 +154260,13 @@ new message content.",
154327
154260
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
154328
154261
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
154329
154262
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
154330
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
154263
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
154331
154264
  "creatives.componentsV2.CapImageUpload.or": "OR",
154332
154265
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
154333
154266
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
154334
154267
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
154335
154268
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
154336
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
154269
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
154337
154270
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
154338
154271
  "creatives.componentsV2.CapTagList.Ok": "Ok",
154339
154272
  "creatives.componentsV2.CapTagList.all": "All",
@@ -156026,7 +155959,6 @@ new message content.",
156026
155959
  "creatives.containersV2.WeChat.templateName": "Template Name",
156027
155960
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
156028
155961
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
156029
- "creatives.containersV2.WebPush.addLabels": "Add labels",
156030
155962
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
156031
155963
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
156032
155964
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -156739,7 +156671,7 @@ exports[`Creatives rcs test/> template type change 2`] = `
156739
156671
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
156740
156672
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
156741
156673
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
156742
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
156674
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
156743
156675
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
156744
156676
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
156745
156677
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -156747,13 +156679,13 @@ exports[`Creatives rcs test/> template type change 2`] = `
156747
156679
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
156748
156680
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
156749
156681
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
156750
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
156682
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
156751
156683
  "creatives.componentsV2.CapImageUpload.or": "OR",
156752
156684
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
156753
156685
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
156754
156686
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
156755
156687
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
156756
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
156688
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
156757
156689
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
156758
156690
  "creatives.componentsV2.CapTagList.Ok": "Ok",
156759
156691
  "creatives.componentsV2.CapTagList.all": "All",
@@ -158446,7 +158378,6 @@ new message content.",
158446
158378
  "creatives.containersV2.WeChat.templateName": "Template Name",
158447
158379
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
158448
158380
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
158449
- "creatives.containersV2.WebPush.addLabels": "Add labels",
158450
158381
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
158451
158382
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
158452
158383
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -158832,7 +158763,6 @@ new message content.",
158832
158763
  "email": [Function],
158833
158764
  "facebookPreview": [Function],
158834
158765
  "gallery": [Function],
158835
- "inApp": [Function],
158836
158766
  "language": [Function],
158837
158767
  "navigationConfig": [Function],
158838
158768
  "previewAndTest": [Function],
@@ -160738,7 +160668,7 @@ new message content.",
160738
160668
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
160739
160669
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
160740
160670
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
160741
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
160671
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
160742
160672
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
160743
160673
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
160744
160674
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -160746,13 +160676,13 @@ new message content.",
160746
160676
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
160747
160677
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
160748
160678
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
160749
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
160679
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
160750
160680
  "creatives.componentsV2.CapImageUpload.or": "OR",
160751
160681
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
160752
160682
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
160753
160683
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
160754
160684
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
160755
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
160685
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
160756
160686
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
160757
160687
  "creatives.componentsV2.CapTagList.Ok": "Ok",
160758
160688
  "creatives.componentsV2.CapTagList.all": "All",
@@ -162445,7 +162375,6 @@ new message content.",
162445
162375
  "creatives.containersV2.WeChat.templateName": "Template Name",
162446
162376
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
162447
162377
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
162448
- "creatives.containersV2.WebPush.addLabels": "Add labels",
162449
162378
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
162450
162379
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
162451
162380
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -162997,7 +162926,7 @@ new message content.",
162997
162926
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
162998
162927
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
162999
162928
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
163000
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
162929
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
163001
162930
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
163002
162931
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
163003
162932
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -163005,13 +162934,13 @@ new message content.",
163005
162934
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
163006
162935
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
163007
162936
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
163008
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
162937
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
163009
162938
  "creatives.componentsV2.CapImageUpload.or": "OR",
163010
162939
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
163011
162940
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
163012
162941
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
163013
162942
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
163014
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
162943
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
163015
162944
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
163016
162945
  "creatives.componentsV2.CapTagList.Ok": "Ok",
163017
162946
  "creatives.componentsV2.CapTagList.all": "All",
@@ -164704,7 +164633,6 @@ new message content.",
164704
164633
  "creatives.containersV2.WeChat.templateName": "Template Name",
164705
164634
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
164706
164635
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
164707
- "creatives.containersV2.WebPush.addLabels": "Add labels",
164708
164636
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
164709
164637
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
164710
164638
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -168045,7 +167973,7 @@ new message content.",
168045
167973
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
168046
167974
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
168047
167975
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
168048
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
167976
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
168049
167977
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
168050
167978
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
168051
167979
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -168053,13 +167981,13 @@ new message content.",
168053
167981
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
168054
167982
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
168055
167983
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
168056
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
167984
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
168057
167985
  "creatives.componentsV2.CapImageUpload.or": "OR",
168058
167986
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
168059
167987
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
168060
167988
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
168061
167989
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
168062
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
167990
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
168063
167991
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
168064
167992
  "creatives.componentsV2.CapTagList.Ok": "Ok",
168065
167993
  "creatives.componentsV2.CapTagList.all": "All",
@@ -169752,7 +169680,6 @@ new message content.",
169752
169680
  "creatives.containersV2.WeChat.templateName": "Template Name",
169753
169681
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
169754
169682
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
169755
- "creatives.containersV2.WebPush.addLabels": "Add labels",
169756
169683
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
169757
169684
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
169758
169685
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -170357,7 +170284,7 @@ new message content.",
170357
170284
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
170358
170285
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
170359
170286
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
170360
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
170287
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
170361
170288
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
170362
170289
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
170363
170290
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -170365,13 +170292,13 @@ new message content.",
170365
170292
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
170366
170293
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
170367
170294
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
170368
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
170295
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
170369
170296
  "creatives.componentsV2.CapImageUpload.or": "OR",
170370
170297
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
170371
170298
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
170372
170299
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
170373
170300
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
170374
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
170301
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
170375
170302
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
170376
170303
  "creatives.componentsV2.CapTagList.Ok": "Ok",
170377
170304
  "creatives.componentsV2.CapTagList.all": "All",
@@ -172064,7 +171991,6 @@ new message content.",
172064
171991
  "creatives.containersV2.WeChat.templateName": "Template Name",
172065
171992
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
172066
171993
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
172067
- "creatives.containersV2.WebPush.addLabels": "Add labels",
172068
171994
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
172069
171995
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
172070
171996
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -172777,7 +172703,7 @@ exports[`Creatives rcs test/> template type change 3`] = `
172777
172703
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
172778
172704
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
172779
172705
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
172780
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
172706
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
172781
172707
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
172782
172708
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
172783
172709
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -172785,13 +172711,13 @@ exports[`Creatives rcs test/> template type change 3`] = `
172785
172711
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
172786
172712
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
172787
172713
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
172788
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
172714
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
172789
172715
  "creatives.componentsV2.CapImageUpload.or": "OR",
172790
172716
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
172791
172717
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
172792
172718
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
172793
172719
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
172794
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
172720
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
172795
172721
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
172796
172722
  "creatives.componentsV2.CapTagList.Ok": "Ok",
172797
172723
  "creatives.componentsV2.CapTagList.all": "All",
@@ -174484,7 +174410,6 @@ new message content.",
174484
174410
  "creatives.containersV2.WeChat.templateName": "Template Name",
174485
174411
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
174486
174412
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
174487
- "creatives.containersV2.WebPush.addLabels": "Add labels",
174488
174413
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
174489
174414
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
174490
174415
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -174870,7 +174795,6 @@ new message content.",
174870
174795
  "email": [Function],
174871
174796
  "facebookPreview": [Function],
174872
174797
  "gallery": [Function],
174873
- "inApp": [Function],
174874
174798
  "language": [Function],
174875
174799
  "navigationConfig": [Function],
174876
174800
  "previewAndTest": [Function],
@@ -176776,7 +176700,7 @@ new message content.",
176776
176700
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
176777
176701
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
176778
176702
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
176779
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
176703
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
176780
176704
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
176781
176705
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
176782
176706
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -176784,13 +176708,13 @@ new message content.",
176784
176708
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
176785
176709
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
176786
176710
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
176787
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
176711
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
176788
176712
  "creatives.componentsV2.CapImageUpload.or": "OR",
176789
176713
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
176790
176714
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
176791
176715
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
176792
176716
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
176793
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
176717
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
176794
176718
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
176795
176719
  "creatives.componentsV2.CapTagList.Ok": "Ok",
176796
176720
  "creatives.componentsV2.CapTagList.all": "All",
@@ -178483,7 +178407,6 @@ new message content.",
178483
178407
  "creatives.containersV2.WeChat.templateName": "Template Name",
178484
178408
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
178485
178409
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
178486
- "creatives.containersV2.WebPush.addLabels": "Add labels",
178487
178410
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
178488
178411
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
178489
178412
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -179035,7 +178958,7 @@ new message content.",
179035
178958
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
179036
178959
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
179037
178960
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
179038
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
178961
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
179039
178962
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
179040
178963
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
179041
178964
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -179043,13 +178966,13 @@ new message content.",
179043
178966
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
179044
178967
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
179045
178968
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
179046
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
178969
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
179047
178970
  "creatives.componentsV2.CapImageUpload.or": "OR",
179048
178971
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
179049
178972
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
179050
178973
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
179051
178974
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
179052
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
178975
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
179053
178976
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
179054
178977
  "creatives.componentsV2.CapTagList.Ok": "Ok",
179055
178978
  "creatives.componentsV2.CapTagList.all": "All",
@@ -180742,7 +180665,6 @@ new message content.",
180742
180665
  "creatives.containersV2.WeChat.templateName": "Template Name",
180743
180666
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
180744
180667
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
180745
- "creatives.containersV2.WebPush.addLabels": "Add labels",
180746
180668
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
180747
180669
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
180748
180670
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -184083,7 +184005,7 @@ new message content.",
184083
184005
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
184084
184006
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
184085
184007
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
184086
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
184008
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
184087
184009
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
184088
184010
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
184089
184011
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -184091,13 +184013,13 @@ new message content.",
184091
184013
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
184092
184014
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
184093
184015
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
184094
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
184016
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
184095
184017
  "creatives.componentsV2.CapImageUpload.or": "OR",
184096
184018
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
184097
184019
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
184098
184020
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
184099
184021
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
184100
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
184022
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
184101
184023
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
184102
184024
  "creatives.componentsV2.CapTagList.Ok": "Ok",
184103
184025
  "creatives.componentsV2.CapTagList.all": "All",
@@ -185790,7 +185712,6 @@ new message content.",
185790
185712
  "creatives.containersV2.WeChat.templateName": "Template Name",
185791
185713
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
185792
185714
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
185793
- "creatives.containersV2.WebPush.addLabels": "Add labels",
185794
185715
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
185795
185716
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
185796
185717
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -186395,7 +186316,7 @@ new message content.",
186395
186316
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
186396
186317
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
186397
186318
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
186398
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
186319
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
186399
186320
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
186400
186321
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
186401
186322
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -186403,13 +186324,13 @@ new message content.",
186403
186324
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
186404
186325
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
186405
186326
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
186406
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
186327
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
186407
186328
  "creatives.componentsV2.CapImageUpload.or": "OR",
186408
186329
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
186409
186330
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
186410
186331
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
186411
186332
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
186412
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
186333
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
186413
186334
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
186414
186335
  "creatives.componentsV2.CapTagList.Ok": "Ok",
186415
186336
  "creatives.componentsV2.CapTagList.all": "All",
@@ -188102,7 +188023,6 @@ new message content.",
188102
188023
  "creatives.containersV2.WeChat.templateName": "Template Name",
188103
188024
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
188104
188025
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
188105
- "creatives.containersV2.WebPush.addLabels": "Add labels",
188106
188026
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
188107
188027
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
188108
188028
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -188815,7 +188735,7 @@ exports[`Creatives rcs test/> template type change 4`] = `
188815
188735
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
188816
188736
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
188817
188737
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
188818
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
188738
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
188819
188739
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
188820
188740
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
188821
188741
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -188823,13 +188743,13 @@ exports[`Creatives rcs test/> template type change 4`] = `
188823
188743
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
188824
188744
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
188825
188745
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
188826
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
188746
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
188827
188747
  "creatives.componentsV2.CapImageUpload.or": "OR",
188828
188748
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
188829
188749
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
188830
188750
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
188831
188751
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
188832
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
188752
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
188833
188753
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
188834
188754
  "creatives.componentsV2.CapTagList.Ok": "Ok",
188835
188755
  "creatives.componentsV2.CapTagList.all": "All",
@@ -190522,7 +190442,6 @@ new message content.",
190522
190442
  "creatives.containersV2.WeChat.templateName": "Template Name",
190523
190443
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
190524
190444
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
190525
- "creatives.containersV2.WebPush.addLabels": "Add labels",
190526
190445
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
190527
190446
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
190528
190447
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -190908,7 +190827,6 @@ new message content.",
190908
190827
  "email": [Function],
190909
190828
  "facebookPreview": [Function],
190910
190829
  "gallery": [Function],
190911
- "inApp": [Function],
190912
190830
  "language": [Function],
190913
190831
  "navigationConfig": [Function],
190914
190832
  "previewAndTest": [Function],
@@ -196619,7 +196537,7 @@ new message content.",
196619
196537
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
196620
196538
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
196621
196539
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
196622
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
196540
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
196623
196541
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
196624
196542
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
196625
196543
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -196627,13 +196545,13 @@ new message content.",
196627
196545
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
196628
196546
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
196629
196547
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
196630
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
196548
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
196631
196549
  "creatives.componentsV2.CapImageUpload.or": "OR",
196632
196550
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
196633
196551
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
196634
196552
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
196635
196553
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
196636
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
196554
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
196637
196555
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
196638
196556
  "creatives.componentsV2.CapTagList.Ok": "Ok",
196639
196557
  "creatives.componentsV2.CapTagList.all": "All",
@@ -198326,7 +198244,6 @@ new message content.",
198326
198244
  "creatives.containersV2.WeChat.templateName": "Template Name",
198327
198245
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
198328
198246
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
198329
- "creatives.containersV2.WebPush.addLabels": "Add labels",
198330
198247
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
198331
198248
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
198332
198249
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -198920,7 +198837,7 @@ new message content.",
198920
198837
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
198921
198838
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
198922
198839
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
198923
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
198840
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
198924
198841
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
198925
198842
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
198926
198843
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -198928,13 +198845,13 @@ new message content.",
198928
198845
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
198929
198846
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
198930
198847
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
198931
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
198848
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
198932
198849
  "creatives.componentsV2.CapImageUpload.or": "OR",
198933
198850
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
198934
198851
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
198935
198852
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
198936
198853
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
198937
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
198854
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
198938
198855
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
198939
198856
  "creatives.componentsV2.CapTagList.Ok": "Ok",
198940
198857
  "creatives.componentsV2.CapTagList.all": "All",
@@ -200627,7 +200544,6 @@ new message content.",
200627
200544
  "creatives.containersV2.WeChat.templateName": "Template Name",
200628
200545
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
200629
200546
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
200630
- "creatives.containersV2.WebPush.addLabels": "Add labels",
200631
200547
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
200632
200548
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
200633
200549
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",