@capillarytech/creatives-library 7.15.7 → 7.16.1
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/containers/Cap/tests/__snapshots__/index.test.js.snap +193 -4
- package/containers/LanguageProvider/index.js +2 -0
- package/containers/LanguageProvider/tests/index.test.js +1 -0
- package/i18n.js +11 -14
- package/package.json +1 -1
- package/translations/en.json +192 -4
- package/translations/ja-JP.json +2013 -0
- package/translations/zh.json +191 -3
- package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +193 -4
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +579 -12
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +386 -8
- package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +3281 -68
- package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +3474 -72
- package/v2Containers/Rcs/messages.js +1 -1
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +9133 -250
- package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +772 -16
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +1544 -32
- package/v2Containers/Templates/messages.js +2 -2
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +13703 -284
|
@@ -27,15 +27,19 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
27
27
|
"app.components.CapVideoUpload.fileFormat": "Format: MP4",
|
|
28
28
|
"app.components.CapVideoUpload.imageReUpload": "Re upload",
|
|
29
29
|
"app.components.CapVideoUpload.or": "OR",
|
|
30
|
+
"app.components.CapVideoUpload.selectFromComputer": "Select from computer",
|
|
30
31
|
"app.components.CapVideoUpload.textMessageAddLabel": "How do you want to upload the image?",
|
|
31
32
|
"app.components.CapVideoUpload.textMessageCreateNew": "Create new",
|
|
32
33
|
"app.components.CapVideoUpload.textMessageORLabel": "OR",
|
|
33
34
|
"app.components.CapVideoUpload.textMessageSelectTemplate": "Select template",
|
|
34
|
-
"app.components.CapVideoUpload.uploadComputer": "Your computer",
|
|
35
35
|
"app.components.CapVideoUpload.videoIncorrectSize": "This file format/size is not supported.",
|
|
36
36
|
"app.components.CapVideoUpload.videoRatioDescription": "Video ratio: 9:16 to 16:9",
|
|
37
37
|
"app.components.CapVideoUpload.videoSizeDescription": "File size: Up to {size}",
|
|
38
|
+
"app.components.CapVideoUpload.whatsappErrorMessage": "Please upload the video with allowed file extension, size, dimension and aspect ratio",
|
|
39
|
+
"app.components.CapVideoUpload.whatsappFileFormat": "Format: MP4",
|
|
38
40
|
"app.components.TemplatePreview.includesOptoutTag": "Includes optout tag",
|
|
41
|
+
"app.components.TemplatePreview.optoutCharactersTotal": "Includes optout tag ({optoutUrlLength} characters)",
|
|
42
|
+
"app.components.TemplatePreview.whatsappMessageLength": "1 Message ({length} characters)",
|
|
39
43
|
"app.v2containers.SmsTrai.Create.deferEdit": "It is highly recommended to use a file directly downloaded from the DLT portal. Editing the file may cause data to truncate unexpectedly.",
|
|
40
44
|
"app.v2containers.SmsTrai.Create.doneButtonLabel": "Done",
|
|
41
45
|
"app.v2containers.SmsTrai.Create.downloadIssues": "Download issues",
|
|
@@ -164,18 +168,28 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
164
168
|
"creatives.componentsV2.CapActionButton.templateButtonLinkPlaceholder": "Enter button link",
|
|
165
169
|
"creatives.componentsV2.CapActionButton.templateButtonText": "Button text",
|
|
166
170
|
"creatives.componentsV2.CapActionButton.templateButtonTextPlaceholder": "Enter button text",
|
|
171
|
+
"creatives.componentsV2.CapDocumentUpload.docErrorDesc": "Please upload the document with allowed file extension and size",
|
|
172
|
+
"creatives.componentsV2.CapDocumentUpload.docReUpload": "Reupload",
|
|
173
|
+
"creatives.componentsV2.CapDocumentUpload.dragAndDrop": "Drag and drop document here",
|
|
174
|
+
"creatives.componentsV2.CapDocumentUpload.format": "Format: {format}",
|
|
175
|
+
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
176
|
+
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
177
|
+
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
178
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
167
179
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
168
180
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
169
181
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
170
182
|
"creatives.componentsV2.CapImageUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
183
|
+
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
171
184
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
172
|
-
"creatives.componentsV2.CapImageUpload.imageIncorrectSize": "Please upload the image with correct type, size and dimension",
|
|
173
185
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
174
186
|
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
175
187
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
176
188
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
177
189
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
178
190
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
191
|
+
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
192
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
179
193
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
180
194
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
181
195
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -261,8 +275,21 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
261
275
|
"creatives.componentsV2.SmsTest.header": "This is the SmsTest component !",
|
|
262
276
|
"creatives.componentsV2.SmsTest.inputSmsTemplate": "Please input sms template content.",
|
|
263
277
|
"creatives.componentsV2.SmsTest.inputTemplateName": "Please input template name.",
|
|
278
|
+
"creatives.componentsV2.TemplatePreview.charactersPerSms": "SMS chars",
|
|
279
|
+
"creatives.componentsV2.TemplatePreview.charactersTotal": "{smsCount} SMS ({charCount} characters)",
|
|
280
|
+
"creatives.componentsV2.TemplatePreview.close": "close",
|
|
264
281
|
"creatives.componentsV2.TemplatePreview.playVideo": "Play",
|
|
282
|
+
"creatives.componentsV2.TemplatePreview.preview": "Preview",
|
|
283
|
+
"creatives.componentsV2.TemplatePreview.previewGenerated": "Preview is being generated",
|
|
284
|
+
"creatives.componentsV2.TemplatePreview.previewGenerationMessage": "Preview is being generated",
|
|
265
285
|
"creatives.componentsV2.TemplatePreview.showDetails": "Show details",
|
|
286
|
+
"creatives.componentsV2.TemplatePreview.sms": "SMS",
|
|
287
|
+
"creatives.componentsV2.TemplatePreview.smsFormatType": "Message has unicode characters",
|
|
288
|
+
"creatives.componentsV2.TemplatePreview.smsIcon": "Sms Icon",
|
|
289
|
+
"creatives.componentsV2.TemplatePreview.testMessage": "Test Message",
|
|
290
|
+
"creatives.componentsV2.TemplatePreview.textMessageCharacter": "characters",
|
|
291
|
+
"creatives.componentsV2.TemplatePreview.textMessageLabel": "text msg-",
|
|
292
|
+
"creatives.componentsV2.TemplatePreview.videoPreviewTooltip": "This is just for preview purposes, video cannot be played here",
|
|
266
293
|
"creatives.componentsV2.Toastr.header": "This is the Toastr component !",
|
|
267
294
|
"creatives.componentsV2.ToastrMessage.close": "This is the ToastrMessage component !",
|
|
268
295
|
"creatives.componentsV2.ToastrMessage.header": "This is the ToastrMessage component !",
|
|
@@ -273,6 +300,7 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
273
300
|
"creatives.componentsV2.TopBar.logout": "Logout",
|
|
274
301
|
"creatives.componentsV2.TopBar.profile": "Profile",
|
|
275
302
|
"creatives.componentsV2.TopBar.settings": "Settings",
|
|
303
|
+
"creatives.componentsV2.unbalanacedCurlyBraces": "Invalid label, please close all curly braces",
|
|
276
304
|
"creatives.componentsv2.MobilePushPreviewV2.header": "This is the MobilePushPreviewV2 component !",
|
|
277
305
|
"creatives.containers.Assets.Gallery.alphabetically": "Alphabetically",
|
|
278
306
|
"creatives.containers.Assets.Gallery.assetDeleteFailed": "Image deletion failed.",
|
|
@@ -1011,6 +1039,7 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
1011
1039
|
"creatives.containersV2.Creatives.templateDeleteConfirm": "Are you sure you want to delete this template?",
|
|
1012
1040
|
"creatives.containersV2.Creatives.templateDeleteSuccess": "SMS template deleted successfully",
|
|
1013
1041
|
"creatives.containersV2.Creatives.templateDuplicateSuccess": "Template duplicated successfully",
|
|
1042
|
+
"creatives.containersV2.Creatives.templateNameEmpty": "Template name cannot be empty",
|
|
1014
1043
|
"creatives.containersV2.Creatives.templateSelection": "Template selection",
|
|
1015
1044
|
"creatives.containersV2.Creatives.textTemplate": "Text",
|
|
1016
1045
|
"creatives.containersV2.Creatives.unMapButton": "Unmap",
|
|
@@ -1148,6 +1177,7 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
1148
1177
|
"creatives.containersV2.Email.yes": "Yes",
|
|
1149
1178
|
"creatives.containersV2.EmailWrapper.createMode": "How do you want to create ?",
|
|
1150
1179
|
"creatives.containersV2.EmailWrapper.creativeName": "Creative name",
|
|
1180
|
+
"creatives.containersV2.EmailWrapper.emptyTemplateName": "Please enter template name.",
|
|
1151
1181
|
"creatives.containersV2.EmailWrapper.header": "This is EmailWrapper container !",
|
|
1152
1182
|
"creatives.containersV2.EmailWrapper.invalidUploadFileDesc": "Please select another file with valid file format.",
|
|
1153
1183
|
"creatives.containersV2.EmailWrapper.invalidUploadFileError": "File cannot be uploaded.",
|
|
@@ -1309,7 +1339,8 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
1309
1339
|
"creatives.containersV2.LineImageCarousel.emptyTitleErrorMessage": "Template title can not be empty",
|
|
1310
1340
|
"creatives.containersV2.LineImageCarousel.enterTextActionTypeTitle": "Enter text",
|
|
1311
1341
|
"creatives.containersV2.LineImageCarousel.enterUriActionTypeTitle": "Enter url",
|
|
1312
|
-
"creatives.containersV2.LineImageCarousel.
|
|
1342
|
+
"creatives.containersV2.LineImageCarousel.imageDimenstionDesc": "Format: JPEG, PNG Dimensions: 1024px x 1024px Size: 1 MB",
|
|
1343
|
+
"creatives.containersV2.LineImageCarousel.imageDimenstionDescription": "Format: JPEG, PNG Aspect ratio: 1:1 Dimensions: 1024px x 1024px Size: 1 MB",
|
|
1313
1344
|
"creatives.containersV2.LineImageCarousel.imageGallery": "Gallery",
|
|
1314
1345
|
"creatives.containersV2.LineImageCarousel.imageReUpload": "Re upload",
|
|
1315
1346
|
"creatives.containersV2.LineImageCarousel.inValidUrliErrorMessage": "Action content uri is not valid",
|
|
@@ -1425,12 +1456,12 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
1425
1456
|
"creatives.containersV2.LineWrapper.changeModalDescription": "The already added content for this card will be lost by changing the content tab.",
|
|
1426
1457
|
"creatives.containersV2.LineWrapper.changeModalLabel": "Do you still want to make the changes to content tab",
|
|
1427
1458
|
"creatives.containersV2.LineWrapper.changeModalTitle": "Changing content tab?",
|
|
1459
|
+
"creatives.containersV2.LineWrapper.flexLabel": "Card message",
|
|
1428
1460
|
"creatives.containersV2.LineWrapper.imageLabel": "Image",
|
|
1429
1461
|
"creatives.containersV2.LineWrapper.imagemapLabel": "Rich message",
|
|
1430
1462
|
"creatives.containersV2.LineWrapper.modalDiscardChangesButtonLabel": "No",
|
|
1431
1463
|
"creatives.containersV2.LineWrapper.modalSaveChangesButtonLabel": "Yes, change",
|
|
1432
1464
|
"creatives.containersV2.LineWrapper.stickerLabel": "Sticker",
|
|
1433
|
-
"creatives.containersV2.LineWrapper.templateLabel": "Card message",
|
|
1434
1465
|
"creatives.containersV2.LineWrapper.textLabel": "Text",
|
|
1435
1466
|
"creatives.containersV2.LineWrapper.videoLabel": "Rich video message",
|
|
1436
1467
|
"creatives.containersV2.Login.header": "This is login container change !",
|
|
@@ -1585,7 +1616,162 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
1585
1616
|
"creatives.containersV2.MobilepushWrapper.image": "Image content",
|
|
1586
1617
|
"creatives.containersV2.MobilepushWrapper.text": "Text content",
|
|
1587
1618
|
"creatives.containersV2.NotFoundPage.header": "Looks like you are lost!",
|
|
1619
|
+
"creatives.containersV2.Rcs.addSmsCreative": "Add SMS creative",
|
|
1620
|
+
"creatives.containersV2.Rcs.buttonTextAndUrl": ", CTA button text & url",
|
|
1621
|
+
"creatives.containersV2.Rcs.disabledMediaTooltip": "Not yet enabled. Coming soon!",
|
|
1622
|
+
"creatives.containersV2.Rcs.dltEditHeader": "Edit SMS",
|
|
1623
|
+
"creatives.containersV2.Rcs.emptyTemplateDescErrorMessage": "Template message cannot be empty",
|
|
1624
|
+
"creatives.containersV2.Rcs.fallbackDesc": "We would suggest to add fallback SMS",
|
|
1625
|
+
"creatives.containersV2.Rcs.fallbackLabel": "Fallback SMS message",
|
|
1626
|
+
"creatives.containersV2.Rcs.fallbackMsgLenError": "Only 1 SMS (160 characters) allowed for fallback sms",
|
|
1627
|
+
"creatives.containersV2.Rcs.fallbackMsgPlaceholder": "Enter the text message content for fallback SMS",
|
|
1628
|
+
"creatives.containersV2.Rcs.fallbackPreviewtitle": "Preview of fallback SMS",
|
|
1629
|
+
"creatives.containersV2.Rcs.fallbackTextAreaLabel": "SMS message",
|
|
1630
|
+
"creatives.containersV2.Rcs.fallbackToolTip": "This is to deliver an RCS message as an SMS message to end users whose phones do not support RCS",
|
|
1631
|
+
"creatives.containersV2.Rcs.image": "and image",
|
|
1632
|
+
"creatives.containersV2.Rcs.mediaImage": "Image",
|
|
1633
|
+
"creatives.containersV2.Rcs.mediaLabel": "Media",
|
|
1634
|
+
"creatives.containersV2.Rcs.mediaNone": "None",
|
|
1635
|
+
"creatives.containersV2.Rcs.mediaVideo": "Video/Slideshow",
|
|
1636
|
+
"creatives.containersV2.Rcs.optional": "(Optional)",
|
|
1637
|
+
"creatives.containersV2.Rcs.rcsCreateNotification": "RCS template created successfully",
|
|
1638
|
+
"creatives.containersV2.Rcs.rcsDltDesc": "Select any of the existing templates",
|
|
1639
|
+
"creatives.containersV2.Rcs.rcsDltTitle": "SMS creative templates",
|
|
1640
|
+
"creatives.containersV2.Rcs.rcsDoneBtnToolTip": "Please add template name {type} to proceed further",
|
|
1641
|
+
"creatives.containersV2.Rcs.rcsEditNotification": "RCS template updated successfully",
|
|
1642
|
+
"creatives.containersV2.Rcs.templateButton": "Buttons",
|
|
1643
|
+
"creatives.containersV2.Rcs.templateButtonDesc": "Use buttons to redirect user to respective link or quick response/ action.",
|
|
1644
|
+
"creatives.containersV2.Rcs.templateCTAButton": "Call to action",
|
|
1645
|
+
"creatives.containersV2.Rcs.templateCTAButtonDesc": "Create up to 3 buttons that let customers respond to your messages or take action.",
|
|
1646
|
+
"creatives.containersV2.Rcs.templateDescLabel": "Text message",
|
|
1647
|
+
"creatives.containersV2.Rcs.templateDescLengthError": "Template message length cannot exceed 1000",
|
|
1648
|
+
"creatives.containersV2.Rcs.templateDescPlaceholder": "Enter the text message",
|
|
1649
|
+
"creatives.containersV2.Rcs.templateQRButton": "Quick reply",
|
|
1650
|
+
"creatives.containersV2.Rcs.templateQRButtonDesc": "Create up to 3 buttons that let customers respond to your messages or take action.",
|
|
1651
|
+
"creatives.containersV2.Rcs.templateTitle": "Title",
|
|
1652
|
+
"creatives.containersV2.Rcs.templateTitlePlaceholder": "Enter title",
|
|
1653
|
+
"creatives.containersV2.Rcs.textMessage": "and text message",
|
|
1654
|
+
"creatives.containersV2.Rcs.totalCharacters": "{smsCount} SMS ({number} characters)",
|
|
1588
1655
|
"creatives.containersV2.TagList.header": "This is TagList container !",
|
|
1656
|
+
"creatives.containersV2.Templates.accountConfigError": "This account is not configured properly. You can configure it",
|
|
1657
|
+
"creatives.containersV2.Templates.all": "All",
|
|
1658
|
+
"creatives.containersV2.Templates.alphabeticallyOption": "Alphabetically",
|
|
1659
|
+
"creatives.containersV2.Templates.areYouSureText": "Confirm delete template",
|
|
1660
|
+
"creatives.containersV2.Templates.blankTemplate": "Blank template",
|
|
1661
|
+
"creatives.containersV2.Templates.campaigns": "Campaigns",
|
|
1662
|
+
"creatives.containersV2.Templates.cancelText": "Cancel",
|
|
1663
|
+
"creatives.containersV2.Templates.category": "Category",
|
|
1664
|
+
"creatives.containersV2.Templates.chooseAccount": "Choose the account to send content",
|
|
1665
|
+
"creatives.containersV2.Templates.clearAll": "Clear all",
|
|
1666
|
+
"creatives.containersV2.Templates.continue": "Continue",
|
|
1667
|
+
"creatives.containersV2.Templates.createEmailActionButton": "Create email",
|
|
1668
|
+
"creatives.containersV2.Templates.createMessageContent": "New message",
|
|
1669
|
+
"creatives.containersV2.Templates.createNewActionButton": "Create new",
|
|
1670
|
+
"creatives.containersV2.Templates.createNewTemplateLink": "Create new template",
|
|
1671
|
+
"creatives.containersV2.Templates.createSmsActionButton": "Create SMS",
|
|
1672
|
+
"creatives.containersV2.Templates.creativeTemplates": "Creative templates",
|
|
1673
|
+
"creatives.containersV2.Templates.creativeTemplatesDesc": "(Select only one creative)",
|
|
1674
|
+
"creatives.containersV2.Templates.creatives": "Creatives",
|
|
1675
|
+
"creatives.containersV2.Templates.creativesTemplatesEdit": "Edit",
|
|
1676
|
+
"creatives.containersV2.Templates.creativesTemplatesSave": "Done",
|
|
1677
|
+
"creatives.containersV2.Templates.deleteButton": "Delete",
|
|
1678
|
+
"creatives.containersV2.Templates.deletedSuccssfully": "Template deleted successfully",
|
|
1679
|
+
"creatives.containersV2.Templates.deletingTemplate": "Deleting template...",
|
|
1680
|
+
"creatives.containersV2.Templates.deletionFailed": "Template deletion failed",
|
|
1681
|
+
"creatives.containersV2.Templates.duplicateButton": "Duplicate",
|
|
1682
|
+
"creatives.containersV2.Templates.duplicatingTemplate": "Duplicating template...",
|
|
1683
|
+
"creatives.containersV2.Templates.ebillHeader": "Ebill",
|
|
1684
|
+
"creatives.containersV2.Templates.ebillPreview": "Ebill preview",
|
|
1685
|
+
"creatives.containersV2.Templates.editButton": "Edit",
|
|
1686
|
+
"creatives.containersV2.Templates.editMessageContent": "Edit message content",
|
|
1687
|
+
"creatives.containersV2.Templates.emailHeader": "Email",
|
|
1688
|
+
"creatives.containersV2.Templates.emailPreview": "Email preview",
|
|
1689
|
+
"creatives.containersV2.Templates.emailTitleIllustartion": "Create an email {template}",
|
|
1690
|
+
"creatives.containersV2.Templates.gettingAllTemplates": "Getting all templates...",
|
|
1691
|
+
"creatives.containersV2.Templates.header": "This is Templates container !",
|
|
1692
|
+
"creatives.containersV2.Templates.imageCarouselTemplate": "Card message",
|
|
1693
|
+
"creatives.containersV2.Templates.imageMapTemplate": "Rich message",
|
|
1694
|
+
"creatives.containersV2.Templates.imageMapVideoTemplate": "Rich video message",
|
|
1695
|
+
"creatives.containersV2.Templates.imageTemplate": "Image",
|
|
1696
|
+
"creatives.containersV2.Templates.invalidUploadFileError": "File cannot be uploaded. Please select another file with valid file format.",
|
|
1697
|
+
"creatives.containersV2.Templates.layoutSelection": "Select layout",
|
|
1698
|
+
"creatives.containersV2.Templates.lineAccount": "Line account",
|
|
1699
|
+
"creatives.containersV2.Templates.lineHeader": "Line",
|
|
1700
|
+
"creatives.containersV2.Templates.mapTemplate": "Map template",
|
|
1701
|
+
"creatives.containersV2.Templates.mapTemplates": "Map templates",
|
|
1702
|
+
"creatives.containersV2.Templates.mobilepushAccount": "Mobilepush account",
|
|
1703
|
+
"creatives.containersV2.Templates.mobilepushHeader": "Mobile Push",
|
|
1704
|
+
"creatives.containersV2.Templates.mostRecentOption": "Most recent",
|
|
1705
|
+
"creatives.containersV2.Templates.newEmailTemplate": "New email {template}",
|
|
1706
|
+
"creatives.containersV2.Templates.newNotificationTemplate": "New notification {template}",
|
|
1707
|
+
"creatives.containersV2.Templates.newRCSTemplate": "New RCS {template}",
|
|
1708
|
+
"creatives.containersV2.Templates.newSMSTemplate": "New SMS {template}",
|
|
1709
|
+
"creatives.containersV2.Templates.newTemplate": "New template",
|
|
1710
|
+
"creatives.containersV2.Templates.newWhatsappTemplate": "Add new Whatsapp {template}",
|
|
1711
|
+
"creatives.containersV2.Templates.noAccountMessage": "Please select an account to proceed",
|
|
1712
|
+
"creatives.containersV2.Templates.noAccountsPresent": "Push notifications are not setup for your brand",
|
|
1713
|
+
"creatives.containersV2.Templates.noAccountsPresentFacebook": "Please setup the Facebook account & Facebook page to start creating content in Capillary's FB content creator.",
|
|
1714
|
+
"creatives.containersV2.Templates.noAccountsPresentLine": "Line accounts are not setup for your brand",
|
|
1715
|
+
"creatives.containersV2.Templates.noAccountsPresentViber": "Viber accounts are not setup for your brand",
|
|
1716
|
+
"creatives.containersV2.Templates.noAccountsPresentWeChat": "Wechat accounts are not setup for your brand",
|
|
1717
|
+
"creatives.containersV2.Templates.noAccountsPresentWhatsapp": "Whatsapp accounts are not setup for your brand",
|
|
1718
|
+
"creatives.containersV2.Templates.noApprovedWhatsappTemplatesDesc": "Please try creating a new template, once it is approved by Whatsapp it will be available here",
|
|
1719
|
+
"creatives.containersV2.Templates.noApprovedWhatsappTemplatesTitle": "Sorry, we couldn’t find any approved templates",
|
|
1720
|
+
"creatives.containersV2.Templates.noFilteredWhatsappTemplatesDesc": "Please try searching with another term or apply different filter",
|
|
1721
|
+
"creatives.containersV2.Templates.noFilteredWhatsappTemplatesTitle": "Sorry, we couldn’t find any matches",
|
|
1722
|
+
"creatives.containersV2.Templates.noTemplatesFound": "No templates found",
|
|
1723
|
+
"creatives.containersV2.Templates.noTemplatesMessage": "No templates available",
|
|
1724
|
+
"creatives.containersV2.Templates.preview": "Preview",
|
|
1725
|
+
"creatives.containersV2.Templates.previewButton": "Preview",
|
|
1726
|
+
"creatives.containersV2.Templates.previewGenerateText": "Preview is being generated...",
|
|
1727
|
+
"creatives.containersV2.Templates.promotional": "Promotional",
|
|
1728
|
+
"creatives.containersV2.Templates.pushTitleIllustartion": "Create a mobile push notification {template}",
|
|
1729
|
+
"creatives.containersV2.Templates.rcsDescIllustartion": "These templates can be reused when creating a new message content",
|
|
1730
|
+
"creatives.containersV2.Templates.rcsDltIllustrationDesc": "Please try creating a new DLT template in SMS section, once it is created, it will be available here",
|
|
1731
|
+
"creatives.containersV2.Templates.rcsDltIllustrationTitle": "Sorry, we couldn’t find any DLT templates",
|
|
1732
|
+
"creatives.containersV2.Templates.rcsTitleIllustartion": "Add new RCS creatives {template}",
|
|
1733
|
+
"creatives.containersV2.Templates.richMediaTemplates": "Rich media templates",
|
|
1734
|
+
"creatives.containersV2.Templates.searchText": "Search",
|
|
1735
|
+
"creatives.containersV2.Templates.selectAccount": "Select account",
|
|
1736
|
+
"creatives.containersV2.Templates.selectButton": "Select",
|
|
1737
|
+
"creatives.containersV2.Templates.selectDefaultButton": "Select",
|
|
1738
|
+
"creatives.containersV2.Templates.selectSmsHeader": "Select SMS template",
|
|
1739
|
+
"creatives.containersV2.Templates.selectWechatHeader": "Select WECHAT template",
|
|
1740
|
+
"creatives.containersV2.Templates.serviceExplicit": "Service explicit",
|
|
1741
|
+
"creatives.containersV2.Templates.serviceImplicit": "Service implicit",
|
|
1742
|
+
"creatives.containersV2.Templates.smsChannelTemplatesHeader": "SMS templates",
|
|
1743
|
+
"creatives.containersV2.Templates.smsHeader": "SMS",
|
|
1744
|
+
"creatives.containersV2.Templates.smsTitleIllustartion": "Create an SMS {template}",
|
|
1745
|
+
"creatives.containersV2.Templates.somethingWentWrong": "Something went wrong!!",
|
|
1746
|
+
"creatives.containersV2.Templates.sortBy": "Sort by",
|
|
1747
|
+
"creatives.containersV2.Templates.status": "Status",
|
|
1748
|
+
"creatives.containersV2.Templates.template": "template",
|
|
1749
|
+
"creatives.containersV2.Templates.templateDeleteConfirm": "Are you sure you wish to delete this template?",
|
|
1750
|
+
"creatives.containersV2.Templates.templateDeleteSuccess": "SMS template deleted successfully",
|
|
1751
|
+
"creatives.containersV2.Templates.templateDuplicateSuccess": "Template duplicated successfully",
|
|
1752
|
+
"creatives.containersV2.Templates.templateSelection": "Template selection",
|
|
1753
|
+
"creatives.containersV2.Templates.textTemplate": "Text",
|
|
1754
|
+
"creatives.containersV2.Templates.unMapButton": "Unmap",
|
|
1755
|
+
"creatives.containersV2.Templates.uploadFile": "Upload file",
|
|
1756
|
+
"creatives.containersV2.Templates.uploadTemplate": "Upload template",
|
|
1757
|
+
"creatives.containersV2.Templates.uploadedAt": "Modified",
|
|
1758
|
+
"creatives.containersV2.Templates.uploadedBy": "Uploaded by",
|
|
1759
|
+
"creatives.containersV2.Templates.uploadingFile": "Uploading file",
|
|
1760
|
+
"creatives.containersV2.Templates.useEditor": "Use editor",
|
|
1761
|
+
"creatives.containersV2.Templates.weChatRichmediaTemplate": "Richmedia template",
|
|
1762
|
+
"creatives.containersV2.Templates.wechatAccount": "Wechat account",
|
|
1763
|
+
"creatives.containersV2.Templates.wechatAccountNotConfigured": "Selected wechat account is not configured to create wechat templates",
|
|
1764
|
+
"creatives.containersV2.Templates.wechatChannelTemplatesHeader": "WECHAT templates",
|
|
1765
|
+
"creatives.containersV2.Templates.wechatHeader": "WECHAT",
|
|
1766
|
+
"creatives.containersV2.Templates.whatsappAccount": "Whatsapp account",
|
|
1767
|
+
"creatives.containersV2.Templates.whatsappDescIllustration": "These templates can be reused when creating a
|
|
1768
|
+
new message content.",
|
|
1769
|
+
"creatives.containersV2.Templates.whatsappMaxTemplates": "WhatsApp allows {maxCount} approved templates. To accommodate new approved templates either delete the existing one or reach out to Capillary POC to increase the limit.",
|
|
1770
|
+
"creatives.containersV2.Templates.whatsappOnlyApprovedTemplates": "Only \\"Approved\\" templates are available here, as you can use those templates to create a message.",
|
|
1771
|
+
"creatives.containersV2.Templates.whatsappOverview": "Overview",
|
|
1772
|
+
"creatives.containersV2.Templates.whatsappTitleIllustration": "Add a new Whatsapp creative {template}",
|
|
1773
|
+
"creatives.containersV2.Templates.yesText": "Yes, delete",
|
|
1774
|
+
"creatives.containersV2.Templates.zipUploadFailed": "Failed to upload zip file",
|
|
1589
1775
|
"creatives.containersV2.TemplatesV2.FTP": "FTP",
|
|
1590
1776
|
"creatives.containersV2.TemplatesV2.callTask": "Call Task",
|
|
1591
1777
|
"creatives.containersV2.TemplatesV2.creatives": "Creatives",
|
|
@@ -1654,6 +1840,8 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
1654
1840
|
"creatives.containersV2.Whatsapp.alertUpdate": "Alert update",
|
|
1655
1841
|
"creatives.containersV2.Whatsapp.alertUpdateTooltip": "Send important updates or news to customers.",
|
|
1656
1842
|
"creatives.containersV2.Whatsapp.approved": "Approved",
|
|
1843
|
+
"creatives.containersV2.Whatsapp.transactional": "Transactional",
|
|
1844
|
+
"creatives.containersV2.Whatsapp.transactionalTooltip": "Send account updates, order updates, alerts, and more to share important information.",
|
|
1657
1845
|
"creatives.containersV2.addLabels": "Add labels",
|
|
1658
1846
|
"creatives.containersV2.appName": "App Name",
|
|
1659
1847
|
"creatives.containersV2.applyNow": "Apply now",
|
|
@@ -1746,6 +1934,7 @@ exports[`line wrapper test/> should render line component new 1`] = `
|
|
|
1746
1934
|
"creatives.containersV2.richMedia.Create.wechatTitle": "Title",
|
|
1747
1935
|
"creatives.containersV2.richMedia.Create.wrongFormatFile": "Wrong file upoaded. Please upload image file",
|
|
1748
1936
|
"creatives.containersV2.richMedia.Create.wrongUrl": "Enter correct URL",
|
|
1937
|
+
"creatives.containersV2.save": "Save",
|
|
1749
1938
|
"creatives.containersV2.shopNow": "Shop Now",
|
|
1750
1939
|
"creatives.containersV2.signUp": "Sign Up",
|
|
1751
1940
|
"creatives.containersV2.subscribe": "Subscribe",
|
|
@@ -18867,15 +19056,19 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
18867
19056
|
"app.components.CapVideoUpload.fileFormat": "Format: MP4",
|
|
18868
19057
|
"app.components.CapVideoUpload.imageReUpload": "Re upload",
|
|
18869
19058
|
"app.components.CapVideoUpload.or": "OR",
|
|
19059
|
+
"app.components.CapVideoUpload.selectFromComputer": "Select from computer",
|
|
18870
19060
|
"app.components.CapVideoUpload.textMessageAddLabel": "How do you want to upload the image?",
|
|
18871
19061
|
"app.components.CapVideoUpload.textMessageCreateNew": "Create new",
|
|
18872
19062
|
"app.components.CapVideoUpload.textMessageORLabel": "OR",
|
|
18873
19063
|
"app.components.CapVideoUpload.textMessageSelectTemplate": "Select template",
|
|
18874
|
-
"app.components.CapVideoUpload.uploadComputer": "Your computer",
|
|
18875
19064
|
"app.components.CapVideoUpload.videoIncorrectSize": "This file format/size is not supported.",
|
|
18876
19065
|
"app.components.CapVideoUpload.videoRatioDescription": "Video ratio: 9:16 to 16:9",
|
|
18877
19066
|
"app.components.CapVideoUpload.videoSizeDescription": "File size: Up to {size}",
|
|
19067
|
+
"app.components.CapVideoUpload.whatsappErrorMessage": "Please upload the video with allowed file extension, size, dimension and aspect ratio",
|
|
19068
|
+
"app.components.CapVideoUpload.whatsappFileFormat": "Format: MP4",
|
|
18878
19069
|
"app.components.TemplatePreview.includesOptoutTag": "Includes optout tag",
|
|
19070
|
+
"app.components.TemplatePreview.optoutCharactersTotal": "Includes optout tag ({optoutUrlLength} characters)",
|
|
19071
|
+
"app.components.TemplatePreview.whatsappMessageLength": "1 Message ({length} characters)",
|
|
18879
19072
|
"app.v2containers.SmsTrai.Create.deferEdit": "It is highly recommended to use a file directly downloaded from the DLT portal. Editing the file may cause data to truncate unexpectedly.",
|
|
18880
19073
|
"app.v2containers.SmsTrai.Create.doneButtonLabel": "Done",
|
|
18881
19074
|
"app.v2containers.SmsTrai.Create.downloadIssues": "Download issues",
|
|
@@ -19004,18 +19197,28 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
19004
19197
|
"creatives.componentsV2.CapActionButton.templateButtonLinkPlaceholder": "Enter button link",
|
|
19005
19198
|
"creatives.componentsV2.CapActionButton.templateButtonText": "Button text",
|
|
19006
19199
|
"creatives.componentsV2.CapActionButton.templateButtonTextPlaceholder": "Enter button text",
|
|
19200
|
+
"creatives.componentsV2.CapDocumentUpload.docErrorDesc": "Please upload the document with allowed file extension and size",
|
|
19201
|
+
"creatives.componentsV2.CapDocumentUpload.docReUpload": "Reupload",
|
|
19202
|
+
"creatives.componentsV2.CapDocumentUpload.dragAndDrop": "Drag and drop document here",
|
|
19203
|
+
"creatives.componentsV2.CapDocumentUpload.format": "Format: {format}",
|
|
19204
|
+
"creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
19205
|
+
"creatives.componentsV2.CapDocumentUpload.or": "OR",
|
|
19206
|
+
"creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
|
|
19207
|
+
"creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
|
|
19007
19208
|
"creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
|
|
19008
19209
|
"creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
|
|
19009
19210
|
"creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
|
|
19010
19211
|
"creatives.componentsV2.CapImageUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
|
|
19212
|
+
"creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
|
|
19011
19213
|
"creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
|
|
19012
|
-
"creatives.componentsV2.CapImageUpload.imageIncorrectSize": "Please upload the image with correct type, size and dimension",
|
|
19013
19214
|
"creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
|
|
19014
19215
|
"creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
|
|
19015
19216
|
"creatives.componentsV2.CapImageUpload.or": "OR",
|
|
19016
19217
|
"creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
|
|
19017
19218
|
"creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
|
|
19018
19219
|
"creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
|
|
19220
|
+
"creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
|
|
19221
|
+
"creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
|
|
19019
19222
|
"creatives.componentsV2.CapTagList.Cancel": "Cancel",
|
|
19020
19223
|
"creatives.componentsV2.CapTagList.Ok": "Ok",
|
|
19021
19224
|
"creatives.componentsV2.CapTagList.all": "All",
|
|
@@ -19101,8 +19304,21 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
19101
19304
|
"creatives.componentsV2.SmsTest.header": "This is the SmsTest component !",
|
|
19102
19305
|
"creatives.componentsV2.SmsTest.inputSmsTemplate": "Please input sms template content.",
|
|
19103
19306
|
"creatives.componentsV2.SmsTest.inputTemplateName": "Please input template name.",
|
|
19307
|
+
"creatives.componentsV2.TemplatePreview.charactersPerSms": "SMS chars",
|
|
19308
|
+
"creatives.componentsV2.TemplatePreview.charactersTotal": "{smsCount} SMS ({charCount} characters)",
|
|
19309
|
+
"creatives.componentsV2.TemplatePreview.close": "close",
|
|
19104
19310
|
"creatives.componentsV2.TemplatePreview.playVideo": "Play",
|
|
19311
|
+
"creatives.componentsV2.TemplatePreview.preview": "Preview",
|
|
19312
|
+
"creatives.componentsV2.TemplatePreview.previewGenerated": "Preview is being generated",
|
|
19313
|
+
"creatives.componentsV2.TemplatePreview.previewGenerationMessage": "Preview is being generated",
|
|
19105
19314
|
"creatives.componentsV2.TemplatePreview.showDetails": "Show details",
|
|
19315
|
+
"creatives.componentsV2.TemplatePreview.sms": "SMS",
|
|
19316
|
+
"creatives.componentsV2.TemplatePreview.smsFormatType": "Message has unicode characters",
|
|
19317
|
+
"creatives.componentsV2.TemplatePreview.smsIcon": "Sms Icon",
|
|
19318
|
+
"creatives.componentsV2.TemplatePreview.testMessage": "Test Message",
|
|
19319
|
+
"creatives.componentsV2.TemplatePreview.textMessageCharacter": "characters",
|
|
19320
|
+
"creatives.componentsV2.TemplatePreview.textMessageLabel": "text msg-",
|
|
19321
|
+
"creatives.componentsV2.TemplatePreview.videoPreviewTooltip": "This is just for preview purposes, video cannot be played here",
|
|
19106
19322
|
"creatives.componentsV2.Toastr.header": "This is the Toastr component !",
|
|
19107
19323
|
"creatives.componentsV2.ToastrMessage.close": "This is the ToastrMessage component !",
|
|
19108
19324
|
"creatives.componentsV2.ToastrMessage.header": "This is the ToastrMessage component !",
|
|
@@ -19113,6 +19329,7 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
19113
19329
|
"creatives.componentsV2.TopBar.logout": "Logout",
|
|
19114
19330
|
"creatives.componentsV2.TopBar.profile": "Profile",
|
|
19115
19331
|
"creatives.componentsV2.TopBar.settings": "Settings",
|
|
19332
|
+
"creatives.componentsV2.unbalanacedCurlyBraces": "Invalid label, please close all curly braces",
|
|
19116
19333
|
"creatives.componentsv2.MobilePushPreviewV2.header": "This is the MobilePushPreviewV2 component !",
|
|
19117
19334
|
"creatives.containers.Assets.Gallery.alphabetically": "Alphabetically",
|
|
19118
19335
|
"creatives.containers.Assets.Gallery.assetDeleteFailed": "Image deletion failed.",
|
|
@@ -19851,6 +20068,7 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
19851
20068
|
"creatives.containersV2.Creatives.templateDeleteConfirm": "Are you sure you want to delete this template?",
|
|
19852
20069
|
"creatives.containersV2.Creatives.templateDeleteSuccess": "SMS template deleted successfully",
|
|
19853
20070
|
"creatives.containersV2.Creatives.templateDuplicateSuccess": "Template duplicated successfully",
|
|
20071
|
+
"creatives.containersV2.Creatives.templateNameEmpty": "Template name cannot be empty",
|
|
19854
20072
|
"creatives.containersV2.Creatives.templateSelection": "Template selection",
|
|
19855
20073
|
"creatives.containersV2.Creatives.textTemplate": "Text",
|
|
19856
20074
|
"creatives.containersV2.Creatives.unMapButton": "Unmap",
|
|
@@ -19988,6 +20206,7 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
19988
20206
|
"creatives.containersV2.Email.yes": "Yes",
|
|
19989
20207
|
"creatives.containersV2.EmailWrapper.createMode": "How do you want to create ?",
|
|
19990
20208
|
"creatives.containersV2.EmailWrapper.creativeName": "Creative name",
|
|
20209
|
+
"creatives.containersV2.EmailWrapper.emptyTemplateName": "Please enter template name.",
|
|
19991
20210
|
"creatives.containersV2.EmailWrapper.header": "This is EmailWrapper container !",
|
|
19992
20211
|
"creatives.containersV2.EmailWrapper.invalidUploadFileDesc": "Please select another file with valid file format.",
|
|
19993
20212
|
"creatives.containersV2.EmailWrapper.invalidUploadFileError": "File cannot be uploaded.",
|
|
@@ -20149,7 +20368,8 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
20149
20368
|
"creatives.containersV2.LineImageCarousel.emptyTitleErrorMessage": "Template title can not be empty",
|
|
20150
20369
|
"creatives.containersV2.LineImageCarousel.enterTextActionTypeTitle": "Enter text",
|
|
20151
20370
|
"creatives.containersV2.LineImageCarousel.enterUriActionTypeTitle": "Enter url",
|
|
20152
|
-
"creatives.containersV2.LineImageCarousel.
|
|
20371
|
+
"creatives.containersV2.LineImageCarousel.imageDimenstionDesc": "Format: JPEG, PNG Dimensions: 1024px x 1024px Size: 1 MB",
|
|
20372
|
+
"creatives.containersV2.LineImageCarousel.imageDimenstionDescription": "Format: JPEG, PNG Aspect ratio: 1:1 Dimensions: 1024px x 1024px Size: 1 MB",
|
|
20153
20373
|
"creatives.containersV2.LineImageCarousel.imageGallery": "Gallery",
|
|
20154
20374
|
"creatives.containersV2.LineImageCarousel.imageReUpload": "Re upload",
|
|
20155
20375
|
"creatives.containersV2.LineImageCarousel.inValidUrliErrorMessage": "Action content uri is not valid",
|
|
@@ -20265,12 +20485,12 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
20265
20485
|
"creatives.containersV2.LineWrapper.changeModalDescription": "The already added content for this card will be lost by changing the content tab.",
|
|
20266
20486
|
"creatives.containersV2.LineWrapper.changeModalLabel": "Do you still want to make the changes to content tab",
|
|
20267
20487
|
"creatives.containersV2.LineWrapper.changeModalTitle": "Changing content tab?",
|
|
20488
|
+
"creatives.containersV2.LineWrapper.flexLabel": "Card message",
|
|
20268
20489
|
"creatives.containersV2.LineWrapper.imageLabel": "Image",
|
|
20269
20490
|
"creatives.containersV2.LineWrapper.imagemapLabel": "Rich message",
|
|
20270
20491
|
"creatives.containersV2.LineWrapper.modalDiscardChangesButtonLabel": "No",
|
|
20271
20492
|
"creatives.containersV2.LineWrapper.modalSaveChangesButtonLabel": "Yes, change",
|
|
20272
20493
|
"creatives.containersV2.LineWrapper.stickerLabel": "Sticker",
|
|
20273
|
-
"creatives.containersV2.LineWrapper.templateLabel": "Card message",
|
|
20274
20494
|
"creatives.containersV2.LineWrapper.textLabel": "Text",
|
|
20275
20495
|
"creatives.containersV2.LineWrapper.videoLabel": "Rich video message",
|
|
20276
20496
|
"creatives.containersV2.Login.header": "This is login container change !",
|
|
@@ -20425,7 +20645,162 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
20425
20645
|
"creatives.containersV2.MobilepushWrapper.image": "Image content",
|
|
20426
20646
|
"creatives.containersV2.MobilepushWrapper.text": "Text content",
|
|
20427
20647
|
"creatives.containersV2.NotFoundPage.header": "Looks like you are lost!",
|
|
20648
|
+
"creatives.containersV2.Rcs.addSmsCreative": "Add SMS creative",
|
|
20649
|
+
"creatives.containersV2.Rcs.buttonTextAndUrl": ", CTA button text & url",
|
|
20650
|
+
"creatives.containersV2.Rcs.disabledMediaTooltip": "Not yet enabled. Coming soon!",
|
|
20651
|
+
"creatives.containersV2.Rcs.dltEditHeader": "Edit SMS",
|
|
20652
|
+
"creatives.containersV2.Rcs.emptyTemplateDescErrorMessage": "Template message cannot be empty",
|
|
20653
|
+
"creatives.containersV2.Rcs.fallbackDesc": "We would suggest to add fallback SMS",
|
|
20654
|
+
"creatives.containersV2.Rcs.fallbackLabel": "Fallback SMS message",
|
|
20655
|
+
"creatives.containersV2.Rcs.fallbackMsgLenError": "Only 1 SMS (160 characters) allowed for fallback sms",
|
|
20656
|
+
"creatives.containersV2.Rcs.fallbackMsgPlaceholder": "Enter the text message content for fallback SMS",
|
|
20657
|
+
"creatives.containersV2.Rcs.fallbackPreviewtitle": "Preview of fallback SMS",
|
|
20658
|
+
"creatives.containersV2.Rcs.fallbackTextAreaLabel": "SMS message",
|
|
20659
|
+
"creatives.containersV2.Rcs.fallbackToolTip": "This is to deliver an RCS message as an SMS message to end users whose phones do not support RCS",
|
|
20660
|
+
"creatives.containersV2.Rcs.image": "and image",
|
|
20661
|
+
"creatives.containersV2.Rcs.mediaImage": "Image",
|
|
20662
|
+
"creatives.containersV2.Rcs.mediaLabel": "Media",
|
|
20663
|
+
"creatives.containersV2.Rcs.mediaNone": "None",
|
|
20664
|
+
"creatives.containersV2.Rcs.mediaVideo": "Video/Slideshow",
|
|
20665
|
+
"creatives.containersV2.Rcs.optional": "(Optional)",
|
|
20666
|
+
"creatives.containersV2.Rcs.rcsCreateNotification": "RCS template created successfully",
|
|
20667
|
+
"creatives.containersV2.Rcs.rcsDltDesc": "Select any of the existing templates",
|
|
20668
|
+
"creatives.containersV2.Rcs.rcsDltTitle": "SMS creative templates",
|
|
20669
|
+
"creatives.containersV2.Rcs.rcsDoneBtnToolTip": "Please add template name {type} to proceed further",
|
|
20670
|
+
"creatives.containersV2.Rcs.rcsEditNotification": "RCS template updated successfully",
|
|
20671
|
+
"creatives.containersV2.Rcs.templateButton": "Buttons",
|
|
20672
|
+
"creatives.containersV2.Rcs.templateButtonDesc": "Use buttons to redirect user to respective link or quick response/ action.",
|
|
20673
|
+
"creatives.containersV2.Rcs.templateCTAButton": "Call to action",
|
|
20674
|
+
"creatives.containersV2.Rcs.templateCTAButtonDesc": "Create up to 3 buttons that let customers respond to your messages or take action.",
|
|
20675
|
+
"creatives.containersV2.Rcs.templateDescLabel": "Text message",
|
|
20676
|
+
"creatives.containersV2.Rcs.templateDescLengthError": "Template message length cannot exceed 1000",
|
|
20677
|
+
"creatives.containersV2.Rcs.templateDescPlaceholder": "Enter the text message",
|
|
20678
|
+
"creatives.containersV2.Rcs.templateQRButton": "Quick reply",
|
|
20679
|
+
"creatives.containersV2.Rcs.templateQRButtonDesc": "Create up to 3 buttons that let customers respond to your messages or take action.",
|
|
20680
|
+
"creatives.containersV2.Rcs.templateTitle": "Title",
|
|
20681
|
+
"creatives.containersV2.Rcs.templateTitlePlaceholder": "Enter title",
|
|
20682
|
+
"creatives.containersV2.Rcs.textMessage": "and text message",
|
|
20683
|
+
"creatives.containersV2.Rcs.totalCharacters": "{smsCount} SMS ({number} characters)",
|
|
20428
20684
|
"creatives.containersV2.TagList.header": "This is TagList container !",
|
|
20685
|
+
"creatives.containersV2.Templates.accountConfigError": "This account is not configured properly. You can configure it",
|
|
20686
|
+
"creatives.containersV2.Templates.all": "All",
|
|
20687
|
+
"creatives.containersV2.Templates.alphabeticallyOption": "Alphabetically",
|
|
20688
|
+
"creatives.containersV2.Templates.areYouSureText": "Confirm delete template",
|
|
20689
|
+
"creatives.containersV2.Templates.blankTemplate": "Blank template",
|
|
20690
|
+
"creatives.containersV2.Templates.campaigns": "Campaigns",
|
|
20691
|
+
"creatives.containersV2.Templates.cancelText": "Cancel",
|
|
20692
|
+
"creatives.containersV2.Templates.category": "Category",
|
|
20693
|
+
"creatives.containersV2.Templates.chooseAccount": "Choose the account to send content",
|
|
20694
|
+
"creatives.containersV2.Templates.clearAll": "Clear all",
|
|
20695
|
+
"creatives.containersV2.Templates.continue": "Continue",
|
|
20696
|
+
"creatives.containersV2.Templates.createEmailActionButton": "Create email",
|
|
20697
|
+
"creatives.containersV2.Templates.createMessageContent": "New message",
|
|
20698
|
+
"creatives.containersV2.Templates.createNewActionButton": "Create new",
|
|
20699
|
+
"creatives.containersV2.Templates.createNewTemplateLink": "Create new template",
|
|
20700
|
+
"creatives.containersV2.Templates.createSmsActionButton": "Create SMS",
|
|
20701
|
+
"creatives.containersV2.Templates.creativeTemplates": "Creative templates",
|
|
20702
|
+
"creatives.containersV2.Templates.creativeTemplatesDesc": "(Select only one creative)",
|
|
20703
|
+
"creatives.containersV2.Templates.creatives": "Creatives",
|
|
20704
|
+
"creatives.containersV2.Templates.creativesTemplatesEdit": "Edit",
|
|
20705
|
+
"creatives.containersV2.Templates.creativesTemplatesSave": "Done",
|
|
20706
|
+
"creatives.containersV2.Templates.deleteButton": "Delete",
|
|
20707
|
+
"creatives.containersV2.Templates.deletedSuccssfully": "Template deleted successfully",
|
|
20708
|
+
"creatives.containersV2.Templates.deletingTemplate": "Deleting template...",
|
|
20709
|
+
"creatives.containersV2.Templates.deletionFailed": "Template deletion failed",
|
|
20710
|
+
"creatives.containersV2.Templates.duplicateButton": "Duplicate",
|
|
20711
|
+
"creatives.containersV2.Templates.duplicatingTemplate": "Duplicating template...",
|
|
20712
|
+
"creatives.containersV2.Templates.ebillHeader": "Ebill",
|
|
20713
|
+
"creatives.containersV2.Templates.ebillPreview": "Ebill preview",
|
|
20714
|
+
"creatives.containersV2.Templates.editButton": "Edit",
|
|
20715
|
+
"creatives.containersV2.Templates.editMessageContent": "Edit message content",
|
|
20716
|
+
"creatives.containersV2.Templates.emailHeader": "Email",
|
|
20717
|
+
"creatives.containersV2.Templates.emailPreview": "Email preview",
|
|
20718
|
+
"creatives.containersV2.Templates.emailTitleIllustartion": "Create an email {template}",
|
|
20719
|
+
"creatives.containersV2.Templates.gettingAllTemplates": "Getting all templates...",
|
|
20720
|
+
"creatives.containersV2.Templates.header": "This is Templates container !",
|
|
20721
|
+
"creatives.containersV2.Templates.imageCarouselTemplate": "Card message",
|
|
20722
|
+
"creatives.containersV2.Templates.imageMapTemplate": "Rich message",
|
|
20723
|
+
"creatives.containersV2.Templates.imageMapVideoTemplate": "Rich video message",
|
|
20724
|
+
"creatives.containersV2.Templates.imageTemplate": "Image",
|
|
20725
|
+
"creatives.containersV2.Templates.invalidUploadFileError": "File cannot be uploaded. Please select another file with valid file format.",
|
|
20726
|
+
"creatives.containersV2.Templates.layoutSelection": "Select layout",
|
|
20727
|
+
"creatives.containersV2.Templates.lineAccount": "Line account",
|
|
20728
|
+
"creatives.containersV2.Templates.lineHeader": "Line",
|
|
20729
|
+
"creatives.containersV2.Templates.mapTemplate": "Map template",
|
|
20730
|
+
"creatives.containersV2.Templates.mapTemplates": "Map templates",
|
|
20731
|
+
"creatives.containersV2.Templates.mobilepushAccount": "Mobilepush account",
|
|
20732
|
+
"creatives.containersV2.Templates.mobilepushHeader": "Mobile Push",
|
|
20733
|
+
"creatives.containersV2.Templates.mostRecentOption": "Most recent",
|
|
20734
|
+
"creatives.containersV2.Templates.newEmailTemplate": "New email {template}",
|
|
20735
|
+
"creatives.containersV2.Templates.newNotificationTemplate": "New notification {template}",
|
|
20736
|
+
"creatives.containersV2.Templates.newRCSTemplate": "New RCS {template}",
|
|
20737
|
+
"creatives.containersV2.Templates.newSMSTemplate": "New SMS {template}",
|
|
20738
|
+
"creatives.containersV2.Templates.newTemplate": "New template",
|
|
20739
|
+
"creatives.containersV2.Templates.newWhatsappTemplate": "Add new Whatsapp {template}",
|
|
20740
|
+
"creatives.containersV2.Templates.noAccountMessage": "Please select an account to proceed",
|
|
20741
|
+
"creatives.containersV2.Templates.noAccountsPresent": "Push notifications are not setup for your brand",
|
|
20742
|
+
"creatives.containersV2.Templates.noAccountsPresentFacebook": "Please setup the Facebook account & Facebook page to start creating content in Capillary's FB content creator.",
|
|
20743
|
+
"creatives.containersV2.Templates.noAccountsPresentLine": "Line accounts are not setup for your brand",
|
|
20744
|
+
"creatives.containersV2.Templates.noAccountsPresentViber": "Viber accounts are not setup for your brand",
|
|
20745
|
+
"creatives.containersV2.Templates.noAccountsPresentWeChat": "Wechat accounts are not setup for your brand",
|
|
20746
|
+
"creatives.containersV2.Templates.noAccountsPresentWhatsapp": "Whatsapp accounts are not setup for your brand",
|
|
20747
|
+
"creatives.containersV2.Templates.noApprovedWhatsappTemplatesDesc": "Please try creating a new template, once it is approved by Whatsapp it will be available here",
|
|
20748
|
+
"creatives.containersV2.Templates.noApprovedWhatsappTemplatesTitle": "Sorry, we couldn’t find any approved templates",
|
|
20749
|
+
"creatives.containersV2.Templates.noFilteredWhatsappTemplatesDesc": "Please try searching with another term or apply different filter",
|
|
20750
|
+
"creatives.containersV2.Templates.noFilteredWhatsappTemplatesTitle": "Sorry, we couldn’t find any matches",
|
|
20751
|
+
"creatives.containersV2.Templates.noTemplatesFound": "No templates found",
|
|
20752
|
+
"creatives.containersV2.Templates.noTemplatesMessage": "No templates available",
|
|
20753
|
+
"creatives.containersV2.Templates.preview": "Preview",
|
|
20754
|
+
"creatives.containersV2.Templates.previewButton": "Preview",
|
|
20755
|
+
"creatives.containersV2.Templates.previewGenerateText": "Preview is being generated...",
|
|
20756
|
+
"creatives.containersV2.Templates.promotional": "Promotional",
|
|
20757
|
+
"creatives.containersV2.Templates.pushTitleIllustartion": "Create a mobile push notification {template}",
|
|
20758
|
+
"creatives.containersV2.Templates.rcsDescIllustartion": "These templates can be reused when creating a new message content",
|
|
20759
|
+
"creatives.containersV2.Templates.rcsDltIllustrationDesc": "Please try creating a new DLT template in SMS section, once it is created, it will be available here",
|
|
20760
|
+
"creatives.containersV2.Templates.rcsDltIllustrationTitle": "Sorry, we couldn’t find any DLT templates",
|
|
20761
|
+
"creatives.containersV2.Templates.rcsTitleIllustartion": "Add new RCS creatives {template}",
|
|
20762
|
+
"creatives.containersV2.Templates.richMediaTemplates": "Rich media templates",
|
|
20763
|
+
"creatives.containersV2.Templates.searchText": "Search",
|
|
20764
|
+
"creatives.containersV2.Templates.selectAccount": "Select account",
|
|
20765
|
+
"creatives.containersV2.Templates.selectButton": "Select",
|
|
20766
|
+
"creatives.containersV2.Templates.selectDefaultButton": "Select",
|
|
20767
|
+
"creatives.containersV2.Templates.selectSmsHeader": "Select SMS template",
|
|
20768
|
+
"creatives.containersV2.Templates.selectWechatHeader": "Select WECHAT template",
|
|
20769
|
+
"creatives.containersV2.Templates.serviceExplicit": "Service explicit",
|
|
20770
|
+
"creatives.containersV2.Templates.serviceImplicit": "Service implicit",
|
|
20771
|
+
"creatives.containersV2.Templates.smsChannelTemplatesHeader": "SMS templates",
|
|
20772
|
+
"creatives.containersV2.Templates.smsHeader": "SMS",
|
|
20773
|
+
"creatives.containersV2.Templates.smsTitleIllustartion": "Create an SMS {template}",
|
|
20774
|
+
"creatives.containersV2.Templates.somethingWentWrong": "Something went wrong!!",
|
|
20775
|
+
"creatives.containersV2.Templates.sortBy": "Sort by",
|
|
20776
|
+
"creatives.containersV2.Templates.status": "Status",
|
|
20777
|
+
"creatives.containersV2.Templates.template": "template",
|
|
20778
|
+
"creatives.containersV2.Templates.templateDeleteConfirm": "Are you sure you wish to delete this template?",
|
|
20779
|
+
"creatives.containersV2.Templates.templateDeleteSuccess": "SMS template deleted successfully",
|
|
20780
|
+
"creatives.containersV2.Templates.templateDuplicateSuccess": "Template duplicated successfully",
|
|
20781
|
+
"creatives.containersV2.Templates.templateSelection": "Template selection",
|
|
20782
|
+
"creatives.containersV2.Templates.textTemplate": "Text",
|
|
20783
|
+
"creatives.containersV2.Templates.unMapButton": "Unmap",
|
|
20784
|
+
"creatives.containersV2.Templates.uploadFile": "Upload file",
|
|
20785
|
+
"creatives.containersV2.Templates.uploadTemplate": "Upload template",
|
|
20786
|
+
"creatives.containersV2.Templates.uploadedAt": "Modified",
|
|
20787
|
+
"creatives.containersV2.Templates.uploadedBy": "Uploaded by",
|
|
20788
|
+
"creatives.containersV2.Templates.uploadingFile": "Uploading file",
|
|
20789
|
+
"creatives.containersV2.Templates.useEditor": "Use editor",
|
|
20790
|
+
"creatives.containersV2.Templates.weChatRichmediaTemplate": "Richmedia template",
|
|
20791
|
+
"creatives.containersV2.Templates.wechatAccount": "Wechat account",
|
|
20792
|
+
"creatives.containersV2.Templates.wechatAccountNotConfigured": "Selected wechat account is not configured to create wechat templates",
|
|
20793
|
+
"creatives.containersV2.Templates.wechatChannelTemplatesHeader": "WECHAT templates",
|
|
20794
|
+
"creatives.containersV2.Templates.wechatHeader": "WECHAT",
|
|
20795
|
+
"creatives.containersV2.Templates.whatsappAccount": "Whatsapp account",
|
|
20796
|
+
"creatives.containersV2.Templates.whatsappDescIllustration": "These templates can be reused when creating a
|
|
20797
|
+
new message content.",
|
|
20798
|
+
"creatives.containersV2.Templates.whatsappMaxTemplates": "WhatsApp allows {maxCount} approved templates. To accommodate new approved templates either delete the existing one or reach out to Capillary POC to increase the limit.",
|
|
20799
|
+
"creatives.containersV2.Templates.whatsappOnlyApprovedTemplates": "Only \\"Approved\\" templates are available here, as you can use those templates to create a message.",
|
|
20800
|
+
"creatives.containersV2.Templates.whatsappOverview": "Overview",
|
|
20801
|
+
"creatives.containersV2.Templates.whatsappTitleIllustration": "Add a new Whatsapp creative {template}",
|
|
20802
|
+
"creatives.containersV2.Templates.yesText": "Yes, delete",
|
|
20803
|
+
"creatives.containersV2.Templates.zipUploadFailed": "Failed to upload zip file",
|
|
20429
20804
|
"creatives.containersV2.TemplatesV2.FTP": "FTP",
|
|
20430
20805
|
"creatives.containersV2.TemplatesV2.callTask": "Call Task",
|
|
20431
20806
|
"creatives.containersV2.TemplatesV2.creatives": "Creatives",
|
|
@@ -20494,6 +20869,8 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
20494
20869
|
"creatives.containersV2.Whatsapp.alertUpdate": "Alert update",
|
|
20495
20870
|
"creatives.containersV2.Whatsapp.alertUpdateTooltip": "Send important updates or news to customers.",
|
|
20496
20871
|
"creatives.containersV2.Whatsapp.approved": "Approved",
|
|
20872
|
+
"creatives.containersV2.Whatsapp.transactional": "Transactional",
|
|
20873
|
+
"creatives.containersV2.Whatsapp.transactionalTooltip": "Send account updates, order updates, alerts, and more to share important information.",
|
|
20497
20874
|
"creatives.containersV2.addLabels": "Add labels",
|
|
20498
20875
|
"creatives.containersV2.appName": "App Name",
|
|
20499
20876
|
"creatives.containersV2.applyNow": "Apply now",
|
|
@@ -20586,6 +20963,7 @@ exports[`line wrapper test/> should render line component old 1`] = `
|
|
|
20586
20963
|
"creatives.containersV2.richMedia.Create.wechatTitle": "Title",
|
|
20587
20964
|
"creatives.containersV2.richMedia.Create.wrongFormatFile": "Wrong file upoaded. Please upload image file",
|
|
20588
20965
|
"creatives.containersV2.richMedia.Create.wrongUrl": "Enter correct URL",
|
|
20966
|
+
"creatives.containersV2.save": "Save",
|
|
20589
20967
|
"creatives.containersV2.shopNow": "Shop Now",
|
|
20590
20968
|
"creatives.containersV2.signUp": "Sign Up",
|
|
20591
20969
|
"creatives.containersV2.subscribe": "Subscribe",
|