@capillarytech/creatives-library 6.14.1 → 6.15.2
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/app.js +5 -2
- package/config/app.js +0 -2
- package/containers/Templates/index.js +0 -3
- package/index.js +0 -7
- package/package.json +2 -2
- package/reducers.js +1 -2
- package/services/api.js +0 -7
- package/utils/common.js +0 -118
- package/utils/ignoredErrorMessages.js +4 -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/FormBuilder/index.js +4 -2
- package/v2Components/TemplatePreview/WechatRichmediaTemplatePreview/_wechatRichmediaTemplatePrev.scss +151 -151
- package/v2Components/TemplatePreview/WechatRichmediaTemplatePreview/messages.js +33 -33
- package/v2Components/TemplatePreview/WechatRichmediaTemplatePreview/tests/index.test.js +10 -10
- package/v2Components/TemplatePreview/assets/images/androidPushMessage.svg +44 -44
- package/v2Components/TemplatePreview/assets/images/home-screen-android.svg +21 -21
- package/v2Components/TemplatePreview/assets/images/home-screen-ios.svg +16 -16
- package/v2Components/TemplatePreview/assets/images/iPhonePushMessage.svg +134 -134
- package/v2Components/TemplatePreview/assets/images/mobile.svg +23 -23
- package/v2Components/TemplatePreview/assets/images/sms_mobile_android.svg +22 -22
- package/v2Components/TemplatePreview/assets/images/user-icon.svg +18 -18
- package/v2Components/TemplatePreview/assets/images/wechat-home-screen-android.svg +21 -21
- package/v2Components/TemplatePreview/assets/images/wechat-mobile.svg +77 -77
- package/v2Components/TemplatePreview/assets/images/wechat_mobile_android.svg +20 -20
- package/v2Components/TemplatePreview/tests/index.test.js +10 -10
- package/v2Containers/App/constants.js +1 -1
- package/v2Containers/CreativesContainer/SlideBoxContent.js +1 -17
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +0 -2
- package/v2Containers/CreativesContainer/actions.js +27 -27
- package/v2Containers/CreativesContainer/constants.js +0 -2
- package/v2Containers/CreativesContainer/index.js +0 -8
- package/v2Containers/CreativesContainer/index.scss +44 -44
- package/v2Containers/CreativesContainer/messages.js +305 -305
- package/v2Containers/CreativesContainer/reducer.js +29 -29
- package/v2Containers/CreativesContainer/sagas.js +11 -11
- package/v2Containers/CreativesContainer/selectors.js +30 -30
- package/v2Containers/CreativesContainer/tests/actions.test.js +18 -18
- package/v2Containers/CreativesContainer/tests/index.test.js +10 -10
- package/v2Containers/CreativesContainer/tests/reducer.test.js +9 -9
- package/v2Containers/CreativesContainer/tests/sagas.test.js +15 -15
- package/v2Containers/CreativesContainer/tests/selectors.test.js +10 -10
- package/v2Containers/Line/Create/_lineCreate.scss +64 -0
- package/v2Containers/Line/Create/actions.js +94 -0
- package/v2Containers/Line/Create/constants.js +43 -0
- package/v2Containers/Line/Create/index.js +1132 -0
- package/v2Containers/Line/Create/initialSchema.js +378 -0
- package/v2Containers/Line/Create/messages.js +229 -0
- package/v2Containers/Line/Create/reducer.js +99 -0
- package/v2Containers/Line/Create/sagas.js +113 -0
- package/v2Containers/Line/Create/selectors.js +30 -0
- package/v2Containers/Line/CreateWrapper/constants.js +2 -0
- package/v2Containers/Line/CreateWrapper/index.js +117 -0
- package/v2Containers/Line/CreateWrapper/messages.js +55 -0
- package/v2Containers/Line/Edit/_lineEdit.scss +23 -0
- package/v2Containers/Line/Edit/actions.js +79 -0
- package/v2Containers/Line/Edit/constants.js +27 -0
- package/v2Containers/Line/Edit/index.js +1051 -0
- package/v2Containers/Line/Edit/messages.js +173 -0
- package/v2Containers/Line/Edit/reducer.js +83 -0
- package/v2Containers/Line/Edit/sagas.js +81 -0
- package/v2Containers/Line/Edit/selectors.js +29 -0
- package/v2Containers/Line/Edit/tests/actions.test.js +18 -0
- package/v2Containers/Line/Edit/tests/index.test.js +10 -0
- package/v2Containers/Line/Edit/tests/reducer.test.js +9 -0
- package/v2Containers/Line/Edit/tests/sagas.test.js +15 -0
- package/v2Containers/Line/Edit/tests/selectors.test.js +10 -0
- package/v2Containers/Templates/tests/actions.test.js +18 -18
- package/v2Containers/Templates/tests/index.test.js +10 -10
- package/v2Containers/Templates/tests/reducer.test.js +9 -9
- package/v2Containers/Templates/tests/sagas.test.js +15 -15
- package/v2Containers/Templates/tests/selectors.test.js +10 -10
- package/v2Containers/TemplatesV2/TemplatesV2.style.js +29 -29
- package/v2Containers/TemplatesV2/actions.js +16 -16
- package/v2Containers/TemplatesV2/constants.js +10 -10
- package/v2Containers/TemplatesV2/index.js +0 -13
- package/v2Containers/TemplatesV2/messages.js +0 -4
- package/v2Containers/TemplatesV2/selectors.js +25 -25
- package/v2Containers/TemplatesV2/tests/actions.test.js +18 -18
- package/v2Containers/TemplatesV2/tests/index.test.js +10 -10
- package/v2Containers/TemplatesV2/tests/reducer.test.js +9 -9
- package/v2Containers/TemplatesV2/tests/sagas.test.js +15 -15
- package/v2Containers/TemplatesV2/tests/selectors.test.js +10 -10
- package/v2Containers/WeChat/MapTemplates/index.js +1 -1
- package/v2Containers/FTP/_FTP.scss +0 -92
- package/v2Containers/FTP/actions.js +0 -7
- package/v2Containers/FTP/constants.js +0 -3
- package/v2Containers/FTP/index.js +0 -517
- package/v2Containers/FTP/messages.js +0 -60
- package/v2Containers/FTP/reducer.js +0 -32
- package/v2Containers/FTP/sagas.js +0 -26
- package/v2Containers/FTP/selectors.js +0 -20
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
export const response = {
|
|
2
|
+
metaEntities: [
|
|
3
|
+
{
|
|
4
|
+
_id: "5b926d5aa77c585b698a5620",
|
|
5
|
+
type: "LAYOUT",
|
|
6
|
+
definition: {
|
|
7
|
+
module: "Campaigns",
|
|
8
|
+
channel: "LINE",
|
|
9
|
+
textSchema: {
|
|
10
|
+
standalone: {
|
|
11
|
+
sections: [
|
|
12
|
+
{
|
|
13
|
+
type: "parent",
|
|
14
|
+
childSections: [
|
|
15
|
+
{
|
|
16
|
+
type: "multicols",
|
|
17
|
+
width: 16,
|
|
18
|
+
inputFields: [
|
|
19
|
+
{
|
|
20
|
+
cols: [],
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
actionFields: [],
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
type: "parent",
|
|
27
|
+
childSections: [
|
|
28
|
+
{
|
|
29
|
+
width: 16,
|
|
30
|
+
type: "parent",
|
|
31
|
+
childSections: [
|
|
32
|
+
{
|
|
33
|
+
type: "multicols",
|
|
34
|
+
inputFields: [
|
|
35
|
+
{
|
|
36
|
+
cols: [
|
|
37
|
+
{
|
|
38
|
+
id: "template-name",
|
|
39
|
+
placeholder: "",
|
|
40
|
+
type: "input",
|
|
41
|
+
label: "Message",
|
|
42
|
+
metaType: "text",
|
|
43
|
+
datatype: "string",
|
|
44
|
+
required: true,
|
|
45
|
+
fluid: true,
|
|
46
|
+
styling: "semantic",
|
|
47
|
+
order: 1,
|
|
48
|
+
width: 18,
|
|
49
|
+
customComponent: false,
|
|
50
|
+
standalone: true,
|
|
51
|
+
onlyDisplay: false,
|
|
52
|
+
errorMessage:
|
|
53
|
+
"",
|
|
54
|
+
supportedEvents: ["onChange"],
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
},
|
|
58
|
+
],
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
type: "multicols",
|
|
62
|
+
inputFields: [
|
|
63
|
+
{
|
|
64
|
+
rowClassName: "tag-container",
|
|
65
|
+
cols: [
|
|
66
|
+
{
|
|
67
|
+
style: {
|
|
68
|
+
marginBottom: "unset",
|
|
69
|
+
height: "24px",
|
|
70
|
+
},
|
|
71
|
+
width: 18,
|
|
72
|
+
id: "tagList",
|
|
73
|
+
label: "Add label",
|
|
74
|
+
className: "add-label",
|
|
75
|
+
type: "tag-list",
|
|
76
|
+
metaType: "List",
|
|
77
|
+
datatype: "select",
|
|
78
|
+
required: true,
|
|
79
|
+
fluid: true,
|
|
80
|
+
onlyDisplay: true,
|
|
81
|
+
styling: "semantic",
|
|
82
|
+
order: 1,
|
|
83
|
+
customComponent: true,
|
|
84
|
+
supportedEvents: ["onTagSelect"],
|
|
85
|
+
},
|
|
86
|
+
],
|
|
87
|
+
},
|
|
88
|
+
],
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
type: "multicols",
|
|
92
|
+
|
|
93
|
+
inputFields: [
|
|
94
|
+
{
|
|
95
|
+
rowClassName: "line-message-content",
|
|
96
|
+
cols: [
|
|
97
|
+
{
|
|
98
|
+
id: "message-editor",
|
|
99
|
+
label: "Message",
|
|
100
|
+
type: "textarea",
|
|
101
|
+
metaType: "text",
|
|
102
|
+
datatype: "string",
|
|
103
|
+
style: { marginBottom: "16px" },
|
|
104
|
+
required: true,
|
|
105
|
+
errorMessage:
|
|
106
|
+
"",
|
|
107
|
+
placeholder:
|
|
108
|
+
"",
|
|
109
|
+
fluid: true,
|
|
110
|
+
styling: "semantic",
|
|
111
|
+
onlyDisplay: false,
|
|
112
|
+
width: 18,
|
|
113
|
+
autosize: true,
|
|
114
|
+
autosizeParams: {
|
|
115
|
+
maxRows: 18,
|
|
116
|
+
minRows: 3,
|
|
117
|
+
},
|
|
118
|
+
order: 2,
|
|
119
|
+
customComponent: true,
|
|
120
|
+
supportedEvents: ["onChange"],
|
|
121
|
+
},
|
|
122
|
+
],
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
rowClassName: "sms-count-container",
|
|
126
|
+
rowStyle: {
|
|
127
|
+
bottom: "8px",
|
|
128
|
+
fontSize: "12px",
|
|
129
|
+
},
|
|
130
|
+
cols: [
|
|
131
|
+
{
|
|
132
|
+
id: "sms-count",
|
|
133
|
+
type: "div",
|
|
134
|
+
props: { type: "label3" },
|
|
135
|
+
onlyDisplay: true,
|
|
136
|
+
metaType: "label",
|
|
137
|
+
value: "",
|
|
138
|
+
primitive: true,
|
|
139
|
+
width: 18,
|
|
140
|
+
style: {
|
|
141
|
+
float: "right",
|
|
142
|
+
},
|
|
143
|
+
},
|
|
144
|
+
],
|
|
145
|
+
},
|
|
146
|
+
],
|
|
147
|
+
actionFields: [],
|
|
148
|
+
},
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
width: 6,
|
|
153
|
+
type: "multicols",
|
|
154
|
+
offset: 1,
|
|
155
|
+
|
|
156
|
+
inputFields: [
|
|
157
|
+
{
|
|
158
|
+
cols: [
|
|
159
|
+
{
|
|
160
|
+
id: "line-preview",
|
|
161
|
+
type: "line-preview",
|
|
162
|
+
customComponent: true,
|
|
163
|
+
customStyling: {
|
|
164
|
+
padding: "0",
|
|
165
|
+
},
|
|
166
|
+
metaType: "preview",
|
|
167
|
+
required: true,
|
|
168
|
+
fluid: true,
|
|
169
|
+
styling: "semantic",
|
|
170
|
+
order: 1,
|
|
171
|
+
onlyDisplay: true,
|
|
172
|
+
offset: 7,
|
|
173
|
+
channel: "LINE",
|
|
174
|
+
charCounterEnabled: true,
|
|
175
|
+
},
|
|
176
|
+
],
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
},
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: "multicols",
|
|
184
|
+
inputFields: [
|
|
185
|
+
{
|
|
186
|
+
rowClassName: "creatives-sms-footer",
|
|
187
|
+
cols: [
|
|
188
|
+
{
|
|
189
|
+
id: "save-button",
|
|
190
|
+
metaType: "submit-button",
|
|
191
|
+
colStyle: { marginRight: "16px" },
|
|
192
|
+
type: "button",
|
|
193
|
+
buttonType: "primary",
|
|
194
|
+
value: "Save",
|
|
195
|
+
customComponent: false,
|
|
196
|
+
styling: "semantic",
|
|
197
|
+
order: 3,
|
|
198
|
+
fluid: true,
|
|
199
|
+
standalone: true,
|
|
200
|
+
onlyDisplay: true,
|
|
201
|
+
submitAction: "saveFormData",
|
|
202
|
+
supportedEvents: ["saveFormData"],
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
},
|
|
206
|
+
],
|
|
207
|
+
actionFields: [],
|
|
208
|
+
},
|
|
209
|
+
],
|
|
210
|
+
},
|
|
211
|
+
],
|
|
212
|
+
},
|
|
213
|
+
module: "Campaigns",
|
|
214
|
+
channel: "LINE",
|
|
215
|
+
},
|
|
216
|
+
imageSchema: {
|
|
217
|
+
standalone: {
|
|
218
|
+
sections: [
|
|
219
|
+
{
|
|
220
|
+
type: "parent",
|
|
221
|
+
childSections: [
|
|
222
|
+
{
|
|
223
|
+
type: "multicols",
|
|
224
|
+
width: 16,
|
|
225
|
+
inputFields: [
|
|
226
|
+
{
|
|
227
|
+
cols: [],
|
|
228
|
+
},
|
|
229
|
+
],
|
|
230
|
+
actionFields: [],
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
type: "parent",
|
|
234
|
+
|
|
235
|
+
childSections: [
|
|
236
|
+
{
|
|
237
|
+
width: 16,
|
|
238
|
+
type: "parent",
|
|
239
|
+
childSections: [
|
|
240
|
+
{
|
|
241
|
+
type: "multicols",
|
|
242
|
+
inputFields: [
|
|
243
|
+
{
|
|
244
|
+
cols: [
|
|
245
|
+
{
|
|
246
|
+
id: "template-name",
|
|
247
|
+
placeholder: "",
|
|
248
|
+
type: "input",
|
|
249
|
+
label: "Message",
|
|
250
|
+
metaType: "text",
|
|
251
|
+
datatype: "string",
|
|
252
|
+
required: true,
|
|
253
|
+
fluid: true,
|
|
254
|
+
styling: "semantic",
|
|
255
|
+
order: 1,
|
|
256
|
+
width: 18,
|
|
257
|
+
customComponent: false,
|
|
258
|
+
standalone: true,
|
|
259
|
+
onlyDisplay: false,
|
|
260
|
+
errorMessage:
|
|
261
|
+
"",
|
|
262
|
+
supportedEvents: ["onChange"],
|
|
263
|
+
},
|
|
264
|
+
],
|
|
265
|
+
},
|
|
266
|
+
],
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
type: "multicols",
|
|
270
|
+
|
|
271
|
+
inputFields: [
|
|
272
|
+
{
|
|
273
|
+
rowClassName:
|
|
274
|
+
"mobile-push-row mobile-push-img line-image",
|
|
275
|
+
cols: [
|
|
276
|
+
{
|
|
277
|
+
id: "image-upload-line",
|
|
278
|
+
type: "upload",
|
|
279
|
+
showPreview: true,
|
|
280
|
+
previewProps: {
|
|
281
|
+
label: "",
|
|
282
|
+
inductiveText:
|
|
283
|
+
"",
|
|
284
|
+
errorMessage: "",
|
|
285
|
+
},
|
|
286
|
+
width: 22,
|
|
287
|
+
metaType: "text",
|
|
288
|
+
datatype: "string",
|
|
289
|
+
required: true,
|
|
290
|
+
fluid: true,
|
|
291
|
+
styling: "semantic",
|
|
292
|
+
order: 1,
|
|
293
|
+
style: {
|
|
294
|
+
marginTop: 36,
|
|
295
|
+
},
|
|
296
|
+
customComponent: true,
|
|
297
|
+
offset: 0,
|
|
298
|
+
submitAction: "onUpload",
|
|
299
|
+
supportedEvents: ["onUpload"],
|
|
300
|
+
},
|
|
301
|
+
],
|
|
302
|
+
},
|
|
303
|
+
],
|
|
304
|
+
actionFields: [],
|
|
305
|
+
},
|
|
306
|
+
],
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
width: 6,
|
|
310
|
+
type: "multicols",
|
|
311
|
+
offset: 1,
|
|
312
|
+
|
|
313
|
+
inputFields: [
|
|
314
|
+
{
|
|
315
|
+
cols: [
|
|
316
|
+
{
|
|
317
|
+
id: "line-preview",
|
|
318
|
+
type: "line-preview",
|
|
319
|
+
customComponent: true,
|
|
320
|
+
customStyling: {
|
|
321
|
+
padding: "0",
|
|
322
|
+
},
|
|
323
|
+
metaType: "preview",
|
|
324
|
+
required: true,
|
|
325
|
+
fluid: true,
|
|
326
|
+
styling: "semantic",
|
|
327
|
+
order: 1,
|
|
328
|
+
onlyDisplay: true,
|
|
329
|
+
offset: 7,
|
|
330
|
+
channel: "LINE",
|
|
331
|
+
charCounterEnabled: true,
|
|
332
|
+
},
|
|
333
|
+
],
|
|
334
|
+
},
|
|
335
|
+
],
|
|
336
|
+
},
|
|
337
|
+
],
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
type: "multicols",
|
|
341
|
+
inputFields: [
|
|
342
|
+
{
|
|
343
|
+
rowClassName: "creatives-sms-footer",
|
|
344
|
+
cols: [
|
|
345
|
+
{
|
|
346
|
+
id: "save-button",
|
|
347
|
+
metaType: "submit-button",
|
|
348
|
+
colStyle: { marginRight: "16px" },
|
|
349
|
+
type: "button",
|
|
350
|
+
buttonType: "primary",
|
|
351
|
+
value: "Save",
|
|
352
|
+
customComponent: false,
|
|
353
|
+
styling: "semantic",
|
|
354
|
+
order: 3,
|
|
355
|
+
fluid: true,
|
|
356
|
+
standalone: true,
|
|
357
|
+
onlyDisplay: true,
|
|
358
|
+
submitAction: "saveFormData",
|
|
359
|
+
supportedEvents: ["saveFormData"],
|
|
360
|
+
},
|
|
361
|
+
],
|
|
362
|
+
},
|
|
363
|
+
],
|
|
364
|
+
actionFields: [],
|
|
365
|
+
},
|
|
366
|
+
],
|
|
367
|
+
},
|
|
368
|
+
],
|
|
369
|
+
},
|
|
370
|
+
channel: "LINE",
|
|
371
|
+
module: "Campaigns",
|
|
372
|
+
type: "LAYOUT",
|
|
373
|
+
},
|
|
374
|
+
},
|
|
375
|
+
isActive: true,
|
|
376
|
+
},
|
|
377
|
+
],
|
|
378
|
+
};
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Create Messages
|
|
3
|
+
*
|
|
4
|
+
* This contains all the text for the Create component.
|
|
5
|
+
*/
|
|
6
|
+
import { defineMessages } from 'react-intl';
|
|
7
|
+
|
|
8
|
+
export default defineMessages({
|
|
9
|
+
"imageUploadLabel": {
|
|
10
|
+
id: 'creatives.containersV2.Line.Create.ImageUploadLabel',
|
|
11
|
+
defaultMessage: 'Upload image',
|
|
12
|
+
},
|
|
13
|
+
"Enter template name*": {
|
|
14
|
+
id: 'creatives.containersV2.Line.Create.enterTemplateNameImportant',
|
|
15
|
+
defaultMessage: 'Enter template name*',
|
|
16
|
+
},
|
|
17
|
+
"Enter template name": {
|
|
18
|
+
id: 'creatives.containersV2.Line.Create.enterTemplateName',
|
|
19
|
+
defaultMessage: 'Enter template name',
|
|
20
|
+
},
|
|
21
|
+
"Template name cannot be empty": {
|
|
22
|
+
id: 'creatives.containersV2.Line.Create.templateCantEmpty',
|
|
23
|
+
defaultMessage: 'Template name cannot be empty',
|
|
24
|
+
},
|
|
25
|
+
"Discard Changes": {
|
|
26
|
+
id: 'creatives.containersV2.Line.Create.discardChanges',
|
|
27
|
+
defaultMessage: 'Discard changes',
|
|
28
|
+
},
|
|
29
|
+
"Cancel": {
|
|
30
|
+
id: 'creatives.containersV2.Line.Create.cancel',
|
|
31
|
+
defaultMessage: 'Cancel',
|
|
32
|
+
},
|
|
33
|
+
"Save": {
|
|
34
|
+
id: 'creatives.containersV2.Line.Create.save',
|
|
35
|
+
defaultMessage: 'Save',
|
|
36
|
+
},
|
|
37
|
+
"Select Line Account": {
|
|
38
|
+
id: 'creatives.containersV2.Line.Create.selectLineAccount',
|
|
39
|
+
defaultMessage: 'Select line account',
|
|
40
|
+
},
|
|
41
|
+
"Account Id": {
|
|
42
|
+
id: 'creatives.containersV2.Line.Create.accountId',
|
|
43
|
+
defaultMessage: 'Account id',
|
|
44
|
+
},
|
|
45
|
+
"Select Line Template": {
|
|
46
|
+
id: 'creatives.containersV2.Line.Create.selectLineTemplate',
|
|
47
|
+
defaultMessage: 'Select line template',
|
|
48
|
+
},
|
|
49
|
+
"Template": {
|
|
50
|
+
id: 'creatives.containersV2.Line.Create.template',
|
|
51
|
+
defaultMessage: 'Template',
|
|
52
|
+
},
|
|
53
|
+
"Title*": {
|
|
54
|
+
id: 'creatives.containersV2.Line.Create.titleLabel',
|
|
55
|
+
defaultMessage: 'Title*',
|
|
56
|
+
},
|
|
57
|
+
"Title": {
|
|
58
|
+
id: 'creatives.containersV2.Line.Create.title',
|
|
59
|
+
defaultMessage: 'Title',
|
|
60
|
+
},
|
|
61
|
+
"Please input message title name.": {
|
|
62
|
+
id: 'creatives.containersV2.Line.Create.titleNameInvalid',
|
|
63
|
+
defaultMessage: 'Please enter the message title',
|
|
64
|
+
},
|
|
65
|
+
"Template message has unsupported/missing tags!": {
|
|
66
|
+
id: 'creatives.containersV2.Line.Create.messageHasUnsupportedTag',
|
|
67
|
+
defaultMessage: 'Please check the message content for unsupported/missing tags',
|
|
68
|
+
},
|
|
69
|
+
"Tags": {
|
|
70
|
+
id: 'creatives.containersV2.Line.Create.Tags',
|
|
71
|
+
defaultMessage: 'Tags',
|
|
72
|
+
},
|
|
73
|
+
"Message*": {
|
|
74
|
+
id: 'creatives.containersV2.Line.Create.messageLabel',
|
|
75
|
+
defaultMessage: 'Message*',
|
|
76
|
+
},
|
|
77
|
+
"Message": {
|
|
78
|
+
id: 'creatives.containersV2.Line.Create.message',
|
|
79
|
+
defaultMessage: 'Message',
|
|
80
|
+
},
|
|
81
|
+
"Please input line template content.": {
|
|
82
|
+
id: 'creatives.containersV2.Line.Create.inputLineTemplateContent',
|
|
83
|
+
defaultMessage: 'Please enter the message content',
|
|
84
|
+
},
|
|
85
|
+
"Template title has unsupported/missing tags.": {
|
|
86
|
+
id: 'creatives.containersV2.Line.Create.titleHasUnsupportedTag',
|
|
87
|
+
defaultMessage: 'Please check the message content for unsupported/missing tags',
|
|
88
|
+
},
|
|
89
|
+
"Template name cannot be empty.": {
|
|
90
|
+
id: 'creatives.containersV2.Line.Create.templateNameNotEmpty',
|
|
91
|
+
defaultMessage: 'Please provide a template name ',
|
|
92
|
+
},
|
|
93
|
+
"Message title has unsupported/missing tags!": {
|
|
94
|
+
id: 'creatives.containersV2.Line.Create.messageTitleWithUnsupportedTag',
|
|
95
|
+
defaultMessage: 'Please check the message content for unsupported/missing tags',
|
|
96
|
+
},
|
|
97
|
+
"Image": {
|
|
98
|
+
id: 'creatives.containersV2.Line.Create.Image',
|
|
99
|
+
defaultMessage: 'Image',
|
|
100
|
+
},
|
|
101
|
+
"Max file size acceptable is 5mb": {
|
|
102
|
+
id: 'creatives.containersV2.Line.Create.maxUploadFileSize',
|
|
103
|
+
defaultMessage: 'Max file size acceptable is 5mb',
|
|
104
|
+
},
|
|
105
|
+
"Please upload Image": {
|
|
106
|
+
id: 'creatives.containersV2.Line.Create.pleaseUploadImage',
|
|
107
|
+
defaultMessage: 'Please upload image',
|
|
108
|
+
},
|
|
109
|
+
"Upload Image": {
|
|
110
|
+
id: 'creatives.containersV2.Line.Create.uploadImage',
|
|
111
|
+
defaultMessage: 'Upload image',
|
|
112
|
+
},
|
|
113
|
+
"lineTemplateCreatedSuccessfully": {
|
|
114
|
+
id: 'creatives.containersV2.Line.Create.lineTemplateCreatedSuccessfully',
|
|
115
|
+
defaultMessage: 'Line template created successfully',
|
|
116
|
+
},
|
|
117
|
+
"Line Template Edited Successfully": {
|
|
118
|
+
id: 'creatives.containersV2.Line.Create.templateEditedSuccessfully',
|
|
119
|
+
defaultMessage: 'Line template edited successfully',
|
|
120
|
+
},
|
|
121
|
+
"somethingWentWrong": {
|
|
122
|
+
id: 'creatives.containersV2.Line.Create.somethingWentWrong',
|
|
123
|
+
defaultMessage: 'Something went wrong!!',
|
|
124
|
+
},
|
|
125
|
+
"Name and Description": {
|
|
126
|
+
id: 'creatives.containersV2.Line.Create.nameAndDescription',
|
|
127
|
+
defaultMessage: 'Name and description',
|
|
128
|
+
},
|
|
129
|
+
"Button 1": {
|
|
130
|
+
id: 'creatives.containersV2.Line.Create.button1',
|
|
131
|
+
defaultMessage: 'Button 1',
|
|
132
|
+
},
|
|
133
|
+
"Button 2": {
|
|
134
|
+
id: 'creatives.containersV2.Line.Create.button2',
|
|
135
|
+
defaultMessage: 'Button 2',
|
|
136
|
+
},
|
|
137
|
+
"File size cannot be more than 1mb": {
|
|
138
|
+
id: 'creatives.containersV2.Line.Create.uploadFileSizeError',
|
|
139
|
+
defaultMessage: 'File size cannot be more than 1mb',
|
|
140
|
+
},
|
|
141
|
+
"value cannot be empty.": {
|
|
142
|
+
id: 'creatives.containersV2.Line.Create.valueCantEmpty',
|
|
143
|
+
defaultMessage: 'value cannot be empty.',
|
|
144
|
+
},
|
|
145
|
+
"Uploading Image...": {
|
|
146
|
+
id: 'creatives.containersV2.Line.Create.uploadingImage',
|
|
147
|
+
defaultMessage: 'Uploading image...',
|
|
148
|
+
},
|
|
149
|
+
"Photo Uploaded Successfully": {
|
|
150
|
+
id: 'creatives.containersV2.Line.Create.uploadSuccess',
|
|
151
|
+
defaultMessage: 'Photo uploaded successfully',
|
|
152
|
+
},
|
|
153
|
+
"Campaigns": {
|
|
154
|
+
id: 'creatives.containersV2.Line.Create.Campaigns',
|
|
155
|
+
defaultMessage: 'Campaigns',
|
|
156
|
+
},
|
|
157
|
+
"Creatives": {
|
|
158
|
+
id: 'creatives.containersV2.Line.Create.Creatives',
|
|
159
|
+
defaultMessage: 'Creatives',
|
|
160
|
+
},
|
|
161
|
+
"Line": {
|
|
162
|
+
id: 'creatives.containersV2.Line.Create.line',
|
|
163
|
+
defaultMessage: 'Line',
|
|
164
|
+
},
|
|
165
|
+
"Please upload an image to proceed": {
|
|
166
|
+
id: 'creatives.containersV2.Line.Create.image',
|
|
167
|
+
defaultMessage: 'Please upload an image to proceed',
|
|
168
|
+
},
|
|
169
|
+
"Maximum characters length exceeds": {
|
|
170
|
+
id: 'creatives.containersV2.Line.Create.maximumCharacterLengthExceeds',
|
|
171
|
+
defaultMessage: 'Maximum characters length exceeds',
|
|
172
|
+
},
|
|
173
|
+
"alertMessage": {
|
|
174
|
+
id: 'creatives.containersV2.Line.Create.alertMessage',
|
|
175
|
+
defaultMessage: 'Alert',
|
|
176
|
+
},
|
|
177
|
+
"templateNotConfigured": {
|
|
178
|
+
id: 'creatives.containersV2.Line.Create.templateNotConfigured',
|
|
179
|
+
defaultMessage: 'template not configured,',
|
|
180
|
+
},
|
|
181
|
+
"goBackTemporaryLost": {
|
|
182
|
+
id: 'creatives.containersV2.Line.Create.goBackTemporaryLost',
|
|
183
|
+
defaultMessage: 'Do you really want to go back? All your temporary changes will be lost!',
|
|
184
|
+
},
|
|
185
|
+
"Template content has unsupported/missing tags!": {
|
|
186
|
+
id: 'creatives.containers.Create.tagsErrorMessage',
|
|
187
|
+
defaultMessage: 'Message cannot be empty',
|
|
188
|
+
},
|
|
189
|
+
"imageGallery": {
|
|
190
|
+
id: 'creatives.containers.Create.imageGallery',
|
|
191
|
+
defaultMessage: 'Gallery',
|
|
192
|
+
},
|
|
193
|
+
"templatePlaceholder": {
|
|
194
|
+
id: 'creatives.containers.Create.templatePlaceholder',
|
|
195
|
+
defaultMessage: 'Enter template name',
|
|
196
|
+
},
|
|
197
|
+
"templateNameErrorPlaceholder": {
|
|
198
|
+
id: 'creatives.containers.Create.templateNameErrorPlaceholder',
|
|
199
|
+
defaultMessage: 'Template name cannot be empty.',
|
|
200
|
+
},
|
|
201
|
+
"templateAddTag": {
|
|
202
|
+
id: 'creatives.containers.Create.templateAddTag',
|
|
203
|
+
defaultMessage: 'Add tag',
|
|
204
|
+
},
|
|
205
|
+
"templateMessageError": {
|
|
206
|
+
id: 'creatives.containers.Create.templateMessageError',
|
|
207
|
+
defaultMessage: 'Template content cannot be empty!',
|
|
208
|
+
},
|
|
209
|
+
"templateMessagePlaceholder": {
|
|
210
|
+
id: 'creatives.containers.Create.templateMessagePlaceholder',
|
|
211
|
+
defaultMessage: 'Please input line template content.',
|
|
212
|
+
},
|
|
213
|
+
"templateMessagePreviewPropsLabel": {
|
|
214
|
+
id: 'creatives.containers.Create.templateMessagePreviewPropsLabel',
|
|
215
|
+
defaultMessage: 'Upload image content',
|
|
216
|
+
},
|
|
217
|
+
"templateMessagePreviewPropsError": {
|
|
218
|
+
id: 'creatives.containers.Create.templateMessagePreviewPropsError',
|
|
219
|
+
defaultMessage: 'Please upload image',
|
|
220
|
+
},
|
|
221
|
+
"templateMessagePreviewPropsInductiveText": {
|
|
222
|
+
id: 'creatives.containers.Create.templateMessagePreviewPropsInductiveText',
|
|
223
|
+
defaultMessage: 'The relevant image that complements the message context.',
|
|
224
|
+
},
|
|
225
|
+
"lineImageIncorrectSize": {
|
|
226
|
+
id: 'creatives.containers.Create.lineImageIncorrectSize',
|
|
227
|
+
defaultMessage: 'Please upload the image with correct type, size and dimension',
|
|
228
|
+
},
|
|
229
|
+
});
|