@capillarytech/creatives-library 8.0.255-alpha.4 → 8.0.255
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/assets/Android.png +0 -0
- package/assets/iOS.png +0 -0
- package/constants/unified.js +2 -2
- package/initialReducer.js +2 -0
- package/package.json +1 -1
- package/services/api.js +10 -5
- package/services/tests/api.test.js +34 -0
- package/translations/en.json +3 -4
- package/utils/common.js +5 -6
- package/utils/commonUtils.js +28 -5
- package/utils/tests/commonUtil.test.js +224 -0
- package/utils/tests/transformerUtils.test.js +0 -297
- package/utils/transformTemplateConfig.js +0 -10
- package/utils/transformerUtils.js +0 -40
- package/v2Components/CapDeviceContent/index.js +61 -56
- package/v2Components/CapImageUpload/constants.js +0 -2
- package/v2Components/CapImageUpload/index.js +16 -65
- package/v2Components/CapImageUpload/index.scss +1 -4
- package/v2Components/CapImageUpload/messages.js +1 -5
- package/v2Components/CapTagList/index.js +6 -1
- package/v2Components/CapTagListWithInput/index.js +5 -1
- package/v2Components/CapTagListWithInput/messages.js +1 -1
- package/v2Components/CapWhatsappCTA/tests/index.test.js +5 -0
- package/v2Components/ErrorInfoNote/constants.js +1 -0
- package/v2Components/ErrorInfoNote/index.js +457 -72
- package/v2Components/ErrorInfoNote/messages.js +36 -6
- package/v2Components/ErrorInfoNote/style.scss +282 -6
- package/v2Components/FormBuilder/tests/index.test.js +13 -4
- package/v2Components/HtmlEditor/HTMLEditor.js +547 -94
- package/v2Components/HtmlEditor/__tests__/HTMLEditor.apiErrors.test.js +874 -0
- package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +1441 -133
- package/v2Components/HtmlEditor/__tests__/index.lazy.test.js +27 -16
- package/v2Components/HtmlEditor/_htmlEditor.scss +108 -45
- package/v2Components/HtmlEditor/_index.lazy.scss +0 -1
- package/v2Components/HtmlEditor/components/CodeEditorPane/_codeEditorPane.scss +23 -102
- package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +148 -140
- package/v2Components/HtmlEditor/components/DeviceToggle/_deviceToggle.scss +2 -1
- package/v2Components/HtmlEditor/components/DeviceToggle/index.js +3 -3
- package/v2Components/HtmlEditor/components/EditorToolbar/_editorToolbar.scss +9 -0
- package/v2Components/HtmlEditor/components/EditorToolbar/index.js +4 -4
- package/v2Components/HtmlEditor/components/FullscreenModal/_fullscreenModal.scss +22 -0
- package/v2Components/HtmlEditor/components/InAppPreviewPane/DeviceFrame.js +4 -7
- package/v2Components/HtmlEditor/components/InAppPreviewPane/__tests__/DeviceFrame.test.js +35 -45
- package/v2Components/HtmlEditor/components/InAppPreviewPane/_inAppPreviewPane.scss +1 -3
- package/v2Components/HtmlEditor/components/InAppPreviewPane/constants.js +33 -33
- package/v2Components/HtmlEditor/components/InAppPreviewPane/index.js +7 -6
- package/v2Components/HtmlEditor/components/PreviewPane/_previewPane.scss +3 -6
- package/v2Components/HtmlEditor/components/PreviewPane/index.js +22 -43
- package/v2Components/HtmlEditor/components/SplitContainer/_splitContainer.scss +1 -1
- package/v2Components/HtmlEditor/components/ValidationErrorDisplay/_validationErrorDisplay.scss +1 -0
- package/v2Components/HtmlEditor/components/ValidationErrorDisplay/index.js +49 -31
- package/v2Components/HtmlEditor/components/ValidationPanel/_validationPanel.scss +50 -34
- package/v2Components/HtmlEditor/components/ValidationPanel/constants.js +6 -0
- package/v2Components/HtmlEditor/components/ValidationPanel/index.js +70 -41
- package/v2Components/HtmlEditor/components/ValidationTabs/_validationTabs.scss +255 -0
- package/v2Components/HtmlEditor/components/ValidationTabs/index.js +364 -0
- package/v2Components/HtmlEditor/components/ValidationTabs/messages.js +51 -0
- package/v2Components/HtmlEditor/constants.js +42 -20
- package/v2Components/HtmlEditor/hooks/__tests__/useInAppContent.test.js +373 -16
- package/v2Components/HtmlEditor/hooks/__tests__/useValidation.test.js +103 -0
- package/v2Components/HtmlEditor/hooks/useEditorContent.js +5 -2
- package/v2Components/HtmlEditor/hooks/useInAppContent.js +88 -146
- package/v2Components/HtmlEditor/hooks/useValidation.js +189 -53
- package/v2Components/HtmlEditor/index.js +1 -1
- package/v2Components/HtmlEditor/messages.js +92 -94
- package/v2Components/HtmlEditor/utils/__tests__/htmlValidator.enhanced.test.js +94 -45
- package/v2Components/HtmlEditor/utils/__tests__/validationAdapter.test.js +134 -0
- package/v2Components/HtmlEditor/utils/contentSanitizer.js +40 -41
- package/v2Components/HtmlEditor/utils/htmlValidator.js +71 -72
- package/v2Components/HtmlEditor/utils/liquidTemplateSupport.js +134 -102
- package/v2Components/HtmlEditor/utils/properSyntaxHighlighting.js +23 -25
- package/v2Components/HtmlEditor/utils/validationAdapter.js +66 -41
- package/v2Components/HtmlEditor/utils/validationConstants.js +40 -0
- package/v2Components/MobilePushPreviewV2/index.js +32 -7
- package/v2Components/TemplatePreview/_templatePreview.scss +55 -24
- package/v2Components/TemplatePreview/index.js +47 -32
- package/v2Components/TemplatePreview/messages.js +4 -0
- package/v2Components/TestAndPreviewSlidebox/_testAndPreviewSlidebox.scss +1 -0
- package/v2Containers/App/constants.js +0 -5
- package/v2Containers/BeeEditor/index.js +172 -90
- package/v2Containers/BeePopupEditor/_beePopupEditor.scss +14 -0
- package/v2Containers/BeePopupEditor/constants.js +10 -0
- package/v2Containers/BeePopupEditor/index.js +194 -0
- package/v2Containers/BeePopupEditor/tests/index.test.js +627 -0
- package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +3 -4
- package/v2Containers/CreativesContainer/SlideBoxContent.js +129 -107
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +163 -13
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +2 -2
- package/v2Containers/CreativesContainer/constants.js +1 -3
- package/v2Containers/CreativesContainer/index.js +239 -214
- package/v2Containers/CreativesContainer/messages.js +8 -4
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.test.js +0 -210
- package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +11 -2
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +38 -354
- package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +106 -0
- package/v2Containers/Email/actions.js +7 -0
- package/v2Containers/Email/constants.js +5 -1
- package/v2Containers/Email/index.js +234 -29
- package/v2Containers/Email/messages.js +32 -0
- package/v2Containers/Email/reducer.js +12 -1
- package/v2Containers/Email/sagas.js +61 -7
- package/v2Containers/Email/tests/__snapshots__/reducer.test.js.snap +2 -0
- package/v2Containers/Email/tests/reducer.test.js +46 -0
- package/v2Containers/Email/tests/sagas.test.js +320 -29
- package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +1285 -0
- package/v2Containers/EmailWrapper/components/EmailWrapperView.js +211 -21
- package/v2Containers/EmailWrapper/components/HTMLEditorTesting.js +40 -74
- package/v2Containers/EmailWrapper/components/__tests__/EmailHTMLEditor.test.js +1880 -0
- package/v2Containers/EmailWrapper/components/__tests__/EmailWrapperView.test.js +520 -0
- package/v2Containers/EmailWrapper/components/__tests__/HTMLEditorTesting.test.js +2 -67
- package/v2Containers/EmailWrapper/constants.js +2 -0
- package/v2Containers/EmailWrapper/hooks/useEmailWrapper.js +629 -77
- package/v2Containers/EmailWrapper/index.js +103 -23
- package/v2Containers/EmailWrapper/messages.js +65 -1
- package/v2Containers/EmailWrapper/tests/useEmailWrapper.edgeCases.test.js +643 -0
- package/v2Containers/EmailWrapper/tests/useEmailWrapper.test.js +594 -77
- package/v2Containers/InApp/__tests__/InAppHTMLEditor.test.js +376 -0
- package/v2Containers/InApp/__tests__/sagas.test.js +363 -0
- package/v2Containers/InApp/actions.js +7 -0
- package/v2Containers/InApp/constants.js +20 -4
- package/v2Containers/InApp/index.js +802 -359
- package/v2Containers/InApp/index.scss +4 -3
- package/v2Containers/InApp/messages.js +7 -3
- package/v2Containers/InApp/reducer.js +21 -3
- package/v2Containers/InApp/sagas.js +29 -9
- package/v2Containers/InApp/selectors.js +25 -5
- package/v2Containers/InApp/tests/index.test.js +154 -50
- package/v2Containers/InApp/tests/reducer.test.js +34 -0
- package/v2Containers/InApp/tests/sagas.test.js +61 -9
- package/v2Containers/InApp/tests/selectors.test.js +612 -0
- package/v2Containers/InAppWrapper/components/InAppWrapperView.js +151 -0
- package/v2Containers/InAppWrapper/components/__tests__/InAppWrapperView.test.js +267 -0
- package/v2Containers/InAppWrapper/components/inAppWrapperView.scss +23 -0
- package/v2Containers/InAppWrapper/constants.js +16 -0
- package/v2Containers/InAppWrapper/hooks/__tests__/useInAppWrapper.test.js +473 -0
- package/v2Containers/InAppWrapper/hooks/useInAppWrapper.js +198 -0
- package/v2Containers/InAppWrapper/index.js +148 -0
- package/v2Containers/InAppWrapper/messages.js +49 -0
- package/v2Containers/InappAdvance/index.js +1099 -0
- package/v2Containers/InappAdvance/index.scss +10 -0
- package/v2Containers/InappAdvance/tests/index.test.js +448 -0
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +15 -36
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +8 -8
- package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +77 -100
- package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +63 -72
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +190 -250
- package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +12 -16
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +40 -48
- package/v2Containers/TagList/index.js +62 -19
- package/v2Containers/Templates/ChannelTypeIllustration.js +1 -13
- package/v2Containers/Templates/_templates.scss +56 -202
- package/v2Containers/Templates/actions.js +1 -2
- package/v2Containers/Templates/constants.js +0 -1
- package/v2Containers/Templates/index.js +123 -278
- package/v2Containers/Templates/messages.js +4 -24
- package/v2Containers/Templates/reducer.js +0 -2
- package/v2Containers/Templates/tests/index.test.js +0 -10
- package/v2Containers/TemplatesV2/index.js +7 -15
- package/v2Containers/TemplatesV2/messages.js +0 -4
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +768 -1272
- package/utils/imageUrlUpload.js +0 -141
- package/v2Components/CapImageUrlUpload/constants.js +0 -26
- package/v2Components/CapImageUrlUpload/index.js +0 -365
- package/v2Components/CapImageUrlUpload/index.scss +0 -35
- package/v2Components/CapImageUrlUpload/messages.js +0 -47
- package/v2Components/HtmlEditor/components/ValidationErrorDisplay/__tests__/index.test.js +0 -152
- package/v2Containers/EmailWrapper/tests/EmailWrapperView.test.js +0 -214
- package/v2Containers/WebPush/Create/components/BrandIconSection.js +0 -108
- package/v2Containers/WebPush/Create/components/ButtonForm.js +0 -172
- package/v2Containers/WebPush/Create/components/ButtonItem.js +0 -101
- package/v2Containers/WebPush/Create/components/ButtonList.js +0 -145
- package/v2Containers/WebPush/Create/components/ButtonsLinksSection.js +0 -164
- package/v2Containers/WebPush/Create/components/ButtonsLinksSection.test.js +0 -463
- package/v2Containers/WebPush/Create/components/FormActions.js +0 -54
- package/v2Containers/WebPush/Create/components/FormActions.test.js +0 -163
- package/v2Containers/WebPush/Create/components/MediaSection.js +0 -142
- package/v2Containers/WebPush/Create/components/MediaSection.test.js +0 -341
- package/v2Containers/WebPush/Create/components/MessageSection.js +0 -103
- package/v2Containers/WebPush/Create/components/MessageSection.test.js +0 -268
- package/v2Containers/WebPush/Create/components/NotificationTitleSection.js +0 -87
- package/v2Containers/WebPush/Create/components/NotificationTitleSection.test.js +0 -210
- package/v2Containers/WebPush/Create/components/TemplateNameSection.js +0 -54
- package/v2Containers/WebPush/Create/components/TemplateNameSection.test.js +0 -143
- package/v2Containers/WebPush/Create/components/__snapshots__/ButtonsLinksSection.test.js.snap +0 -86
- package/v2Containers/WebPush/Create/components/__snapshots__/FormActions.test.js.snap +0 -16
- package/v2Containers/WebPush/Create/components/__snapshots__/MediaSection.test.js.snap +0 -41
- package/v2Containers/WebPush/Create/components/__snapshots__/MessageSection.test.js.snap +0 -54
- package/v2Containers/WebPush/Create/components/__snapshots__/NotificationTitleSection.test.js.snap +0 -37
- package/v2Containers/WebPush/Create/components/__snapshots__/TemplateNameSection.test.js.snap +0 -21
- package/v2Containers/WebPush/Create/components/_buttons.scss +0 -246
- package/v2Containers/WebPush/Create/components/tests/ButtonForm.test.js +0 -554
- package/v2Containers/WebPush/Create/components/tests/ButtonItem.test.js +0 -607
- package/v2Containers/WebPush/Create/components/tests/ButtonList.test.js +0 -633
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonForm.test.js.snap +0 -666
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonItem.test.js.snap +0 -74
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonList.test.js.snap +0 -78
- package/v2Containers/WebPush/Create/hooks/useButtonManagement.js +0 -138
- package/v2Containers/WebPush/Create/hooks/useButtonManagement.test.js +0 -406
- package/v2Containers/WebPush/Create/hooks/useCharacterCount.js +0 -30
- package/v2Containers/WebPush/Create/hooks/useCharacterCount.test.js +0 -151
- package/v2Containers/WebPush/Create/hooks/useImageUpload.js +0 -104
- package/v2Containers/WebPush/Create/hooks/useImageUpload.test.js +0 -538
- package/v2Containers/WebPush/Create/hooks/useTagManagement.js +0 -122
- package/v2Containers/WebPush/Create/hooks/useTagManagement.test.js +0 -633
- package/v2Containers/WebPush/Create/index.js +0 -1148
- package/v2Containers/WebPush/Create/index.scss +0 -134
- package/v2Containers/WebPush/Create/messages.js +0 -203
- package/v2Containers/WebPush/Create/preview/DevicePreviewContent.js +0 -228
- package/v2Containers/WebPush/Create/preview/NotificationContainer.js +0 -294
- package/v2Containers/WebPush/Create/preview/PreviewContent.js +0 -90
- package/v2Containers/WebPush/Create/preview/PreviewControls.js +0 -305
- package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +0 -23
- package/v2Containers/WebPush/Create/preview/WebPushPreview.js +0 -155
- package/v2Containers/WebPush/Create/preview/assets/Light.svg +0 -53
- package/v2Containers/WebPush/Create/preview/assets/Top.svg +0 -5
- package/v2Containers/WebPush/Create/preview/assets/android-arrow-down.svg +0 -9
- package/v2Containers/WebPush/Create/preview/assets/android-arrow-up.svg +0 -9
- 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 +0 -106
- package/v2Containers/WebPush/Create/preview/assets/iOS.svg +0 -26
- package/v2Containers/WebPush/Create/preview/assets/macos-arrow-down-icon.svg +0 -9
- package/v2Containers/WebPush/Create/preview/assets/macos-triple-dot-icon.svg +0 -9
- package/v2Containers/WebPush/Create/preview/assets/opera-icon.svg +0 -18
- package/v2Containers/WebPush/Create/preview/assets/safari-icon.svg +0 -29
- package/v2Containers/WebPush/Create/preview/assets/windows-close-icon.svg +0 -9
- package/v2Containers/WebPush/Create/preview/assets/windows-triple-dot-icon.svg +0 -9
- package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +0 -47
- package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +0 -141
- package/v2Containers/WebPush/Create/preview/components/IOSHeader.js +0 -45
- package/v2Containers/WebPush/Create/preview/components/NotificationExpandedContent.js +0 -68
- package/v2Containers/WebPush/Create/preview/components/NotificationHeader.js +0 -61
- package/v2Containers/WebPush/Create/preview/components/WindowsChromeExpanded.js +0 -99
- package/v2Containers/WebPush/Create/preview/components/tests/AndroidMobileExpanded.test.js +0 -733
- package/v2Containers/WebPush/Create/preview/components/tests/WindowsChromeExpanded.test.js +0 -571
- package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +0 -81
- package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/WindowsChromeExpanded.test.js.snap +0 -81
- package/v2Containers/WebPush/Create/preview/config/notificationMappings.js +0 -50
- package/v2Containers/WebPush/Create/preview/constants.js +0 -637
- package/v2Containers/WebPush/Create/preview/notification-container.scss +0 -79
- package/v2Containers/WebPush/Create/preview/preview.scss +0 -351
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-chrome.scss +0 -370
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-edge.scss +0 -12
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-firefox.scss +0 -12
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-opera.scss +0 -12
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-chrome.scss +0 -47
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-edge.scss +0 -11
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-firefox.scss +0 -11
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-opera.scss +0 -11
- package/v2Containers/WebPush/Create/preview/styles/_base.scss +0 -207
- package/v2Containers/WebPush/Create/preview/styles/_ios.scss +0 -153
- package/v2Containers/WebPush/Create/preview/styles/_ipados.scss +0 -107
- package/v2Containers/WebPush/Create/preview/styles/_macos-chrome.scss +0 -101
- package/v2Containers/WebPush/Create/preview/styles/_windows-chrome.scss +0 -229
- package/v2Containers/WebPush/Create/preview/tests/DevicePreviewContent.test.js +0 -909
- package/v2Containers/WebPush/Create/preview/tests/NotificationContainer.test.js +0 -1081
- package/v2Containers/WebPush/Create/preview/tests/PreviewControls.test.js +0 -723
- package/v2Containers/WebPush/Create/preview/tests/WebPushPreview.test.js +0 -1327
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/DevicePreviewContent.test.js.snap +0 -131
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/NotificationContainer.test.js.snap +0 -112
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/PreviewControls.test.js.snap +0 -144
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/WebPushPreview.test.js.snap +0 -129
- package/v2Containers/WebPush/Create/utils/payloadBuilder.js +0 -96
- package/v2Containers/WebPush/Create/utils/payloadBuilder.test.js +0 -396
- package/v2Containers/WebPush/Create/utils/previewUtils.js +0 -89
- package/v2Containers/WebPush/Create/utils/urlValidation.js +0 -115
- package/v2Containers/WebPush/Create/utils/urlValidation.test.js +0 -449
- package/v2Containers/WebPush/Create/utils/validation.js +0 -75
- package/v2Containers/WebPush/Create/utils/validation.test.js +0 -283
- package/v2Containers/WebPush/actions.js +0 -60
- package/v2Containers/WebPush/constants.js +0 -132
- package/v2Containers/WebPush/index.js +0 -2
- package/v2Containers/WebPush/reducer.js +0 -104
- package/v2Containers/WebPush/sagas.js +0 -119
- package/v2Containers/WebPush/selectors.js +0 -65
- package/v2Containers/WebPush/tests/reducer.test.js +0 -863
- package/v2Containers/WebPush/tests/sagas.test.js +0 -566
- package/v2Containers/WebPush/tests/selectors.test.js +0 -960
|
@@ -189,7 +189,7 @@ exports[`line wrapper test/> should render create mode 1`] = `
|
|
|
189
189
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
190
190
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
191
191
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
192
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
192
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
193
193
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
194
194
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
195
195
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -197,13 +197,13 @@ exports[`line wrapper test/> should render create mode 1`] = `
|
|
|
197
197
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
198
198
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
199
199
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
200
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
200
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
201
201
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
202
202
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
203
203
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
204
204
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
205
205
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
206
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
206
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
207
207
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
208
208
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
209
209
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -1896,7 +1896,6 @@ new message content.",
|
|
|
1896
1896
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
1897
1897
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
1898
1898
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
1899
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
1900
1899
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
1901
1900
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
1902
1901
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -2282,6 +2281,7 @@ new message content.",
|
|
|
2282
2281
|
"email": [Function],
|
|
2283
2282
|
"facebookPreview": [Function],
|
|
2284
2283
|
"gallery": [Function],
|
|
2284
|
+
"inApp": [Function],
|
|
2285
2285
|
"language": [Function],
|
|
2286
2286
|
"navigationConfig": [Function],
|
|
2287
2287
|
"previewAndTest": [Function],
|
|
@@ -18183,7 +18183,7 @@ new message content.",
|
|
|
18183
18183
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
18184
18184
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
18185
18185
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
18186
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
18186
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
18187
18187
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
18188
18188
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
18189
18189
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -18191,13 +18191,13 @@ new message content.",
|
|
|
18191
18191
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
18192
18192
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
18193
18193
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
18194
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
18194
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
18195
18195
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
18196
18196
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
18197
18197
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
18198
18198
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
18199
18199
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
18200
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
18200
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
18201
18201
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
18202
18202
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
18203
18203
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -19890,7 +19890,6 @@ new message content.",
|
|
|
19890
19890
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
19891
19891
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
19892
19892
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
19893
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
19894
19893
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
19895
19894
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
19896
19895
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -20730,7 +20729,7 @@ new message content.",
|
|
|
20730
20729
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
20731
20730
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
20732
20731
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
20733
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
20732
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
20734
20733
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
20735
20734
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
20736
20735
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -20738,13 +20737,13 @@ new message content.",
|
|
|
20738
20737
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
20739
20738
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
20740
20739
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
20741
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
20740
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
20742
20741
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
20743
20742
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
20744
20743
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
20745
20744
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
20746
20745
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
20747
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
20746
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
20748
20747
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
20749
20748
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
20750
20749
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -22437,7 +22436,6 @@ new message content.",
|
|
|
22437
22436
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
22438
22437
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
22439
22438
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
22440
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
22441
22439
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
22442
22440
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
22443
22441
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -23708,7 +23706,7 @@ new message content.",
|
|
|
23708
23706
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
23709
23707
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
23710
23708
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
23711
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
23709
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
23712
23710
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
23713
23711
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
23714
23712
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -23716,13 +23714,13 @@ new message content.",
|
|
|
23716
23714
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
23717
23715
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
23718
23716
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
23719
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
23717
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
23720
23718
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
23721
23719
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
23722
23720
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
23723
23721
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
23724
23722
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
23725
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
23723
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
23726
23724
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
23727
23725
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
23728
23726
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -25415,7 +25413,6 @@ new message content.",
|
|
|
25415
25413
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
25416
25414
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
25417
25415
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
25418
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
25419
25416
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
25420
25417
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
25421
25418
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -25963,7 +25960,7 @@ new message content.",
|
|
|
25963
25960
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
25964
25961
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
25965
25962
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
25966
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
25963
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
25967
25964
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
25968
25965
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
25969
25966
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -25971,13 +25968,13 @@ new message content.",
|
|
|
25971
25968
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
25972
25969
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
25973
25970
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
25974
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
25971
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
25975
25972
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
25976
25973
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
25977
25974
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
25978
25975
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
25979
25976
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
25980
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
25977
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
25981
25978
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
25982
25979
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
25983
25980
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -27670,7 +27667,6 @@ new message content.",
|
|
|
27670
27667
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
27671
27668
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
27672
27669
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
27673
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
27674
27670
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
27675
27671
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
27676
27672
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -28239,7 +28235,7 @@ new message content.",
|
|
|
28239
28235
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
28240
28236
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
28241
28237
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
28242
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
28238
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
28243
28239
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
28244
28240
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
28245
28241
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -28247,13 +28243,13 @@ new message content.",
|
|
|
28247
28243
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
28248
28244
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
28249
28245
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
28250
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
28246
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
28251
28247
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
28252
28248
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
28253
28249
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
28254
28250
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
28255
28251
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
28256
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
28252
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
28257
28253
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
28258
28254
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
28259
28255
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -29946,7 +29942,6 @@ new message content.",
|
|
|
29946
29942
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
29947
29943
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
29948
29944
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
29949
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
29950
29945
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
29951
29946
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
29952
29947
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -30527,7 +30522,7 @@ new message content.",
|
|
|
30527
30522
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
30528
30523
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
30529
30524
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
30530
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
30525
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
30531
30526
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
30532
30527
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
30533
30528
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -30535,13 +30530,13 @@ new message content.",
|
|
|
30535
30530
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
30536
30531
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
30537
30532
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
30538
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
30533
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
30539
30534
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
30540
30535
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
30541
30536
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
30542
30537
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
30543
30538
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
30544
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
30539
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
30545
30540
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
30546
30541
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
30547
30542
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -32234,7 +32229,6 @@ new message content.",
|
|
|
32234
32229
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
32235
32230
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
32236
32231
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
32237
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
32238
32232
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
32239
32233
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
32240
32234
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -32800,7 +32794,7 @@ exports[`line wrapper test/> should render create mode 2`] = `
|
|
|
32800
32794
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
32801
32795
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
32802
32796
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
32803
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
32797
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
32804
32798
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
32805
32799
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
32806
32800
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -32808,13 +32802,13 @@ exports[`line wrapper test/> should render create mode 2`] = `
|
|
|
32808
32802
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
32809
32803
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
32810
32804
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
32811
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
32805
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
32812
32806
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
32813
32807
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
32814
32808
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
32815
32809
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
32816
32810
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
32817
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
32811
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
32818
32812
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
32819
32813
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
32820
32814
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -34507,7 +34501,6 @@ new message content.",
|
|
|
34507
34501
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
34508
34502
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
34509
34503
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
34510
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
34511
34504
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
34512
34505
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
34513
34506
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -34893,6 +34886,7 @@ new message content.",
|
|
|
34893
34886
|
"email": [Function],
|
|
34894
34887
|
"facebookPreview": [Function],
|
|
34895
34888
|
"gallery": [Function],
|
|
34889
|
+
"inApp": [Function],
|
|
34896
34890
|
"language": [Function],
|
|
34897
34891
|
"navigationConfig": [Function],
|
|
34898
34892
|
"previewAndTest": [Function],
|
|
@@ -58080,7 +58074,7 @@ new message content.",
|
|
|
58080
58074
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
58081
58075
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
58082
58076
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
58083
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
58077
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
58084
58078
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
58085
58079
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
58086
58080
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -58088,13 +58082,13 @@ new message content.",
|
|
|
58088
58082
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
58089
58083
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
58090
58084
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
58091
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
58085
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
58092
58086
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
58093
58087
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
58094
58088
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
58095
58089
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
58096
58090
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
58097
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
58091
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
58098
58092
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
58099
58093
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
58100
58094
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -59787,7 +59781,6 @@ new message content.",
|
|
|
59787
59781
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
59788
59782
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
59789
59783
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
59790
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
59791
59784
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
59792
59785
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
59793
59786
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -60819,7 +60812,7 @@ new message content.",
|
|
|
60819
60812
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
60820
60813
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
60821
60814
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
60822
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
60815
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
60823
60816
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
60824
60817
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
60825
60818
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -60827,13 +60820,13 @@ new message content.",
|
|
|
60827
60820
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
60828
60821
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
60829
60822
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
60830
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
60823
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
60831
60824
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
60832
60825
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
60833
60826
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
60834
60827
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
60835
60828
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
60836
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
60829
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
60837
60830
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
60838
60831
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
60839
60832
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -62526,7 +62519,6 @@ new message content.",
|
|
|
62526
62519
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
62527
62520
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
62528
62521
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
62529
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
62530
62522
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
62531
62523
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
62532
62524
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -64154,7 +64146,7 @@ new message content.",
|
|
|
64154
64146
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
64155
64147
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
64156
64148
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
64157
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
64149
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
64158
64150
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
64159
64151
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
64160
64152
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -64162,13 +64154,13 @@ new message content.",
|
|
|
64162
64154
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
64163
64155
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
64164
64156
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
64165
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
64157
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
64166
64158
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
64167
64159
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
64168
64160
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
64169
64161
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
64170
64162
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
64171
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
64163
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
64172
64164
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
64173
64165
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
64174
64166
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -65861,7 +65853,6 @@ new message content.",
|
|
|
65861
65853
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
65862
65854
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
65863
65855
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
65864
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
65865
65856
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
65866
65857
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
65867
65858
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -66893,7 +66884,7 @@ new message content.",
|
|
|
66893
66884
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
66894
66885
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
66895
66886
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
66896
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
66887
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
66897
66888
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
66898
66889
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
66899
66890
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -66901,13 +66892,13 @@ new message content.",
|
|
|
66901
66892
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
66902
66893
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
66903
66894
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
66904
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
66895
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
66905
66896
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
66906
66897
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
66907
66898
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
66908
66899
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
66909
66900
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
66910
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
66901
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
66911
66902
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
66912
66903
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
66913
66904
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -68600,7 +68591,6 @@ new message content.",
|
|
|
68600
68591
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
68601
68592
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
68602
68593
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
68603
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
68604
68594
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
68605
68595
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
68606
68596
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -70601,7 +70591,7 @@ new message content.",
|
|
|
70601
70591
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
70602
70592
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
70603
70593
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
70604
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
70594
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
70605
70595
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
70606
70596
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
70607
70597
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -70609,13 +70599,13 @@ new message content.",
|
|
|
70609
70599
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
70610
70600
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
70611
70601
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
70612
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
70602
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
70613
70603
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
70614
70604
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
70615
70605
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
70616
70606
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
70617
70607
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
70618
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
70608
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
70619
70609
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
70620
70610
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
70621
70611
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -72308,7 +72298,6 @@ new message content.",
|
|
|
72308
72298
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
72309
72299
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
72310
72300
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
72311
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
72312
72301
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
72313
72302
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
72314
72303
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -73782,7 +73771,7 @@ new message content.",
|
|
|
73782
73771
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
73783
73772
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
73784
73773
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
73785
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
73774
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
73786
73775
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
73787
73776
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
73788
73777
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -73790,13 +73779,13 @@ new message content.",
|
|
|
73790
73779
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
73791
73780
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
73792
73781
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
73793
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
73782
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
73794
73783
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
73795
73784
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
73796
73785
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
73797
73786
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
73798
73787
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
73799
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
73788
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
73800
73789
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
73801
73790
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
73802
73791
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -75489,7 +75478,6 @@ new message content.",
|
|
|
75489
75478
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
75490
75479
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
75491
75480
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
75492
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
75493
75481
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
75494
75482
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
75495
75483
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -76819,7 +76807,7 @@ new message content.",
|
|
|
76819
76807
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
76820
76808
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
76821
76809
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
76822
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
76810
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
76823
76811
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
76824
76812
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
76825
76813
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -76827,13 +76815,13 @@ new message content.",
|
|
|
76827
76815
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
76828
76816
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
76829
76817
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
76830
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
76818
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
76831
76819
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
76832
76820
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
76833
76821
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
76834
76822
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
76835
76823
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
76836
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
76824
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
76837
76825
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
76838
76826
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
76839
76827
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -78526,7 +78514,6 @@ new message content.",
|
|
|
78526
78514
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
78527
78515
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
78528
78516
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
78529
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
78530
78517
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
78531
78518
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
78532
78519
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -79867,7 +79854,7 @@ new message content.",
|
|
|
79867
79854
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
79868
79855
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
79869
79856
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
79870
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
79857
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
79871
79858
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
79872
79859
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
79873
79860
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -79875,13 +79862,13 @@ new message content.",
|
|
|
79875
79862
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
79876
79863
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
79877
79864
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
79878
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
79865
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
79879
79866
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
79880
79867
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
79881
79868
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
79882
79869
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
79883
79870
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
79884
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
79871
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
79885
79872
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
79886
79873
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
79887
79874
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -81574,7 +81561,6 @@ new message content.",
|
|
|
81574
81561
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
81575
81562
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
81576
81563
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
81577
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
81578
81564
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
81579
81565
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
81580
81566
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -85677,7 +85663,7 @@ new message content.",
|
|
|
85677
85663
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
85678
85664
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
85679
85665
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
85680
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
85666
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
85681
85667
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
85682
85668
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
85683
85669
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -85685,13 +85671,13 @@ new message content.",
|
|
|
85685
85671
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
85686
85672
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
85687
85673
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
85688
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
85674
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
85689
85675
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
85690
85676
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
85691
85677
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
85692
85678
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
85693
85679
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
85694
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
85680
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
85695
85681
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
85696
85682
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
85697
85683
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -87384,7 +87370,6 @@ new message content.",
|
|
|
87384
87370
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
87385
87371
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
87386
87372
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
87387
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
87388
87373
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
87389
87374
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
87390
87375
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -88830,7 +88815,7 @@ new message content.",
|
|
|
88830
88815
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
88831
88816
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
88832
88817
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
88833
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
88818
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
88834
88819
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
88835
88820
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
88836
88821
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -88838,13 +88823,13 @@ new message content.",
|
|
|
88838
88823
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
88839
88824
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
88840
88825
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
88841
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
88826
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
88842
88827
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
88843
88828
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
88844
88829
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
88845
88830
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
88846
88831
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
88847
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
88832
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
88848
88833
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
88849
88834
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
88850
88835
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -90537,7 +90522,6 @@ new message content.",
|
|
|
90537
90522
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
90538
90523
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
90539
90524
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
90540
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
90541
90525
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
90542
90526
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
90543
90527
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -91914,7 +91898,7 @@ new message content.",
|
|
|
91914
91898
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
91915
91899
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
91916
91900
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
91917
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
91901
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
91918
91902
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
91919
91903
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
91920
91904
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -91922,13 +91906,13 @@ new message content.",
|
|
|
91922
91906
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
91923
91907
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
91924
91908
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
91925
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
91909
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
91926
91910
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
91927
91911
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
91928
91912
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
91929
91913
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
91930
91914
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
91931
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
91915
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
91932
91916
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
91933
91917
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
91934
91918
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -93621,7 +93605,6 @@ new message content.",
|
|
|
93621
93605
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
93622
93606
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
93623
93607
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
93624
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
93625
93608
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
93626
93609
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
93627
93610
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -94897,7 +94880,7 @@ new message content.",
|
|
|
94897
94880
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
94898
94881
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
94899
94882
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
94900
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
94883
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
94901
94884
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
94902
94885
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
94903
94886
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -94905,13 +94888,13 @@ new message content.",
|
|
|
94905
94888
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
94906
94889
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
94907
94890
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
94908
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
94891
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
94909
94892
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
94910
94893
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
94911
94894
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
94912
94895
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
94913
94896
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
94914
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
94897
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
94915
94898
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
94916
94899
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
94917
94900
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -96604,7 +96587,6 @@ new message content.",
|
|
|
96604
96587
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
96605
96588
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
96606
96589
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
96607
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
96608
96590
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
96609
96591
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
96610
96592
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -97640,7 +97622,7 @@ new message content.",
|
|
|
97640
97622
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
97641
97623
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
97642
97624
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
97643
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
97625
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
97644
97626
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
97645
97627
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
97646
97628
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -97648,13 +97630,13 @@ new message content.",
|
|
|
97648
97630
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
97649
97631
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
97650
97632
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
97651
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
97633
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
97652
97634
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
97653
97635
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
97654
97636
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
97655
97637
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
97656
97638
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
97657
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
97639
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
97658
97640
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
97659
97641
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
97660
97642
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -99347,7 +99329,6 @@ new message content.",
|
|
|
99347
99329
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
99348
99330
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
99349
99331
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
99350
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
99351
99332
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
99352
99333
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
99353
99334
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -100316,7 +100297,7 @@ new message content.",
|
|
|
100316
100297
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
100317
100298
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
100318
100299
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
100319
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
100300
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
100320
100301
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
100321
100302
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
100322
100303
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -100324,13 +100305,13 @@ new message content.",
|
|
|
100324
100305
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
100325
100306
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
100326
100307
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
100327
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
100308
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
100328
100309
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
100329
100310
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
100330
100311
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
100331
100312
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
100332
100313
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
100333
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
100314
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
100334
100315
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
100335
100316
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
100336
100317
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -102023,7 +102004,6 @@ new message content.",
|
|
|
102023
102004
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
102024
102005
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
102025
102006
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
102026
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
102027
102007
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
102028
102008
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
102029
102009
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -102571,7 +102551,7 @@ new message content.",
|
|
|
102571
102551
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
102572
102552
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
102573
102553
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
102574
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
102554
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
102575
102555
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
102576
102556
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
102577
102557
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -102579,13 +102559,13 @@ new message content.",
|
|
|
102579
102559
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
102580
102560
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
102581
102561
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
102582
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
102562
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
102583
102563
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
102584
102564
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
102585
102565
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
102586
102566
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
102587
102567
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
102588
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
102568
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
102589
102569
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
102590
102570
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
102591
102571
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -104278,7 +104258,6 @@ new message content.",
|
|
|
104278
104258
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
104279
104259
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
104280
104260
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
104281
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
104282
104261
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
104283
104262
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
104284
104263
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -104847,7 +104826,7 @@ new message content.",
|
|
|
104847
104826
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
104848
104827
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
104849
104828
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
104850
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
104829
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
104851
104830
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
104852
104831
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
104853
104832
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -104855,13 +104834,13 @@ new message content.",
|
|
|
104855
104834
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
104856
104835
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
104857
104836
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
104858
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
104837
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
104859
104838
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
104860
104839
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
104861
104840
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
104862
104841
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
104863
104842
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
104864
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
104843
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
104865
104844
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
104866
104845
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
104867
104846
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -106554,7 +106533,6 @@ new message content.",
|
|
|
106554
106533
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
106555
106534
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
106556
106535
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
106557
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
106558
106536
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
106559
106537
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
106560
106538
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -107135,7 +107113,7 @@ new message content.",
|
|
|
107135
107113
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
107136
107114
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
107137
107115
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
107138
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
107116
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
107139
107117
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
107140
107118
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
107141
107119
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -107143,13 +107121,13 @@ new message content.",
|
|
|
107143
107121
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
107144
107122
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
107145
107123
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
107146
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
107124
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
107147
107125
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
107148
107126
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
107149
107127
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
107150
107128
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
107151
107129
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
107152
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
107130
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
107153
107131
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
107154
107132
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
107155
107133
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -108842,7 +108820,6 @@ new message content.",
|
|
|
108842
108820
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
108843
108821
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
108844
108822
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
108845
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
108846
108823
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
108847
108824
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
108848
108825
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|