@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[`line wrapper test/> should render create mode 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[`line wrapper test/> should render create mode 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],
@@ -18184,7 +18182,7 @@ new message content.",
18184
18182
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
18185
18183
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
18186
18184
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
18187
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
18185
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
18188
18186
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
18189
18187
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
18190
18188
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -18192,13 +18190,13 @@ new message content.",
18192
18190
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
18193
18191
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
18194
18192
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
18195
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
18193
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
18196
18194
  "creatives.componentsV2.CapImageUpload.or": "OR",
18197
18195
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
18198
18196
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
18199
18197
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
18200
18198
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
18201
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
18199
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
18202
18200
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
18203
18201
  "creatives.componentsV2.CapTagList.Ok": "Ok",
18204
18202
  "creatives.componentsV2.CapTagList.all": "All",
@@ -19891,7 +19889,6 @@ new message content.",
19891
19889
  "creatives.containersV2.WeChat.templateName": "Template Name",
19892
19890
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
19893
19891
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
19894
- "creatives.containersV2.WebPush.addLabels": "Add labels",
19895
19892
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
19896
19893
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
19897
19894
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -20731,7 +20728,7 @@ new message content.",
20731
20728
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
20732
20729
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
20733
20730
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
20734
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
20731
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
20735
20732
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
20736
20733
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
20737
20734
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -20739,13 +20736,13 @@ new message content.",
20739
20736
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
20740
20737
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
20741
20738
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
20742
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
20739
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
20743
20740
  "creatives.componentsV2.CapImageUpload.or": "OR",
20744
20741
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
20745
20742
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
20746
20743
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
20747
20744
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
20748
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
20745
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
20749
20746
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
20750
20747
  "creatives.componentsV2.CapTagList.Ok": "Ok",
20751
20748
  "creatives.componentsV2.CapTagList.all": "All",
@@ -22438,7 +22435,6 @@ new message content.",
22438
22435
  "creatives.containersV2.WeChat.templateName": "Template Name",
22439
22436
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
22440
22437
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
22441
- "creatives.containersV2.WebPush.addLabels": "Add labels",
22442
22438
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
22443
22439
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
22444
22440
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -23709,7 +23705,7 @@ new message content.",
23709
23705
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
23710
23706
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
23711
23707
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
23712
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
23708
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
23713
23709
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
23714
23710
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
23715
23711
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -23717,13 +23713,13 @@ new message content.",
23717
23713
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
23718
23714
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
23719
23715
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
23720
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
23716
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
23721
23717
  "creatives.componentsV2.CapImageUpload.or": "OR",
23722
23718
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
23723
23719
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
23724
23720
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
23725
23721
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
23726
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
23722
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
23727
23723
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
23728
23724
  "creatives.componentsV2.CapTagList.Ok": "Ok",
23729
23725
  "creatives.componentsV2.CapTagList.all": "All",
@@ -25416,7 +25412,6 @@ new message content.",
25416
25412
  "creatives.containersV2.WeChat.templateName": "Template Name",
25417
25413
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
25418
25414
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
25419
- "creatives.containersV2.WebPush.addLabels": "Add labels",
25420
25415
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
25421
25416
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
25422
25417
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -25964,7 +25959,7 @@ new message content.",
25964
25959
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
25965
25960
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
25966
25961
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
25967
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
25962
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
25968
25963
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
25969
25964
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
25970
25965
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -25972,13 +25967,13 @@ new message content.",
25972
25967
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
25973
25968
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
25974
25969
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
25975
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
25970
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
25976
25971
  "creatives.componentsV2.CapImageUpload.or": "OR",
25977
25972
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
25978
25973
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
25979
25974
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
25980
25975
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
25981
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
25976
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
25982
25977
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
25983
25978
  "creatives.componentsV2.CapTagList.Ok": "Ok",
25984
25979
  "creatives.componentsV2.CapTagList.all": "All",
@@ -27671,7 +27666,6 @@ new message content.",
27671
27666
  "creatives.containersV2.WeChat.templateName": "Template Name",
