@capillarytech/creatives-library 8.0.241 → 8.0.242-alpha.0
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/package.json +1 -1
- package/sagas/__tests__/assetPolling.test.js +607 -0
- package/sagas/assetPolling.js +156 -0
- package/services/api.js +16 -0
- package/services/tests/api.test.js +124 -0
- package/translations/en.json +1 -0
- package/utils/assetStatusConstants.js +12 -0
- package/utils/asyncAssetUpload.js +161 -0
- package/utils/tests/asyncAssetUpload.test.js +292 -0
- package/utils/transformerUtils.js +42 -0
- package/v2Components/CapImageUpload/constants.js +2 -0
- package/v2Components/CapImageUpload/index.js +54 -14
- package/v2Components/CapImageUpload/index.scss +4 -1
- package/v2Components/CapImageUpload/messages.js +4 -0
- package/v2Components/CapImageUrlUpload/constants.js +19 -0
- package/v2Components/CapImageUrlUpload/index.js +455 -0
- package/v2Components/CapImageUrlUpload/index.scss +35 -0
- package/v2Components/CapImageUrlUpload/messages.js +47 -0
- package/v2Containers/App/constants.js +5 -0
- package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +1 -0
- package/v2Containers/CreativesContainer/SlideBoxContent.js +57 -2
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +1 -0
- package/v2Containers/CreativesContainer/constants.js +2 -0
- package/v2Containers/CreativesContainer/index.js +152 -0
- package/v2Containers/CreativesContainer/messages.js +4 -0
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +3 -0
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +2 -0
- package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +25 -0
- package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +18 -0
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +46 -0
- package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +4 -0
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +8 -0
- package/v2Containers/Templates/ChannelTypeIllustration.js +13 -1
- package/v2Containers/Templates/_templates.scss +203 -0
- package/v2Containers/Templates/actions.js +2 -1
- package/v2Containers/Templates/constants.js +1 -0
- package/v2Containers/Templates/index.js +273 -30
- package/v2Containers/Templates/messages.js +24 -0
- package/v2Containers/Templates/reducer.js +2 -0
- package/v2Containers/Templates/tests/index.test.js +10 -0
- package/v2Containers/TemplatesV2/index.js +3 -2
- package/v2Containers/TemplatesV2/messages.js +4 -0
- package/v2Containers/WebPush/Create/components/ButtonForm.js +175 -0
- package/v2Containers/WebPush/Create/components/ButtonItem.js +101 -0
- package/v2Containers/WebPush/Create/components/ButtonList.js +144 -0
- package/v2Containers/WebPush/Create/components/_buttons.scss +246 -0
- package/v2Containers/WebPush/Create/components/tests/ButtonForm.test.js +554 -0
- package/v2Containers/WebPush/Create/components/tests/ButtonItem.test.js +607 -0
- package/v2Containers/WebPush/Create/components/tests/ButtonList.test.js +633 -0
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonForm.test.js.snap +666 -0
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonItem.test.js.snap +74 -0
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonList.test.js.snap +80 -0
- package/v2Containers/WebPush/Create/index.js +1755 -0
- package/v2Containers/WebPush/Create/index.scss +123 -0
- package/v2Containers/WebPush/Create/messages.js +199 -0
- package/v2Containers/WebPush/Create/preview/DevicePreviewContent.js +241 -0
- package/v2Containers/WebPush/Create/preview/NotificationContainer.js +290 -0
- package/v2Containers/WebPush/Create/preview/PreviewContent.js +81 -0
- package/v2Containers/WebPush/Create/preview/PreviewControls.js +240 -0
- package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +23 -0
- package/v2Containers/WebPush/Create/preview/WebPushPreview.js +144 -0
- package/v2Containers/WebPush/Create/preview/assets/Light.svg +53 -0
- package/v2Containers/WebPush/Create/preview/assets/Top.svg +5 -0
- package/v2Containers/WebPush/Create/preview/assets/chrome-icon.png +0 -0
- package/v2Containers/WebPush/Create/preview/assets/edge-icon.png +0 -0
- package/v2Containers/WebPush/Create/preview/assets/firefox-icon.svg +106 -0
- package/v2Containers/WebPush/Create/preview/assets/iOS.svg +26 -0
- package/v2Containers/WebPush/Create/preview/assets/opera-icon.svg +18 -0
- package/v2Containers/WebPush/Create/preview/assets/safari-icon.svg +29 -0
- package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +44 -0
- package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +110 -0
- package/v2Containers/WebPush/Create/preview/components/IOSHeader.js +45 -0
- package/v2Containers/WebPush/Create/preview/components/NotificationExpandedContent.js +72 -0
- package/v2Containers/WebPush/Create/preview/components/NotificationHeader.js +55 -0
- package/v2Containers/WebPush/Create/preview/components/WindowsChromeExpanded.js +70 -0
- package/v2Containers/WebPush/Create/preview/components/tests/AndroidMobileExpanded.test.js +512 -0
- package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +77 -0
- package/v2Containers/WebPush/Create/preview/config/notificationMappings.js +527 -0
- package/v2Containers/WebPush/Create/preview/constants.js +162 -0
- package/v2Containers/WebPush/Create/preview/notification-container.scss +104 -0
- package/v2Containers/WebPush/Create/preview/preview.scss +409 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-chrome.scss +300 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-edge.scss +12 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-firefox.scss +12 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-opera.scss +12 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-chrome.scss +303 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-edge.scss +11 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-firefox.scss +11 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-opera.scss +11 -0
- package/v2Containers/WebPush/Create/preview/styles/_base.scss +188 -0
- package/v2Containers/WebPush/Create/preview/styles/_ios.scss +106 -0
- package/v2Containers/WebPush/Create/preview/styles/_ipados.scss +107 -0
- package/v2Containers/WebPush/Create/preview/styles/_macos-chrome.scss +75 -0
- package/v2Containers/WebPush/Create/preview/styles/_windows-chrome.scss +174 -0
- package/v2Containers/WebPush/Create/preview/tests/DevicePreviewContent.test.js +909 -0
- package/v2Containers/WebPush/Create/preview/tests/NotificationContainer.test.js +1077 -0
- package/v2Containers/WebPush/Create/preview/tests/PreviewControls.test.js +723 -0
- package/v2Containers/WebPush/Create/preview/tests/WebPushPreview.test.js +943 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/DevicePreviewContent.test.js.snap +128 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/NotificationContainer.test.js.snap +121 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/PreviewControls.test.js.snap +144 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/WebPushPreview.test.js.snap +127 -0
- package/v2Containers/WebPush/Create/utils/urlValidation.js +116 -0
- package/v2Containers/WebPush/Create/utils/urlValidation.test.js +449 -0
- package/v2Containers/WebPush/actions.js +60 -0
- package/v2Containers/WebPush/constants.js +108 -0
- package/v2Containers/WebPush/index.js +2 -0
- package/v2Containers/WebPush/reducer.js +104 -0
- package/v2Containers/WebPush/sagas.js +119 -0
- package/v2Containers/WebPush/selectors.js +65 -0
- package/v2Containers/WebPush/tests/reducer.test.js +863 -0
- package/v2Containers/WebPush/tests/sagas.test.js +566 -0
- package/v2Containers/WebPush/tests/selectors.test.js +960 -0
- package/v2Containers/Whatsapp/constants.js +9 -0
- package/v2Containers/Whatsapp/reducer.js +34 -5
- package/v2Containers/Whatsapp/sagas.js +61 -10
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +132 -0
- package/v2Containers/Whatsapp/tests/reducer.test.js +188 -0
- package/v2Containers/Whatsapp/tests/saga.test.js +420 -7
|
@@ -1896,6 +1896,7 @@ new message content.",
|
|
|
1896
1896
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
1897
1897
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
1898
1898
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
1899
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
1899
1900
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
1900
1901
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
1901
1902
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -8216,6 +8217,7 @@ new message content.",
|
|
|
8216
8217
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
8217
8218
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
8218
8219
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
8220
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
8219
8221
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
8220
8222
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
8221
8223
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -10914,6 +10916,7 @@ new message content.",
|
|
|
10914
10916
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
10915
10917
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
10916
10918
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
10919
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
10917
10920
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
10918
10921
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
10919
10922
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -17418,6 +17421,7 @@ new message content.",
|
|
|
17418
17421
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
17419
17422
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
17420
17423
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
17424
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
17421
17425
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
17422
17426
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
17423
17427
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -20116,6 +20120,7 @@ new message content.",
|
|
|
20116
20120
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
20117
20121
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
20118
20122
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
20123
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
20119
20124
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
20120
20125
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
20121
20126
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -26862,6 +26867,7 @@ new message content.",
|
|
|
26862
26867
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
26863
26868
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
26864
26869
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
26870
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
26865
26871
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
26866
26872
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
26867
26873
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -29595,6 +29601,7 @@ new message content.",
|
|
|
29595
29601
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
29596
29602
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
29597
29603
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
29604
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
29598
29605
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
29599
29606
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
29600
29607
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -38562,6 +38569,7 @@ new message content.",
|
|
|
38562
38569
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
38563
38570
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
38564
38571
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
38572
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
38565
38573
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
38566
38574
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
38567
38575
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -41295,6 +41303,7 @@ new message content.",
|
|
|
41295
41303
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
41296
41304
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
41297
41305
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
41306
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
41298
41307
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
41299
41308
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
41300
41309
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -50304,6 +50313,7 @@ new message content.",
|
|
|
50304
50313
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
50305
50314
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
50306
50315
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
50316
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
50307
50317
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
50308
50318
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
50309
50319
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -53037,6 +53047,7 @@ new message content.",
|
|
|
53037
53047
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
53038
53048
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
53039
53049
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
53050
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
53040
53051
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
53041
53052
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
53042
53053
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -57426,6 +57437,7 @@ new message content.",
|
|
|
57426
57437
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
57427
57438
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
57428
57439
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
57440
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
57429
57441
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
57430
57442
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
57431
57443
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -60829,6 +60841,7 @@ new message content.",
|
|
|
60829
60841
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
60830
60842
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
60831
60843
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
60844
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
60832
60845
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
60833
60846
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
60834
60847
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -65636,6 +65649,7 @@ new message content.",
|
|
|
65636
65649
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
65637
65650
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
65638
65651
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
65652
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
65639
65653
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
65640
65654
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
65641
65655
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -69039,6 +69053,7 @@ new message content.",
|
|
|
69039
69053
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
69040
69054
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
69041
69055
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
69056
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
69042
69057
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
69043
69058
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
69044
69059
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -74088,6 +74103,7 @@ new message content.",
|
|
|
74088
74103
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
74089
74104
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
74090
74105
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
74106
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
74091
74107
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
74092
74108
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
74093
74109
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -77526,6 +77542,7 @@ new message content.",
|
|
|
77526
77542
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
77527
77543
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
77528
77544
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
77545
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
77529
77546
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
77530
77547
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
77531
77548
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -82695,6 +82712,7 @@ new message content.",
|
|
|
82695
82712
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
82696
82713
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
82697
82714
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
82715
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
82698
82716
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
82699
82717
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
82700
82718
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -1896,6 +1896,7 @@ new message content.",
|
|
|
1896
1896
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
1897
1897
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
1898
1898
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
1899
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
1899
1900
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
1900
1901
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
1901
1902
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -5831,6 +5832,7 @@ new message content.",
|
|
|
5831
5832
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
5832
5833
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
5833
5834
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
5835
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
5834
5836
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
5835
5837
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
5836
5838
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -8089,6 +8091,7 @@ new message content.",
|
|
|
8089
8091
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
8090
8092
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
8091
8093
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
8094
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
8092
8095
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
8093
8096
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
8094
8097
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -11312,6 +11315,7 @@ new message content.",
|
|
|
11312
11315
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
11313
11316
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
11314
11317
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
11318
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
11315
11319
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
11316
11320
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
11317
11321
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -13720,6 +13724,7 @@ new message content.",
|
|
|
13720
13724
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
13721
13725
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
13722
13726
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
13727
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
13723
13728
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
13724
13729
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
13725
13730
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -17655,6 +17660,7 @@ new message content.",
|
|
|
17655
17660
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
17656
17661
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
17657
17662
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
17663
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
17658
17664
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
17659
17665
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
17660
17666
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -19913,6 +19919,7 @@ new message content.",
|
|
|
19913
19919
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
19914
19920
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
19915
19921
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
19922
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
19916
19923
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
19917
19924
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
19918
19925
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -23136,6 +23143,7 @@ new message content.",
|
|
|
23136
23143
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
23137
23144
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
23138
23145
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
23146
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
23139
23147
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
23140
23148
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
23141
23149
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -25544,6 +25552,7 @@ new message content.",
|
|
|
25544
25552
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
25545
25553
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
25546
25554
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
25555
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
25547
25556
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
25548
25557
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
25549
25558
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -29633,6 +29642,7 @@ new message content.",
|
|
|
29633
29642
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
29634
29643
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
29635
29644
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
29645
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
29636
29646
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
29637
29647
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
29638
29648
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -31891,6 +31901,7 @@ new message content.",
|
|
|
31891
31901
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
31892
31902
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
31893
31903
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
31904
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
31894
31905
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
31895
31906
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
31896
31907
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -35114,6 +35125,7 @@ new message content.",
|
|
|
35114
35125
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
35115
35126
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
35116
35127
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
35128
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
35117
35129
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
35118
35130
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
35119
35131
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -37522,6 +37534,7 @@ new message content.",
|
|
|
37522
37534
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
37523
37535
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
37524
37536
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
37537
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
37525
37538
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
37526
37539
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
37527
37540
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -41771,6 +41784,7 @@ new message content.",
|
|
|
41771
41784
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
41772
41785
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
41773
41786
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
41787
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
41774
41788
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
41775
41789
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
41776
41790
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -44029,6 +44043,7 @@ new message content.",
|
|
|
44029
44043
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
44030
44044
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
44031
44045
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
44046
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
44032
44047
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
44033
44048
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
44034
44049
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -47252,6 +47267,7 @@ new message content.",
|
|
|
47252
47267
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
47253
47268
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
47254
47269
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
47270
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
47255
47271
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
47256
47272
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
47257
47273
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -49660,6 +49676,7 @@ new message content.",
|
|
|
49660
49676
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
49661
49677
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
49662
49678
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
49679
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
49663
49680
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
49664
49681
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
49665
49682
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -53595,6 +53612,7 @@ new message content.",
|
|
|
53595
53612
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
53596
53613
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
53597
53614
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
53615
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
53598
53616
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
53599
53617
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
53600
53618
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -55853,6 +55871,7 @@ new message content.",
|
|
|
55853
55871
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
55854
55872
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
55855
55873
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
55874
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
55856
55875
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
55857
55876
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
55858
55877
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -59076,6 +59095,7 @@ new message content.",
|
|
|
59076
59095
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
59077
59096
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
59078
59097
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
59098
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
59079
59099
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
59080
59100
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
59081
59101
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -61484,6 +61504,7 @@ new message content.",
|
|
|
61484
61504
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
61485
61505
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
61486
61506
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
61507
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
61487
61508
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
61488
61509
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
61489
61510
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -67080,6 +67101,7 @@ new message content.",
|
|
|
67080
67101
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
67081
67102
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
67082
67103
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
67104
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
67083
67105
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
67084
67106
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
67085
67107
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -69338,6 +69360,7 @@ new message content.",
|
|
|
69338
69360
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
69339
69361
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
69340
69362
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
69363
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
69341
69364
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
69342
69365
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
69343
69366
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -72565,6 +72588,7 @@ new message content.",
|
|
|
72565
72588
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
72566
72589
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
72567
72590
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
72591
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
72568
72592
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
72569
72593
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
72570
72594
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -74973,6 +74997,7 @@ new message content.",
|
|
|
74973
74997
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
74974
74998
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
74975
74999
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
75000
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
74976
75001
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
74977
75002
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
74978
75003
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -80569,6 +80594,7 @@ new message content.",
|
|
|
80569
80594
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
80570
80595
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
80571
80596
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
80597
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
80572
80598
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
80573
80599
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
80574
80600
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -82827,6 +82853,7 @@ new message content.",
|
|
|
82827
82853
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
82828
82854
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
82829
82855
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
82856
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
82830
82857
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
82831
82858
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
82832
82859
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -86054,6 +86081,7 @@ new message content.",
|
|
|
86054
86081
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
86055
86082
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
86056
86083
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
86084
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
86057
86085
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
86058
86086
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
86059
86087
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -88462,6 +88490,7 @@ new message content.",
|
|
|
88462
88490
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
88463
88491
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
88464
88492
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
88493
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
88465
88494
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
88466
88495
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
88467
88496
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -93633,6 +93662,7 @@ new message content.",
|
|
|
93633
93662
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
93634
93663
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
93635
93664
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
93665
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
93636
93666
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
93637
93667
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
93638
93668
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -95891,6 +95921,7 @@ new message content.",
|
|
|
95891
95921
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
95892
95922
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
95893
95923
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
95924
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
95894
95925
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
95895
95926
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
95896
95927
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -99114,6 +99145,7 @@ new message content.",
|
|
|
99114
99145
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
99115
99146
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
99116
99147
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
99148
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
99117
99149
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
99118
99150
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
99119
99151
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -101522,6 +101554,7 @@ new message content.",
|
|
|
101522
101554
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
101523
101555
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
101524
101556
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
101557
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
101525
101558
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
101526
101559
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
101527
101560
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -105457,6 +105490,7 @@ new message content.",
|
|
|
105457
105490
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
105458
105491
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
105459
105492
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
105493
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
105460
105494
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
105461
105495
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
105462
105496
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -107715,6 +107749,7 @@ new message content.",
|
|
|
107715
107749
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
107716
107750
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
107717
107751
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
107752
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
107718
107753
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
107719
107754
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
107720
107755
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -110938,6 +110973,7 @@ new message content.",
|
|
|
110938
110973
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
110939
110974
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
110940
110975
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
110976
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
110941
110977
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
110942
110978
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
110943
110979
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -113346,6 +113382,7 @@ new message content.",
|
|
|
113346
113382
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
113347
113383
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
113348
113384
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
113385
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
113349
113386
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
113350
113387
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
113351
113388
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -117281,6 +117318,7 @@ new message content.",
|
|
|
117281
117318
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
117282
117319
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
117283
117320
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
117321
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
117284
117322
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
117285
117323
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
117286
117324
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -119539,6 +119577,7 @@ new message content.",
|
|
|
119539
119577
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
119540
119578
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
119541
119579
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
119580
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
119542
119581
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
119543
119582
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
119544
119583
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -122762,6 +122801,7 @@ new message content.",
|
|
|
122762
122801
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
122763
122802
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
122764
122803
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
122804
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
122765
122805
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
122766
122806
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
122767
122807
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -125170,6 +125210,7 @@ new message content.",
|
|
|
125170
125210
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
125171
125211
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
125172
125212
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
125213
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
125173
125214
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
125174
125215
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
125175
125216
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -129105,6 +129146,7 @@ new message content.",
|
|
|
129105
129146
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
129106
129147
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
129107
129148
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
129149
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
129108
129150
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
129109
129151
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
129110
129152
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -131363,6 +131405,7 @@ new message content.",
|
|
|
131363
131405
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
131364
131406
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
131365
131407
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
131408
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
131366
131409
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
131367
131410
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
131368
131411
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -134586,6 +134629,7 @@ new message content.",
|
|
|
134586
134629
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
134587
134630
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
134588
134631
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
134632
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
134589
134633
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
134590
134634
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
134591
134635
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -136994,6 +137038,7 @@ new message content.",
|
|
|
136994
137038
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
136995
137039
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
136996
137040
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
137041
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
136997
137042
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
136998
137043
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
136999
137044
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -142299,6 +142344,7 @@ new message content.",
|
|
|
142299
142344
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
142300
142345
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
142301
142346
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
142347
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
142302
142348
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
142303
142349
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
142304
142350
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -1904,6 +1904,7 @@ new message content.",
|
|
|
1904
1904
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
1905
1905
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
1906
1906
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
1907
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
1907
1908
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
1908
1909
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
1909
1910
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -4918,6 +4919,7 @@ new message content.",
|
|
|
4918
4919
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
4919
4920
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
4920
4921
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
4922
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
4921
4923
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
4922
4924
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
4923
4925
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -7932,6 +7934,7 @@ new message content.",
|
|
|
7932
7934
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
7933
7935
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
7934
7936
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
7937
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
7935
7938
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
7936
7939
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
7937
7940
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|
|
@@ -10946,6 +10949,7 @@ new message content.",
|
|
|
10946
10949
|
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
10947
10950
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
10948
10951
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
10952
|
+
"creatives.containersV2.WebPush.addLabels": "Add labels",
|
|
10949
10953
|
"creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
|
|
10950
10954
|
"creatives.containersV2.Whatsapp.accountUpdate": "Account update",
|
|
10951
10955
|
"creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
|