@capillarytech/creatives-library 8.0.256 → 8.0.258
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.
- package/constants/unified.js +1 -0
- package/package.json +1 -1
- package/services/api.js +5 -0
- package/translations/en.json +4 -3
- package/utils/common.js +6 -0
- package/utils/imageUrlUpload.js +141 -0
- package/utils/tests/transformerUtils.test.js +297 -0
- package/utils/transformerUtils.js +40 -0
- package/v2Components/CapImageUpload/constants.js +2 -0
- package/v2Components/CapImageUpload/index.js +65 -16
- package/v2Components/CapImageUpload/index.scss +4 -1
- package/v2Components/CapImageUpload/messages.js +5 -1
- package/v2Components/CapImageUrlUpload/constants.js +26 -0
- package/v2Components/CapImageUrlUpload/index.js +365 -0
- package/v2Components/CapImageUrlUpload/index.scss +35 -0
- package/v2Components/CapImageUrlUpload/messages.js +47 -0
- package/v2Containers/App/constants.js +5 -0
- package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +4 -3
- package/v2Containers/CreativesContainer/SlideBoxContent.js +57 -2
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +1 -0
- package/v2Containers/CreativesContainer/constants.js +3 -0
- package/v2Containers/CreativesContainer/index.js +168 -0
- package/v2Containers/CreativesContainer/messages.js +4 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.test.js +210 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +304 -0
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +36 -12
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +8 -6
- package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +100 -75
- package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +72 -54
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +250 -178
- package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +16 -12
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +48 -36
- package/v2Containers/Templates/ChannelTypeIllustration.js +13 -1
- package/v2Containers/Templates/_templates.scss +205 -0
- package/v2Containers/Templates/actions.js +2 -1
- package/v2Containers/Templates/constants.js +1 -0
- package/v2Containers/Templates/index.js +274 -34
- package/v2Containers/Templates/messages.js +24 -0
- package/v2Containers/Templates/reducer.js +2 -0
- package/v2Containers/Templates/tests/index.test.js +10 -0
- package/v2Containers/TemplatesV2/index.js +15 -7
- package/v2Containers/TemplatesV2/messages.js +4 -0
- package/v2Containers/WebPush/Create/components/BrandIconSection.js +108 -0
- package/v2Containers/WebPush/Create/components/ButtonForm.js +172 -0
- package/v2Containers/WebPush/Create/components/ButtonItem.js +101 -0
- package/v2Containers/WebPush/Create/components/ButtonList.js +145 -0
- package/v2Containers/WebPush/Create/components/ButtonsLinksSection.js +164 -0
- package/v2Containers/WebPush/Create/components/ButtonsLinksSection.test.js +463 -0
- package/v2Containers/WebPush/Create/components/FormActions.js +54 -0
- package/v2Containers/WebPush/Create/components/FormActions.test.js +163 -0
- package/v2Containers/WebPush/Create/components/MediaSection.js +142 -0
- package/v2Containers/WebPush/Create/components/MediaSection.test.js +341 -0
- package/v2Containers/WebPush/Create/components/MessageSection.js +103 -0
- package/v2Containers/WebPush/Create/components/MessageSection.test.js +268 -0
- package/v2Containers/WebPush/Create/components/NotificationTitleSection.js +87 -0
- package/v2Containers/WebPush/Create/components/NotificationTitleSection.test.js +210 -0
- package/v2Containers/WebPush/Create/components/TemplateNameSection.js +54 -0
- package/v2Containers/WebPush/Create/components/TemplateNameSection.test.js +143 -0
- package/v2Containers/WebPush/Create/components/__snapshots__/ButtonsLinksSection.test.js.snap +86 -0
- package/v2Containers/WebPush/Create/components/__snapshots__/FormActions.test.js.snap +16 -0
- package/v2Containers/WebPush/Create/components/__snapshots__/MediaSection.test.js.snap +41 -0
- package/v2Containers/WebPush/Create/components/__snapshots__/MessageSection.test.js.snap +54 -0
- package/v2Containers/WebPush/Create/components/__snapshots__/NotificationTitleSection.test.js.snap +37 -0
- package/v2Containers/WebPush/Create/components/__snapshots__/TemplateNameSection.test.js.snap +21 -0
- package/v2Containers/WebPush/Create/components/_buttons.scss +246 -0
- package/v2Containers/WebPush/Create/components/tests/ButtonForm.test.js +554 -0
- package/v2Containers/WebPush/Create/components/tests/ButtonItem.test.js +607 -0
- package/v2Containers/WebPush/Create/components/tests/ButtonList.test.js +633 -0
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonForm.test.js.snap +666 -0
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonItem.test.js.snap +74 -0
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonList.test.js.snap +78 -0
- package/v2Containers/WebPush/Create/hooks/useButtonManagement.js +138 -0
- package/v2Containers/WebPush/Create/hooks/useButtonManagement.test.js +406 -0
- package/v2Containers/WebPush/Create/hooks/useCharacterCount.js +30 -0
- package/v2Containers/WebPush/Create/hooks/useCharacterCount.test.js +151 -0
- package/v2Containers/WebPush/Create/hooks/useImageUpload.js +104 -0
- package/v2Containers/WebPush/Create/hooks/useImageUpload.test.js +538 -0
- package/v2Containers/WebPush/Create/hooks/useTagManagement.js +122 -0
- package/v2Containers/WebPush/Create/hooks/useTagManagement.test.js +633 -0
- package/v2Containers/WebPush/Create/index.js +1148 -0
- package/v2Containers/WebPush/Create/index.scss +134 -0
- package/v2Containers/WebPush/Create/messages.js +203 -0
- package/v2Containers/WebPush/Create/preview/DevicePreviewContent.js +228 -0
- package/v2Containers/WebPush/Create/preview/NotificationContainer.js +294 -0
- package/v2Containers/WebPush/Create/preview/PreviewContent.js +90 -0
- package/v2Containers/WebPush/Create/preview/PreviewControls.js +305 -0
- package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +23 -0
- package/v2Containers/WebPush/Create/preview/WebPushPreview.js +155 -0
- package/v2Containers/WebPush/Create/preview/assets/Light.svg +53 -0
- package/v2Containers/WebPush/Create/preview/assets/Top.svg +5 -0
- package/v2Containers/WebPush/Create/preview/assets/android-arrow-down.svg +9 -0
- package/v2Containers/WebPush/Create/preview/assets/android-arrow-up.svg +9 -0
- package/v2Containers/WebPush/Create/preview/assets/chrome-icon.png +0 -0
- package/v2Containers/WebPush/Create/preview/assets/edge-icon.png +0 -0
- package/v2Containers/WebPush/Create/preview/assets/firefox-icon.svg +106 -0
- package/v2Containers/WebPush/Create/preview/assets/iOS.svg +26 -0
- package/v2Containers/WebPush/Create/preview/assets/macos-arrow-down-icon.svg +9 -0
- package/v2Containers/WebPush/Create/preview/assets/macos-triple-dot-icon.svg +9 -0
- package/v2Containers/WebPush/Create/preview/assets/opera-icon.svg +18 -0
- package/v2Containers/WebPush/Create/preview/assets/safari-icon.svg +29 -0
- package/v2Containers/WebPush/Create/preview/assets/windows-close-icon.svg +9 -0
- package/v2Containers/WebPush/Create/preview/assets/windows-triple-dot-icon.svg +9 -0
- package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +47 -0
- package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +141 -0
- package/v2Containers/WebPush/Create/preview/components/IOSHeader.js +45 -0
- package/v2Containers/WebPush/Create/preview/components/NotificationExpandedContent.js +68 -0
- package/v2Containers/WebPush/Create/preview/components/NotificationHeader.js +61 -0
- package/v2Containers/WebPush/Create/preview/components/WindowsChromeExpanded.js +99 -0
- package/v2Containers/WebPush/Create/preview/components/tests/AndroidMobileExpanded.test.js +733 -0
- package/v2Containers/WebPush/Create/preview/components/tests/WindowsChromeExpanded.test.js +571 -0
- package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +81 -0
- package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/WindowsChromeExpanded.test.js.snap +81 -0
- package/v2Containers/WebPush/Create/preview/config/notificationMappings.js +50 -0
- package/v2Containers/WebPush/Create/preview/constants.js +637 -0
- package/v2Containers/WebPush/Create/preview/notification-container.scss +79 -0
- package/v2Containers/WebPush/Create/preview/preview.scss +351 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-chrome.scss +370 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-edge.scss +12 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-firefox.scss +12 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-opera.scss +12 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-chrome.scss +47 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-edge.scss +11 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-firefox.scss +11 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-opera.scss +11 -0
- package/v2Containers/WebPush/Create/preview/styles/_base.scss +207 -0
- package/v2Containers/WebPush/Create/preview/styles/_ios.scss +153 -0
- package/v2Containers/WebPush/Create/preview/styles/_ipados.scss +107 -0
- package/v2Containers/WebPush/Create/preview/styles/_macos-chrome.scss +101 -0
- package/v2Containers/WebPush/Create/preview/styles/_windows-chrome.scss +229 -0
- package/v2Containers/WebPush/Create/preview/tests/DevicePreviewContent.test.js +909 -0
- package/v2Containers/WebPush/Create/preview/tests/NotificationContainer.test.js +1081 -0
- package/v2Containers/WebPush/Create/preview/tests/PreviewControls.test.js +723 -0
- package/v2Containers/WebPush/Create/preview/tests/WebPushPreview.test.js +1327 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/DevicePreviewContent.test.js.snap +131 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/NotificationContainer.test.js.snap +112 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/PreviewControls.test.js.snap +144 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/WebPushPreview.test.js.snap +129 -0
- package/v2Containers/WebPush/Create/utils/payloadBuilder.js +96 -0
- package/v2Containers/WebPush/Create/utils/payloadBuilder.test.js +396 -0
- package/v2Containers/WebPush/Create/utils/previewUtils.js +89 -0
- package/v2Containers/WebPush/Create/utils/urlValidation.js +115 -0
- package/v2Containers/WebPush/Create/utils/urlValidation.test.js +449 -0
- package/v2Containers/WebPush/Create/utils/validation.js +75 -0
- package/v2Containers/WebPush/Create/utils/validation.test.js +283 -0
- package/v2Containers/WebPush/actions.js +60 -0
- package/v2Containers/WebPush/constants.js +132 -0
- package/v2Containers/WebPush/index.js +2 -0
- package/v2Containers/WebPush/reducer.js +104 -0
- package/v2Containers/WebPush/sagas.js +119 -0
- package/v2Containers/WebPush/selectors.js +65 -0
- package/v2Containers/WebPush/tests/reducer.test.js +863 -0
- package/v2Containers/WebPush/tests/sagas.test.js +566 -0
- package/v2Containers/WebPush/tests/selectors.test.js +960 -0
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +1272 -734
|
@@ -197,7 +197,7 @@ exports[`Creatives SmsTraiCreate test/> done button should be disabled if blank
|
|
|
197
197
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
198
198
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
199
199
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
200
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
200
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
201
201
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
202
202
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
203
203
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -205,13 +205,13 @@ exports[`Creatives SmsTraiCreate test/> done button should be disabled if blank
|
|
|
205
205
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
206
206
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
207
207
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
208
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
208
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
209
209
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
210
210
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
211
211
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
212
212
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
213
213
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
214
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
214
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
215
215
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
216
216
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
217
217
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -1904,6 +1904,7 @@ new message content.",
|
|
|
1904
1904
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
1905
1905
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
1906
1906
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
1907
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
1907
1908
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
1908
1909
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
1909
1910
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -3211,7 +3212,7 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
|
|
|
3211
3212
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
3212
3213
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
3213
3214
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
3214
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
3215
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
3215
3216
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
3216
3217
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
3217
3218
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -3219,13 +3220,13 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
|
|
|
3219
3220
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
3220
3221
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
3221
3222
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
3222
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
3223
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
3223
3224
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
3224
3225
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
3225
3226
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
3226
3227
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
3227
3228
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
3228
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
3229
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
3229
3230
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
3230
3231
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
3231
3232
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -4918,6 +4919,7 @@ new message content.",
|
|
|
4918
4919
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
4919
4920
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
4920
4921
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
4922
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
4921
4923
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
4922
4924
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
4923
4925
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -6225,7 +6227,7 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
|
|
|
6225
6227
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
6226
6228
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
6227
6229
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
6228
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
6230
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
6229
6231
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
6230
6232
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
6231
6233
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -6233,13 +6235,13 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
|
|
|
6233
6235
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
6234
6236
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
6235
6237
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
6236
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
6238
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
6237
6239
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
6238
6240
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
6239
6241
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
6240
6242
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
6241
6243
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
6242
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
6244
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
6243
6245
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
6244
6246
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
6245
6247
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -7932,6 +7934,7 @@ new message content.",
|
|
|
7932
7934
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
7933
7935
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
7934
7936
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
7937
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
7935
7938
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
7936
7939
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
7937
7940
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -9239,7 +9242,7 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
|
|
|
9239
9242
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
9240
9243
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
9241
9244
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
9242
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
9245
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
9243
9246
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
9244
9247
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
9245
9248
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -9247,13 +9250,13 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
|
|
|
9247
9250
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
9248
9251
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
9249
9252
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
9250
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
9253
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
9251
9254
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
9252
9255
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
9253
9256
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
9254
9257
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
9255
9258
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
9256
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
9259
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
9257
9260
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
9258
9261
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
9259
9262
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -10946,6 +10949,7 @@ new message content.",
|
|
|
10946
10949
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
10947
10950
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
10948
10951
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
10952
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
10949
10953
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
10950
10954
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
10951
10955
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -189,7 +189,7 @@ exports[`Creatives SmsTraiEdit test/> should cancel 1`] = `
|
|
|
189
189
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
190
190
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
191
191
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
192
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
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[`Creatives SmsTraiEdit test/> should cancel 1`] = `
|
|
|
197
197
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
198
198
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
199
199
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
200
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
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
|
|
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.",
|
|
@@ -6501,7 +6502,7 @@ FREE GIFTS-
|
|
|
6501
6502
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
6502
6503
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
6503
6504
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
6504
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
6505
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
6505
6506
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
6506
6507
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
6507
6508
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -6509,13 +6510,13 @@ FREE GIFTS-
|
|
|
6509
6510
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
6510
6511
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
6511
6512
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
6512
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
6513
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
6513
6514
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
6514
6515
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
6515
6516
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
6516
6517
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
6517
6518
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
6518
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
6519
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
6519
6520
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
6520
6521
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
6521
6522
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -8208,6 +8209,7 @@ new message content.",
|
|
|
8208
8209
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
8209
8210
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
8210
8211
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
8212
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
8211
8213
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
8212
8214
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
8213
8215
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -8806,7 +8808,7 @@ FREE GIFTS-
|
|
|
8806
8808
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
8807
8809
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
8808
8810
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
8809
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
8811
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
8810
8812
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
8811
8813
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
8812
8814
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -8814,13 +8816,13 @@ FREE GIFTS-
|
|
|
8814
8816
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
8815
8817
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
8816
8818
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
8817
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
8819
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
8818
8820
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
8819
8821
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
8820
8822
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
8821
8823
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
8822
8824
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
8823
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
8825
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
8824
8826
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
8825
8827
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
8826
8828
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -10513,6 +10515,7 @@ new message content.",
|
|
|
10513
10515
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
10514
10516
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
10515
10517
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
10518
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
10516
10519
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
10517
10520
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
10518
10521
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -11235,7 +11238,7 @@ exports[`Creatives SmsTraiEdit test/> should render 1`] = `
|
|
|
11235
11238
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
11236
11239
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
11237
11240
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
11238
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
11241
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
11239
11242
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
11240
11243
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
11241
11244
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -11243,13 +11246,13 @@ exports[`Creatives SmsTraiEdit test/> should render 1`] = `
|
|
|
11243
11246
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
11244
11247
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
11245
11248
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
11246
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
11249
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
11247
11250
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
11248
11251
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
11249
11252
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
11250
11253
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
11251
11254
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
11252
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
11255
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
11253
11256
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
11254
11257
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
11255
11258
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -12942,6 +12945,7 @@ new message content.",
|
|
|
12942
12945
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
12943
12946
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
12944
12947
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
12948
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
12945
12949
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
12946
12950
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
12947
12951
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -17293,7 +17297,7 @@ FREE GIFTS-
|
|
|
17293
17297
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
17294
17298
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
17295
17299
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
17296
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
17300
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
17297
17301
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
17298
17302
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
17299
17303
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -17301,13 +17305,13 @@ FREE GIFTS-
|
|
|
17301
17305
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
17302
17306
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
17303
17307
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
17304
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
17308
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
17305
17309
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
17306
17310
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
17307
17311
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
17308
17312
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
17309
17313
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
17310
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
17314
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
17311
17315
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
17312
17316
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
17313
17317
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -19000,6 +19004,7 @@ new message content.",
|
|
|
19000
19004
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
19001
19005
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
19002
19006
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
19007
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
19003
19008
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
19004
19009
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
19005
19010
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -19598,7 +19603,7 @@ FREE GIFTS-
|
|
|
19598
19603
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
19599
19604
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
19600
19605
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
19601
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
19606
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
19602
19607
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
19603
19608
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
19604
19609
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -19606,13 +19611,13 @@ FREE GIFTS-
|
|
|
19606
19611
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
19607
19612
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
19608
19613
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
19609
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
19614
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
19610
19615
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
19611
19616
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
19612
19617
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
19613
19618
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
19614
19619
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
19615
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
19620
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
19616
19621
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
19617
19622
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
19618
19623
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -21305,6 +21310,7 @@ new message content.",
|
|
|
21305
21310
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
21306
21311
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
21307
21312
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
21313
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
21308
21314
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
21309
21315
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
21310
21316
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -22027,7 +22033,7 @@ exports[`Creatives SmsTraiEdit test/> should render 2`] = `
|
|
|
22027
22033
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
22028
22034
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
22029
22035
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
22030
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
22036
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
22031
22037
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
22032
22038
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
22033
22039
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -22035,13 +22041,13 @@ exports[`Creatives SmsTraiEdit test/> should render 2`] = `
|
|
|
22035
22041
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
22036
22042
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
22037
22043
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
22038
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
22044
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
22039
22045
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
22040
22046
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
22041
22047
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
22042
22048
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
22043
22049
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
22044
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
22050
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
22045
22051
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
22046
22052
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
22047
22053
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -23734,6 +23740,7 @@ new message content.",
|
|
|
23734
23740
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
23735
23741
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
23736
23742
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
23743
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
23737
23744
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
23738
23745
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
23739
23746
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -28085,7 +28092,7 @@ FREE GIFTS-
|
|
|
28085
28092
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
28086
28093
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
28087
28094
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
28088
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
28095
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
28089
28096
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
28090
28097
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
28091
28098
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -28093,13 +28100,13 @@ FREE GIFTS-
|
|
|
28093
28100
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
28094
28101
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
28095
28102
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
28096
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
28103
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
28097
28104
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
28098
28105
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
28099
28106
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
28100
28107
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
28101
28108
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
28102
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
28109
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
28103
28110
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
28104
28111
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
28105
28112
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -29792,6 +29799,7 @@ new message content.",
|
|
|
29792
29799
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
29793
29800
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
29794
29801
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
29802
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
29795
29803
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
29796
29804
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
29797
29805
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -30390,7 +30398,7 @@ FREE GIFTS-
|
|
|
30390
30398
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
30391
30399
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
30392
30400
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
30393
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
30401
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
30394
30402
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
30395
30403
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
30396
30404
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -30398,13 +30406,13 @@ FREE GIFTS-
|
|
|
30398
30406
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
30399
30407
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
30400
30408
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
30401
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
30409
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
30402
30410
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
30403
30411
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
30404
30412
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
30405
30413
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
30406
30414
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
30407
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
30415
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
30408
30416
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
30409
30417
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
30410
30418
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -32097,6 +32105,7 @@ new message content.",
|
|
|
32097
32105
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
32098
32106
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
32099
32107
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
32108
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
32100
32109
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
32101
32110
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
32102
32111
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -32819,7 +32828,7 @@ exports[`Creatives SmsTraiEdit test/> should save 1`] = `
|
|
|
32819
32828
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
32820
32829
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
32821
32830
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
32822
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
32831
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
32823
32832
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
32824
32833
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
32825
32834
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -32827,13 +32836,13 @@ exports[`Creatives SmsTraiEdit test/> should save 1`] = `
|
|
|
32827
32836
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
32828
32837
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
32829
32838
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
32830
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
32839
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
32831
32840
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
32832
32841
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
32833
32842
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
32834
32843
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
32835
32844
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
32836
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
32845
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
32837
32846
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
32838
32847
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
32839
32848
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -34526,6 +34535,7 @@ new message content.",
|
|
|
34526
34535
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
34527
34536
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
34528
34537
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
34538
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
34529
34539
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
34530
34540
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
34531
34541
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -39258,7 +39268,7 @@ FREE GIFTS-
|
|
|
39258
39268
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
39259
39269
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
39260
39270
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
39261
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
39271
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
39262
39272
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
39263
39273
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
39264
39274
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -39266,13 +39276,13 @@ FREE GIFTS-
|
|
|
39266
39276
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
39267
39277
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
39268
39278
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
39269
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
39279
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
39270
39280
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
39271
39281
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
39272
39282
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
39273
39283
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
39274
39284
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
39275
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
39285
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
39276
39286
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
39277
39287
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
39278
39288
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -40965,6 +40975,7 @@ new message content.",
|
|
|
40965
40975
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
40966
40976
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
40967
40977
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
40978
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
40968
40979
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
40969
40980
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
40970
40981
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -41563,7 +41574,7 @@ FREE GIFTS-
|
|
|
41563
41574
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
41564
41575
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
41565
41576
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
41566
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
41577
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
41567
41578
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
41568
41579
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
41569
41580
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -41571,13 +41582,13 @@ FREE GIFTS-
|
|
|
41571
41582
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
41572
41583
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
41573
41584
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
41574
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
41585
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
41575
41586
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
41576
41587
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
41577
41588
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
41578
41589
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
41579
41590
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
41580
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
41591
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
41581
41592
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
41582
41593
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
41583
41594
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -43270,6 +43281,7 @@ new message content.",
|
|
|
43270
43281
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
43271
43282
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
43272
43283
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
43284
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
43273
43285
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
43274
43286
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
43275
43287
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -14,7 +14,7 @@ import inAppIllustration from '@capillarytech/cap-ui-library/assets/images/featu
|
|
|
14
14
|
import messages from './messages';
|
|
15
15
|
import { FormattedMessage } from 'react-intl';
|
|
16
16
|
import { CapIllustration } from "@capillarytech/cap-ui-library";
|
|
17
|
-
import { MOBILE_PUSH, SMS, EMAIL, LINE, VIBER, FACEBOOK, WHATSAPP, RCS, ZALO, INAPP } from '../CreativesContainer/constants';
|
|
17
|
+
import { MOBILE_PUSH, SMS, EMAIL, LINE, VIBER, FACEBOOK, WHATSAPP, RCS, ZALO, INAPP, WEBPUSH } from '../CreativesContainer/constants';
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
// Configuration object for channel types
|
|
@@ -133,6 +133,18 @@ function ChannelTypeIllustration(props) {
|
|
|
133
133
|
};
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
+
if (type === WEBPUSH) {
|
|
137
|
+
return {
|
|
138
|
+
buttonLabel: <FormattedMessage {...messages.newWebPushTemplate} values={{ template: templateText }} />,
|
|
139
|
+
onClick: createTemplate,
|
|
140
|
+
illustrationImage: pushIllustration,
|
|
141
|
+
title: <FormattedMessage {...messages.webPushTitleIllustration} values={{ template: templateText }} />,
|
|
142
|
+
description: <FormattedMessage {...messages.webPushDescIllustration} />,
|
|
143
|
+
descriptionPosition: 'bottom',
|
|
144
|
+
descriptionClassName: 'illustration-desc',
|
|
145
|
+
};
|
|
146
|
+
}
|
|
147
|
+
|
|
136
148
|
// Handle standard channels using configuration
|
|
137
149
|
const config = CHANNEL_CONFIG[type];
|
|
138
150
|
if (!config) {
|