27672
27667
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
27673
27668
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
27674
- "creatives.containersV2.WebPush.addLabels": "Add labels",
27675
27669
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
27676
27670
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
27677
27671
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -28240,7 +28234,7 @@ new message content.",
28240
28234
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
28241
28235
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
28242
28236
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
28243
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
28237
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
28244
28238
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
28245
28239
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
28246
28240
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -28248,13 +28242,13 @@ new message content.",
28248
28242
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
28249
28243
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
28250
28244
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
28251
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
28245
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
28252
28246
  "creatives.componentsV2.CapImageUpload.or": "OR",
28253
28247
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
28254
28248
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
28255
28249
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
28256
28250
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
28257
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
28251
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
28258
28252
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
28259
28253
  "creatives.componentsV2.CapTagList.Ok": "Ok",
28260
28254
  "creatives.componentsV2.CapTagList.all": "All",
@@ -29947,7 +29941,6 @@ new message content.",
29947
29941
  "creatives.containersV2.WeChat.templateName": "Template Name",
29948
29942
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
29949
29943
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
29950
- "creatives.containersV2.WebPush.addLabels": "Add labels",
29951
29944
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
29952
29945
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
29953
29946
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -30528,7 +30521,7 @@ new message content.",
30528
30521
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
30529
30522
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
30530
30523
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
30531
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
30524
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
30532
30525
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
30533
30526
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
30534
30527
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -30536,13 +30529,13 @@ new message content.",
30536
30529
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
30537
30530
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
30538
30531
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
30539
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
30532
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
30540
30533
  "creatives.componentsV2.CapImageUpload.or": "OR",
30541
30534
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
30542
30535
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
30543
30536
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
30544
30537
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
30545
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
30538
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
30546
30539
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
30547
30540
  "creatives.componentsV2.CapTagList.Ok": "Ok",
30548
30541
  "creatives.componentsV2.CapTagList.all": "All",
@@ -32235,7 +32228,6 @@ new message content.",
32235
32228
  "creatives.containersV2.WeChat.templateName": "Template Name",
32236
32229
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
32237
32230
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
32238
- "creatives.containersV2.WebPush.addLabels": "Add labels",
32239
32231
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
32240
32232
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
32241
32233
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -32801,7 +32793,7 @@ exports[`line wrapper test/> should render create mode 2`] = `
32801
32793
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
32802
32794
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
32803
32795
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
32804
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
32796
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
32805
32797
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
32806
32798
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
32807
32799
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -32809,13 +32801,13 @@ exports[`line wrapper test/> should render create mode 2`] = `
32809
32801
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
32810
32802
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
32811
32803
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
32812
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
32804
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
32813
32805
  "creatives.componentsV2.CapImageUpload.or": "OR",
32814
32806
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
32815
32807
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
32816
32808
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
32817
32809
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
32818
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
32810
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
32819
32811
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
32820
32812
  "creatives.componentsV2.CapTagList.Ok": "Ok",
32821
32813
  "creatives.componentsV2.CapTagList.all": "All",
@@ -34508,7 +34500,6 @@ new message content.",
34508
34500
  "creatives.containersV2.WeChat.templateName": "Template Name",
34509
34501
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
34510
34502
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
34511
- "creatives.containersV2.WebPush.addLabels": "Add labels",
34512
34503
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
34513
34504
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
34514
34505
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -34894,7 +34885,6 @@ new message content.",
34894
34885
  "email": [Function],
34895
34886
  "facebookPreview": [Function],
34896
34887
  "gallery": [Function],
34897
- "inApp": [Function],
34898
34888
  "language": [Function],
34899
34889
  "navigationConfig": [Function],
34900
34890
  "previewAndTest": [Function],
@@ -58082,7 +58072,7 @@ new message content.",
58082
58072
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
58083
58073
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
58084
58074
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
58085
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
58075
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
58086
58076
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
58087
58077
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
58088
58078
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -58090,13 +58080,13 @@ new message content.",
58090
58080
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
58091
58081
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
58092
58082
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
58093
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
58083
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
58094
58084
  "creatives.componentsV2.CapImageUpload.or": "OR",
58095
58085
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
58096
58086
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
58097
58087
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
58098
58088
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
58099
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
58089
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
58100
58090
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
58101
58091
  "creatives.componentsV2.CapTagList.Ok": "Ok",
