@capillarytech/creatives-library 8.0.257 → 8.0.259

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 (155) hide show
  1. package/constants/unified.js +1 -0
  2. package/package.json +1 -1
  3. package/services/api.js +5 -0
  4. package/translations/en.json +4 -3
  5. package/utils/common.js +6 -0
  6. package/utils/imageUrlUpload.js +141 -0
  7. package/utils/tests/transformerUtils.test.js +297 -0
  8. package/utils/transformerUtils.js +40 -0
  9. package/v2Components/CapImageUpload/constants.js +2 -0
  10. package/v2Components/CapImageUpload/index.js +65 -16
  11. package/v2Components/CapImageUpload/index.scss +4 -1
  12. package/v2Components/CapImageUpload/messages.js +5 -1
  13. package/v2Components/CapImageUrlUpload/constants.js +26 -0
  14. package/v2Components/CapImageUrlUpload/index.js +365 -0
  15. package/v2Components/CapImageUrlUpload/index.scss +35 -0
  16. package/v2Components/CapImageUrlUpload/messages.js +47 -0
  17. package/v2Components/HtmlEditor/hooks/__tests__/useValidation.test.js +17 -16
  18. package/v2Containers/App/constants.js +5 -0
  19. package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +4 -3
  20. package/v2Containers/CreativesContainer/SlideBoxContent.js +56 -2
  21. package/v2Containers/CreativesContainer/SlideBoxHeader.js +1 -0
  22. package/v2Containers/CreativesContainer/constants.js +3 -0
  23. package/v2Containers/CreativesContainer/index.js +168 -0
  24. package/v2Containers/CreativesContainer/messages.js +4 -0
  25. package/v2Containers/CreativesContainer/tests/SlideBoxContent.test.js +210 -0
  26. package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +304 -0
  27. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +36 -12
  28. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +8 -6
  29. package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +100 -75
  30. package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +72 -54
  31. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +250 -178
  32. package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +16 -12
  33. package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +48 -36
  34. package/v2Containers/Templates/ChannelTypeIllustration.js +13 -1
  35. package/v2Containers/Templates/_templates.scss +205 -0
  36. package/v2Containers/Templates/actions.js +2 -1
  37. package/v2Containers/Templates/constants.js +1 -0
  38. package/v2Containers/Templates/index.js +274 -34
  39. package/v2Containers/Templates/messages.js +24 -0
  40. package/v2Containers/Templates/reducer.js +2 -0
  41. package/v2Containers/Templates/tests/index.test.js +10 -0
  42. package/v2Containers/TemplatesV2/index.js +15 -7
  43. package/v2Containers/TemplatesV2/messages.js +4 -0
  44. package/v2Containers/WebPush/Create/components/BrandIconSection.js +108 -0
  45. package/v2Containers/WebPush/Create/components/ButtonForm.js +172 -0
  46. package/v2Containers/WebPush/Create/components/ButtonItem.js +101 -0
  47. package/v2Containers/WebPush/Create/components/ButtonList.js +145 -0
  48. package/v2Containers/WebPush/Create/components/ButtonsLinksSection.js +164 -0
  49. package/v2Containers/WebPush/Create/components/ButtonsLinksSection.test.js +463 -0
  50. package/v2Containers/WebPush/Create/components/FormActions.js +54 -0
  51. package/v2Containers/WebPush/Create/components/FormActions.test.js +163 -0
  52. package/v2Containers/WebPush/Create/components/MediaSection.js +142 -0
  53. package/v2Containers/WebPush/Create/components/MediaSection.test.js +341 -0
  54. package/v2Containers/WebPush/Create/components/MessageSection.js +103 -0
  55. package/v2Containers/WebPush/Create/components/MessageSection.test.js +268 -0
  56. package/v2Containers/WebPush/Create/components/NotificationTitleSection.js +87 -0
  57. package/v2Containers/WebPush/Create/components/NotificationTitleSection.test.js +210 -0
  58. package/v2Containers/WebPush/Create/components/TemplateNameSection.js +54 -0
  59. package/v2Containers/WebPush/Create/components/TemplateNameSection.test.js +143 -0
  60. package/v2Containers/WebPush/Create/components/__snapshots__/ButtonsLinksSection.test.js.snap +86 -0
  61. package/v2Containers/WebPush/Create/components/__snapshots__/FormActions.test.js.snap +16 -0
  62. package/v2Containers/WebPush/Create/components/__snapshots__/MediaSection.test.js.snap +41 -0
  63. package/v2Containers/WebPush/Create/components/__snapshots__/MessageSection.test.js.snap +54 -0
  64. package/v2Containers/WebPush/Create/components/__snapshots__/NotificationTitleSection.test.js.snap +37 -0
  65. package/v2Containers/WebPush/Create/components/__snapshots__/TemplateNameSection.test.js.snap +21 -0
  66. package/v2Containers/WebPush/Create/components/_buttons.scss +246 -0
  67. package/v2Containers/WebPush/Create/components/tests/ButtonForm.test.js +554 -0
  68. package/v2Containers/WebPush/Create/components/tests/ButtonItem.test.js +607 -0
  69. package/v2Containers/WebPush/Create/components/tests/ButtonList.test.js +633 -0
  70. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonForm.test.js.snap +666 -0
  71. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonItem.test.js.snap +74 -0
  72. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonList.test.js.snap +78 -0
  73. package/v2Containers/WebPush/Create/hooks/useButtonManagement.js +138 -0
  74. package/v2Containers/WebPush/Create/hooks/useButtonManagement.test.js +406 -0
  75. package/v2Containers/WebPush/Create/hooks/useCharacterCount.js +30 -0
  76. package/v2Containers/WebPush/Create/hooks/useCharacterCount.test.js +151 -0
  77. package/v2Containers/WebPush/Create/hooks/useImageUpload.js +104 -0
  78. package/v2Containers/WebPush/Create/hooks/useImageUpload.test.js +538 -0
  79. package/v2Containers/WebPush/Create/hooks/useTagManagement.js +122 -0
  80. package/v2Containers/WebPush/Create/hooks/useTagManagement.test.js +633 -0
  81. package/v2Containers/WebPush/Create/index.js +1148 -0
  82. package/v2Containers/WebPush/Create/index.scss +134 -0
  83. package/v2Containers/WebPush/Create/messages.js +203 -0
  84. package/v2Containers/WebPush/Create/preview/DevicePreviewContent.js +228 -0
  85. package/v2Containers/WebPush/Create/preview/NotificationContainer.js +294 -0
  86. package/v2Containers/WebPush/Create/preview/PreviewContent.js +90 -0
  87. package/v2Containers/WebPush/Create/preview/PreviewControls.js +305 -0
  88. package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +23 -0
  89. package/v2Containers/WebPush/Create/preview/WebPushPreview.js +155 -0
  90. package/v2Containers/WebPush/Create/preview/assets/Light.svg +53 -0
  91. package/v2Containers/WebPush/Create/preview/assets/Top.svg +5 -0
  92. package/v2Containers/WebPush/Create/preview/assets/android-arrow-down.svg +9 -0
  93. package/v2Containers/WebPush/Create/preview/assets/android-arrow-up.svg +9 -0
  94. package/v2Containers/WebPush/Create/preview/assets/chrome-icon.png +0 -0
  95. package/v2Containers/WebPush/Create/preview/assets/edge-icon.png +0 -0
  96. package/v2Containers/WebPush/Create/preview/assets/firefox-icon.svg +106 -0
  97. package/v2Containers/WebPush/Create/preview/assets/iOS.svg +26 -0
  98. package/v2Containers/WebPush/Create/preview/assets/macos-arrow-down-icon.svg +9 -0
  99. package/v2Containers/WebPush/Create/preview/assets/macos-triple-dot-icon.svg +9 -0
  100. package/v2Containers/WebPush/Create/preview/assets/opera-icon.svg +18 -0
  101. package/v2Containers/WebPush/Create/preview/assets/safari-icon.svg +29 -0
  102. package/v2Containers/WebPush/Create/preview/assets/windows-close-icon.svg +9 -0
  103. package/v2Containers/WebPush/Create/preview/assets/windows-triple-dot-icon.svg +9 -0
  104. package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +47 -0
  105. package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +141 -0
  106. package/v2Containers/WebPush/Create/preview/components/IOSHeader.js +45 -0
  107. package/v2Containers/WebPush/Create/preview/components/NotificationExpandedContent.js +68 -0
  108. package/v2Containers/WebPush/Create/preview/components/NotificationHeader.js +61 -0
  109. package/v2Containers/WebPush/Create/preview/components/WindowsChromeExpanded.js +99 -0
  110. package/v2Containers/WebPush/Create/preview/components/tests/AndroidMobileExpanded.test.js +733 -0
  111. package/v2Containers/WebPush/Create/preview/components/tests/WindowsChromeExpanded.test.js +571 -0
  112. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +81 -0
  113. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/WindowsChromeExpanded.test.js.snap +81 -0
  114. package/v2Containers/WebPush/Create/preview/config/notificationMappings.js +50 -0
  115. package/v2Containers/WebPush/Create/preview/constants.js +637 -0
  116. package/v2Containers/WebPush/Create/preview/notification-container.scss +79 -0
  117. package/v2Containers/WebPush/Create/preview/preview.scss +351 -0
  118. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-chrome.scss +370 -0
  119. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-edge.scss +12 -0
  120. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-firefox.scss +12 -0
  121. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-opera.scss +12 -0
  122. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-chrome.scss +47 -0
  123. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-edge.scss +11 -0
  124. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-firefox.scss +11 -0
  125. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-opera.scss +11 -0
  126. package/v2Containers/WebPush/Create/preview/styles/_base.scss +207 -0
  127. package/v2Containers/WebPush/Create/preview/styles/_ios.scss +153 -0
  128. package/v2Containers/WebPush/Create/preview/styles/_ipados.scss +107 -0
  129. package/v2Containers/WebPush/Create/preview/styles/_macos-chrome.scss +101 -0
  130. package/v2Containers/WebPush/Create/preview/styles/_windows-chrome.scss +229 -0
  131. package/v2Containers/WebPush/Create/preview/tests/DevicePreviewContent.test.js +909 -0
  132. package/v2Containers/WebPush/Create/preview/tests/NotificationContainer.test.js +1081 -0
  133. package/v2Containers/WebPush/Create/preview/tests/PreviewControls.test.js +723 -0
  134. package/v2Containers/WebPush/Create/preview/tests/WebPushPreview.test.js +1327 -0
  135. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/DevicePreviewContent.test.js.snap +131 -0
  136. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/NotificationContainer.test.js.snap +112 -0
  137. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/PreviewControls.test.js.snap +144 -0
  138. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/WebPushPreview.test.js.snap +129 -0
  139. package/v2Containers/WebPush/Create/utils/payloadBuilder.js +96 -0
  140. package/v2Containers/WebPush/Create/utils/payloadBuilder.test.js +396 -0
  141. package/v2Containers/WebPush/Create/utils/previewUtils.js +89 -0
  142. package/v2Containers/WebPush/Create/utils/urlValidation.js +115 -0
  143. package/v2Containers/WebPush/Create/utils/urlValidation.test.js +449 -0
  144. package/v2Containers/WebPush/Create/utils/validation.js +75 -0
  145. package/v2Containers/WebPush/Create/utils/validation.test.js +283 -0
  146. package/v2Containers/WebPush/actions.js +60 -0
  147. package/v2Containers/WebPush/constants.js +132 -0
  148. package/v2Containers/WebPush/index.js +2 -0
  149. package/v2Containers/WebPush/reducer.js +104 -0
  150. package/v2Containers/WebPush/sagas.js +119 -0
  151. package/v2Containers/WebPush/selectors.js +65 -0
  152. package/v2Containers/WebPush/tests/reducer.test.js +863 -0
  153. package/v2Containers/WebPush/tests/sagas.test.js +566 -0
  154. package/v2Containers/WebPush/tests/selectors.test.js +960 -0
  155. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +1272 -734
