@capillarytech/creatives-library 7.10.13 → 7.10.15
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/config/app.js +1 -0
- package/package.json +1 -1
- package/v2Containers/SmsTrai/Create/index.js +5 -2
- package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +171 -6
- package/v2Containers/SmsTrai/Edit/index.js +3 -1
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +264 -224
package/config/app.js
CHANGED
|
@@ -17,6 +17,7 @@ const config = {
|
|
|
17
17
|
},
|
|
18
18
|
development: {
|
|
19
19
|
api_endpoint: 'https://crm-nightly-new.cc.capillarytech.com/arya/api/v1/creatives',
|
|
20
|
+
//api_endpoint: 'http://localhost:2022/arya/api/v1/creatives',
|
|
20
21
|
campaigns_api_endpoint: 'https://crm-nightly-new.cc.capillarytech.com/iris/v2/campaigns',
|
|
21
22
|
campaigns_api_org_endpoint: 'https://crm-nightly-new.cc.capillarytech.com/iris/v2/org/campaign',
|
|
22
23
|
auth_endpoint: 'https://crm-nightly-new.cc.capillarytech.com/arya/api/v1/auth',
|
package/package.json
CHANGED
|
@@ -113,8 +113,9 @@ export const SmsTraiCreate = (props) => {
|
|
|
113
113
|
|
|
114
114
|
const templateIdValidation = (templateId) => {
|
|
115
115
|
let isError = false;
|
|
116
|
+
const _templateId = templateId?.replace(/["']/g, '');
|
|
116
117
|
const numbersOnly = /^\d+$/;
|
|
117
|
-
if (
|
|
118
|
+
if (!numbersOnly.test(_templateId)) {
|
|
118
119
|
isError = true;
|
|
119
120
|
}
|
|
120
121
|
return isError;
|
|
@@ -154,7 +155,7 @@ export const SmsTraiCreate = (props) => {
|
|
|
154
155
|
columnErrorArray.push(`Only Templates with active status will be created.`);
|
|
155
156
|
} else if (index === templateIdIndex && templateIdValidation(cell)) {
|
|
156
157
|
columnErrorArray.push(
|
|
157
|
-
`${selectedTemplateIdAlias.toUpperCase()} is mandatory and ${selectedTemplateIdAlias.toUpperCase()} must
|
|
158
|
+
`${selectedTemplateIdAlias.toUpperCase()} is mandatory and ${selectedTemplateIdAlias.toUpperCase()} must be numeric.`,
|
|
158
159
|
);
|
|
159
160
|
} else if (!cell && ![headerIndex, approvalIndex, templateIdIndex, statusIndex].includes(index)) {
|
|
160
161
|
errorArray.push(`"${transformedResults[0][index]}"`);
|
|
@@ -475,6 +476,8 @@ export const SmsTraiCreate = (props) => {
|
|
|
475
476
|
arr.forEach((data, i) => {
|
|
476
477
|
obj[transformedResults[0][i]] = arr[i];
|
|
477
478
|
});
|
|
479
|
+
//removing additional single/double quotes from template_id
|
|
480
|
+
obj['template_id'] = obj['template_id']?.replace(/["']/g, '');
|
|
478
481
|
obj['unicode-validity'] = true;
|
|
479
482
|
obj['updated-sms-editor'] = '';
|
|
480
483
|
obj['var-mapped'] = {};
|
|
@@ -43,6 +43,33 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
|
|
|
43
43
|
"app.components.CapVideoUpload.videoSizeDescription": "File size: Up to {size}",
|
|
44
44
|
"app.components.TemplatePreview.includesOptoutTag": "Includes optout tag",
|
|
45
45
|
"app.components.TemplatePreview.optoutCharactersTotal": "Includes optout tag ({optoutUrlLength} characters)",
|
|
46
|
+
"app.v2containers.SmsTrai.Create.doneButtonLabel": "Done",
|
|
47
|
+
"app.v2containers.SmsTrai.Create.downloadInstruction": "Download {link} file.",
|
|
48
|
+
"app.v2containers.SmsTrai.Create.downloadIssues": "Download issues",
|
|
49
|
+
"app.v2containers.SmsTrai.Create.dropCsvFile": "Drag and drop a CSV file here",
|
|
50
|
+
"app.v2containers.SmsTrai.Create.duplicateEntriesInstruction": "Duplicate entries will be overwritten.",
|
|
51
|
+
"app.v2containers.SmsTrai.Create.failedToUpload": "Failed to upload",
|
|
52
|
+
"app.v2containers.SmsTrai.Create.failedVal": "{number} failed",
|
|
53
|
+
"app.v2containers.SmsTrai.Create.fileMaxlengthError": "More then 500 records are not allowed for the selected file.",
|
|
54
|
+
"app.v2containers.SmsTrai.Create.fileMinlengthError": "Please select a CSV file with minimum 1 row of data and 1 row of headers.",
|
|
55
|
+
"app.v2containers.SmsTrai.Create.headerAliasErrorDescription": "Please include mandatory field header. It can be {headerAliases}.",
|
|
56
|
+
"app.v2containers.SmsTrai.Create.mandatoryColsErrorDescription": "Mandatory fields: Template name, Template ID, Type, Sender ID, Approval status, Status and Template message are required for templates.",
|
|
57
|
+
"app.v2containers.SmsTrai.Create.mandatoryColsInstruction": "Please ensure that each template has the following mandatory fields: Template name,Template ID, Type, Sender ID, Approval status, Status, Template message.",
|
|
58
|
+
"app.v2containers.SmsTrai.Create.nonCsvErrorDescription": "Please select a csv file.",
|
|
59
|
+
"app.v2containers.SmsTrai.Create.numberOfRecords": "{value, number} Record{value, plural, one {} other {s}}",
|
|
60
|
+
"app.v2containers.SmsTrai.Create.or": "OR",
|
|
61
|
+
"app.v2containers.SmsTrai.Create.passedVal": "{number} passed",
|
|
62
|
+
"app.v2containers.SmsTrai.Create.repetitiveColsErrorDescription": "Please remove repetitive fields ({repetitiveCols}) from the file.",
|
|
63
|
+
"app.v2containers.SmsTrai.Create.sampleCsv": "Sample CSV",
|
|
64
|
+
"app.v2containers.SmsTrai.Create.selectFileFromComputer": "Select a file from computer",
|
|
65
|
+
"app.v2containers.SmsTrai.Create.smsCreateNotification": "Sms templates created successfully",
|
|
66
|
+
"app.v2containers.SmsTrai.Create.statusAliasErrorDescription": "Please include mandatory field status. It can be {statusAliases}.",
|
|
67
|
+
"app.v2containers.SmsTrai.Create.statusInstruction": "Only the \\"Approved\\" and “Active” templates will be uploaded.",
|
|
68
|
+
"app.v2containers.SmsTrai.Create.templateIdAliasErrorDescription": "Please include mandatory field template id. It can be {templateIdAliases}.",
|
|
69
|
+
"app.v2containers.SmsTrai.Create.templateMessageAliasErrorDescription": "Please include mandatory field template message. It can be {templateMessageAliases}.",
|
|
70
|
+
"app.v2containers.SmsTrai.Create.uploadFile": "Upload file",
|
|
71
|
+
"app.v2containers.SmsTrai.Create.uploadInstructions": "Upload Instructions",
|
|
72
|
+
"app.v2containers.SmsTrai.Create.uploadLimitInstruction": "Upload a file of <= 500 rows.",
|
|
46
73
|
"creatives.components.AccessForbidden.forbiddenDesc": "This page access has not been provided to you.",
|
|
47
74
|
"creatives.components.AccessForbidden.forbiddenHeader": "Access Forbidden",
|
|
48
75
|
"creatives.components.BreadCrumbs.header": "This is the BreadCrumbs component !",
|
|
@@ -149,6 +176,7 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
|
|
|
149
176
|
"creatives.componentsV2.CapTagList.dynamic_days_before_expiry": "Dynamic days before expiry",
|
|
150
177
|
"creatives.componentsV2.CapTagList.gettingTags": "Getting tags...",
|
|
151
178
|
"creatives.componentsV2.CapTagList.loyalty": "Loyalty",
|
|
179
|
+
"creatives.componentsV2.CapTagList.loyaltyAttributeDisable": "You won’t be able to add loyalty related attributes since the loyalty program/ card series is None.",
|
|
152
180
|
"creatives.componentsV2.CapTagList.numberOfDaysBeforeExpiry": "Number of days before expiry",
|
|
153
181
|
"creatives.componentsV2.CapTagList.outbound": "Outbound",
|
|
154
182
|
"creatives.componentsV2.CapTagList.search": "Search",
|
|
@@ -926,6 +954,7 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
|
|
|
926
954
|
"creatives.containersV2.Create.unicodeLabel": "Allow unicode characters",
|
|
927
955
|
"creatives.containersV2.Create.validationError": "Validation error",
|
|
928
956
|
"creatives.containersV2.Create.versionLabel": "Version",
|
|
957
|
+
"creatives.containersV2.Creatives.UploadSMStemplates": "Upload SMS templates",
|
|
929
958
|
"creatives.containersV2.Creatives.addContent": "Add content",
|
|
930
959
|
"creatives.containersV2.Creatives.alphabeticallyOption": "Alphabetically",
|
|
931
960
|
"creatives.containersV2.Creatives.blankTemplate": "Blank template",
|
|
@@ -1619,6 +1648,7 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
|
|
|
1619
1648
|
"creatives.containersV2.Templates.preview": "Preview",
|
|
1620
1649
|
"creatives.containersV2.Templates.previewButton": "Preview",
|
|
1621
1650
|
"creatives.containersV2.Templates.previewGenerateText": "Preview is being generated...",
|
|
1651
|
+
"creatives.containersV2.Templates.promotional": "Promotional",
|
|
1622
1652
|
"creatives.containersV2.Templates.pushTitleIllustartion": "Create a mobile push notification {template}",
|
|
1623
1653
|
"creatives.containersV2.Templates.richMediaTemplates": "Rich media templates",
|
|
1624
1654
|
"creatives.containersV2.Templates.searchText": "Search",
|
|
@@ -1627,6 +1657,8 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
|
|
|
1627
1657
|
"creatives.containersV2.Templates.selectDefaultButton": "Select",
|
|
1628
1658
|
"creatives.containersV2.Templates.selectSmsHeader": "Select SMS template",
|
|
1629
1659
|
"creatives.containersV2.Templates.selectWechatHeader": "Select WECHAT template",
|
|
1660
|
+
"creatives.containersV2.Templates.serviceExplicit": "Service explicit",
|
|
1661
|
+
"creatives.containersV2.Templates.serviceImplicit": "Service implicit",
|
|
1630
1662
|
"creatives.containersV2.Templates.smsChannelTemplatesHeader": "SMS templates",
|
|
1631
1663
|
"creatives.containersV2.Templates.smsHeader": "SMS",
|
|
1632
1664
|
"creatives.containersV2.Templates.smsTitleIllustartion": "Create an SMS {template}",
|
|
@@ -1640,6 +1672,7 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
|
|
|
1640
1672
|
"creatives.containersV2.Templates.textTemplate": "Text",
|
|
1641
1673
|
"creatives.containersV2.Templates.unMapButton": "Unmap",
|
|
1642
1674
|
"creatives.containersV2.Templates.uploadFile": "Upload file",
|
|
1675
|
+
"creatives.containersV2.Templates.uploadTemplate": "Upload template",
|
|
1643
1676
|
"creatives.containersV2.Templates.uploadedAt": "Modified",
|
|
1644
1677
|
"creatives.containersV2.Templates.uploadedBy": "Uploaded by",
|
|
1645
1678
|
"creatives.containersV2.Templates.uploadingFile": "Uploading file",
|
|
@@ -2657,6 +2690,33 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
|
|
|
2657
2690
|
"app.components.CapVideoUpload.videoSizeDescription": "File size: Up to {size}",
|
|
2658
2691
|
"app.components.TemplatePreview.includesOptoutTag": "Includes optout tag",
|
|
2659
2692
|
"app.components.TemplatePreview.optoutCharactersTotal": "Includes optout tag ({optoutUrlLength} characters)",
|
|
2693
|
+
"app.v2containers.SmsTrai.Create.doneButtonLabel": "Done",
|
|
2694
|
+
"app.v2containers.SmsTrai.Create.downloadInstruction": "Download {link} file.",
|
|
2695
|
+
"app.v2containers.SmsTrai.Create.downloadIssues": "Download issues",
|
|
2696
|
+
"app.v2containers.SmsTrai.Create.dropCsvFile": "Drag and drop a CSV file here",
|
|
2697
|
+
"app.v2containers.SmsTrai.Create.duplicateEntriesInstruction": "Duplicate entries will be overwritten.",
|
|
2698
|
+
"app.v2containers.SmsTrai.Create.failedToUpload": "Failed to upload",
|
|
2699
|
+
"app.v2containers.SmsTrai.Create.failedVal": "{number} failed",
|
|
2700
|
+
"app.v2containers.SmsTrai.Create.fileMaxlengthError": "More then 500 records are not allowed for the selected file.",
|
|
2701
|
+
"app.v2containers.SmsTrai.Create.fileMinlengthError": "Please select a CSV file with minimum 1 row of data and 1 row of headers.",
|
|
2702
|
+
"app.v2containers.SmsTrai.Create.headerAliasErrorDescription": "Please include mandatory field header. It can be {headerAliases}.",
|
|
2703
|
+
"app.v2containers.SmsTrai.Create.mandatoryColsErrorDescription": "Mandatory fields: Template name, Template ID, Type, Sender ID, Approval status, Status and Template message are required for templates.",
|
|
2704
|
+
"app.v2containers.SmsTrai.Create.mandatoryColsInstruction": "Please ensure that each template has the following mandatory fields: Template name,Template ID, Type, Sender ID, Approval status, Status, Template message.",
|
|
2705
|
+
"app.v2containers.SmsTrai.Create.nonCsvErrorDescription": "Please select a csv file.",
|
|
2706
|
+
"app.v2containers.SmsTrai.Create.numberOfRecords": "{value, number} Record{value, plural, one {} other {s}}",
|
|
2707
|
+
"app.v2containers.SmsTrai.Create.or": "OR",
|
|
2708
|
+
"app.v2containers.SmsTrai.Create.passedVal": "{number} passed",
|
|
2709
|
+
"app.v2containers.SmsTrai.Create.repetitiveColsErrorDescription": "Please remove repetitive fields ({repetitiveCols}) from the file.",
|
|
2710
|
+
"app.v2containers.SmsTrai.Create.sampleCsv": "Sample CSV",
|
|
2711
|
+
"app.v2containers.SmsTrai.Create.selectFileFromComputer": "Select a file from computer",
|
|
2712
|
+
"app.v2containers.SmsTrai.Create.smsCreateNotification": "Sms templates created successfully",
|
|
2713
|
+
"app.v2containers.SmsTrai.Create.statusAliasErrorDescription": "Please include mandatory field status. It can be {statusAliases}.",
|
|
2714
|
+
"app.v2containers.SmsTrai.Create.statusInstruction": "Only the \\"Approved\\" and “Active” templates will be uploaded.",
|
|
2715
|
+
"app.v2containers.SmsTrai.Create.templateIdAliasErrorDescription": "Please include mandatory field template id. It can be {templateIdAliases}.",
|
|
2716
|
+
"app.v2containers.SmsTrai.Create.templateMessageAliasErrorDescription": "Please include mandatory field template message. It can be {templateMessageAliases}.",
|
|
2717
|
+
"app.v2containers.SmsTrai.Create.uploadFile": "Upload file",
|
|
2718
|
+
"app.v2containers.SmsTrai.Create.uploadInstructions": "Upload Instructions",
|
|
2719
|
+
"app.v2containers.SmsTrai.Create.uploadLimitInstruction": "Upload a file of <= 500 rows.",
|
|
2660
2720
|
"creatives.components.AccessForbidden.forbiddenDesc": "This page access has not been provided to you.",
|
|
2661
2721
|
"creatives.components.AccessForbidden.forbiddenHeader": "Access Forbidden",
|
|
2662
2722
|
"creatives.components.BreadCrumbs.header": "This is the BreadCrumbs component !",
|
|
@@ -2763,6 +2823,7 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
|
|
|
2763
2823
|
"creatives.componentsV2.CapTagList.dynamic_days_before_expiry": "Dynamic days before expiry",
|
|
2764
2824
|
"creatives.componentsV2.CapTagList.gettingTags": "Getting tags...",
|
|
2765
2825
|
"creatives.componentsV2.CapTagList.loyalty": "Loyalty",
|
|
2826
|
+
"creatives.componentsV2.CapTagList.loyaltyAttributeDisable": "You won’t be able to add loyalty related attributes since the loyalty program/ card series is None.",
|
|
2766
2827
|
"creatives.componentsV2.CapTagList.numberOfDaysBeforeExpiry": "Number of days before expiry",
|
|
2767
2828
|
"creatives.componentsV2.CapTagList.outbound": "Outbound",
|
|
2768
2829
|
"creatives.componentsV2.CapTagList.search": "Search",
|
|
@@ -3540,6 +3601,7 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
|
|
|
3540
3601
|
"creatives.containersV2.Create.unicodeLabel": "Allow unicode characters",
|
|
3541
3602
|
"creatives.containersV2.Create.validationError": "Validation error",
|
|
3542
3603
|
"creatives.containersV2.Create.versionLabel": "Version",
|
|
3604
|
+
"creatives.containersV2.Creatives.UploadSMStemplates": "Upload SMS templates",
|
|
3543
3605
|
"creatives.containersV2.Creatives.addContent": "Add content",
|
|
3544
3606
|
"creatives.containersV2.Creatives.alphabeticallyOption": "Alphabetically",
|
|
3545
3607
|
"creatives.containersV2.Creatives.blankTemplate": "Blank template",
|
|
@@ -4233,6 +4295,7 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
|
|
|
4233
4295
|
"creatives.containersV2.Templates.preview": "Preview",
|
|
4234
4296
|
"creatives.containersV2.Templates.previewButton": "Preview",
|
|
4235
4297
|
"creatives.containersV2.Templates.previewGenerateText": "Preview is being generated...",
|
|
4298
|
+
"creatives.containersV2.Templates.promotional": "Promotional",
|
|
4236
4299
|
"creatives.containersV2.Templates.pushTitleIllustartion": "Create a mobile push notification {template}",
|
|
4237
4300
|
"creatives.containersV2.Templates.richMediaTemplates": "Rich media templates",
|
|
4238
4301
|
"creatives.containersV2.Templates.searchText": "Search",
|
|
@@ -4241,6 +4304,8 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
|
|
|
4241
4304
|
"creatives.containersV2.Templates.selectDefaultButton": "Select",
|
|
4242
4305
|
"creatives.containersV2.Templates.selectSmsHeader": "Select SMS template",
|
|
4243
4306
|
"creatives.containersV2.Templates.selectWechatHeader": "Select WECHAT template",
|
|
4307
|
+
"creatives.containersV2.Templates.serviceExplicit": "Service explicit",
|
|
4308
|
+
"creatives.containersV2.Templates.serviceImplicit": "Service implicit",
|
|
4244
4309
|
"creatives.containersV2.Templates.smsChannelTemplatesHeader": "SMS templates",
|
|
4245
4310
|
"creatives.containersV2.Templates.smsHeader": "SMS",
|
|
4246
4311
|
"creatives.containersV2.Templates.smsTitleIllustartion": "Create an SMS {template}",
|
|
@@ -4254,6 +4319,7 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
|
|
|
4254
4319
|
"creatives.containersV2.Templates.textTemplate": "Text",
|
|
4255
4320
|
"creatives.containersV2.Templates.unMapButton": "Unmap",
|
|
4256
4321
|
"creatives.containersV2.Templates.uploadFile": "Upload file",
|
|
4322
|
+
"creatives.containersV2.Templates.uploadTemplate": "Upload template",
|
|
4257
4323
|
"creatives.containersV2.Templates.uploadedAt": "Modified",
|
|
4258
4324
|
"creatives.containersV2.Templates.uploadedBy": "Uploaded by",
|
|
4259
4325
|
"creatives.containersV2.Templates.uploadingFile": "Uploading file",
|
|
@@ -5113,6 +5179,33 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
|
|
|
5113
5179
|
"app.components.CapVideoUpload.videoSizeDescription": "File size: Up to {size}",
|
|
5114
5180
|
"app.components.TemplatePreview.includesOptoutTag": "Includes optout tag",
|
|
5115
5181
|
"app.components.TemplatePreview.optoutCharactersTotal": "Includes optout tag ({optoutUrlLength} characters)",
|
|
5182
|
+
"app.v2containers.SmsTrai.Create.doneButtonLabel": "Done",
|
|
5183
|
+
"app.v2containers.SmsTrai.Create.downloadInstruction": "Download {link} file.",
|
|
5184
|
+
"app.v2containers.SmsTrai.Create.downloadIssues": "Download issues",
|
|
5185
|
+
"app.v2containers.SmsTrai.Create.dropCsvFile": "Drag and drop a CSV file here",
|
|
5186
|
+
"app.v2containers.SmsTrai.Create.duplicateEntriesInstruction": "Duplicate entries will be overwritten.",
|
|
5187
|
+
"app.v2containers.SmsTrai.Create.failedToUpload": "Failed to upload",
|
|
5188
|
+
"app.v2containers.SmsTrai.Create.failedVal": "{number} failed",
|
|
5189
|
+
"app.v2containers.SmsTrai.Create.fileMaxlengthError": "More then 500 records are not allowed for the selected file.",
|
|
5190
|
+
"app.v2containers.SmsTrai.Create.fileMinlengthError": "Please select a CSV file with minimum 1 row of data and 1 row of headers.",
|
|
5191
|
+
"app.v2containers.SmsTrai.Create.headerAliasErrorDescription": "Please include mandatory field header. It can be {headerAliases}.",
|
|
5192
|
+
"app.v2containers.SmsTrai.Create.mandatoryColsErrorDescription": "Mandatory fields: Template name, Template ID, Type, Sender ID, Approval status, Status and Template message are required for templates.",
|
|
5193
|
+
"app.v2containers.SmsTrai.Create.mandatoryColsInstruction": "Please ensure that each template has the following mandatory fields: Template name,Template ID, Type, Sender ID, Approval status, Status, Template message.",
|
|
5194
|
+
"app.v2containers.SmsTrai.Create.nonCsvErrorDescription": "Please select a csv file.",
|
|
5195
|
+
"app.v2containers.SmsTrai.Create.numberOfRecords": "{value, number} Record{value, plural, one {} other {s}}",
|
|
5196
|
+
"app.v2containers.SmsTrai.Create.or": "OR",
|
|
5197
|
+
"app.v2containers.SmsTrai.Create.passedVal": "{number} passed",
|
|
5198
|
+
"app.v2containers.SmsTrai.Create.repetitiveColsErrorDescription": "Please remove repetitive fields ({repetitiveCols}) from the file.",
|
|
5199
|
+
"app.v2containers.SmsTrai.Create.sampleCsv": "Sample CSV",
|
|
5200
|
+
"app.v2containers.SmsTrai.Create.selectFileFromComputer": "Select a file from computer",
|
|
5201
|
+
"app.v2containers.SmsTrai.Create.smsCreateNotification": "Sms templates created successfully",
|
|
5202
|
+
"app.v2containers.SmsTrai.Create.statusAliasErrorDescription": "Please include mandatory field status. It can be {statusAliases}.",
|
|
5203
|
+
"app.v2containers.SmsTrai.Create.statusInstruction": "Only the \\"Approved\\" and “Active” templates will be uploaded.",
|
|
5204
|
+
"app.v2containers.SmsTrai.Create.templateIdAliasErrorDescription": "Please include mandatory field template id. It can be {templateIdAliases}.",
|
|
5205
|
+
"app.v2containers.SmsTrai.Create.templateMessageAliasErrorDescription": "Please include mandatory field template message. It can be {templateMessageAliases}.",
|
|
5206
|
+
"app.v2containers.SmsTrai.Create.uploadFile": "Upload file",
|
|
5207
|
+
"app.v2containers.SmsTrai.Create.uploadInstructions": "Upload Instructions",
|
|
5208
|
+
"app.v2containers.SmsTrai.Create.uploadLimitInstruction": "Upload a file of <= 500 rows.",
|
|
5116
5209
|
"creatives.components.AccessForbidden.forbiddenDesc": "This page access has not been provided to you.",
|
|
5117
5210
|
"creatives.components.AccessForbidden.forbiddenHeader": "Access Forbidden",
|
|
5118
5211
|
"creatives.components.BreadCrumbs.header": "This is the BreadCrumbs component !",
|
|
@@ -5219,6 +5312,7 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
|
|
|
5219
5312
|
"creatives.componentsV2.CapTagList.dynamic_days_before_expiry": "Dynamic days before expiry",
|
|
5220
5313
|
"creatives.componentsV2.CapTagList.gettingTags": "Getting tags...",
|
|
5221
5314
|
"creatives.componentsV2.CapTagList.loyalty": "Loyalty",
|
|
5315
|
+
"creatives.componentsV2.CapTagList.loyaltyAttributeDisable": "You won’t be able to add loyalty related attributes since the loyalty program/ card series is None.",
|
|
5222
5316
|
"creatives.componentsV2.CapTagList.numberOfDaysBeforeExpiry": "Number of days before expiry",
|
|
5223
5317
|
"creatives.componentsV2.CapTagList.outbound": "Outbound",
|
|
5224
5318
|
"creatives.componentsV2.CapTagList.search": "Search",
|
|
@@ -5996,6 +6090,7 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
|
|
|
5996
6090
|
"creatives.containersV2.Create.unicodeLabel": "Allow unicode characters",
|
|
5997
6091
|
"creatives.containersV2.Create.validationError": "Validation error",
|
|
5998
6092
|
"creatives.containersV2.Create.versionLabel": "Version",
|
|
6093
|
+
"creatives.containersV2.Creatives.UploadSMStemplates": "Upload SMS templates",
|
|
5999
6094
|
"creatives.containersV2.Creatives.addContent": "Add content",
|
|
6000
6095
|
"creatives.containersV2.Creatives.alphabeticallyOption": "Alphabetically",
|
|
6001
6096
|
"creatives.containersV2.Creatives.blankTemplate": "Blank template",
|
|
@@ -6689,6 +6784,7 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
|
|
|
6689
6784
|
"creatives.containersV2.Templates.preview": "Preview",
|
|
6690
6785
|
"creatives.containersV2.Templates.previewButton": "Preview",
|
|
6691
6786
|
"creatives.containersV2.Templates.previewGenerateText": "Preview is being generated...",
|
|
6787
|
+
"creatives.containersV2.Templates.promotional": "Promotional",
|
|
6692
6788
|
"creatives.containersV2.Templates.pushTitleIllustartion": "Create a mobile push notification {template}",
|
|
6693
6789
|
"creatives.containersV2.Templates.richMediaTemplates": "Rich media templates",
|
|
6694
6790
|
"creatives.containersV2.Templates.searchText": "Search",
|
|
@@ -6697,6 +6793,8 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
|
|
|
6697
6793
|
"creatives.containersV2.Templates.selectDefaultButton": "Select",
|
|
6698
6794
|
"creatives.containersV2.Templates.selectSmsHeader": "Select SMS template",
|
|
6699
6795
|
"creatives.containersV2.Templates.selectWechatHeader": "Select WECHAT template",
|
|
6796
|
+
"creatives.containersV2.Templates.serviceExplicit": "Service explicit",
|
|
6797
|
+
"creatives.containersV2.Templates.serviceImplicit": "Service implicit",
|
|
6700
6798
|
"creatives.containersV2.Templates.smsChannelTemplatesHeader": "SMS templates",
|
|
6701
6799
|
"creatives.containersV2.Templates.smsHeader": "SMS",
|
|
6702
6800
|
"creatives.containersV2.Templates.smsTitleIllustartion": "Create an SMS {template}",
|
|
@@ -6710,6 +6808,7 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
|
|
|
6710
6808
|
"creatives.containersV2.Templates.textTemplate": "Text",
|
|
6711
6809
|
"creatives.containersV2.Templates.unMapButton": "Unmap",
|
|
6712
6810
|
"creatives.containersV2.Templates.uploadFile": "Upload file",
|
|
6811
|
+
"creatives.containersV2.Templates.uploadTemplate": "Upload template",
|
|
6713
6812
|
"creatives.containersV2.Templates.uploadedAt": "Modified",
|
|
6714
6813
|
"creatives.containersV2.Templates.uploadedBy": "Uploaded by",
|
|
6715
6814
|
"creatives.containersV2.Templates.uploadingFile": "Uploading file",
|
|
@@ -7106,7 +7205,7 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
|
|
|
7106
7205
|
className="validation-count-label CapLabel-n7zsf5-0 hlCZTB"
|
|
7107
7206
|
type="label9"
|
|
7108
7207
|
>
|
|
7109
|
-
1 passed
|
|
7208
|
+
1 passed
|
|
7110
7209
|
</div>
|
|
7111
7210
|
</CapLabel>
|
|
7112
7211
|
<CapIcon
|
|
@@ -7186,7 +7285,7 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
|
|
|
7186
7285
|
className="validation-count-label CapLabel-n7zsf5-0 hlCZTB"
|
|
7187
7286
|
type="label9"
|
|
7188
7287
|
>
|
|
7189
|
-
1 failed
|
|
7288
|
+
1 failed
|
|
7190
7289
|
</div>
|
|
7191
7290
|
</CapLabel>
|
|
7192
7291
|
<CapIcon
|
|
@@ -7904,6 +8003,33 @@ TC",
|
|
|
7904
8003
|
"app.components.CapVideoUpload.videoSizeDescription": "File size: Up to {size}",
|
|
7905
8004
|
"app.components.TemplatePreview.includesOptoutTag": "Includes optout tag",
|
|
7906
8005
|
"app.components.TemplatePreview.optoutCharactersTotal": "Includes optout tag ({optoutUrlLength} characters)",
|
|
8006
|
+
"app.v2containers.SmsTrai.Create.doneButtonLabel": "Done",
|
|
8007
|
+
"app.v2containers.SmsTrai.Create.downloadInstruction": "Download {link} file.",
|
|
8008
|
+
"app.v2containers.SmsTrai.Create.downloadIssues": "Download issues",
|
|
8009
|
+
"app.v2containers.SmsTrai.Create.dropCsvFile": "Drag and drop a CSV file here",
|
|
8010
|
+
"app.v2containers.SmsTrai.Create.duplicateEntriesInstruction": "Duplicate entries will be overwritten.",
|
|
8011
|
+
"app.v2containers.SmsTrai.Create.failedToUpload": "Failed to upload",
|
|
8012
|
+
"app.v2containers.SmsTrai.Create.failedVal": "{number} failed",
|
|
8013
|
+
"app.v2containers.SmsTrai.Create.fileMaxlengthError": "More then 500 records are not allowed for the selected file.",
|
|
8014
|
+
"app.v2containers.SmsTrai.Create.fileMinlengthError": "Please select a CSV file with minimum 1 row of data and 1 row of headers.",
|
|
8015
|
+
"app.v2containers.SmsTrai.Create.headerAliasErrorDescription": "Please include mandatory field header. It can be {headerAliases}.",
|
|
8016
|
+
"app.v2containers.SmsTrai.Create.mandatoryColsErrorDescription": "Mandatory fields: Template name, Template ID, Type, Sender ID, Approval status, Status and Template message are required for templates.",
|
|
8017
|
+
"app.v2containers.SmsTrai.Create.mandatoryColsInstruction": "Please ensure that each template has the following mandatory fields: Template name,Template ID, Type, Sender ID, Approval status, Status, Template message.",
|
|
8018
|
+
"app.v2containers.SmsTrai.Create.nonCsvErrorDescription": "Please select a csv file.",
|
|
8019
|
+
"app.v2containers.SmsTrai.Create.numberOfRecords": "{value, number} Record{value, plural, one {} other {s}}",
|
|
8020
|
+
"app.v2containers.SmsTrai.Create.or": "OR",
|
|
8021
|
+
"app.v2containers.SmsTrai.Create.passedVal": "{number} passed",
|
|
8022
|
+
"app.v2containers.SmsTrai.Create.repetitiveColsErrorDescription": "Please remove repetitive fields ({repetitiveCols}) from the file.",
|
|
8023
|
+
"app.v2containers.SmsTrai.Create.sampleCsv": "Sample CSV",
|
|
8024
|
+
"app.v2containers.SmsTrai.Create.selectFileFromComputer": "Select a file from computer",
|
|
8025
|
+
"app.v2containers.SmsTrai.Create.smsCreateNotification": "Sms templates created successfully",
|
|
8026
|
+
"app.v2containers.SmsTrai.Create.statusAliasErrorDescription": "Please include mandatory field status. It can be {statusAliases}.",
|
|
8027
|
+
"app.v2containers.SmsTrai.Create.statusInstruction": "Only the \\"Approved\\" and “Active” templates will be uploaded.",
|
|
8028
|
+
"app.v2containers.SmsTrai.Create.templateIdAliasErrorDescription": "Please include mandatory field template id. It can be {templateIdAliases}.",
|
|
8029
|
+
"app.v2containers.SmsTrai.Create.templateMessageAliasErrorDescription": "Please include mandatory field template message. It can be {templateMessageAliases}.",
|
|
8030
|
+
"app.v2containers.SmsTrai.Create.uploadFile": "Upload file",
|
|
8031
|
+
"app.v2containers.SmsTrai.Create.uploadInstructions": "Upload Instructions",
|
|
8032
|
+
"app.v2containers.SmsTrai.Create.uploadLimitInstruction": "Upload a file of <= 500 rows.",
|
|
7907
8033
|
"creatives.components.AccessForbidden.forbiddenDesc": "This page access has not been provided to you.",
|
|
7908
8034
|
"creatives.components.AccessForbidden.forbiddenHeader": "Access Forbidden",
|
|
7909
8035
|
"creatives.components.BreadCrumbs.header": "This is the BreadCrumbs component !",
|
|
@@ -8010,6 +8136,7 @@ TC",
|
|
|
8010
8136
|
"creatives.componentsV2.CapTagList.dynamic_days_before_expiry": "Dynamic days before expiry",
|
|
8011
8137
|
"creatives.componentsV2.CapTagList.gettingTags": "Getting tags...",
|
|
8012
8138
|
"creatives.componentsV2.CapTagList.loyalty": "Loyalty",
|
|
8139
|
+
"creatives.componentsV2.CapTagList.loyaltyAttributeDisable": "You won’t be able to add loyalty related attributes since the loyalty program/ card series is None.",
|
|
8013
8140
|
"creatives.componentsV2.CapTagList.numberOfDaysBeforeExpiry": "Number of days before expiry",
|
|
8014
8141
|
"creatives.componentsV2.CapTagList.outbound": "Outbound",
|
|
8015
8142
|
"creatives.componentsV2.CapTagList.search": "Search",
|
|
@@ -8787,6 +8914,7 @@ TC",
|
|
|
8787
8914
|
"creatives.containersV2.Create.unicodeLabel": "Allow unicode characters",
|
|
8788
8915
|
"creatives.containersV2.Create.validationError": "Validation error",
|
|
8789
8916
|
"creatives.containersV2.Create.versionLabel": "Version",
|
|
8917
|
+
"creatives.containersV2.Creatives.UploadSMStemplates": "Upload SMS templates",
|
|
8790
8918
|
"creatives.containersV2.Creatives.addContent": "Add content",
|
|
8791
8919
|
"creatives.containersV2.Creatives.alphabeticallyOption": "Alphabetically",
|
|
8792
8920
|
"creatives.containersV2.Creatives.blankTemplate": "Blank template",
|
|
@@ -9480,6 +9608,7 @@ TC",
|
|
|
9480
9608
|
"creatives.containersV2.Templates.preview": "Preview",
|
|
9481
9609
|
"creatives.containersV2.Templates.previewButton": "Preview",
|
|
9482
9610
|
"creatives.containersV2.Templates.previewGenerateText": "Preview is being generated...",
|
|
9611
|
+
"creatives.containersV2.Templates.promotional": "Promotional",
|
|
9483
9612
|
"creatives.containersV2.Templates.pushTitleIllustartion": "Create a mobile push notification {template}",
|
|
9484
9613
|
"creatives.containersV2.Templates.richMediaTemplates": "Rich media templates",
|
|
9485
9614
|
"creatives.containersV2.Templates.searchText": "Search",
|
|
@@ -9488,6 +9617,8 @@ TC",
|
|
|
9488
9617
|
"creatives.containersV2.Templates.selectDefaultButton": "Select",
|
|
9489
9618
|
"creatives.containersV2.Templates.selectSmsHeader": "Select SMS template",
|
|
9490
9619
|
"creatives.containersV2.Templates.selectWechatHeader": "Select WECHAT template",
|
|
9620
|
+
"creatives.containersV2.Templates.serviceExplicit": "Service explicit",
|
|
9621
|
+
"creatives.containersV2.Templates.serviceImplicit": "Service implicit",
|
|
9491
9622
|
"creatives.containersV2.Templates.smsChannelTemplatesHeader": "SMS templates",
|
|
9492
9623
|
"creatives.containersV2.Templates.smsHeader": "SMS",
|
|
9493
9624
|
"creatives.containersV2.Templates.smsTitleIllustartion": "Create an SMS {template}",
|
|
@@ -9501,6 +9632,7 @@ TC",
|
|
|
9501
9632
|
"creatives.containersV2.Templates.textTemplate": "Text",
|
|
9502
9633
|
"creatives.containersV2.Templates.unMapButton": "Unmap",
|
|
9503
9634
|
"creatives.containersV2.Templates.uploadFile": "Upload file",
|
|
9635
|
+
"creatives.containersV2.Templates.uploadTemplate": "Upload template",
|
|
9504
9636
|
"creatives.containersV2.Templates.uploadedAt": "Modified",
|
|
9505
9637
|
"creatives.containersV2.Templates.uploadedBy": "Uploaded by",
|
|
9506
9638
|
"creatives.containersV2.Templates.uploadingFile": "Uploading file",
|
|
@@ -9910,7 +10042,7 @@ TC",
|
|
|
9910
10042
|
className="validation-count-label CapLabel-n7zsf5-0 hlCZTB"
|
|
9911
10043
|
type="label9"
|
|
9912
10044
|
>
|
|
9913
|
-
1 passed
|
|
10045
|
+
1 passed
|
|
9914
10046
|
</div>
|
|
9915
10047
|
</CapLabel>
|
|
9916
10048
|
<CapIcon
|
|
@@ -9990,7 +10122,7 @@ TC",
|
|
|
9990
10122
|
className="validation-count-label CapLabel-n7zsf5-0 hlCZTB"
|
|
9991
10123
|
type="label9"
|
|
9992
10124
|
>
|
|
9993
|
-
1 failed
|
|
10125
|
+
1 failed
|
|
9994
10126
|
</div>
|
|
9995
10127
|
</CapLabel>
|
|
9996
10128
|
<CapIcon
|
|
@@ -10785,6 +10917,33 @@ TC",
|
|
|
10785
10917
|
"app.components.CapVideoUpload.videoSizeDescription": "File size: Up to {size}",
|
|
10786
10918
|
"app.components.TemplatePreview.includesOptoutTag": "Includes optout tag",
|
|
10787
10919
|
"app.components.TemplatePreview.optoutCharactersTotal": "Includes optout tag ({optoutUrlLength} characters)",
|
|
10920
|
+
"app.v2containers.SmsTrai.Create.doneButtonLabel": "Done",
|
|
10921
|
+
"app.v2containers.SmsTrai.Create.downloadInstruction": "Download {link} file.",
|
|
10922
|
+
"app.v2containers.SmsTrai.Create.downloadIssues": "Download issues",
|
|
10923
|
+
"app.v2containers.SmsTrai.Create.dropCsvFile": "Drag and drop a CSV file here",
|
|
10924
|
+
"app.v2containers.SmsTrai.Create.duplicateEntriesInstruction": "Duplicate entries will be overwritten.",
|
|
10925
|
+
"app.v2containers.SmsTrai.Create.failedToUpload": "Failed to upload",
|
|
10926
|
+
"app.v2containers.SmsTrai.Create.failedVal": "{number} failed",
|
|
10927
|
+
"app.v2containers.SmsTrai.Create.fileMaxlengthError": "More then 500 records are not allowed for the selected file.",
|
|
10928
|
+
"app.v2containers.SmsTrai.Create.fileMinlengthError": "Please select a CSV file with minimum 1 row of data and 1 row of headers.",
|
|
10929
|
+
"app.v2containers.SmsTrai.Create.headerAliasErrorDescription": "Please include mandatory field header. It can be {headerAliases}.",
|
|
10930
|
+
"app.v2containers.SmsTrai.Create.mandatoryColsErrorDescription": "Mandatory fields: Template name, Template ID, Type, Sender ID, Approval status, Status and Template message are required for templates.",
|
|
10931
|
+
"app.v2containers.SmsTrai.Create.mandatoryColsInstruction": "Please ensure that each template has the following mandatory fields: Template name,Template ID, Type, Sender ID, Approval status, Status, Template message.",
|
|
10932
|
+
"app.v2containers.SmsTrai.Create.nonCsvErrorDescription": "Please select a csv file.",
|
|
10933
|
+
"app.v2containers.SmsTrai.Create.numberOfRecords": "{value, number} Record{value, plural, one {} other {s}}",
|
|
10934
|
+
"app.v2containers.SmsTrai.Create.or": "OR",
|
|
10935
|
+
"app.v2containers.SmsTrai.Create.passedVal": "{number} passed",
|
|
10936
|
+
"app.v2containers.SmsTrai.Create.repetitiveColsErrorDescription": "Please remove repetitive fields ({repetitiveCols}) from the file.",
|
|
10937
|
+
"app.v2containers.SmsTrai.Create.sampleCsv": "Sample CSV",
|
|
10938
|
+
"app.v2containers.SmsTrai.Create.selectFileFromComputer": "Select a file from computer",
|
|
10939
|
+
"app.v2containers.SmsTrai.Create.smsCreateNotification": "Sms templates created successfully",
|
|
10940
|
+
"app.v2containers.SmsTrai.Create.statusAliasErrorDescription": "Please include mandatory field status. It can be {statusAliases}.",
|
|
10941
|
+
"app.v2containers.SmsTrai.Create.statusInstruction": "Only the \\"Approved\\" and “Active” templates will be uploaded.",
|
|
10942
|
+
"app.v2containers.SmsTrai.Create.templateIdAliasErrorDescription": "Please include mandatory field template id. It can be {templateIdAliases}.",
|
|
10943
|
+
"app.v2containers.SmsTrai.Create.templateMessageAliasErrorDescription": "Please include mandatory field template message. It can be {templateMessageAliases}.",
|
|
10944
|
+
"app.v2containers.SmsTrai.Create.uploadFile": "Upload file",
|
|
10945
|
+
"app.v2containers.SmsTrai.Create.uploadInstructions": "Upload Instructions",
|
|
10946
|
+
"app.v2containers.SmsTrai.Create.uploadLimitInstruction": "Upload a file of <= 500 rows.",
|
|
10788
10947
|
"creatives.components.AccessForbidden.forbiddenDesc": "This page access has not been provided to you.",
|
|
10789
10948
|
"creatives.components.AccessForbidden.forbiddenHeader": "Access Forbidden",
|
|
10790
10949
|
"creatives.components.BreadCrumbs.header": "This is the BreadCrumbs component !",
|
|
@@ -10891,6 +11050,7 @@ TC",
|
|
|
10891
11050
|
"creatives.componentsV2.CapTagList.dynamic_days_before_expiry": "Dynamic days before expiry",
|
|
10892
11051
|
"creatives.componentsV2.CapTagList.gettingTags": "Getting tags...",
|
|
10893
11052
|
"creatives.componentsV2.CapTagList.loyalty": "Loyalty",
|
|
11053
|
+
"creatives.componentsV2.CapTagList.loyaltyAttributeDisable": "You won’t be able to add loyalty related attributes since the loyalty program/ card series is None.",
|
|
10894
11054
|
"creatives.componentsV2.CapTagList.numberOfDaysBeforeExpiry": "Number of days before expiry",
|
|
10895
11055
|
"creatives.componentsV2.CapTagList.outbound": "Outbound",
|
|
10896
11056
|
"creatives.componentsV2.CapTagList.search": "Search",
|
|
@@ -11668,6 +11828,7 @@ TC",
|
|
|
11668
11828
|
"creatives.containersV2.Create.unicodeLabel": "Allow unicode characters",
|
|
11669
11829
|
"creatives.containersV2.Create.validationError": "Validation error",
|
|
11670
11830
|
"creatives.containersV2.Create.versionLabel": "Version",
|
|
11831
|
+
"creatives.containersV2.Creatives.UploadSMStemplates": "Upload SMS templates",
|
|
11671
11832
|
"creatives.containersV2.Creatives.addContent": "Add content",
|
|
11672
11833
|
"creatives.containersV2.Creatives.alphabeticallyOption": "Alphabetically",
|
|
11673
11834
|
"creatives.containersV2.Creatives.blankTemplate": "Blank template",
|
|
@@ -12361,6 +12522,7 @@ TC",
|
|
|
12361
12522
|
"creatives.containersV2.Templates.preview": "Preview",
|
|
12362
12523
|
"creatives.containersV2.Templates.previewButton": "Preview",
|
|
12363
12524
|
"creatives.containersV2.Templates.previewGenerateText": "Preview is being generated...",
|
|
12525
|
+
"creatives.containersV2.Templates.promotional": "Promotional",
|
|
12364
12526
|
"creatives.containersV2.Templates.pushTitleIllustartion": "Create a mobile push notification {template}",
|
|
12365
12527
|
"creatives.containersV2.Templates.richMediaTemplates": "Rich media templates",
|
|
12366
12528
|
"creatives.containersV2.Templates.searchText": "Search",
|
|
@@ -12369,6 +12531,8 @@ TC",
|
|
|
12369
12531
|
"creatives.containersV2.Templates.selectDefaultButton": "Select",
|
|
12370
12532
|
"creatives.containersV2.Templates.selectSmsHeader": "Select SMS template",
|
|
12371
12533
|
"creatives.containersV2.Templates.selectWechatHeader": "Select WECHAT template",
|
|
12534
|
+
"creatives.containersV2.Templates.serviceExplicit": "Service explicit",
|
|
12535
|
+
"creatives.containersV2.Templates.serviceImplicit": "Service implicit",
|
|
12372
12536
|
"creatives.containersV2.Templates.smsChannelTemplatesHeader": "SMS templates",
|
|
12373
12537
|
"creatives.containersV2.Templates.smsHeader": "SMS",
|
|
12374
12538
|
"creatives.containersV2.Templates.smsTitleIllustartion": "Create an SMS {template}",
|
|
@@ -12382,6 +12546,7 @@ TC",
|
|
|
12382
12546
|
"creatives.containersV2.Templates.textTemplate": "Text",
|
|
12383
12547
|
"creatives.containersV2.Templates.unMapButton": "Unmap",
|
|
12384
12548
|
"creatives.containersV2.Templates.uploadFile": "Upload file",
|
|
12549
|
+
"creatives.containersV2.Templates.uploadTemplate": "Upload template",
|
|
12385
12550
|
"creatives.containersV2.Templates.uploadedAt": "Modified",
|
|
12386
12551
|
"creatives.containersV2.Templates.uploadedBy": "Uploaded by",
|
|
12387
12552
|
"creatives.containersV2.Templates.uploadingFile": "Uploading file",
|
|
@@ -12803,7 +12968,7 @@ TC",
|
|
|
12803
12968
|
className="validation-count-label CapLabel-n7zsf5-0 hlCZTB"
|
|
12804
12969
|
type="label9"
|
|
12805
12970
|
>
|
|
12806
|
-
1 passed
|
|
12971
|
+
1 passed
|
|
12807
12972
|
</div>
|
|
12808
12973
|
</CapLabel>
|
|
12809
12974
|
<CapIcon
|
|
@@ -12883,7 +13048,7 @@ TC",
|
|
|
12883
13048
|
className="validation-count-label CapLabel-n7zsf5-0 hlCZTB"
|
|
12884
13049
|
type="label9"
|
|
12885
13050
|
>
|
|
12886
|
-
1 failed
|
|
13051
|
+
1 failed
|
|
12887
13052
|
</div>
|
|
12888
13053
|
</CapLabel>
|
|
12889
13054
|
<CapIcon
|
|
@@ -369,7 +369,6 @@ export const SmsTraiEdit = (props) => {
|
|
|
369
369
|
}
|
|
370
370
|
setUpdatedSmsEditor(arr);
|
|
371
371
|
calculateTotalMessageLength();
|
|
372
|
-
updateshowMsgLengthNote(arr[_id]?.length > selectedVarCount * CHARLIMIT);
|
|
373
372
|
};
|
|
374
373
|
|
|
375
374
|
const textAreaValue = (idValue) => {
|
|
@@ -490,6 +489,9 @@ export const SmsTraiEdit = (props) => {
|
|
|
490
489
|
Object.keys(varMap).forEach((i) => {
|
|
491
490
|
if (varMap[i].data) {
|
|
492
491
|
countVarChar += varMap[i].data?.length;
|
|
492
|
+
if (!showMsgLengthNote && varMap[i].data?.length > varMap[i].count * CHARLIMIT) {
|
|
493
|
+
updateshowMsgLengthNote(true)
|
|
494
|
+
}
|
|
493
495
|
} else {
|
|
494
496
|
countVarChar += varMap[i].count * CHARLIMIT;
|
|
495
497
|
}
|