58102
58092
  "creatives.componentsV2.CapTagList.all": "All",
@@ -59789,7 +59779,6 @@ new message content.",
59789
59779
  "creatives.containersV2.WeChat.templateName": "Template Name",
59790
59780
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
59791
59781
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
59792
- "creatives.containersV2.WebPush.addLabels": "Add labels",
59793
59782
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
59794
59783
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
59795
59784
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -60821,7 +60810,7 @@ new message content.",
60821
60810
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
60822
60811
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
60823
60812
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
60824
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
60813
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
60825
60814
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
60826
60815
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
60827
60816
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -60829,13 +60818,13 @@ new message content.",
60829
60818
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
60830
60819
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
60831
60820
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
60832
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
60821
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
60833
60822
  "creatives.componentsV2.CapImageUpload.or": "OR",
60834
60823
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
60835
60824
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
60836
60825
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
60837
60826
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
60838
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
60827
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
60839
60828
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
60840
60829
  "creatives.componentsV2.CapTagList.Ok": "Ok",
60841
60830
  "creatives.componentsV2.CapTagList.all": "All",
@@ -62528,7 +62517,6 @@ new message content.",
62528
62517
  "creatives.containersV2.WeChat.templateName": "Template Name",
62529
62518
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
62530
62519
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
62531
- "creatives.containersV2.WebPush.addLabels": "Add labels",
62532
62520
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
62533
62521
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
62534
62522
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -64156,7 +64144,7 @@ new message content.",
64156
64144
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
64157
64145
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
64158
64146
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
64159
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
64147
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
64160
64148
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
64161
64149
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
64162
64150
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -64164,13 +64152,13 @@ new message content.",
64164
64152
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
64165
64153
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
64166
64154
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
64167
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
64155
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
64168
64156
  "creatives.componentsV2.CapImageUpload.or": "OR",
64169
64157
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
64170
64158
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
64171
64159
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
64172
64160
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
64173
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
64161
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
64174
64162
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
64175
64163
  "creatives.componentsV2.CapTagList.Ok": "Ok",
64176
64164
  "creatives.componentsV2.CapTagList.all": "All",
@@ -65863,7 +65851,6 @@ new message content.",
65863
65851
  "creatives.containersV2.WeChat.templateName": "Template Name",
65864
65852
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
65865
65853
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
65866
- "creatives.containersV2.WebPush.addLabels": "Add labels",
65867
65854
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
65868
65855
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
65869
65856
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -66895,7 +66882,7 @@ new message content.",
66895
66882
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
66896
66883
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
66897
66884
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
66898
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
66885
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
66899
66886
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
66900
66887
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
66901
66888
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -66903,13 +66890,13 @@ new message content.",
66903
66890
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
66904
66891
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
66905
66892
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
66906
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
66893
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
66907
66894
  "creatives.componentsV2.CapImageUpload.or": "OR",
66908
66895
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
66909
66896
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
66910
66897
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
66911
66898
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
66912
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
66899
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
66913
66900
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
66914
66901
  "creatives.componentsV2.CapTagList.Ok": "Ok",
66915
66902
  "creatives.componentsV2.CapTagList.all": "All",
@@ -68602,7 +68589,6 @@ new message content.",
68602
68589
  "creatives.containersV2.WeChat.templateName": "Template Name",
68603
68590
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
68604
68591
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
68605
- "creatives.containersV2.WebPush.addLabels": "Add labels",
68606
68592
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
68607
68593
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
68608
68594
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -70603,7 +70589,7 @@ new message content.",
70603
70589
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
70604
70590
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
70605
70591
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
70606
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
70592
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
70607
70593
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
70608
70594
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
70609
70595
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -70611,13 +70597,13 @@ new message content.",
70611
70597
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
70612
70598
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
70613
70599
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
70614
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
70600
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
70615
70601
  "creatives.componentsV2.CapImageUpload.or": "OR",
70616
70602
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
70617
70603
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
70618
70604
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
70619
70605
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
70620
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
70606
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
70621
70607
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
70622
70608
  "creatives.componentsV2.CapTagList.Ok": "Ok",
70623
70609
  "creatives.componentsV2.CapTagList.all": "All",
