@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
|
@@ -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
|
|
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
|
|
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.",
|
|
@@ -6509,7 +6510,7 @@ new message content.",
|
|
|
6509
6510
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
6510
6511
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
6511
6512
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
6512
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
6513
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
6513
6514
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
6514
6515
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
6515
6516
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -6517,13 +6518,13 @@ new message content.",
|
|
|
6517
6518
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
6518
6519
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
6519
6520
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
6520
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
6521
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
6521
6522
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
6522
6523
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
6523
6524
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
6524
6525
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
6525
6526
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
6526
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
6527
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
6527
6528
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
6528
6529
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
6529
6530
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -8216,6 +8217,7 @@ new message content.",
|
|
|
8216
8217
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
8217
8218
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
8218
8219
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
8220
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
8219
8221
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
8220
8222
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
8221
8223
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -9207,7 +9209,7 @@ exports[`line wrapper test/> should render line component new 2`] = `
|
|
|
9207
9209
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
9208
9210
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
9209
9211
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
9210
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
9212
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
9211
9213
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
9212
9214
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
9213
9215
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -9215,13 +9217,13 @@ exports[`line wrapper test/> should render line component new 2`] = `
|
|
|
9215
9217
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
9216
9218
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
9217
9219
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
9218
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
9220
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
9219
9221
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
9220
9222
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
9221
9223
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
9222
9224
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
9223
9225
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
9224
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
9226
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
9225
9227
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
9226
9228
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
9227
9229
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -10914,6 +10916,7 @@ new message content.",
|
|
|
10914
10916
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
10915
10917
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
10916
10918
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
10919
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
10917
10920
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
10918
10921
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
10919
10922
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -15711,7 +15714,7 @@ new message content.",
|
|
|
15711
15714
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
15712
15715
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
15713
15716
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
15714
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
15717
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
15715
15718
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
15716
15719
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
15717
15720
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -15719,13 +15722,13 @@ new message content.",
|
|
|
15719
15722
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
15720
15723
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
15721
15724
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
15722
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
15725
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
15723
15726
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
15724
15727
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
15725
15728
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
15726
15729
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
15727
15730
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
15728
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
15731
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
15729
15732
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
15730
15733
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
15731
15734
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -17418,6 +17421,7 @@ new message content.",
|
|
|
17418
17421
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
17419
17422
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
17420
17423
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
17424
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
17421
17425
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
17422
17426
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
17423
17427
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -18409,7 +18413,7 @@ exports[`line wrapper test/> should render line component new 3`] = `
|
|
|
18409
18413
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
18410
18414
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
18411
18415
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
18412
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
18416
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
18413
18417
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
18414
18418
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
18415
18419
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -18417,13 +18421,13 @@ exports[`line wrapper test/> should render line component new 3`] = `
|
|
|
18417
18421
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
18418
18422
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
18419
18423
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
18420
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
18424
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
18421
18425
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
18422
18426
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
18423
18427
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
18424
18428
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
18425
18429
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
18426
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
18430
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
18427
18431
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
18428
18432
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
18429
18433
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -20116,6 +20120,7 @@ new message content.",
|
|
|
20116
20120
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
20117
20121
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
20118
20122
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
20123
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
20119
20124
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
20120
20125
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
20121
20126
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -25155,7 +25160,7 @@ new message content.",
|
|
|
25155
25160
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
25156
25161
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
25157
25162
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
25158
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
25163
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
25159
25164
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
25160
25165
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
25161
25166
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -25163,13 +25168,13 @@ new message content.",
|
|
|
25163
25168
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
25164
25169
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
25165
25170
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
25166
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
25171
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
25167
25172
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
25168
25173
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
25169
25174
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
25170
25175
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
25171
25176
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
25172
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
25177
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
25173
25178
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
25174
25179
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
25175
25180
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -26862,6 +26867,7 @@ new message content.",
|
|
|
26862
26867
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
26863
26868
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
26864
26869
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
26870
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
26865
26871
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
26866
26872
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
26867
26873
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -27888,7 +27894,7 @@ exports[`line wrapper test/> should render line component new 4`] = `
|
|
|
27888
27894
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
27889
27895
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
27890
27896
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
27891
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
27897
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
27892
27898
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
27893
27899
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
27894
27900
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -27896,13 +27902,13 @@ exports[`line wrapper test/> should render line component new 4`] = `
|
|
|
27896
27902
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
27897
27903
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
27898
27904
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
27899
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
27905
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
27900
27906
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
27901
27907
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
27902
27908
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
27903
27909
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
27904
27910
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
27905
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
27911
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
27906
27912
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
27907
27913
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
27908
27914
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -29595,6 +29601,7 @@ new message content.",
|
|
|
29595
29601
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
29596
29602
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
29597
29603
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
29604
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
29598
29605
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
29599
29606
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
29600
29607
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -36855,7 +36862,7 @@ new message content.",
|
|
|
36855
36862
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
36856
36863
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
36857
36864
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
36858
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
36865
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
36859
36866
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
36860
36867
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
36861
36868
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -36863,13 +36870,13 @@ new message content.",
|
|
|
36863
36870
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
36864
36871
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
36865
36872
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
36866
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
36873
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
36867
36874
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
36868
36875
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
36869
36876
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
36870
36877
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
36871
36878
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
36872
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
36879
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
36873
36880
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
36874
36881
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
36875
36882
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -38562,6 +38569,7 @@ new message content.",
|
|
|
38562
38569
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
38563
38570
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
38564
38571
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
38572
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
38565
38573
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
38566
38574
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
38567
38575
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -39588,7 +39596,7 @@ exports[`line wrapper test/> should render line component new 5`] = `
|
|
|
39588
39596
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
39589
39597
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
39590
39598
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
39591
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
39599
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
39592
39600
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
39593
39601
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
39594
39602
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -39596,13 +39604,13 @@ exports[`line wrapper test/> should render line component new 5`] = `
|
|
|
39596
39604
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
39597
39605
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
39598
39606
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
39599
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
39607
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
39600
39608
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
39601
39609
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
39602
39610
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
39603
39611
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
39604
39612
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
39605
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
39613
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
39606
39614
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
39607
39615
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
39608
39616
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -41295,6 +41303,7 @@ new message content.",
|
|
|
41295
41303
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
41296
41304
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
41297
41305
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
41306
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
41298
41307
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
41299
41308
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
41300
41309
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -48597,7 +48606,7 @@ new message content.",
|
|
|
48597
48606
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
48598
48607
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
48599
48608
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
48600
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
48609
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
48601
48610
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
48602
48611
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
48603
48612
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -48605,13 +48614,13 @@ new message content.",
|
|
|
48605
48614
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
48606
48615
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
48607
48616
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
48608
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
48617
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
48609
48618
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
48610
48619
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
48611
48620
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
48612
48621
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
48613
48622
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
48614
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
48623
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
48615
48624
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
48616
48625
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
48617
48626
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -50304,6 +50313,7 @@ new message content.",
|
|
|
50304
50313
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
50305
50314
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
50306
50315
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
50316
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
50307
50317
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
50308
50318
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
50309
50319
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -51330,7 +51340,7 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
51330
51340
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
51331
51341
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
51332
51342
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
51333
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
51343
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
51334
51344
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
51335
51345
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
51336
51346
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -51338,13 +51348,13 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
51338
51348
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
51339
51349
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
51340
51350
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
51341
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
51351
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
51342
51352
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
51343
51353
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
51344
51354
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
51345
51355
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
51346
51356
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
51347
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
51357
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
51348
51358
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
51349
51359
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
51350
51360
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -53037,6 +53047,7 @@ new message content.",
|
|
|
53037
53047
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
53038
53048
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
53039
53049
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
53050
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
53040
53051
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
53041
53052
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
53042
53053
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -55719,7 +55730,7 @@ new message content.",
|
|
|
55719
55730
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
55720
55731
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
55721
55732
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
55722
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
55733
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
55723
55734
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
55724
55735
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
55725
55736
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -55727,13 +55738,13 @@ new message content.",
|
|
|
55727
55738
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
55728
55739
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
55729
55740
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
55730
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
55741
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
55731
55742
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
55732
55743
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
55733
55744
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
55734
55745
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
55735
55746
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
55736
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
55747
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
55737
55748
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
55738
55749
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
55739
55750
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -57426,6 +57437,7 @@ new message content.",
|
|
|
57426
57437
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
57427
57438
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
57428
57439
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
57440
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
57429
57441
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
57430
57442
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
57431
57443
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -59122,7 +59134,7 @@ exports[`line wrapper test/> should render line component old 2`] = `
|
|
|
59122
59134
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
59123
59135
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
59124
59136
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
59125
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
59137
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
59126
59138
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
59127
59139
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
59128
59140
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -59130,13 +59142,13 @@ exports[`line wrapper test/> should render line component old 2`] = `
|
|
|
59130
59142
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
59131
59143
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
59132
59144
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
59133
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
59145
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
59134
59146
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
59135
59147
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
59136
59148
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
59137
59149
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
59138
59150
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
59139
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
59151
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
59140
59152
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
59141
59153
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
59142
59154
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -60829,6 +60841,7 @@ new message content.",
|
|
|
60829
60841
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
60830
60842
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
60831
60843
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
60844
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
60832
60845
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
60833
60846
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
60834
60847
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -63929,7 +63942,7 @@ new message content.",
|
|
|
63929
63942
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
63930
63943
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
63931
63944
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
63932
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
63945
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
63933
63946
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
63934
63947
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
63935
63948
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -63937,13 +63950,13 @@ new message content.",
|
|
|
63937
63950
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
63938
63951
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
63939
63952
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
63940
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
63953
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
63941
63954
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
63942
63955
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
63943
63956
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
63944
63957
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
63945
63958
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
63946
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
63959
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
63947
63960
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
63948
63961
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
63949
63962
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -65636,6 +65649,7 @@ new message content.",
|
|
|
65636
65649
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
65637
65650
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
65638
65651
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
65652
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
65639
65653
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
65640
65654
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
65641
65655
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -67332,7 +67346,7 @@ exports[`line wrapper test/> should render line component old 3`] = `
|
|
|
67332
67346
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
67333
67347
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
67334
67348
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
67335
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
67349
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
67336
67350
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
67337
67351
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
67338
67352
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -67340,13 +67354,13 @@ exports[`line wrapper test/> should render line component old 3`] = `
|
|
|
67340
67354
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
67341
67355
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
67342
67356
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
67343
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
67357
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
67344
67358
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
67345
67359
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
67346
67360
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
67347
67361
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
67348
67362
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
67349
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
67363
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
67350
67364
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
67351
67365
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
67352
67366
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -69039,6 +69053,7 @@ new message content.",
|
|
|
69039
69053
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
69040
69054
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
69041
69055
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
69056
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
69042
69057
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
69043
69058
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
69044
69059
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -72381,7 +72396,7 @@ new message content.",
|
|
|
72381
72396
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
72382
72397
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
72383
72398
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
72384
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
72399
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
72385
72400
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
72386
72401
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
72387
72402
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -72389,13 +72404,13 @@ new message content.",
|
|
|
72389
72404
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
72390
72405
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
72391
72406
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
72392
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
72407
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
72393
72408
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
72394
72409
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
72395
72410
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
72396
72411
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
72397
72412
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
72398
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
72413
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
72399
72414
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
72400
72415
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
72401
72416
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -74088,6 +74103,7 @@ new message content.",
|
|
|
74088
74103
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
74089
74104
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
74090
74105
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
74106
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
74091
74107
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
74092
74108
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
74093
74109
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -75819,7 +75835,7 @@ exports[`line wrapper test/> should render line component old 4`] = `
|
|
|
75819
75835
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
75820
75836
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
75821
75837
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
75822
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
75838
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
75823
75839
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
75824
75840
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
75825
75841
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -75827,13 +75843,13 @@ exports[`line wrapper test/> should render line component old 4`] = `
|
|
|
75827
75843
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
75828
75844
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
75829
75845
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
75830
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
75846
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
75831
75847
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
75832
75848
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
75833
75849
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
75834
75850
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
75835
75851
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
75836
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
75852
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
75837
75853
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
75838
75854
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
75839
75855
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -77526,6 +77542,7 @@ new message content.",
|
|
|
77526
77542
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
77527
77543
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
77528
77544
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
77545
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
77529
77546
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
77530
77547
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
77531
77548
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -80988,7 +81005,7 @@ new message content.",
|
|
|
80988
81005
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
80989
81006
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
80990
81007
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
80991
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
81008
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
|
|
80992
81009
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
80993
81010
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
80994
81011
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -80996,13 +81013,13 @@ new message content.",
|
|
|
80996
81013
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
80997
81014
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
80998
81015
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
80999
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
81016
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
|
|
81000
81017
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
81001
81018
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
81002
81019
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
81003
81020
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
81004
81021
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
81005
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
81022
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
|
|
81006
81023
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
81007
81024
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
81008
81025
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -82695,6 +82712,7 @@ new message content.",
|
|
|
82695
82712
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
82696
82713
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
82697
82714
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
82715
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
82698
82716
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
82699
82717
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
82700
82718
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|