@capillarytech/creatives-library 8.0.250-alpha.2 → 8.0.251

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 (276) hide show
  1. package/assets/Android.png +0 -0
  2. package/assets/iOS.png +0 -0
  3. package/constants/unified.js +1 -3
  4. package/initialReducer.js +0 -2
  5. package/package.json +1 -1
  6. package/services/api.js +0 -15
  7. package/services/tests/api.test.js +0 -34
  8. package/translations/en.json +3 -4
  9. package/utils/common.js +0 -11
  10. package/utils/commonUtils.js +5 -28
  11. package/utils/tests/commonUtil.test.js +0 -224
  12. package/utils/tests/transformerUtils.test.js +0 -297
  13. package/utils/transformTemplateConfig.js +10 -0
  14. package/utils/transformerUtils.js +0 -40
  15. package/v2Components/CapDeviceContent/index.js +56 -61
  16. package/v2Components/CapImageUpload/constants.js +0 -2
  17. package/v2Components/CapImageUpload/index.js +16 -65
  18. package/v2Components/CapImageUpload/index.scss +1 -4
  19. package/v2Components/CapImageUpload/messages.js +1 -5
  20. package/v2Components/CapTagList/index.js +1 -6
  21. package/v2Components/CapTagListWithInput/index.js +1 -5
  22. package/v2Components/CapTagListWithInput/messages.js +1 -1
  23. package/v2Components/CapWhatsappCTA/tests/index.test.js +0 -5
  24. package/v2Components/ErrorInfoNote/index.js +72 -455
  25. package/v2Components/ErrorInfoNote/messages.js +6 -36
  26. package/v2Components/ErrorInfoNote/style.scss +4 -280
  27. package/v2Components/FormBuilder/tests/index.test.js +4 -13
  28. package/v2Components/HtmlEditor/HTMLEditor.js +94 -547
  29. package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +133 -1358
  30. package/v2Components/HtmlEditor/__tests__/index.lazy.test.js +16 -27
  31. package/v2Components/HtmlEditor/_htmlEditor.scss +45 -108
  32. package/v2Components/HtmlEditor/_index.lazy.scss +1 -1
  33. package/v2Components/HtmlEditor/components/CodeEditorPane/_codeEditorPane.scss +101 -22
  34. package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +140 -146
  35. package/v2Components/HtmlEditor/components/DeviceToggle/_deviceToggle.scss +1 -2
  36. package/v2Components/HtmlEditor/components/DeviceToggle/index.js +3 -3
  37. package/v2Components/HtmlEditor/components/EditorToolbar/_editorToolbar.scss +0 -9
  38. package/v2Components/HtmlEditor/components/EditorToolbar/index.js +1 -1
  39. package/v2Components/HtmlEditor/components/FullscreenModal/_fullscreenModal.scss +0 -22
  40. package/v2Components/HtmlEditor/components/InAppPreviewPane/DeviceFrame.js +7 -4
  41. package/v2Components/HtmlEditor/components/InAppPreviewPane/__tests__/DeviceFrame.test.js +45 -35
  42. package/v2Components/HtmlEditor/components/InAppPreviewPane/_inAppPreviewPane.scss +3 -1
  43. package/v2Components/HtmlEditor/components/InAppPreviewPane/constants.js +33 -33
  44. package/v2Components/HtmlEditor/components/InAppPreviewPane/index.js +6 -7
  45. package/v2Components/HtmlEditor/components/PreviewPane/_previewPane.scss +6 -3
  46. package/v2Components/HtmlEditor/components/PreviewPane/index.js +34 -24
  47. package/v2Components/HtmlEditor/components/SplitContainer/_splitContainer.scss +1 -1
  48. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/__tests__/index.test.js +152 -0
  49. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/index.js +31 -49
  50. package/v2Components/HtmlEditor/components/ValidationPanel/_validationPanel.scss +34 -50
  51. package/v2Components/HtmlEditor/components/ValidationPanel/index.js +41 -70
  52. package/v2Components/HtmlEditor/constants.js +20 -42
  53. package/v2Components/HtmlEditor/hooks/__tests__/useInAppContent.test.js +16 -373
  54. package/v2Components/HtmlEditor/hooks/useEditorContent.js +2 -5
  55. package/v2Components/HtmlEditor/hooks/useInAppContent.js +146 -88
  56. package/v2Components/HtmlEditor/hooks/useValidation.js +53 -189
  57. package/v2Components/HtmlEditor/index.js +1 -1
  58. package/v2Components/HtmlEditor/messages.js +85 -95
  59. package/v2Components/HtmlEditor/utils/__tests__/htmlValidator.enhanced.test.js +45 -94
  60. package/v2Components/HtmlEditor/utils/__tests__/validationAdapter.test.js +0 -134
  61. package/v2Components/HtmlEditor/utils/contentSanitizer.js +41 -40
  62. package/v2Components/HtmlEditor/utils/htmlValidator.js +72 -71
  63. package/v2Components/HtmlEditor/utils/liquidTemplateSupport.js +102 -134
  64. package/v2Components/HtmlEditor/utils/properSyntaxHighlighting.js +25 -23
  65. package/v2Components/HtmlEditor/utils/validationAdapter.js +41 -66
  66. package/v2Components/MobilePushPreviewV2/index.js +7 -32
  67. package/v2Components/TemplatePreview/_templatePreview.scss +24 -55
  68. package/v2Components/TemplatePreview/index.js +32 -47
  69. package/v2Components/TemplatePreview/messages.js +0 -4
  70. package/v2Components/TestAndPreviewSlidebox/_testAndPreviewSlidebox.scss +0 -1
  71. package/v2Containers/App/constants.js +0 -5
  72. package/v2Containers/BeeEditor/index.js +90 -172
  73. package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +3 -4
  74. package/v2Containers/CreativesContainer/SlideBoxContent.js +53 -184
  75. package/v2Containers/CreativesContainer/SlideBoxFooter.js +13 -163
  76. package/v2Containers/CreativesContainer/SlideBoxHeader.js +1 -3
  77. package/v2Containers/CreativesContainer/constants.js +0 -4
  78. package/v2Containers/CreativesContainer/index.js +46 -407
  79. package/v2Containers/CreativesContainer/messages.js +0 -12
  80. package/v2Containers/CreativesContainer/tests/SlideBoxContent.test.js +0 -210
  81. package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +2 -11
  82. package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +50 -342
  83. package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +0 -106
  84. package/v2Containers/Email/actions.js +0 -7
  85. package/v2Containers/Email/constants.js +1 -5
  86. package/v2Containers/Email/index.js +29 -234
  87. package/v2Containers/Email/messages.js +0 -32
  88. package/v2Containers/Email/reducer.js +1 -12
  89. package/v2Containers/Email/sagas.js +7 -61
  90. package/v2Containers/Email/tests/__snapshots__/reducer.test.js.snap +0 -2
  91. package/v2Containers/Email/tests/reducer.test.js +0 -46
  92. package/v2Containers/Email/tests/sagas.test.js +29 -320
  93. package/v2Containers/EmailWrapper/components/EmailWrapperView.js +19 -207
  94. package/v2Containers/EmailWrapper/components/HTMLEditorTesting.js +74 -40
  95. package/v2Containers/EmailWrapper/components/__tests__/HTMLEditorTesting.test.js +67 -2
  96. package/v2Containers/EmailWrapper/constants.js +0 -2
  97. package/v2Containers/EmailWrapper/hooks/useEmailWrapper.js +77 -629
  98. package/v2Containers/EmailWrapper/index.js +23 -103
  99. package/v2Containers/EmailWrapper/messages.js +1 -61
  100. package/v2Containers/EmailWrapper/tests/EmailWrapperView.test.js +214 -0
  101. package/v2Containers/EmailWrapper/tests/useEmailWrapper.test.js +77 -594
  102. package/v2Containers/InApp/actions.js +0 -7
  103. package/v2Containers/InApp/constants.js +4 -20
  104. package/v2Containers/InApp/index.js +359 -802
  105. package/v2Containers/InApp/index.scss +3 -4
  106. package/v2Containers/InApp/messages.js +3 -7
  107. package/v2Containers/InApp/reducer.js +3 -21
  108. package/v2Containers/InApp/sagas.js +9 -29
  109. package/v2Containers/InApp/selectors.js +5 -25
  110. package/v2Containers/InApp/tests/index.test.js +50 -154
  111. package/v2Containers/InApp/tests/reducer.test.js +0 -34
  112. package/v2Containers/InApp/tests/sagas.test.js +9 -61
  113. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +9 -15
  114. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +6 -10
  115. package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +75 -102
  116. package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +54 -81
  117. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +174 -244
  118. package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +12 -16
  119. package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +36 -52
  120. package/v2Containers/TagList/index.js +19 -62
  121. package/v2Containers/Templates/ChannelTypeIllustration.js +1 -13
  122. package/v2Containers/Templates/_templates.scss +1 -265
  123. package/v2Containers/Templates/actions.js +1 -2
  124. package/v2Containers/Templates/constants.js +0 -1
  125. package/v2Containers/Templates/index.js +38 -363
  126. package/v2Containers/Templates/messages.js +0 -28
  127. package/v2Containers/Templates/reducer.js +0 -4
  128. package/v2Containers/Templates/tests/index.test.js +0 -10
  129. package/v2Containers/TemplatesV2/index.js +7 -15
  130. package/v2Containers/TemplatesV2/messages.js +0 -4
  131. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +486 -682
  132. package/utils/imageUrlUpload.js +0 -141
  133. package/v2Components/CapImageUrlUpload/constants.js +0 -26
  134. package/v2Components/CapImageUrlUpload/index.js +0 -365
  135. package/v2Components/CapImageUrlUpload/index.scss +0 -35
  136. package/v2Components/CapImageUrlUpload/messages.js +0 -47
  137. package/v2Components/HtmlEditor/__tests__/HTMLEditor.apiErrors.test.js +0 -874
  138. package/v2Components/HtmlEditor/components/ValidationPanel/constants.js +0 -6
  139. package/v2Components/HtmlEditor/components/ValidationTabs/_validationTabs.scss +0 -254
  140. package/v2Components/HtmlEditor/components/ValidationTabs/index.js +0 -364
  141. package/v2Components/HtmlEditor/components/ValidationTabs/messages.js +0 -51
  142. package/v2Components/HtmlEditor/hooks/__tests__/useValidation.apiErrors.test.js +0 -795
  143. package/v2Components/HtmlEditor/utils/validationConstants.js +0 -40
  144. package/v2Containers/BeePopupEditor/_beePopupEditor.scss +0 -14
  145. package/v2Containers/BeePopupEditor/constants.js +0 -10
  146. package/v2Containers/BeePopupEditor/index.js +0 -194
  147. package/v2Containers/BeePopupEditor/tests/index.test.js +0 -627
  148. package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +0 -1285
  149. package/v2Containers/EmailWrapper/components/__tests__/EmailHTMLEditor.test.js +0 -1870
  150. package/v2Containers/EmailWrapper/components/__tests__/EmailWrapperView.test.js +0 -520
  151. package/v2Containers/EmailWrapper/tests/useEmailWrapper.edgeCases.test.js +0 -643
  152. package/v2Containers/InApp/__tests__/InAppHTMLEditor.test.js +0 -376
  153. package/v2Containers/InApp/__tests__/sagas.test.js +0 -363
  154. package/v2Containers/InApp/tests/selectors.test.js +0 -612
  155. package/v2Containers/InAppWrapper/components/InAppWrapperView.js +0 -151
  156. package/v2Containers/InAppWrapper/components/__tests__/InAppWrapperView.test.js +0 -267
  157. package/v2Containers/InAppWrapper/components/inAppWrapperView.scss +0 -23
  158. package/v2Containers/InAppWrapper/constants.js +0 -16
  159. package/v2Containers/InAppWrapper/hooks/__tests__/useInAppWrapper.test.js +0 -473
  160. package/v2Containers/InAppWrapper/hooks/useInAppWrapper.js +0 -198
  161. package/v2Containers/InAppWrapper/index.js +0 -148
  162. package/v2Containers/InAppWrapper/messages.js +0 -49
  163. package/v2Containers/InappAdvance/index.js +0 -1099
  164. package/v2Containers/InappAdvance/index.scss +0 -10
  165. package/v2Containers/InappAdvance/tests/index.test.js +0 -448
  166. package/v2Containers/WebPush/Create/components/BrandIconSection.js +0 -108
  167. package/v2Containers/WebPush/Create/components/ButtonForm.js +0 -172
  168. package/v2Containers/WebPush/Create/components/ButtonItem.js +0 -101
  169. package/v2Containers/WebPush/Create/components/ButtonList.js +0 -107
  170. package/v2Containers/WebPush/Create/components/ButtonsLinksSection.js +0 -160
  171. package/v2Containers/WebPush/Create/components/ButtonsLinksSection.test.js +0 -476
  172. package/v2Containers/WebPush/Create/components/FormActions.js +0 -54
  173. package/v2Containers/WebPush/Create/components/FormActions.test.js +0 -163
  174. package/v2Containers/WebPush/Create/components/MediaSection.js +0 -143
  175. package/v2Containers/WebPush/Create/components/MediaSection.test.js +0 -341
  176. package/v2Containers/WebPush/Create/components/MessageSection.js +0 -103
  177. package/v2Containers/WebPush/Create/components/MessageSection.test.js +0 -268
  178. package/v2Containers/WebPush/Create/components/NotificationTitleSection.js +0 -87
  179. package/v2Containers/WebPush/Create/components/NotificationTitleSection.test.js +0 -210
  180. package/v2Containers/WebPush/Create/components/TemplateNameSection.js +0 -54
  181. package/v2Containers/WebPush/Create/components/TemplateNameSection.test.js +0 -143
  182. package/v2Containers/WebPush/Create/components/__snapshots__/ButtonsLinksSection.test.js.snap +0 -82
  183. package/v2Containers/WebPush/Create/components/__snapshots__/FormActions.test.js.snap +0 -16
  184. package/v2Containers/WebPush/Create/components/__snapshots__/MediaSection.test.js.snap +0 -41
  185. package/v2Containers/WebPush/Create/components/__snapshots__/MessageSection.test.js.snap +0 -54
  186. package/v2Containers/WebPush/Create/components/__snapshots__/NotificationTitleSection.test.js.snap +0 -37
  187. package/v2Containers/WebPush/Create/components/__snapshots__/TemplateNameSection.test.js.snap +0 -21
  188. package/v2Containers/WebPush/Create/components/_buttons.scss +0 -246
  189. package/v2Containers/WebPush/Create/components/tests/ButtonForm.test.js +0 -554
  190. package/v2Containers/WebPush/Create/components/tests/ButtonItem.test.js +0 -607
  191. package/v2Containers/WebPush/Create/components/tests/ButtonList.test.js +0 -515
  192. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonForm.test.js.snap +0 -666
  193. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonItem.test.js.snap +0 -74
  194. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonList.test.js.snap +0 -46
  195. package/v2Containers/WebPush/Create/hooks/useButtonManagement.js +0 -150
  196. package/v2Containers/WebPush/Create/hooks/useButtonManagement.test.js +0 -406
  197. package/v2Containers/WebPush/Create/hooks/useCharacterCount.js +0 -30
  198. package/v2Containers/WebPush/Create/hooks/useCharacterCount.test.js +0 -151
  199. package/v2Containers/WebPush/Create/hooks/useImageUpload.js +0 -104
  200. package/v2Containers/WebPush/Create/hooks/useImageUpload.test.js +0 -538
  201. package/v2Containers/WebPush/Create/hooks/useTagManagement.js +0 -122
  202. package/v2Containers/WebPush/Create/hooks/useTagManagement.test.js +0 -633
  203. package/v2Containers/WebPush/Create/index.js +0 -1148
  204. package/v2Containers/WebPush/Create/index.scss +0 -134
  205. package/v2Containers/WebPush/Create/messages.js +0 -203
  206. package/v2Containers/WebPush/Create/preview/DevicePreviewContent.js +0 -228
  207. package/v2Containers/WebPush/Create/preview/NotificationContainer.js +0 -294
  208. package/v2Containers/WebPush/Create/preview/PreviewContent.js +0 -90
  209. package/v2Containers/WebPush/Create/preview/PreviewControls.js +0 -305
  210. package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +0 -23
  211. package/v2Containers/WebPush/Create/preview/WebPushPreview.js +0 -155
  212. package/v2Containers/WebPush/Create/preview/assets/Light.svg +0 -53
  213. package/v2Containers/WebPush/Create/preview/assets/Top.svg +0 -5
  214. package/v2Containers/WebPush/Create/preview/assets/android-arrow-down.svg +0 -9
  215. package/v2Containers/WebPush/Create/preview/assets/android-arrow-up.svg +0 -9
  216. package/v2Containers/WebPush/Create/preview/assets/chrome-icon.png +0 -0
  217. package/v2Containers/WebPush/Create/preview/assets/edge-icon.png +0 -0
  218. package/v2Containers/WebPush/Create/preview/assets/firefox-icon.svg +0 -106
  219. package/v2Containers/WebPush/Create/preview/assets/iOS.svg +0 -26
  220. package/v2Containers/WebPush/Create/preview/assets/macos-arrow-down-icon.svg +0 -9
  221. package/v2Containers/WebPush/Create/preview/assets/macos-triple-dot-icon.svg +0 -9
  222. package/v2Containers/WebPush/Create/preview/assets/opera-icon.svg +0 -18
  223. package/v2Containers/WebPush/Create/preview/assets/safari-icon.svg +0 -29
  224. package/v2Containers/WebPush/Create/preview/assets/windows-close-icon.svg +0 -9
  225. package/v2Containers/WebPush/Create/preview/assets/windows-triple-dot-icon.svg +0 -9
  226. package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +0 -47
  227. package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +0 -141
  228. package/v2Containers/WebPush/Create/preview/components/IOSHeader.js +0 -45
  229. package/v2Containers/WebPush/Create/preview/components/NotificationExpandedContent.js +0 -68
  230. package/v2Containers/WebPush/Create/preview/components/NotificationHeader.js +0 -61
  231. package/v2Containers/WebPush/Create/preview/components/WindowsChromeExpanded.js +0 -99
  232. package/v2Containers/WebPush/Create/preview/components/tests/AndroidMobileExpanded.test.js +0 -733
  233. package/v2Containers/WebPush/Create/preview/components/tests/WindowsChromeExpanded.test.js +0 -571
  234. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +0 -81
  235. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/WindowsChromeExpanded.test.js.snap +0 -81
  236. package/v2Containers/WebPush/Create/preview/config/notificationMappings.js +0 -50
  237. package/v2Containers/WebPush/Create/preview/constants.js +0 -637
  238. package/v2Containers/WebPush/Create/preview/notification-container.scss +0 -79
  239. package/v2Containers/WebPush/Create/preview/preview.scss +0 -351
  240. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-chrome.scss +0 -370
  241. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-edge.scss +0 -12
  242. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-firefox.scss +0 -12
  243. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-opera.scss +0 -12
  244. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-chrome.scss +0 -47
  245. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-edge.scss +0 -11
  246. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-firefox.scss +0 -11
  247. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-opera.scss +0 -11
  248. package/v2Containers/WebPush/Create/preview/styles/_base.scss +0 -207
  249. package/v2Containers/WebPush/Create/preview/styles/_ios.scss +0 -153
  250. package/v2Containers/WebPush/Create/preview/styles/_ipados.scss +0 -107
  251. package/v2Containers/WebPush/Create/preview/styles/_macos-chrome.scss +0 -101
  252. package/v2Containers/WebPush/Create/preview/styles/_windows-chrome.scss +0 -229
  253. package/v2Containers/WebPush/Create/preview/tests/DevicePreviewContent.test.js +0 -909
  254. package/v2Containers/WebPush/Create/preview/tests/NotificationContainer.test.js +0 -1081
  255. package/v2Containers/WebPush/Create/preview/tests/PreviewControls.test.js +0 -723
  256. package/v2Containers/WebPush/Create/preview/tests/WebPushPreview.test.js +0 -1327
  257. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/DevicePreviewContent.test.js.snap +0 -131
  258. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/NotificationContainer.test.js.snap +0 -112
  259. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/PreviewControls.test.js.snap +0 -144
  260. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/WebPushPreview.test.js.snap +0 -129
  261. package/v2Containers/WebPush/Create/utils/payloadBuilder.js +0 -96
  262. package/v2Containers/WebPush/Create/utils/payloadBuilder.test.js +0 -396
  263. package/v2Containers/WebPush/Create/utils/previewUtils.js +0 -89
  264. package/v2Containers/WebPush/Create/utils/urlValidation.js +0 -115
  265. package/v2Containers/WebPush/Create/utils/urlValidation.test.js +0 -449
  266. package/v2Containers/WebPush/Create/utils/validation.js +0 -75
  267. package/v2Containers/WebPush/Create/utils/validation.test.js +0 -283
  268. package/v2Containers/WebPush/actions.js +0 -60
  269. package/v2Containers/WebPush/constants.js +0 -132
  270. package/v2Containers/WebPush/index.js +0 -2
  271. package/v2Containers/WebPush/reducer.js +0 -104
  272. package/v2Containers/WebPush/sagas.js +0 -119
  273. package/v2Containers/WebPush/selectors.js +0 -65
  274. package/v2Containers/WebPush/tests/reducer.test.js +0 -863
  275. package/v2Containers/WebPush/tests/sagas.test.js +0 -566
  276. package/v2Containers/WebPush/tests/selectors.test.js +0 -960