@@ -72310,7 +72296,6 @@ new message content.",
72310
72296
  "creatives.containersV2.WeChat.templateName": "Template Name",
72311
72297
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
72312
72298
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
72313
- "creatives.containersV2.WebPush.addLabels": "Add labels",
72314
72299
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
72315
72300
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
72316
72301
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -73784,7 +73769,7 @@ new message content.",
73784
73769
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
73785
73770
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
73786
73771
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
73787
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
73772
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
73788
73773
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
73789
73774
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
73790
73775
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -73792,13 +73777,13 @@ new message content.",
73792
73777
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
73793
73778
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
73794
73779
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
73795
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
73780
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
73796
73781
  "creatives.componentsV2.CapImageUpload.or": "OR",
73797
73782
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
73798
73783
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
73799
73784
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
73800
73785
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
73801
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
73786
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
73802
73787
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
73803
73788
  "creatives.componentsV2.CapTagList.Ok": "Ok",
73804
73789
  "creatives.componentsV2.CapTagList.all": "All",
@@ -75491,7 +75476,6 @@ new message content.",
75491
75476
  "creatives.containersV2.WeChat.templateName": "Template Name",
75492
75477
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
75493
75478
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
75494
- "creatives.containersV2.WebPush.addLabels": "Add labels",
75495
75479
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
75496
75480
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
75497
75481
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -76821,7 +76805,7 @@ new message content.",
76821
76805
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
76822
76806
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
76823
76807
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
76824
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
76808
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
76825
76809
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
76826
76810
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
76827
76811
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -76829,13 +76813,13 @@ new message content.",
76829
76813
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
76830
76814
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
76831
76815
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
76832
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
76816
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
76833
76817
  "creatives.componentsV2.CapImageUpload.or": "OR",
76834
76818
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
76835
76819
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
76836
76820
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
76837
76821
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
76838
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
76822
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
76839
76823
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
76840
76824
  "creatives.componentsV2.CapTagList.Ok": "Ok",
76841
76825
  "creatives.componentsV2.CapTagList.all": "All",
@@ -78528,7 +78512,6 @@ new message content.",
78528
78512
  "creatives.containersV2.WeChat.templateName": "Template Name",
78529
78513
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
78530
78514
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
78531
- "creatives.containersV2.WebPush.addLabels": "Add labels",
78532
78515
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
78533
78516
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
78534
78517
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -79869,7 +79852,7 @@ new message content.",
79869
79852
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
79870
79853
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
79871
79854
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
79872
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
79855
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
79873
79856
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
79874
79857
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
79875
79858
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -79877,13 +79860,13 @@ new message content.",
79877
79860
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
79878
79861
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
79879
79862
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
79880
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
79863
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
79881
79864
  "creatives.componentsV2.CapImageUpload.or": "OR",
79882
79865
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
79883
79866
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
79884
79867
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
79885
79868
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
79886
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
79869
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
79887
79870
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
79888
79871
  "creatives.componentsV2.CapTagList.Ok": "Ok",
79889
79872
  "creatives.componentsV2.CapTagList.all": "All",
@@ -81576,7 +81559,6 @@ new message content.",
81576
81559
  "creatives.containersV2.WeChat.templateName": "Template Name",
81577
81560
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
81578
81561
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
81579
- "creatives.containersV2.WebPush.addLabels": "Add labels",
81580
81562
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
81581
81563
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
81582
81564
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -85679,7 +85661,7 @@ new message content.",
85679
85661
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
85680
85662
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
85681
85663
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
85682
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
85664
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
85683
85665
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
85684
85666
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
85685
85667
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -85687,13 +85669,13 @@ new message content.",
85687
85669
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
85688
85670
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
85689
85671
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
85690
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
85672
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
85691
85673
  "creatives.componentsV2.CapImageUpload.or": "OR",
85692
85674
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
85693
85675
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
85694
85676
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
85695
85677
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
85696
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
85678
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
85697
85679
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
85698
85680
  "creatives.componentsV2.CapTagList.Ok": "Ok",
85699
85681
  "creatives.componentsV2.CapTagList.all": "All",
@@ -87386,7 +87368,6 @@ new message content.",
87386
87368
  "creatives.containersV2.WeChat.templateName": "Template Name",
