@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[`Creatives rcs test/> template desc change 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[`Creatives rcs test/> template desc change 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],
|
|
@@ -4187,7 +4187,7 @@ new message content.",
|
|
|
4187
4187
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
4188
4188
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
4189
4189
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
4190
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
4190
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
4191
4191
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
4192
4192
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
4193
4193
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -4195,13 +4195,13 @@ new message content.",
|
|
|
4195
4195
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
4196
4196
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
4197
4197
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
4198
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
4198
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
4199
4199
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
4200
4200
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
4201
4201
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
4202
4202
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
4203
4203
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
4204
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
4204
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
4205
4205
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
4206
4206
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
4207
4207
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -5894,7 +5894,6 @@ new message content.",
|
|
|
5894
5894
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
5895
5895
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
5896
5896
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
5897
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
5898
5897
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
5899
5898
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
5900
5899
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -6446,7 +6445,7 @@ new message content.",
|
|
|
6446
6445
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
6447
6446
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
6448
6447
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
6449
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
6448
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
6450
6449
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
6451
6450
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
6452
6451
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -6454,13 +6453,13 @@ new message content.",
|
|
|
6454
6453
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
6455
6454
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
6456
6455
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
6457
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
6456
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
6458
6457
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
6459
6458
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
6460
6459
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
6461
6460
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
6462
6461
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
6463
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
6462
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
6464
6463
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
6465
6464
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
6466
6465
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -8153,7 +8152,6 @@ new message content.",
|
|
|
8153
8152
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
8154
8153
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
8155
8154
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
8156
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
8157
8155
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
8158
8156
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
8159
8157
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -11494,7 +11492,7 @@ new message content.",
|
|
|
11494
11492
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
11495
11493
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
11496
11494
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
11497
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
11495
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
11498
11496
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
11499
11497
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
11500
11498
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -11502,13 +11500,13 @@ new message content.",
|
|
|
11502
11500
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
11503
11501
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
11504
11502
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
11505
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
11503
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
11506
11504
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
11507
11505
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
11508
11506
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
11509
11507
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
11510
11508
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
11511
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
11509
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
11512
11510
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
11513
11511
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
11514
11512
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -13201,7 +13199,6 @@ new message content.",
|
|
|
13201
13199
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
13202
13200
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
13203
13201
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
13204
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
13205
13202
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
13206
13203
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
13207
13204
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -13806,7 +13803,7 @@ new message content.",
|
|
|
13806
13803
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
13807
13804
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
13808
13805
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
13809
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
13806
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
13810
13807
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
13811
13808
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
13812
13809
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -13814,13 +13811,13 @@ new message content.",
|
|
|
13814
13811
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
13815
13812
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
13816
13813
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
13817
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
13814
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
13818
13815
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
13819
13816
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
13820
13817
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
13821
13818
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
13822
13819
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
13823
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
13820
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
13824
13821
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
13825
13822
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
13826
13823
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -15513,7 +15510,6 @@ new message content.",
|
|
|
15513
15510
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
15514
15511
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
15515
15512
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
15516
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
15517
15513
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
15518
15514
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
15519
15515
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -16226,7 +16222,7 @@ exports[`Creatives rcs test/> template desc change 2`] = `
|
|
|
16226
16222
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
16227
16223
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
16228
16224
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
16229
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
16225
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
16230
16226
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
16231
16227
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
16232
16228
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -16234,13 +16230,13 @@ exports[`Creatives rcs test/> template desc change 2`] = `
|
|
|
16234
16230
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
16235
16231
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
16236
16232
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
16237
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
16233
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
16238
16234
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
16239
16235
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
16240
16236
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
16241
16237
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
16242
16238
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
16243
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
16239
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
16244
16240
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
16245
16241
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
16246
16242
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -17933,7 +17929,6 @@ new message content.",
|
|
|
17933
17929
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
17934
17930
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
17935
17931
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
17936
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
17937
17932
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
17938
17933
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
17939
17934
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -18319,6 +18314,7 @@ new message content.",
|
|
|
18319
18314
|
"email": [Function],
|
|
18320
18315
|
"facebookPreview": [Function],
|
|
18321
18316
|
"gallery": [Function],
|
|
18317
|
+
"inApp": [Function],
|
|
18322
18318
|
"language": [Function],
|
|
18323
18319
|
"navigationConfig": [Function],
|
|
18324
18320
|
"previewAndTest": [Function],
|
|
@@ -20224,7 +20220,7 @@ new message content.",
|
|
|
20224
20220
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
20225
20221
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
20226
20222
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
20227
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
20223
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
20228
20224
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
20229
20225
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
20230
20226
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -20232,13 +20228,13 @@ new message content.",
|
|
|
20232
20228
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
20233
20229
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
20234
20230
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
20235
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
20231
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
20236
20232
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
20237
20233
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
20238
20234
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
20239
20235
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
20240
20236
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
20241
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
20237
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
20242
20238
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
20243
20239
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
20244
20240
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -21931,7 +21927,6 @@ new message content.",
|
|
|
21931
21927
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
21932
21928
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
21933
21929
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
21934
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
21935
21930
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
21936
21931
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
21937
21932
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -22483,7 +22478,7 @@ new message content.",
|
|
|
22483
22478
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
22484
22479
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
22485
22480
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
22486
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
22481
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
22487
22482
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
22488
22483
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
22489
22484
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -22491,13 +22486,13 @@ new message content.",
|
|
|
22491
22486
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
22492
22487
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
22493
22488
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
22494
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
22489
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
22495
22490
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
22496
22491
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
22497
22492
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
22498
22493
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
22499
22494
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
22500
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
22495
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
22501
22496
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
22502
22497
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
22503
22498
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -24190,7 +24185,6 @@ new message content.",
|
|
|
24190
24185
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
24191
24186
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
24192
24187
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
24193
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
24194
24188
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
24195
24189
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
24196
24190
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -27531,7 +27525,7 @@ new message content.",
|
|
|
27531
27525
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
27532
27526
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
27533
27527
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
27534
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
27528
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
27535
27529
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
27536
27530
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
27537
27531
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -27539,13 +27533,13 @@ new message content.",
|
|
|
27539
27533
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
27540
27534
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
27541
27535
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
27542
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
27536
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
27543
27537
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
27544
27538
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
27545
27539
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
27546
27540
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
27547
27541
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
27548
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
27542
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
27549
27543
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
27550
27544
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
27551
27545
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -29238,7 +29232,6 @@ new message content.",
|
|
|
29238
29232
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
29239
29233
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
29240
29234
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
29241
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
29242
29235
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
29243
29236
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
29244
29237
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -29843,7 +29836,7 @@ new message content.",
|
|
|
29843
29836
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
29844
29837
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
29845
29838
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
29846
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
29839
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
29847
29840
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
29848
29841
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
29849
29842
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -29851,13 +29844,13 @@ new message content.",
|
|
|
29851
29844
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
29852
29845
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
29853
29846
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
29854
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
29847
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
29855
29848
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
29856
29849
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
29857
29850
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
29858
29851
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
29859
29852
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
29860
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
29853
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
29861
29854
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
29862
29855
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
29863
29856
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -31550,7 +31543,6 @@ new message content.",
|
|
|
31550
31543
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
31551
31544
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
31552
31545
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
31553
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
31554
31546
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
31555
31547
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
31556
31548
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -32263,7 +32255,7 @@ exports[`Creatives rcs test/> template name change 1`] = `
|
|
|
32263
32255
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
32264
32256
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
32265
32257
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
32266
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
32258
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
32267
32259
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
32268
32260
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
32269
32261
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -32271,13 +32263,13 @@ exports[`Creatives rcs test/> template name change 1`] = `
|
|
|
32271
32263
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
32272
32264
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
32273
32265
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
32274
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
32266
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
32275
32267
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
32276
32268
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
32277
32269
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
32278
32270
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
32279
32271
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
32280
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
32272
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
32281
32273
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
32282
32274
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
32283
32275
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -33970,7 +33962,6 @@ new message content.",
|
|
|
33970
33962
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
33971
33963
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
33972
33964
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
33973
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
33974
33965
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
33975
33966
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
33976
33967
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -34356,6 +34347,7 @@ new message content.",
|
|
|
34356
34347
|
"email": [Function],
|
|
34357
34348
|
"facebookPreview": [Function],
|
|
34358
34349
|
"gallery": [Function],
|
|
34350
|
+
"inApp": [Function],
|
|
34359
34351
|
"language": [Function],
|
|
34360
34352
|
"navigationConfig": [Function],
|
|
34361
34353
|
"previewAndTest": [Function],
|
|
@@ -36435,7 +36427,7 @@ new message content.",
|
|
|
36435
36427
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
36436
36428
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
36437
36429
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
36438
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
36430
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
36439
36431
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
36440
36432
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
36441
36433
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -36443,13 +36435,13 @@ new message content.",
|
|
|
36443
36435
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
36444
36436
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
36445
36437
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
36446
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
36438
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
36447
36439
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
36448
36440
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
36449
36441
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
36450
36442
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
36451
36443
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
36452
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
36444
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
36453
36445
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
36454
36446
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
36455
36447
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -38142,7 +38134,6 @@ new message content.",
|
|
|
38142
38134
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
38143
38135
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
38144
38136
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
38145
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
38146
38137
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
38147
38138
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
38148
38139
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -38694,7 +38685,7 @@ new message content.",
|
|
|
38694
38685
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
38695
38686
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
38696
38687
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
38697
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
38688
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
38698
38689
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
38699
38690
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
38700
38691
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -38702,13 +38693,13 @@ new message content.",
|
|
|
38702
38693
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
38703
38694
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
38704
38695
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
38705
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
38696
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
38706
38697
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
38707
38698
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
38708
38699
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
38709
38700
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
38710
38701
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
38711
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
38702
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
38712
38703
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
38713
38704
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
38714
38705
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -40401,7 +40392,6 @@ new message content.",
|
|
|
40401
40392
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
40402
40393
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
40403
40394
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
40404
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
40405
40395
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
40406
40396
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
40407
40397
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -44090,7 +44080,7 @@ new message content.",
|
|
|
44090
44080
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
44091
44081
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
44092
44082
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
44093
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
44083
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
44094
44084
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
44095
44085
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
44096
44086
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -44098,13 +44088,13 @@ new message content.",
|
|
|
44098
44088
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
44099
44089
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
44100
44090
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
44101
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
44091
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
44102
44092
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
44103
44093
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
44104
44094
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
44105
44095
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
44106
44096
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
44107
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
44097
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
44108
44098
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
44109
44099
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
44110
44100
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -45797,7 +45787,6 @@ new message content.",
|
|
|
45797
45787
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
45798
45788
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
45799
45789
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
45800
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
45801
45790
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
45802
45791
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
45803
45792
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -46402,7 +46391,7 @@ new message content.",
|
|
|
46402
46391
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
46403
46392
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
46404
46393
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
46405
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
46394
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
46406
46395
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
46407
46396
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
46408
46397
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -46410,13 +46399,13 @@ new message content.",
|
|
|
46410
46399
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
46411
46400
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
46412
46401
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
46413
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
46402
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
46414
46403
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
46415
46404
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
46416
46405
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
46417
46406
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
46418
46407
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
46419
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
46408
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
46420
46409
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
46421
46410
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
46422
46411
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -48109,7 +48098,6 @@ new message content.",
|
|
|
48109
48098
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
48110
48099
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
48111
48100
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
48112
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
48113
48101
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
48114
48102
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
48115
48103
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -48822,7 +48810,7 @@ exports[`Creatives rcs test/> template name change 2`] = `
|
|
|
48822
48810
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
48823
48811
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
48824
48812
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
48825
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
48813
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
48826
48814
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
48827
48815
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
48828
48816
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -48830,13 +48818,13 @@ exports[`Creatives rcs test/> template name change 2`] = `
|
|
|
48830
48818
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
48831
48819
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
48832
48820
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
48833
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
48821
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
48834
48822
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
48835
48823
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
48836
48824
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
48837
48825
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
48838
48826
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
48839
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
48827
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
48840
48828
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
48841
48829
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
48842
48830
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -50529,7 +50517,6 @@ new message content.",
|
|
|
50529
50517
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
50530
50518
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
50531
50519
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
50532
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
50533
50520
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
50534
50521
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
50535
50522
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -50915,6 +50902,7 @@ new message content.",
|
|
|
50915
50902
|
"email": [Function],
|
|
50916
50903
|
"facebookPreview": [Function],
|
|
50917
50904
|
"gallery": [Function],
|
|
50905
|
+
"inApp": [Function],
|
|
50918
50906
|
"language": [Function],
|
|
50919
50907
|
"navigationConfig": [Function],
|
|
50920
50908
|
"previewAndTest": [Function],
|
|
@@ -53174,7 +53162,7 @@ new message content.",
|
|
|
53174
53162
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
53175
53163
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
53176
53164
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
53177
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
53165
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
53178
53166
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
53179
53167
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
53180
53168
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -53182,13 +53170,13 @@ new message content.",
|
|
|
53182
53170
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
53183
53171
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
53184
53172
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
53185
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
53173
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
53186
53174
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
53187
53175
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
53188
53176
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
53189
53177
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
53190
53178
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
53191
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
53179
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
53192
53180
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
53193
53181
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
53194
53182
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -54881,7 +54869,6 @@ new message content.",
|
|
|
54881
54869
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
54882
54870
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
54883
54871
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
54884
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
54885
54872
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
54886
54873
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
54887
54874
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -55433,7 +55420,7 @@ new message content.",
|
|
|
55433
55420
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
55434
55421
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
55435
55422
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
55436
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
55423
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
55437
55424
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
55438
55425
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
55439
55426
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -55441,13 +55428,13 @@ new message content.",
|
|
|
55441
55428
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
55442
55429
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
55443
55430
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
55444
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
55431
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
55445
55432
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
55446
55433
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
55447
55434
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
55448
55435
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
55449
55436
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
55450
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
55437
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
55451
55438
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
55452
55439
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
55453
55440
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -57140,7 +57127,6 @@ new message content.",
|
|
|
57140
57127
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
57141
57128
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
57142
57129
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
57143
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
57144
57130
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
57145
57131
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
57146
57132
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -61197,7 +61183,7 @@ new message content.",
|
|
|
61197
61183
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
61198
61184
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
61199
61185
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
61200
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
61186
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
61201
61187
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
61202
61188
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
61203
61189
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -61205,13 +61191,13 @@ new message content.",
|
|
|
61205
61191
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
61206
61192
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
61207
61193
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
61208
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
61194
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
61209
61195
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
61210
61196
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
61211
61197
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
61212
61198
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
61213
61199
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
61214
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
61200
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
61215
61201
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
61216
61202
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
61217
61203
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -62904,7 +62890,6 @@ new message content.",
|
|
|
62904
62890
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
62905
62891
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
62906
62892
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
62907
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
62908
62893
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
62909
62894
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
62910
62895
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -63509,7 +63494,7 @@ new message content.",
|
|
|
63509
63494
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
63510
63495
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
63511
63496
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
63512
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
63497
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
63513
63498
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
63514
63499
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
63515
63500
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -63517,13 +63502,13 @@ new message content.",
|
|
|
63517
63502
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
63518
63503
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
63519
63504
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
63520
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
63505
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
63521
63506
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
63522
63507
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
63523
63508
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
63524
63509
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
63525
63510
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
63526
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
63511
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
63527
63512
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
63528
63513
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
63529
63514
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -65216,7 +65201,6 @@ new message content.",
|
|
|
65216
65201
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
65217
65202
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
65218
65203
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
65219
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
65220
65204
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
65221
65205
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
65222
65206
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -65929,7 +65913,7 @@ exports[`Creatives rcs test/> template title change 1`] = `
|
|
|
65929
65913
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
65930
65914
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
65931
65915
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
65932
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
65916
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
65933
65917
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
65934
65918
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
65935
65919
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -65937,13 +65921,13 @@ exports[`Creatives rcs test/> template title change 1`] = `
|
|
|
65937
65921
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
65938
65922
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
65939
65923
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
65940
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
65924
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
65941
65925
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
65942
65926
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
65943
65927
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
65944
65928
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
65945
65929
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
65946
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
65930
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
65947
65931
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
65948
65932
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
65949
65933
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -67636,7 +67620,6 @@ new message content.",
|
|
|
67636
67620
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
67637
67621
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
67638
67622
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
67639
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
67640
67623
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
67641
67624
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
67642
67625
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -68022,6 +68005,7 @@ new message content.",
|
|
|
68022
68005
|
"email": [Function],
|
|
68023
68006
|
"facebookPreview": [Function],
|
|
68024
68007
|
"gallery": [Function],
|
|
68008
|
+
"inApp": [Function],
|
|
68025
68009
|
"language": [Function],
|
|
68026
68010
|
"navigationConfig": [Function],
|
|
68027
68011
|
"previewAndTest": [Function],
|
|
@@ -69927,7 +69911,7 @@ new message content.",
|
|
|
69927
69911
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
69928
69912
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
69929
69913
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
69930
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
69914
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
69931
69915
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
69932
69916
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
69933
69917
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -69935,13 +69919,13 @@ new message content.",
|
|
|
69935
69919
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
69936
69920
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
69937
69921
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
69938
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
69922
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
69939
69923
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
69940
69924
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
69941
69925
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
69942
69926
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
69943
69927
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
69944
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
69928
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
69945
69929
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
69946
69930
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
69947
69931
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -71634,7 +71618,6 @@ new message content.",
|
|
|
71634
71618
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
71635
71619
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
71636
71620
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
71637
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
71638
71621
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
71639
71622
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
71640
71623
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -72186,7 +72169,7 @@ new message content.",
|
|
|
72186
72169
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
72187
72170
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
72188
72171
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
72189
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
72172
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
72190
72173
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
72191
72174
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
72192
72175
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -72194,13 +72177,13 @@ new message content.",
|
|
|
72194
72177
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
72195
72178
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
72196
72179
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
72197
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
72180
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
72198
72181
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
72199
72182
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
72200
72183
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
72201
72184
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
72202
72185
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
72203
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
72186
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
72204
72187
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
72205
72188
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
72206
72189
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -73893,7 +73876,6 @@ new message content.",
|
|
|
73893
73876
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
73894
73877
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
73895
73878
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
73896
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
73897
73879
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
73898
73880
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
73899
73881
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -77234,7 +77216,7 @@ new message content.",
|
|
|
77234
77216
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
77235
77217
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
77236
77218
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
77237
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
77219
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
77238
77220
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
77239
77221
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
77240
77222
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -77242,13 +77224,13 @@ new message content.",
|
|
|
77242
77224
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
77243
77225
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
77244
77226
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
77245
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
77227
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
77246
77228
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
77247
77229
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
77248
77230
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
77249
77231
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
77250
77232
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
77251
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
77233
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
77252
77234
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
77253
77235
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
77254
77236
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -78941,7 +78923,6 @@ new message content.",
|
|
|
78941
78923
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
78942
78924
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
78943
78925
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
78944
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
78945
78926
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
78946
78927
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
78947
78928
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -79546,7 +79527,7 @@ new message content.",
|
|
|
79546
79527
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
79547
79528
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
79548
79529
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
79549
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
79530
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
79550
79531
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
79551
79532
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
79552
79533
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -79554,13 +79535,13 @@ new message content.",
|
|
|
79554
79535
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
79555
79536
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
79556
79537
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
79557
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
79538
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
79558
79539
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
79559
79540
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
79560
79541
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
79561
79542
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
79562
79543
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
79563
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
79544
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
79564
79545
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
79565
79546
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
79566
79547
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -81253,7 +81234,6 @@ new message content.",
|
|
|
81253
81234
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
81254
81235
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
81255
81236
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
81256
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
81257
81237
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
81258
81238
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
81259
81239
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -81966,7 +81946,7 @@ exports[`Creatives rcs test/> template title change 2`] = `
|
|
|
81966
81946
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
81967
81947
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
81968
81948
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
81969
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
81949
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
81970
81950
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
81971
81951
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
81972
81952
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -81974,13 +81954,13 @@ exports[`Creatives rcs test/> template title change 2`] = `
|
|
|
81974
81954
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
81975
81955
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
81976
81956
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
81977
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
81957
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
81978
81958
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
81979
81959
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
81980
81960
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
81981
81961
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
81982
81962
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
81983
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
81963
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
81984
81964
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
81985
81965
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
81986
81966
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -83673,7 +83653,6 @@ new message content.",
|
|
|
83673
83653
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
83674
83654
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
83675
83655
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
83676
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
83677
83656
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
83678
83657
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
83679
83658
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -84059,6 +84038,7 @@ new message content.",
|
|
|
84059
84038
|
"email": [Function],
|
|
84060
84039
|
"facebookPreview": [Function],
|
|
84061
84040
|
"gallery": [Function],
|
|
84041
|
+
"inApp": [Function],
|
|
84062
84042
|
"language": [Function],
|
|
84063
84043
|
"navigationConfig": [Function],
|
|
84064
84044
|
"previewAndTest": [Function],
|
|
@@ -86525,7 +86505,6 @@ new message content.",
|
|
|
86525
86505
|
},
|
|
86526
86506
|
]
|
|
86527
86507
|
}
|
|
86528
|
-
showTruncatedTooltip={false}
|
|
86529
86508
|
size="large"
|
|
86530
86509
|
style={
|
|
86531
86510
|
Object {
|
|
@@ -86545,7 +86524,6 @@ new message content.",
|
|
|
86545
86524
|
/>
|
|
86546
86525
|
}
|
|
86547
86526
|
onChange={[Function]}
|
|
86548
|
-
onDropdownVisibleChange={[Function]}
|
|
86549
86527
|
removeIcon={
|
|
86550
86528
|
<_default
|
|
86551
86529
|
size="s"
|
|
@@ -86611,7 +86589,6 @@ new message content.",
|
|
|
86611
86589
|
onBlur={[Function]}
|
|
86612
86590
|
onChange={[Function]}
|
|
86613
86591
|
onDeselect={[Function]}
|
|
86614
|
-
onDropdownVisibleChange={[Function]}
|
|
86615
86592
|
onFocus={[Function]}
|
|
86616
86593
|
onInputKeyDown={[Function]}
|
|
86617
86594
|
onSearch={[Function]}
|
|
@@ -86850,13 +86827,9 @@ new message content.",
|
|
|
86850
86827
|
"opacity": 1,
|
|
86851
86828
|
}
|
|
86852
86829
|
}
|
|
86853
|
-
title=""
|
|
86830
|
+
title="Vertical Medium"
|
|
86854
86831
|
>
|
|
86855
|
-
|
|
86856
|
-
className="cap-select-option-tooltip"
|
|
86857
|
-
>
|
|
86858
|
-
Vertical Medium
|
|
86859
|
-
</div>
|
|
86832
|
+
Vertical Medium
|
|
86860
86833
|
</div>
|
|
86861
86834
|
</div>
|
|
86862
86835
|
<span
|
|
@@ -87692,7 +87665,7 @@ new message content.",
|
|
|
87692
87665
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
87693
87666
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
87694
87667
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
87695
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
87668
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
87696
87669
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
87697
87670
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
87698
87671
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -87700,13 +87673,13 @@ new message content.",
|
|
|
87700
87673
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
87701
87674
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
87702
87675
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
87703
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
87676
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
87704
87677
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
87705
87678
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
87706
87679
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
87707
87680
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
87708
87681
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
87709
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
87682
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
87710
87683
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
87711
87684
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
87712
87685
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -89399,7 +89372,6 @@ new message content.",
|
|
|
89399
89372
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
89400
89373
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
89401
89374
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
89402
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
89403
89375
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
89404
89376
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
89405
89377
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -89951,7 +89923,7 @@ new message content.",
|
|
|
89951
89923
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
89952
89924
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
89953
89925
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
89954
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
89926
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
89955
89927
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
89956
89928
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
89957
89929
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -89959,13 +89931,13 @@ new message content.",
|
|
|
89959
89931
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
89960
89932
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
89961
89933
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
89962
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
89934
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
89963
89935
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
89964
89936
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
89965
89937
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
89966
89938
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
89967
89939
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
89968
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
89940
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
89969
89941
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
89970
89942
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
89971
89943
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -91658,7 +91630,6 @@ new message content.",
|
|
|
91658
91630
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
91659
91631
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
91660
91632
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
91661
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
91662
91633
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
91663
91634
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
91664
91635
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -96587,7 +96558,7 @@ new message content.",
|
|
|
96587
96558
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
96588
96559
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
96589
96560
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
96590
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
96561
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
96591
96562
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
96592
96563
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
96593
96564
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -96595,13 +96566,13 @@ new message content.",
|
|
|
96595
96566
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
96596
96567
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
96597
96568
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
96598
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
96569
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
96599
96570
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
96600
96571
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
96601
96572
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
96602
96573
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
96603
96574
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
96604
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
96575
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
96605
96576
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
96606
96577
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
96607
96578
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -98294,7 +98265,6 @@ new message content.",
|
|
|
98294
98265
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
98295
98266
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
98296
98267
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
98297
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
98298
98268
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
98299
98269
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
98300
98270
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -98899,7 +98869,7 @@ new message content.",
|
|
|
98899
98869
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
98900
98870
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
98901
98871
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
98902
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
98872
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
98903
98873
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
98904
98874
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
98905
98875
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -98907,13 +98877,13 @@ new message content.",
|
|
|
98907
98877
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
98908
98878
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
98909
98879
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
98910
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
98880
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
98911
98881
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
98912
98882
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
98913
98883
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
98914
98884
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
98915
98885
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
98916
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
98886
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
98917
98887
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
98918
98888
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
98919
98889
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -100606,7 +100576,6 @@ new message content.",
|
|
|
100606
100576
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
100607
100577
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
100608
100578
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
100609
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
100610
100579
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
100611
100580
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
100612
100581
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -101319,7 +101288,7 @@ exports[`Creatives rcs test/> template title change 3`] = `
|
|
|
101319
101288
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
101320
101289
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
101321
101290
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
101322
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
101291
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
101323
101292
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
101324
101293
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
101325
101294
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -101327,13 +101296,13 @@ exports[`Creatives rcs test/> template title change 3`] = `
|
|
|
101327
101296
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
101328
101297
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
101329
101298
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
101330
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
101299
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
101331
101300
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
101332
101301
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
101333
101302
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
101334
101303
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
101335
101304
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
101336
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
101305
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
101337
101306
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
101338
101307
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
101339
101308
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -103026,7 +102995,6 @@ new message content.",
|
|
|
103026
102995
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
103027
102996
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
103028
102997
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
103029
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
103030
102998
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
103031
102999
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
103032
103000
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -103412,6 +103380,7 @@ new message content.",
|
|
|
103412
103380
|
"email": [Function],
|
|
103413
103381
|
"facebookPreview": [Function],
|
|
103414
103382
|
"gallery": [Function],
|
|
103383
|
+
"inApp": [Function],
|
|
103415
103384
|
"language": [Function],
|
|
103416
103385
|
"navigationConfig": [Function],
|
|
103417
103386
|
"previewAndTest": [Function],
|
|
@@ -105878,7 +105847,6 @@ new message content.",
|
|
|
105878
105847
|
},
|
|
105879
105848
|
]
|
|
105880
105849
|
}
|
|
105881
|
-
showTruncatedTooltip={false}
|
|
105882
105850
|
size="large"
|
|
105883
105851
|
style={
|
|
105884
105852
|
Object {
|
|
@@ -105898,7 +105866,6 @@ new message content.",
|
|
|
105898
105866
|
/>
|
|
105899
105867
|
}
|
|
105900
105868
|
onChange={[Function]}
|
|
105901
|
-
onDropdownVisibleChange={[Function]}
|
|
105902
105869
|
removeIcon={
|
|
105903
105870
|
<_default
|
|
105904
105871
|
size="s"
|
|
@@ -105964,7 +105931,6 @@ new message content.",
|
|
|
105964
105931
|
onBlur={[Function]}
|
|
105965
105932
|
onChange={[Function]}
|
|
105966
105933
|
onDeselect={[Function]}
|
|
105967
|
-
onDropdownVisibleChange={[Function]}
|
|
105968
105934
|
onFocus={[Function]}
|
|
105969
105935
|
onInputKeyDown={[Function]}
|
|
105970
105936
|
onSearch={[Function]}
|
|
@@ -106203,13 +106169,9 @@ new message content.",
|
|
|
106203
106169
|
"opacity": 1,
|
|
106204
106170
|
}
|
|
106205
106171
|
}
|
|
106206
|
-
title=""
|
|
106172
|
+
title="Vertical Medium"
|
|
106207
106173
|
>
|
|
106208
|
-
|
|
106209
|
-
className="cap-select-option-tooltip"
|
|
106210
|
-
>
|
|
106211
|
-
Vertical Medium
|
|
106212
|
-
</div>
|
|
106174
|
+
Vertical Medium
|
|
106213
106175
|
</div>
|
|
106214
106176
|
</div>
|
|
106215
106177
|
<span
|
|
@@ -107045,7 +107007,7 @@ new message content.",
|
|
|
107045
107007
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
107046
107008
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
107047
107009
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
107048
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
107010
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
107049
107011
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
107050
107012
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
107051
107013
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -107053,13 +107015,13 @@ new message content.",
|
|
|
107053
107015
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
107054
107016
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
107055
107017
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
107056
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
107018
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
107057
107019
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
107058
107020
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
107059
107021
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
107060
107022
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
107061
107023
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
107062
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
107024
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
107063
107025
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
107064
107026
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
107065
107027
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -108752,7 +108714,6 @@ new message content.",
|
|
|
108752
108714
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
108753
108715
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
108754
108716
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
108755
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
108756
108717
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
108757
108718
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
108758
108719
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -109304,7 +109265,7 @@ new message content.",
|
|
|
109304
109265
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
109305
109266
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
109306
109267
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
109307
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
109268
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
109308
109269
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
109309
109270
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
109310
109271
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -109312,13 +109273,13 @@ new message content.",
|
|
|
109312
109273
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
109313
109274
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
109314
109275
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
109315
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
109276
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
109316
109277
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
109317
109278
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
109318
109279
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
109319
109280
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
109320
109281
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
109321
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
109282
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
109322
109283
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
109323
109284
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
109324
109285
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -111011,7 +110972,6 @@ new message content.",
|
|
|
111011
110972
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
111012
110973
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
111013
110974
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
111014
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
111015
110975
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
111016
110976
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
111017
110977
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -115940,7 +115900,7 @@ new message content.",
|
|
|
115940
115900
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
115941
115901
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
115942
115902
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
115943
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
115903
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
115944
115904
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
115945
115905
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
115946
115906
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -115948,13 +115908,13 @@ new message content.",
|
|
|
115948
115908
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
115949
115909
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
115950
115910
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
115951
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
115911
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
115952
115912
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
115953
115913
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
115954
115914
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
115955
115915
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
115956
115916
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
115957
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
115917
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
115958
115918
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
115959
115919
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
115960
115920
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -117647,7 +117607,6 @@ new message content.",
|
|
|
117647
117607
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
117648
117608
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
117649
117609
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
117650
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
117651
117610
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
117652
117611
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
117653
117612
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -118252,7 +118211,7 @@ new message content.",
|
|
|
118252
118211
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
118253
118212
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
118254
118213
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
118255
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
118214
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
118256
118215
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
118257
118216
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
118258
118217
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -118260,13 +118219,13 @@ new message content.",
|
|
|
118260
118219
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
118261
118220
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
118262
118221
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
118263
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
118222
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
118264
118223
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
118265
118224
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
118266
118225
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
118267
118226
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
118268
118227
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
118269
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
118228
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
118270
118229
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
118271
118230
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
118272
118231
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -119959,7 +119918,6 @@ new message content.",
|
|
|
119959
119918
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
119960
119919
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
119961
119920
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
119962
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
119963
119921
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
119964
119922
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
119965
119923
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -120672,7 +120630,7 @@ exports[`Creatives rcs test/> template title change 4`] = `
|
|
|
120672
120630
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
120673
120631
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
120674
120632
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
120675
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
120633
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
120676
120634
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
120677
120635
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
120678
120636
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -120680,13 +120638,13 @@ exports[`Creatives rcs test/> template title change 4`] = `
|
|
|
120680
120638
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
120681
120639
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
120682
120640
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
120683
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
120641
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
120684
120642
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
120685
120643
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
120686
120644
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
120687
120645
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
120688
120646
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
120689
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
120647
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
120690
120648
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
120691
120649
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
120692
120650
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -122379,7 +122337,6 @@ new message content.",
|
|
|
122379
122337
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
122380
122338
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
122381
122339
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
122382
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
122383
122340
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
122384
122341
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
122385
122342
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -122765,6 +122722,7 @@ new message content.",
|
|
|
122765
122722
|
"email": [Function],
|
|
122766
122723
|
"facebookPreview": [Function],
|
|
122767
122724
|
"gallery": [Function],
|
|
122725
|
+
"inApp": [Function],
|
|
122768
122726
|
"language": [Function],
|
|
122769
122727
|
"navigationConfig": [Function],
|
|
122770
122728
|
"previewAndTest": [Function],
|
|
@@ -126026,7 +125984,7 @@ new message content.",
|
|
|
126026
125984
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
126027
125985
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
126028
125986
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
126029
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
125987
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
126030
125988
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
126031
125989
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
126032
125990
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -126034,13 +125992,13 @@ new message content.",
|
|
|
126034
125992
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
126035
125993
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
126036
125994
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
126037
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
125995
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
126038
125996
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
126039
125997
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
126040
125998
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
126041
125999
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
126042
126000
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
126043
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
126001
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
126044
126002
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
126045
126003
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
126046
126004
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -127733,7 +127691,6 @@ new message content.",
|
|
|
127733
127691
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
127734
127692
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
127735
127693
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
127736
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
127737
127694
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
127738
127695
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
127739
127696
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -128285,7 +128242,7 @@ new message content.",
|
|
|
128285
128242
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
128286
128243
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
128287
128244
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
128288
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
128245
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
128289
128246
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
128290
128247
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
128291
128248
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -128293,13 +128250,13 @@ new message content.",
|
|
|
128293
128250
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
128294
128251
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
128295
128252
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
128296
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
128253
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
128297
128254
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
128298
128255
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
128299
128256
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
128300
128257
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
128301
128258
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
128302
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
128259
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
128303
128260
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
128304
128261
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
128305
128262
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -129992,7 +129949,6 @@ new message content.",
|
|
|
129992
129949
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
129993
129950
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
129994
129951
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
129995
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
129996
129952
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
129997
129953
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
129998
129954
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -135961,7 +135917,7 @@ new message content.",
|
|
|
135961
135917
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
135962
135918
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
135963
135919
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
135964
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
135920
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
135965
135921
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
135966
135922
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
135967
135923
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -135969,13 +135925,13 @@ new message content.",
|
|
|
135969
135925
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
135970
135926
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
135971
135927
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
135972
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
135928
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
135973
135929
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
135974
135930
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
135975
135931
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
135976
135932
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
135977
135933
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
135978
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
135934
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
135979
135935
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
135980
135936
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
135981
135937
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -137668,7 +137624,6 @@ new message content.",
|
|
|
137668
137624
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
137669
137625
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
137670
137626
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
137671
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
137672
137627
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
137673
137628
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
137674
137629
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -138273,7 +138228,7 @@ new message content.",
|
|
|
138273
138228
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
138274
138229
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
138275
138230
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
138276
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
138231
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
138277
138232
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
138278
138233
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
138279
138234
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -138281,13 +138236,13 @@ new message content.",
|
|
|
138281
138236
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
138282
138237
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
138283
138238
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
138284
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
138239
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
138285
138240
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
138286
138241
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
138287
138242
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
138288
138243
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
138289
138244
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
138290
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
138245
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
138291
138246
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
138292
138247
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
138293
138248
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -139980,7 +139935,6 @@ new message content.",
|
|
|
139980
139935
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
139981
139936
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
139982
139937
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
139983
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
139984
139938
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
139985
139939
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
139986
139940
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -140693,7 +140647,7 @@ exports[`Creatives rcs test/> template type change 1`] = `
|
|
|
140693
140647
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
140694
140648
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
140695
140649
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
140696
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
140650
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
140697
140651
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
140698
140652
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
140699
140653
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -140701,13 +140655,13 @@ exports[`Creatives rcs test/> template type change 1`] = `
|
|
|
140701
140655
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
140702
140656
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
140703
140657
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
140704
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
140658
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
140705
140659
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
140706
140660
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
140707
140661
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
140708
140662
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
140709
140663
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
140710
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
140664
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
140711
140665
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
140712
140666
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
140713
140667
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -142400,7 +142354,6 @@ new message content.",
|
|
|
142400
142354
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
142401
142355
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
142402
142356
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
142403
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
142404
142357
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
142405
142358
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
142406
142359
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -142786,6 +142739,7 @@ new message content.",
|
|
|
142786
142739
|
"email": [Function],
|
|
142787
142740
|
"facebookPreview": [Function],
|
|
142788
142741
|
"gallery": [Function],
|
|
142742
|
+
"inApp": [Function],
|
|
142789
142743
|
"language": [Function],
|
|
142790
142744
|
"navigationConfig": [Function],
|
|
142791
142745
|
"previewAndTest": [Function],
|
|
@@ -144691,7 +144645,7 @@ new message content.",
|
|
|
144691
144645
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
144692
144646
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
144693
144647
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
144694
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
144648
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
144695
144649
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
144696
144650
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
144697
144651
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -144699,13 +144653,13 @@ new message content.",
|
|
|
144699
144653
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
144700
144654
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
144701
144655
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
144702
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
144656
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
144703
144657
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
144704
144658
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
144705
144659
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
144706
144660
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
144707
144661
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
144708
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
144662
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
144709
144663
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
144710
144664
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
144711
144665
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -146398,7 +146352,6 @@ new message content.",
|
|
|
146398
146352
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
146399
146353
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
146400
146354
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
146401
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
146402
146355
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
146403
146356
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
146404
146357
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -146950,7 +146903,7 @@ new message content.",
|
|
|
146950
146903
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
146951
146904
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
146952
146905
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
146953
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
146906
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
146954
146907
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
146955
146908
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
146956
146909
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -146958,13 +146911,13 @@ new message content.",
|
|
|
146958
146911
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
146959
146912
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
146960
146913
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
146961
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
146914
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
146962
146915
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
146963
146916
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
146964
146917
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
146965
146918
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
146966
146919
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
146967
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
146920
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
146968
146921
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
146969
146922
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
146970
146923
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -148657,7 +148610,6 @@ new message content.",
|
|
|
148657
148610
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
148658
148611
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
148659
148612
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
148660
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
148661
148613
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
148662
148614
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
148663
148615
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -151998,7 +151950,7 @@ new message content.",
|
|
|
151998
151950
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
151999
151951
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
152000
151952
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
152001
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
151953
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
152002
151954
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
152003
151955
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
152004
151956
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -152006,13 +151958,13 @@ new message content.",
|
|
|
152006
151958
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
152007
151959
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
152008
151960
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
152009
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
151961
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
152010
151962
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
152011
151963
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
152012
151964
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
152013
151965
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
152014
151966
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
152015
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
151967
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
152016
151968
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
152017
151969
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
152018
151970
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -153705,7 +153657,6 @@ new message content.",
|
|
|
153705
153657
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
153706
153658
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
153707
153659
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
153708
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
153709
153660
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
153710
153661
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
153711
153662
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -154310,7 +154261,7 @@ new message content.",
|
|
|
154310
154261
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
154311
154262
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
154312
154263
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
154313
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
154264
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
154314
154265
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
154315
154266
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
154316
154267
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -154318,13 +154269,13 @@ new message content.",
|
|
|
154318
154269
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
154319
154270
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
154320
154271
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
154321
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
154272
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
154322
154273
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
154323
154274
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
154324
154275
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
154325
154276
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
154326
154277
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
154327
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
154278
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
154328
154279
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
154329
154280
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
154330
154281
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -156017,7 +155968,6 @@ new message content.",
|
|
|
156017
155968
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
156018
155969
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
156019
155970
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
156020
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
156021
155971
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
156022
155972
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
156023
155973
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -156730,7 +156680,7 @@ exports[`Creatives rcs test/> template type change 2`] = `
|
|
|
156730
156680
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
156731
156681
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
156732
156682
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
156733
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
156683
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
156734
156684
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
156735
156685
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
156736
156686
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -156738,13 +156688,13 @@ exports[`Creatives rcs test/> template type change 2`] = `
|
|
|
156738
156688
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
156739
156689
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
156740
156690
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
156741
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
156691
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
156742
156692
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
156743
156693
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
156744
156694
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
156745
156695
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
156746
156696
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
156747
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
156697
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
156748
156698
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
156749
156699
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
156750
156700
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -158437,7 +158387,6 @@ new message content.",
|
|
|
158437
158387
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
158438
158388
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
158439
158389
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
158440
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
158441
158390
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
158442
158391
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
158443
158392
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -158823,6 +158772,7 @@ new message content.",
|
|
|
158823
158772
|
"email": [Function],
|
|
158824
158773
|
"facebookPreview": [Function],
|
|
158825
158774
|
"gallery": [Function],
|
|
158775
|
+
"inApp": [Function],
|
|
158826
158776
|
"language": [Function],
|
|
158827
158777
|
"navigationConfig": [Function],
|
|
158828
158778
|
"previewAndTest": [Function],
|
|
@@ -160728,7 +160678,7 @@ new message content.",
|
|
|
160728
160678
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
160729
160679
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
160730
160680
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
160731
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
160681
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
160732
160682
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
160733
160683
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
160734
160684
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -160736,13 +160686,13 @@ new message content.",
|
|
|
160736
160686
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
160737
160687
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
160738
160688
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
160739
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
160689
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
160740
160690
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
160741
160691
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
160742
160692
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
160743
160693
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
160744
160694
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
160745
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
160695
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
160746
160696
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
160747
160697
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
160748
160698
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -162435,7 +162385,6 @@ new message content.",
|
|
|
162435
162385
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
162436
162386
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
162437
162387
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
162438
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
162439
162388
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
162440
162389
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
162441
162390
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -162987,7 +162936,7 @@ new message content.",
|
|
|
162987
162936
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
162988
162937
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
162989
162938
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
162990
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
162939
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
162991
162940
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
162992
162941
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
162993
162942
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -162995,13 +162944,13 @@ new message content.",
|
|
|
162995
162944
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
162996
162945
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
162997
162946
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
162998
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
162947
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
162999
162948
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
163000
162949
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
163001
162950
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
163002
162951
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
163003
162952
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
163004
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
162953
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
163005
162954
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
163006
162955
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
163007
162956
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -164694,7 +164643,6 @@ new message content.",
|
|
|
164694
164643
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
164695
164644
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
164696
164645
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
164697
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
164698
164646
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
164699
164647
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
164700
164648
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -168035,7 +167983,7 @@ new message content.",
|
|
|
168035
167983
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
168036
167984
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
168037
167985
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
168038
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
167986
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
168039
167987
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
168040
167988
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
168041
167989
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -168043,13 +167991,13 @@ new message content.",
|
|
|
168043
167991
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
168044
167992
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
168045
167993
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
168046
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
167994
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
168047
167995
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
168048
167996
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
168049
167997
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
168050
167998
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
168051
167999
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
168052
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
168000
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
168053
168001
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
168054
168002
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
168055
168003
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -169742,7 +169690,6 @@ new message content.",
|
|
|
169742
169690
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
169743
169691
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
169744
169692
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
169745
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
169746
169693
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
169747
169694
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
169748
169695
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -170347,7 +170294,7 @@ new message content.",
|
|
|
170347
170294
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
170348
170295
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
170349
170296
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
170350
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
170297
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
170351
170298
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
170352
170299
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
170353
170300
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -170355,13 +170302,13 @@ new message content.",
|
|
|
170355
170302
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
170356
170303
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
170357
170304
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
170358
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
170305
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
170359
170306
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
170360
170307
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
170361
170308
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
170362
170309
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
170363
170310
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
170364
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
170311
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
170365
170312
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
170366
170313
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
170367
170314
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -172054,7 +172001,6 @@ new message content.",
|
|
|
172054
172001
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
172055
172002
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
172056
172003
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
172057
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
172058
172004
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
172059
172005
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
172060
172006
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -172767,7 +172713,7 @@ exports[`Creatives rcs test/> template type change 3`] = `
|
|
|
172767
172713
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
172768
172714
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
172769
172715
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
172770
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
172716
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
172771
172717
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
172772
172718
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
172773
172719
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -172775,13 +172721,13 @@ exports[`Creatives rcs test/> template type change 3`] = `
|
|
|
172775
172721
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
172776
172722
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
172777
172723
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
172778
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
172724
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
172779
172725
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
172780
172726
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
172781
172727
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
172782
172728
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
172783
172729
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
172784
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
172730
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
172785
172731
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
172786
172732
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
172787
172733
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -174474,7 +174420,6 @@ new message content.",
|
|
|
174474
174420
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
174475
174421
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
174476
174422
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
174477
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
174478
174423
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
174479
174424
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
174480
174425
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -174860,6 +174805,7 @@ new message content.",
|
|
|
174860
174805
|
"email": [Function],
|
|
174861
174806
|
"facebookPreview": [Function],
|
|
174862
174807
|
"gallery": [Function],
|
|
174808
|
+
"inApp": [Function],
|
|
174863
174809
|
"language": [Function],
|
|
174864
174810
|
"navigationConfig": [Function],
|
|
174865
174811
|
"previewAndTest": [Function],
|
|
@@ -176765,7 +176711,7 @@ new message content.",
|
|
|
176765
176711
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
176766
176712
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
176767
176713
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
176768
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
176714
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
176769
176715
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
176770
176716
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
176771
176717
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -176773,13 +176719,13 @@ new message content.",
|
|
|
176773
176719
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
176774
176720
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
176775
176721
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
176776
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
176722
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
176777
176723
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
176778
176724
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
176779
176725
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
176780
176726
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
176781
176727
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
176782
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
176728
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
176783
176729
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
176784
176730
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
176785
176731
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -178472,7 +178418,6 @@ new message content.",
|
|
|
178472
178418
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
178473
178419
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
178474
178420
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
178475
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
178476
178421
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
178477
178422
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
178478
178423
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -179024,7 +178969,7 @@ new message content.",
|
|
|
179024
178969
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
179025
178970
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
179026
178971
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
179027
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
178972
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
179028
178973
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
179029
178974
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
179030
178975
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -179032,13 +178977,13 @@ new message content.",
|
|
|
179032
178977
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
179033
178978
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
179034
178979
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
179035
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
178980
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
179036
178981
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
179037
178982
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
179038
178983
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
179039
178984
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
179040
178985
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
179041
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
178986
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
179042
178987
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
179043
178988
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
179044
178989
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -180731,7 +180676,6 @@ new message content.",
|
|
|
180731
180676
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
180732
180677
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
180733
180678
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
180734
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
180735
180679
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
180736
180680
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
180737
180681
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -184072,7 +184016,7 @@ new message content.",
|
|
|
184072
184016
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
184073
184017
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
184074
184018
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
184075
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
184019
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
184076
184020
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
184077
184021
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
184078
184022
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -184080,13 +184024,13 @@ new message content.",
|
|
|
184080
184024
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
184081
184025
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
184082
184026
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
184083
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
184027
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
184084
184028
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
184085
184029
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
184086
184030
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
184087
184031
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
184088
184032
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
184089
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
184033
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
184090
184034
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
184091
184035
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
184092
184036
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -185779,7 +185723,6 @@ new message content.",
|
|
|
185779
185723
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
185780
185724
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
185781
185725
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
185782
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
185783
185726
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
185784
185727
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
185785
185728
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -186384,7 +186327,7 @@ new message content.",
|
|
|
186384
186327
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
186385
186328
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
186386
186329
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
186387
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
186330
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
186388
186331
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
186389
186332
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
186390
186333
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -186392,13 +186335,13 @@ new message content.",
|
|
|
186392
186335
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
186393
186336
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
186394
186337
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
186395
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
186338
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
186396
186339
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
186397
186340
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
186398
186341
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
186399
186342
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
186400
186343
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
186401
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
186344
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
186402
186345
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
186403
186346
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
186404
186347
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -188091,7 +188034,6 @@ new message content.",
|
|
|
188091
188034
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
188092
188035
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
188093
188036
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
188094
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
188095
188037
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
188096
188038
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
188097
188039
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -188804,7 +188746,7 @@ exports[`Creatives rcs test/> template type change 4`] = `
|
|
|
188804
188746
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
188805
188747
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
188806
188748
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
188807
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
188749
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
188808
188750
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
188809
188751
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
188810
188752
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -188812,13 +188754,13 @@ exports[`Creatives rcs test/> template type change 4`] = `
|
|
|
188812
188754
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
188813
188755
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
188814
188756
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
188815
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
188757
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
188816
188758
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
188817
188759
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
188818
188760
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
188819
188761
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
188820
188762
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
188821
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
188763
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
188822
188764
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
188823
188765
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
188824
188766
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -190511,7 +190453,6 @@ new message content.",
|
|
|
190511
190453
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
190512
190454
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
190513
190455
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
190514
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
190515
190456
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
190516
190457
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
190517
190458
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -190897,6 +190838,7 @@ new message content.",
|
|
|
190897
190838
|
"email": [Function],
|
|
190898
190839
|
"facebookPreview": [Function],
|
|
190899
190840
|
"gallery": [Function],
|
|
190841
|
+
"inApp": [Function],
|
|
190900
190842
|
"language": [Function],
|
|
190901
190843
|
"navigationConfig": [Function],
|
|
190902
190844
|
"previewAndTest": [Function],
|
|
@@ -196607,7 +196549,7 @@ new message content.",
|
|
|
196607
196549
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
196608
196550
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
196609
196551
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
196610
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
196552
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
196611
196553
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
196612
196554
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
196613
196555
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -196615,13 +196557,13 @@ new message content.",
|
|
|
196615
196557
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
196616
196558
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
196617
196559
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
196618
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
196560
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
196619
196561
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
196620
196562
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
196621
196563
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
196622
196564
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
196623
196565
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
196624
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
196566
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
196625
196567
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
196626
196568
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
196627
196569
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -198314,7 +198256,6 @@ new message content.",
|
|
|
198314
198256
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
198315
198257
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
198316
198258
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
198317
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
198318
198259
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
198319
198260
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
198320
198261
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -198908,7 +198849,7 @@ new message content.",
|
|
|
198908
198849
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
198909
198850
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
198910
198851
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
198911
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
198852
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
198912
198853
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
198913
198854
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
198914
198855
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -198916,13 +198857,13 @@ new message content.",
|
|
|
198916
198857
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
198917
198858
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
198918
198859
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
198919
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
198860
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
198920
198861
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
198921
198862
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
198922
198863
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
198923
198864
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
198924
198865
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
198925
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
198866
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
198926
198867
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
198927
198868
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
198928
198869
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -200615,7 +200556,6 @@ new message content.",
|
|
|
200615
200556
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
200616
200557
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
200617
200558
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
200618
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
200619
200559
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
200620
200560
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
200621
200561
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|