@micromag/intl 0.3.312 → 0.3.320
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/index.js +9 -19
- package/lib/index.js +9 -19
- package/locale/en.cjs.js +52 -29
- package/locale/en.js +52 -29
- package/locale/en.json +60 -30
- package/locale/fr.cjs.js +55 -36
- package/locale/fr.js +55 -36
- package/locale/fr.json +61 -37
- package/package.json +3 -3
package/es/index.js
CHANGED
|
@@ -9,10 +9,8 @@ import { IntlContext, IntlProvider as IntlProvider$1 } from 'react-intl';
|
|
|
9
9
|
var IntlManager = /*#__PURE__*/function () {
|
|
10
10
|
function IntlManager() {
|
|
11
11
|
_classCallCheck(this, IntlManager);
|
|
12
|
-
|
|
13
12
|
this.locales = [];
|
|
14
13
|
}
|
|
15
|
-
|
|
16
14
|
_createClass(IntlManager, [{
|
|
17
15
|
key: "addLocale",
|
|
18
16
|
value: function addLocale(locale, messages) {
|
|
@@ -43,15 +41,12 @@ var IntlManager = /*#__PURE__*/function () {
|
|
|
43
41
|
var localeObj = this.locales.find(function (it) {
|
|
44
42
|
return it.locale === locale;
|
|
45
43
|
}) || null;
|
|
46
|
-
|
|
47
44
|
if (localeObj === null) {
|
|
48
45
|
return null;
|
|
49
46
|
}
|
|
50
|
-
|
|
51
47
|
return localeObj.messages;
|
|
52
48
|
}
|
|
53
49
|
}]);
|
|
54
|
-
|
|
55
50
|
return IntlManager;
|
|
56
51
|
}();
|
|
57
52
|
|
|
@@ -64,10 +59,8 @@ var useLocales = function useLocales() {
|
|
|
64
59
|
};
|
|
65
60
|
var useOtherLocales = function useOtherLocales() {
|
|
66
61
|
var locales = useLocales();
|
|
67
|
-
|
|
68
62
|
var _useContext = useContext(IntlContext),
|
|
69
|
-
|
|
70
|
-
|
|
63
|
+
locale = _useContext.locale;
|
|
71
64
|
var otherLocales = useMemo(function () {
|
|
72
65
|
return locales.filter(function (it) {
|
|
73
66
|
return it !== locale;
|
|
@@ -91,21 +84,18 @@ var defaultProps = {
|
|
|
91
84
|
};
|
|
92
85
|
var IntlProvider = function IntlProvider(_ref) {
|
|
93
86
|
var intlManager = _ref.intlManager,
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
87
|
+
locale = _ref.locale,
|
|
88
|
+
locales = _ref.locales,
|
|
89
|
+
children = _ref.children,
|
|
90
|
+
extraMessages = _ref.extraMessages;
|
|
98
91
|
var previousLocales = useLocales();
|
|
99
|
-
|
|
100
92
|
var _ref2 = useContext(IntlContext) || {},
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
93
|
+
_ref2$locale = _ref2.locale,
|
|
94
|
+
previousLocale = _ref2$locale === void 0 ? null : _ref2$locale,
|
|
95
|
+
_ref2$messages = _ref2.messages,
|
|
96
|
+
previousMessages = _ref2$messages === void 0 ? null : _ref2$messages;
|
|
106
97
|
var messages = useMemo(function () {
|
|
107
98
|
var currentMessages = intlManager.getMessages(locale);
|
|
108
|
-
|
|
109
99
|
return _objectSpread(_objectSpread(_objectSpread({}, currentMessages), extraMessages), previousLocale === locale ? previousMessages : null);
|
|
110
100
|
}, [locale, previousLocale, previousMessages, extraMessages]);
|
|
111
101
|
return /*#__PURE__*/React.createElement(IntlProvider$1, {
|
package/lib/index.js
CHANGED
|
@@ -22,10 +22,8 @@ var PropTypes__default = /*#__PURE__*/_interopDefaultLegacy(PropTypes);
|
|
|
22
22
|
var IntlManager = /*#__PURE__*/function () {
|
|
23
23
|
function IntlManager() {
|
|
24
24
|
_classCallCheck__default["default"](this, IntlManager);
|
|
25
|
-
|
|
26
25
|
this.locales = [];
|
|
27
26
|
}
|
|
28
|
-
|
|
29
27
|
_createClass__default["default"](IntlManager, [{
|
|
30
28
|
key: "addLocale",
|
|
31
29
|
value: function addLocale(locale, messages) {
|
|
@@ -56,15 +54,12 @@ var IntlManager = /*#__PURE__*/function () {
|
|
|
56
54
|
var localeObj = this.locales.find(function (it) {
|
|
57
55
|
return it.locale === locale;
|
|
58
56
|
}) || null;
|
|
59
|
-
|
|
60
57
|
if (localeObj === null) {
|
|
61
58
|
return null;
|
|
62
59
|
}
|
|
63
|
-
|
|
64
60
|
return localeObj.messages;
|
|
65
61
|
}
|
|
66
62
|
}]);
|
|
67
|
-
|
|
68
63
|
return IntlManager;
|
|
69
64
|
}();
|
|
70
65
|
|
|
@@ -77,10 +72,8 @@ var useLocales = function useLocales() {
|
|
|
77
72
|
};
|
|
78
73
|
var useOtherLocales = function useOtherLocales() {
|
|
79
74
|
var locales = useLocales();
|
|
80
|
-
|
|
81
75
|
var _useContext = React.useContext(reactIntl.IntlContext),
|
|
82
|
-
|
|
83
|
-
|
|
76
|
+
locale = _useContext.locale;
|
|
84
77
|
var otherLocales = React.useMemo(function () {
|
|
85
78
|
return locales.filter(function (it) {
|
|
86
79
|
return it !== locale;
|
|
@@ -104,21 +97,18 @@ var defaultProps = {
|
|
|
104
97
|
};
|
|
105
98
|
var IntlProvider = function IntlProvider(_ref) {
|
|
106
99
|
var intlManager = _ref.intlManager,
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
100
|
+
locale = _ref.locale,
|
|
101
|
+
locales = _ref.locales,
|
|
102
|
+
children = _ref.children,
|
|
103
|
+
extraMessages = _ref.extraMessages;
|
|
111
104
|
var previousLocales = useLocales();
|
|
112
|
-
|
|
113
105
|
var _ref2 = React.useContext(reactIntl.IntlContext) || {},
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
106
|
+
_ref2$locale = _ref2.locale,
|
|
107
|
+
previousLocale = _ref2$locale === void 0 ? null : _ref2$locale,
|
|
108
|
+
_ref2$messages = _ref2.messages,
|
|
109
|
+
previousMessages = _ref2$messages === void 0 ? null : _ref2$messages;
|
|
119
110
|
var messages = React.useMemo(function () {
|
|
120
111
|
var currentMessages = intlManager.getMessages(locale);
|
|
121
|
-
|
|
122
112
|
return _objectSpread__default["default"](_objectSpread__default["default"](_objectSpread__default["default"]({}, currentMessages), extraMessages), previousLocale === locale ? previousMessages : null);
|
|
123
113
|
}, [locale, previousLocale, previousMessages, extraMessages]);
|
|
124
114
|
return /*#__PURE__*/React__default["default"].createElement(reactIntl.IntlProvider, {
|
package/locale/en.cjs.js
CHANGED
|
@@ -34,9 +34,9 @@ var AV6gfh = [{
|
|
|
34
34
|
type: 0,
|
|
35
35
|
value: "Edit call to action..."
|
|
36
36
|
}];
|
|
37
|
-
var
|
|
37
|
+
var BAfC6s = [{
|
|
38
38
|
type: 0,
|
|
39
|
-
value: "
|
|
39
|
+
value: "Upload a closed captions file"
|
|
40
40
|
}];
|
|
41
41
|
var BSTWf8 = [{
|
|
42
42
|
type: 0,
|
|
@@ -134,9 +134,9 @@ var F59wsl = [{
|
|
|
134
134
|
type: 0,
|
|
135
135
|
value: "Urbania horoscope"
|
|
136
136
|
}];
|
|
137
|
-
var
|
|
137
|
+
var FFBsfJ = [{
|
|
138
138
|
type: 0,
|
|
139
|
-
value: "
|
|
139
|
+
value: "Search medias..."
|
|
140
140
|
}];
|
|
141
141
|
var FKOWH0 = [{
|
|
142
142
|
type: 0,
|
|
@@ -202,6 +202,10 @@ var ICXTfR = [{
|
|
|
202
202
|
type: 0,
|
|
203
203
|
value: "Links"
|
|
204
204
|
}];
|
|
205
|
+
var ItuhfW = [{
|
|
206
|
+
type: 0,
|
|
207
|
+
value: "Right answer"
|
|
208
|
+
}];
|
|
205
209
|
var J9e9Qb = [{
|
|
206
210
|
type: 0,
|
|
207
211
|
value: "Video"
|
|
@@ -242,10 +246,22 @@ var KHWeV7 = [{
|
|
|
242
246
|
type: 0,
|
|
243
247
|
value: "Answers"
|
|
244
248
|
}];
|
|
249
|
+
var KK5teQ = [{
|
|
250
|
+
type: 0,
|
|
251
|
+
value: "Upload a visual file"
|
|
252
|
+
}];
|
|
253
|
+
var KdAKt7 = [{
|
|
254
|
+
type: 0,
|
|
255
|
+
value: "Upload an image file"
|
|
256
|
+
}];
|
|
245
257
|
var KuzZbb = [{
|
|
246
258
|
type: 0,
|
|
247
259
|
value: "Background color"
|
|
248
260
|
}];
|
|
261
|
+
var LFziCV = [{
|
|
262
|
+
type: 0,
|
|
263
|
+
value: "Without right/wrong icon"
|
|
264
|
+
}];
|
|
249
265
|
var LI0Gz4 = [{
|
|
250
266
|
type: 0,
|
|
251
267
|
value: "Email"
|
|
@@ -441,10 +457,6 @@ var VMd1oG = [{
|
|
|
441
457
|
type: 0,
|
|
442
458
|
value: "Questions"
|
|
443
459
|
}];
|
|
444
|
-
var VspZp9 = [{
|
|
445
|
-
type: 0,
|
|
446
|
-
value: "Upload an image"
|
|
447
|
-
}];
|
|
448
460
|
var W5qWPj = [{
|
|
449
461
|
type: 0,
|
|
450
462
|
value: "Center"
|
|
@@ -457,6 +469,10 @@ var Wb5zY4 = [{
|
|
|
457
469
|
type: 0,
|
|
458
470
|
value: "Select a font file..."
|
|
459
471
|
}];
|
|
472
|
+
var WeD4nB = [{
|
|
473
|
+
type: 0,
|
|
474
|
+
value: "Upload a video file"
|
|
475
|
+
}];
|
|
460
476
|
var WlNxMj = [{
|
|
461
477
|
type: 0,
|
|
462
478
|
value: "Repeat"
|
|
@@ -525,10 +541,6 @@ var ZLDmja = [{
|
|
|
525
541
|
type: 0,
|
|
526
542
|
value: "Submit"
|
|
527
543
|
}];
|
|
528
|
-
var ZMS1Wv = [{
|
|
529
|
-
type: 0,
|
|
530
|
-
value: "Text"
|
|
531
|
-
}];
|
|
532
544
|
var Zbu5Uk = [{
|
|
533
545
|
type: 0,
|
|
534
546
|
value: "Label"
|
|
@@ -741,10 +753,6 @@ var gRxcTc = [{
|
|
|
741
753
|
type: 0,
|
|
742
754
|
value: "Delete screen"
|
|
743
755
|
}];
|
|
744
|
-
var gprXiG = [{
|
|
745
|
-
type: 0,
|
|
746
|
-
value: "Search..."
|
|
747
|
-
}];
|
|
748
756
|
var hVE7TA = [{
|
|
749
757
|
type: 0,
|
|
750
758
|
value: "Question"
|
|
@@ -777,6 +785,10 @@ var iL9RLu = [{
|
|
|
777
785
|
type: 0,
|
|
778
786
|
value: "Collaborator"
|
|
779
787
|
}];
|
|
788
|
+
var iQ5Uf7 = [{
|
|
789
|
+
type: 0,
|
|
790
|
+
value: "Default feedback"
|
|
791
|
+
}];
|
|
780
792
|
var iipV5Q = [{
|
|
781
793
|
type: 0,
|
|
782
794
|
value: "Type"
|
|
@@ -1361,6 +1373,10 @@ var messages = {
|
|
|
1361
1373
|
type: 0,
|
|
1362
1374
|
value: "Timeline with images"
|
|
1363
1375
|
}],
|
|
1376
|
+
"3Ap0C1": [{
|
|
1377
|
+
type: 0,
|
|
1378
|
+
value: "Upload a media"
|
|
1379
|
+
}],
|
|
1364
1380
|
"3B9cb3": [{
|
|
1365
1381
|
type: 0,
|
|
1366
1382
|
value: "Whatsapp"
|
|
@@ -1373,10 +1389,6 @@ var messages = {
|
|
|
1373
1389
|
type: 0,
|
|
1374
1390
|
value: "Angle"
|
|
1375
1391
|
}],
|
|
1376
|
-
"3NghmM": [{
|
|
1377
|
-
type: 0,
|
|
1378
|
-
value: "Good answer"
|
|
1379
|
-
}],
|
|
1380
1392
|
"3OS3Ms": [{
|
|
1381
1393
|
type: 0,
|
|
1382
1394
|
value: "Legend"
|
|
@@ -1489,6 +1501,10 @@ var messages = {
|
|
|
1489
1501
|
type: 0,
|
|
1490
1502
|
value: "Result style"
|
|
1491
1503
|
}],
|
|
1504
|
+
"6W4St0": [{
|
|
1505
|
+
type: 0,
|
|
1506
|
+
value: "Upload an audio file"
|
|
1507
|
+
}],
|
|
1492
1508
|
"6ak5YN": [{
|
|
1493
1509
|
type: 0,
|
|
1494
1510
|
value: "Side"
|
|
@@ -1608,7 +1624,7 @@ var messages = {
|
|
|
1608
1624
|
type: 0,
|
|
1609
1625
|
value: "Select an image..."
|
|
1610
1626
|
}],
|
|
1611
|
-
|
|
1627
|
+
BAfC6s: BAfC6s,
|
|
1612
1628
|
BSTWf8: BSTWf8,
|
|
1613
1629
|
BgrRxZ: BgrRxZ,
|
|
1614
1630
|
BnRW4y: BnRW4y,
|
|
@@ -1641,7 +1657,7 @@ var messages = {
|
|
|
1641
1657
|
value: "Loop"
|
|
1642
1658
|
}],
|
|
1643
1659
|
F59wsl: F59wsl,
|
|
1644
|
-
|
|
1660
|
+
FFBsfJ: FFBsfJ,
|
|
1645
1661
|
FKOWH0: FKOWH0,
|
|
1646
1662
|
FOmgqv: FOmgqv,
|
|
1647
1663
|
FjuRaw: FjuRaw,
|
|
@@ -1674,6 +1690,7 @@ var messages = {
|
|
|
1674
1690
|
type: 0,
|
|
1675
1691
|
value: "Heading"
|
|
1676
1692
|
}],
|
|
1693
|
+
ItuhfW: ItuhfW,
|
|
1677
1694
|
J9e9Qb: J9e9Qb,
|
|
1678
1695
|
JAguka: JAguka,
|
|
1679
1696
|
JC9Qlf: JC9Qlf,
|
|
@@ -1684,7 +1701,10 @@ var messages = {
|
|
|
1684
1701
|
KB7N5E: KB7N5E,
|
|
1685
1702
|
KCDOHI: KCDOHI,
|
|
1686
1703
|
KHWeV7: KHWeV7,
|
|
1704
|
+
KK5teQ: KK5teQ,
|
|
1705
|
+
KdAKt7: KdAKt7,
|
|
1687
1706
|
KuzZbb: KuzZbb,
|
|
1707
|
+
LFziCV: LFziCV,
|
|
1688
1708
|
LI0Gz4: LI0Gz4,
|
|
1689
1709
|
LOknw0: LOknw0,
|
|
1690
1710
|
LkVfwW: LkVfwW,
|
|
@@ -1693,6 +1713,10 @@ var messages = {
|
|
|
1693
1713
|
value: "Add a button"
|
|
1694
1714
|
}],
|
|
1695
1715
|
Lrwi2G: Lrwi2G,
|
|
1716
|
+
"Lz2+Ws": [{
|
|
1717
|
+
type: 0,
|
|
1718
|
+
value: "Answer feedback"
|
|
1719
|
+
}],
|
|
1696
1720
|
"M/FGRs": [{
|
|
1697
1721
|
type: 0,
|
|
1698
1722
|
value: "Libra"
|
|
@@ -1785,14 +1809,10 @@ var messages = {
|
|
|
1785
1809
|
}],
|
|
1786
1810
|
VDu2FA: VDu2FA,
|
|
1787
1811
|
VMd1oG: VMd1oG,
|
|
1788
|
-
VspZp9: VspZp9,
|
|
1789
1812
|
W5qWPj: W5qWPj,
|
|
1790
1813
|
WY14Zu: WY14Zu,
|
|
1791
1814
|
Wb5zY4: Wb5zY4,
|
|
1792
|
-
|
|
1793
|
-
type: 0,
|
|
1794
|
-
value: "Without true/false"
|
|
1795
|
-
}],
|
|
1815
|
+
WeD4nB: WeD4nB,
|
|
1796
1816
|
WlNxMj: WlNxMj,
|
|
1797
1817
|
Wr9olU: Wr9olU,
|
|
1798
1818
|
X7kRRa: X7kRRa,
|
|
@@ -1818,7 +1838,6 @@ var messages = {
|
|
|
1818
1838
|
Z5jrDS: Z5jrDS,
|
|
1819
1839
|
ZCe0r4: ZCe0r4,
|
|
1820
1840
|
ZLDmja: ZLDmja,
|
|
1821
|
-
ZMS1Wv: ZMS1Wv,
|
|
1822
1841
|
Zbu5Uk: Zbu5Uk,
|
|
1823
1842
|
ZeosMy: ZeosMy,
|
|
1824
1843
|
ZiWlL6: ZiWlL6,
|
|
@@ -1897,7 +1916,6 @@ var messages = {
|
|
|
1897
1916
|
g2CRt5: g2CRt5,
|
|
1898
1917
|
g6b9Lg: g6b9Lg,
|
|
1899
1918
|
gRxcTc: gRxcTc,
|
|
1900
|
-
gprXiG: gprXiG,
|
|
1901
1919
|
"gwPu/I": [{
|
|
1902
1920
|
type: 0,
|
|
1903
1921
|
value: "Buttons text"
|
|
@@ -1914,6 +1932,7 @@ var messages = {
|
|
|
1914
1932
|
i6bmbD: i6bmbD,
|
|
1915
1933
|
iHV3W3: iHV3W3,
|
|
1916
1934
|
iL9RLu: iL9RLu,
|
|
1935
|
+
iQ5Uf7: iQ5Uf7,
|
|
1917
1936
|
iipV5Q: iipV5Q,
|
|
1918
1937
|
irG6mX: irG6mX,
|
|
1919
1938
|
jEK6B8: jEK6B8,
|
|
@@ -1975,6 +1994,10 @@ var messages = {
|
|
|
1975
1994
|
nXVNeg: nXVNeg,
|
|
1976
1995
|
nc8LF0: nc8LF0,
|
|
1977
1996
|
nno1Pq: nno1Pq,
|
|
1997
|
+
"o3R+FM": [{
|
|
1998
|
+
type: 0,
|
|
1999
|
+
value: "Select a closed captions file..."
|
|
2000
|
+
}],
|
|
1978
2001
|
oAtOlP: oAtOlP,
|
|
1979
2002
|
oCBQKV: oCBQKV,
|
|
1980
2003
|
oLtEu6: oLtEu6,
|
package/locale/en.js
CHANGED
|
@@ -28,9 +28,9 @@ var AV6gfh = [{
|
|
|
28
28
|
type: 0,
|
|
29
29
|
value: "Edit call to action..."
|
|
30
30
|
}];
|
|
31
|
-
var
|
|
31
|
+
var BAfC6s = [{
|
|
32
32
|
type: 0,
|
|
33
|
-
value: "
|
|
33
|
+
value: "Upload a closed captions file"
|
|
34
34
|
}];
|
|
35
35
|
var BSTWf8 = [{
|
|
36
36
|
type: 0,
|
|
@@ -128,9 +128,9 @@ var F59wsl = [{
|
|
|
128
128
|
type: 0,
|
|
129
129
|
value: "Urbania horoscope"
|
|
130
130
|
}];
|
|
131
|
-
var
|
|
131
|
+
var FFBsfJ = [{
|
|
132
132
|
type: 0,
|
|
133
|
-
value: "
|
|
133
|
+
value: "Search medias..."
|
|
134
134
|
}];
|
|
135
135
|
var FKOWH0 = [{
|
|
136
136
|
type: 0,
|
|
@@ -196,6 +196,10 @@ var ICXTfR = [{
|
|
|
196
196
|
type: 0,
|
|
197
197
|
value: "Links"
|
|
198
198
|
}];
|
|
199
|
+
var ItuhfW = [{
|
|
200
|
+
type: 0,
|
|
201
|
+
value: "Right answer"
|
|
202
|
+
}];
|
|
199
203
|
var J9e9Qb = [{
|
|
200
204
|
type: 0,
|
|
201
205
|
value: "Video"
|
|
@@ -236,10 +240,22 @@ var KHWeV7 = [{
|
|
|
236
240
|
type: 0,
|
|
237
241
|
value: "Answers"
|
|
238
242
|
}];
|
|
243
|
+
var KK5teQ = [{
|
|
244
|
+
type: 0,
|
|
245
|
+
value: "Upload a visual file"
|
|
246
|
+
}];
|
|
247
|
+
var KdAKt7 = [{
|
|
248
|
+
type: 0,
|
|
249
|
+
value: "Upload an image file"
|
|
250
|
+
}];
|
|
239
251
|
var KuzZbb = [{
|
|
240
252
|
type: 0,
|
|
241
253
|
value: "Background color"
|
|
242
254
|
}];
|
|
255
|
+
var LFziCV = [{
|
|
256
|
+
type: 0,
|
|
257
|
+
value: "Without right/wrong icon"
|
|
258
|
+
}];
|
|
243
259
|
var LI0Gz4 = [{
|
|
244
260
|
type: 0,
|
|
245
261
|
value: "Email"
|
|
@@ -435,10 +451,6 @@ var VMd1oG = [{
|
|
|
435
451
|
type: 0,
|
|
436
452
|
value: "Questions"
|
|
437
453
|
}];
|
|
438
|
-
var VspZp9 = [{
|
|
439
|
-
type: 0,
|
|
440
|
-
value: "Upload an image"
|
|
441
|
-
}];
|
|
442
454
|
var W5qWPj = [{
|
|
443
455
|
type: 0,
|
|
444
456
|
value: "Center"
|
|
@@ -451,6 +463,10 @@ var Wb5zY4 = [{
|
|
|
451
463
|
type: 0,
|
|
452
464
|
value: "Select a font file..."
|
|
453
465
|
}];
|
|
466
|
+
var WeD4nB = [{
|
|
467
|
+
type: 0,
|
|
468
|
+
value: "Upload a video file"
|
|
469
|
+
}];
|
|
454
470
|
var WlNxMj = [{
|
|
455
471
|
type: 0,
|
|
456
472
|
value: "Repeat"
|
|
@@ -519,10 +535,6 @@ var ZLDmja = [{
|
|
|
519
535
|
type: 0,
|
|
520
536
|
value: "Submit"
|
|
521
537
|
}];
|
|
522
|
-
var ZMS1Wv = [{
|
|
523
|
-
type: 0,
|
|
524
|
-
value: "Text"
|
|
525
|
-
}];
|
|
526
538
|
var Zbu5Uk = [{
|
|
527
539
|
type: 0,
|
|
528
540
|
value: "Label"
|
|
@@ -735,10 +747,6 @@ var gRxcTc = [{
|
|
|
735
747
|
type: 0,
|
|
736
748
|
value: "Delete screen"
|
|
737
749
|
}];
|
|
738
|
-
var gprXiG = [{
|
|
739
|
-
type: 0,
|
|
740
|
-
value: "Search..."
|
|
741
|
-
}];
|
|
742
750
|
var hVE7TA = [{
|
|
743
751
|
type: 0,
|
|
744
752
|
value: "Question"
|
|
@@ -771,6 +779,10 @@ var iL9RLu = [{
|
|
|
771
779
|
type: 0,
|
|
772
780
|
value: "Collaborator"
|
|
773
781
|
}];
|
|
782
|
+
var iQ5Uf7 = [{
|
|
783
|
+
type: 0,
|
|
784
|
+
value: "Default feedback"
|
|
785
|
+
}];
|
|
774
786
|
var iipV5Q = [{
|
|
775
787
|
type: 0,
|
|
776
788
|
value: "Type"
|
|
@@ -1355,6 +1367,10 @@ var messages = {
|
|
|
1355
1367
|
type: 0,
|
|
1356
1368
|
value: "Timeline with images"
|
|
1357
1369
|
}],
|
|
1370
|
+
"3Ap0C1": [{
|
|
1371
|
+
type: 0,
|
|
1372
|
+
value: "Upload a media"
|
|
1373
|
+
}],
|
|
1358
1374
|
"3B9cb3": [{
|
|
1359
1375
|
type: 0,
|
|
1360
1376
|
value: "Whatsapp"
|
|
@@ -1367,10 +1383,6 @@ var messages = {
|
|
|
1367
1383
|
type: 0,
|
|
1368
1384
|
value: "Angle"
|
|
1369
1385
|
}],
|
|
1370
|
-
"3NghmM": [{
|
|
1371
|
-
type: 0,
|
|
1372
|
-
value: "Good answer"
|
|
1373
|
-
}],
|
|
1374
1386
|
"3OS3Ms": [{
|
|
1375
1387
|
type: 0,
|
|
1376
1388
|
value: "Legend"
|
|
@@ -1483,6 +1495,10 @@ var messages = {
|
|
|
1483
1495
|
type: 0,
|
|
1484
1496
|
value: "Result style"
|
|
1485
1497
|
}],
|
|
1498
|
+
"6W4St0": [{
|
|
1499
|
+
type: 0,
|
|
1500
|
+
value: "Upload an audio file"
|
|
1501
|
+
}],
|
|
1486
1502
|
"6ak5YN": [{
|
|
1487
1503
|
type: 0,
|
|
1488
1504
|
value: "Side"
|
|
@@ -1602,7 +1618,7 @@ var messages = {
|
|
|
1602
1618
|
type: 0,
|
|
1603
1619
|
value: "Select an image..."
|
|
1604
1620
|
}],
|
|
1605
|
-
|
|
1621
|
+
BAfC6s: BAfC6s,
|
|
1606
1622
|
BSTWf8: BSTWf8,
|
|
1607
1623
|
BgrRxZ: BgrRxZ,
|
|
1608
1624
|
BnRW4y: BnRW4y,
|
|
@@ -1635,7 +1651,7 @@ var messages = {
|
|
|
1635
1651
|
value: "Loop"
|
|
1636
1652
|
}],
|
|
1637
1653
|
F59wsl: F59wsl,
|
|
1638
|
-
|
|
1654
|
+
FFBsfJ: FFBsfJ,
|
|
1639
1655
|
FKOWH0: FKOWH0,
|
|
1640
1656
|
FOmgqv: FOmgqv,
|
|
1641
1657
|
FjuRaw: FjuRaw,
|
|
@@ -1668,6 +1684,7 @@ var messages = {
|
|
|
1668
1684
|
type: 0,
|
|
1669
1685
|
value: "Heading"
|
|
1670
1686
|
}],
|
|
1687
|
+
ItuhfW: ItuhfW,
|
|
1671
1688
|
J9e9Qb: J9e9Qb,
|
|
1672
1689
|
JAguka: JAguka,
|
|
1673
1690
|
JC9Qlf: JC9Qlf,
|
|
@@ -1678,7 +1695,10 @@ var messages = {
|
|
|
1678
1695
|
KB7N5E: KB7N5E,
|
|
1679
1696
|
KCDOHI: KCDOHI,
|
|
1680
1697
|
KHWeV7: KHWeV7,
|
|
1698
|
+
KK5teQ: KK5teQ,
|
|
1699
|
+
KdAKt7: KdAKt7,
|
|
1681
1700
|
KuzZbb: KuzZbb,
|
|
1701
|
+
LFziCV: LFziCV,
|
|
1682
1702
|
LI0Gz4: LI0Gz4,
|
|
1683
1703
|
LOknw0: LOknw0,
|
|
1684
1704
|
LkVfwW: LkVfwW,
|
|
@@ -1687,6 +1707,10 @@ var messages = {
|
|
|
1687
1707
|
value: "Add a button"
|
|
1688
1708
|
}],
|
|
1689
1709
|
Lrwi2G: Lrwi2G,
|
|
1710
|
+
"Lz2+Ws": [{
|
|
1711
|
+
type: 0,
|
|
1712
|
+
value: "Answer feedback"
|
|
1713
|
+
}],
|
|
1690
1714
|
"M/FGRs": [{
|
|
1691
1715
|
type: 0,
|
|
1692
1716
|
value: "Libra"
|
|
@@ -1779,14 +1803,10 @@ var messages = {
|
|
|
1779
1803
|
}],
|
|
1780
1804
|
VDu2FA: VDu2FA,
|
|
1781
1805
|
VMd1oG: VMd1oG,
|
|
1782
|
-
VspZp9: VspZp9,
|
|
1783
1806
|
W5qWPj: W5qWPj,
|
|
1784
1807
|
WY14Zu: WY14Zu,
|
|
1785
1808
|
Wb5zY4: Wb5zY4,
|
|
1786
|
-
|
|
1787
|
-
type: 0,
|
|
1788
|
-
value: "Without true/false"
|
|
1789
|
-
}],
|
|
1809
|
+
WeD4nB: WeD4nB,
|
|
1790
1810
|
WlNxMj: WlNxMj,
|
|
1791
1811
|
Wr9olU: Wr9olU,
|
|
1792
1812
|
X7kRRa: X7kRRa,
|
|
@@ -1812,7 +1832,6 @@ var messages = {
|
|
|
1812
1832
|
Z5jrDS: Z5jrDS,
|
|
1813
1833
|
ZCe0r4: ZCe0r4,
|
|
1814
1834
|
ZLDmja: ZLDmja,
|
|
1815
|
-
ZMS1Wv: ZMS1Wv,
|
|
1816
1835
|
Zbu5Uk: Zbu5Uk,
|
|
1817
1836
|
ZeosMy: ZeosMy,
|
|
1818
1837
|
ZiWlL6: ZiWlL6,
|
|
@@ -1891,7 +1910,6 @@ var messages = {
|
|
|
1891
1910
|
g2CRt5: g2CRt5,
|
|
1892
1911
|
g6b9Lg: g6b9Lg,
|
|
1893
1912
|
gRxcTc: gRxcTc,
|
|
1894
|
-
gprXiG: gprXiG,
|
|
1895
1913
|
"gwPu/I": [{
|
|
1896
1914
|
type: 0,
|
|
1897
1915
|
value: "Buttons text"
|
|
@@ -1908,6 +1926,7 @@ var messages = {
|
|
|
1908
1926
|
i6bmbD: i6bmbD,
|
|
1909
1927
|
iHV3W3: iHV3W3,
|
|
1910
1928
|
iL9RLu: iL9RLu,
|
|
1929
|
+
iQ5Uf7: iQ5Uf7,
|
|
1911
1930
|
iipV5Q: iipV5Q,
|
|
1912
1931
|
irG6mX: irG6mX,
|
|
1913
1932
|
jEK6B8: jEK6B8,
|
|
@@ -1969,6 +1988,10 @@ var messages = {
|
|
|
1969
1988
|
nXVNeg: nXVNeg,
|
|
1970
1989
|
nc8LF0: nc8LF0,
|
|
1971
1990
|
nno1Pq: nno1Pq,
|
|
1991
|
+
"o3R+FM": [{
|
|
1992
|
+
type: 0,
|
|
1993
|
+
value: "Select a closed captions file..."
|
|
1994
|
+
}],
|
|
1972
1995
|
oAtOlP: oAtOlP,
|
|
1973
1996
|
oCBQKV: oCBQKV,
|
|
1974
1997
|
oLtEu6: oLtEu6,
|