87387
87369
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
87388
87370
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
87389
- "creatives.containersV2.WebPush.addLabels": "Add labels",
87390
87371
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
87391
87372
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
87392
87373
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -88832,7 +88813,7 @@ new message content.",
88832
88813
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
88833
88814
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
88834
88815
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
88835
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
88816
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
88836
88817
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
88837
88818
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
88838
88819
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -88840,13 +88821,13 @@ new message content.",
88840
88821
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
88841
88822
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
88842
88823
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
88843
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
88824
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
88844
88825
  "creatives.componentsV2.CapImageUpload.or": "OR",
88845
88826
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
88846
88827
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
88847
88828
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
88848
88829
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
88849
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
88830
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
88850
88831
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
88851
88832
  "creatives.componentsV2.CapTagList.Ok": "Ok",
88852
88833
  "creatives.componentsV2.CapTagList.all": "All",
@@ -90539,7 +90520,6 @@ new message content.",
90539
90520
  "creatives.containersV2.WeChat.templateName": "Template Name",
90540
90521
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
90541
90522
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
90542
- "creatives.containersV2.WebPush.addLabels": "Add labels",
90543
90523
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
90544
90524
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
90545
90525
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -91916,7 +91896,7 @@ new message content.",
91916
91896
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
91917
91897
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
91918
91898
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
91919
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
91899
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
91920
91900
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
91921
91901
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
91922
91902
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -91924,13 +91904,13 @@ new message content.",
91924
91904
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
91925
91905
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
91926
91906
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
91927
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
91907
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
91928
91908
  "creatives.componentsV2.CapImageUpload.or": "OR",
91929
91909
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
91930
91910
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
91931
91911
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
91932
91912
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
91933
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
91913
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
91934
91914
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
91935
91915
  "creatives.componentsV2.CapTagList.Ok": "Ok",
91936
91916
  "creatives.componentsV2.CapTagList.all": "All",
@@ -93623,7 +93603,6 @@ new message content.",
93623
93603
  "creatives.containersV2.WeChat.templateName": "Template Name",
93624
93604
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
93625
93605
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
93626
- "creatives.containersV2.WebPush.addLabels": "Add labels",
93627
93606
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
93628
93607
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
93629
93608
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -94899,7 +94878,7 @@ new message content.",
94899
94878
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
94900
94879
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
94901
94880
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
94902
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
94881
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
94903
94882
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
94904
94883
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
94905
94884
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -94907,13 +94886,13 @@ new message content.",
94907
94886
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
94908
94887
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
94909
94888
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
94910
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
94889
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
94911
94890
  "creatives.componentsV2.CapImageUpload.or": "OR",
94912
94891
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
94913
94892
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
94914
94893
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
94915
94894
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
94916
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
94895
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
94917
94896
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
94918
94897
  "creatives.componentsV2.CapTagList.Ok": "Ok",
94919
94898
  "creatives.componentsV2.CapTagList.all": "All",
@@ -96606,7 +96585,6 @@ new message content.",
96606
96585
  "creatives.containersV2.WeChat.templateName": "Template Name",
96607
96586
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
96608
96587
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
96609
- "creatives.containersV2.WebPush.addLabels": "Add labels",
96610
96588
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
96611
96589
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
96612
96590
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -97642,7 +97620,7 @@ new message content.",
97642
97620
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
97643
97621
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
97644
97622
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
97645
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
97623
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
97646
97624
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
97647
97625
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
97648
97626
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -97650,13 +97628,13 @@ new message content.",
97650
97628
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
97651
97629
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
97652
97630
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
97653
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
97631
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
97654
97632
  "creatives.componentsV2.CapImageUpload.or": "OR",
97655
97633
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
97656
97634
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
97657
97635
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
97658
97636
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
97659
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
97637
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
97660
97638
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
97661
97639
  "creatives.componentsV2.CapTagList.Ok": "Ok",
97662
97640
  "creatives.componentsV2.CapTagList.all": "All",
@@ -99349,7 +99327,6 @@ new message content.",
99349
99327
  "creatives.containersV2.WeChat.templateName": "Template Name",
