@capillarytech/creatives-library 8.0.250-alpha.2 → 8.0.251
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 +1 -3
- package/initialReducer.js +0 -2
- package/package.json +1 -1
- package/services/api.js +0 -15
- package/services/tests/api.test.js +0 -34
- package/translations/en.json +3 -4
- package/utils/common.js +0 -11
- package/utils/commonUtils.js +5 -28
- package/utils/tests/commonUtil.test.js +0 -224
- package/utils/tests/transformerUtils.test.js +0 -297
- package/utils/transformTemplateConfig.js +10 -0
- package/utils/transformerUtils.js +0 -40
- package/v2Components/CapDeviceContent/index.js +56 -61
- 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 +1 -6
- package/v2Components/CapTagListWithInput/index.js +1 -5
- package/v2Components/CapTagListWithInput/messages.js +1 -1
- package/v2Components/CapWhatsappCTA/tests/index.test.js +0 -5
- package/v2Components/ErrorInfoNote/index.js +72 -455
- package/v2Components/ErrorInfoNote/messages.js +6 -36
- package/v2Components/ErrorInfoNote/style.scss +4 -280
- package/v2Components/FormBuilder/tests/index.test.js +4 -13
- package/v2Components/HtmlEditor/HTMLEditor.js +94 -547
- package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +133 -1358
- package/v2Components/HtmlEditor/__tests__/index.lazy.test.js +16 -27
- package/v2Components/HtmlEditor/_htmlEditor.scss +45 -108
- package/v2Components/HtmlEditor/_index.lazy.scss +1 -1
- package/v2Components/HtmlEditor/components/CodeEditorPane/_codeEditorPane.scss +101 -22
- package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +140 -146
- package/v2Components/HtmlEditor/components/DeviceToggle/_deviceToggle.scss +1 -2
- package/v2Components/HtmlEditor/components/DeviceToggle/index.js +3 -3
- package/v2Components/HtmlEditor/components/EditorToolbar/_editorToolbar.scss +0 -9
- package/v2Components/HtmlEditor/components/EditorToolbar/index.js +1 -1
- package/v2Components/HtmlEditor/components/FullscreenModal/_fullscreenModal.scss +0 -22
- package/v2Components/HtmlEditor/components/InAppPreviewPane/DeviceFrame.js +7 -4
- package/v2Components/HtmlEditor/components/InAppPreviewPane/__tests__/DeviceFrame.test.js +45 -35
- package/v2Components/HtmlEditor/components/InAppPreviewPane/_inAppPreviewPane.scss +3 -1
- package/v2Components/HtmlEditor/components/InAppPreviewPane/constants.js +33 -33
- package/v2Components/HtmlEditor/components/InAppPreviewPane/index.js +6 -7
- package/v2Components/HtmlEditor/components/PreviewPane/_previewPane.scss +6 -3
- package/v2Components/HtmlEditor/components/PreviewPane/index.js +34 -24
- package/v2Components/HtmlEditor/components/SplitContainer/_splitContainer.scss +1 -1
- package/v2Components/HtmlEditor/components/ValidationErrorDisplay/__tests__/index.test.js +152 -0
- package/v2Components/HtmlEditor/components/ValidationErrorDisplay/index.js +31 -49
- package/v2Components/HtmlEditor/components/ValidationPanel/_validationPanel.scss +34 -50
- package/v2Components/HtmlEditor/components/ValidationPanel/index.js +41 -70
- package/v2Components/HtmlEditor/constants.js +20 -42
- package/v2Components/HtmlEditor/hooks/__tests__/useInAppContent.test.js +16 -373
- package/v2Components/HtmlEditor/hooks/useEditorContent.js +2 -5
- package/v2Components/HtmlEditor/hooks/useInAppContent.js +146 -88
- package/v2Components/HtmlEditor/hooks/useValidation.js +53 -189
- package/v2Components/HtmlEditor/index.js +1 -1
- package/v2Components/HtmlEditor/messages.js +85 -95
- package/v2Components/HtmlEditor/utils/__tests__/htmlValidator.enhanced.test.js +45 -94
- package/v2Components/HtmlEditor/utils/__tests__/validationAdapter.test.js +0 -134
- package/v2Components/HtmlEditor/utils/contentSanitizer.js +41 -40
- package/v2Components/HtmlEditor/utils/htmlValidator.js +72 -71
- package/v2Components/HtmlEditor/utils/liquidTemplateSupport.js +102 -134
- package/v2Components/HtmlEditor/utils/properSyntaxHighlighting.js +25 -23
- package/v2Components/HtmlEditor/utils/validationAdapter.js +41 -66
- package/v2Components/MobilePushPreviewV2/index.js +7 -32
- package/v2Components/TemplatePreview/_templatePreview.scss +24 -55
- package/v2Components/TemplatePreview/index.js +32 -47
- package/v2Components/TemplatePreview/messages.js +0 -4
- package/v2Components/TestAndPreviewSlidebox/_testAndPreviewSlidebox.scss +0 -1
- package/v2Containers/App/constants.js +0 -5
- package/v2Containers/BeeEditor/index.js +90 -172
- package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +3 -4
- package/v2Containers/CreativesContainer/SlideBoxContent.js +53 -184
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +13 -163
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +1 -3
- package/v2Containers/CreativesContainer/constants.js +0 -4
- package/v2Containers/CreativesContainer/index.js +46 -407
- package/v2Containers/CreativesContainer/messages.js +0 -12
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.test.js +0 -210
- package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +2 -11
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +50 -342
- package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +0 -106
- package/v2Containers/Email/actions.js +0 -7
- package/v2Containers/Email/constants.js +1 -5
- package/v2Containers/Email/index.js +29 -234
- package/v2Containers/Email/messages.js +0 -32
- package/v2Containers/Email/reducer.js +1 -12
- package/v2Containers/Email/sagas.js +7 -61
- package/v2Containers/Email/tests/__snapshots__/reducer.test.js.snap +0 -2
- package/v2Containers/Email/tests/reducer.test.js +0 -46
- package/v2Containers/Email/tests/sagas.test.js +29 -320
- package/v2Containers/EmailWrapper/components/EmailWrapperView.js +19 -207
- package/v2Containers/EmailWrapper/components/HTMLEditorTesting.js +74 -40
- package/v2Containers/EmailWrapper/components/__tests__/HTMLEditorTesting.test.js +67 -2
- package/v2Containers/EmailWrapper/constants.js +0 -2
- package/v2Containers/EmailWrapper/hooks/useEmailWrapper.js +77 -629
- package/v2Containers/EmailWrapper/index.js +23 -103
- package/v2Containers/EmailWrapper/messages.js +1 -61
- package/v2Containers/EmailWrapper/tests/EmailWrapperView.test.js +214 -0
- package/v2Containers/EmailWrapper/tests/useEmailWrapper.test.js +77 -594
- package/v2Containers/InApp/actions.js +0 -7
- package/v2Containers/InApp/constants.js +4 -20
- package/v2Containers/InApp/index.js +359 -802
- package/v2Containers/InApp/index.scss +3 -4
- package/v2Containers/InApp/messages.js +3 -7
- package/v2Containers/InApp/reducer.js +3 -21
- package/v2Containers/InApp/sagas.js +9 -29
- package/v2Containers/InApp/selectors.js +5 -25
- package/v2Containers/InApp/tests/index.test.js +50 -154
- package/v2Containers/InApp/tests/reducer.test.js +0 -34
- package/v2Containers/InApp/tests/sagas.test.js +9 -61
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +9 -15
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +6 -10
- package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +75 -102
- package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +54 -81
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +174 -244
- package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +12 -16
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +36 -52
- package/v2Containers/TagList/index.js +19 -62
- package/v2Containers/Templates/ChannelTypeIllustration.js +1 -13
- package/v2Containers/Templates/_templates.scss +1 -265
- package/v2Containers/Templates/actions.js +1 -2
- package/v2Containers/Templates/constants.js +0 -1
- package/v2Containers/Templates/index.js +38 -363
- package/v2Containers/Templates/messages.js +0 -28
- package/v2Containers/Templates/reducer.js +0 -4
- 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 +486 -682
- 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/__tests__/HTMLEditor.apiErrors.test.js +0 -874
- package/v2Components/HtmlEditor/components/ValidationPanel/constants.js +0 -6
- package/v2Components/HtmlEditor/components/ValidationTabs/_validationTabs.scss +0 -254
- package/v2Components/HtmlEditor/components/ValidationTabs/index.js +0 -364
- package/v2Components/HtmlEditor/components/ValidationTabs/messages.js +0 -51
- package/v2Components/HtmlEditor/hooks/__tests__/useValidation.apiErrors.test.js +0 -795
- package/v2Components/HtmlEditor/utils/validationConstants.js +0 -40
- package/v2Containers/BeePopupEditor/_beePopupEditor.scss +0 -14
- package/v2Containers/BeePopupEditor/constants.js +0 -10
- package/v2Containers/BeePopupEditor/index.js +0 -194
- package/v2Containers/BeePopupEditor/tests/index.test.js +0 -627
- package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +0 -1285
- package/v2Containers/EmailWrapper/components/__tests__/EmailHTMLEditor.test.js +0 -1870
- package/v2Containers/EmailWrapper/components/__tests__/EmailWrapperView.test.js +0 -520
- package/v2Containers/EmailWrapper/tests/useEmailWrapper.edgeCases.test.js +0 -643
- package/v2Containers/InApp/__tests__/InAppHTMLEditor.test.js +0 -376
- package/v2Containers/InApp/__tests__/sagas.test.js +0 -363
- package/v2Containers/InApp/tests/selectors.test.js +0 -612
- package/v2Containers/InAppWrapper/components/InAppWrapperView.js +0 -151
- package/v2Containers/InAppWrapper/components/__tests__/InAppWrapperView.test.js +0 -267
- package/v2Containers/InAppWrapper/components/inAppWrapperView.scss +0 -23
- package/v2Containers/InAppWrapper/constants.js +0 -16
- package/v2Containers/InAppWrapper/hooks/__tests__/useInAppWrapper.test.js +0 -473
- package/v2Containers/InAppWrapper/hooks/useInAppWrapper.js +0 -198
- package/v2Containers/InAppWrapper/index.js +0 -148
- package/v2Containers/InAppWrapper/messages.js +0 -49
- package/v2Containers/InappAdvance/index.js +0 -1099
- package/v2Containers/InappAdvance/index.scss +0 -10
- package/v2Containers/InappAdvance/tests/index.test.js +0 -448
- 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 -107
- package/v2Containers/WebPush/Create/components/ButtonsLinksSection.js +0 -160
- package/v2Containers/WebPush/Create/components/ButtonsLinksSection.test.js +0 -476
- 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 -143
- 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 -82
- 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 -515
- 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 -46
- package/v2Containers/WebPush/Create/hooks/useButtonManagement.js +0 -150
- 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,7 +2281,6 @@ new message content.",
|
|
|
2282
2281
|
"email": [Function],
|
|
2283
2282
|
"facebookPreview": [Function],
|
|
2284
2283
|
"gallery": [Function],
|
|
2285
|
-
"inApp": [Function],
|
|
2286
2284
|
"language": [Function],
|
|
2287
2285
|
"navigationConfig": [Function],
|
|
2288
2286
|
"previewAndTest": [Function],
|
|
@@ -4188,7 +4186,7 @@ new message content.",
|
|
|
4188
4186
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
4189
4187
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
4190
4188
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
4191
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
4189
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
4192
4190
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
4193
4191
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
4194
4192
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -4196,13 +4194,13 @@ new message content.",
|
|
|
4196
4194
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
4197
4195
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
4198
4196
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
4199
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
4197
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
4200
4198
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
4201
4199
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
4202
4200
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
4203
4201
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
4204
4202
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
4205
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
4203
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
4206
4204
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
4207
4205
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
4208
4206
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -5895,7 +5893,6 @@ new message content.",
|
|
|
5895
5893
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
5896
5894
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
5897
5895
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
5898
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
5899
5896
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
5900
5897
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
5901
5898
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -6447,7 +6444,7 @@ new message content.",
|
|
|
6447
6444
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
6448
6445
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
6449
6446
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
6450
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
6447
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
6451
6448
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
6452
6449
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
6453
6450
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -6455,13 +6452,13 @@ new message content.",
|
|
|
6455
6452
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
6456
6453
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
6457
6454
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
6458
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
6455
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
6459
6456
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
6460
6457
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
6461
6458
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
6462
6459
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
6463
6460
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
6464
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
6461
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
6465
6462
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
6466
6463
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
6467
6464
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -8154,7 +8151,6 @@ new message content.",
|
|
|
8154
8151
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
8155
8152
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
8156
8153
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
8157
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
8158
8154
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
8159
8155
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
8160
8156
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -11495,7 +11491,7 @@ new message content.",
|
|
|
11495
11491
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
11496
11492
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
11497
11493
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
11498
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
11494
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
11499
11495
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
11500
11496
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
11501
11497
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -11503,13 +11499,13 @@ new message content.",
|
|
|
11503
11499
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
11504
11500
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
11505
11501
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
11506
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
11502
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
11507
11503
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
11508
11504
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
11509
11505
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
11510
11506
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
11511
11507
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
11512
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
11508
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
11513
11509
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
11514
11510
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
11515
11511
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -13202,7 +13198,6 @@ new message content.",
|
|
|
13202
13198
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
13203
13199
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
13204
13200
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
13205
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
13206
13201
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
13207
13202
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
13208
13203
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -13807,7 +13802,7 @@ new message content.",
|
|
|
13807
13802
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
13808
13803
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
13809
13804
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
13810
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
13805
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
13811
13806
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
13812
13807
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
13813
13808
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -13815,13 +13810,13 @@ new message content.",
|
|
|
13815
13810
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
13816
13811
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
13817
13812
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
13818
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
13813
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
13819
13814
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
13820
13815
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
13821
13816
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
13822
13817
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
13823
13818
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
13824
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
13819
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
13825
13820
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
13826
13821
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
13827
13822
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -15514,7 +15509,6 @@ new message content.",
|
|
|
15514
15509
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
15515
15510
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
15516
15511
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
15517
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
15518
15512
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
15519
15513
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
15520
15514
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -16227,7 +16221,7 @@ exports[`Creatives rcs test/> template desc change 2`] = `
|
|
|
16227
16221
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
16228
16222
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
16229
16223
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
16230
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
16224
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
16231
16225
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
16232
16226
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
16233
16227
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -16235,13 +16229,13 @@ exports[`Creatives rcs test/> template desc change 2`] = `
|
|
|
16235
16229
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
16236
16230
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
16237
16231
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
16238
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
16232
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
16239
16233
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
16240
16234
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
16241
16235
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
16242
16236
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
16243
16237
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
16244
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
16238
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
16245
16239
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
16246
16240
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
16247
16241
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -17934,7 +17928,6 @@ new message content.",
|
|
|
17934
17928
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
17935
17929
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
17936
17930
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
17937
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
17938
17931
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
17939
17932
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
17940
17933
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -18320,7 +18313,6 @@ new message content.",
|
|
|
18320
18313
|
"email": [Function],
|
|
18321
18314
|
"facebookPreview": [Function],
|
|
18322
18315
|
"gallery": [Function],
|
|
18323
|
-
"inApp": [Function],
|
|
18324
18316
|
"language": [Function],
|
|
18325
18317
|
"navigationConfig": [Function],
|
|
18326
18318
|
"previewAndTest": [Function],
|
|
@@ -20226,7 +20218,7 @@ new message content.",
|
|
|
20226
20218
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
20227
20219
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
20228
20220
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
20229
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
20221
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
20230
20222
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
20231
20223
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
20232
20224
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -20234,13 +20226,13 @@ new message content.",
|
|
|
20234
20226
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
20235
20227
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
20236
20228
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
20237
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
20229
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
20238
20230
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
20239
20231
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
20240
20232
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
20241
20233
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
20242
20234
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
20243
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
20235
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
20244
20236
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
20245
20237
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
20246
20238
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -21933,7 +21925,6 @@ new message content.",
|
|
|
21933
21925
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
21934
21926
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
21935
21927
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
21936
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
21937
21928
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
21938
21929
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
21939
21930
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -22485,7 +22476,7 @@ new message content.",
|
|
|
22485
22476
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
22486
22477
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
22487
22478
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
22488
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
22479
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
22489
22480
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
22490
22481
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
22491
22482
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -22493,13 +22484,13 @@ new message content.",
|
|
|
22493
22484
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
22494
22485
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
22495
22486
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
22496
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
22487
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
22497
22488
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
22498
22489
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
22499
22490
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
22500
22491
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
22501
22492
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
22502
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
22493
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
22503
22494
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
22504
22495
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
22505
22496
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -24192,7 +24183,6 @@ new message content.",
|
|
|
24192
24183
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
24193
24184
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
24194
24185
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
24195
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
24196
24186
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
24197
24187
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
24198
24188
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -27533,7 +27523,7 @@ new message content.",
|
|
|
27533
27523
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
27534
27524
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
27535
27525
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
27536
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
27526
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
27537
27527
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
27538
27528
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
27539
27529
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -27541,13 +27531,13 @@ new message content.",
|
|
|
27541
27531
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
27542
27532
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
27543
27533
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
27544
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
27534
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
27545
27535
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
27546
27536
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
27547
27537
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
27548
27538
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
27549
27539
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
27550
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
27540
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
27551
27541
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
27552
27542
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
27553
27543
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -29240,7 +29230,6 @@ new message content.",
|
|
|
29240
29230
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
29241
29231
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
29242
29232
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
29243
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
29244
29233
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
29245
29234
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
29246
29235
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -29845,7 +29834,7 @@ new message content.",
|
|
|
29845
29834
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
29846
29835
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
29847
29836
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
29848
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
29837
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
29849
29838
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
29850
29839
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
29851
29840
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -29853,13 +29842,13 @@ new message content.",
|
|
|
29853
29842
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
29854
29843
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
29855
29844
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
29856
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
29845
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
29857
29846
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
29858
29847
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
29859
29848
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
29860
29849
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
29861
29850
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
29862
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
29851
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
29863
29852
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
29864
29853
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
29865
29854
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -31552,7 +31541,6 @@ new message content.",
|
|
|
31552
31541
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
31553
31542
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
31554
31543
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
31555
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
31556
31544
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
31557
31545
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
31558
31546
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -32265,7 +32253,7 @@ exports[`Creatives rcs test/> template name change 1`] = `
|
|
|
32265
32253
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
32266
32254
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
32267
32255
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
32268
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
32256
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
32269
32257
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
32270
32258
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
32271
32259
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -32273,13 +32261,13 @@ exports[`Creatives rcs test/> template name change 1`] = `
|
|
|
32273
32261
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
32274
32262
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
32275
32263
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
32276
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
32264
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
32277
32265
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
32278
32266
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
32279
32267
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
32280
32268
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
32281
32269
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
32282
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
32270
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
32283
32271
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
32284
32272
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
32285
32273
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -33972,7 +33960,6 @@ new message content.",
|
|
|
33972
33960
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
33973
33961
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
33974
33962
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
33975
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
33976
33963
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
33977
33964
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
33978
33965
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -34358,7 +34345,6 @@ new message content.",
|
|
|
34358
34345
|
"email": [Function],
|
|
34359
34346
|
"facebookPreview": [Function],
|
|
34360
34347
|
"gallery": [Function],
|
|
34361
|
-
"inApp": [Function],
|
|
34362
34348
|
"language": [Function],
|
|
34363
34349
|
"navigationConfig": [Function],
|
|
34364
34350
|
"previewAndTest": [Function],
|
|
@@ -36438,7 +36424,7 @@ new message content.",
|
|
|
36438
36424
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
36439
36425
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
36440
36426
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
36441
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
36427
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
36442
36428
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
36443
36429
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
36444
36430
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -36446,13 +36432,13 @@ new message content.",
|
|
|
36446
36432
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
36447
36433
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
36448
36434
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
36449
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
36435
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
36450
36436
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
36451
36437
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
36452
36438
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
36453
36439
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
36454
36440
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
36455
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
36441
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
36456
36442
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
36457
36443
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
36458
36444
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -38145,7 +38131,6 @@ new message content.",
|
|
|
38145
38131
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
38146
38132
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
38147
38133
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
38148
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
38149
38134
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
38150
38135
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
38151
38136
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -38697,7 +38682,7 @@ new message content.",
|
|
|
38697
38682
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
38698
38683
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
38699
38684
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
38700
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
38685
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
38701
38686
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
38702
38687
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
38703
38688
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -38705,13 +38690,13 @@ new message content.",
|
|
|
38705
38690
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
38706
38691
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
38707
38692
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
38708
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
38693
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
38709
38694
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
38710
38695
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
38711
38696
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
38712
38697
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
38713
38698
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
38714
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
38699
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
38715
38700
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
38716
38701
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
38717
38702
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -40404,7 +40389,6 @@ new message content.",
|
|
|
40404
40389
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
40405
40390
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
40406
40391
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
40407
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
40408
40392
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
40409
40393
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
40410
40394
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -44093,7 +44077,7 @@ new message content.",
|
|
|
44093
44077
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
44094
44078
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
44095
44079
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
44096
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
44080
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
44097
44081
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
44098
44082
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
44099
44083
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -44101,13 +44085,13 @@ new message content.",
|
|
|
44101
44085
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
44102
44086
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
44103
44087
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
44104
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
44088
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
44105
44089
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
44106
44090
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
44107
44091
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
44108
44092
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
44109
44093
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
44110
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
44094
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
44111
44095
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
44112
44096
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
44113
44097
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -45800,7 +45784,6 @@ new message content.",
|
|
|
45800
45784
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
45801
45785
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
45802
45786
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
45803
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
45804
45787
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
45805
45788
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
45806
45789
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -46405,7 +46388,7 @@ new message content.",
|
|
|
46405
46388
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
46406
46389
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
46407
46390
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
46408
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
46391
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
46409
46392
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
46410
46393
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
46411
46394
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -46413,13 +46396,13 @@ new message content.",
|
|
|
46413
46396
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
46414
46397
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
46415
46398
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
46416
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
46399
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
46417
46400
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
46418
46401
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
46419
46402
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
46420
46403
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
46421
46404
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
46422
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
46405
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
46423
46406
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
46424
46407
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
46425
46408
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -48112,7 +48095,6 @@ new message content.",
|
|
|
48112
48095
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
48113
48096
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
48114
48097
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
48115
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
48116
48098
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
48117
48099
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
48118
48100
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -48825,7 +48807,7 @@ exports[`Creatives rcs test/> template name change 2`] = `
|
|
|
48825
48807
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
48826
48808
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
48827
48809
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
48828
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
48810
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
48829
48811
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
48830
48812
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
48831
48813
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -48833,13 +48815,13 @@ exports[`Creatives rcs test/> template name change 2`] = `
|
|
|
48833
48815
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
48834
48816
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
48835
48817
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
48836
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
48818
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
48837
48819
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
48838
48820
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
48839
48821
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
48840
48822
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
48841
48823
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
48842
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
48824
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
48843
48825
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
48844
48826
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
48845
48827
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -50532,7 +50514,6 @@ new message content.",
|
|
|
50532
50514
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
50533
50515
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
50534
50516
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
50535
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
50536
50517
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
50537
50518
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
50538
50519
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -50918,7 +50899,6 @@ new message content.",
|
|
|
50918
50899
|
"email": [Function],
|
|
50919
50900
|
"facebookPreview": [Function],
|
|
50920
50901
|
"gallery": [Function],
|
|
50921
|
-
"inApp": [Function],
|
|
50922
50902
|
"language": [Function],
|
|
50923
50903
|
"navigationConfig": [Function],
|
|
50924
50904
|
"previewAndTest": [Function],
|
|
@@ -53178,7 +53158,7 @@ new message content.",
|
|
|
53178
53158
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
53179
53159
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
53180
53160
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
53181
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
53161
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
53182
53162
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
53183
53163
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
53184
53164
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -53186,13 +53166,13 @@ new message content.",
|
|
|
53186
53166
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
53187
53167
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
53188
53168
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
53189
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
53169
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
53190
53170
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
53191
53171
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
53192
53172
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
53193
53173
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
53194
53174
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
53195
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
53175
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
53196
53176
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
53197
53177
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
53198
53178
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -54885,7 +54865,6 @@ new message content.",
|
|
|
54885
54865
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
54886
54866
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
54887
54867
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
54888
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
54889
54868
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
54890
54869
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
54891
54870
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -55437,7 +55416,7 @@ new message content.",
|
|
|
55437
55416
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
55438
55417
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
55439
55418
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
55440
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
55419
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
55441
55420
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
55442
55421
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
55443
55422
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -55445,13 +55424,13 @@ new message content.",
|
|
|
55445
55424
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
55446
55425
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
55447
55426
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
55448
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
55427
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
55449
55428
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
55450
55429
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
55451
55430
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
55452
55431
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
55453
55432
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
55454
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
55433
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
55455
55434
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
55456
55435
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
55457
55436
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -57144,7 +57123,6 @@ new message content.",
|
|
|
57144
57123
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
57145
57124
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
57146
57125
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
57147
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
57148
57126
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
57149
57127
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
57150
57128
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -61201,7 +61179,7 @@ new message content.",
|
|
|
61201
61179
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
61202
61180
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
61203
61181
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
61204
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
61182
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
61205
61183
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
61206
61184
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
61207
61185
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -61209,13 +61187,13 @@ new message content.",
|
|
|
61209
61187
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
61210
61188
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
61211
61189
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
61212
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
61190
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
61213
61191
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
61214
61192
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
61215
61193
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
61216
61194
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
61217
61195
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
61218
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
61196
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
61219
61197
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
61220
61198
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
61221
61199
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -62908,7 +62886,6 @@ new message content.",
|
|
|
62908
62886
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
62909
62887
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
62910
62888
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
62911
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
62912
62889
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
62913
62890
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
62914
62891
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -63513,7 +63490,7 @@ new message content.",
|
|
|
63513
63490
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
63514
63491
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
63515
63492
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
63516
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
63493
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
63517
63494
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
63518
63495
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
63519
63496
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -63521,13 +63498,13 @@ new message content.",
|
|
|
63521
63498
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
63522
63499
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
63523
63500
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
63524
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
63501
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
63525
63502
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
63526
63503
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
63527
63504
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
63528
63505
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
63529
63506
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
63530
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
63507
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
63531
63508
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
63532
63509
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
63533
63510
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -65220,7 +65197,6 @@ new message content.",
|
|
|
65220
65197
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
65221
65198
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
65222
65199
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
65223
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
65224
65200
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
65225
65201
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
65226
65202
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -65933,7 +65909,7 @@ exports[`Creatives rcs test/> template title change 1`] = `
|
|
|
65933
65909
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
65934
65910
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
65935
65911
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
65936
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
65912
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
65937
65913
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
65938
65914
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
65939
65915
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -65941,13 +65917,13 @@ exports[`Creatives rcs test/> template title change 1`] = `
|
|
|
65941
65917
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
65942
65918
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
65943
65919
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
65944
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
65920
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
65945
65921
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
65946
65922
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
65947
65923
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
65948
65924
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
65949
65925
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
65950
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
65926
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
65951
65927
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
65952
65928
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
65953
65929
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -67640,7 +67616,6 @@ new message content.",
|
|
|
67640
67616
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
67641
67617
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
67642
67618
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
67643
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
67644
67619
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
67645
67620
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
67646
67621
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -68026,7 +68001,6 @@ new message content.",
|
|
|
68026
68001
|
"email": [Function],
|
|
68027
68002
|
"facebookPreview": [Function],
|
|
68028
68003
|
"gallery": [Function],
|
|
68029
|
-
"inApp": [Function],
|
|
68030
68004
|
"language": [Function],
|
|
68031
68005
|
"navigationConfig": [Function],
|
|
68032
68006
|
"previewAndTest": [Function],
|
|
@@ -69932,7 +69906,7 @@ new message content.",
|
|
|
69932
69906
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
69933
69907
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
69934
69908
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
69935
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
69909
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
69936
69910
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
69937
69911
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
69938
69912
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -69940,13 +69914,13 @@ new message content.",
|
|
|
69940
69914
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
69941
69915
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
69942
69916
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
69943
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
69917
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
69944
69918
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
69945
69919
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
69946
69920
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
69947
69921
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
69948
69922
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
69949
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
69923
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
69950
69924
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
69951
69925
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
69952
69926
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -71639,7 +71613,6 @@ new message content.",
|
|
|
71639
71613
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
71640
71614
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
71641
71615
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
71642
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
71643
71616
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
71644
71617
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
71645
71618
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -72191,7 +72164,7 @@ new message content.",
|
|
|
72191
72164
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
72192
72165
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
72193
72166
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
72194
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
72167
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
72195
72168
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
72196
72169
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
72197
72170
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -72199,13 +72172,13 @@ new message content.",
|
|
|
72199
72172
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
72200
72173
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
72201
72174
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
72202
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
72175
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
72203
72176
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
72204
72177
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
72205
72178
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
72206
72179
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
72207
72180
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
72208
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
72181
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
72209
72182
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
72210
72183
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
72211
72184
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -73898,7 +73871,6 @@ new message content.",
|
|
|
73898
73871
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
73899
73872
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
73900
73873
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
73901
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
73902
73874
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
73903
73875
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
73904
73876
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -77239,7 +77211,7 @@ new message content.",
|
|
|
77239
77211
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
77240
77212
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
77241
77213
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
77242
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
77214
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
77243
77215
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
77244
77216
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
77245
77217
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -77247,13 +77219,13 @@ new message content.",
|
|
|
77247
77219
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
77248
77220
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
77249
77221
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
77250
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
77222
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
77251
77223
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
77252
77224
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
77253
77225
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
77254
77226
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
77255
77227
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
77256
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
77228
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
77257
77229
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
77258
77230
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
77259
77231
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -78946,7 +78918,6 @@ new message content.",
|
|
|
78946
78918
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
78947
78919
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
78948
78920
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
78949
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
78950
78921
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
78951
78922
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
78952
78923
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -79551,7 +79522,7 @@ new message content.",
|
|
|
79551
79522
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
79552
79523
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
79553
79524
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
79554
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
79525
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
79555
79526
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
79556
79527
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
79557
79528
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -79559,13 +79530,13 @@ new message content.",
|
|
|
79559
79530
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
79560
79531
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
79561
79532
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
79562
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
79533
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
79563
79534
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
79564
79535
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
79565
79536
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
79566
79537
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
79567
79538
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
79568
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
79539
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
79569
79540
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
79570
79541
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
79571
79542
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -81258,7 +81229,6 @@ new message content.",
|
|
|
81258
81229
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
81259
81230
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
81260
81231
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
81261
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
81262
81232
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
81263
81233
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
81264
81234
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -81971,7 +81941,7 @@ exports[`Creatives rcs test/> template title change 2`] = `
|
|
|
81971
81941
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
81972
81942
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
81973
81943
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
81974
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
81944
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
81975
81945
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
81976
81946
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
81977
81947
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -81979,13 +81949,13 @@ exports[`Creatives rcs test/> template title change 2`] = `
|
|
|
81979
81949
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
81980
81950
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
81981
81951
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
81982
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
81952
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
81983
81953
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
81984
81954
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
81985
81955
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
81986
81956
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
81987
81957
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
81988
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
81958
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
81989
81959
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
81990
81960
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
81991
81961
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -83678,7 +83648,6 @@ new message content.",
|
|
|
83678
83648
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
83679
83649
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
83680
83650
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
83681
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
83682
83651
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
83683
83652
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
83684
83653
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -84064,7 +84033,6 @@ new message content.",
|
|
|
84064
84033
|
"email": [Function],
|
|
84065
84034
|
"facebookPreview": [Function],
|
|
84066
84035
|
"gallery": [Function],
|
|
84067
|
-
"inApp": [Function],
|
|
84068
84036
|
"language": [Function],
|
|
84069
84037
|
"navigationConfig": [Function],
|
|
84070
84038
|
"previewAndTest": [Function],
|
|
@@ -87691,7 +87659,7 @@ new message content.",
|
|
|
87691
87659
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
87692
87660
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
87693
87661
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
87694
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
87662
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
87695
87663
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
87696
87664
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
87697
87665
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -87699,13 +87667,13 @@ new message content.",
|
|
|
87699
87667
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
87700
87668
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
87701
87669
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
87702
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
87670
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
87703
87671
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
87704
87672
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
87705
87673
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
87706
87674
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
87707
87675
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
87708
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
87676
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
87709
87677
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
87710
87678
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
87711
87679
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -89398,7 +89366,6 @@ new message content.",
|
|
|
89398
89366
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
89399
89367
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
89400
89368
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
89401
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
89402
89369
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
89403
89370
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
89404
89371
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -89950,7 +89917,7 @@ new message content.",
|
|
|
89950
89917
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
89951
89918
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
89952
89919
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
89953
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
89920
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
89954
89921
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
89955
89922
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
89956
89923
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -89958,13 +89925,13 @@ new message content.",
|
|
|
89958
89925
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
89959
89926
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
89960
89927
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
89961
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
89928
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
89962
89929
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
89963
89930
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
89964
89931
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
89965
89932
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
89966
89933
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
89967
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
89934
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
89968
89935
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
89969
89936
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
89970
89937
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -91657,7 +91624,6 @@ new message content.",
|
|
|
91657
91624
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
91658
91625
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
91659
91626
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
91660
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
91661
91627
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
91662
91628
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
91663
91629
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -96586,7 +96552,7 @@ new message content.",
|
|
|
96586
96552
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
96587
96553
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
96588
96554
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
96589
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
96555
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
96590
96556
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
96591
96557
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
96592
96558
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -96594,13 +96560,13 @@ new message content.",
|
|
|
96594
96560
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
96595
96561
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
96596
96562
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
96597
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
96563
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
96598
96564
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
96599
96565
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
96600
96566
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
96601
96567
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
96602
96568
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
96603
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
96569
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
96604
96570
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
96605
96571
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
96606
96572
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -98293,7 +98259,6 @@ new message content.",
|
|
|
98293
98259
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
98294
98260
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
98295
98261
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
98296
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
98297
98262
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
98298
98263
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
98299
98264
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -98898,7 +98863,7 @@ new message content.",
|
|
|
98898
98863
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
98899
98864
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
98900
98865
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
98901
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
98866
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
98902
98867
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
98903
98868
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
98904
98869
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -98906,13 +98871,13 @@ new message content.",
|
|
|
98906
98871
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
98907
98872
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
98908
98873
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
98909
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
98874
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
98910
98875
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
98911
98876
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
98912
98877
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
98913
98878
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
98914
98879
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
98915
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
98880
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
98916
98881
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
98917
98882
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
98918
98883
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -100605,7 +100570,6 @@ new message content.",
|
|
|
100605
100570
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
100606
100571
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
100607
100572
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
100608
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
100609
100573
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
100610
100574
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
100611
100575
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -101318,7 +101282,7 @@ exports[`Creatives rcs test/> template title change 3`] = `
|
|
|
101318
101282
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
101319
101283
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
101320
101284
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
101321
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
101285
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
101322
101286
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
101323
101287
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
101324
101288
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -101326,13 +101290,13 @@ exports[`Creatives rcs test/> template title change 3`] = `
|
|
|
101326
101290
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
101327
101291
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
101328
101292
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
101329
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
101293
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
101330
101294
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
101331
101295
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
101332
101296
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
101333
101297
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
101334
101298
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
101335
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
101299
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
101336
101300
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
101337
101301
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
101338
101302
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -103025,7 +102989,6 @@ new message content.",
|
|
|
103025
102989
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
103026
102990
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
103027
102991
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
103028
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
103029
102992
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
103030
102993
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
103031
102994
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -103411,7 +103374,6 @@ new message content.",
|
|
|
103411
103374
|
"email": [Function],
|
|
103412
103375
|
"facebookPreview": [Function],
|
|
103413
103376
|
"gallery": [Function],
|
|
103414
|
-
"inApp": [Function],
|
|
103415
103377
|
"language": [Function],
|
|
103416
103378
|
"navigationConfig": [Function],
|
|
103417
103379
|
"previewAndTest": [Function],
|
|
@@ -107038,7 +107000,7 @@ new message content.",
|
|
|
107038
107000
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
107039
107001
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
107040
107002
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
107041
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
107003
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
107042
107004
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
107043
107005
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
107044
107006
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -107046,13 +107008,13 @@ new message content.",
|
|
|
107046
107008
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
107047
107009
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
107048
107010
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
107049
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
107011
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
107050
107012
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
107051
107013
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
107052
107014
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
107053
107015
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
107054
107016
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
107055
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
107017
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
107056
107018
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
107057
107019
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
107058
107020
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -108745,7 +108707,6 @@ new message content.",
|
|
|
108745
108707
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
108746
108708
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
108747
108709
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
108748
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
108749
108710
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
108750
108711
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
108751
108712
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -109297,7 +109258,7 @@ new message content.",
|
|
|
109297
109258
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
109298
109259
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
109299
109260
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
109300
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
109261
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
109301
109262
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
109302
109263
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
109303
109264
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -109305,13 +109266,13 @@ new message content.",
|
|
|
109305
109266
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
109306
109267
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
109307
109268
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
109308
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
109269
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
109309
109270
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
109310
109271
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
109311
109272
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
109312
109273
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
109313
109274
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
109314
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
109275
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
109315
109276
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
109316
109277
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
109317
109278
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -111004,7 +110965,6 @@ new message content.",
|
|
|
111004
110965
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
111005
110966
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
111006
110967
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
111007
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
111008
110968
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
111009
110969
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
111010
110970
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -115933,7 +115893,7 @@ new message content.",
|
|
|
115933
115893
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
115934
115894
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
115935
115895
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
115936
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
115896
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
115937
115897
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
115938
115898
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
115939
115899
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -115941,13 +115901,13 @@ new message content.",
|
|
|
115941
115901
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
115942
115902
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
115943
115903
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
115944
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
115904
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
115945
115905
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
115946
115906
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
115947
115907
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
115948
115908
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
115949
115909
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
115950
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
115910
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
115951
115911
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
115952
115912
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
115953
115913
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -117640,7 +117600,6 @@ new message content.",
|
|
|
117640
117600
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
117641
117601
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
117642
117602
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
117643
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
117644
117603
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
117645
117604
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
117646
117605
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -118245,7 +118204,7 @@ new message content.",
|
|
|
118245
118204
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
118246
118205
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
118247
118206
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
118248
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
118207
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
118249
118208
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
118250
118209
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
118251
118210
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -118253,13 +118212,13 @@ new message content.",
|
|
|
118253
118212
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
118254
118213
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
118255
118214
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
118256
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
118215
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
118257
118216
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
118258
118217
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
118259
118218
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
118260
118219
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
118261
118220
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
118262
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
118221
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
118263
118222
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
118264
118223
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
118265
118224
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -119952,7 +119911,6 @@ new message content.",
|
|
|
119952
119911
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
119953
119912
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
119954
119913
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
119955
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
119956
119914
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
119957
119915
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
119958
119916
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -120665,7 +120623,7 @@ exports[`Creatives rcs test/> template title change 4`] = `
|
|
|
120665
120623
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
120666
120624
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
120667
120625
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
120668
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
120626
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
120669
120627
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
120670
120628
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
120671
120629
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -120673,13 +120631,13 @@ exports[`Creatives rcs test/> template title change 4`] = `
|
|
|
120673
120631
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
120674
120632
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
120675
120633
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
120676
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
120634
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
120677
120635
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
120678
120636
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
120679
120637
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
120680
120638
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
120681
120639
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
120682
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
120640
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
120683
120641
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
120684
120642
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
120685
120643
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -122372,7 +122330,6 @@ new message content.",
|
|
|
122372
122330
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
122373
122331
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
122374
122332
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
122375
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
122376
122333
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
122377
122334
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
122378
122335
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -122758,7 +122715,6 @@ new message content.",
|
|
|
122758
122715
|
"email": [Function],
|
|
122759
122716
|
"facebookPreview": [Function],
|
|
122760
122717
|
"gallery": [Function],
|
|
122761
|
-
"inApp": [Function],
|
|
122762
122718
|
"language": [Function],
|
|
122763
122719
|
"navigationConfig": [Function],
|
|
122764
122720
|
"previewAndTest": [Function],
|
|
@@ -126020,7 +125976,7 @@ new message content.",
|
|
|
126020
125976
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
126021
125977
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
126022
125978
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
126023
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
125979
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
126024
125980
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
126025
125981
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
126026
125982
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -126028,13 +125984,13 @@ new message content.",
|
|
|
126028
125984
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
126029
125985
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
126030
125986
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
126031
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
125987
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
126032
125988
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
126033
125989
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
126034
125990
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
126035
125991
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
126036
125992
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
126037
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
125993
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
126038
125994
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
126039
125995
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
126040
125996
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -127727,7 +127683,6 @@ new message content.",
|
|
|
127727
127683
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
127728
127684
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
127729
127685
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
127730
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
127731
127686
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
127732
127687
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
127733
127688
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -128279,7 +128234,7 @@ new message content.",
|
|
|
128279
128234
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
128280
128235
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
128281
128236
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
128282
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
128237
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
128283
128238
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
128284
128239
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
128285
128240
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -128287,13 +128242,13 @@ new message content.",
|
|
|
128287
128242
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
128288
128243
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
128289
128244
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
128290
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
128245
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
128291
128246
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
128292
128247
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
128293
128248
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
128294
128249
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
128295
128250
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
128296
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
128251
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
128297
128252
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
128298
128253
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
128299
128254
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -129986,7 +129941,6 @@ new message content.",
|
|
|
129986
129941
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
129987
129942
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
129988
129943
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
129989
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
129990
129944
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
129991
129945
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
129992
129946
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -135955,7 +135909,7 @@ new message content.",
|
|
|
135955
135909
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
135956
135910
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
135957
135911
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
135958
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
135912
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
135959
135913
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
135960
135914
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
135961
135915
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -135963,13 +135917,13 @@ new message content.",
|
|
|
135963
135917
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
135964
135918
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
135965
135919
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
135966
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
135920
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
135967
135921
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
135968
135922
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
135969
135923
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
135970
135924
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
135971
135925
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
135972
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
135926
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
135973
135927
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
135974
135928
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
135975
135929
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -137662,7 +137616,6 @@ new message content.",
|
|
|
137662
137616
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
137663
137617
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
137664
137618
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
137665
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
137666
137619
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
137667
137620
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
137668
137621
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -138267,7 +138220,7 @@ new message content.",
|
|
|
138267
138220
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
138268
138221
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
138269
138222
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
138270
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
138223
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
138271
138224
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
138272
138225
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
138273
138226
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -138275,13 +138228,13 @@ new message content.",
|
|
|
138275
138228
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
138276
138229
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
138277
138230
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
138278
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
138231
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
138279
138232
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
138280
138233
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
138281
138234
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
138282
138235
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
138283
138236
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
138284
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
138237
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
138285
138238
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
138286
138239
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
138287
138240
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -139974,7 +139927,6 @@ new message content.",
|
|
|
139974
139927
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
139975
139928
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
139976
139929
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
139977
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
139978
139930
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
139979
139931
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
139980
139932
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -140687,7 +140639,7 @@ exports[`Creatives rcs test/> template type change 1`] = `
|
|
|
140687
140639
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
140688
140640
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
140689
140641
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
140690
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
140642
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
140691
140643
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
140692
140644
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
140693
140645
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -140695,13 +140647,13 @@ exports[`Creatives rcs test/> template type change 1`] = `
|
|
|
140695
140647
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
140696
140648
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
140697
140649
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
140698
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
140650
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
140699
140651
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
140700
140652
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
140701
140653
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
140702
140654
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
140703
140655
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
140704
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
140656
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
140705
140657
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
140706
140658
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
140707
140659
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -142394,7 +142346,6 @@ new message content.",
|
|
|
142394
142346
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
142395
142347
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
142396
142348
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
142397
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
142398
142349
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
142399
142350
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
142400
142351
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -142780,7 +142731,6 @@ new message content.",
|
|
|
142780
142731
|
"email": [Function],
|
|
142781
142732
|
"facebookPreview": [Function],
|
|
142782
142733
|
"gallery": [Function],
|
|
142783
|
-
"inApp": [Function],
|
|
142784
142734
|
"language": [Function],
|
|
142785
142735
|
"navigationConfig": [Function],
|
|
142786
142736
|
"previewAndTest": [Function],
|
|
@@ -144686,7 +144636,7 @@ new message content.",
|
|
|
144686
144636
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
144687
144637
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
144688
144638
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
144689
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
144639
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
144690
144640
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
144691
144641
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
144692
144642
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -144694,13 +144644,13 @@ new message content.",
|
|
|
144694
144644
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
144695
144645
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
144696
144646
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
144697
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
144647
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
144698
144648
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
144699
144649
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
144700
144650
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
144701
144651
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
144702
144652
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
144703
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
144653
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
144704
144654
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
144705
144655
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
144706
144656
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -146393,7 +146343,6 @@ new message content.",
|
|
|
146393
146343
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
146394
146344
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
146395
146345
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
146396
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
146397
146346
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
146398
146347
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
146399
146348
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -146945,7 +146894,7 @@ new message content.",
|
|
|
146945
146894
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
146946
146895
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
146947
146896
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
146948
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
146897
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
146949
146898
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
146950
146899
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
146951
146900
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -146953,13 +146902,13 @@ new message content.",
|
|
|
146953
146902
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
146954
146903
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
146955
146904
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
146956
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
146905
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
146957
146906
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
146958
146907
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
146959
146908
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
146960
146909
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
146961
146910
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
146962
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
146911
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
146963
146912
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
146964
146913
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
146965
146914
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -148652,7 +148601,6 @@ new message content.",
|
|
|
148652
148601
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
148653
148602
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
148654
148603
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
148655
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
148656
148604
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
148657
148605
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
148658
148606
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -151993,7 +151941,7 @@ new message content.",
|
|
|
151993
151941
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
151994
151942
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
151995
151943
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
151996
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
151944
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
151997
151945
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
151998
151946
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
151999
151947
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -152001,13 +151949,13 @@ new message content.",
|
|
|
152001
151949
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
152002
151950
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
152003
151951
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
152004
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
151952
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
152005
151953
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
152006
151954
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
152007
151955
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
152008
151956
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
152009
151957
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
152010
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
151958
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
152011
151959
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
152012
151960
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
152013
151961
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -153700,7 +153648,6 @@ new message content.",
|
|
|
153700
153648
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
153701
153649
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
153702
153650
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
153703
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
153704
153651
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
153705
153652
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
153706
153653
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -154305,7 +154252,7 @@ new message content.",
|
|
|
154305
154252
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
154306
154253
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
154307
154254
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
154308
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
154255
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
154309
154256
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
154310
154257
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
154311
154258
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -154313,13 +154260,13 @@ new message content.",
|
|
|
154313
154260
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
154314
154261
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
154315
154262
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
154316
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
154263
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
154317
154264
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
154318
154265
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
154319
154266
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
154320
154267
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
154321
154268
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
154322
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
154269
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
154323
154270
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
154324
154271
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
154325
154272
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -156012,7 +155959,6 @@ new message content.",
|
|
|
156012
155959
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
156013
155960
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
156014
155961
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
156015
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
156016
155962
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
156017
155963
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
156018
155964
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -156725,7 +156671,7 @@ exports[`Creatives rcs test/> template type change 2`] = `
|
|
|
156725
156671
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
156726
156672
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
156727
156673
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
156728
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
156674
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
156729
156675
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
156730
156676
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
156731
156677
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -156733,13 +156679,13 @@ exports[`Creatives rcs test/> template type change 2`] = `
|
|
|
156733
156679
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
156734
156680
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
156735
156681
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
156736
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
156682
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
156737
156683
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
156738
156684
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
156739
156685
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
156740
156686
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
156741
156687
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
156742
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
156688
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
156743
156689
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
156744
156690
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
156745
156691
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -158432,7 +158378,6 @@ new message content.",
|
|
|
158432
158378
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
158433
158379
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
158434
158380
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
158435
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
158436
158381
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
158437
158382
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
158438
158383
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -158818,7 +158763,6 @@ new message content.",
|
|
|
158818
158763
|
"email": [Function],
|
|
158819
158764
|
"facebookPreview": [Function],
|
|
158820
158765
|
"gallery": [Function],
|
|
158821
|
-
"inApp": [Function],
|
|
158822
158766
|
"language": [Function],
|
|
158823
158767
|
"navigationConfig": [Function],
|
|
158824
158768
|
"previewAndTest": [Function],
|
|
@@ -160724,7 +160668,7 @@ new message content.",
|
|
|
160724
160668
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
160725
160669
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
160726
160670
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
160727
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
160671
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
160728
160672
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
160729
160673
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
160730
160674
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -160732,13 +160676,13 @@ new message content.",
|
|
|
160732
160676
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
160733
160677
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
160734
160678
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
160735
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
160679
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
160736
160680
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
160737
160681
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
160738
160682
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
160739
160683
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
160740
160684
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
160741
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
160685
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
160742
160686
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
160743
160687
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
160744
160688
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -162431,7 +162375,6 @@ new message content.",
|
|
|
162431
162375
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
162432
162376
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
162433
162377
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
162434
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
162435
162378
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
162436
162379
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
162437
162380
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -162983,7 +162926,7 @@ new message content.",
|
|
|
162983
162926
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
162984
162927
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
162985
162928
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
162986
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
162929
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
162987
162930
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
162988
162931
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
162989
162932
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -162991,13 +162934,13 @@ new message content.",
|
|
|
162991
162934
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
162992
162935
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
162993
162936
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
162994
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
162937
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
162995
162938
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
162996
162939
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
162997
162940
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
162998
162941
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
162999
162942
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
163000
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
162943
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
163001
162944
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
163002
162945
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
163003
162946
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -164690,7 +164633,6 @@ new message content.",
|
|
|
164690
164633
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
164691
164634
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
164692
164635
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
164693
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
164694
164636
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
164695
164637
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
164696
164638
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -168031,7 +167973,7 @@ new message content.",
|
|
|
168031
167973
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
168032
167974
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
168033
167975
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
168034
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
167976
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
168035
167977
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
168036
167978
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
168037
167979
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -168039,13 +167981,13 @@ new message content.",
|
|
|
168039
167981
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
168040
167982
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
168041
167983
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
168042
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
167984
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
168043
167985
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
168044
167986
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
168045
167987
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
168046
167988
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
168047
167989
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
168048
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
167990
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
168049
167991
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
168050
167992
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
168051
167993
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -169738,7 +169680,6 @@ new message content.",
|
|
|
169738
169680
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
169739
169681
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
169740
169682
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
169741
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
169742
169683
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
169743
169684
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
169744
169685
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -170343,7 +170284,7 @@ new message content.",
|
|
|
170343
170284
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
170344
170285
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
170345
170286
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
170346
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
170287
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
170347
170288
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
170348
170289
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
170349
170290
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -170351,13 +170292,13 @@ new message content.",
|
|
|
170351
170292
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
170352
170293
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
170353
170294
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
170354
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
170295
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
170355
170296
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
170356
170297
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
170357
170298
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
170358
170299
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
170359
170300
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
170360
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
170301
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
170361
170302
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
170362
170303
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
170363
170304
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -172050,7 +171991,6 @@ new message content.",
|
|
|
172050
171991
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
172051
171992
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
172052
171993
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
172053
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
172054
171994
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
172055
171995
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
172056
171996
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -172763,7 +172703,7 @@ exports[`Creatives rcs test/> template type change 3`] = `
|
|
|
172763
172703
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
172764
172704
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
172765
172705
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
172766
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
172706
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
172767
172707
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
172768
172708
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
172769
172709
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -172771,13 +172711,13 @@ exports[`Creatives rcs test/> template type change 3`] = `
|
|
|
172771
172711
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
172772
172712
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
172773
172713
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
172774
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
172714
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
172775
172715
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
172776
172716
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
172777
172717
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
172778
172718
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
172779
172719
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
172780
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
172720
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
172781
172721
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
172782
172722
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
172783
172723
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -174470,7 +174410,6 @@ new message content.",
|
|
|
174470
174410
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
174471
174411
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
174472
174412
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
174473
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
174474
174413
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
174475
174414
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
174476
174415
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -174856,7 +174795,6 @@ new message content.",
|
|
|
174856
174795
|
"email": [Function],
|
|
174857
174796
|
"facebookPreview": [Function],
|
|
174858
174797
|
"gallery": [Function],
|
|
174859
|
-
"inApp": [Function],
|
|
174860
174798
|
"language": [Function],
|
|
174861
174799
|
"navigationConfig": [Function],
|
|
174862
174800
|
"previewAndTest": [Function],
|
|
@@ -176762,7 +176700,7 @@ new message content.",
|
|
|
176762
176700
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
176763
176701
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
176764
176702
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
176765
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
176703
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
176766
176704
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
176767
176705
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
176768
176706
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -176770,13 +176708,13 @@ new message content.",
|
|
|
176770
176708
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
176771
176709
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
176772
176710
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
176773
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
176711
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
176774
176712
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
176775
176713
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
176776
176714
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
176777
176715
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
176778
176716
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
176779
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
176717
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
176780
176718
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
176781
176719
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
176782
176720
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -178469,7 +178407,6 @@ new message content.",
|
|
|
178469
178407
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
178470
178408
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
178471
178409
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
178472
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
178473
178410
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
178474
178411
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
178475
178412
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -179021,7 +178958,7 @@ new message content.",
|
|
|
179021
178958
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
179022
178959
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
179023
178960
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
179024
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
178961
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
179025
178962
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
179026
178963
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
179027
178964
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -179029,13 +178966,13 @@ new message content.",
|
|
|
179029
178966
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
179030
178967
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
179031
178968
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
179032
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
178969
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
179033
178970
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
179034
178971
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
179035
178972
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
179036
178973
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
179037
178974
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
179038
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
178975
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
179039
178976
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
179040
178977
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
179041
178978
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -180728,7 +180665,6 @@ new message content.",
|
|
|
180728
180665
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
180729
180666
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
180730
180667
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
180731
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
180732
180668
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
180733
180669
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
180734
180670
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -184069,7 +184005,7 @@ new message content.",
|
|
|
184069
184005
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
184070
184006
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
184071
184007
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
184072
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
184008
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
184073
184009
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
184074
184010
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
184075
184011
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -184077,13 +184013,13 @@ new message content.",
|
|
|
184077
184013
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
184078
184014
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
184079
184015
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
184080
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
184016
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
184081
184017
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
184082
184018
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
184083
184019
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
184084
184020
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
184085
184021
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
184086
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
184022
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
184087
184023
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
184088
184024
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
184089
184025
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -185776,7 +185712,6 @@ new message content.",
|
|
|
185776
185712
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
185777
185713
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
185778
185714
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
185779
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
185780
185715
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
185781
185716
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
185782
185717
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -186381,7 +186316,7 @@ new message content.",
|
|
|
186381
186316
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
186382
186317
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
186383
186318
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
186384
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
186319
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
186385
186320
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
186386
186321
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
186387
186322
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -186389,13 +186324,13 @@ new message content.",
|
|
|
186389
186324
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
186390
186325
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
186391
186326
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
186392
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
186327
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
186393
186328
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
186394
186329
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
186395
186330
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
186396
186331
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
186397
186332
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
186398
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
186333
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
186399
186334
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
186400
186335
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
186401
186336
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -188088,7 +188023,6 @@ new message content.",
|
|
|
188088
188023
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
188089
188024
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
188090
188025
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
188091
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
188092
188026
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
188093
188027
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
188094
188028
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -188801,7 +188735,7 @@ exports[`Creatives rcs test/> template type change 4`] = `
|
|
|
188801
188735
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
188802
188736
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
188803
188737
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
188804
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
188738
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
188805
188739
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
188806
188740
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
188807
188741
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -188809,13 +188743,13 @@ exports[`Creatives rcs test/> template type change 4`] = `
|
|
|
188809
188743
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
188810
188744
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
188811
188745
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
188812
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
188746
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
188813
188747
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
188814
188748
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
188815
188749
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
188816
188750
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
188817
188751
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
188818
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
188752
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
188819
188753
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
188820
188754
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
188821
188755
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -190508,7 +190442,6 @@ new message content.",
|
|
|
190508
190442
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
190509
190443
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
190510
190444
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
190511
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
190512
190445
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
190513
190446
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
190514
190447
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -190894,7 +190827,6 @@ new message content.",
|
|
|
190894
190827
|
"email": [Function],
|
|
190895
190828
|
"facebookPreview": [Function],
|
|
190896
190829
|
"gallery": [Function],
|
|
190897
|
-
"inApp": [Function],
|
|
190898
190830
|
"language": [Function],
|
|
190899
190831
|
"navigationConfig": [Function],
|
|
190900
190832
|
"previewAndTest": [Function],
|
|
@@ -196605,7 +196537,7 @@ new message content.",
|
|
|
196605
196537
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
196606
196538
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
196607
196539
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
196608
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
196540
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
196609
196541
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
196610
196542
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
196611
196543
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -196613,13 +196545,13 @@ new message content.",
|
|
|
196613
196545
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
196614
196546
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
196615
196547
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
196616
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
196548
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
196617
196549
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
196618
196550
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
196619
196551
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
196620
196552
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
196621
196553
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
196622
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
196554
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
196623
196555
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
196624
196556
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
196625
196557
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -198312,7 +198244,6 @@ new message content.",
|
|
|
198312
198244
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
198313
198245
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
198314
198246
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
198315
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
198316
198247
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
198317
198248
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
198318
198249
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -198906,7 +198837,7 @@ new message content.",
|
|
|
198906
198837
|
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
198907
198838
|
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
198908
198839
|
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
198909
|
-
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size
|
|
198840
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
198910
198841
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
198911
198842
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
198912
198843
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
@@ -198914,13 +198845,13 @@ new message content.",
|
|
|
198914
198845
|
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
198915
198846
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
198916
198847
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
198917
|
-
"creatives.componentsV2.CapImageUpload.imageSize": "Size
|
|
198848
|
+
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
198918
198849
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
198919
198850
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
198920
198851
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
198921
198852
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
198922
198853
|
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
198923
|
-
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size
|
|
198854
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
198924
198855
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
198925
198856
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
198926
198857
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -200613,7 +200544,6 @@ new message content.",
|
|
|
200613
200544
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
200614
200545
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
200615
200546
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
200616
|
-
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
200617
200547
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
200618
200548
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
200619
200549
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|