@@ -189,7 +189,7 @@ exports[`line wrapper test/> should render line component new 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 upto: {size}",
192
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {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 line component new 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 upto: 2MB",
200
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 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 upto: 5MB",
206
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
207
207
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
208
208
  "creatives.componentsV2.CapTagList.Ok": "Ok",
209
209
  "creatives.componentsV2.CapTagList.all": "All",
@@ -1896,6 +1896,7 @@ 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",
1899
1900
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
1900
1901
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
1901
1902
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -6510,7 +6511,7 @@ new message content.",
6510
6511
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
6511
6512
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
6512
6513
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
6513
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
6514
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
6514
6515
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
6515
6516
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
6516
6517
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -6518,13 +6519,13 @@ new message content.",
6518
6519
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
6519
6520
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
6520
6521
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
6521
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
6522
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
6522
6523
  "creatives.componentsV2.CapImageUpload.or": "OR",
6523
6524
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
6524
6525
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
6525
6526
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
6526
6527
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
6527
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
6528
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
6528
6529
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
6529
6530
  "creatives.componentsV2.CapTagList.Ok": "Ok",
6530
6531
  "creatives.componentsV2.CapTagList.all": "All",
@@ -8217,6 +8218,7 @@ new message content.",
8217
8218
  "creatives.containersV2.WeChat.templateName": "Template Name",
8218
8219
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
8219
8220
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
8221
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
8220
8222
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
8221
8223
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
8222
8224
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -9208,7 +9210,7 @@ exports[`line wrapper test/> should render line component new 2`] = `
9208
9210
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
9209
9211
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
9210
9212
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
9211
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
9213
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
9212
9214
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
9213
9215
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
9214
9216
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -9216,13 +9218,13 @@ exports[`line wrapper test/> should render line component new 2`] = `
9216
9218
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
9217
9219
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
9218
9220
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
9219
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
9221
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
9220
9222
  "creatives.componentsV2.CapImageUpload.or": "OR",
9221
9223
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
9222
9224
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
9223
9225
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
9224
9226
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
9225
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
9227
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
9226
9228
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
9227
9229
  "creatives.componentsV2.CapTagList.Ok": "Ok",
9228
9230
  "creatives.componentsV2.CapTagList.all": "All",
@@ -10915,6 +10917,7 @@ new message content.",
10915
10917
  "creatives.containersV2.WeChat.templateName": "Template Name",
10916
10918
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
10917
10919
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
10920
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
10918
10921
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
10919
10922
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
10920
10923
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -15713,7 +15716,7 @@ new message content.",
15713
15716
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
15714
15717
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
15715
15718
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
15716
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
15719
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
15717
15720
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
15718
15721
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
15719
15722
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -15721,13 +15724,13 @@ new message content.",
15721
15724
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
15722
15725
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
15723
15726
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
15724
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
15727
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
15725
15728
  "creatives.componentsV2.CapImageUpload.or": "OR",
15726
15729
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
15727
15730
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
15728
15731
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
15729
15732
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
15730
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
15733
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
15731
15734
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
15732
15735
  "creatives.componentsV2.CapTagList.Ok": "Ok",
15733
15736
  "creatives.componentsV2.CapTagList.all": "All",
@@ -17420,6 +17423,7 @@ new message content.",
17420
17423
  "creatives.containersV2.WeChat.templateName": "Template Name",
17421
17424
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
17422
17425
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
17426
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
17423
17427
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
17424
17428
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
17425
17429
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -18411,7 +18415,7 @@ exports[`line wrapper test/> should render line component new 3`] = `
18411
18415
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
18412
18416
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
18413
18417
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
18414
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
18418
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
18415
18419
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
18416
18420
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
18417
18421
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -18419,13 +18423,13 @@ exports[`line wrapper test/> should render line component new 3`] = `
18419
18423
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
18420
18424
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
18421
18425
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
18422
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
18426
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
18423
18427
  "creatives.componentsV2.CapImageUpload.or": "OR",
18424
18428
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
18425
18429
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
18426
18430
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
18427
18431
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
18428
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
18432
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
18429
18433
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
18430
18434
  "creatives.componentsV2.CapTagList.Ok": "Ok",
18431
18435
  "creatives.componentsV2.CapTagList.all": "All",
@@ -20118,6 +20122,7 @@ new message content.",
20118
20122
  "creatives.containersV2.WeChat.templateName": "Template Name",
20119
20123
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
20120
20124
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
20125
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
20121
20126
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
20122
20127
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
20123
20128
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -25158,7 +25163,7 @@ new message content.",
25158
25163
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
25159
25164
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
25160
25165
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
25161
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
25166
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
25162
25167
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
25163
25168
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
25164
25169
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -25166,13 +25171,13 @@ new message content.",
25166
25171
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
25167
25172
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
25168
25173
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
25169
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
25174
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
25170
25175
  "creatives.componentsV2.CapImageUpload.or": "OR",
25171
25176
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
25172
25177
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
25173
25178
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
25174
25179
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
25175
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
25180
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
25176
25181
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
25177
25182
  "creatives.componentsV2.CapTagList.Ok": "Ok",
25178
25183
  "creatives.componentsV2.CapTagList.all": "All",
@@ -26865,6 +26870,7 @@ new message content.",
26865
26870
  "creatives.containersV2.WeChat.templateName": "Template Name",
26866
26871
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
26867
26872
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
26873
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
26868
26874
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
26869
26875
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
26870
26876
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -27891,7 +27897,7 @@ exports[`line wrapper test/> should render line component new 4`] = `
27891
27897
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
27892
27898
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
27893
27899
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
27894
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
27900
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
27895
27901
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
27896
27902
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
27897
27903
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -27899,13 +27905,13 @@ exports[`line wrapper test/> should render line component new 4`] = `
27899
27905
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
27900
27906
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
27901
27907
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
27902
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
27908
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
27903
27909
  "creatives.componentsV2.CapImageUpload.or": "OR",
27904
27910
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
27905
27911
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
27906
27912
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
27907
27913
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
27908
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
27914
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
27909
27915
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
27910
27916
  "creatives.componentsV2.CapTagList.Ok": "Ok",
27911
27917
  "creatives.componentsV2.CapTagList.all": "All",
@@ -29598,6 +29604,7 @@ new message content.",
29598
29604
  "creatives.containersV2.WeChat.templateName": "Template Name",
29599
29605
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
29600
29606
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
29607
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
29601
29608
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
29602
29609
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
29603
29610
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -36859,7 +36866,7 @@ new message content.",
36859
36866
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
36860
36867
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
36861
36868
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
36862
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
36869
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
36863
36870
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
36864
36871
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
36865
36872
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -36867,13 +36874,13 @@ new message content.",
36867
36874
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
36868
36875
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
36869
36876
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
36870
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
36877
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
36871
36878
  "creatives.componentsV2.CapImageUpload.or": "OR",
36872
36879
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
36873
36880
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
36874
36881
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
36875
36882
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
36876
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
36883
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
36877
36884
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
36878
36885
  "creatives.componentsV2.CapTagList.Ok": "Ok",
36879
36886
  "creatives.componentsV2.CapTagList.all": "All",
@@ -38566,6 +38573,7 @@ new message content.",
38566
38573
  "creatives.containersV2.WeChat.templateName": "Template Name",
38567
38574
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
38568
38575
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
38576
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
38569
38577
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
38570
38578
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
38571
38579
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -39592,7 +39600,7 @@ exports[`line wrapper test/> should render line component new 5`] = `
39592
39600
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
39593
39601
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
39594
39602
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
39595
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
39603
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
39596
39604
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
39597
39605
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
39598
39606
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -39600,13 +39608,13 @@ exports[`line wrapper test/> should render line component new 5`] = `
39600
39608
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
39601
39609
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
39602
39610
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
39603
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
39611
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
39604
39612
  "creatives.componentsV2.CapImageUpload.or": "OR",
39605
39613
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
39606
39614
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
39607
39615
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
39608
39616
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
39609
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
39617
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
39610
39618
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
39611
39619
  "creatives.componentsV2.CapTagList.Ok": "Ok",
39612
39620
  "creatives.componentsV2.CapTagList.all": "All",
@@ -41299,6 +41307,7 @@ new message content.",
41299
41307
  "creatives.containersV2.WeChat.templateName": "Template Name",
41300
41308
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
41301
41309
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
41310
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
41302
41311
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
41303
41312
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
41304
41313
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -48602,7 +48611,7 @@ new message content.",
48602
48611
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
48603
48612
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
48604
48613
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
48605
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
48614
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
48606
48615
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
48607
48616
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
48608
48617
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -48610,13 +48619,13 @@ new message content.",
48610
48619
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
48611
48620
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
48612
48621
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
48613
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
48622
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
48614
48623
  "creatives.componentsV2.CapImageUpload.or": "OR",
48615
48624
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
48616
48625
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
48617
48626
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
48618
48627
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
48619
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
48628
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
48620
48629
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
48621
48630
  "creatives.componentsV2.CapTagList.Ok": "Ok",
48622
48631
  "creatives.componentsV2.CapTagList.all": "All",
@@ -50309,6 +50318,7 @@ new message content.",
50309
50318
  "creatives.containersV2.WeChat.templateName": "Template Name",
50310
50319
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
50311
50320
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
50321
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
50312
50322
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
50313
50323
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
50314
50324
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -51335,7 +51345,7 @@ exports[`line wrapper test/> should render line component old 1`] = `
51335
51345
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
51336
51346
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
51337
51347
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
51338
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
51348
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
51339
51349
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
51340
51350
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
51341
51351
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -51343,13 +51353,13 @@ exports[`line wrapper test/> should render line component old 1`] = `
51343
51353
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
51344
51354
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
51345
51355
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
51346
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
51356
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
51347
51357
  "creatives.componentsV2.CapImageUpload.or": "OR",
51348
51358
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
51349
51359
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
51350
51360
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
51351
51361
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
51352
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
51362
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
51353
51363
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
51354
51364
  "creatives.componentsV2.CapTagList.Ok": "Ok",
51355
51365
  "creatives.componentsV2.CapTagList.all": "All",
@@ -53042,6 +53052,7 @@ new message content.",
53042
53052
  "creatives.containersV2.WeChat.templateName": "Template Name",
53043
53053
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
53044
53054
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
53055
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
53045
53056
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
53046
53057
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
53047
53058
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -55725,7 +55736,7 @@ new message content.",
55725
55736
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
55726
55737
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
55727
55738
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
55728
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
55739
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
55729
55740
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
55730
55741
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
55731
55742
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -55733,13 +55744,13 @@ new message content.",
55733
55744
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
55734
55745
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
55735
55746
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
55736
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
55747
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
55737
55748
  "creatives.componentsV2.CapImageUpload.or": "OR",
55738
55749
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
55739
55750
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
55740
55751
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
55741
55752
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
55742
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
55753
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
55743
55754
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
55744
55755
  "creatives.componentsV2.CapTagList.Ok": "Ok",
55745
55756
  "creatives.componentsV2.CapTagList.all": "All",
@@ -57432,6 +57443,7 @@ new message content.",
57432
57443
  "creatives.containersV2.WeChat.templateName": "Template Name",
57433
57444
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
57434
57445
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
57446
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
57435
57447
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
57436
57448
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
57437
57449
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -59128,7 +59140,7 @@ exports[`line wrapper test/> should render line component old 2`] = `
59128
59140
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
59129
59141
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
59130
59142
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
59131
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
59143
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
59132
59144
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
59133
59145
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
59134
59146
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -59136,13 +59148,13 @@ exports[`line wrapper test/> should render line component old 2`] = `
59136
59148
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
59137
59149
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
59138
59150
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
59139
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
59151
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
59140
59152
  "creatives.componentsV2.CapImageUpload.or": "OR",
59141
59153
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
59142
59154
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
59143
59155
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
59144
59156
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
59145
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
59157
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
59146
59158
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
59147
59159
  "creatives.componentsV2.CapTagList.Ok": "Ok",
59148
59160
  "creatives.componentsV2.CapTagList.all": "All",
@@ -60835,6 +60847,7 @@ new message content.",
60835
60847
  "creatives.containersV2.WeChat.templateName": "Template Name",
60836
60848
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
60837
60849
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
60850
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
60838
60851
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
60839
60852
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
60840
60853
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -63936,7 +63949,7 @@ new message content.",
63936
63949
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
63937
63950
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
63938
63951
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
63939
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
63952
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
63940
63953
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
63941
63954
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
63942
63955
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -63944,13 +63957,13 @@ new message content.",
63944
63957
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
63945
63958
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
63946
63959
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
63947
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
63960
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
63948
63961
  "creatives.componentsV2.CapImageUpload.or": "OR",
63949
63962
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
63950
63963
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
63951
63964
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
63952
63965
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
63953
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
63966
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
63954
63967
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
63955
63968
  "creatives.componentsV2.CapTagList.Ok": "Ok",
63956
63969
  "creatives.componentsV2.CapTagList.all": "All",
@@ -65643,6 +65656,7 @@ new message content.",
65643
65656
  "creatives.containersV2.WeChat.templateName": "Template Name",
65644
65657
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
65645
65658
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
65659
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
65646
65660
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
65647
65661
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
65648
65662
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -67339,7 +67353,7 @@ exports[`line wrapper test/> should render line component old 3`] = `
67339
67353
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
67340
67354
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
67341
67355
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
67342
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
67356
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
67343
67357
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
67344
67358
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
67345
67359
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -67347,13 +67361,13 @@ exports[`line wrapper test/> should render line component old 3`] = `
67347
67361
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
67348
67362
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
67349
67363
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
67350
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
67364
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
67351
67365
  "creatives.componentsV2.CapImageUpload.or": "OR",
67352
67366
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
67353
67367
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
67354
67368
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
67355
67369
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
67356
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
67370
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
67357
67371
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
67358
67372
  "creatives.componentsV2.CapTagList.Ok": "Ok",
67359
67373
  "creatives.componentsV2.CapTagList.all": "All",
@@ -69046,6 +69060,7 @@ new message content.",
69046
69060
  "creatives.containersV2.WeChat.templateName": "Template Name",
69047
69061
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
69048
69062
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
69063
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
69049
69064
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
69050
69065
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
69051
69066
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -72389,7 +72404,7 @@ new message content.",
72389
72404
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
72390
72405
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
72391
72406
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
72392
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
72407
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
72393
72408
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
72394
72409
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
72395
72410
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -72397,13 +72412,13 @@ new message content.",
72397
72412
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
72398
72413
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
72399
72414
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
72400
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
72415
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
72401
72416
  "creatives.componentsV2.CapImageUpload.or": "OR",
72402
72417
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
72403
72418
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
72404
72419
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
72405
72420
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
72406
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
72421
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
72407
72422
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
72408
72423
  "creatives.componentsV2.CapTagList.Ok": "Ok",
72409
72424
  "creatives.componentsV2.CapTagList.all": "All",
@@ -74096,6 +74111,7 @@ new message content.",
74096
74111
  "creatives.containersV2.WeChat.templateName": "Template Name",
74097
74112
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
74098
74113
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
74114
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
74099
74115
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
74100
74116
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
74101
74117
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -75827,7 +75843,7 @@ exports[`line wrapper test/> should render line component old 4`] = `
75827
75843
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
75828
75844
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
75829
75845
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
75830
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
75846
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
75831
75847
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
75832
75848
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
75833
75849
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -75835,13 +75851,13 @@ exports[`line wrapper test/> should render line component old 4`] = `
75835
75851
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
75836
75852
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
75837
75853
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
75838
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
75854
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
75839
75855
  "creatives.componentsV2.CapImageUpload.or": "OR",
75840
75856
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
75841
75857
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
75842
75858
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
75843
75859
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
75844
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
75860
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
75845
75861
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
75846
75862
  "creatives.componentsV2.CapTagList.Ok": "Ok",
75847
75863
  "creatives.componentsV2.CapTagList.all": "All",
@@ -77534,6 +77550,7 @@ new message content.",
77534
77550
  "creatives.containersV2.WeChat.templateName": "Template Name",
77535
77551
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
77536
77552
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
77553
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
77537
77554
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
77538
77555
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
77539
77556
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -80997,7 +81014,7 @@ new message content.",
80997
81014
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
80998
81015
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
80999
81016
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
81000
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
81017
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
81001
81018
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
81002
81019
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
81003
81020
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -81005,13 +81022,13 @@ new message content.",
81005
81022
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
81006
81023
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
81007
81024
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
81008
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
81025
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
81009
81026
  "creatives.componentsV2.CapImageUpload.or": "OR",
81010
81027
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
81011
81028
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
81012
81029
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
81013
81030
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
81014
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
81031
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
81015
81032
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
81016
81033
  "creatives.componentsV2.CapTagList.Ok": "Ok",
81017
81034
  "creatives.componentsV2.CapTagList.all": "All",
@@ -82704,6 +82721,7 @@ new message content.",
82704
82721
  "creatives.containersV2.WeChat.templateName": "Template Name",
82705
82722
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
82706
82723
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
82724
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
82707
82725
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
82708
82726
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
82709
82727
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",