@@ -197,7 +197,7 @@ exports[`Creatives SmsTraiCreate test/> done button should be disabled if blank
197
197
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
198
198
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
199
199
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
200
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
200
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
201
201
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
202
202
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
203
203
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -205,13 +205,13 @@ exports[`Creatives SmsTraiCreate test/> done button should be disabled if blank
205
205
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
206
206
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
207
207
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
208
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
208
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
209
209
  "creatives.componentsV2.CapImageUpload.or": "OR",
210
210
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
211
211
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
212
212
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
213
213
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
214
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
214
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
215
215
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
216
216
  "creatives.componentsV2.CapTagList.Ok": "Ok",
217
217
  "creatives.componentsV2.CapTagList.all": "All",
@@ -1904,7 +1904,6 @@ new message content.",
1904
1904
  "creatives.containersV2.WeChat.templateName": "Template Name",
1905
1905
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
1906
1906
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
1907
- "creatives.containersV2.WebPush.addLabels": "Add labels",
1908
1907
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
1909
1908
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
1910
1909
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -3212,7 +3211,7 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
3212
3211
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
3213
3212
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
3214
3213
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
3215
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
3214
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
3216
3215
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
3217
3216
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
3218
3217
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -3220,13 +3219,13 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
3220
3219
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
3221
3220
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
3222
3221
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
3223
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
3222
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
3224
3223
  "creatives.componentsV2.CapImageUpload.or": "OR",
3225
3224
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
3226
3225
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
3227
3226
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
3228
3227
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
3229
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
3228
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
3230
3229
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
3231
3230
  "creatives.componentsV2.CapTagList.Ok": "Ok",
3232
3231
  "creatives.componentsV2.CapTagList.all": "All",
@@ -4919,7 +4918,6 @@ new message content.",
4919
4918
  "creatives.containersV2.WeChat.templateName": "Template Name",
4920
4919
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
4921
4920
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
4922
- "creatives.containersV2.WebPush.addLabels": "Add labels",
4923
4921
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
4924
4922
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
4925
4923
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -6227,7 +6225,7 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
6227
6225
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
6228
6226
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
6229
6227
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
6230
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
6228
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
6231
6229
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
6232
6230
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
6233
6231
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -6235,13 +6233,13 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
6235
6233
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
6236
6234
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
6237
6235
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
6238
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
6236
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
6239
6237
  "creatives.componentsV2.CapImageUpload.or": "OR",
6240
6238
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
6241
6239
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
6242
6240
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
6243
6241
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
6244
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
6242
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
6245
6243
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
6246
6244
  "creatives.componentsV2.CapTagList.Ok": "Ok",
6247
6245
  "creatives.componentsV2.CapTagList.all": "All",
@@ -7934,7 +7932,6 @@ new message content.",
7934
7932
  "creatives.containersV2.WeChat.templateName": "Template Name",
7935
7933
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
7936
7934
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
7937
- "creatives.containersV2.WebPush.addLabels": "Add labels",
7938
7935
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
7939
7936
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
7940
7937
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -9242,7 +9239,7 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
9242
9239
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
9243
9240
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
9244
9241
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
9245
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
9242
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
9246
9243
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
9247
9244
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
9248
9245
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -9250,13 +9247,13 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
9250
9247
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
9251
9248
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
9252
9249
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
9253
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
9250
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
9254
9251
  "creatives.componentsV2.CapImageUpload.or": "OR",
9255
9252
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
9256
9253
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
9257
9254
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
9258
9255
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
9259
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
9256
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
9260
9257
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
9261
9258
  "creatives.componentsV2.CapTagList.Ok": "Ok",
9262
9259
  "creatives.componentsV2.CapTagList.all": "All",
@@ -10949,7 +10946,6 @@ new message content.",
10949
10946
  "creatives.containersV2.WeChat.templateName": "Template Name",
10950
10947
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
10951
10948
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
10952
- "creatives.containersV2.WebPush.addLabels": "Add labels",
10953
10949
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
10954
10950
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
10955
10951
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -189,7 +189,7 @@ exports[`Creatives SmsTraiEdit test/> should cancel 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 SmsTraiEdit test/> should cancel 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],
@@ -6503,7 +6501,7 @@ FREE GIFTS-
6503
6501
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
6504
6502
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
6505
6503
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
6506
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
6504
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
6507
6505
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
6508
6506
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
6509
6507
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -6511,13 +6509,13 @@ FREE GIFTS-
6511
6509
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
6512
6510
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
6513
6511
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
6514
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
6512
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
6515
6513
  "creatives.componentsV2.CapImageUpload.or": "OR",
6516
6514
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
6517
6515
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
6518
6516
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
6519
6517
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
6520
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
6518
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
6521
6519
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
6522
6520
  "creatives.componentsV2.CapTagList.Ok": "Ok",
6523
6521
  "creatives.componentsV2.CapTagList.all": "All",
@@ -8210,7 +8208,6 @@ new message content.",
8210
8208
  "creatives.containersV2.WeChat.templateName": "Template Name",
8211
8209
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
8212
8210
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
8213
- "creatives.containersV2.WebPush.addLabels": "Add labels",
8214
8211
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
8215
8212
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
8216
8213
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -8809,7 +8806,7 @@ FREE GIFTS-
8809
8806
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
8810
8807
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
8811
8808
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
8812
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
8809
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
8813
8810
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
8814
8811
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
8815
8812
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -8817,13 +8814,13 @@ FREE GIFTS-
8817
8814
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
8818
8815
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
8819
8816
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
8820
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
8817
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
8821
8818
  "creatives.componentsV2.CapImageUpload.or": "OR",
8822
8819
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
8823
8820
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
8824
8821
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
8825
8822
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
8826
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
8823
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
8827
8824
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
8828
8825
  "creatives.componentsV2.CapTagList.Ok": "Ok",
8829
8826
  "creatives.componentsV2.CapTagList.all": "All",
@@ -10516,7 +10513,6 @@ new message content.",
10516
10513
  "creatives.containersV2.WeChat.templateName": "Template Name",
10517
10514
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
10518
10515
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
10519
- "creatives.containersV2.WebPush.addLabels": "Add labels",
10520
10516
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
10521
10517
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
10522
10518
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -11239,7 +11235,7 @@ exports[`Creatives SmsTraiEdit test/> should render 1`] = `
11239
11235
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
11240
11236
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
11241
11237
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
11242
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
11238
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
11243
11239
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
11244
11240
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
11245
11241
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -11247,13 +11243,13 @@ exports[`Creatives SmsTraiEdit test/> should render 1`] = `
11247
11243
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
11248
11244
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
11249
11245
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
11250
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
11246
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
11251
11247
  "creatives.componentsV2.CapImageUpload.or": "OR",
11252
11248
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
11253
11249
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
11254
11250
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
11255
11251
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
11256
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
11252
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
11257
11253
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
11258
11254
  "creatives.componentsV2.CapTagList.Ok": "Ok",
11259
11255
  "creatives.componentsV2.CapTagList.all": "All",
@@ -12946,7 +12942,6 @@ new message content.",
12946
12942
  "creatives.containersV2.WeChat.templateName": "Template Name",
12947
12943
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
12948
12944
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
12949
- "creatives.containersV2.WebPush.addLabels": "Add labels",
12950
12945
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
12951
12946
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
12952
12947
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -13332,7 +13327,6 @@ new message content.",
13332
13327
  "email": [Function],
13333
13328
  "facebookPreview": [Function],
13334
13329
  "gallery": [Function],
13335
- "inApp": [Function],
13336
13330
  "language": [Function],
13337
13331
  "navigationConfig": [Function],
13338
13332
  "previewAndTest": [Function],
@@ -17299,7 +17293,7 @@ FREE GIFTS-
17299
17293
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
17300
17294
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
17301
17295
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
17302
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
17296
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
17303
17297
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
17304
17298
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
17305
17299
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -17307,13 +17301,13 @@ FREE GIFTS-
17307
17301
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
17308
17302
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
17309
17303
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
17310
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
17304
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
17311
17305
  "creatives.componentsV2.CapImageUpload.or": "OR",
17312
17306
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
17313
17307
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
17314
17308
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
17315
17309
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
17316
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
17310
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
17317
17311
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
17318
17312
  "creatives.componentsV2.CapTagList.Ok": "Ok",
17319
17313
  "creatives.componentsV2.CapTagList.all": "All",
@@ -19006,7 +19000,6 @@ new message content.",
19006
19000
  "creatives.containersV2.WeChat.templateName": "Template Name",
19007
19001
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
19008
19002
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
19009
- "creatives.containersV2.WebPush.addLabels": "Add labels",
19010
19003
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
19011
19004
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
19012
19005
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -19605,7 +19598,7 @@ FREE GIFTS-
19605
19598
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
19606
19599
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
19607
19600
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
19608
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
19601
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
19609
19602
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
19610
19603
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
19611
19604
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -19613,13 +19606,13 @@ FREE GIFTS-
19613
19606
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
19614
19607
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
19615
19608
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
19616
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
19609
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
19617
19610
  "creatives.componentsV2.CapImageUpload.or": "OR",
19618
19611
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
19619
19612
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
19620
19613
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
19621
19614
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
19622
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
19615
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
19623
19616
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
19624
19617
  "creatives.componentsV2.CapTagList.Ok": "Ok",
19625
19618
  "creatives.componentsV2.CapTagList.all": "All",
@@ -21312,7 +21305,6 @@ new message content.",
21312
21305
  "creatives.containersV2.WeChat.templateName": "Template Name",
21313
21306
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
21314
21307
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
21315
- "creatives.containersV2.WebPush.addLabels": "Add labels",
21316
21308
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
21317
21309
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
21318
21310
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -22035,7 +22027,7 @@ exports[`Creatives SmsTraiEdit test/> should render 2`] = `
22035
22027
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
22036
22028
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
22037
22029
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
22038
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
22030
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
22039
22031
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
22040
22032
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
22041
22033
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -22043,13 +22035,13 @@ exports[`Creatives SmsTraiEdit test/> should render 2`] = `
22043
22035
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
22044
22036
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
22045
22037
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
22046
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
22038
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
22047
22039
  "creatives.componentsV2.CapImageUpload.or": "OR",
22048
22040
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
22049
22041
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
22050
22042
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
22051
22043
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
22052
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
22044
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
22053
22045
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
22054
22046
  "creatives.componentsV2.CapTagList.Ok": "Ok",
22055
22047
  "creatives.componentsV2.CapTagList.all": "All",
@@ -23742,7 +23734,6 @@ new message content.",
23742
23734
  "creatives.containersV2.WeChat.templateName": "Template Name",
23743
23735
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
23744
23736
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
23745
- "creatives.containersV2.WebPush.addLabels": "Add labels",
23746
23737
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
23747
23738
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
23748
23739
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -24128,7 +24119,6 @@ new message content.",
24128
24119
  "email": [Function],
24129
24120
  "facebookPreview": [Function],
24130
24121
  "gallery": [Function],
24131
- "inApp": [Function],
24132
24122
  "language": [Function],
24133
24123
  "navigationConfig": [Function],
24134
24124
  "previewAndTest": [Function],
@@ -28095,7 +28085,7 @@ FREE GIFTS-
28095
28085
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
28096
28086
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
28097
28087
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
28098
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
28088
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
28099
28089
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
28100
28090
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
28101
28091
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -28103,13 +28093,13 @@ FREE GIFTS-
28103
28093
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
28104
28094
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
28105
28095
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
28106
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
28096
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
28107
28097
  "creatives.componentsV2.CapImageUpload.or": "OR",
28108
28098
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
28109
28099
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
28110
28100
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
28111
28101
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
28112
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
28102
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
28113
28103
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
28114
28104
  "creatives.componentsV2.CapTagList.Ok": "Ok",
28115
28105
  "creatives.componentsV2.CapTagList.all": "All",
@@ -29802,7 +29792,6 @@ new message content.",
29802
29792
  "creatives.containersV2.WeChat.templateName": "Template Name",
29803
29793
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
29804
29794
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
29805
- "creatives.containersV2.WebPush.addLabels": "Add labels",
29806
29795
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
29807
29796
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
29808
29797
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -30401,7 +30390,7 @@ FREE GIFTS-
30401
30390
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
30402
30391
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
30403
30392
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
30404
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
30393
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
30405
30394
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
30406
30395
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
30407
30396
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -30409,13 +30398,13 @@ FREE GIFTS-
30409
30398
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
30410
30399
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
30411
30400
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
30412
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
30401
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
30413
30402
  "creatives.componentsV2.CapImageUpload.or": "OR",
30414
30403
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
30415
30404
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
30416
30405
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
30417
30406
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
30418
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
30407
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
30419
30408
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
30420
30409
  "creatives.componentsV2.CapTagList.Ok": "Ok",
30421
30410
  "creatives.componentsV2.CapTagList.all": "All",
@@ -32108,7 +32097,6 @@ new message content.",
32108
32097
  "creatives.containersV2.WeChat.templateName": "Template Name",
32109
32098
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
32110
32099
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
32111
- "creatives.containersV2.WebPush.addLabels": "Add labels",
32112
32100
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
32113
32101
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
32114
32102
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -32831,7 +32819,7 @@ exports[`Creatives SmsTraiEdit test/> should save 1`] = `
32831
32819
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
32832
32820
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
32833
32821
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
32834
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
32822
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
32835
32823
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
32836
32824
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
32837
32825
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -32839,13 +32827,13 @@ exports[`Creatives SmsTraiEdit test/> should save 1`] = `
32839
32827
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
32840
32828
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
32841
32829
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
32842
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
32830
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
32843
32831
  "creatives.componentsV2.CapImageUpload.or": "OR",
32844
32832
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
32845
32833
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
32846
32834
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
32847
32835
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
32848
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
32836
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
32849
32837
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
32850
32838
  "creatives.componentsV2.CapTagList.Ok": "Ok",
32851
32839
  "creatives.componentsV2.CapTagList.all": "All",
@@ -34538,7 +34526,6 @@ new message content.",
34538
34526
  "creatives.containersV2.WeChat.templateName": "Template Name",
34539
34527
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
34540
34528
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
34541
- "creatives.containersV2.WebPush.addLabels": "Add labels",
34542
34529
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
34543
34530
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
34544
34531
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -34924,7 +34911,6 @@ new message content.",
34924
34911
  "email": [Function],
34925
34912
  "facebookPreview": [Function],
34926
34913
  "gallery": [Function],
34927
- "inApp": [Function],
34928
34914
  "language": [Function],
34929
34915
  "navigationConfig": [Function],
34930
34916
  "previewAndTest": [Function],
@@ -39272,7 +39258,7 @@ FREE GIFTS-
39272
39258
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
39273
39259
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
39274
39260
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
39275
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
39261
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
39276
39262
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
39277
39263
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
39278
39264
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -39280,13 +39266,13 @@ FREE GIFTS-
39280
39266
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
39281
39267
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
39282
39268
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
39283
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
39269
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
39284
39270
  "creatives.componentsV2.CapImageUpload.or": "OR",
39285
39271
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
39286
39272
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
39287
39273
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
39288
39274
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
39289
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
39275
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
39290
39276
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
39291
39277
  "creatives.componentsV2.CapTagList.Ok": "Ok",
39292
39278
  "creatives.componentsV2.CapTagList.all": "All",
@@ -40979,7 +40965,6 @@ new message content.",
40979
40965
  "creatives.containersV2.WeChat.templateName": "Template Name",
40980
40966
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
40981
40967
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
40982
- "creatives.containersV2.WebPush.addLabels": "Add labels",
40983
40968
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
40984
40969
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
40985
40970
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -41578,7 +41563,7 @@ FREE GIFTS-
41578
41563
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
41579
41564
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
41580
41565
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
41581
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
41566
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
41582
41567
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
41583
41568
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
41584
41569
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -41586,13 +41571,13 @@ FREE GIFTS-
41586
41571
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
41587
41572
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
41588
41573
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
41589
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
41574
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
41590
41575
  "creatives.componentsV2.CapImageUpload.or": "OR",
41591
41576
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
41592
41577
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
41593
41578
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
41594
41579
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
41595
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
41580
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
41596
41581
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
41597
41582
  "creatives.componentsV2.CapTagList.Ok": "Ok",
41598
41583
  "creatives.componentsV2.CapTagList.all": "All",
@@ -43285,7 +43270,6 @@ new message content.",
43285
43270
  "creatives.containersV2.WeChat.templateName": "Template Name",
43286
43271
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
43287
43272
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
43288
- "creatives.containersV2.WebPush.addLabels": "Add labels",
43289
43273
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
43290
43274
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
43291
43275
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",