@capillarytech/creatives-library 6.13.9 → 6.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app.js +2 -5
- package/components/FormBuilder/index.js +2 -6
- package/containers/Ebill/index.js +0 -3
- package/containers/Email/index.js +8 -16
- package/containers/Sms/Create/index.js +1 -2
- package/containers/Templates/index.js +3 -0
- package/index.js +1 -8
- package/package.json +2 -2
- package/reducers.js +0 -2
- package/routes.js +1 -7
- package/services/api.js +3 -7
- package/translations/en.json +107 -50
- package/translations/zh.json +107 -50
- package/v2Components/FormBuilder/index.js +11 -5
- package/v2Components/TemplatePreview/_templatePreview.scss +2 -8
- package/v2Components/TemplatePreview/index.js +18 -104
- package/v2Containers/App/constants.js +1 -1
- package/v2Containers/CreativesContainer/SlideBoxContent.js +4 -71
- package/v2Containers/CreativesContainer/constants.js +0 -2
- package/v2Containers/CreativesContainer/index.js +5 -40
- package/v2Containers/Email/actions.js +1 -2
- package/v2Containers/Email/index.js +29 -45
- package/v2Containers/Email/sagas.js +2 -2
- package/v2Containers/EmailWrapper/index.js +0 -2
- package/v2Containers/Templates/_templates.scss +0 -57
- package/v2Containers/Templates/actions.js +110 -117
- package/v2Containers/Templates/constants.js +0 -2
- package/v2Containers/Templates/index.js +6 -86
- package/v2Containers/Templates/messages.js +0 -4
- package/v2Containers/Templates/reducer.js +0 -2
- package/v2Containers/TemplatesV2/index.js +7 -14
- package/v2Containers/TemplatesV2/messages.js +0 -4
- package/v2Containers/WeChat/MapTemplates/index.js +1 -1
- package/assets/viber.png +0 -0
- package/utils/ignoredErrorMessages.js +0 -4
- package/v2Containers/Viber/_viber.scss +0 -3
- package/v2Containers/Viber/actions.js +0 -74
- package/v2Containers/Viber/constants.js +0 -30
- package/v2Containers/Viber/index.js +0 -707
- package/v2Containers/Viber/messages.js +0 -137
- package/v2Containers/Viber/reducer.js +0 -84
- package/v2Containers/Viber/sagas.js +0 -107
- package/v2Containers/Viber/selectors.js +0 -21
package/app.js
CHANGED
|
@@ -25,7 +25,6 @@ import initialState from './initialState';
|
|
|
25
25
|
import './styles/vendor/semantic/dist/semantic.min.css';
|
|
26
26
|
import './styles/main.scss';
|
|
27
27
|
import pathConfig from './config/path';
|
|
28
|
-
import ignoredErrorMessages from './utils/ignoredErrorMessages';
|
|
29
28
|
// addLocaleData([...en, ...es, ...fr, ...it, ...zh]);
|
|
30
29
|
|
|
31
30
|
const browserHistory = useRouterHistory(createHistory)({
|
|
@@ -39,12 +38,10 @@ const history = syncHistoryWithStore(browserHistory, store, {
|
|
|
39
38
|
});
|
|
40
39
|
|
|
41
40
|
const bugSnagErrorCallback = (event) => {
|
|
42
|
-
const { app: { releaseStage } = {}
|
|
43
|
-
const errorMessage = originalError && originalError.message;
|
|
41
|
+
const { app: { releaseStage } = {} } = event || {};
|
|
44
42
|
if (
|
|
45
43
|
(releaseStage || '').includes('nightly') ||
|
|
46
|
-
process.env.NODE_ENV !== 'production'
|
|
47
|
-
ignoredErrorMessages.includes(errorMessage)
|
|
44
|
+
process.env.NODE_ENV !== 'production'
|
|
48
45
|
) {
|
|
49
46
|
return false;
|
|
50
47
|
}
|
|
@@ -204,9 +204,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
204
204
|
|
|
205
205
|
if (!_.isEmpty(nextProps.formData) && !_.isEqual(this.state.formData, nextProps.formData)) {
|
|
206
206
|
if (nextProps.isNewVersionFlow) {
|
|
207
|
-
const
|
|
208
|
-
const nextPropsTabKey = nextPropsFormData && nextPropsFormData.tabKey;
|
|
209
|
-
const tabKey = (this.state.tabKey !== nextPropsTabKey) ? nextPropsTabKey: this.state.tabKey;
|
|
207
|
+
const tabKey = (this.state.tabKey !== nextProps.formData[nextProps.currentTab - 1].tabKey) ? nextProps.formData[nextProps.currentTab - 1].tabKey : this.state.tabKey;
|
|
210
208
|
|
|
211
209
|
this.setState({tabKey});
|
|
212
210
|
}
|
|
@@ -1843,9 +1841,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
1843
1841
|
formData.base.tabKey = `${data}`;
|
|
1844
1842
|
}
|
|
1845
1843
|
|
|
1846
|
-
|
|
1847
|
-
const formDataTabKey = formDataActiveKey && formDataActiveKey.tabKey;
|
|
1848
|
-
that.setState({formData, currentLangTab: formData[(this.state.currentTab - 1)].activeTab, tabKey: formDataTabKey}, () => {
|
|
1844
|
+
that.setState({formData, currentLangTab: formData[(this.state.currentTab - 1)].activeTab, tabKey: formData[(this.state.currentTab - 1)][formData[(this.state.currentTab - 1)].activeTab].tabKey}, () => {
|
|
1849
1845
|
val.injectedEvents[event].call(that.props.parent, this.state.currentTab, formData);
|
|
1850
1846
|
});
|
|
1851
1847
|
} else {
|
|
@@ -908,9 +908,6 @@ export class Ebill extends React.Component { // eslint-disable-line react/prefer
|
|
|
908
908
|
injectEvents(schema) {
|
|
909
909
|
console.log('now injecting events', schema);
|
|
910
910
|
const temp = schema;
|
|
911
|
-
if (!temp.standalone) {
|
|
912
|
-
temp.standalone = {};
|
|
913
|
-
}
|
|
914
911
|
temp.standalone.sections = this.injectSections(temp.standalone.sections);
|
|
915
912
|
_.forEach(temp.containers, (container) => {
|
|
916
913
|
let tempContainer = container;
|
|
@@ -1155,11 +1155,8 @@ export class Email extends React.Component { // eslint-disable-line react/prefer
|
|
|
1155
1155
|
const msgString = JSON.stringify(msg);
|
|
1156
1156
|
const langId = formData[this.state.currentTab - 1].activeTab;
|
|
1157
1157
|
const langIndex = formData[this.state.currentTab - 1].selectedLanguages.indexOf(langId);
|
|
1158
|
-
const
|
|
1159
|
-
|
|
1160
|
-
const win = elementToSelect.contentWindow;
|
|
1161
|
-
win.postMessage(msgString, '*');
|
|
1162
|
-
}
|
|
1158
|
+
const win = document.getElementById(`edmeditor${(langIndex + 1) > 1 ? (langIndex + 1) : ''}`).contentWindow;
|
|
1159
|
+
win.postMessage(msgString, '*');
|
|
1163
1160
|
} else {
|
|
1164
1161
|
console.log('tag', this.state, this.state.editorInstanse);
|
|
1165
1162
|
if (this.state.editorInstanse) {
|
|
@@ -1418,8 +1415,7 @@ export class Email extends React.Component { // eslint-disable-line react/prefer
|
|
|
1418
1415
|
|
|
1419
1416
|
getMappedEvent = (id, event) => {
|
|
1420
1417
|
console.log('Map ', this.map, id, event);
|
|
1421
|
-
|
|
1422
|
-
return mapIdObject && mapIdObject[event] ? mapIdObject[event] : () => {};
|
|
1418
|
+
return this.map[id][event];
|
|
1423
1419
|
}
|
|
1424
1420
|
|
|
1425
1421
|
getCurrentWindow = (e) => {
|
|
@@ -1515,11 +1511,8 @@ export class Email extends React.Component { // eslint-disable-line react/prefer
|
|
|
1515
1511
|
_.forEach(data.selectedLanguages, (language, langIndex) => {
|
|
1516
1512
|
if (data[language].is_drag_drop) {
|
|
1517
1513
|
console.log('saving edm template', document.getElementById("edmeditor"), `edmeditor${(langIndex + 1) > 1 ? (langIndex + 1) : ''}`);
|
|
1518
|
-
const
|
|
1519
|
-
|
|
1520
|
-
const win = elementToSelect.contentWindow;
|
|
1521
|
-
win.postMessage("saveProject", '*');
|
|
1522
|
-
}
|
|
1514
|
+
const win = document.getElementById(`edmeditor${(langIndex + 1) > 1 ? (langIndex + 1) : ''}`).contentWindow;
|
|
1515
|
+
win.postMessage("saveProject", '*');
|
|
1523
1516
|
}
|
|
1524
1517
|
});
|
|
1525
1518
|
});
|
|
@@ -2508,7 +2501,7 @@ export class Email extends React.Component { // eslint-disable-line react/prefer
|
|
|
2508
2501
|
const tempEl = containerInputFieldCol;
|
|
2509
2502
|
if (containerInputFieldCol.id === "tab-header") {
|
|
2510
2503
|
const baseLanguage = this.props.Global.currentOrgDetails && this.props.Global.currentOrgDetails.basic_details && this.props.Global.currentOrgDetails.basic_details.base_language && this.props.Global.currentOrgDetails.basic_details.base_language !== "" ? this.props.Global.currentOrgDetails.basic_details.base_language : 'en';
|
|
2511
|
-
const supportedLanguages = this.props.Global.currentOrgDetails
|
|
2504
|
+
const supportedLanguages = this.props.Global.currentOrgDetails.basic_details.supported_languages;
|
|
2512
2505
|
if (!supportedLanguages) {
|
|
2513
2506
|
tempEl.value = baseLanguage || 'English';
|
|
2514
2507
|
return;
|
|
@@ -2662,13 +2655,12 @@ export class Email extends React.Component { // eslint-disable-line react/prefer
|
|
|
2662
2655
|
if (languageIndex === -1) {
|
|
2663
2656
|
languageIndex = 0;
|
|
2664
2657
|
}
|
|
2665
|
-
const dataBase = data.base;
|
|
2666
2658
|
const tempData = {
|
|
2667
|
-
"is_drag_drop":
|
|
2659
|
+
"is_drag_drop": data.base.is_drag_drop,
|
|
2668
2660
|
"lang_id": this.supportedLanguages[languageIndex].lang_id,
|
|
2669
2661
|
"iso_code": this.supportedLanguages[languageIndex].iso_code,
|
|
2670
2662
|
"language": this.supportedLanguages[languageIndex].language,
|
|
2671
|
-
"template-content":
|
|
2663
|
+
"template-content": !data.base.is_drag_drop && data.base.is_drag_drop !== 1 ? data.base.html_content : "",
|
|
2672
2664
|
};
|
|
2673
2665
|
formData[0].base = true;
|
|
2674
2666
|
formData[0].selectedLanguages.push(this.supportedLanguages[languageIndex].iso_code);
|
|
@@ -297,8 +297,7 @@ export class Create extends React.Component { // eslint-disable-line react/prefe
|
|
|
297
297
|
onTabChange: this.onTabChange,
|
|
298
298
|
},
|
|
299
299
|
};
|
|
300
|
-
|
|
301
|
-
return mappedIdObject && mappedIdObject[event] ? mappedIdObject[event] : () => {};
|
|
300
|
+
return map[id][event];
|
|
302
301
|
}
|
|
303
302
|
|
|
304
303
|
setFormValidity(isFormValid) {
|
|
@@ -721,6 +721,9 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
721
721
|
}
|
|
722
722
|
}
|
|
723
723
|
switch (type) {
|
|
724
|
+
case "getFormData":
|
|
725
|
+
this.getFormData(e);
|
|
726
|
+
break;
|
|
724
727
|
case "startTemplateCreation":
|
|
725
728
|
console.log('Starting to create template');
|
|
726
729
|
//this.getFormData(e);
|
package/index.js
CHANGED
|
@@ -65,10 +65,6 @@ import LineCreate from './v2Containers/Line/Container';
|
|
|
65
65
|
import lineCreateReducer from './v2Containers/Line/Container/reducer';
|
|
66
66
|
import lineCreateSaga from './v2Containers/Line/Container/sagas';
|
|
67
67
|
|
|
68
|
-
import Viber from './v2Containers/Viber';
|
|
69
|
-
import viberReducer from './v2Containers/Viber/reducer';
|
|
70
|
-
import viberSaga from './v2Containers/Viber/sagas';
|
|
71
|
-
|
|
72
68
|
import TemplatesV2 from './v2Containers/TemplatesV2/index';
|
|
73
69
|
|
|
74
70
|
import CreativesContainer from './v2Containers/CreativesContainer';
|
|
@@ -86,7 +82,7 @@ const TemplatesContainer = {Templates, templateReducer, templateSaga};
|
|
|
86
82
|
const SmsCreateContainer = {SmsCreate, smsCreateReducer, smsCreateSaga};
|
|
87
83
|
const SmsEditContainer = {SmsEdit, smsEditReducer, smsEditSaga};
|
|
88
84
|
const EmailContainer = {Email, emailReducer, emailSaga};
|
|
89
|
-
const BeeContainer =
|
|
85
|
+
const BeeContainer ={ BeeEditor,beeReducer,beeSaga}
|
|
90
86
|
const CallTaskContainer = {CallTask, callTaskReducer, callTaskSaga};
|
|
91
87
|
const WeChatMapTemplateContainer = {WeChatMapTemplate, weChatMapTemplateReducer, weChatMapTemplateSaga};
|
|
92
88
|
const WeChatRichMediaCreateContainer = {WeChatRichMediaCreate, weChatRichMediaCreateReducer, weChatRichMediaCreateSaga};
|
|
@@ -96,8 +92,6 @@ const MobilePushEditContainer = {MobilepushEdit, mobilepushEditReducer, mobilepu
|
|
|
96
92
|
const LineCreateContainer = {LineCreate, lineCreateReducer, lineCreateSaga};
|
|
97
93
|
const TemplatesV2Container = {TemplatesV2, templateReducer, templateSaga};
|
|
98
94
|
const FacebookContainer = {Facebook, facebookReducer, facebookSaga};
|
|
99
|
-
const ViberContainer = {Viber, viberReducer, viberSaga};
|
|
100
|
-
|
|
101
95
|
const GalleryContainer = {Gallery, galleryReducer, gallerySagas};
|
|
102
96
|
|
|
103
97
|
export {default as TagList} from './v2Containers/TagList/index';
|
|
@@ -137,5 +131,4 @@ export { CapContainer,
|
|
|
137
131
|
updateCharCount,
|
|
138
132
|
FacebookContainer,
|
|
139
133
|
GalleryContainer,
|
|
140
|
-
ViberContainer,
|
|
141
134
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capillarytech/creatives-library",
|
|
3
3
|
"author": "meharaj",
|
|
4
|
-
"version": "6.
|
|
4
|
+
"version": "6.14.0",
|
|
5
5
|
"description": "Capillary creatives ui",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"module": "./index.es.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@babel/polyfill": "7.4.3",
|
|
16
16
|
"@bugsnag/js": "^7.2.1",
|
|
17
17
|
"@bugsnag/plugin-react": "^7.2.1",
|
|
18
|
-
"@capillarytech/cap-ui-utils": "1.3.
|
|
18
|
+
"@capillarytech/cap-ui-utils": "1.3.3",
|
|
19
19
|
"@mailupinc/bee-plugin": "^1.2.0",
|
|
20
20
|
"babel-cli": "^6.26.0",
|
|
21
21
|
"chalk": "1.1.3",
|
package/reducers.js
CHANGED
|
@@ -9,8 +9,6 @@ import { LOCATION_CHANGE } from 'react-router-redux';
|
|
|
9
9
|
|
|
10
10
|
import languageProviderReducer from 'v2Containers/LanguageProvider/reducer';
|
|
11
11
|
import beeEditorReducer from 'v2Containers/BeeEditor/reducer';
|
|
12
|
-
|
|
13
|
-
|
|
14
12
|
import capReducer from 'containers/Cap/reducer';
|
|
15
13
|
import appReducer from 'containers/App/reducer';
|
|
16
14
|
import createSmsReducer from 'containers/Sms/Create/reducer';
|
package/routes.js
CHANGED
|
@@ -598,8 +598,7 @@ export default function createRoutes(store) {
|
|
|
598
598
|
|
|
599
599
|
importModules.catch(errorLoading);
|
|
600
600
|
},
|
|
601
|
-
},
|
|
602
|
-
{
|
|
601
|
+
}, {
|
|
603
602
|
path: '/v2(/:channel)',
|
|
604
603
|
name: 'templatesV2',
|
|
605
604
|
getComponent(nextState, cb) {
|
|
@@ -635,8 +634,6 @@ export default function createRoutes(store) {
|
|
|
635
634
|
import('v2Containers/Facebook/reducer'),
|
|
636
635
|
import('v2Containers/Line/Container/sagas'),
|
|
637
636
|
import('v2Containers/Line/Container/reducer'),
|
|
638
|
-
import('v2Containers/Viber/sagas'),
|
|
639
|
-
import('v2Containers/Viber/reducer'),
|
|
640
637
|
]);
|
|
641
638
|
|
|
642
639
|
const renderRoute = loadModule(cb);
|
|
@@ -657,7 +654,6 @@ export default function createRoutes(store) {
|
|
|
657
654
|
galleryReducer, gallerySagas,
|
|
658
655
|
facebookSagas, facebookReducer,
|
|
659
656
|
lineCreateSagas, lineCreateReducer,
|
|
660
|
-
viberSagas, viberReducer,
|
|
661
657
|
]) => {
|
|
662
658
|
injectReducer('templates', reducer.default);
|
|
663
659
|
injectReducer('cap', capReducer.default);
|
|
@@ -674,7 +670,6 @@ export default function createRoutes(store) {
|
|
|
674
670
|
injectReducer('gallery', galleryReducer.default);
|
|
675
671
|
injectReducer('facebook', facebookReducer.default);
|
|
676
672
|
injectReducer('lineCreate', lineCreateReducer.default);
|
|
677
|
-
injectReducer('viber', viberReducer.default);
|
|
678
673
|
injectSagas(gallerySagas.default);
|
|
679
674
|
injectSagas(sagas.default);
|
|
680
675
|
injectSagas(capSagas.default);
|
|
@@ -690,7 +685,6 @@ export default function createRoutes(store) {
|
|
|
690
685
|
injectSagas(weChatRichmediaTemplatesEditSagas.default);
|
|
691
686
|
injectSagas(facebookSagas.default);
|
|
692
687
|
injectSagas(lineCreateSagas.default);
|
|
693
|
-
injectSagas(viberSagas.default);
|
|
694
688
|
renderRoute(component);
|
|
695
689
|
});
|
|
696
690
|
importModules.catch(errorLoading);
|
package/services/api.js
CHANGED
|
@@ -319,11 +319,12 @@ 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}
|
|
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
324
|
return API.get(url);
|
|
325
325
|
};
|
|
326
326
|
|
|
327
|
+
|
|
327
328
|
export const getCmsTemplateData = (cmsType, projectId, langId) => {
|
|
328
329
|
const url = `${API_ENDPOINT}/cms/getContent?type=${cmsType}&projectId=${projectId}&langId=${langId}`;
|
|
329
330
|
return API.get(url);
|
|
@@ -358,11 +359,6 @@ export const createLineTemplate = ({template}) => {
|
|
|
358
359
|
return request(url, getAPICallObject('POST', template));
|
|
359
360
|
};
|
|
360
361
|
|
|
361
|
-
export const createViberTemplate = ({template}) => {
|
|
362
|
-
const url = `${API_ENDPOINT}/templates/VIBER`;
|
|
363
|
-
return request(url, getAPICallObject('POST', template));
|
|
364
|
-
};
|
|
365
|
-
|
|
366
362
|
export const getLocizMessage = async (locale) => {
|
|
367
363
|
const appName = 'creatives_v2';
|
|
368
364
|
const url = `${ARYA_ENDPOINT}/translations/${appName}/${locale}`;
|
package/translations/en.json
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"app.components.TemplatePreview.includesOptoutTag": "Includes optout tag",
|
|
3
3
|
"app.components.TemplatePreview.optoutCharactersTotal": "Includes optout tag ({optoutUrlLength} characters)",
|
|
4
|
-
"creatives.components.AccessForbidden.forbiddenDesc": "This page access has not been provided to you.",
|
|
5
|
-
"creatives.components.AccessForbidden.forbiddenHeader": "Access Forbidden",
|
|
6
4
|
"creatives.components.BreadCrumbs.header": "This is the BreadCrumbs component !",
|
|
7
5
|
"creatives.components.CapTagList.Cancel": "Cancel",
|
|
8
6
|
"creatives.components.CapTagList.Ok": "Ok",
|
|
@@ -145,7 +143,7 @@
|
|
|
145
143
|
"creatives.componentsV2.ImagePreview.close": "close",
|
|
146
144
|
"creatives.componentsV2.ImagePreview.loadingImage": "Loading images !!!!",
|
|
147
145
|
"creatives.componentsV2.NavigationBar.businessProcesses": "Workbench",
|
|
148
|
-
"creatives.componentsV2.NavigationBar.
|
|
146
|
+
"creatives.componentsV2.NavigationBar.campaign": "Engage+",
|
|
149
147
|
"creatives.componentsV2.NavigationBar.header": "This is the NavigationBar component!",
|
|
150
148
|
"creatives.componentsV2.NavigationBar.insights": "Insights+",
|
|
151
149
|
"creatives.componentsV2.NavigationBar.logout": "Logout",
|
|
@@ -174,11 +172,9 @@
|
|
|
174
172
|
"creatives.componentsV2.TemplatePreview.charactersPerSms": "SMS chars",
|
|
175
173
|
"creatives.componentsV2.TemplatePreview.charactersTotal": "{smsCount} SMS ({charCount} characters)",
|
|
176
174
|
"creatives.componentsV2.TemplatePreview.close": "close",
|
|
177
|
-
"creatives.componentsV2.TemplatePreview.playVideo": "Play",
|
|
178
175
|
"creatives.componentsV2.TemplatePreview.preview": "Preview",
|
|
179
176
|
"creatives.componentsV2.TemplatePreview.previewGenerated": "Preview is being generated",
|
|
180
177
|
"creatives.componentsV2.TemplatePreview.previewGenerationMessage": "Preview is being generated",
|
|
181
|
-
"creatives.componentsV2.TemplatePreview.showDetails": "Show details",
|
|
182
178
|
"creatives.componentsV2.TemplatePreview.sms": "SMS",
|
|
183
179
|
"creatives.componentsV2.TemplatePreview.smsFormatType": "Message has unicode characters",
|
|
184
180
|
"creatives.componentsV2.TemplatePreview.smsIcon": "Sms Icon",
|
|
@@ -251,6 +247,8 @@
|
|
|
251
247
|
"creatives.containers.Create.graphic_details_page": "Whether to display the graphic cover on the graphic details page",
|
|
252
248
|
"creatives.containers.Create.header": "This is Create container !",
|
|
253
249
|
"creatives.containers.Create.http_example": "Example: http://example.com",
|
|
250
|
+
"creatives.containers.Create.imageGallery": "Gallery",
|
|
251
|
+
"creatives.containers.Create.lineImageIncorrectSize": "Please upload the image with correct type, size and dimension",
|
|
254
252
|
"creatives.containers.Create.markFinalVersionLabel": "Mark as final",
|
|
255
253
|
"creatives.containers.Create.maxContentCount": "You have reached the maximum template size",
|
|
256
254
|
"creatives.containers.Create.messageLabel": "Message",
|
|
@@ -268,9 +266,17 @@
|
|
|
268
266
|
"creatives.containers.Create.sourceLinkEmpty": "Cannot leave source link field empty",
|
|
269
267
|
"creatives.containers.Create.tagsErrorMessage": "Message cannot be empty",
|
|
270
268
|
"creatives.containers.Create.tagsLabel": "Tags",
|
|
269
|
+
"creatives.containers.Create.templateAddTag": "Add tag",
|
|
271
270
|
"creatives.containers.Create.templateDataNotValid": "Template data is not valid",
|
|
272
271
|
"creatives.containers.Create.templateMarkedFinal": "Template Marked as Final Successfully",
|
|
272
|
+
"creatives.containers.Create.templateMessageError": "Template content cannot be empty!",
|
|
273
|
+
"creatives.containers.Create.templateMessagePlaceholder": "Please input line template content.",
|
|
274
|
+
"creatives.containers.Create.templateMessagePreviewPropsError": "Please upload image",
|
|
275
|
+
"creatives.containers.Create.templateMessagePreviewPropsInductiveText": "The relevant image that complements the message context.",
|
|
276
|
+
"creatives.containers.Create.templateMessagePreviewPropsLabel": "Upload image content",
|
|
277
|
+
"creatives.containers.Create.templateNameErrorPlaceholder": "Template name cannot be empty.",
|
|
273
278
|
"creatives.containers.Create.templateNamePlaceHolder": "Enter template name",
|
|
279
|
+
"creatives.containers.Create.templatePlaceholder": "Enter template name",
|
|
274
280
|
"creatives.containers.Create.titleCharacterCount": "Title exceeds character count limit by",
|
|
275
281
|
"creatives.containers.Create.titleEmpty": "Cannot leave title field empty",
|
|
276
282
|
"creatives.containers.Create.titleNameRepeated": "Title name cannot be repeated",
|
|
@@ -1083,6 +1089,102 @@
|
|
|
1083
1089
|
"creatives.containersV2.FacebookMarketingObjective.fbMarketingObjectiveDescription": "Objectives help break reporting into a more granular level",
|
|
1084
1090
|
"creatives.containersV2.FacebookMarketingObjective.fbMarketingObjectiveDone": "Done",
|
|
1085
1091
|
"creatives.containersV2.FacebookMarketingObjective.fbMarketingObjectiveTitle": "Facebook Marketing Objective",
|
|
1092
|
+
"creatives.containersV2.Line.Create.Campaigns": "Campaigns",
|
|
1093
|
+
"creatives.containersV2.Line.Create.Creatives": "Creatives",
|
|
1094
|
+
"creatives.containersV2.Line.Create.Image": "Image",
|
|
1095
|
+
"creatives.containersV2.Line.Create.ImageUploadLabel": "Upload image",
|
|
1096
|
+
"creatives.containersV2.Line.Create.Tags": "Tags",
|
|
1097
|
+
"creatives.containersV2.Line.Create.accountId": "Account id",
|
|
1098
|
+
"creatives.containersV2.Line.Create.alertMessage": "Alert",
|
|
1099
|
+
"creatives.containersV2.Line.Create.button1": "Button 1",
|
|
1100
|
+
"creatives.containersV2.Line.Create.button2": "Button 2",
|
|
1101
|
+
"creatives.containersV2.Line.Create.cancel": "Cancel",
|
|
1102
|
+
"creatives.containersV2.Line.Create.discardChanges": "Discard changes",
|
|
1103
|
+
"creatives.containersV2.Line.Create.enterTemplateName": "Enter template name",
|
|
1104
|
+
"creatives.containersV2.Line.Create.enterTemplateNameImportant": "Enter template name*",
|
|
1105
|
+
"creatives.containersV2.Line.Create.goBackTemporaryLost": "Do you really want to go back? All your temporary changes will be lost!",
|
|
1106
|
+
"creatives.containersV2.Line.Create.image": "Please upload an image to proceed",
|
|
1107
|
+
"creatives.containersV2.Line.Create.inputLineTemplateContent": "Please enter the message content",
|
|
1108
|
+
"creatives.containersV2.Line.Create.line": "Line",
|
|
1109
|
+
"creatives.containersV2.Line.Create.lineTemplateCreatedSuccessfully": "Line template created successfully",
|
|
1110
|
+
"creatives.containersV2.Line.Create.maxUploadFileSize": "Max file size acceptable is 5mb",
|
|
1111
|
+
"creatives.containersV2.Line.Create.maximumCharacterLengthExceeds": "Maximum characters length exceeds",
|
|
1112
|
+
"creatives.containersV2.Line.Create.message": "Message",
|
|
1113
|
+
"creatives.containersV2.Line.Create.messageHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
|
|
1114
|
+
"creatives.containersV2.Line.Create.messageLabel": "Message*",
|
|
1115
|
+
"creatives.containersV2.Line.Create.messageTitleWithUnsupportedTag": "Please check the message content for unsupported/missing tags",
|
|
1116
|
+
"creatives.containersV2.Line.Create.nameAndDescription": "Name and description",
|
|
1117
|
+
"creatives.containersV2.Line.Create.pleaseUploadImage": "Please upload image",
|
|
1118
|
+
"creatives.containersV2.Line.Create.save": "Save",
|
|
1119
|
+
"creatives.containersV2.Line.Create.selectLineAccount": "Select line account",
|
|
1120
|
+
"creatives.containersV2.Line.Create.selectLineTemplate": "Select line template",
|
|
1121
|
+
"creatives.containersV2.Line.Create.somethingWentWrong": "Something went wrong!!",
|
|
1122
|
+
"creatives.containersV2.Line.Create.template": "Template",
|
|
1123
|
+
"creatives.containersV2.Line.Create.templateCantEmpty": "Template name cannot be empty",
|
|
1124
|
+
"creatives.containersV2.Line.Create.templateEditedSuccessfully": "Line template edited successfully",
|
|
1125
|
+
"creatives.containersV2.Line.Create.templateNameNotEmpty": "Please provide a template name",
|
|
1126
|
+
"creatives.containersV2.Line.Create.templateNotConfigured": "template not configured,",
|
|
1127
|
+
"creatives.containersV2.Line.Create.title": "Title",
|
|
1128
|
+
"creatives.containersV2.Line.Create.titleHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
|
|
1129
|
+
"creatives.containersV2.Line.Create.titleLabel": "Title*",
|
|
1130
|
+
"creatives.containersV2.Line.Create.titleNameInvalid": "Please enter the message title",
|
|
1131
|
+
"creatives.containersV2.Line.Create.uploadFileSizeError": "File size cannot be more than 1mb",
|
|
1132
|
+
"creatives.containersV2.Line.Create.uploadImage": "Upload image",
|
|
1133
|
+
"creatives.containersV2.Line.Create.uploadSuccess": "Photo uploaded successfully",
|
|
1134
|
+
"creatives.containersV2.Line.Create.uploadingImage": "Uploading image...",
|
|
1135
|
+
"creatives.containersV2.Line.Create.valueCantEmpty": "value cannot be empty.",
|
|
1136
|
+
"creatives.containersV2.Line.CreateWrapper.accountLineListDescription": "Choose the account to send content",
|
|
1137
|
+
"creatives.containersV2.Line.CreateWrapper.accountLineListTitle": "Line accounts",
|
|
1138
|
+
"creatives.containersV2.Line.CreateWrapper.accountLineNoListTitle": "No line accounts present",
|
|
1139
|
+
"creatives.containersV2.Line.CreateWrapper.continue": "Continue",
|
|
1140
|
+
"creatives.containersV2.Line.CreateWrapper.hybridTemplateDescription": "Used to create combined text & image or video content",
|
|
1141
|
+
"creatives.containersV2.Line.CreateWrapper.hybridTemplateTitle": "Hybrid",
|
|
1142
|
+
"creatives.containersV2.Line.CreateWrapper.imageTemplateDescription": "Used for creating image or video content",
|
|
1143
|
+
"creatives.containersV2.Line.CreateWrapper.imageTemplateTitle": "Image/video template",
|
|
1144
|
+
"creatives.containersV2.Line.CreateWrapper.templateType": "Select the type of content",
|
|
1145
|
+
"creatives.containersV2.Line.CreateWrapper.textTemplateDescription": "Used for announcing offers and transaction related information",
|
|
1146
|
+
"creatives.containersV2.Line.CreateWrapper.textTemplateTitle": "Text template",
|
|
1147
|
+
"creatives.containersV2.Line.Edit.Campaigns": "Campaigns",
|
|
1148
|
+
"creatives.containersV2.Line.Edit.Creatives": "Creatives",
|
|
1149
|
+
"creatives.containersV2.Line.Edit.Image": "Image",
|
|
1150
|
+
"creatives.containersV2.Line.Edit.ImageUploadLabel": "Upload image",
|
|
1151
|
+
"creatives.containersV2.Line.Edit.Tags": "Tags",
|
|
1152
|
+
"creatives.containersV2.Line.Edit.alertMessage": "Alert",
|
|
1153
|
+
"creatives.containersV2.Line.Edit.androidNotConfigured": "Android template is not configured. Save without Android template",
|
|
1154
|
+
"creatives.containersV2.Line.Edit.button1": "Button 1",
|
|
1155
|
+
"creatives.containersV2.Line.Edit.button2": "Button 2",
|
|
1156
|
+
"creatives.containersV2.Line.Edit.cancel": "Cancel",
|
|
1157
|
+
"creatives.containersV2.Line.Edit.discardChanges": "Discard changes",
|
|
1158
|
+
"creatives.containersV2.Line.Edit.enterTemplateName": "Enter template name",
|
|
1159
|
+
"creatives.containersV2.Line.Edit.enterTemplateNameImportant": "Enter template name*",
|
|
1160
|
+
"creatives.containersV2.Line.Edit.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
|
|
1161
|
+
"creatives.containersV2.Line.Edit.goBackTemporaryChangesLost": "Do you really want to go back? All your temporary changes will be lost!",
|
|
1162
|
+
"creatives.containersV2.Line.Edit.inputLineTemplateContent": "Please enter the message content",
|
|
1163
|
+
"creatives.containersV2.Line.Edit.iosNotConfigured": "IOS template is not configured, Save without IOS template",
|
|
1164
|
+
"creatives.containersV2.Line.Edit.maxUploadFileSize": "Max file size acceptable is 5mb",
|
|
1165
|
+
"creatives.containersV2.Line.Edit.message": "Message",
|
|
1166
|
+
"creatives.containersV2.Line.Edit.messageHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
|
|
1167
|
+
"creatives.containersV2.Line.Edit.messageLabel": "Message*",
|
|
1168
|
+
"creatives.containersV2.Line.Edit.messageTitleWithUnsupportedTag": "Please check the message content for unsupported/missing tags",
|
|
1169
|
+
"creatives.containersV2.Line.Edit.mobilePush": "Mobile Push",
|
|
1170
|
+
"creatives.containersV2.Line.Edit.nameAndDescription": "Name and description",
|
|
1171
|
+
"creatives.containersV2.Line.Edit.pleaseUploadImage": "Please upload image",
|
|
1172
|
+
"creatives.containersV2.Line.Edit.save": "Save",
|
|
1173
|
+
"creatives.containersV2.Line.Edit.selectLineTemplate": "Select line template",
|
|
1174
|
+
"creatives.containersV2.Line.Edit.somethingWentWrong": "Something went wrong!!",
|
|
1175
|
+
"creatives.containersV2.Line.Edit.template": "Template",
|
|
1176
|
+
"creatives.containersV2.Line.Edit.templateCantEmpty": "Template name cannot be empty",
|
|
1177
|
+
"creatives.containersV2.Line.Edit.templateEditedSuccessfully": "Line template edited successfully",
|
|
1178
|
+
"creatives.containersV2.Line.Edit.templateNameNotEmpty": "Please provide a template name",
|
|
1179
|
+
"creatives.containersV2.Line.Edit.templateNotConfigured": "template not configured,",
|
|
1180
|
+
"creatives.containersV2.Line.Edit.title": "Title",
|
|
1181
|
+
"creatives.containersV2.Line.Edit.titleHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
|
|
1182
|
+
"creatives.containersV2.Line.Edit.titleLabel": "Title*",
|
|
1183
|
+
"creatives.containersV2.Line.Edit.titleNameInvalid": "Please enter the message title",
|
|
1184
|
+
"creatives.containersV2.Line.Edit.uploadFileSizeError": "File size cannot be more than 5mb",
|
|
1185
|
+
"creatives.containersV2.Line.Edit.uploadImage": "Upload image",
|
|
1186
|
+
"creatives.containersV2.Line.Edit.uploadingImage": "Uploading image...",
|
|
1187
|
+
"creatives.containersV2.Line.Edit.valueCantEmpty": "value cannot be empty.",
|
|
1086
1188
|
"creatives.containersV2.LineContainer.addMessageButtonLabel": "Add message",
|
|
1087
1189
|
"creatives.containersV2.LineContainer.cancelButtonLabel": "Cancel",
|
|
1088
1190
|
"creatives.containersV2.LineContainer.changeAccount": "Change",
|
|
@@ -1091,7 +1193,6 @@
|
|
|
1091
1193
|
"creatives.containersV2.LineContainer.lineAccount": "Line account",
|
|
1092
1194
|
"creatives.containersV2.LineContainer.lineAccountHeading": "Line account",
|
|
1093
1195
|
"creatives.containersV2.LineContainer.lineAccountHeadingChangeLabel": "Change",
|
|
1094
|
-
"creatives.containersV2.LineContainer.lineAccountLabel": "Line account",
|
|
1095
1196
|
"creatives.containersV2.LineContainer.lineCreateNotification": "Line template created successfully",
|
|
1096
1197
|
"creatives.containersV2.LineContainer.lineCreativeDescription": "Select any of the existing templates or create new",
|
|
1097
1198
|
"creatives.containersV2.LineContainer.lineCreativeTitle": "Line creative",
|
|
@@ -1183,39 +1284,6 @@
|
|
|
1183
1284
|
"creatives.containersV2.LineText.textMessageSelectTemplate": "Select template",
|
|
1184
1285
|
"creatives.containersV2.LineText.textMessageTitleLabel": "Template name",
|
|
1185
1286
|
"creatives.containersV2.LineText.textMessageTitlePlaceholder": "Enter template name",
|
|
1186
|
-
"creatives.containersV2.LineVideo.actionButtonLabel": "Action button",
|
|
1187
|
-
"creatives.containersV2.LineVideo.actionLabelInductiveTitle": "Make your own action button label",
|
|
1188
|
-
"creatives.containersV2.LineVideo.actionLabelPlaceholder": "Enter Label",
|
|
1189
|
-
"creatives.containersV2.LineVideo.actionLabelTitle": "Action button label",
|
|
1190
|
-
"creatives.containersV2.LineVideo.actionUrlPlaceholder": "Enter URL",
|
|
1191
|
-
"creatives.containersV2.LineVideo.actionUrlTitle": "Link Url",
|
|
1192
|
-
"creatives.containersV2.LineVideo.dragAndDrop": "Drag and drop video here",
|
|
1193
|
-
"creatives.containersV2.LineVideo.emptyAltTextErrorMessage": "Title can not be empty",
|
|
1194
|
-
"creatives.containersV2.LineVideo.emptyLabelErrorMessage": "Action label can not be more empty",
|
|
1195
|
-
"creatives.containersV2.LineVideo.emptyTitleErrorMessage": "Template title can not be empty",
|
|
1196
|
-
"creatives.containersV2.LineVideo.emptyUrlErrorMessage": "Action URL can not be more empty",
|
|
1197
|
-
"creatives.containersV2.LineVideo.imageGallery": "Gallery",
|
|
1198
|
-
"creatives.containersV2.LineVideo.imageReUpload": "Re upload",
|
|
1199
|
-
"creatives.containersV2.LineVideo.inValidUrlErrorMessage": "Action url is not valid",
|
|
1200
|
-
"creatives.containersV2.LineVideo.lineTemplateImage": "Line templates - Image",
|
|
1201
|
-
"creatives.containersV2.LineVideo.lineVideoIncorrectSize": "This file format/size is not supported.",
|
|
1202
|
-
"creatives.containersV2.LineVideo.maxActionLabelErrorMessage": "Action label can not be more than 20 character",
|
|
1203
|
-
"creatives.containersV2.LineVideo.or": "OR",
|
|
1204
|
-
"creatives.containersV2.LineVideo.searchImages": "Search Images",
|
|
1205
|
-
"creatives.containersV2.LineVideo.select": "Select",
|
|
1206
|
-
"creatives.containersV2.LineVideo.textMessageAddLabel": "How do you want to upload the image?",
|
|
1207
|
-
"creatives.containersV2.LineVideo.textMessageCreateNew": "Create new",
|
|
1208
|
-
"creatives.containersV2.LineVideo.textMessageORLabel": "OR",
|
|
1209
|
-
"creatives.containersV2.LineVideo.textMessageSelectTemplate": "Select template",
|
|
1210
|
-
"creatives.containersV2.LineVideo.textMessageTitleLabel": "Template name",
|
|
1211
|
-
"creatives.containersV2.LineVideo.textMessageTitlePlaceholder": "Enter template name",
|
|
1212
|
-
"creatives.containersV2.LineVideo.titleDescription": "The title is shown in push notifications and in the user's chat list.",
|
|
1213
|
-
"creatives.containersV2.LineVideo.titleLabel": "Title",
|
|
1214
|
-
"creatives.containersV2.LineVideo.uploadComputer": "Your computer",
|
|
1215
|
-
"creatives.containersV2.LineVideo.uploadGallery": "Gallery",
|
|
1216
|
-
"creatives.containersV2.LineVideo.uploadVideoLabel": "Upload Video",
|
|
1217
|
-
"creatives.containersV2.LineVideo.videoFormatDescription": "File formats: MP4",
|
|
1218
|
-
"creatives.containersV2.LineVideo.videoSizeDescription": "File size: Up to 200 MB",
|
|
1219
1287
|
"creatives.containersV2.LineWrapper.changeModalDescription": "The already added content for this card will be lost by changing the content tab.",
|
|
1220
1288
|
"creatives.containersV2.LineWrapper.changeModalLabel": "Do you still want to make the changes to content tab",
|
|
1221
1289
|
"creatives.containersV2.LineWrapper.changeModalTitle": "Changing content tab?",
|
|
@@ -1226,7 +1294,6 @@
|
|
|
1226
1294
|
"creatives.containersV2.LineWrapper.stickerLabel": "Sticker",
|
|
1227
1295
|
"creatives.containersV2.LineWrapper.templateLabel": "Card message",
|
|
1228
1296
|
"creatives.containersV2.LineWrapper.textLabel": "Text",
|
|
1229
|
-
"creatives.containersV2.LineWrapper.videoLabel": "Rich video message",
|
|
1230
1297
|
"creatives.containersV2.Login.header": "This is login container change !",
|
|
1231
1298
|
"creatives.containersV2.Login.invalidCredential": "Invalid username or password",
|
|
1232
1299
|
"creatives.containersV2.Login.loginPage": "Login Page",
|
|
@@ -1414,7 +1481,6 @@
|
|
|
1414
1481
|
"creatives.containersV2.Templates.header": "This is Templates container !",
|
|
1415
1482
|
"creatives.containersV2.Templates.imageCarouselTemplate": "Card message",
|
|
1416
1483
|
"creatives.containersV2.Templates.imageMapTemplate": "Rich message",
|
|
1417
|
-
"creatives.containersV2.Templates.imageMapVideoTemplate": "Rich video message",
|
|
1418
1484
|
"creatives.containersV2.Templates.imageTemplate": "Image",
|
|
1419
1485
|
"creatives.containersV2.Templates.invalidUploadFileError": "File cannot be uploaded. Please select another file with valid file format.",
|
|
1420
1486
|
"creatives.containersV2.Templates.layoutSelection": "Select layout",
|
|
@@ -1531,19 +1597,10 @@
|
|
|
1531
1597
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
1532
1598
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
1533
1599
|
"creatives.containersV2.appName": "App Name",
|
|
1534
|
-
"creatives.containersV2.areYouSureText": "Are you sure?",
|
|
1535
1600
|
"creatives.containersV2.audience": "Audience",
|
|
1536
1601
|
"creatives.containersV2.campaignsDashboard": "Campaigns",
|
|
1537
1602
|
"creatives.containersV2.campaignsHome": "Campaigns Home",
|
|
1538
|
-
"creatives.containersV2.cancel": "Cancel",
|
|
1539
|
-
"creatives.containersV2.changeOk": "Ok, change",
|
|
1540
1603
|
"creatives.containersV2.incentive": "Incentive",
|
|
1541
|
-
"creatives.containersV2.newOrgName": "{newOrgName}",
|
|
1542
|
-
"creatives.containersV2.orgChangeText": "Changing from <b>{oldOrgName}</b> to <b>{newOrgName}</b> will change the organisation for applications open in other tabs as well.<br/>Do you want to make the change to <b>{newOrgName}</b>?",
|
|
1543
|
-
"creatives.containersV2.orgChangedText": "Organization changed to",
|
|
1544
|
-
"creatives.containersV2.orgRefreshHeading": "Org refresh",
|
|
1545
|
-
"creatives.containersV2.refreshOrgText": "Refreshing this page & changing the Org from <b>{oldOrgName}</b> to <b>{newOrgName}</b>. At a time only one Org can be selected on the browser.",
|
|
1546
|
-
"creatives.containersV2.refreshText": "Refreshing in {time}...",
|
|
1547
1604
|
"creatives.containersV2.richMedia.Create.Anyone": "Anyone",
|
|
1548
1605
|
"creatives.containersV2.richMedia.Create.Author": "Author",
|
|
1549
1606
|
"creatives.containersV2.richMedia.Create.Content": "Content",
|