@capillarytech/creatives-library 6.10.1 → 6.10.3
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/components/CapTagList/index.js +1 -1
- package/components/Edmeditor/index.js +1 -1
- package/components/FormBuilder/index.js +0 -1
- package/containers/TagList/index.js +3 -3
- package/index.html +3 -0
- package/package.json +2 -1
- package/services/api.js +19 -4
- package/translations/en.json +117 -4
- package/translations/zh.json +113 -0
- package/v2Components/BeeEditor/index.js +263 -0
- package/v2Components/BeeEditor/index.scss +11 -0
- package/v2Components/BeeEditor/messages.js +71 -0
- package/v2Components/BeeEditor/tests/index.test.js +10 -0
- package/v2Components/CapTagList/index.js +55 -26
- package/v2Components/CmsTemplatesComponent/index.js +4 -4
- package/v2Components/Edmeditor/index.js +1 -1
- package/v2Components/EmailPreview/_emailPreview.scss +2 -2
- package/v2Components/FormBuilder/index.js +78 -43
- package/v2Containers/App/constants.js +1 -0
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +51 -51
- package/v2Containers/CreativesContainer/index.js +7 -2
- package/v2Containers/Email/constants.js +1 -0
- package/v2Containers/Email/index.js +170 -116
- package/v2Containers/Email/initialSchema.js +18 -3
- package/v2Containers/Email/sagas.js +2 -2
- package/v2Containers/Email/selectors.js +5 -0
- package/v2Containers/EmailWrapper/index.js +19 -3
- package/v2Containers/Line/Container/Image/index.js +2 -1
- package/v2Containers/Line/Container/ImageCarousel/index.js +1 -1
- package/v2Containers/Line/Container/ImageMap/index.js +20 -5
- package/v2Containers/TagList/index.js +13 -6
- package/v2Containers/Templates/actions.js +122 -117
- package/v2Containers/Templates/constants.js +49 -47
- package/v2Containers/Templates/index.js +36 -20
- package/v2Containers/Templates/messages.js +8 -0
- package/v2Containers/Templates/reducer.js +153 -145
- package/v2Containers/Templates/sagas.js +179 -179
- package/v2Containers/Templates/selectors.js +19 -1
|
@@ -187,7 +187,7 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
|
|
|
187
187
|
{this.props.moduleFilterEnabled ? <CapSelect getPopupContainer={(triggerNode) => triggerNode.parentNode} style={{width: '250px', marginBottom: '16px', minWidth: 'initial', display: 'inherit'}} onChange={this.props.onContextChange} defaultValue="All" options={options}>
|
|
188
188
|
</CapSelect> : ''}
|
|
189
189
|
<Tree
|
|
190
|
-
styling={{
|
|
190
|
+
styling={{height: '350px', overflow: 'auto'}}
|
|
191
191
|
onSelect={this.handleOnSelect}
|
|
192
192
|
selectedKeys={this.state.tagValue}
|
|
193
193
|
expandedKeys={this.state.expandedKeys}
|
|
@@ -44,7 +44,7 @@ class Edmeditor extends React.Component { // eslint-disable-line react/prefer-st
|
|
|
44
44
|
console.log('current language edm editor loading', this.props.id, this.props.edmSrc);
|
|
45
45
|
return (
|
|
46
46
|
this.props.edmSrc ?
|
|
47
|
-
(<iframe id={this.props.id} className={this.props.activeClass} src={this.props.edmSrc} height="460" width="100%" style={{
|
|
47
|
+
(<iframe id={this.props.id} className={this.props.activeClass} src={this.props.edmSrc} height="460" width="100%" style={{height: "calc(100vh - 180px)"}}></iframe>)
|
|
48
48
|
: 'aaasass'
|
|
49
49
|
);
|
|
50
50
|
}
|
|
@@ -82,9 +82,9 @@ export class TagList extends React.Component { // eslint-disable-line react/pref
|
|
|
82
82
|
console.log('Inside ', tag.label);
|
|
83
83
|
mainTags[tag.value] = {
|
|
84
84
|
'tag-header': true,
|
|
85
|
-
name: tag.label[this.props.userLocale] ? tag.label[this.props.userLocale] : tag.label.en,
|
|
86
|
-
desc: tag.desc ? tag.desc : tag.label.en,
|
|
87
|
-
subtags: tag.subtags,
|
|
85
|
+
"name": tag.label[this.props.userLocale] ? tag.label[this.props.userLocale] : tag.label.en,
|
|
86
|
+
"desc": tag.desc ? tag.desc : tag.label.en,
|
|
87
|
+
"subtags": tag.subtags,
|
|
88
88
|
};
|
|
89
89
|
}
|
|
90
90
|
});
|
package/index.html
CHANGED
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
<meta http-equiv="Pragma" content="no-cache" />
|
|
12
12
|
<meta http-equiv="Expires" content="0" />
|
|
13
13
|
<script src="https://use.typekit.net/ifw1ntv.js"></script>
|
|
14
|
+
|
|
15
|
+
<script src="https://app-rsrc.getbee.io/plugin/BeePlugin.js" type="text/javascript"></script>
|
|
16
|
+
|
|
14
17
|
<!-- Google Tag Manager -->
|
|
15
18
|
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
|
16
19
|
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capillarytech/creatives-library",
|
|
3
3
|
"author": "meharaj",
|
|
4
|
-
"version": "6.10.
|
|
4
|
+
"version": "6.10.3",
|
|
5
5
|
"description": "Capillary creatives ui",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"module": "./index.es.js",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"@bugsnag/js": "^7.2.1",
|
|
17
17
|
"@bugsnag/plugin-react": "^7.2.1",
|
|
18
18
|
"@capillarytech/cap-ui-utils": "1.2.6",
|
|
19
|
+
"@mailupinc/bee-plugin": "^1.2.0",
|
|
19
20
|
"babel-cli": "^6.26.0",
|
|
20
21
|
"chalk": "1.1.3",
|
|
21
22
|
"jquery": "^3.3.1",
|
package/services/api.js
CHANGED
|
@@ -67,7 +67,7 @@ function checkStatus(response) {
|
|
|
67
67
|
fatal: true,
|
|
68
68
|
});
|
|
69
69
|
}
|
|
70
|
-
if ((status >= 200 && status < 300) || [500,409,413].includes(response.status)) {
|
|
70
|
+
if ((status >= 200 && status < 300) || [500, 409, 413].includes(response.status)) {
|
|
71
71
|
return response;
|
|
72
72
|
}
|
|
73
73
|
const isLoginPage = window.location.pathname.indexOf('/login') !== -1;
|
|
@@ -319,23 +319,38 @@ export const getCmsTemplateSettings = (cmsType, projectId, cmsMode, langId, isEd
|
|
|
319
319
|
return API.get(url);
|
|
320
320
|
};
|
|
321
321
|
|
|
322
|
+
export const getCmsTemplateSettingsV2 = (cmsType, projectId, cmsMode, langId, isEdmSupport) => {
|
|
323
|
+
const url = `${API_ENDPOINT}/cms/v2/getDetails/?type=${cmsType}&projectId=${projectId}&cmsMode=${cmsMode}&langId=${langId}&isEdmSupport=${isEdmSupport ? 1 : 0}`;
|
|
324
|
+
return API.get(url);
|
|
325
|
+
};
|
|
326
|
+
|
|
327
|
+
|
|
322
328
|
export const getCmsTemplateData = (cmsType, projectId, langId) => {
|
|
323
329
|
const url = `${API_ENDPOINT}/cms/getContent?type=${cmsType}&projectId=${projectId}&langId=${langId}`;
|
|
324
330
|
return API.get(url);
|
|
325
331
|
};
|
|
326
332
|
|
|
333
|
+
export const getCmsTemplateDataV2 = (cmsType, projectId, langId) => {
|
|
334
|
+
const url = `${API_ENDPOINT}/cms/v2/getContent?type=${cmsType}&projectId=${projectId}&langId=${langId}`;
|
|
335
|
+
return API.get(url);
|
|
336
|
+
};
|
|
337
|
+
|
|
327
338
|
export const getCmsData = (cmsType, projectId, langId) => {
|
|
328
339
|
const url = `${API_ENDPOINT}/cms/getCmsData?type=${cmsType}&projectId=${projectId}&langId=${langId}`;
|
|
329
340
|
return API.get(url);
|
|
330
341
|
};
|
|
331
342
|
|
|
332
|
-
|
|
333
343
|
export const getEdmTemplates = () => {
|
|
334
344
|
console.log('in api.js');
|
|
335
345
|
const url = `${API_ENDPOINT}/templates/email/default`;
|
|
336
346
|
return request(url, getAPICallObject('GET'));
|
|
337
347
|
};
|
|
338
348
|
|
|
349
|
+
export const getDefaultBeeTemplates = () => {
|
|
350
|
+
const url = `${API_ENDPOINT}/templates/v2/email/default`;
|
|
351
|
+
return request(url, getAPICallObject('GET'));
|
|
352
|
+
};
|
|
353
|
+
|
|
339
354
|
// All about line
|
|
340
355
|
|
|
341
356
|
export const createLineTemplate = ({template}) => {
|
|
@@ -369,5 +384,5 @@ export const getMarketingObjectives = (channel) =>
|
|
|
369
384
|
getAPICallObject('GET', null, false, true),
|
|
370
385
|
);
|
|
371
386
|
|
|
372
|
-
export const getAllLineStickers = () =>
|
|
373
|
-
request(`${API_ENDPOINT}/meta/sticker`, getAPICallObject('GET'))
|
|
387
|
+
export const getAllLineStickers = () =>
|
|
388
|
+
request(`${API_ENDPOINT}/meta/sticker`, getAPICallObject('GET'));
|
package/translations/en.json
CHANGED
|
@@ -179,6 +179,8 @@
|
|
|
179
179
|
"creatives.componentsV2.TemplatePreview.smsFormatType": "Message has unicode characters",
|
|
180
180
|
"creatives.componentsV2.TemplatePreview.smsIcon": "Sms Icon",
|
|
181
181
|
"creatives.componentsV2.TemplatePreview.testMessage": "Test Message",
|
|
182
|
+
"creatives.componentsV2.TemplatePreview.textMessageCharacter": "characters",
|
|
183
|
+
"creatives.componentsV2.TemplatePreview.textMessageLabel": "text msg-",
|
|
182
184
|
"creatives.componentsV2.Toastr.header": "This is the Toastr component !",
|
|
183
185
|
"creatives.componentsV2.ToastrMessage.close": "This is the ToastrMessage component !",
|
|
184
186
|
"creatives.componentsV2.ToastrMessage.header": "This is the ToastrMessage component !",
|
|
@@ -262,7 +264,7 @@
|
|
|
262
264
|
"creatives.containers.Create.smsEditorPlaceholder": "Please enter the message content",
|
|
263
265
|
"creatives.containers.Create.somethingWentWrong": "Something went wrong!!",
|
|
264
266
|
"creatives.containers.Create.sourceLinkEmpty": "Cannot leave source link field empty",
|
|
265
|
-
"creatives.containers.Create.tagsErrorMessage": "
|
|
267
|
+
"creatives.containers.Create.tagsErrorMessage": "Message cannot be empty",
|
|
266
268
|
"creatives.containers.Create.tagsLabel": "Tags",
|
|
267
269
|
"creatives.containers.Create.templateAddTag": "Add tag",
|
|
268
270
|
"creatives.containers.Create.templateDataNotValid": "Template data is not valid",
|
|
@@ -745,7 +747,7 @@
|
|
|
745
747
|
"creatives.containers.WeChat.template": "Template",
|
|
746
748
|
"creatives.containers.WeChat.templateMapping": "Template mapping",
|
|
747
749
|
"creatives.containers.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
748
|
-
"creatives.containers.WeChat.wechatEditSuccess": "WeChat template
|
|
750
|
+
"creatives.containers.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
749
751
|
"creatives.containers.WechatWrapper.mapTemplate": "Map template",
|
|
750
752
|
"creatives.containers.WechatWrapper.mapTemplateSubtext": "Used for announcing offers and transaction related information",
|
|
751
753
|
"creatives.containers.WechatWrapper.richMedia": "Richmedia template",
|
|
@@ -834,7 +836,7 @@
|
|
|
834
836
|
"creatives.containersV2.Creatives.cancelText": "Cancel",
|
|
835
837
|
"creatives.containersV2.Creatives.continue": "Continue",
|
|
836
838
|
"creatives.containersV2.Creatives.createEmailActionButton": "Create email",
|
|
837
|
-
"creatives.containersV2.Creatives.createMessageContent": "New {channel}
|
|
839
|
+
"creatives.containersV2.Creatives.createMessageContent": "New {channel}",
|
|
838
840
|
"creatives.containersV2.Creatives.createNewActionButton": "Create new",
|
|
839
841
|
"creatives.containersV2.Creatives.createSmsActionButton": "Create SMS",
|
|
840
842
|
"creatives.containersV2.Creatives.creativeTemplates": "Creative templates",
|
|
@@ -853,7 +855,7 @@
|
|
|
853
855
|
"creatives.containersV2.Creatives.ebillHeader": "Ebill",
|
|
854
856
|
"creatives.containersV2.Creatives.ebillPreview": "Ebill preview",
|
|
855
857
|
"creatives.containersV2.Creatives.editButton": "Edit",
|
|
856
|
-
"creatives.containersV2.Creatives.editMessageContent": "Edit
|
|
858
|
+
"creatives.containersV2.Creatives.editMessageContent": "Edit {channel}",
|
|
857
859
|
"creatives.containersV2.Creatives.emailHeader": "Email",
|
|
858
860
|
"creatives.containersV2.Creatives.emailPreview": "Email preview",
|
|
859
861
|
"creatives.containersV2.Creatives.gettingAllTemplates": "Getting all templates...",
|
|
@@ -1169,6 +1171,115 @@
|
|
|
1169
1171
|
"creatives.containersV2.Line.Edit.uploadImage": "Upload image",
|
|
1170
1172
|
"creatives.containersV2.Line.Edit.uploadingImage": "Uploading image...",
|
|
1171
1173
|
"creatives.containersV2.Line.Edit.valueCantEmpty": "value cannot be empty.",
|
|
1174
|
+
"creatives.containersV2.LineContainer.addMessageButtonLabel": "Add message",
|
|
1175
|
+
"creatives.containersV2.LineContainer.cancelButtonLabel": "Cancel",
|
|
1176
|
+
"creatives.containersV2.LineContainer.changeAccount": "Change",
|
|
1177
|
+
"creatives.containersV2.LineContainer.chooseAccount": "Choose the account to send content",
|
|
1178
|
+
"creatives.containersV2.LineContainer.doneButtonLabel": "Done",
|
|
1179
|
+
"creatives.containersV2.LineContainer.lineAccount": "Line account",
|
|
1180
|
+
"creatives.containersV2.LineContainer.lineAccountHeading": "Line account",
|
|
1181
|
+
"creatives.containersV2.LineContainer.lineAccountHeadingChangeLabel": "Change",
|
|
1182
|
+
"creatives.containersV2.LineContainer.lineCreateNotification": "Line template created successfully",
|
|
1183
|
+
"creatives.containersV2.LineContainer.lineCreativeDescription": "Select any of the existing templates or create new",
|
|
1184
|
+
"creatives.containersV2.LineContainer.lineCreativeTitle": "Line creative",
|
|
1185
|
+
"creatives.containersV2.LineContainer.lineEditNotification": "Line template edited successfully",
|
|
1186
|
+
"creatives.containersV2.LineContainer.noAccountsPresentLine": "Line accounts are not setup for your brand",
|
|
1187
|
+
"creatives.containersV2.LineDrawer.gettingAllTemplates": "Getting all templates...",
|
|
1188
|
+
"creatives.containersV2.LineDrawer.noTemplatesFound": "No templates found",
|
|
1189
|
+
"creatives.containersV2.LineImage.dragAndDrop": "Drag and drop image here",
|
|
1190
|
+
"creatives.containersV2.LineImage.emptyTitleErrorMessage": "Template title can not be empty",
|
|
1191
|
+
"creatives.containersV2.LineImage.imageDimenstionDescription": "Dimensions: 300px x 400px Size: 10mb",
|
|
1192
|
+
"creatives.containersV2.LineImage.imageGallery": "Gallery",
|
|
1193
|
+
"creatives.containersV2.LineImage.imageReUpload": "Re upload",
|
|
1194
|
+
"creatives.containersV2.LineImage.lineImageIncorrectSize": "Please upload the image with correct type, size and dimension",
|
|
1195
|
+
"creatives.containersV2.LineImage.lineTemplateImage": "Line templates - Image",
|
|
1196
|
+
"creatives.containersV2.LineImage.or": "OR",
|
|
1197
|
+
"creatives.containersV2.LineImage.searchImages": "Search Images",
|
|
1198
|
+
"creatives.containersV2.LineImage.select": "Select",
|
|
1199
|
+
"creatives.containersV2.LineImage.textMessageAddLabel": "How do you want to upload the image?",
|
|
1200
|
+
"creatives.containersV2.LineImage.textMessageCreateNew": "Create new",
|
|
1201
|
+
"creatives.containersV2.LineImage.textMessageORLabel": "OR",
|
|
1202
|
+
"creatives.containersV2.LineImage.textMessageSelectTemplate": "Select template",
|
|
1203
|
+
"creatives.containersV2.LineImage.textMessageTitleLabel": "Template name",
|
|
1204
|
+
"creatives.containersV2.LineImage.textMessageTitlePlaceholder": "Enter template name",
|
|
1205
|
+
"creatives.containersV2.LineImage.uploadComputer": "Your computer",
|
|
1206
|
+
"creatives.containersV2.LineImage.uploadGallery": "Gallery",
|
|
1207
|
+
"creatives.containersV2.LineImage.uploadImageLabel": "Upload Image",
|
|
1208
|
+
"creatives.containersV2.LineImageCarousel.actionLabelPlaceholder": "Enter action label",
|
|
1209
|
+
"creatives.containersV2.LineImageCarousel.actionLabelTitle": "Action",
|
|
1210
|
+
"creatives.containersV2.LineImageCarousel.actionTypePlaceholder": "Select the action",
|
|
1211
|
+
"creatives.containersV2.LineImageCarousel.actionTypeTitle": "Action Type",
|
|
1212
|
+
"creatives.containersV2.LineImageCarousel.addCard": "Add card",
|
|
1213
|
+
"creatives.containersV2.LineImageCarousel.cardMessageDescription": "Use this to present content with multiple cards in carousel format, packed into a single chat bubble.",
|
|
1214
|
+
"creatives.containersV2.LineImageCarousel.cardMessageInfo": "If your message contains multiple cards, all cards will be as tall as the tallest card.",
|
|
1215
|
+
"creatives.containersV2.LineImageCarousel.cardMessageTitle": "Card Message",
|
|
1216
|
+
"creatives.containersV2.LineImageCarousel.deleteTooltipLabel": "Delete",
|
|
1217
|
+
"creatives.containersV2.LineImageCarousel.dragAndDrop": "Drag and drop image here",
|
|
1218
|
+
"creatives.containersV2.LineImageCarousel.duplicateTooltipLabel": "Duplicate",
|
|
1219
|
+
"creatives.containersV2.LineImageCarousel.emptyActionContentErrorMessage": "Action content can not be empty",
|
|
1220
|
+
"creatives.containersV2.LineImageCarousel.emptyAltTextErrorMessage": "Title can not be empty",
|
|
1221
|
+
"creatives.containersV2.LineImageCarousel.emptyTitleErrorMessage": "Template title can not be empty",
|
|
1222
|
+
"creatives.containersV2.LineImageCarousel.enterTextActionTypeTitle": "Enter text",
|
|
1223
|
+
"creatives.containersV2.LineImageCarousel.enterUriActionTypeTitle": "Enter url",
|
|
1224
|
+
"creatives.containersV2.LineImageCarousel.imageDimenstionDescription": "Format: JPEG, PNG Aspect Ratio: 1:1 Dimensions: 1024px x 1024px Size: 1 MB",
|
|
1225
|
+
"creatives.containersV2.LineImageCarousel.imageGallery": "Gallery",
|
|
1226
|
+
"creatives.containersV2.LineImageCarousel.imageReUpload": "Re upload",
|
|
1227
|
+
"creatives.containersV2.LineImageCarousel.inValidUrliErrorMessage": "Action content uri is not valid",
|
|
1228
|
+
"creatives.containersV2.LineImageCarousel.lineImageIncorrectSize": "Please upload the image with correct type, size and dimension",
|
|
1229
|
+
"creatives.containersV2.LineImageCarousel.lineTemplateImage": "Line templates - Image",
|
|
1230
|
+
"creatives.containersV2.LineImageCarousel.maxActionLabelErrorMessage": "Action label can not be more than 12 character",
|
|
1231
|
+
"creatives.containersV2.LineImageCarousel.or": "OR",
|
|
1232
|
+
"creatives.containersV2.LineImageCarousel.searchImages": "Search Images",
|
|
1233
|
+
"creatives.containersV2.LineImageCarousel.select": "Select",
|
|
1234
|
+
"creatives.containersV2.LineImageCarousel.shiftLeftTooltipLabel": "Shift Left",
|
|
1235
|
+
"creatives.containersV2.LineImageCarousel.shiftRightTooltipLabel": "Shift Right",
|
|
1236
|
+
"creatives.containersV2.LineImageCarousel.textActionTypeTitle": "TEXT",
|
|
1237
|
+
"creatives.containersV2.LineImageCarousel.textMessageAddLabel": "How do you want to upload the \"Card message\"?",
|
|
1238
|
+
"creatives.containersV2.LineImageCarousel.textMessageCreateNew": "Create new",
|
|
1239
|
+
"creatives.containersV2.LineImageCarousel.textMessageORLabel": "OR",
|
|
1240
|
+
"creatives.containersV2.LineImageCarousel.textMessageSelectTemplate": "Select template",
|
|
1241
|
+
"creatives.containersV2.LineImageCarousel.textMessageTitleLabel": "Template name",
|
|
1242
|
+
"creatives.containersV2.LineImageCarousel.textMessageTitlePlaceholder": "Enter template name",
|
|
1243
|
+
"creatives.containersV2.LineImageCarousel.titleDescription": "The title is shown in push notifications and in the user's chat list.",
|
|
1244
|
+
"creatives.containersV2.LineImageCarousel.titleLabel": "Title",
|
|
1245
|
+
"creatives.containersV2.LineImageCarousel.uploadComputer": "Your computer",
|
|
1246
|
+
"creatives.containersV2.LineImageCarousel.uploadGallery": "Gallery",
|
|
1247
|
+
"creatives.containersV2.LineImageCarousel.uploadImageDescription": "The relevant image that complements the message context.",
|
|
1248
|
+
"creatives.containersV2.LineImageCarousel.uploadImageLabel": "Upload Image",
|
|
1249
|
+
"creatives.containersV2.LineImageCarousel.urlActionTypeTitle": "URL",
|
|
1250
|
+
"creatives.containersV2.LineSticker.changeStickerButtonLabel": "Change sticker",
|
|
1251
|
+
"creatives.containersV2.LineSticker.emptyTitleErrorMessage": "Template title can not be empty",
|
|
1252
|
+
"creatives.containersV2.LineSticker.selectStickersLabels": "Select stickers",
|
|
1253
|
+
"creatives.containersV2.LineSticker.stickerDrawerTitle": "Sticker",
|
|
1254
|
+
"creatives.containersV2.LineSticker.textMessageTitleLabel": "Template name",
|
|
1255
|
+
"creatives.containersV2.LineSticker.textMessageTitlePlaceholder": "Enter template name",
|
|
1256
|
+
"creatives.containersV2.LineText.addLabels": "Add labels",
|
|
1257
|
+
"creatives.containersV2.LineText.charCount": "Characters count:",
|
|
1258
|
+
"creatives.containersV2.LineText.emptyContentErrorMessage": "Template content can not be empty",
|
|
1259
|
+
"creatives.containersV2.LineText.emptyTitleErrorMessage": "Template title can not be empty",
|
|
1260
|
+
"creatives.containersV2.LineText.invalidTagError": "Please check the message content for unsupported/missing tags",
|
|
1261
|
+
"creatives.containersV2.LineText.limitExceededContentErrorMessage": "Template content can not be more than 1600",
|
|
1262
|
+
"creatives.containersV2.LineText.lineTemplateText": "Line templates - Text",
|
|
1263
|
+
"creatives.containersV2.LineText.searchText": "Search Text",
|
|
1264
|
+
"creatives.containersV2.LineText.select": "Select",
|
|
1265
|
+
"creatives.containersV2.LineText.textMessage": "Text message",
|
|
1266
|
+
"creatives.containersV2.LineText.textMessageAddLabel": "How do you want to add the text message?",
|
|
1267
|
+
"creatives.containersV2.LineText.textMessageCreateNew": "Create new",
|
|
1268
|
+
"creatives.containersV2.LineText.textMessageORLabel": "OR",
|
|
1269
|
+
"creatives.containersV2.LineText.textMessagePlaceholder": "Enter text message",
|
|
1270
|
+
"creatives.containersV2.LineText.textMessageSelectTemplate": "Select template",
|
|
1271
|
+
"creatives.containersV2.LineText.textMessageTitleLabel": "Template name",
|
|
1272
|
+
"creatives.containersV2.LineText.textMessageTitlePlaceholder": "Enter template name",
|
|
1273
|
+
"creatives.containersV2.LineWrapper.changeModalDescription": "The already added content for this card will be lost by changing the content tab.",
|
|
1274
|
+
"creatives.containersV2.LineWrapper.changeModalLabel": "Do you still want to make the changes to content tab",
|
|
1275
|
+
"creatives.containersV2.LineWrapper.changeModalTitle": "Changing content tab?",
|
|
1276
|
+
"creatives.containersV2.LineWrapper.imageLabel": "Image",
|
|
1277
|
+
"creatives.containersV2.LineWrapper.imagemapLabel": "Rich message",
|
|
1278
|
+
"creatives.containersV2.LineWrapper.modalDiscardChangesButtonLabel": "No",
|
|
1279
|
+
"creatives.containersV2.LineWrapper.modalSaveChangesButtonLabel": "Yes, change",
|
|
1280
|
+
"creatives.containersV2.LineWrapper.stickerLabel": "Sticker",
|
|
1281
|
+
"creatives.containersV2.LineWrapper.templateLabel": "Card message",
|
|
1282
|
+
"creatives.containersV2.LineWrapper.textLabel": "Text",
|
|
1172
1283
|
"creatives.containersV2.Login.header": "This is login container change !",
|
|
1173
1284
|
"creatives.containersV2.Login.invalidCredential": "Invalid username or password",
|
|
1174
1285
|
"creatives.containersV2.Login.loginPage": "Login Page",
|
|
@@ -1352,6 +1463,8 @@
|
|
|
1352
1463
|
"creatives.containersV2.Templates.emailTitleIllustartion": "Create an email {template}",
|
|
1353
1464
|
"creatives.containersV2.Templates.gettingAllTemplates": "Getting all templates...",
|
|
1354
1465
|
"creatives.containersV2.Templates.header": "This is Templates container !",
|
|
1466
|
+
"creatives.containersV2.Templates.imageCarouselTemplate": "Card message",
|
|
1467
|
+
"creatives.containersV2.Templates.imageMapTemplate": "Rich message",
|
|
1355
1468
|
"creatives.containersV2.Templates.imageTemplate": "Image",
|
|
1356
1469
|
"creatives.containersV2.Templates.invalidUploadFileError": "File cannot be uploaded. Please select another file with valid file format.",
|
|
1357
1470
|
"creatives.containersV2.Templates.layoutSelection": "Select layout",
|
package/translations/zh.json
CHANGED
|
@@ -179,6 +179,8 @@
|
|
|
179
179
|
"creatives.componentsV2.TemplatePreview.smsFormatType": "",
|
|
180
180
|
"creatives.componentsV2.TemplatePreview.smsIcon": "",
|
|
181
181
|
"creatives.componentsV2.TemplatePreview.testMessage": "",
|
|
182
|
+
"creatives.componentsV2.TemplatePreview.textMessageCharacter": "",
|
|
183
|
+
"creatives.componentsV2.TemplatePreview.textMessageLabel": "",
|
|
182
184
|
"creatives.componentsV2.Toastr.header": "",
|
|
183
185
|
"creatives.componentsV2.ToastrMessage.close": "",
|
|
184
186
|
"creatives.componentsV2.ToastrMessage.header": "",
|
|
@@ -1169,6 +1171,115 @@
|
|
|
1169
1171
|
"creatives.containersV2.Line.Edit.uploadImage": "",
|
|
1170
1172
|
"creatives.containersV2.Line.Edit.uploadingImage": "",
|
|
1171
1173
|
"creatives.containersV2.Line.Edit.valueCantEmpty": "",
|
|
1174
|
+
"creatives.containersV2.LineContainer.addMessageButtonLabel": "",
|
|
1175
|
+
"creatives.containersV2.LineContainer.cancelButtonLabel": "",
|
|
1176
|
+
"creatives.containersV2.LineContainer.changeAccount": "",
|
|
1177
|
+
"creatives.containersV2.LineContainer.chooseAccount": "",
|
|
1178
|
+
"creatives.containersV2.LineContainer.doneButtonLabel": "",
|
|
1179
|
+
"creatives.containersV2.LineContainer.lineAccount": "",
|
|
1180
|
+
"creatives.containersV2.LineContainer.lineAccountHeading": "",
|
|
1181
|
+
"creatives.containersV2.LineContainer.lineAccountHeadingChangeLabel": "",
|
|
1182
|
+
"creatives.containersV2.LineContainer.lineCreateNotification": "",
|
|
1183
|
+
"creatives.containersV2.LineContainer.lineCreativeDescription": "",
|
|
1184
|
+
"creatives.containersV2.LineContainer.lineCreativeTitle": "",
|
|
1185
|
+
"creatives.containersV2.LineContainer.lineEditNotification": "",
|
|
1186
|
+
"creatives.containersV2.LineContainer.noAccountsPresentLine": "",
|
|
1187
|
+
"creatives.containersV2.LineDrawer.gettingAllTemplates": "",
|
|
1188
|
+
"creatives.containersV2.LineDrawer.noTemplatesFound": "",
|
|
1189
|
+
"creatives.containersV2.LineImage.dragAndDrop": "",
|
|
1190
|
+
"creatives.containersV2.LineImage.emptyTitleErrorMessage": "",
|
|
1191
|
+
"creatives.containersV2.LineImage.imageDimenstionDescription": "",
|
|
1192
|
+
"creatives.containersV2.LineImage.imageGallery": "",
|
|
1193
|
+
"creatives.containersV2.LineImage.imageReUpload": "",
|
|
1194
|
+
"creatives.containersV2.LineImage.lineImageIncorrectSize": "",
|
|
1195
|
+
"creatives.containersV2.LineImage.lineTemplateImage": "",
|
|
1196
|
+
"creatives.containersV2.LineImage.or": "",
|
|
1197
|
+
"creatives.containersV2.LineImage.searchImages": "",
|
|
1198
|
+
"creatives.containersV2.LineImage.select": "",
|
|
1199
|
+
"creatives.containersV2.LineImage.textMessageAddLabel": "",
|
|
1200
|
+
"creatives.containersV2.LineImage.textMessageCreateNew": "",
|
|
1201
|
+
"creatives.containersV2.LineImage.textMessageORLabel": "",
|
|
1202
|
+
"creatives.containersV2.LineImage.textMessageSelectTemplate": "",
|
|
1203
|
+
"creatives.containersV2.LineImage.textMessageTitleLabel": "",
|
|
1204
|
+
"creatives.containersV2.LineImage.textMessageTitlePlaceholder": "",
|
|
1205
|
+
"creatives.containersV2.LineImage.uploadComputer": "",
|
|
1206
|
+
"creatives.containersV2.LineImage.uploadGallery": "",
|
|
1207
|
+
"creatives.containersV2.LineImage.uploadImageLabel": "",
|
|
1208
|
+
"creatives.containersV2.LineImageCarousel.actionLabelPlaceholder": "",
|
|
1209
|
+
"creatives.containersV2.LineImageCarousel.actionLabelTitle": "",
|
|
1210
|
+
"creatives.containersV2.LineImageCarousel.actionTypePlaceholder": "",
|
|
1211
|
+
"creatives.containersV2.LineImageCarousel.actionTypeTitle": "",
|
|
1212
|
+
"creatives.containersV2.LineImageCarousel.addCard": "",
|
|
1213
|
+
"creatives.containersV2.LineImageCarousel.cardMessageDescription": "",
|
|
1214
|
+
"creatives.containersV2.LineImageCarousel.cardMessageInfo": "",
|
|
1215
|
+
"creatives.containersV2.LineImageCarousel.cardMessageTitle": "",
|
|
1216
|
+
"creatives.containersV2.LineImageCarousel.deleteTooltipLabel": "",
|
|
1217
|
+
"creatives.containersV2.LineImageCarousel.dragAndDrop": "",
|
|
1218
|
+
"creatives.containersV2.LineImageCarousel.duplicateTooltipLabel": "",
|
|
1219
|
+
"creatives.containersV2.LineImageCarousel.emptyActionContentErrorMessage": "",
|
|
1220
|
+
"creatives.containersV2.LineImageCarousel.emptyAltTextErrorMessage": "",
|
|
1221
|
+
"creatives.containersV2.LineImageCarousel.emptyTitleErrorMessage": "",
|
|
1222
|
+
"creatives.containersV2.LineImageCarousel.enterTextActionTypeTitle": "",
|
|
1223
|
+
"creatives.containersV2.LineImageCarousel.enterUriActionTypeTitle": "",
|
|
1224
|
+
"creatives.containersV2.LineImageCarousel.imageDimenstionDescription": "",
|
|
1225
|
+
"creatives.containersV2.LineImageCarousel.imageGallery": "",
|
|
1226
|
+
"creatives.containersV2.LineImageCarousel.imageReUpload": "",
|
|
1227
|
+
"creatives.containersV2.LineImageCarousel.inValidUrliErrorMessage": "",
|
|
1228
|
+
"creatives.containersV2.LineImageCarousel.lineImageIncorrectSize": "",
|
|
1229
|
+
"creatives.containersV2.LineImageCarousel.lineTemplateImage": "",
|
|
1230
|
+
"creatives.containersV2.LineImageCarousel.maxActionLabelErrorMessage": "",
|
|
1231
|
+
"creatives.containersV2.LineImageCarousel.or": "",
|
|
1232
|
+
"creatives.containersV2.LineImageCarousel.searchImages": "",
|
|
1233
|
+
"creatives.containersV2.LineImageCarousel.select": "",
|
|
1234
|
+
"creatives.containersV2.LineImageCarousel.shiftLeftTooltipLabel": "",
|
|
1235
|
+
"creatives.containersV2.LineImageCarousel.shiftRightTooltipLabel": "",
|
|
1236
|
+
"creatives.containersV2.LineImageCarousel.textActionTypeTitle": "",
|
|
1237
|
+
"creatives.containersV2.LineImageCarousel.textMessageAddLabel": "",
|
|
1238
|
+
"creatives.containersV2.LineImageCarousel.textMessageCreateNew": "",
|
|
1239
|
+
"creatives.containersV2.LineImageCarousel.textMessageORLabel": "",
|
|
1240
|
+
"creatives.containersV2.LineImageCarousel.textMessageSelectTemplate": "",
|
|
1241
|
+
"creatives.containersV2.LineImageCarousel.textMessageTitleLabel": "",
|
|
1242
|
+
"creatives.containersV2.LineImageCarousel.textMessageTitlePlaceholder": "",
|
|
1243
|
+
"creatives.containersV2.LineImageCarousel.titleDescription": "",
|
|
1244
|
+
"creatives.containersV2.LineImageCarousel.titleLabel": "",
|
|
1245
|
+
"creatives.containersV2.LineImageCarousel.uploadComputer": "",
|
|
1246
|
+
"creatives.containersV2.LineImageCarousel.uploadGallery": "",
|
|
1247
|
+
"creatives.containersV2.LineImageCarousel.uploadImageDescription": "",
|
|
1248
|
+
"creatives.containersV2.LineImageCarousel.uploadImageLabel": "",
|
|
1249
|
+
"creatives.containersV2.LineImageCarousel.urlActionTypeTitle": "",
|
|
1250
|
+
"creatives.containersV2.LineSticker.changeStickerButtonLabel": "",
|
|
1251
|
+
"creatives.containersV2.LineSticker.emptyTitleErrorMessage": "",
|
|
1252
|
+
"creatives.containersV2.LineSticker.selectStickersLabels": "",
|
|
1253
|
+
"creatives.containersV2.LineSticker.stickerDrawerTitle": "",
|
|
1254
|
+
"creatives.containersV2.LineSticker.textMessageTitleLabel": "",
|
|
1255
|
+
"creatives.containersV2.LineSticker.textMessageTitlePlaceholder": "",
|
|
1256
|
+
"creatives.containersV2.LineText.addLabels": "",
|
|
1257
|
+
"creatives.containersV2.LineText.charCount": "",
|
|
1258
|
+
"creatives.containersV2.LineText.emptyContentErrorMessage": "",
|
|
1259
|
+
"creatives.containersV2.LineText.emptyTitleErrorMessage": "",
|
|
1260
|
+
"creatives.containersV2.LineText.invalidTagError": "",
|
|
1261
|
+
"creatives.containersV2.LineText.limitExceededContentErrorMessage": "",
|
|
1262
|
+
"creatives.containersV2.LineText.lineTemplateText": "",
|
|
1263
|
+
"creatives.containersV2.LineText.searchText": "",
|
|
1264
|
+
"creatives.containersV2.LineText.select": "",
|
|
1265
|
+
"creatives.containersV2.LineText.textMessage": "",
|
|
1266
|
+
"creatives.containersV2.LineText.textMessageAddLabel": "",
|
|
1267
|
+
"creatives.containersV2.LineText.textMessageCreateNew": "",
|
|
1268
|
+
"creatives.containersV2.LineText.textMessageORLabel": "",
|
|
1269
|
+
"creatives.containersV2.LineText.textMessagePlaceholder": "",
|
|
1270
|
+
"creatives.containersV2.LineText.textMessageSelectTemplate": "",
|
|
1271
|
+
"creatives.containersV2.LineText.textMessageTitleLabel": "",
|
|
1272
|
+
"creatives.containersV2.LineText.textMessageTitlePlaceholder": "",
|
|
1273
|
+
"creatives.containersV2.LineWrapper.changeModalDescription": "",
|
|
1274
|
+
"creatives.containersV2.LineWrapper.changeModalLabel": "",
|
|
1275
|
+
"creatives.containersV2.LineWrapper.changeModalTitle": "",
|
|
1276
|
+
"creatives.containersV2.LineWrapper.imageLabel": "",
|
|
1277
|
+
"creatives.containersV2.LineWrapper.imagemapLabel": "",
|
|
1278
|
+
"creatives.containersV2.LineWrapper.modalDiscardChangesButtonLabel": "",
|
|
1279
|
+
"creatives.containersV2.LineWrapper.modalSaveChangesButtonLabel": "",
|
|
1280
|
+
"creatives.containersV2.LineWrapper.stickerLabel": "",
|
|
1281
|
+
"creatives.containersV2.LineWrapper.templateLabel": "",
|
|
1282
|
+
"creatives.containersV2.LineWrapper.textLabel": "",
|
|
1172
1283
|
"creatives.containersV2.Login.header": "",
|
|
1173
1284
|
"creatives.containersV2.Login.invalidCredential": "",
|
|
1174
1285
|
"creatives.containersV2.Login.loginPage": "",
|
|
@@ -1352,6 +1463,8 @@
|
|
|
1352
1463
|
"creatives.containersV2.Templates.emailTitleIllustartion": "",
|
|
1353
1464
|
"creatives.containersV2.Templates.gettingAllTemplates": "",
|
|
1354
1465
|
"creatives.containersV2.Templates.header": "",
|
|
1466
|
+
"creatives.containersV2.Templates.imageCarouselTemplate": "",
|
|
1467
|
+
"creatives.containersV2.Templates.imageMapTemplate": "",
|
|
1355
1468
|
"creatives.containersV2.Templates.imageTemplate": "",
|
|
1356
1469
|
"creatives.containersV2.Templates.invalidUploadFileError": "",
|
|
1357
1470
|
"creatives.containersV2.Templates.layoutSelection": "",
|