@fonixtree/magic-design 1.0.91 → 1.0.92
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/es/assets/images/layout-icon/banner-slide-layout1.png +0 -0
- package/es/assets/images/layout-icon/banner-slide-layout2.png +0 -0
- package/es/assets/images/layout-icon/flash-deal-layout1.png +0 -0
- package/es/assets/images/layout-icon/monpaySignBoardLayout1.png +0 -0
- package/es/composite-comp/common/components/ProductItem/index.js +5 -3
- package/es/composite-comp/dito/components/FlashDeal/defaultJSON.js +4 -0
- package/es/composite-comp/dito/components/FlashDeal/mobile/index.js +17 -8
- package/es/composite-comp/dito/components/FlashDeal/mobile/index.less +40 -8
- package/es/composite-comp/dito/components/GroupBuy/mobile/index.less +3 -3
- package/es/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigTitle/index.js +20 -11
- package/es/composite-comp/dito/config-panels/FlashDealConfig/index.js +3 -7
- package/es/constants/layout.js +28 -2
- package/es/locale/en/en.json +87 -0
- package/es/locale/es/es.json +87 -0
- package/es/locale/id/id.json +87 -0
- package/lib/assets/images/layout-icon/banner-slide-layout1.png +0 -0
- package/lib/assets/images/layout-icon/banner-slide-layout2.png +0 -0
- package/lib/assets/images/layout-icon/flash-deal-layout1.png +0 -0
- package/lib/assets/images/layout-icon/monpaySignBoardLayout1.png +0 -0
- package/lib/composite-comp/common/components/ProductItem/index.js +5 -3
- package/lib/composite-comp/dito/components/FlashDeal/defaultJSON.js +4 -0
- package/lib/composite-comp/dito/components/FlashDeal/mobile/index.js +17 -8
- package/lib/composite-comp/dito/components/FlashDeal/mobile/index.less +40 -8
- package/lib/composite-comp/dito/components/GroupBuy/mobile/index.less +3 -3
- package/lib/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigTitle/index.js +20 -11
- package/lib/composite-comp/dito/config-panels/FlashDealConfig/index.js +3 -7
- package/lib/constants/layout.js +28 -2
- package/lib/locale/en/en.json +87 -0
- package/lib/locale/es/es.json +87 -0
- package/lib/locale/id/id.json +87 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -206,7 +206,9 @@ function (_super) {
|
|
|
206
206
|
text: data.offerName
|
|
207
207
|
}),
|
|
208
208
|
readonly: true
|
|
209
|
-
}))), panelProps.activityPrice.open && /*#__PURE__*/_react["default"].createElement("div", {
|
|
209
|
+
}))), (panelProps.activityPrice.open || panelProps.salesPrice.open) && /*#__PURE__*/_react["default"].createElement("div", {
|
|
210
|
+
className: "price-info-wrap"
|
|
211
|
+
}, panelProps.activityPrice.open && /*#__PURE__*/_react["default"].createElement("div", {
|
|
210
212
|
className: "price-wrap"
|
|
211
213
|
}, /*#__PURE__*/_react["default"].createElement(_components.MetaText, {
|
|
212
214
|
className: "price",
|
|
@@ -232,9 +234,9 @@ function (_super) {
|
|
|
232
234
|
style: {
|
|
233
235
|
color: panelProps.salesPrice.content.color
|
|
234
236
|
}
|
|
235
|
-
})), type !== 'groupBuy' && !showProgress && data.salesCnt > 0 && /*#__PURE__*/_react["default"].createElement("div", {
|
|
237
|
+
})), type !== 'groupBuy' && !showProgress && data.salesCnt > 0 && data.displaySalesCntFlag === 'Y' && /*#__PURE__*/_react["default"].createElement("div", {
|
|
236
238
|
className: "sold-count"
|
|
237
|
-
}, (0, _commonUtil.convertCount)(data.salesCnt), " sold")), showProgress && ((_d = panelProps.salesProgressVisible) === null || _d === void 0 ? void 0 : _d.open) && /*#__PURE__*/_react["default"].createElement("div", {
|
|
239
|
+
}, (0, _commonUtil.convertCount)(data.salesCnt), " sold"))), showProgress && ((_d = panelProps.salesProgressVisible) === null || _d === void 0 ? void 0 : _d.open) && /*#__PURE__*/_react["default"].createElement("div", {
|
|
238
240
|
className: "progress-wrap"
|
|
239
241
|
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
240
242
|
className: "text"
|
|
@@ -9,6 +9,8 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
9
9
|
|
|
10
10
|
require("./index.less");
|
|
11
11
|
|
|
12
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
13
|
+
|
|
12
14
|
var _defImg = _interopRequireDefault(require("./imgs/defImg.png"));
|
|
13
15
|
|
|
14
16
|
var _ProductItem = _interopRequireDefault(require("../../../../common/components/ProductItem"));
|
|
@@ -375,13 +377,16 @@ function (_super) {
|
|
|
375
377
|
};
|
|
376
378
|
|
|
377
379
|
FlashDealMobile.prototype.render = function () {
|
|
380
|
+
var _a;
|
|
381
|
+
|
|
378
382
|
var panelProps = this.props.panelProps;
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
383
|
+
console.log('flash deal panelProps: ', panelProps);
|
|
384
|
+
var _b = this.state,
|
|
385
|
+
list = _b.list,
|
|
386
|
+
effDate = _b.effDate,
|
|
387
|
+
expDate = _b.expDate,
|
|
388
|
+
now = _b.now,
|
|
389
|
+
isWill = _b.isWill;
|
|
385
390
|
|
|
386
391
|
var _list = list.length === 0 && (0, _coreUtil.isDesignMode)() ? defaultData : list;
|
|
387
392
|
|
|
@@ -400,7 +405,7 @@ function (_super) {
|
|
|
400
405
|
data: panelProps.title.headline
|
|
401
406
|
}), isWill && /*#__PURE__*/_react["default"].createElement("span", {
|
|
402
407
|
className: "sub-title"
|
|
403
|
-
}, (0, _locale.i18n)('NEXT')), /*#__PURE__*/_react["default"].createElement(_CountDown["default"], {
|
|
408
|
+
}, (0, _locale.i18n)('NEXT')), ((_a = panelProps.title) === null || _a === void 0 ? void 0 : _a.countDown.open) && /*#__PURE__*/_react["default"].createElement(_CountDown["default"], {
|
|
404
409
|
effDate: effDate,
|
|
405
410
|
expDate: expDate,
|
|
406
411
|
now: now,
|
|
@@ -414,7 +419,10 @@ function (_super) {
|
|
|
414
419
|
className: "btn",
|
|
415
420
|
data: panelProps.title.button
|
|
416
421
|
}))), /*#__PURE__*/_react["default"].createElement("div", {
|
|
417
|
-
className: "flash-deal-list
|
|
422
|
+
className: (0, _classnames["default"])('flash-deal-list', {
|
|
423
|
+
'flash-deal-list-vertical': panelProps.customize.layout === 'layout1',
|
|
424
|
+
'flash-deal-list-horizontal': panelProps.customize.layout === 'layout2'
|
|
425
|
+
})
|
|
418
426
|
}, _list.map(function (item) {
|
|
419
427
|
return /*#__PURE__*/_react["default"].createElement(_ProductItem["default"], {
|
|
420
428
|
key: item.id,
|
|
@@ -422,6 +430,7 @@ function (_super) {
|
|
|
422
430
|
salePercent: isWill ? 0 : item.salePercent
|
|
423
431
|
}) // onItemClick={() => clickUrl(`/product/detail/${item.offerId}?productId=${item.sppProductId ?? ''}`)}
|
|
424
432
|
,
|
|
433
|
+
layout: panelProps.customize.layout === 'layout2' ? 'horizontal' : 'vertical',
|
|
425
434
|
onItemClick: function onItemClick() {
|
|
426
435
|
if (window.magicDesign.pushGA) {
|
|
427
436
|
window.magicDesign.pushGA({}, 'select_promotion', {
|
|
@@ -53,12 +53,6 @@
|
|
|
53
53
|
}
|
|
54
54
|
.m-flash-deal-mobile .flash-deal-list {
|
|
55
55
|
margin-top: 0.32rem;
|
|
56
|
-
overflow-x: auto;
|
|
57
|
-
overflow-y: hidden;
|
|
58
|
-
white-space: nowrap;
|
|
59
|
-
display: flex;
|
|
60
|
-
align-items: flex-start;
|
|
61
|
-
justify-content: flex-start;
|
|
62
56
|
position: relative;
|
|
63
57
|
}
|
|
64
58
|
.m-flash-deal-mobile .flash-deal-list .loading-wrap {
|
|
@@ -73,11 +67,49 @@
|
|
|
73
67
|
right: 0;
|
|
74
68
|
margin: auto;
|
|
75
69
|
}
|
|
76
|
-
.m-flash-deal-mobile .flash-deal-list
|
|
70
|
+
.m-flash-deal-mobile .flash-deal-list-vertical {
|
|
71
|
+
overflow-x: auto;
|
|
72
|
+
overflow-y: hidden;
|
|
73
|
+
white-space: nowrap;
|
|
74
|
+
display: flex;
|
|
75
|
+
align-items: flex-start;
|
|
76
|
+
justify-content: flex-start;
|
|
77
|
+
}
|
|
78
|
+
.m-flash-deal-mobile .flash-deal-list-vertical .m-product-item-wrap {
|
|
77
79
|
width: 2.84rem;
|
|
78
80
|
margin-right: 0.16rem;
|
|
79
81
|
}
|
|
80
|
-
.m-flash-deal-mobile .flash-deal-list .m-product-item-wrap .product-img {
|
|
82
|
+
.m-flash-deal-mobile .flash-deal-list-vertical .m-product-item-wrap .product-img {
|
|
81
83
|
height: 2.8rem;
|
|
82
84
|
width: 2.8rem;
|
|
83
85
|
}
|
|
86
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal {
|
|
87
|
+
display: flex;
|
|
88
|
+
flex-direction: column;
|
|
89
|
+
gap: 0.16rem;
|
|
90
|
+
}
|
|
91
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap {
|
|
92
|
+
width: 100%;
|
|
93
|
+
}
|
|
94
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap {
|
|
95
|
+
flex: 1;
|
|
96
|
+
}
|
|
97
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .product-name-wrap {
|
|
98
|
+
white-space: nowrap;
|
|
99
|
+
}
|
|
100
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .price-info-wrap {
|
|
101
|
+
display: flex;
|
|
102
|
+
}
|
|
103
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .price-info-wrap .price-wrap {
|
|
104
|
+
margin-bottom: 0;
|
|
105
|
+
}
|
|
106
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .price-info-wrap .price-sold-wrap {
|
|
107
|
+
margin-left: 0.04rem;
|
|
108
|
+
}
|
|
109
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .price-info-wrap .price-sold-wrap .discount {
|
|
110
|
+
display: none;
|
|
111
|
+
}
|
|
112
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .progress-wrap {
|
|
113
|
+
padding-right: 0.52rem;
|
|
114
|
+
margin-top: 0;
|
|
115
|
+
}
|
|
@@ -74,13 +74,13 @@
|
|
|
74
74
|
margin: auto;
|
|
75
75
|
}
|
|
76
76
|
.m-group-buy-mobile .group-buy-list .m-product-item-wrap {
|
|
77
|
-
width:
|
|
77
|
+
width: 3.44rem;
|
|
78
78
|
margin-right: 0.24rem;
|
|
79
79
|
border-radius: 0;
|
|
80
80
|
}
|
|
81
81
|
.m-group-buy-mobile .group-buy-list .m-product-item-wrap .product-img {
|
|
82
|
-
height:
|
|
83
|
-
width:
|
|
82
|
+
height: 3.4rem;
|
|
83
|
+
width: 3.4rem;
|
|
84
84
|
}
|
|
85
85
|
.m-group-buy-mobile .group-buy-list .m-product-item-wrap .content-wrap {
|
|
86
86
|
padding: 0.24rem;
|
|
@@ -45,12 +45,12 @@ var __extends = void 0 && (void 0).__extends || function () {
|
|
|
45
45
|
};
|
|
46
46
|
}();
|
|
47
47
|
|
|
48
|
-
var
|
|
48
|
+
var FlashDealConfigTitle =
|
|
49
49
|
/** @class */
|
|
50
50
|
function (_super) {
|
|
51
|
-
__extends(
|
|
51
|
+
__extends(FlashDealConfigTitle, _super);
|
|
52
52
|
|
|
53
|
-
function
|
|
53
|
+
function FlashDealConfigTitle() {
|
|
54
54
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
55
55
|
|
|
56
56
|
_this.state = {};
|
|
@@ -64,7 +64,7 @@ function (_super) {
|
|
|
64
64
|
return _this;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
FlashDealConfigTitle.prototype.render = function () {
|
|
68
68
|
var _this = this;
|
|
69
69
|
|
|
70
70
|
var panelProps = this.props.panelProps;
|
|
@@ -86,41 +86,50 @@ function (_super) {
|
|
|
86
86
|
headerSize: "middle",
|
|
87
87
|
onRefresh: this.reRender,
|
|
88
88
|
source: [{
|
|
89
|
-
key: '
|
|
89
|
+
key: 'iconConfig',
|
|
90
90
|
name: (0, _locale.i18n)('ICON'),
|
|
91
91
|
value: iconSetting,
|
|
92
92
|
metaOption: panelProps.icon
|
|
93
93
|
}, {
|
|
94
|
-
key: '
|
|
94
|
+
key: 'headlineConfig',
|
|
95
95
|
name: (0, _locale.i18n)('HEADLINE'),
|
|
96
96
|
value: /*#__PURE__*/_react["default"].createElement(_TextConfig["default"], {
|
|
97
97
|
data: panelProps.headline
|
|
98
98
|
}),
|
|
99
99
|
metaOption: panelProps.headline
|
|
100
100
|
}, {
|
|
101
|
-
key: '
|
|
101
|
+
key: 'buttonCOnfig',
|
|
102
102
|
name: (0, _locale.i18n)('BUTTON'),
|
|
103
103
|
value: /*#__PURE__*/_react["default"].createElement(_ButtonConfig["default"], {
|
|
104
104
|
data: panelProps.button
|
|
105
105
|
}),
|
|
106
106
|
metaOption: panelProps.button
|
|
107
|
+
}, {
|
|
108
|
+
key: 'countDownConfig',
|
|
109
|
+
name: (0, _locale.i18n)('COUNT_DOWN'),
|
|
110
|
+
value: null,
|
|
111
|
+
metaOption: panelProps === null || panelProps === void 0 ? void 0 : panelProps.countDown,
|
|
112
|
+
toggleType: 'switch'
|
|
107
113
|
}],
|
|
108
114
|
type: "switch"
|
|
109
115
|
}));
|
|
110
116
|
};
|
|
111
117
|
|
|
112
|
-
|
|
118
|
+
FlashDealConfigTitle.defaultProps = {
|
|
113
119
|
panelProps: {
|
|
114
120
|
icon: {
|
|
115
121
|
open: true,
|
|
116
122
|
url: ''
|
|
117
123
|
},
|
|
118
124
|
headline: {},
|
|
119
|
-
button: {}
|
|
125
|
+
button: {},
|
|
126
|
+
countDown: {
|
|
127
|
+
open: true
|
|
128
|
+
}
|
|
120
129
|
}
|
|
121
130
|
};
|
|
122
|
-
return
|
|
131
|
+
return FlashDealConfigTitle;
|
|
123
132
|
}(_react["default"].Component);
|
|
124
133
|
|
|
125
|
-
var _default =
|
|
134
|
+
var _default = FlashDealConfigTitle;
|
|
126
135
|
exports["default"] = _default;
|
|
@@ -11,8 +11,6 @@ var _FlashDealConfigTitle = _interopRequireDefault(require("./FlashDealConfigTit
|
|
|
11
11
|
|
|
12
12
|
var _FlashDealConfigContent = _interopRequireDefault(require("./FlashDealConfigContent"));
|
|
13
13
|
|
|
14
|
-
var _layout = _interopRequireDefault(require("./imgs/layout1.png"));
|
|
15
|
-
|
|
16
14
|
var _SpacingConfig = _interopRequireDefault(require("../../../common/config-panels/SpacingConfig"));
|
|
17
15
|
|
|
18
16
|
var _BackgroundConfig = _interopRequireDefault(require("../../../common/config-panels/BackgroundConfig"));
|
|
@@ -23,6 +21,8 @@ var _Collapse = _interopRequireDefault(require("../../../../common/Collapse"));
|
|
|
23
21
|
|
|
24
22
|
var _locale = require("../../../../locale");
|
|
25
23
|
|
|
24
|
+
var _layout = require("../../../../constants/layout");
|
|
25
|
+
|
|
26
26
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
27
27
|
|
|
28
28
|
function FlashDealConfig(props) {
|
|
@@ -55,11 +55,7 @@ function FlashDealConfig(props) {
|
|
|
55
55
|
value: /*#__PURE__*/_react["default"].createElement(_CustomizeConfig["default"], {
|
|
56
56
|
data: data.customize,
|
|
57
57
|
isHideAlign: true,
|
|
58
|
-
layoutSource:
|
|
59
|
-
id: 'layout1',
|
|
60
|
-
name: 'layout1',
|
|
61
|
-
image: _layout["default"]
|
|
62
|
-
}]
|
|
58
|
+
layoutSource: _layout.flashDealLayout
|
|
63
59
|
})
|
|
64
60
|
}, {
|
|
65
61
|
key: '5',
|
package/es/constants/layout.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.videoPCLayout = exports.videoH5Layout = exports.searchLayout = exports.recommendLayoutPc = exports.recommendLayoutMobile = exports.pcNavigationLayout = exports.newsletterLayout = exports.mobileNavigationLayout = exports.locationLayout = exports.imageTextLayoutPc = exports.imageTextLayoutMobile = exports.imageGalleryLayout = exports.dividerLayout = exports.carouselLayout = exports.affiliateLayoutPc = exports.affiliateLayoutMobile = exports.WalletNuriLayout = exports.WalletLayout = void 0;
|
|
6
|
+
exports.videoPCLayout = exports.videoH5Layout = exports.searchLayout = exports.recommendLayoutPc = exports.recommendLayoutMobile = exports.pcNavigationLayout = exports.newsletterLayout = exports.mobileNavigationLayout = exports.locationLayout = exports.imageTextLayoutPc = exports.imageTextLayoutMobile = exports.imageGalleryLayout = exports.flashDealLayout = exports.dividerLayout = exports.carouselLayout = exports.bannerSlideLayout = exports.affiliateLayoutPc = exports.affiliateLayoutMobile = exports.WalletNuriLayout = exports.WalletLayout = void 0;
|
|
7
7
|
|
|
8
8
|
var _dividerLayout = _interopRequireDefault(require("../assets/images/layout-icon/dividerLayout.svg"));
|
|
9
9
|
|
|
@@ -81,6 +81,12 @@ var _layoutNavigationTile = _interopRequireDefault(require("../assets/images/lay
|
|
|
81
81
|
|
|
82
82
|
var _layoutNavigationNormal = _interopRequireDefault(require("../assets/images/layout-icon/layout-navigation-normal.png"));
|
|
83
83
|
|
|
84
|
+
var _bannerSlideLayout = _interopRequireDefault(require("../assets/images/layout-icon/banner-slide-layout1.png"));
|
|
85
|
+
|
|
86
|
+
var _bannerSlideLayout2 = _interopRequireDefault(require("../assets/images/layout-icon/banner-slide-layout2.png"));
|
|
87
|
+
|
|
88
|
+
var _flashDealLayout = _interopRequireDefault(require("../assets/images/layout-icon/flash-deal-layout1.png"));
|
|
89
|
+
|
|
84
90
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
85
91
|
|
|
86
92
|
// import p3 from '../assets/images/layout-icon/layout-imagetext-p3.png';
|
|
@@ -312,4 +318,24 @@ var pcNavigationLayout = [{
|
|
|
312
318
|
name: 'normal',
|
|
313
319
|
image: _layoutNavigationNormal["default"]
|
|
314
320
|
}];
|
|
315
|
-
exports.pcNavigationLayout = pcNavigationLayout;
|
|
321
|
+
exports.pcNavigationLayout = pcNavigationLayout;
|
|
322
|
+
var bannerSlideLayout = [{
|
|
323
|
+
id: 'layout1',
|
|
324
|
+
name: 'layout1',
|
|
325
|
+
image: _bannerSlideLayout["default"]
|
|
326
|
+
}, {
|
|
327
|
+
id: 'layout2',
|
|
328
|
+
name: 'layout2',
|
|
329
|
+
image: _bannerSlideLayout2["default"]
|
|
330
|
+
}];
|
|
331
|
+
exports.bannerSlideLayout = bannerSlideLayout;
|
|
332
|
+
var flashDealLayout = [{
|
|
333
|
+
id: 'layout1',
|
|
334
|
+
name: 'layout1',
|
|
335
|
+
image: _flashDealLayout["default"]
|
|
336
|
+
}, {
|
|
337
|
+
id: 'layout2',
|
|
338
|
+
name: 'layout2',
|
|
339
|
+
image: _layoutImagetextM4["default"]
|
|
340
|
+
}];
|
|
341
|
+
exports.flashDealLayout = flashDealLayout;
|
package/es/locale/en/en.json
CHANGED
|
@@ -1,4 +1,91 @@
|
|
|
1
1
|
{
|
|
2
|
+
"MISSION_NAME": "Mission Name",
|
|
3
|
+
"COUNT_DOWN": "Count Down",
|
|
4
|
+
"SEARCH_BAR_PLACEHOLDER": "Search Bar Placeholder",
|
|
5
|
+
"INTER": "Inter",
|
|
6
|
+
"STORE_SERVICES": "Store services",
|
|
7
|
+
"SHIP_ON_TIME": "Ship on time",
|
|
8
|
+
"COMMODITY_QUALITY": "Commodity Quality",
|
|
9
|
+
"FOLLOWED": "Followed",
|
|
10
|
+
"VERIFIED": "Verified",
|
|
11
|
+
"RATING": "Rating",
|
|
12
|
+
"STORE_NAME": "Store Name",
|
|
13
|
+
"RATING_DETAILS": "Rating Details",
|
|
14
|
+
"FOLLOW_BUTTON": "Follow Button",
|
|
15
|
+
"IN_STORE_SEARCH_BOX": "In Store Search Box",
|
|
16
|
+
"THIS_PAGE_WILL": "This page will be published at {date}, If you need to edit it, please cancel the publishing later",
|
|
17
|
+
"PRODUCTS_IN_TOTAL": "{total} Products In Total",
|
|
18
|
+
"PLAY_ICON_COLOR": "Play Icon Color",
|
|
19
|
+
"PLAY_ICON_TYPE": "Play Icon Type",
|
|
20
|
+
"FILL_THE_PAGE": "Fill the page",
|
|
21
|
+
"VIDEO_SOUND": "Video Sound",
|
|
22
|
+
"PLAY_IN_LOOP": "Play in loop",
|
|
23
|
+
"PROGRESS_BAR": "Progress bar",
|
|
24
|
+
"PLAY_ICON_SIZE": "Play Icon Size",
|
|
25
|
+
"SOURCE_OF_ACTIVITY": "Source of Activity",
|
|
26
|
+
"WIDTH": "Width",
|
|
27
|
+
"PLAY_BUTTON_POSITION": "Play button position",
|
|
28
|
+
"PLAY_POSITION": "Play Position",
|
|
29
|
+
"START_VIDEO_AT": "Start video at",
|
|
30
|
+
"SELECT_VIDEO": "Select Video",
|
|
31
|
+
"PLAY_SPEED": "Play Speed",
|
|
32
|
+
"POSTER": "Poster",
|
|
33
|
+
"ADD_PAGE": "Add page",
|
|
34
|
+
"HOMEPAGE": "Homepage",
|
|
35
|
+
"WOMEN_S_HOME_PAGE": "Women's home page",
|
|
36
|
+
"EDIT_PAGE": "Edit Page",
|
|
37
|
+
"CANCEL_PUBLISH_LATER": "Cancel Publish Later",
|
|
38
|
+
"TO_REVIEW": "To Review",
|
|
39
|
+
"WHAT_WOULD_LIKE_TO_CREATE": "What would like to create?",
|
|
40
|
+
"PLEASE_SELECT_A_TIME_AFTER_30_MINUTES_AND_WITHIN_30_DAYS": "Please select a time after 30 minutes and within 30 days",
|
|
41
|
+
"BIG_NUMBERS_HAVE_BIG_EFFECTS": "Big numbers have big effects",
|
|
42
|
+
"PROPORTION": "Proportion",
|
|
43
|
+
"CUSTOMER_INTERESTS": "Customer interests",
|
|
44
|
+
"HISTORY": "History",
|
|
45
|
+
"DIRECT_FUNCTION": "Direct Function",
|
|
46
|
+
"OPEN_SANS": "Open Sans",
|
|
47
|
+
"MONTSERRAT": "Montserrat",
|
|
48
|
+
"DISCOUNT": "DISCOUNT",
|
|
49
|
+
"KHUSUS_PENGGUNA_BARU": "Khusus Pengguna Baru",
|
|
50
|
+
"MIDDLE": "Middle",
|
|
51
|
+
"BOTTOM_LEFT": "Bottom Left",
|
|
52
|
+
"POPUP": "Popup",
|
|
53
|
+
"PLAY_IN_BOX": "Play in Box",
|
|
54
|
+
"DISPLAY_LOCATION_ADDRESS": "Display Location Address",
|
|
55
|
+
"SUPPORT_FOR_A": "Support for a single or bulk upload. Strictly prohibit from uploading company data or other band files",
|
|
56
|
+
"CLICK_OR_DRAG": "Click or drag file to this area to upload",
|
|
57
|
+
"SHARE_URL": "Share Url",
|
|
58
|
+
"URL": "URL",
|
|
59
|
+
"CAMPAIGN_STATE": "Campaign State",
|
|
60
|
+
"CAMPAIGN_NAME": "Campaign Name",
|
|
61
|
+
"BRANDS": "Brands",
|
|
62
|
+
"SERVICE": "Service",
|
|
63
|
+
"RATINGS": "Ratings",
|
|
64
|
+
"STAR": "Star",
|
|
65
|
+
"APPLY": "Apply",
|
|
66
|
+
"SORT_BY": "Sort by",
|
|
67
|
+
"PROMOTION": "Promotion",
|
|
68
|
+
"HIGHEST_RATED": "Highest rated",
|
|
69
|
+
"MOST_SOLD": "Most sold",
|
|
70
|
+
"LOWEST_PRICE": "Lowest price",
|
|
71
|
+
"EARLIEST": "Earliest",
|
|
72
|
+
"BUY_NOW": "Buy Now",
|
|
73
|
+
"TOTAL": "Total",
|
|
74
|
+
"RECENTLY": "Recently",
|
|
75
|
+
"COUPON": "Coupon",
|
|
76
|
+
"HEADER_IMAGE": "Header Image",
|
|
77
|
+
"ACTIVITY_LABEL": "Activity Label",
|
|
78
|
+
"STOCK": "Stock",
|
|
79
|
+
"DISCOUNT_LABEL": "Discount Label",
|
|
80
|
+
"SESSION_TIME": "Session Time",
|
|
81
|
+
"NUMBER": "Number",
|
|
82
|
+
"COUNTDOWN": "Countdown",
|
|
83
|
+
"FILTER": "Filter",
|
|
84
|
+
"SOLD": "Sold",
|
|
85
|
+
"EVALUATION_SCORE": "Evaluation Score",
|
|
86
|
+
"SEARCH_BAR_KEYWORD": "Search Bar Keyword",
|
|
87
|
+
"BOX_BACKGROUND": "Box Background",
|
|
88
|
+
"BOX_COLOR": "Box Color",
|
|
2
89
|
"PROGRESS_BAR_COLOR": "Progress Bar Color",
|
|
3
90
|
"GROUP_LABEL": "Group Label",
|
|
4
91
|
"SUBMIT": "Submit",
|
package/es/locale/es/es.json
CHANGED
|
@@ -1,4 +1,91 @@
|
|
|
1
1
|
{
|
|
2
|
+
"MISSION_NAME": "Mission Name",
|
|
3
|
+
"COUNT_DOWN": "Count Down",
|
|
4
|
+
"SEARCH_BAR_PLACEHOLDER": "Search Bar Placeholder",
|
|
5
|
+
"INTER": "Inter",
|
|
6
|
+
"STORE_SERVICES": "Store services",
|
|
7
|
+
"SHIP_ON_TIME": "Ship on time",
|
|
8
|
+
"COMMODITY_QUALITY": "Commodity Quality",
|
|
9
|
+
"FOLLOWED": "Followed",
|
|
10
|
+
"VERIFIED": "Verified",
|
|
11
|
+
"RATING": "Rating",
|
|
12
|
+
"STORE_NAME": "Store Name",
|
|
13
|
+
"RATING_DETAILS": "Rating Details",
|
|
14
|
+
"FOLLOW_BUTTON": "Follow Button",
|
|
15
|
+
"IN_STORE_SEARCH_BOX": "In Store Search Box",
|
|
16
|
+
"THIS_PAGE_WILL": "This page will be published at {date}, If you need to edit it, please cancel the publishing later",
|
|
17
|
+
"PRODUCTS_IN_TOTAL": "{total} Products In Total",
|
|
18
|
+
"PLAY_ICON_COLOR": "Play Icon Color",
|
|
19
|
+
"PLAY_ICON_TYPE": "Play Icon Type",
|
|
20
|
+
"FILL_THE_PAGE": "Fill the page",
|
|
21
|
+
"VIDEO_SOUND": "Video Sound",
|
|
22
|
+
"PLAY_IN_LOOP": "Play in loop",
|
|
23
|
+
"PROGRESS_BAR": "Progress bar",
|
|
24
|
+
"PLAY_ICON_SIZE": "Play Icon Size",
|
|
25
|
+
"SOURCE_OF_ACTIVITY": "Source of Activity",
|
|
26
|
+
"WIDTH": "Width",
|
|
27
|
+
"PLAY_BUTTON_POSITION": "Play button position",
|
|
28
|
+
"PLAY_POSITION": "Play Position",
|
|
29
|
+
"START_VIDEO_AT": "Start video at",
|
|
30
|
+
"SELECT_VIDEO": "Select Video",
|
|
31
|
+
"PLAY_SPEED": "Play Speed",
|
|
32
|
+
"POSTER": "Poster",
|
|
33
|
+
"ADD_PAGE": "Add page",
|
|
34
|
+
"HOMEPAGE": "Homepage",
|
|
35
|
+
"WOMEN_S_HOME_PAGE": "Women's home page",
|
|
36
|
+
"EDIT_PAGE": "Edit Page",
|
|
37
|
+
"CANCEL_PUBLISH_LATER": "Cancel Publish Later",
|
|
38
|
+
"TO_REVIEW": "To Review",
|
|
39
|
+
"WHAT_WOULD_LIKE_TO_CREATE": "What would like to create?",
|
|
40
|
+
"PLEASE_SELECT_A_TIME_AFTER_30_MINUTES_AND_WITHIN_30_DAYS": "Please select a time after 30 minutes and within 30 days",
|
|
41
|
+
"BIG_NUMBERS_HAVE_BIG_EFFECTS": "Big numbers have big effects",
|
|
42
|
+
"PROPORTION": "Proportion",
|
|
43
|
+
"CUSTOMER_INTERESTS": "Customer interests",
|
|
44
|
+
"HISTORY": "History",
|
|
45
|
+
"DIRECT_FUNCTION": "Direct Function",
|
|
46
|
+
"OPEN_SANS": "Open Sans",
|
|
47
|
+
"MONTSERRAT": "Montserrat",
|
|
48
|
+
"DISCOUNT": "DISCOUNT",
|
|
49
|
+
"KHUSUS_PENGGUNA_BARU": "Khusus Pengguna Baru",
|
|
50
|
+
"MIDDLE": "Middle",
|
|
51
|
+
"BOTTOM_LEFT": "Bottom Left",
|
|
52
|
+
"POPUP": "Popup",
|
|
53
|
+
"PLAY_IN_BOX": "Play in Box",
|
|
54
|
+
"DISPLAY_LOCATION_ADDRESS": "Display Location Address",
|
|
55
|
+
"SUPPORT_FOR_A": "Support for a single or bulk upload. Strictly prohibit from uploading company data or other band files",
|
|
56
|
+
"CLICK_OR_DRAG": "Click or drag file to this area to upload",
|
|
57
|
+
"SHARE_URL": "Share Url",
|
|
58
|
+
"URL": "URL",
|
|
59
|
+
"CAMPAIGN_STATE": "Campaign State",
|
|
60
|
+
"CAMPAIGN_NAME": "Campaign Name",
|
|
61
|
+
"BRANDS": "Brands",
|
|
62
|
+
"SERVICE": "Service",
|
|
63
|
+
"RATINGS": "Ratings",
|
|
64
|
+
"STAR": "Star",
|
|
65
|
+
"APPLY": "Apply",
|
|
66
|
+
"SORT_BY": "Sort by",
|
|
67
|
+
"PROMOTION": "Promotion",
|
|
68
|
+
"HIGHEST_RATED": "Highest rated",
|
|
69
|
+
"MOST_SOLD": "Most sold",
|
|
70
|
+
"LOWEST_PRICE": "Lowest price",
|
|
71
|
+
"EARLIEST": "Earliest",
|
|
72
|
+
"BUY_NOW": "Buy Now",
|
|
73
|
+
"TOTAL": "Total",
|
|
74
|
+
"RECENTLY": "Recently",
|
|
75
|
+
"COUPON": "Coupon",
|
|
76
|
+
"HEADER_IMAGE": "Header Image",
|
|
77
|
+
"ACTIVITY_LABEL": "Activity Label",
|
|
78
|
+
"STOCK": "Stock",
|
|
79
|
+
"DISCOUNT_LABEL": "Discount Label",
|
|
80
|
+
"SESSION_TIME": "Session Time",
|
|
81
|
+
"NUMBER": "Number",
|
|
82
|
+
"COUNTDOWN": "Countdown",
|
|
83
|
+
"FILTER": "Filter",
|
|
84
|
+
"SOLD": "Sold",
|
|
85
|
+
"EVALUATION_SCORE": "Evaluation Score",
|
|
86
|
+
"SEARCH_BAR_KEYWORD": "Search Bar Keyword",
|
|
87
|
+
"BOX_BACKGROUND": "Box Background",
|
|
88
|
+
"BOX_COLOR": "Box Color",
|
|
2
89
|
"PROGRESS_BAR_COLOR": "Progress Bar Color",
|
|
3
90
|
"GROUP_LABEL": "Group Label",
|
|
4
91
|
"SUBMIT": "Submit",
|
package/es/locale/id/id.json
CHANGED
|
@@ -1,4 +1,91 @@
|
|
|
1
1
|
{
|
|
2
|
+
"MISSION_NAME": "Mission Name",
|
|
3
|
+
"COUNT_DOWN": "Count Down",
|
|
4
|
+
"SEARCH_BAR_PLACEHOLDER": "Search Bar Placeholder",
|
|
5
|
+
"INTER": "Inter",
|
|
6
|
+
"STORE_SERVICES": "Store services",
|
|
7
|
+
"SHIP_ON_TIME": "Ship on time",
|
|
8
|
+
"COMMODITY_QUALITY": "Commodity Quality",
|
|
9
|
+
"FOLLOWED": "Followed",
|
|
10
|
+
"VERIFIED": "Verified",
|
|
11
|
+
"RATING": "Rating",
|
|
12
|
+
"STORE_NAME": "Store Name",
|
|
13
|
+
"RATING_DETAILS": "Rating Details",
|
|
14
|
+
"FOLLOW_BUTTON": "Follow Button",
|
|
15
|
+
"IN_STORE_SEARCH_BOX": "In Store Search Box",
|
|
16
|
+
"THIS_PAGE_WILL": "This page will be published at {date}, If you need to edit it, please cancel the publishing later",
|
|
17
|
+
"PRODUCTS_IN_TOTAL": "{total} Products In Total",
|
|
18
|
+
"PLAY_ICON_COLOR": "Play Icon Color",
|
|
19
|
+
"PLAY_ICON_TYPE": "Play Icon Type",
|
|
20
|
+
"FILL_THE_PAGE": "Fill the page",
|
|
21
|
+
"VIDEO_SOUND": "Video Sound",
|
|
22
|
+
"PLAY_IN_LOOP": "Play in loop",
|
|
23
|
+
"PROGRESS_BAR": "Progress bar",
|
|
24
|
+
"PLAY_ICON_SIZE": "Play Icon Size",
|
|
25
|
+
"SOURCE_OF_ACTIVITY": "Source of Activity",
|
|
26
|
+
"WIDTH": "Width",
|
|
27
|
+
"PLAY_BUTTON_POSITION": "Play button position",
|
|
28
|
+
"PLAY_POSITION": "Play Position",
|
|
29
|
+
"START_VIDEO_AT": "Start video at",
|
|
30
|
+
"SELECT_VIDEO": "Select Video",
|
|
31
|
+
"PLAY_SPEED": "Play Speed",
|
|
32
|
+
"POSTER": "Poster",
|
|
33
|
+
"ADD_PAGE": "Add page",
|
|
34
|
+
"HOMEPAGE": "Homepage",
|
|
35
|
+
"WOMEN_S_HOME_PAGE": "Women's home page",
|
|
36
|
+
"EDIT_PAGE": "Edit Page",
|
|
37
|
+
"CANCEL_PUBLISH_LATER": "Cancel Publish Later",
|
|
38
|
+
"TO_REVIEW": "To Review",
|
|
39
|
+
"WHAT_WOULD_LIKE_TO_CREATE": "What would like to create?",
|
|
40
|
+
"PLEASE_SELECT_A_TIME_AFTER_30_MINUTES_AND_WITHIN_30_DAYS": "Please select a time after 30 minutes and within 30 days",
|
|
41
|
+
"BIG_NUMBERS_HAVE_BIG_EFFECTS": "Big numbers have big effects",
|
|
42
|
+
"PROPORTION": "Proportion",
|
|
43
|
+
"CUSTOMER_INTERESTS": "Customer interests",
|
|
44
|
+
"HISTORY": "History",
|
|
45
|
+
"DIRECT_FUNCTION": "Direct Function",
|
|
46
|
+
"OPEN_SANS": "Open Sans",
|
|
47
|
+
"MONTSERRAT": "Montserrat",
|
|
48
|
+
"DISCOUNT": "DISCOUNT",
|
|
49
|
+
"KHUSUS_PENGGUNA_BARU": "Khusus Pengguna Baru",
|
|
50
|
+
"MIDDLE": "Middle",
|
|
51
|
+
"BOTTOM_LEFT": "Bottom Left",
|
|
52
|
+
"POPUP": "Popup",
|
|
53
|
+
"PLAY_IN_BOX": "Play in Box",
|
|
54
|
+
"DISPLAY_LOCATION_ADDRESS": "Display Location Address",
|
|
55
|
+
"SUPPORT_FOR_A": "Support for a single or bulk upload. Strictly prohibit from uploading company data or other band files",
|
|
56
|
+
"CLICK_OR_DRAG": "Click or drag file to this area to upload",
|
|
57
|
+
"SHARE_URL": "Share Url",
|
|
58
|
+
"URL": "URL",
|
|
59
|
+
"CAMPAIGN_STATE": "Campaign State",
|
|
60
|
+
"CAMPAIGN_NAME": "Campaign Name",
|
|
61
|
+
"BRANDS": "Brands",
|
|
62
|
+
"SERVICE": "Service",
|
|
63
|
+
"RATINGS": "Ratings",
|
|
64
|
+
"STAR": "Star",
|
|
65
|
+
"APPLY": "Apply",
|
|
66
|
+
"SORT_BY": "Sort by",
|
|
67
|
+
"PROMOTION": "Promotion",
|
|
68
|
+
"HIGHEST_RATED": "Highest rated",
|
|
69
|
+
"MOST_SOLD": "Most sold",
|
|
70
|
+
"LOWEST_PRICE": "Lowest price",
|
|
71
|
+
"EARLIEST": "Earliest",
|
|
72
|
+
"BUY_NOW": "Buy Now",
|
|
73
|
+
"TOTAL": "Total",
|
|
74
|
+
"RECENTLY": "Recently",
|
|
75
|
+
"COUPON": "Coupon",
|
|
76
|
+
"HEADER_IMAGE": "Header Image",
|
|
77
|
+
"ACTIVITY_LABEL": "Activity Label",
|
|
78
|
+
"STOCK": "Stock",
|
|
79
|
+
"DISCOUNT_LABEL": "Discount Label",
|
|
80
|
+
"SESSION_TIME": "Session Time",
|
|
81
|
+
"NUMBER": "Number",
|
|
82
|
+
"COUNTDOWN": "Countdown",
|
|
83
|
+
"FILTER": "Filter",
|
|
84
|
+
"SOLD": "Sold",
|
|
85
|
+
"EVALUATION_SCORE": "Evaluation Score",
|
|
86
|
+
"SEARCH_BAR_KEYWORD": "Search Bar Keyword",
|
|
87
|
+
"BOX_BACKGROUND": "Box Background",
|
|
88
|
+
"BOX_COLOR": "Box Color",
|
|
2
89
|
"PROGRESS_BAR_COLOR": "Progress Bar Color",
|
|
3
90
|
"GROUP_LABEL": "Group Label",
|
|
4
91
|
"SUBMIT": "Submit",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -206,7 +206,9 @@ function (_super) {
|
|
|
206
206
|
text: data.offerName
|
|
207
207
|
}),
|
|
208
208
|
readonly: true
|
|
209
|
-
}))), panelProps.activityPrice.open && /*#__PURE__*/_react["default"].createElement("div", {
|
|
209
|
+
}))), (panelProps.activityPrice.open || panelProps.salesPrice.open) && /*#__PURE__*/_react["default"].createElement("div", {
|
|
210
|
+
className: "price-info-wrap"
|
|
211
|
+
}, panelProps.activityPrice.open && /*#__PURE__*/_react["default"].createElement("div", {
|
|
210
212
|
className: "price-wrap"
|
|
211
213
|
}, /*#__PURE__*/_react["default"].createElement(_components.MetaText, {
|
|
212
214
|
className: "price",
|
|
@@ -232,9 +234,9 @@ function (_super) {
|
|
|
232
234
|
style: {
|
|
233
235
|
color: panelProps.salesPrice.content.color
|
|
234
236
|
}
|
|
235
|
-
})), type !== 'groupBuy' && !showProgress && data.salesCnt > 0 && /*#__PURE__*/_react["default"].createElement("div", {
|
|
237
|
+
})), type !== 'groupBuy' && !showProgress && data.salesCnt > 0 && data.displaySalesCntFlag === 'Y' && /*#__PURE__*/_react["default"].createElement("div", {
|
|
236
238
|
className: "sold-count"
|
|
237
|
-
}, (0, _commonUtil.convertCount)(data.salesCnt), " sold")), showProgress && ((_d = panelProps.salesProgressVisible) === null || _d === void 0 ? void 0 : _d.open) && /*#__PURE__*/_react["default"].createElement("div", {
|
|
239
|
+
}, (0, _commonUtil.convertCount)(data.salesCnt), " sold"))), showProgress && ((_d = panelProps.salesProgressVisible) === null || _d === void 0 ? void 0 : _d.open) && /*#__PURE__*/_react["default"].createElement("div", {
|
|
238
240
|
className: "progress-wrap"
|
|
239
241
|
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
240
242
|
className: "text"
|
|
@@ -9,6 +9,8 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
9
9
|
|
|
10
10
|
require("./index.less");
|
|
11
11
|
|
|
12
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
13
|
+
|
|
12
14
|
var _defImg = _interopRequireDefault(require("./imgs/defImg.png"));
|
|
13
15
|
|
|
14
16
|
var _ProductItem = _interopRequireDefault(require("../../../../common/components/ProductItem"));
|
|
@@ -375,13 +377,16 @@ function (_super) {
|
|
|
375
377
|
};
|
|
376
378
|
|
|
377
379
|
FlashDealMobile.prototype.render = function () {
|
|
380
|
+
var _a;
|
|
381
|
+
|
|
378
382
|
var panelProps = this.props.panelProps;
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
383
|
+
console.log('flash deal panelProps: ', panelProps);
|
|
384
|
+
var _b = this.state,
|
|
385
|
+
list = _b.list,
|
|
386
|
+
effDate = _b.effDate,
|
|
387
|
+
expDate = _b.expDate,
|
|
388
|
+
now = _b.now,
|
|
389
|
+
isWill = _b.isWill;
|
|
385
390
|
|
|
386
391
|
var _list = list.length === 0 && (0, _coreUtil.isDesignMode)() ? defaultData : list;
|
|
387
392
|
|
|
@@ -400,7 +405,7 @@ function (_super) {
|
|
|
400
405
|
data: panelProps.title.headline
|
|
401
406
|
}), isWill && /*#__PURE__*/_react["default"].createElement("span", {
|
|
402
407
|
className: "sub-title"
|
|
403
|
-
}, (0, _locale.i18n)('NEXT')), /*#__PURE__*/_react["default"].createElement(_CountDown["default"], {
|
|
408
|
+
}, (0, _locale.i18n)('NEXT')), ((_a = panelProps.title) === null || _a === void 0 ? void 0 : _a.countDown.open) && /*#__PURE__*/_react["default"].createElement(_CountDown["default"], {
|
|
404
409
|
effDate: effDate,
|
|
405
410
|
expDate: expDate,
|
|
406
411
|
now: now,
|
|
@@ -414,7 +419,10 @@ function (_super) {
|
|
|
414
419
|
className: "btn",
|
|
415
420
|
data: panelProps.title.button
|
|
416
421
|
}))), /*#__PURE__*/_react["default"].createElement("div", {
|
|
417
|
-
className: "flash-deal-list
|
|
422
|
+
className: (0, _classnames["default"])('flash-deal-list', {
|
|
423
|
+
'flash-deal-list-vertical': panelProps.customize.layout === 'layout1',
|
|
424
|
+
'flash-deal-list-horizontal': panelProps.customize.layout === 'layout2'
|
|
425
|
+
})
|
|
418
426
|
}, _list.map(function (item) {
|
|
419
427
|
return /*#__PURE__*/_react["default"].createElement(_ProductItem["default"], {
|
|
420
428
|
key: item.id,
|
|
@@ -422,6 +430,7 @@ function (_super) {
|
|
|
422
430
|
salePercent: isWill ? 0 : item.salePercent
|
|
423
431
|
}) // onItemClick={() => clickUrl(`/product/detail/${item.offerId}?productId=${item.sppProductId ?? ''}`)}
|
|
424
432
|
,
|
|
433
|
+
layout: panelProps.customize.layout === 'layout2' ? 'horizontal' : 'vertical',
|
|
425
434
|
onItemClick: function onItemClick() {
|
|
426
435
|
if (window.magicDesign.pushGA) {
|
|
427
436
|
window.magicDesign.pushGA({}, 'select_promotion', {
|
|
@@ -53,12 +53,6 @@
|
|
|
53
53
|
}
|
|
54
54
|
.m-flash-deal-mobile .flash-deal-list {
|
|
55
55
|
margin-top: 0.32rem;
|
|
56
|
-
overflow-x: auto;
|
|
57
|
-
overflow-y: hidden;
|
|
58
|
-
white-space: nowrap;
|
|
59
|
-
display: flex;
|
|
60
|
-
align-items: flex-start;
|
|
61
|
-
justify-content: flex-start;
|
|
62
56
|
position: relative;
|
|
63
57
|
}
|
|
64
58
|
.m-flash-deal-mobile .flash-deal-list .loading-wrap {
|
|
@@ -73,11 +67,49 @@
|
|
|
73
67
|
right: 0;
|
|
74
68
|
margin: auto;
|
|
75
69
|
}
|
|
76
|
-
.m-flash-deal-mobile .flash-deal-list
|
|
70
|
+
.m-flash-deal-mobile .flash-deal-list-vertical {
|
|
71
|
+
overflow-x: auto;
|
|
72
|
+
overflow-y: hidden;
|
|
73
|
+
white-space: nowrap;
|
|
74
|
+
display: flex;
|
|
75
|
+
align-items: flex-start;
|
|
76
|
+
justify-content: flex-start;
|
|
77
|
+
}
|
|
78
|
+
.m-flash-deal-mobile .flash-deal-list-vertical .m-product-item-wrap {
|
|
77
79
|
width: 2.84rem;
|
|
78
80
|
margin-right: 0.16rem;
|
|
79
81
|
}
|
|
80
|
-
.m-flash-deal-mobile .flash-deal-list .m-product-item-wrap .product-img {
|
|
82
|
+
.m-flash-deal-mobile .flash-deal-list-vertical .m-product-item-wrap .product-img {
|
|
81
83
|
height: 2.8rem;
|
|
82
84
|
width: 2.8rem;
|
|
83
85
|
}
|
|
86
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal {
|
|
87
|
+
display: flex;
|
|
88
|
+
flex-direction: column;
|
|
89
|
+
gap: 0.16rem;
|
|
90
|
+
}
|
|
91
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap {
|
|
92
|
+
width: 100%;
|
|
93
|
+
}
|
|
94
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap {
|
|
95
|
+
flex: 1;
|
|
96
|
+
}
|
|
97
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .product-name-wrap {
|
|
98
|
+
white-space: nowrap;
|
|
99
|
+
}
|
|
100
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .price-info-wrap {
|
|
101
|
+
display: flex;
|
|
102
|
+
}
|
|
103
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .price-info-wrap .price-wrap {
|
|
104
|
+
margin-bottom: 0;
|
|
105
|
+
}
|
|
106
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .price-info-wrap .price-sold-wrap {
|
|
107
|
+
margin-left: 0.04rem;
|
|
108
|
+
}
|
|
109
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .price-info-wrap .price-sold-wrap .discount {
|
|
110
|
+
display: none;
|
|
111
|
+
}
|
|
112
|
+
.m-flash-deal-mobile .flash-deal-list-horizontal .m-product-item-wrap .content-wrap .progress-wrap {
|
|
113
|
+
padding-right: 0.52rem;
|
|
114
|
+
margin-top: 0;
|
|
115
|
+
}
|
|
@@ -74,13 +74,13 @@
|
|
|
74
74
|
margin: auto;
|
|
75
75
|
}
|
|
76
76
|
.m-group-buy-mobile .group-buy-list .m-product-item-wrap {
|
|
77
|
-
width:
|
|
77
|
+
width: 3.44rem;
|
|
78
78
|
margin-right: 0.24rem;
|
|
79
79
|
border-radius: 0;
|
|
80
80
|
}
|
|
81
81
|
.m-group-buy-mobile .group-buy-list .m-product-item-wrap .product-img {
|
|
82
|
-
height:
|
|
83
|
-
width:
|
|
82
|
+
height: 3.4rem;
|
|
83
|
+
width: 3.4rem;
|
|
84
84
|
}
|
|
85
85
|
.m-group-buy-mobile .group-buy-list .m-product-item-wrap .content-wrap {
|
|
86
86
|
padding: 0.24rem;
|
|
@@ -45,12 +45,12 @@ var __extends = void 0 && (void 0).__extends || function () {
|
|
|
45
45
|
};
|
|
46
46
|
}();
|
|
47
47
|
|
|
48
|
-
var
|
|
48
|
+
var FlashDealConfigTitle =
|
|
49
49
|
/** @class */
|
|
50
50
|
function (_super) {
|
|
51
|
-
__extends(
|
|
51
|
+
__extends(FlashDealConfigTitle, _super);
|
|
52
52
|
|
|
53
|
-
function
|
|
53
|
+
function FlashDealConfigTitle() {
|
|
54
54
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
55
55
|
|
|
56
56
|
_this.state = {};
|
|
@@ -64,7 +64,7 @@ function (_super) {
|
|
|
64
64
|
return _this;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
FlashDealConfigTitle.prototype.render = function () {
|
|
68
68
|
var _this = this;
|
|
69
69
|
|
|
70
70
|
var panelProps = this.props.panelProps;
|
|
@@ -86,41 +86,50 @@ function (_super) {
|
|
|
86
86
|
headerSize: "middle",
|
|
87
87
|
onRefresh: this.reRender,
|
|
88
88
|
source: [{
|
|
89
|
-
key: '
|
|
89
|
+
key: 'iconConfig',
|
|
90
90
|
name: (0, _locale.i18n)('ICON'),
|
|
91
91
|
value: iconSetting,
|
|
92
92
|
metaOption: panelProps.icon
|
|
93
93
|
}, {
|
|
94
|
-
key: '
|
|
94
|
+
key: 'headlineConfig',
|
|
95
95
|
name: (0, _locale.i18n)('HEADLINE'),
|
|
96
96
|
value: /*#__PURE__*/_react["default"].createElement(_TextConfig["default"], {
|
|
97
97
|
data: panelProps.headline
|
|
98
98
|
}),
|
|
99
99
|
metaOption: panelProps.headline
|
|
100
100
|
}, {
|
|
101
|
-
key: '
|
|
101
|
+
key: 'buttonCOnfig',
|
|
102
102
|
name: (0, _locale.i18n)('BUTTON'),
|
|
103
103
|
value: /*#__PURE__*/_react["default"].createElement(_ButtonConfig["default"], {
|
|
104
104
|
data: panelProps.button
|
|
105
105
|
}),
|
|
106
106
|
metaOption: panelProps.button
|
|
107
|
+
}, {
|
|
108
|
+
key: 'countDownConfig',
|
|
109
|
+
name: (0, _locale.i18n)('COUNT_DOWN'),
|
|
110
|
+
value: null,
|
|
111
|
+
metaOption: panelProps === null || panelProps === void 0 ? void 0 : panelProps.countDown,
|
|
112
|
+
toggleType: 'switch'
|
|
107
113
|
}],
|
|
108
114
|
type: "switch"
|
|
109
115
|
}));
|
|
110
116
|
};
|
|
111
117
|
|
|
112
|
-
|
|
118
|
+
FlashDealConfigTitle.defaultProps = {
|
|
113
119
|
panelProps: {
|
|
114
120
|
icon: {
|
|
115
121
|
open: true,
|
|
116
122
|
url: ''
|
|
117
123
|
},
|
|
118
124
|
headline: {},
|
|
119
|
-
button: {}
|
|
125
|
+
button: {},
|
|
126
|
+
countDown: {
|
|
127
|
+
open: true
|
|
128
|
+
}
|
|
120
129
|
}
|
|
121
130
|
};
|
|
122
|
-
return
|
|
131
|
+
return FlashDealConfigTitle;
|
|
123
132
|
}(_react["default"].Component);
|
|
124
133
|
|
|
125
|
-
var _default =
|
|
134
|
+
var _default = FlashDealConfigTitle;
|
|
126
135
|
exports["default"] = _default;
|
|
@@ -11,8 +11,6 @@ var _FlashDealConfigTitle = _interopRequireDefault(require("./FlashDealConfigTit
|
|
|
11
11
|
|
|
12
12
|
var _FlashDealConfigContent = _interopRequireDefault(require("./FlashDealConfigContent"));
|
|
13
13
|
|
|
14
|
-
var _layout = _interopRequireDefault(require("./imgs/layout1.png"));
|
|
15
|
-
|
|
16
14
|
var _SpacingConfig = _interopRequireDefault(require("../../../common/config-panels/SpacingConfig"));
|
|
17
15
|
|
|
18
16
|
var _BackgroundConfig = _interopRequireDefault(require("../../../common/config-panels/BackgroundConfig"));
|
|
@@ -23,6 +21,8 @@ var _Collapse = _interopRequireDefault(require("../../../../common/Collapse"));
|
|
|
23
21
|
|
|
24
22
|
var _locale = require("../../../../locale");
|
|
25
23
|
|
|
24
|
+
var _layout = require("../../../../constants/layout");
|
|
25
|
+
|
|
26
26
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
27
27
|
|
|
28
28
|
function FlashDealConfig(props) {
|
|
@@ -55,11 +55,7 @@ function FlashDealConfig(props) {
|
|
|
55
55
|
value: /*#__PURE__*/_react["default"].createElement(_CustomizeConfig["default"], {
|
|
56
56
|
data: data.customize,
|
|
57
57
|
isHideAlign: true,
|
|
58
|
-
layoutSource:
|
|
59
|
-
id: 'layout1',
|
|
60
|
-
name: 'layout1',
|
|
61
|
-
image: _layout["default"]
|
|
62
|
-
}]
|
|
58
|
+
layoutSource: _layout.flashDealLayout
|
|
63
59
|
})
|
|
64
60
|
}, {
|
|
65
61
|
key: '5',
|
package/lib/constants/layout.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.videoPCLayout = exports.videoH5Layout = exports.searchLayout = exports.recommendLayoutPc = exports.recommendLayoutMobile = exports.pcNavigationLayout = exports.newsletterLayout = exports.mobileNavigationLayout = exports.locationLayout = exports.imageTextLayoutPc = exports.imageTextLayoutMobile = exports.imageGalleryLayout = exports.dividerLayout = exports.carouselLayout = exports.affiliateLayoutPc = exports.affiliateLayoutMobile = exports.WalletNuriLayout = exports.WalletLayout = void 0;
|
|
6
|
+
exports.videoPCLayout = exports.videoH5Layout = exports.searchLayout = exports.recommendLayoutPc = exports.recommendLayoutMobile = exports.pcNavigationLayout = exports.newsletterLayout = exports.mobileNavigationLayout = exports.locationLayout = exports.imageTextLayoutPc = exports.imageTextLayoutMobile = exports.imageGalleryLayout = exports.flashDealLayout = exports.dividerLayout = exports.carouselLayout = exports.bannerSlideLayout = exports.affiliateLayoutPc = exports.affiliateLayoutMobile = exports.WalletNuriLayout = exports.WalletLayout = void 0;
|
|
7
7
|
|
|
8
8
|
var _dividerLayout = _interopRequireDefault(require("../assets/images/layout-icon/dividerLayout.svg"));
|
|
9
9
|
|
|
@@ -81,6 +81,12 @@ var _layoutNavigationTile = _interopRequireDefault(require("../assets/images/lay
|
|
|
81
81
|
|
|
82
82
|
var _layoutNavigationNormal = _interopRequireDefault(require("../assets/images/layout-icon/layout-navigation-normal.png"));
|
|
83
83
|
|
|
84
|
+
var _bannerSlideLayout = _interopRequireDefault(require("../assets/images/layout-icon/banner-slide-layout1.png"));
|
|
85
|
+
|
|
86
|
+
var _bannerSlideLayout2 = _interopRequireDefault(require("../assets/images/layout-icon/banner-slide-layout2.png"));
|
|
87
|
+
|
|
88
|
+
var _flashDealLayout = _interopRequireDefault(require("../assets/images/layout-icon/flash-deal-layout1.png"));
|
|
89
|
+
|
|
84
90
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
85
91
|
|
|
86
92
|
// import p3 from '../assets/images/layout-icon/layout-imagetext-p3.png';
|
|
@@ -312,4 +318,24 @@ var pcNavigationLayout = [{
|
|
|
312
318
|
name: 'normal',
|
|
313
319
|
image: _layoutNavigationNormal["default"]
|
|
314
320
|
}];
|
|
315
|
-
exports.pcNavigationLayout = pcNavigationLayout;
|
|
321
|
+
exports.pcNavigationLayout = pcNavigationLayout;
|
|
322
|
+
var bannerSlideLayout = [{
|
|
323
|
+
id: 'layout1',
|
|
324
|
+
name: 'layout1',
|
|
325
|
+
image: _bannerSlideLayout["default"]
|
|
326
|
+
}, {
|
|
327
|
+
id: 'layout2',
|
|
328
|
+
name: 'layout2',
|
|
329
|
+
image: _bannerSlideLayout2["default"]
|
|
330
|
+
}];
|
|
331
|
+
exports.bannerSlideLayout = bannerSlideLayout;
|
|
332
|
+
var flashDealLayout = [{
|
|
333
|
+
id: 'layout1',
|
|
334
|
+
name: 'layout1',
|
|
335
|
+
image: _flashDealLayout["default"]
|
|
336
|
+
}, {
|
|
337
|
+
id: 'layout2',
|
|
338
|
+
name: 'layout2',
|
|
339
|
+
image: _layoutImagetextM4["default"]
|
|
340
|
+
}];
|
|
341
|
+
exports.flashDealLayout = flashDealLayout;
|
package/lib/locale/en/en.json
CHANGED
|
@@ -1,4 +1,91 @@
|
|
|
1
1
|
{
|
|
2
|
+
"MISSION_NAME": "Mission Name",
|
|
3
|
+
"COUNT_DOWN": "Count Down",
|
|
4
|
+
"SEARCH_BAR_PLACEHOLDER": "Search Bar Placeholder",
|
|
5
|
+
"INTER": "Inter",
|
|
6
|
+
"STORE_SERVICES": "Store services",
|
|
7
|
+
"SHIP_ON_TIME": "Ship on time",
|
|
8
|
+
"COMMODITY_QUALITY": "Commodity Quality",
|
|
9
|
+
"FOLLOWED": "Followed",
|
|
10
|
+
"VERIFIED": "Verified",
|
|
11
|
+
"RATING": "Rating",
|
|
12
|
+
"STORE_NAME": "Store Name",
|
|
13
|
+
"RATING_DETAILS": "Rating Details",
|
|
14
|
+
"FOLLOW_BUTTON": "Follow Button",
|
|
15
|
+
"IN_STORE_SEARCH_BOX": "In Store Search Box",
|
|
16
|
+
"THIS_PAGE_WILL": "This page will be published at {date}, If you need to edit it, please cancel the publishing later",
|
|
17
|
+
"PRODUCTS_IN_TOTAL": "{total} Products In Total",
|
|
18
|
+
"PLAY_ICON_COLOR": "Play Icon Color",
|
|
19
|
+
"PLAY_ICON_TYPE": "Play Icon Type",
|
|
20
|
+
"FILL_THE_PAGE": "Fill the page",
|
|
21
|
+
"VIDEO_SOUND": "Video Sound",
|
|
22
|
+
"PLAY_IN_LOOP": "Play in loop",
|
|
23
|
+
"PROGRESS_BAR": "Progress bar",
|
|
24
|
+
"PLAY_ICON_SIZE": "Play Icon Size",
|
|
25
|
+
"SOURCE_OF_ACTIVITY": "Source of Activity",
|
|
26
|
+
"WIDTH": "Width",
|
|
27
|
+
"PLAY_BUTTON_POSITION": "Play button position",
|
|
28
|
+
"PLAY_POSITION": "Play Position",
|
|
29
|
+
"START_VIDEO_AT": "Start video at",
|
|
30
|
+
"SELECT_VIDEO": "Select Video",
|
|
31
|
+
"PLAY_SPEED": "Play Speed",
|
|
32
|
+
"POSTER": "Poster",
|
|
33
|
+
"ADD_PAGE": "Add page",
|
|
34
|
+
"HOMEPAGE": "Homepage",
|
|
35
|
+
"WOMEN_S_HOME_PAGE": "Women's home page",
|
|
36
|
+
"EDIT_PAGE": "Edit Page",
|
|
37
|
+
"CANCEL_PUBLISH_LATER": "Cancel Publish Later",
|
|
38
|
+
"TO_REVIEW": "To Review",
|
|
39
|
+
"WHAT_WOULD_LIKE_TO_CREATE": "What would like to create?",
|
|
40
|
+
"PLEASE_SELECT_A_TIME_AFTER_30_MINUTES_AND_WITHIN_30_DAYS": "Please select a time after 30 minutes and within 30 days",
|
|
41
|
+
"BIG_NUMBERS_HAVE_BIG_EFFECTS": "Big numbers have big effects",
|
|
42
|
+
"PROPORTION": "Proportion",
|
|
43
|
+
"CUSTOMER_INTERESTS": "Customer interests",
|
|
44
|
+
"HISTORY": "History",
|
|
45
|
+
"DIRECT_FUNCTION": "Direct Function",
|
|
46
|
+
"OPEN_SANS": "Open Sans",
|
|
47
|
+
"MONTSERRAT": "Montserrat",
|
|
48
|
+
"DISCOUNT": "DISCOUNT",
|
|
49
|
+
"KHUSUS_PENGGUNA_BARU": "Khusus Pengguna Baru",
|
|
50
|
+
"MIDDLE": "Middle",
|
|
51
|
+
"BOTTOM_LEFT": "Bottom Left",
|
|
52
|
+
"POPUP": "Popup",
|
|
53
|
+
"PLAY_IN_BOX": "Play in Box",
|
|
54
|
+
"DISPLAY_LOCATION_ADDRESS": "Display Location Address",
|
|
55
|
+
"SUPPORT_FOR_A": "Support for a single or bulk upload. Strictly prohibit from uploading company data or other band files",
|
|
56
|
+
"CLICK_OR_DRAG": "Click or drag file to this area to upload",
|
|
57
|
+
"SHARE_URL": "Share Url",
|
|
58
|
+
"URL": "URL",
|
|
59
|
+
"CAMPAIGN_STATE": "Campaign State",
|
|
60
|
+
"CAMPAIGN_NAME": "Campaign Name",
|
|
61
|
+
"BRANDS": "Brands",
|
|
62
|
+
"SERVICE": "Service",
|
|
63
|
+
"RATINGS": "Ratings",
|
|
64
|
+
"STAR": "Star",
|
|
65
|
+
"APPLY": "Apply",
|
|
66
|
+
"SORT_BY": "Sort by",
|
|
67
|
+
"PROMOTION": "Promotion",
|
|
68
|
+
"HIGHEST_RATED": "Highest rated",
|
|
69
|
+
"MOST_SOLD": "Most sold",
|
|
70
|
+
"LOWEST_PRICE": "Lowest price",
|
|
71
|
+
"EARLIEST": "Earliest",
|
|
72
|
+
"BUY_NOW": "Buy Now",
|
|
73
|
+
"TOTAL": "Total",
|
|
74
|
+
"RECENTLY": "Recently",
|
|
75
|
+
"COUPON": "Coupon",
|
|
76
|
+
"HEADER_IMAGE": "Header Image",
|
|
77
|
+
"ACTIVITY_LABEL": "Activity Label",
|
|
78
|
+
"STOCK": "Stock",
|
|
79
|
+
"DISCOUNT_LABEL": "Discount Label",
|
|
80
|
+
"SESSION_TIME": "Session Time",
|
|
81
|
+
"NUMBER": "Number",
|
|
82
|
+
"COUNTDOWN": "Countdown",
|
|
83
|
+
"FILTER": "Filter",
|
|
84
|
+
"SOLD": "Sold",
|
|
85
|
+
"EVALUATION_SCORE": "Evaluation Score",
|
|
86
|
+
"SEARCH_BAR_KEYWORD": "Search Bar Keyword",
|
|
87
|
+
"BOX_BACKGROUND": "Box Background",
|
|
88
|
+
"BOX_COLOR": "Box Color",
|
|
2
89
|
"PROGRESS_BAR_COLOR": "Progress Bar Color",
|
|
3
90
|
"GROUP_LABEL": "Group Label",
|
|
4
91
|
"SUBMIT": "Submit",
|
package/lib/locale/es/es.json
CHANGED
|
@@ -1,4 +1,91 @@
|
|
|
1
1
|
{
|
|
2
|
+
"MISSION_NAME": "Mission Name",
|
|
3
|
+
"COUNT_DOWN": "Count Down",
|
|
4
|
+
"SEARCH_BAR_PLACEHOLDER": "Search Bar Placeholder",
|
|
5
|
+
"INTER": "Inter",
|
|
6
|
+
"STORE_SERVICES": "Store services",
|
|
7
|
+
"SHIP_ON_TIME": "Ship on time",
|
|
8
|
+
"COMMODITY_QUALITY": "Commodity Quality",
|
|
9
|
+
"FOLLOWED": "Followed",
|
|
10
|
+
"VERIFIED": "Verified",
|
|
11
|
+
"RATING": "Rating",
|
|
12
|
+
"STORE_NAME": "Store Name",
|
|
13
|
+
"RATING_DETAILS": "Rating Details",
|
|
14
|
+
"FOLLOW_BUTTON": "Follow Button",
|
|
15
|
+
"IN_STORE_SEARCH_BOX": "In Store Search Box",
|
|
16
|
+
"THIS_PAGE_WILL": "This page will be published at {date}, If you need to edit it, please cancel the publishing later",
|
|
17
|
+
"PRODUCTS_IN_TOTAL": "{total} Products In Total",
|
|
18
|
+
"PLAY_ICON_COLOR": "Play Icon Color",
|
|
19
|
+
"PLAY_ICON_TYPE": "Play Icon Type",
|
|
20
|
+
"FILL_THE_PAGE": "Fill the page",
|
|
21
|
+
"VIDEO_SOUND": "Video Sound",
|
|
22
|
+
"PLAY_IN_LOOP": "Play in loop",
|
|
23
|
+
"PROGRESS_BAR": "Progress bar",
|
|
24
|
+
"PLAY_ICON_SIZE": "Play Icon Size",
|
|
25
|
+
"SOURCE_OF_ACTIVITY": "Source of Activity",
|
|
26
|
+
"WIDTH": "Width",
|
|
27
|
+
"PLAY_BUTTON_POSITION": "Play button position",
|
|
28
|
+
"PLAY_POSITION": "Play Position",
|
|
29
|
+
"START_VIDEO_AT": "Start video at",
|
|
30
|
+
"SELECT_VIDEO": "Select Video",
|
|
31
|
+
"PLAY_SPEED": "Play Speed",
|
|
32
|
+
"POSTER": "Poster",
|
|
33
|
+
"ADD_PAGE": "Add page",
|
|
34
|
+
"HOMEPAGE": "Homepage",
|
|
35
|
+
"WOMEN_S_HOME_PAGE": "Women's home page",
|
|
36
|
+
"EDIT_PAGE": "Edit Page",
|
|
37
|
+
"CANCEL_PUBLISH_LATER": "Cancel Publish Later",
|
|
38
|
+
"TO_REVIEW": "To Review",
|
|
39
|
+
"WHAT_WOULD_LIKE_TO_CREATE": "What would like to create?",
|
|
40
|
+
"PLEASE_SELECT_A_TIME_AFTER_30_MINUTES_AND_WITHIN_30_DAYS": "Please select a time after 30 minutes and within 30 days",
|
|
41
|
+
"BIG_NUMBERS_HAVE_BIG_EFFECTS": "Big numbers have big effects",
|
|
42
|
+
"PROPORTION": "Proportion",
|
|
43
|
+
"CUSTOMER_INTERESTS": "Customer interests",
|
|
44
|
+
"HISTORY": "History",
|
|
45
|
+
"DIRECT_FUNCTION": "Direct Function",
|
|
46
|
+
"OPEN_SANS": "Open Sans",
|
|
47
|
+
"MONTSERRAT": "Montserrat",
|
|
48
|
+
"DISCOUNT": "DISCOUNT",
|
|
49
|
+
"KHUSUS_PENGGUNA_BARU": "Khusus Pengguna Baru",
|
|
50
|
+
"MIDDLE": "Middle",
|
|
51
|
+
"BOTTOM_LEFT": "Bottom Left",
|
|
52
|
+
"POPUP": "Popup",
|
|
53
|
+
"PLAY_IN_BOX": "Play in Box",
|
|
54
|
+
"DISPLAY_LOCATION_ADDRESS": "Display Location Address",
|
|
55
|
+
"SUPPORT_FOR_A": "Support for a single or bulk upload. Strictly prohibit from uploading company data or other band files",
|
|
56
|
+
"CLICK_OR_DRAG": "Click or drag file to this area to upload",
|
|
57
|
+
"SHARE_URL": "Share Url",
|
|
58
|
+
"URL": "URL",
|
|
59
|
+
"CAMPAIGN_STATE": "Campaign State",
|
|
60
|
+
"CAMPAIGN_NAME": "Campaign Name",
|
|
61
|
+
"BRANDS": "Brands",
|
|
62
|
+
"SERVICE": "Service",
|
|
63
|
+
"RATINGS": "Ratings",
|
|
64
|
+
"STAR": "Star",
|
|
65
|
+
"APPLY": "Apply",
|
|
66
|
+
"SORT_BY": "Sort by",
|
|
67
|
+
"PROMOTION": "Promotion",
|
|
68
|
+
"HIGHEST_RATED": "Highest rated",
|
|
69
|
+
"MOST_SOLD": "Most sold",
|
|
70
|
+
"LOWEST_PRICE": "Lowest price",
|
|
71
|
+
"EARLIEST": "Earliest",
|
|
72
|
+
"BUY_NOW": "Buy Now",
|
|
73
|
+
"TOTAL": "Total",
|
|
74
|
+
"RECENTLY": "Recently",
|
|
75
|
+
"COUPON": "Coupon",
|
|
76
|
+
"HEADER_IMAGE": "Header Image",
|
|
77
|
+
"ACTIVITY_LABEL": "Activity Label",
|
|
78
|
+
"STOCK": "Stock",
|
|
79
|
+
"DISCOUNT_LABEL": "Discount Label",
|
|
80
|
+
"SESSION_TIME": "Session Time",
|
|
81
|
+
"NUMBER": "Number",
|
|
82
|
+
"COUNTDOWN": "Countdown",
|
|
83
|
+
"FILTER": "Filter",
|
|
84
|
+
"SOLD": "Sold",
|
|
85
|
+
"EVALUATION_SCORE": "Evaluation Score",
|
|
86
|
+
"SEARCH_BAR_KEYWORD": "Search Bar Keyword",
|
|
87
|
+
"BOX_BACKGROUND": "Box Background",
|
|
88
|
+
"BOX_COLOR": "Box Color",
|
|
2
89
|
"PROGRESS_BAR_COLOR": "Progress Bar Color",
|
|
3
90
|
"GROUP_LABEL": "Group Label",
|
|
4
91
|
"SUBMIT": "Submit",
|
package/lib/locale/id/id.json
CHANGED
|
@@ -1,4 +1,91 @@
|
|
|
1
1
|
{
|
|
2
|
+
"MISSION_NAME": "Mission Name",
|
|
3
|
+
"COUNT_DOWN": "Count Down",
|
|
4
|
+
"SEARCH_BAR_PLACEHOLDER": "Search Bar Placeholder",
|
|
5
|
+
"INTER": "Inter",
|
|
6
|
+
"STORE_SERVICES": "Store services",
|
|
7
|
+
"SHIP_ON_TIME": "Ship on time",
|
|
8
|
+
"COMMODITY_QUALITY": "Commodity Quality",
|
|
9
|
+
"FOLLOWED": "Followed",
|
|
10
|
+
"VERIFIED": "Verified",
|
|
11
|
+
"RATING": "Rating",
|
|
12
|
+
"STORE_NAME": "Store Name",
|
|
13
|
+
"RATING_DETAILS": "Rating Details",
|
|
14
|
+
"FOLLOW_BUTTON": "Follow Button",
|
|
15
|
+
"IN_STORE_SEARCH_BOX": "In Store Search Box",
|
|
16
|
+
"THIS_PAGE_WILL": "This page will be published at {date}, If you need to edit it, please cancel the publishing later",
|
|
17
|
+
"PRODUCTS_IN_TOTAL": "{total} Products In Total",
|
|
18
|
+
"PLAY_ICON_COLOR": "Play Icon Color",
|
|
19
|
+
"PLAY_ICON_TYPE": "Play Icon Type",
|
|
20
|
+
"FILL_THE_PAGE": "Fill the page",
|
|
21
|
+
"VIDEO_SOUND": "Video Sound",
|
|
22
|
+
"PLAY_IN_LOOP": "Play in loop",
|
|
23
|
+
"PROGRESS_BAR": "Progress bar",
|
|
24
|
+
"PLAY_ICON_SIZE": "Play Icon Size",
|
|
25
|
+
"SOURCE_OF_ACTIVITY": "Source of Activity",
|
|
26
|
+
"WIDTH": "Width",
|
|
27
|
+
"PLAY_BUTTON_POSITION": "Play button position",
|
|
28
|
+
"PLAY_POSITION": "Play Position",
|
|
29
|
+
"START_VIDEO_AT": "Start video at",
|
|
30
|
+
"SELECT_VIDEO": "Select Video",
|
|
31
|
+
"PLAY_SPEED": "Play Speed",
|
|
32
|
+
"POSTER": "Poster",
|
|
33
|
+
"ADD_PAGE": "Add page",
|
|
34
|
+
"HOMEPAGE": "Homepage",
|
|
35
|
+
"WOMEN_S_HOME_PAGE": "Women's home page",
|
|
36
|
+
"EDIT_PAGE": "Edit Page",
|
|
37
|
+
"CANCEL_PUBLISH_LATER": "Cancel Publish Later",
|
|
38
|
+
"TO_REVIEW": "To Review",
|
|
39
|
+
"WHAT_WOULD_LIKE_TO_CREATE": "What would like to create?",
|
|
40
|
+
"PLEASE_SELECT_A_TIME_AFTER_30_MINUTES_AND_WITHIN_30_DAYS": "Please select a time after 30 minutes and within 30 days",
|
|
41
|
+
"BIG_NUMBERS_HAVE_BIG_EFFECTS": "Big numbers have big effects",
|
|
42
|
+
"PROPORTION": "Proportion",
|
|
43
|
+
"CUSTOMER_INTERESTS": "Customer interests",
|
|
44
|
+
"HISTORY": "History",
|
|
45
|
+
"DIRECT_FUNCTION": "Direct Function",
|
|
46
|
+
"OPEN_SANS": "Open Sans",
|
|
47
|
+
"MONTSERRAT": "Montserrat",
|
|
48
|
+
"DISCOUNT": "DISCOUNT",
|
|
49
|
+
"KHUSUS_PENGGUNA_BARU": "Khusus Pengguna Baru",
|
|
50
|
+
"MIDDLE": "Middle",
|
|
51
|
+
"BOTTOM_LEFT": "Bottom Left",
|
|
52
|
+
"POPUP": "Popup",
|
|
53
|
+
"PLAY_IN_BOX": "Play in Box",
|
|
54
|
+
"DISPLAY_LOCATION_ADDRESS": "Display Location Address",
|
|
55
|
+
"SUPPORT_FOR_A": "Support for a single or bulk upload. Strictly prohibit from uploading company data or other band files",
|
|
56
|
+
"CLICK_OR_DRAG": "Click or drag file to this area to upload",
|
|
57
|
+
"SHARE_URL": "Share Url",
|
|
58
|
+
"URL": "URL",
|
|
59
|
+
"CAMPAIGN_STATE": "Campaign State",
|
|
60
|
+
"CAMPAIGN_NAME": "Campaign Name",
|
|
61
|
+
"BRANDS": "Brands",
|
|
62
|
+
"SERVICE": "Service",
|
|
63
|
+
"RATINGS": "Ratings",
|
|
64
|
+
"STAR": "Star",
|
|
65
|
+
"APPLY": "Apply",
|
|
66
|
+
"SORT_BY": "Sort by",
|
|
67
|
+
"PROMOTION": "Promotion",
|
|
68
|
+
"HIGHEST_RATED": "Highest rated",
|
|
69
|
+
"MOST_SOLD": "Most sold",
|
|
70
|
+
"LOWEST_PRICE": "Lowest price",
|
|
71
|
+
"EARLIEST": "Earliest",
|
|
72
|
+
"BUY_NOW": "Buy Now",
|
|
73
|
+
"TOTAL": "Total",
|
|
74
|
+
"RECENTLY": "Recently",
|
|
75
|
+
"COUPON": "Coupon",
|
|
76
|
+
"HEADER_IMAGE": "Header Image",
|
|
77
|
+
"ACTIVITY_LABEL": "Activity Label",
|
|
78
|
+
"STOCK": "Stock",
|
|
79
|
+
"DISCOUNT_LABEL": "Discount Label",
|
|
80
|
+
"SESSION_TIME": "Session Time",
|
|
81
|
+
"NUMBER": "Number",
|
|
82
|
+
"COUNTDOWN": "Countdown",
|
|
83
|
+
"FILTER": "Filter",
|
|
84
|
+
"SOLD": "Sold",
|
|
85
|
+
"EVALUATION_SCORE": "Evaluation Score",
|
|
86
|
+
"SEARCH_BAR_KEYWORD": "Search Bar Keyword",
|
|
87
|
+
"BOX_BACKGROUND": "Box Background",
|
|
88
|
+
"BOX_COLOR": "Box Color",
|
|
2
89
|
"PROGRESS_BAR_COLOR": "Progress Bar Color",
|
|
3
90
|
"GROUP_LABEL": "Group Label",
|
|
4
91
|
"SUBMIT": "Submit",
|