99350
99328
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
99351
99329
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
99352
- "creatives.containersV2.WebPush.addLabels": "Add labels",
99353
99330
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
99354
99331
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
99355
99332
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -100318,7 +100295,7 @@ new message content.",
100318
100295
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
100319
100296
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
100320
100297
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
100321
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
100298
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
100322
100299
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
100323
100300
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
100324
100301
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -100326,13 +100303,13 @@ new message content.",
100326
100303
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
100327
100304
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
100328
100305
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
100329
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
100306
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
100330
100307
  "creatives.componentsV2.CapImageUpload.or": "OR",
100331
100308
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
100332
100309
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
100333
100310
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
100334
100311
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
100335
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
100312
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
100336
100313
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
100337
100314
  "creatives.componentsV2.CapTagList.Ok": "Ok",
100338
100315
  "creatives.componentsV2.CapTagList.all": "All",
@@ -102025,7 +102002,6 @@ new message content.",
102025
102002
  "creatives.containersV2.WeChat.templateName": "Template Name",
102026
102003
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
102027
102004
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
102028
- "creatives.containersV2.WebPush.addLabels": "Add labels",
102029
102005
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
102030
102006
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
102031
102007
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -102573,7 +102549,7 @@ new message content.",
102573
102549
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
102574
102550
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
102575
102551
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
102576
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
102552
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
102577
102553
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
102578
102554
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
102579
102555
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -102581,13 +102557,13 @@ new message content.",
102581
102557
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
102582
102558
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
102583
102559
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
102584
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
102560
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
102585
102561
  "creatives.componentsV2.CapImageUpload.or": "OR",
102586
102562
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
102587
102563
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
102588
102564
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
102589
102565
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
102590
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
102566
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
102591
102567
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
102592
102568
  "creatives.componentsV2.CapTagList.Ok": "Ok",
102593
102569
  "creatives.componentsV2.CapTagList.all": "All",
@@ -104280,7 +104256,6 @@ new message content.",
104280
104256
  "creatives.containersV2.WeChat.templateName": "Template Name",
104281
104257
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
104282
104258
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
104283
- "creatives.containersV2.WebPush.addLabels": "Add labels",
104284
104259
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
104285
104260
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
104286
104261
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -104849,7 +104824,7 @@ new message content.",
104849
104824
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
104850
104825
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
104851
104826
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
104852
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
104827
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
104853
104828
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
104854
104829
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
104855
104830
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -104857,13 +104832,13 @@ new message content.",
104857
104832
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
104858
104833
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
104859
104834
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
104860
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
104835
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
104861
104836
  "creatives.componentsV2.CapImageUpload.or": "OR",
104862
104837
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
104863
104838
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
104864
104839
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
104865
104840
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
104866
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
104841
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
104867
104842
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
104868
104843
  "creatives.componentsV2.CapTagList.Ok": "Ok",
104869
104844
  "creatives.componentsV2.CapTagList.all": "All",
@@ -106556,7 +106531,6 @@ new message content.",
106556
106531
  "creatives.containersV2.WeChat.templateName": "Template Name",
106557
106532
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
106558
106533
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
106559
- "creatives.containersV2.WebPush.addLabels": "Add labels",
106560
106534
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
106561
106535
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
106562
106536
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -107137,7 +107111,7 @@ new message content.",
107137
107111
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
107138
107112
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
107139
107113
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
107140
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
107114
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
107141
107115
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
107142
107116
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
107143
107117
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -107145,13 +107119,13 @@ new message content.",
107145
107119
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
107146
107120
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
107147
107121
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
107148
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
107122
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
107149
107123
  "creatives.componentsV2.CapImageUpload.or": "OR",
107150
107124
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
107151
107125
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
107152
107126
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
107153
107127
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
107154
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
107128
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
107155
107129
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
107156
107130
  "creatives.componentsV2.CapTagList.Ok": "Ok",
107157
107131
  "creatives.componentsV2.CapTagList.all": "All",
@@ -108844,7 +108818,6 @@ new message content.",
108844
108818
  "creatives.containersV2.WeChat.templateName": "Template Name",
108845
108819
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
108846
108820
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
108847
- "creatives.containersV2.WebPush.addLabels": "Add labels",
108848
108821
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
108849
108822
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
108850
108823
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",