@capillarytech/creatives-library 3.1.44 → 3.1.46
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/Header/index.js +4 -3
- package/components/Header/messages.js +4 -0
- package/containers/Email/index.js +2 -2
- package/containers/Email/messages.js +8 -0
- package/containers/LanguageProvider/index.js +2 -1
- package/containers/Templates/index.js +1 -1
- package/containers/Templates/messages.js +24 -0
- package/containers/WeChat/RichmediaTemplates/Create/messages.js +24 -0
- package/package.json +1 -1
- package/translations/en.json +100 -60
- package/translations/zh.json +100 -60
- package/v2Containers/Email/index.js +2 -2
- package/v2Containers/Email/messages.js +8 -0
- package/v2Containers/LanguageProvider/index.js +2 -0
- package/v2Containers/MobilePush/Create/index.js +1 -1
- package/v2Containers/MobilePush/Create/messages.js +4 -0
- package/v2Containers/MobilePush/Edit/index.js +1 -1
- package/v2Containers/MobilePush/Edit/messages.js +4 -0
- package/v2Containers/WeChat/RichmediaTemplates/Create/index.js +3 -3
- package/v2Containers/WeChat/RichmediaTemplates/Create/messages.js +70 -57
- package/v2Containers/WeChat/Wrapper/messages.js +5 -5
- package/containers/Cap/messsages.js +0 -63
- package/v2Components/Header/index.js +0 -46
- package/v2Components/Header/tests/index.test.js +0 -10
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
import PropTypes from 'prop-types';
|
|
8
8
|
|
|
9
9
|
import React from 'react';
|
|
10
|
-
import { FormattedMessage } from 'react-intl';
|
|
10
|
+
import { FormattedMessage, injectIntl, intlShape } from 'react-intl';
|
|
11
11
|
import { CapRow, CapColumn, CapInput, CapButton } from '@capillarytech/cap-react-ui-library';
|
|
12
12
|
import messages from './messages';
|
|
13
13
|
|
|
@@ -16,7 +16,7 @@ function Header(props) {
|
|
|
16
16
|
<div>
|
|
17
17
|
<CapRow className="template-form-header">
|
|
18
18
|
<CapColumn span={10}>
|
|
19
|
-
<CapInput id="template-name" placeholder=
|
|
19
|
+
<CapInput id="template-name" placeholder={props.intl.formatMessage(messages.enterTemplateName)} defaultValue={props.templateName} type="input" onChange={props.templateNameHandler}/>
|
|
20
20
|
</CapColumn>
|
|
21
21
|
<CapColumn span={2} offset={8}>
|
|
22
22
|
<CapButton id="preview-button" type="cancel" onClick={props.previewHandler}> <FormattedMessage {...messages.preview} /> </CapButton>
|
|
@@ -38,6 +38,7 @@ Header.propTypes = {
|
|
|
38
38
|
cancelHandler: PropTypes.func,
|
|
39
39
|
saveHandler: PropTypes.func,
|
|
40
40
|
templateName: PropTypes.string,
|
|
41
|
+
intl: intlShape.isRequired,
|
|
41
42
|
};
|
|
42
43
|
|
|
43
|
-
export default Header;
|
|
44
|
+
export default injectIntl(Header);
|
|
@@ -3109,8 +3109,8 @@ export class Email extends React.Component { // eslint-disable-line react/prefer
|
|
|
3109
3109
|
);
|
|
3110
3110
|
const schema = this.state.schema;
|
|
3111
3111
|
const spinning = this.state.loading || (this.props.Email && "createTemplateInProgress" in this.props.Email && this.props.Email.createTemplateInProgress) || (this.props.Email.assetUploading !== undefined && this.props.Email.assetUploading);
|
|
3112
|
-
const previewHeader = (<h3>
|
|
3113
|
-
const imagePreviewHeader = (<h3>
|
|
3112
|
+
const previewHeader = (<h3>{this.props.intl.formatMessage(messages.h3emailPreview)}</h3>);
|
|
3113
|
+
const imagePreviewHeader = (<h3>{this.props.intl.formatMessage(messages.h3imageSelection)}</h3>);
|
|
3114
3114
|
const imagePreviewContent = (
|
|
3115
3115
|
<div>
|
|
3116
3116
|
<div>
|
|
@@ -278,4 +278,12 @@ export default defineMessages({
|
|
|
278
278
|
id: 'creatives.containers.Email.Create.creatives',
|
|
279
279
|
defaultMessage: "Creatives",
|
|
280
280
|
},
|
|
281
|
+
"h3emailPreview": {
|
|
282
|
+
id: 'creatives.containers.Email.Create.h3emailPreview',
|
|
283
|
+
defaultMessage: "Email preview",
|
|
284
|
+
},
|
|
285
|
+
"h3imageSelection": {
|
|
286
|
+
id: 'creatives.containers.Email.Create.h3imageSelection',
|
|
287
|
+
defaultMessage: "Image selection",
|
|
288
|
+
},
|
|
281
289
|
});
|
|
@@ -15,7 +15,7 @@ import zhCN from 'antd/es/locale-provider/zh_CN';
|
|
|
15
15
|
import { connect } from 'react-redux';
|
|
16
16
|
import { createSelector } from 'reselect';
|
|
17
17
|
import { IntlProvider } from 'react-intl';
|
|
18
|
-
|
|
18
|
+
import moment from 'moment';
|
|
19
19
|
import { makeSelectLocale } from './selectors';
|
|
20
20
|
|
|
21
21
|
export class LanguageProvider extends React.PureComponent { // eslint-disable-line react/prefer-stateless-function
|
|
@@ -37,6 +37,7 @@ export class LanguageProvider extends React.PureComponent { // eslint-disable-li
|
|
|
37
37
|
zh: zhCN,
|
|
38
38
|
};
|
|
39
39
|
const jLocale = localStorage.getItem('jlocale') || 'en';
|
|
40
|
+
moment.locale(jLocale);
|
|
40
41
|
const file = mappedLocale[jLocale];
|
|
41
42
|
return (
|
|
42
43
|
<ConfigProvider locale={file}>
|
|
@@ -1555,7 +1555,7 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
1555
1555
|
<Breadcrumb>
|
|
1556
1556
|
<BreadcrumbItem>{this.props.intl.formatMessage(messages.campaigns)}</BreadcrumbItem>
|
|
1557
1557
|
<BreadcrumbItem>{this.props.intl.formatMessage(messages.creatives)}</BreadcrumbItem>
|
|
1558
|
-
<BreadcrumbItem>{
|
|
1558
|
+
<BreadcrumbItem>{this.props.intl.formatMessage(messages[this.state.channel]) }</BreadcrumbItem>
|
|
1559
1559
|
</Breadcrumb>
|
|
1560
1560
|
}
|
|
1561
1561
|
</Col>
|
|
@@ -306,4 +306,28 @@ export default defineMessages({
|
|
|
306
306
|
id: 'creatives.containers.Templates.descriptionTemplates',
|
|
307
307
|
defaultMessage: 'Description of templates',
|
|
308
308
|
},
|
|
309
|
+
"Sms": {
|
|
310
|
+
id: 'creatives.containers.Templates.Sms',
|
|
311
|
+
defaultMessage: 'Sms',
|
|
312
|
+
},
|
|
313
|
+
"mobilepush": {
|
|
314
|
+
id: 'creatives.containers.Templates.mobilepush',
|
|
315
|
+
defaultMessage: 'mobilepush',
|
|
316
|
+
},
|
|
317
|
+
"Gallery": {
|
|
318
|
+
id: 'creatives.containers.Templates.Gallery',
|
|
319
|
+
defaultMessage: 'Gallery',
|
|
320
|
+
},
|
|
321
|
+
"Email": {
|
|
322
|
+
id: 'creatives.containers.Templates.Email',
|
|
323
|
+
defaultMessage: 'Email',
|
|
324
|
+
},
|
|
325
|
+
"Ebill": {
|
|
326
|
+
id: 'creatives.containers.Templates.Ebill',
|
|
327
|
+
defaultMessage: 'Ebill',
|
|
328
|
+
},
|
|
329
|
+
"Line": {
|
|
330
|
+
id: 'creatives.containers.Templates.Line',
|
|
331
|
+
defaultMessage: 'Line',
|
|
332
|
+
},
|
|
309
333
|
});
|
|
@@ -138,4 +138,28 @@ export default defineMessages({
|
|
|
138
138
|
id: 'creatives.containers.Create.Only_followers',
|
|
139
139
|
defaultMessage: 'Only followers',
|
|
140
140
|
},
|
|
141
|
+
'Upload Image': {
|
|
142
|
+
id: 'creatives.containers.Create.Upload_Image',
|
|
143
|
+
defaultMessage: 'Upload Image',
|
|
144
|
+
},
|
|
145
|
+
'Whether to display the graphic cover on the graphic details page': {
|
|
146
|
+
id: 'creatives.containers.Create.graphic_details_page',
|
|
147
|
+
defaultMessage: 'Whether to display the graphic cover on the graphic details page',
|
|
148
|
+
},
|
|
149
|
+
'Source link*': {
|
|
150
|
+
id: 'creatives.containers.Create.Source_link',
|
|
151
|
+
defaultMessage: 'Source link*',
|
|
152
|
+
},
|
|
153
|
+
'to be displayed on the graphic details page': {
|
|
154
|
+
id: 'creatives.containers.Create.to_be_displayed_on_the_graphic_details_page',
|
|
155
|
+
defaultMessage: 'to be displayed on the graphic details page',
|
|
156
|
+
},
|
|
157
|
+
'Insert Image': {
|
|
158
|
+
id: 'creatives.containers.Create.Insert_Image',
|
|
159
|
+
defaultMessage: 'Insert Image',
|
|
160
|
+
},
|
|
161
|
+
'Example: http://example.com': {
|
|
162
|
+
id: 'creatives.containers.Create.http_example',
|
|
163
|
+
defaultMessage: 'Example: http://example.com',
|
|
164
|
+
},
|
|
141
165
|
});
|
package/package.json
CHANGED
package/translations/en.json
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
+
"app.components.TemplatePreview.includesOptoutTag": "Includes optout tag",
|
|
3
|
+
"app.components.TemplatePreview.optoutCharactersTotal": "Includes optout tag ({optoutUrlLength} characters)",
|
|
2
4
|
"creatives.components.BreadCrumbs.header": "This is the BreadCrumbs component !",
|
|
3
5
|
"creatives.components.CapTagList.Cancel": "Cancel",
|
|
4
6
|
"creatives.components.CapTagList.Ok": "Ok",
|
|
@@ -32,6 +34,7 @@
|
|
|
32
34
|
"creatives.components.FormBuilder.unsupportedTags": "Unsupported tags are:",
|
|
33
35
|
"creatives.components.FormBuilder.yes": "Yes",
|
|
34
36
|
"creatives.components.Header.cancel": "Cancel",
|
|
37
|
+
"creatives.components.Header.enterTemplateName": "Enter template name*",
|
|
35
38
|
"creatives.components.Header.header": "This is the Header component !",
|
|
36
39
|
"creatives.components.Header.preview": "Preview",
|
|
37
40
|
"creatives.components.Header.save": "Save",
|
|
@@ -53,6 +56,7 @@
|
|
|
53
56
|
"creatives.components.SmsTest.header": "This is the SmsTest component !",
|
|
54
57
|
"creatives.components.SmsTest.inputSmsTemplate": "Please input sms template content.",
|
|
55
58
|
"creatives.components.SmsTest.inputTemplateName": "Please input template name.",
|
|
59
|
+
"creatives.components.TemplatePreview.characters": "characters",
|
|
56
60
|
"creatives.components.TemplatePreview.charactersPerSms": "SMS chars",
|
|
57
61
|
"creatives.components.TemplatePreview.charactersTotal": "SMS char total",
|
|
58
62
|
"creatives.components.TemplatePreview.close": "close",
|
|
@@ -186,6 +190,7 @@
|
|
|
186
190
|
"creatives.containers.Create.Content*": "Content*",
|
|
187
191
|
"creatives.containers.Create.Cover_abstract": "Cover abstract",
|
|
188
192
|
"creatives.containers.Create.Cover_image*": "Cover image*",
|
|
193
|
+
"creatives.containers.Create.Insert_Image": "Insert Image",
|
|
189
194
|
"creatives.containers.Create.No_one": "No one",
|
|
190
195
|
"creatives.containers.Create.Only_followers": "Only followers",
|
|
191
196
|
"creatives.containers.Create.Please_input_author": "Please input author",
|
|
@@ -193,7 +198,9 @@
|
|
|
193
198
|
"creatives.containers.Create.Please_input_cover_abstract": "Please input cover abstract",
|
|
194
199
|
"creatives.containers.Create.Please_input_title": "Please input title",
|
|
195
200
|
"creatives.containers.Create.Show_cover_picture": "Show cover picture",
|
|
201
|
+
"creatives.containers.Create.Source_link": "Source link*",
|
|
196
202
|
"creatives.containers.Create.Title*": "Title*",
|
|
203
|
+
"creatives.containers.Create.Upload_Image": "Upload Image",
|
|
197
204
|
"creatives.containers.Create.Who_can_post_comments_on_this_content": "Who can post comments on this content",
|
|
198
205
|
"creatives.containers.Create.addNewRichmedia": "Add richmedia content",
|
|
199
206
|
"creatives.containers.Create.alertMessage": "Alert",
|
|
@@ -210,7 +217,9 @@
|
|
|
210
217
|
"creatives.containers.Create.emptyTemplateName": "Cannot leave template name empty",
|
|
211
218
|
"creatives.containers.Create.formEmpty": "Cannot leave form empty",
|
|
212
219
|
"creatives.containers.Create.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
|
|
220
|
+
"creatives.containers.Create.graphic_details_page": "Whether to display the graphic cover on the graphic details page",
|
|
213
221
|
"creatives.containers.Create.header": "This is Create container !",
|
|
222
|
+
"creatives.containers.Create.http_example": "Example: http://example.com",
|
|
214
223
|
"creatives.containers.Create.markFinalVersionLabel": "Mark as final",
|
|
215
224
|
"creatives.containers.Create.maxContentCount": "You have reached the maximum template size",
|
|
216
225
|
"creatives.containers.Create.messageLabel": "Message",
|
|
@@ -234,6 +243,7 @@
|
|
|
234
243
|
"creatives.containers.Create.titleCharacterCount": "Title exceeds character count limit by",
|
|
235
244
|
"creatives.containers.Create.titleEmpty": "Cannot leave title field empty",
|
|
236
245
|
"creatives.containers.Create.titleNameRepeated": "Title name cannot be repeated",
|
|
246
|
+
"creatives.containers.Create.to_be_displayed_on_the_graphic_details_page": "to be displayed on the graphic details page",
|
|
237
247
|
"creatives.containers.Create.unicodeErrorMessage": "Please check this if you want to use unicode characters",
|
|
238
248
|
"creatives.containers.Create.unicodeLabel": "Allow unicode characters",
|
|
239
249
|
"creatives.containers.Create.versionLabel": "Version",
|
|
@@ -576,7 +586,12 @@
|
|
|
576
586
|
"creatives.containers.MobilePush.Edit.uploadingImage": "Uploading image...",
|
|
577
587
|
"creatives.containers.MobilePush.Edit.valueCantEmpty": "value cannot be empty.",
|
|
578
588
|
"creatives.containers.TagList.header": "This is TagList container !",
|
|
589
|
+
"creatives.containers.Templates.Ebill": "Ebill",
|
|
590
|
+
"creatives.containers.Templates.Email": "Email",
|
|
591
|
+
"creatives.containers.Templates.Gallery": "Gallery",
|
|
592
|
+
"creatives.containers.Templates.Line": "Line",
|
|
579
593
|
"creatives.containers.Templates.MobilePush": "MobilePush",
|
|
594
|
+
"creatives.containers.Templates.Sms": "Sms",
|
|
580
595
|
"creatives.containers.Templates.all": "All",
|
|
581
596
|
"creatives.containers.Templates.alphabeticallyOption": "Alphabetically",
|
|
582
597
|
"creatives.containers.Templates.blankTemplate": "Blank template",
|
|
@@ -612,6 +627,7 @@
|
|
|
612
627
|
"creatives.containers.Templates.mapTemplate": "Map template",
|
|
613
628
|
"creatives.containers.Templates.mobilePushChannel": "Mobile push",
|
|
614
629
|
"creatives.containers.Templates.mobilePushChannelTemplatesHeader": "Select Mobile push Template",
|
|
630
|
+
"creatives.containers.Templates.mobilepush": "mobilepush",
|
|
615
631
|
"creatives.containers.Templates.mobilepushHeader": "Mobile Push",
|
|
616
632
|
"creatives.containers.Templates.mostRecentOption": "Most recent",
|
|
617
633
|
"creatives.containers.Templates.newTemplate": "New template",
|
|
@@ -620,7 +636,6 @@
|
|
|
620
636
|
"creatives.containers.Templates.preview": "Preview",
|
|
621
637
|
"creatives.containers.Templates.previewButton": "Preview",
|
|
622
638
|
"creatives.containers.Templates.previewGenerateText": "Preview is being generated...",
|
|
623
|
-
"creatives.containers.Templates.search": "Search",
|
|
624
639
|
"creatives.containers.Templates.searchText": "Search",
|
|
625
640
|
"creatives.containers.Templates.selectAccount": "Select account",
|
|
626
641
|
"creatives.containers.Templates.selectButton": "Select",
|
|
@@ -665,18 +680,15 @@
|
|
|
665
680
|
"creatives.containers.WeChat.gettingTemplateData": "Getting template data..",
|
|
666
681
|
"creatives.containers.WeChat.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
|
|
667
682
|
"creatives.containers.WeChat.goBackTemporaryConfirmation": "Do you really want to go back? All your temporary changes will be lost!",
|
|
668
|
-
"creatives.containers.WeChat.hasInvalidContent": "has invalid content.",
|
|
669
683
|
"creatives.containers.WeChat.header": "WeChat",
|
|
670
684
|
"creatives.containers.WeChat.invalidContent": "has invalid content.",
|
|
671
685
|
"creatives.containers.WeChat.isInternalUrl": "Is this internal url",
|
|
672
686
|
"creatives.containers.WeChat.link": "Link",
|
|
673
687
|
"creatives.containers.WeChat.linkCantEmpty": "Link cannot be empty",
|
|
674
|
-
"creatives.containers.WeChat.
|
|
688
|
+
"creatives.containers.WeChat.loadingEDMTemplates": "loading EDM Templates",
|
|
675
689
|
"creatives.containers.WeChat.mapTemplateFooter": "Footer",
|
|
676
690
|
"creatives.containers.WeChat.mapTemplateHeader": "Header",
|
|
677
|
-
"creatives.containers.WeChat.newWechat": "New wechat",
|
|
678
691
|
"creatives.containers.WeChat.save": "Save",
|
|
679
|
-
"creatives.containers.WeChat.select": "Select",
|
|
680
692
|
"creatives.containers.WeChat.selectWechatAccount": "Select wechat account",
|
|
681
693
|
"creatives.containers.WeChat.selectWechatTemplate": "Select wechat template",
|
|
682
694
|
"creatives.containers.WeChat.somethingWentWrong": "Something went wrong!!",
|
|
@@ -685,6 +697,11 @@
|
|
|
685
697
|
"creatives.containers.WeChat.templateMapping": "Template mapping",
|
|
686
698
|
"creatives.containers.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
687
699
|
"creatives.containers.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
700
|
+
"creatives.containers.WechatWrapper.mapTemplate": "Map template",
|
|
701
|
+
"creatives.containers.WechatWrapper.mapTemplateSubtext": "Used for announcing offers and transaction related information",
|
|
702
|
+
"creatives.containers.WechatWrapper.richMedia": "Richmedia template",
|
|
703
|
+
"creatives.containers.WechatWrapper.richMediaSubtext": "Used for creating rich content using text, image, location and audio",
|
|
704
|
+
"creatives.containers.WechatWrapper.templateType": "Which type of template you want to create?",
|
|
688
705
|
"creatives.containersV2.Assets.Gallery.addImages": "Add images",
|
|
689
706
|
"creatives.containersV2.Assets.Gallery.alphabetically": "Alphabetically",
|
|
690
707
|
"creatives.containersV2.Assets.Gallery.assetDeleteFailed": "Image deletion failed.",
|
|
@@ -697,6 +714,7 @@
|
|
|
697
714
|
"creatives.containersV2.Assets.Gallery.gallery": "Gallery",
|
|
698
715
|
"creatives.containersV2.Assets.Gallery.imagePreview": "Image preview",
|
|
699
716
|
"creatives.containersV2.Assets.Gallery.lastUpdated": "Last update {on} by {by}",
|
|
717
|
+
"creatives.containersV2.Assets.Gallery.loadingGallery": "Loading gallery...",
|
|
700
718
|
"creatives.containersV2.Assets.Gallery.mostRecent": "Most recent",
|
|
701
719
|
"creatives.containersV2.Assets.Gallery.noAssetMessage": "No image is uploaded",
|
|
702
720
|
"creatives.containersV2.Assets.Gallery.noTemplatesFound": "No templates found",
|
|
@@ -729,78 +747,36 @@
|
|
|
729
747
|
"creatives.containersV2.Cap.storePerformance": "Store Performance",
|
|
730
748
|
"creatives.containersV2.Cap.wechat": "WeChat",
|
|
731
749
|
"creatives.containersV2.ChannelTemplates.header": "This is ChannelTemplates container !",
|
|
732
|
-
"creatives.containersV2.Create.
|
|
733
|
-
"creatives.containersV2.Create.Author": "Author",
|
|
734
|
-
"creatives.containersV2.Create.Content": "Content",
|
|
735
|
-
"creatives.containersV2.Create.Cover_abstract": "Cover abstract",
|
|
736
|
-
"creatives.containersV2.Create.Cover_image": "Cover image",
|
|
737
|
-
"creatives.containersV2.Create.No_one": "No one",
|
|
738
|
-
"creatives.containersV2.Create.Only_followers": "Only followers",
|
|
739
|
-
"creatives.containersV2.Create.Please_input_author": "Please input author",
|
|
740
|
-
"creatives.containersV2.Create.Please_input_content": "Please input content",
|
|
741
|
-
"creatives.containersV2.Create.Please_input_cover_abstract": "Please input cover abstract",
|
|
742
|
-
"creatives.containersV2.Create.Please_input_title": "Please input title",
|
|
743
|
-
"creatives.containersV2.Create.Show_cover_picture": "Show cover picture",
|
|
744
|
-
"creatives.containersV2.Create.Title": "Title",
|
|
745
|
-
"creatives.containersV2.Create.Who_can_post_comments_on_this_content": "Who can post comments on this content",
|
|
746
|
-
"creatives.containersV2.Create.addNewRichmedia": "Add richmedia content",
|
|
750
|
+
"creatives.containersV2.Create.addLabel": "Add label",
|
|
747
751
|
"creatives.containersV2.Create.alertMessage": "Alert",
|
|
748
|
-
"creatives.containersV2.Create.articleContent": "Article content",
|
|
749
|
-
"creatives.containersV2.Create.authorCharacterCount": "Author exceeds character count limit by",
|
|
750
|
-
"creatives.containersV2.Create.authorInductiveText": "Brand/name that your customer will recognise",
|
|
751
752
|
"creatives.containersV2.Create.cancelButton": "Cancel",
|
|
752
|
-
"creatives.containersV2.Create.
|
|
753
|
-
"creatives.containersV2.Create.
|
|
754
|
-
"creatives.containersV2.Create.coverAbstractInductive": "A short description help customers learn more",
|
|
755
|
-
"creatives.containersV2.Create.coverImageTitle": "The relevant image that complements title.",
|
|
756
|
-
"creatives.containersV2.Create.delete": "delete",
|
|
757
|
-
"creatives.containersV2.Create.deleteContent": "Do you really want to delete? All your temporary changes will be lost!",
|
|
753
|
+
"creatives.containersV2.Create.characters": "characters",
|
|
754
|
+
"creatives.containersV2.Create.creativeName": "Creative name",
|
|
758
755
|
"creatives.containersV2.Create.deleteLabel": "Delete",
|
|
759
756
|
"creatives.containersV2.Create.discardChangesButton": "Discard changes",
|
|
760
757
|
"creatives.containersV2.Create.duplicateLabel": "Duplicate",
|
|
761
758
|
"creatives.containersV2.Create.emptyTemplateErrorMessage": "Please provide a template name",
|
|
762
|
-
"creatives.containersV2.Create.emptyTemplateName": "Cannot leave template name empty",
|
|
763
|
-
"creatives.containersV2.Create.formEmpty": "Cannot leave form empty",
|
|
764
759
|
"creatives.containersV2.Create.goBackTemporaryChangesLost": "Do you really want to go back? All your temporary changes will be lost!",
|
|
765
|
-
"creatives.containersV2.Create.header": "This is Create container !",
|
|
766
|
-
"creatives.containersV2.Create.insertImage": "Insert Image",
|
|
767
760
|
"creatives.containersV2.Create.invalidTags": "Invalid tags",
|
|
768
|
-
"creatives.containersV2.Create.linkInductiveText": "Link to help customers discover more about the brand.",
|
|
769
761
|
"creatives.containersV2.Create.markFinalVersionLabel": "Mark as final",
|
|
770
|
-
"creatives.containersV2.Create.maxContentCount": "You have reached the maximum template size",
|
|
771
762
|
"creatives.containersV2.Create.messageLabel": "Message",
|
|
772
|
-
"creatives.containersV2.Create.modalBody": "Do you really want to go back? All your temporary changes will be lost!",
|
|
773
|
-
"creatives.containersV2.Create.modalTitle": "Alert",
|
|
774
763
|
"creatives.containersV2.Create.newVersionLabel": "New version",
|
|
775
|
-
"creatives.containersV2.Create.noImage": "Please upload an image",
|
|
776
|
-
"creatives.containersV2.Create.readMoreLink": "Read more link",
|
|
777
764
|
"creatives.containersV2.Create.renameLabel": "Rename",
|
|
778
|
-
"creatives.containersV2.Create.requiredField": "This field is required!",
|
|
779
|
-
"creatives.containersV2.Create.resolutionText": "Resolution 360 x 200",
|
|
780
765
|
"creatives.containersV2.Create.saveButton": "Save",
|
|
781
|
-
"creatives.containersV2.Create.saveSuccess": "Template saved successfully",
|
|
782
766
|
"creatives.containersV2.Create.saveTemplateLoader": "Saving template...",
|
|
767
|
+
"creatives.containersV2.Create.sms": "SMS",
|
|
783
768
|
"creatives.containersV2.Create.smsEditorPlaceholder": "Please enter the message content",
|
|
784
769
|
"creatives.containersV2.Create.smsTemplateCreatedSuccess": "SMS Template Created Successfully",
|
|
785
770
|
"creatives.containersV2.Create.somethingWentWrong": "Something went wrong!!",
|
|
786
|
-
"creatives.containersV2.Create.sourceLinkEmpty": "Cannot leave source link field empty",
|
|
787
771
|
"creatives.containersV2.Create.tagsErrorMessage": "Please check the message content for unsupported/missing tags",
|
|
788
772
|
"creatives.containersV2.Create.tagsLabel": "Tags",
|
|
789
773
|
"creatives.containersV2.Create.templateMarkedSuccessfully": "Template Marked as Final Successfully",
|
|
790
774
|
"creatives.containersV2.Create.templateNamePlaceHolder": "Enter template name",
|
|
791
775
|
"creatives.containersV2.Create.templateNotValid": "Template data is not valid",
|
|
792
|
-
"creatives.containersV2.Create.titleCharacterCount": "Title exceeds character count limit by",
|
|
793
|
-
"creatives.containersV2.Create.titleEmpty": "Cannot leave title field empty",
|
|
794
|
-
"creatives.containersV2.Create.titleInductiveText": "Write a brief headline to draw customer's attention",
|
|
795
|
-
"creatives.containersV2.Create.titleNameRepeated": "Title name cannot be repeated",
|
|
796
776
|
"creatives.containersV2.Create.unicodeErrorMessage": "Please check this if you want to use Unicode characters",
|
|
797
777
|
"creatives.containersV2.Create.unicodeLabel": "Allow unicode characters",
|
|
798
|
-
"creatives.containersV2.Create.uploadImage": "Upload Image",
|
|
799
778
|
"creatives.containersV2.Create.validationError": "Validation error",
|
|
800
779
|
"creatives.containersV2.Create.versionLabel": "Version",
|
|
801
|
-
"creatives.containersV2.Create.visibility": "visibility",
|
|
802
|
-
"creatives.containersV2.Create.wrongFormatFile": "Wrong file upoaded. Please upload image file",
|
|
803
|
-
"creatives.containersV2.Create.wrongUrl": "Enter correct URL",
|
|
804
780
|
"creatives.containersV2.Creatives.addContent": "Add content",
|
|
805
781
|
"creatives.containersV2.Creatives.alphabeticallyOption": "Alphabetically",
|
|
806
782
|
"creatives.containersV2.Creatives.blankTemplate": "Blank template",
|
|
@@ -820,6 +796,7 @@
|
|
|
820
796
|
"creatives.containersV2.Creatives.creativesTemplatesEditName": "Edit name",
|
|
821
797
|
"creatives.containersV2.Creatives.creativesTemplatesSave": "Done",
|
|
822
798
|
"creatives.containersV2.Creatives.creativesTemplatesSaveFullMode": "Create",
|
|
799
|
+
"creatives.containersV2.Creatives.creativesTemplatesUpdate": "Update",
|
|
823
800
|
"creatives.containersV2.Creatives.deleteButton": "Delete",
|
|
824
801
|
"creatives.containersV2.Creatives.deletedSuccssfully": "Template deleted successfully",
|
|
825
802
|
"creatives.containersV2.Creatives.deletionFailed": "Template deletion failed",
|
|
@@ -892,8 +869,11 @@
|
|
|
892
869
|
"creatives.containersV2.Ebill.tagsErrorMessage": "Please check the message content for unsupported/missing tags",
|
|
893
870
|
"creatives.containersV2.Ebill.tagsLabel": "Tags",
|
|
894
871
|
"creatives.containersV2.Ebill.templateDataNotValid": "Template data is not valid",
|
|
872
|
+
"creatives.containersV2.Edit.addLabel": "Add label",
|
|
895
873
|
"creatives.containersV2.Edit.alertMessage": "Alert",
|
|
896
874
|
"creatives.containersV2.Edit.cancelButton": "Cancel",
|
|
875
|
+
"creatives.containersV2.Edit.characters": "characters",
|
|
876
|
+
"creatives.containersV2.Edit.creativeName": "Creative name",
|
|
897
877
|
"creatives.containersV2.Edit.deleteLabel": "Delete",
|
|
898
878
|
"creatives.containersV2.Edit.discardChangesButton": "Discard changes",
|
|
899
879
|
"creatives.containersV2.Edit.duplicateLabel": "Duplicate",
|
|
@@ -907,6 +887,7 @@
|
|
|
907
887
|
"creatives.containersV2.Edit.renameLabel": "Rename",
|
|
908
888
|
"creatives.containersV2.Edit.saveButton": "Save",
|
|
909
889
|
"creatives.containersV2.Edit.saveTemplateLoader": "Saving template...",
|
|
890
|
+
"creatives.containersV2.Edit.sms": "SMS",
|
|
910
891
|
"creatives.containersV2.Edit.smsEditorPlaceholder": "Please enter the message content",
|
|
911
892
|
"creatives.containersV2.Edit.somethingWentWrong": "Something went wrong!!",
|
|
912
893
|
"creatives.containersV2.Edit.tagsErrorMessage": "Please check the message content for unsupported/missing tags",
|
|
@@ -925,6 +906,7 @@
|
|
|
925
906
|
"creatives.containersV2.Email.Subject": "Subject",
|
|
926
907
|
"creatives.containersV2.Email.Tags": "Tags",
|
|
927
908
|
"creatives.containersV2.Email.alert": "Alert",
|
|
909
|
+
"creatives.containersV2.Email.alertMessage": "Alert",
|
|
928
910
|
"creatives.containersV2.Email.alphabetically": "Alphabetically",
|
|
929
911
|
"creatives.containersV2.Email.alphabeticallyOption": "Alphabetically",
|
|
930
912
|
"creatives.containersV2.Email.assetUploadFailed": "Image uploaded failed",
|
|
@@ -1276,6 +1258,7 @@
|
|
|
1276
1258
|
"creatives.containersV2.Templates.newTemplate": "New template",
|
|
1277
1259
|
"creatives.containersV2.Templates.noAccountMessage": "Please select an account to proceed",
|
|
1278
1260
|
"creatives.containersV2.Templates.noAccountsPresent": "Push notifications are not setup for your brand",
|
|
1261
|
+
"creatives.containersV2.Templates.noAccountsPresentWeChat": "Wechat accounts are not setup for your brand",
|
|
1279
1262
|
"creatives.containersV2.Templates.noTemplatesFound": "No templates found",
|
|
1280
1263
|
"creatives.containersV2.Templates.noTemplatesMessage": "No templates available",
|
|
1281
1264
|
"creatives.containersV2.Templates.preview": "Preview",
|
|
@@ -1337,27 +1320,90 @@
|
|
|
1337
1320
|
"creatives.containersV2.WeChat.discard": "Discard",
|
|
1338
1321
|
"creatives.containersV2.WeChat.gettingTemplateData": "Getting template data..",
|
|
1339
1322
|
"creatives.containersV2.WeChat.goBackTemporaryChangesLost": "Do you really want to go back? All your temporary changes will be lost!",
|
|
1323
|
+
"creatives.containersV2.WeChat.hasInvalidContent": "has invalid content.",
|
|
1340
1324
|
"creatives.containersV2.WeChat.hasValidContent": "has valid content.",
|
|
1341
1325
|
"creatives.containersV2.WeChat.header": "WeChat",
|
|
1342
1326
|
"creatives.containersV2.WeChat.isInternalUrl": "Is this internal url",
|
|
1343
1327
|
"creatives.containersV2.WeChat.link": "Link",
|
|
1344
1328
|
"creatives.containersV2.WeChat.linkCantEmpty": "has valid content.",
|
|
1329
|
+
"creatives.containersV2.WeChat.linkErrorMessage": "Link cannot be empty.",
|
|
1330
|
+
"creatives.containersV2.WeChat.newWechat": "New wechat",
|
|
1345
1331
|
"creatives.containersV2.WeChat.save": "Save",
|
|
1332
|
+
"creatives.containersV2.WeChat.select": "Select",
|
|
1346
1333
|
"creatives.containersV2.WeChat.selectWechatAccount": "Select wechat account",
|
|
1347
1334
|
"creatives.containersV2.WeChat.selectWechatTemplate": "Select wechat template",
|
|
1348
1335
|
"creatives.containersV2.WeChat.somethingWentWrong": "Something went wrong!!",
|
|
1349
1336
|
"creatives.containersV2.WeChat.tagsLabel": "Tags",
|
|
1350
1337
|
"creatives.containersV2.WeChat.template": "Template",
|
|
1351
1338
|
"creatives.containersV2.WeChat.templateMapping": "Template mapping",
|
|
1339
|
+
"creatives.containersV2.WeChat.templateName": "Template Name",
|
|
1352
1340
|
"creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
|
|
1353
1341
|
"creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
|
|
1354
1342
|
"creatives.containersV2.appName": "App Name",
|
|
1355
1343
|
"creatives.containersV2.audience": "Audience",
|
|
1356
|
-
"creatives.containersV2.campaigns": "Campaigns",
|
|
1357
1344
|
"creatives.containersV2.campaignsDashboard": "Campaigns",
|
|
1358
1345
|
"creatives.containersV2.campaignsHome": "Campaigns Home",
|
|
1359
|
-
"creatives.containersV2.creatives": "Creatives",
|
|
1360
1346
|
"creatives.containersV2.incentive": "Incentive",
|
|
1347
|
+
"creatives.containersV2.richMedia.create.Anyone": "Anyone",
|
|
1348
|
+
"creatives.containersV2.richMedia.create.Author": "Author",
|
|
1349
|
+
"creatives.containersV2.richMedia.create.Content": "Content",
|
|
1350
|
+
"creatives.containersV2.richMedia.create.Cover_abstract": "Cover abstract",
|
|
1351
|
+
"creatives.containersV2.richMedia.create.Cover_image": "Cover image",
|
|
1352
|
+
"creatives.containersV2.richMedia.create.No_one": "No one",
|
|
1353
|
+
"creatives.containersV2.richMedia.create.Only_followers": "Only followers",
|
|
1354
|
+
"creatives.containersV2.richMedia.create.Please_input_author": "Please input author",
|
|
1355
|
+
"creatives.containersV2.richMedia.create.Please_input_content": "Please input content",
|
|
1356
|
+
"creatives.containersV2.richMedia.create.Please_input_cover_abstract": "Please input cover abstract",
|
|
1357
|
+
"creatives.containersV2.richMedia.create.Please_input_title": "Please input title",
|
|
1358
|
+
"creatives.containersV2.richMedia.create.Show_cover_picture": "Show cover picture",
|
|
1359
|
+
"creatives.containersV2.richMedia.create.Title": "Title",
|
|
1360
|
+
"creatives.containersV2.richMedia.create.Who_can_post_comments_on_this_content": "Who can post comments on this content",
|
|
1361
|
+
"creatives.containersV2.richMedia.create.addNewRichmedia": "Add richmedia content",
|
|
1362
|
+
"creatives.containersV2.richMedia.create.addRichMediaContent": "Add rich media content",
|
|
1363
|
+
"creatives.containersV2.richMedia.create.articleContent": "Article content",
|
|
1364
|
+
"creatives.containersV2.richMedia.create.authorCharacterCount": "Author exceeds character count limit by",
|
|
1365
|
+
"creatives.containersV2.richMedia.create.authorInductiveText": "Brand/name that your customer will recognise",
|
|
1366
|
+
"creatives.containersV2.richMedia.create.contentEmpty": "Cannot leave content field empty",
|
|
1367
|
+
"creatives.containersV2.richMedia.create.coverAbstractCharacterCount": "Cover abstract exceeds character count limit by",
|
|
1368
|
+
"creatives.containersV2.richMedia.create.coverAbstractInductive": "A short description help customers learn more",
|
|
1369
|
+
"creatives.containersV2.richMedia.create.coverImageTitle": "The relevant image that complements title.",
|
|
1370
|
+
"creatives.containersV2.richMedia.create.delete": "delete",
|
|
1371
|
+
"creatives.containersV2.richMedia.create.deleteContent": "Do you really want to delete? All your temporary changes will be lost!",
|
|
1372
|
+
"creatives.containersV2.richMedia.create.emptyTemplateName": "Cannot leave template name empty",
|
|
1373
|
+
"creatives.containersV2.richMedia.create.fileContentFailed": "Failed to get File content",
|
|
1374
|
+
"creatives.containersV2.richMedia.create.formEmpty": "Cannot leave form empty",
|
|
1375
|
+
"creatives.containersV2.richMedia.create.header": "This is Create container !",
|
|
1376
|
+
"creatives.containersV2.richMedia.create.insertImage": "Insert Image",
|
|
1377
|
+
"creatives.containersV2.richMedia.create.linkInductiveText": "Link to help customers discover more about the brand.",
|
|
1378
|
+
"creatives.containersV2.richMedia.create.maxContentCount": "You have reached the maximum template size",
|
|
1379
|
+
"creatives.containersV2.richMedia.create.modalBody": "Do you really want to go back? All your temporary changes will be lost!",
|
|
1380
|
+
"creatives.containersV2.richMedia.create.modalTitle": "Alert",
|
|
1381
|
+
"creatives.containersV2.richMedia.create.nameOfTemplate": "Name of the template",
|
|
1382
|
+
"creatives.containersV2.richMedia.create.newMedia": "New media",
|
|
1383
|
+
"creatives.containersV2.richMedia.create.noImage": "Please upload an image",
|
|
1384
|
+
"creatives.containersV2.richMedia.create.payloadMissing": "Please provide payload to create wechat template",
|
|
1385
|
+
"creatives.containersV2.richMedia.create.readMoreLink": "Read more link",
|
|
1386
|
+
"creatives.containersV2.richMedia.create.requiredField": "This field is required!",
|
|
1387
|
+
"creatives.containersV2.richMedia.create.resolutionText": "Resolution 360 x 200",
|
|
1388
|
+
"creatives.containersV2.richMedia.create.sameTemplateExists": "Template with the same name exists",
|
|
1389
|
+
"creatives.containersV2.richMedia.create.saveSuccess": "Template saved successfully",
|
|
1390
|
+
"creatives.containersV2.richMedia.create.somethingWentWrong": "Something went wrong!!",
|
|
1391
|
+
"creatives.containersV2.richMedia.create.sourceIdentMissing": "Please provide source account identifier",
|
|
1392
|
+
"creatives.containersV2.richMedia.create.sourceLinkEmpty": "Cannot leave source link field empty",
|
|
1393
|
+
"creatives.containersV2.richMedia.create.sufficientParam": "Please provide sufficient params to create richmedia wechat template",
|
|
1394
|
+
"creatives.containersV2.richMedia.create.sufficientPayload": "Please provide sufficient parameters to generate richmedia message payload",
|
|
1395
|
+
"creatives.containersV2.richMedia.create.templateNameBlank": "Template name cannot be blank",
|
|
1396
|
+
"creatives.containersV2.richMedia.create.templateNameContainsWS": "Template name contains only whitespaces",
|
|
1397
|
+
"creatives.containersV2.richMedia.create.templateNameExists": "Template with the same name exists. Please try another template name.",
|
|
1398
|
+
"creatives.containersV2.richMedia.create.titleCharacterCount": "Title exceeds character count limit by",
|
|
1399
|
+
"creatives.containersV2.richMedia.create.titleEmpty": "Cannot leave title field empty",
|
|
1400
|
+
"creatives.containersV2.richMedia.create.titleInductiveText": "Write a brief headline to draw customer's attention",
|
|
1401
|
+
"creatives.containersV2.richMedia.create.titleNameRepeated": "Title name cannot be repeated",
|
|
1402
|
+
"creatives.containersV2.richMedia.create.uploadFailed": "Upload has failed",
|
|
1403
|
+
"creatives.containersV2.richMedia.create.uploadImage": "Upload Image",
|
|
1404
|
+
"creatives.containersV2.richMedia.create.visibility": "visibility",
|
|
1405
|
+
"creatives.containersV2.richMedia.create.wrongFormatFile": "Wrong file upoaded. Please upload image file",
|
|
1406
|
+
"creatives.containersV2.richMedia.create.wrongUrl": "Enter correct URL",
|
|
1361
1407
|
"customdatepicker.cancel": "Cancel",
|
|
1362
1408
|
"customdatepicker.done": "Done",
|
|
1363
1409
|
"reon.components.Cap.Workbench": "WorkBench",
|
|
@@ -1415,11 +1461,5 @@
|
|
|
1415
1461
|
"reon.modules.Login.componentsv2.LoginForm.input.invalidCredentials": "Invalid or Incorrect credentials!",
|
|
1416
1462
|
"reon.modules.Login.componentsv2.LoginForm.input.loginButton": "Login",
|
|
1417
1463
|
"reon.modules.Login.componentsv2.LoginForm.input.password": "Password",
|
|
1418
|
-
"reon.modules.Login.componentsv2.LoginForm.input.username": "Username or email"
|
|
1419
|
-
"creatives.containers.WeChat.loadingEDMTemplates": "loading EDM Templates",
|
|
1420
|
-
"creatives.containersV2.WeChat.select": "Select",
|
|
1421
|
-
"creatives.containersV2.WeChat.newWechat": "New wechat",
|
|
1422
|
-
"creatives.containersV2.WeChat.linkErrorMessage": "Link cannot be empty.",
|
|
1423
|
-
"creatives.containersV2.WeChat.hasInvalidContent": "has invalid content.",
|
|
1424
|
-
"creatives.containersV2.WeChat.templateName": "Template Name"
|
|
1464
|
+
"reon.modules.Login.componentsv2.LoginForm.input.username": "Username or email"
|
|
1425
1465
|
}
|