@micromag/intl 0.3.312 → 0.3.318
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 +19 -18
- package/locale/en.js +19 -18
- package/locale/en.json +24 -24
- package/locale/fr.cjs.js +19 -18
- package/locale/fr.js +19 -18
- package/locale/fr.json +24 -24
- 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
|
@@ -134,10 +134,6 @@ var F59wsl = [{
|
|
|
134
134
|
type: 0,
|
|
135
135
|
value: "Urbania horoscope"
|
|
136
136
|
}];
|
|
137
|
-
var FJygXH = [{
|
|
138
|
-
type: 0,
|
|
139
|
-
value: "Result"
|
|
140
|
-
}];
|
|
141
137
|
var FKOWH0 = [{
|
|
142
138
|
type: 0,
|
|
143
139
|
value: "right aligned"
|
|
@@ -202,6 +198,10 @@ var ICXTfR = [{
|
|
|
202
198
|
type: 0,
|
|
203
199
|
value: "Links"
|
|
204
200
|
}];
|
|
201
|
+
var ItuhfW = [{
|
|
202
|
+
type: 0,
|
|
203
|
+
value: "Right answer"
|
|
204
|
+
}];
|
|
205
205
|
var J9e9Qb = [{
|
|
206
206
|
type: 0,
|
|
207
207
|
value: "Video"
|
|
@@ -246,6 +246,10 @@ var KuzZbb = [{
|
|
|
246
246
|
type: 0,
|
|
247
247
|
value: "Background color"
|
|
248
248
|
}];
|
|
249
|
+
var LFziCV = [{
|
|
250
|
+
type: 0,
|
|
251
|
+
value: "Without right/wrong icon"
|
|
252
|
+
}];
|
|
249
253
|
var LI0Gz4 = [{
|
|
250
254
|
type: 0,
|
|
251
255
|
value: "Email"
|
|
@@ -525,10 +529,6 @@ var ZLDmja = [{
|
|
|
525
529
|
type: 0,
|
|
526
530
|
value: "Submit"
|
|
527
531
|
}];
|
|
528
|
-
var ZMS1Wv = [{
|
|
529
|
-
type: 0,
|
|
530
|
-
value: "Text"
|
|
531
|
-
}];
|
|
532
532
|
var Zbu5Uk = [{
|
|
533
533
|
type: 0,
|
|
534
534
|
value: "Label"
|
|
@@ -777,6 +777,10 @@ var iL9RLu = [{
|
|
|
777
777
|
type: 0,
|
|
778
778
|
value: "Collaborator"
|
|
779
779
|
}];
|
|
780
|
+
var iQ5Uf7 = [{
|
|
781
|
+
type: 0,
|
|
782
|
+
value: "Default feedback"
|
|
783
|
+
}];
|
|
780
784
|
var iipV5Q = [{
|
|
781
785
|
type: 0,
|
|
782
786
|
value: "Type"
|
|
@@ -1373,10 +1377,6 @@ var messages = {
|
|
|
1373
1377
|
type: 0,
|
|
1374
1378
|
value: "Angle"
|
|
1375
1379
|
}],
|
|
1376
|
-
"3NghmM": [{
|
|
1377
|
-
type: 0,
|
|
1378
|
-
value: "Good answer"
|
|
1379
|
-
}],
|
|
1380
1380
|
"3OS3Ms": [{
|
|
1381
1381
|
type: 0,
|
|
1382
1382
|
value: "Legend"
|
|
@@ -1641,7 +1641,6 @@ var messages = {
|
|
|
1641
1641
|
value: "Loop"
|
|
1642
1642
|
}],
|
|
1643
1643
|
F59wsl: F59wsl,
|
|
1644
|
-
FJygXH: FJygXH,
|
|
1645
1644
|
FKOWH0: FKOWH0,
|
|
1646
1645
|
FOmgqv: FOmgqv,
|
|
1647
1646
|
FjuRaw: FjuRaw,
|
|
@@ -1674,6 +1673,7 @@ var messages = {
|
|
|
1674
1673
|
type: 0,
|
|
1675
1674
|
value: "Heading"
|
|
1676
1675
|
}],
|
|
1676
|
+
ItuhfW: ItuhfW,
|
|
1677
1677
|
J9e9Qb: J9e9Qb,
|
|
1678
1678
|
JAguka: JAguka,
|
|
1679
1679
|
JC9Qlf: JC9Qlf,
|
|
@@ -1685,6 +1685,7 @@ var messages = {
|
|
|
1685
1685
|
KCDOHI: KCDOHI,
|
|
1686
1686
|
KHWeV7: KHWeV7,
|
|
1687
1687
|
KuzZbb: KuzZbb,
|
|
1688
|
+
LFziCV: LFziCV,
|
|
1688
1689
|
LI0Gz4: LI0Gz4,
|
|
1689
1690
|
LOknw0: LOknw0,
|
|
1690
1691
|
LkVfwW: LkVfwW,
|
|
@@ -1693,6 +1694,10 @@ var messages = {
|
|
|
1693
1694
|
value: "Add a button"
|
|
1694
1695
|
}],
|
|
1695
1696
|
Lrwi2G: Lrwi2G,
|
|
1697
|
+
"Lz2+Ws": [{
|
|
1698
|
+
type: 0,
|
|
1699
|
+
value: "Answer feedback"
|
|
1700
|
+
}],
|
|
1696
1701
|
"M/FGRs": [{
|
|
1697
1702
|
type: 0,
|
|
1698
1703
|
value: "Libra"
|
|
@@ -1789,10 +1794,6 @@ var messages = {
|
|
|
1789
1794
|
W5qWPj: W5qWPj,
|
|
1790
1795
|
WY14Zu: WY14Zu,
|
|
1791
1796
|
Wb5zY4: Wb5zY4,
|
|
1792
|
-
"Wk/o9B": [{
|
|
1793
|
-
type: 0,
|
|
1794
|
-
value: "Without true/false"
|
|
1795
|
-
}],
|
|
1796
1797
|
WlNxMj: WlNxMj,
|
|
1797
1798
|
Wr9olU: Wr9olU,
|
|
1798
1799
|
X7kRRa: X7kRRa,
|
|
@@ -1818,7 +1819,6 @@ var messages = {
|
|
|
1818
1819
|
Z5jrDS: Z5jrDS,
|
|
1819
1820
|
ZCe0r4: ZCe0r4,
|
|
1820
1821
|
ZLDmja: ZLDmja,
|
|
1821
|
-
ZMS1Wv: ZMS1Wv,
|
|
1822
1822
|
Zbu5Uk: Zbu5Uk,
|
|
1823
1823
|
ZeosMy: ZeosMy,
|
|
1824
1824
|
ZiWlL6: ZiWlL6,
|
|
@@ -1914,6 +1914,7 @@ var messages = {
|
|
|
1914
1914
|
i6bmbD: i6bmbD,
|
|
1915
1915
|
iHV3W3: iHV3W3,
|
|
1916
1916
|
iL9RLu: iL9RLu,
|
|
1917
|
+
iQ5Uf7: iQ5Uf7,
|
|
1917
1918
|
iipV5Q: iipV5Q,
|
|
1918
1919
|
irG6mX: irG6mX,
|
|
1919
1920
|
jEK6B8: jEK6B8,
|
package/locale/en.js
CHANGED
|
@@ -128,10 +128,6 @@ var F59wsl = [{
|
|
|
128
128
|
type: 0,
|
|
129
129
|
value: "Urbania horoscope"
|
|
130
130
|
}];
|
|
131
|
-
var FJygXH = [{
|
|
132
|
-
type: 0,
|
|
133
|
-
value: "Result"
|
|
134
|
-
}];
|
|
135
131
|
var FKOWH0 = [{
|
|
136
132
|
type: 0,
|
|
137
133
|
value: "right aligned"
|
|
@@ -196,6 +192,10 @@ var ICXTfR = [{
|
|
|
196
192
|
type: 0,
|
|
197
193
|
value: "Links"
|
|
198
194
|
}];
|
|
195
|
+
var ItuhfW = [{
|
|
196
|
+
type: 0,
|
|
197
|
+
value: "Right answer"
|
|
198
|
+
}];
|
|
199
199
|
var J9e9Qb = [{
|
|
200
200
|
type: 0,
|
|
201
201
|
value: "Video"
|
|
@@ -240,6 +240,10 @@ var KuzZbb = [{
|
|
|
240
240
|
type: 0,
|
|
241
241
|
value: "Background color"
|
|
242
242
|
}];
|
|
243
|
+
var LFziCV = [{
|
|
244
|
+
type: 0,
|
|
245
|
+
value: "Without right/wrong icon"
|
|
246
|
+
}];
|
|
243
247
|
var LI0Gz4 = [{
|
|
244
248
|
type: 0,
|
|
245
249
|
value: "Email"
|
|
@@ -519,10 +523,6 @@ var ZLDmja = [{
|
|
|
519
523
|
type: 0,
|
|
520
524
|
value: "Submit"
|
|
521
525
|
}];
|
|
522
|
-
var ZMS1Wv = [{
|
|
523
|
-
type: 0,
|
|
524
|
-
value: "Text"
|
|
525
|
-
}];
|
|
526
526
|
var Zbu5Uk = [{
|
|
527
527
|
type: 0,
|
|
528
528
|
value: "Label"
|
|
@@ -771,6 +771,10 @@ var iL9RLu = [{
|
|
|
771
771
|
type: 0,
|
|
772
772
|
value: "Collaborator"
|
|
773
773
|
}];
|
|
774
|
+
var iQ5Uf7 = [{
|
|
775
|
+
type: 0,
|
|
776
|
+
value: "Default feedback"
|
|
777
|
+
}];
|
|
774
778
|
var iipV5Q = [{
|
|
775
779
|
type: 0,
|
|
776
780
|
value: "Type"
|
|
@@ -1367,10 +1371,6 @@ var messages = {
|
|
|
1367
1371
|
type: 0,
|
|
1368
1372
|
value: "Angle"
|
|
1369
1373
|
}],
|
|
1370
|
-
"3NghmM": [{
|
|
1371
|
-
type: 0,
|
|
1372
|
-
value: "Good answer"
|
|
1373
|
-
}],
|
|
1374
1374
|
"3OS3Ms": [{
|
|
1375
1375
|
type: 0,
|
|
1376
1376
|
value: "Legend"
|
|
@@ -1635,7 +1635,6 @@ var messages = {
|
|
|
1635
1635
|
value: "Loop"
|
|
1636
1636
|
}],
|
|
1637
1637
|
F59wsl: F59wsl,
|
|
1638
|
-
FJygXH: FJygXH,
|
|
1639
1638
|
FKOWH0: FKOWH0,
|
|
1640
1639
|
FOmgqv: FOmgqv,
|
|
1641
1640
|
FjuRaw: FjuRaw,
|
|
@@ -1668,6 +1667,7 @@ var messages = {
|
|
|
1668
1667
|
type: 0,
|
|
1669
1668
|
value: "Heading"
|
|
1670
1669
|
}],
|
|
1670
|
+
ItuhfW: ItuhfW,
|
|
1671
1671
|
J9e9Qb: J9e9Qb,
|
|
1672
1672
|
JAguka: JAguka,
|
|
1673
1673
|
JC9Qlf: JC9Qlf,
|
|
@@ -1679,6 +1679,7 @@ var messages = {
|
|
|
1679
1679
|
KCDOHI: KCDOHI,
|
|
1680
1680
|
KHWeV7: KHWeV7,
|
|
1681
1681
|
KuzZbb: KuzZbb,
|
|
1682
|
+
LFziCV: LFziCV,
|
|
1682
1683
|
LI0Gz4: LI0Gz4,
|
|
1683
1684
|
LOknw0: LOknw0,
|
|
1684
1685
|
LkVfwW: LkVfwW,
|
|
@@ -1687,6 +1688,10 @@ var messages = {
|
|
|
1687
1688
|
value: "Add a button"
|
|
1688
1689
|
}],
|
|
1689
1690
|
Lrwi2G: Lrwi2G,
|
|
1691
|
+
"Lz2+Ws": [{
|
|
1692
|
+
type: 0,
|
|
1693
|
+
value: "Answer feedback"
|
|
1694
|
+
}],
|
|
1690
1695
|
"M/FGRs": [{
|
|
1691
1696
|
type: 0,
|
|
1692
1697
|
value: "Libra"
|
|
@@ -1783,10 +1788,6 @@ var messages = {
|
|
|
1783
1788
|
W5qWPj: W5qWPj,
|
|
1784
1789
|
WY14Zu: WY14Zu,
|
|
1785
1790
|
Wb5zY4: Wb5zY4,
|
|
1786
|
-
"Wk/o9B": [{
|
|
1787
|
-
type: 0,
|
|
1788
|
-
value: "Without true/false"
|
|
1789
|
-
}],
|
|
1790
1791
|
WlNxMj: WlNxMj,
|
|
1791
1792
|
Wr9olU: Wr9olU,
|
|
1792
1793
|
X7kRRa: X7kRRa,
|
|
@@ -1812,7 +1813,6 @@ var messages = {
|
|
|
1812
1813
|
Z5jrDS: Z5jrDS,
|
|
1813
1814
|
ZCe0r4: ZCe0r4,
|
|
1814
1815
|
ZLDmja: ZLDmja,
|
|
1815
|
-
ZMS1Wv: ZMS1Wv,
|
|
1816
1816
|
Zbu5Uk: Zbu5Uk,
|
|
1817
1817
|
ZeosMy: ZeosMy,
|
|
1818
1818
|
ZiWlL6: ZiWlL6,
|
|
@@ -1908,6 +1908,7 @@ var messages = {
|
|
|
1908
1908
|
i6bmbD: i6bmbD,
|
|
1909
1909
|
iHV3W3: iHV3W3,
|
|
1910
1910
|
iL9RLu: iL9RLu,
|
|
1911
|
+
iQ5Uf7: iQ5Uf7,
|
|
1911
1912
|
iipV5Q: iipV5Q,
|
|
1912
1913
|
irG6mX: irG6mX,
|
|
1913
1914
|
jEK6B8: jEK6B8,
|
package/locale/en.json
CHANGED
|
@@ -213,12 +213,6 @@
|
|
|
213
213
|
"value": "Angle"
|
|
214
214
|
}
|
|
215
215
|
],
|
|
216
|
-
"3NghmM": [
|
|
217
|
-
{
|
|
218
|
-
"type": 0,
|
|
219
|
-
"value": "Good answer"
|
|
220
|
-
}
|
|
221
|
-
],
|
|
222
216
|
"3OS3Ms": [
|
|
223
217
|
{
|
|
224
218
|
"type": 0,
|
|
@@ -759,12 +753,6 @@
|
|
|
759
753
|
"value": "Urbania horoscope"
|
|
760
754
|
}
|
|
761
755
|
],
|
|
762
|
-
"FJygXH": [
|
|
763
|
-
{
|
|
764
|
-
"type": 0,
|
|
765
|
-
"value": "Result"
|
|
766
|
-
}
|
|
767
|
-
],
|
|
768
756
|
"FKOWH0": [
|
|
769
757
|
{
|
|
770
758
|
"type": 0,
|
|
@@ -885,6 +873,12 @@
|
|
|
885
873
|
"value": "Heading"
|
|
886
874
|
}
|
|
887
875
|
],
|
|
876
|
+
"ItuhfW": [
|
|
877
|
+
{
|
|
878
|
+
"type": 0,
|
|
879
|
+
"value": "Right answer"
|
|
880
|
+
}
|
|
881
|
+
],
|
|
888
882
|
"J9e9Qb": [
|
|
889
883
|
{
|
|
890
884
|
"type": 0,
|
|
@@ -951,6 +945,12 @@
|
|
|
951
945
|
"value": "Background color"
|
|
952
946
|
}
|
|
953
947
|
],
|
|
948
|
+
"LFziCV": [
|
|
949
|
+
{
|
|
950
|
+
"type": 0,
|
|
951
|
+
"value": "Without right/wrong icon"
|
|
952
|
+
}
|
|
953
|
+
],
|
|
954
954
|
"LI0Gz4": [
|
|
955
955
|
{
|
|
956
956
|
"type": 0,
|
|
@@ -985,6 +985,12 @@
|
|
|
985
985
|
"value": "Email"
|
|
986
986
|
}
|
|
987
987
|
],
|
|
988
|
+
"Lz2+Ws": [
|
|
989
|
+
{
|
|
990
|
+
"type": 0,
|
|
991
|
+
"value": "Answer feedback"
|
|
992
|
+
}
|
|
993
|
+
],
|
|
988
994
|
"M/FGRs": [
|
|
989
995
|
{
|
|
990
996
|
"type": 0,
|
|
@@ -1345,12 +1351,6 @@
|
|
|
1345
1351
|
"value": "Select a font file..."
|
|
1346
1352
|
}
|
|
1347
1353
|
],
|
|
1348
|
-
"Wk/o9B": [
|
|
1349
|
-
{
|
|
1350
|
-
"type": 0,
|
|
1351
|
-
"value": "Without true/false"
|
|
1352
|
-
}
|
|
1353
|
-
],
|
|
1354
1354
|
"WlNxMj": [
|
|
1355
1355
|
{
|
|
1356
1356
|
"type": 0,
|
|
@@ -1465,12 +1465,6 @@
|
|
|
1465
1465
|
"value": "Submit"
|
|
1466
1466
|
}
|
|
1467
1467
|
],
|
|
1468
|
-
"ZMS1Wv": [
|
|
1469
|
-
{
|
|
1470
|
-
"type": 0,
|
|
1471
|
-
"value": "Text"
|
|
1472
|
-
}
|
|
1473
|
-
],
|
|
1474
1468
|
"Zbu5Uk": [
|
|
1475
1469
|
{
|
|
1476
1470
|
"type": 0,
|
|
@@ -1895,6 +1889,12 @@
|
|
|
1895
1889
|
"value": "Collaborator"
|
|
1896
1890
|
}
|
|
1897
1891
|
],
|
|
1892
|
+
"iQ5Uf7": [
|
|
1893
|
+
{
|
|
1894
|
+
"type": 0,
|
|
1895
|
+
"value": "Default feedback"
|
|
1896
|
+
}
|
|
1897
|
+
],
|
|
1898
1898
|
"iipV5Q": [
|
|
1899
1899
|
{
|
|
1900
1900
|
"type": 0,
|
package/locale/fr.cjs.js
CHANGED
|
@@ -134,10 +134,6 @@ var F59wsl = [{
|
|
|
134
134
|
type: 0,
|
|
135
135
|
value: "Urbania Horoscope"
|
|
136
136
|
}];
|
|
137
|
-
var FJygXH = [{
|
|
138
|
-
type: 0,
|
|
139
|
-
value: "Résultat"
|
|
140
|
-
}];
|
|
141
137
|
var FKOWH0 = [{
|
|
142
138
|
type: 0,
|
|
143
139
|
value: "align. droite"
|
|
@@ -202,6 +198,10 @@ var ICXTfR = [{
|
|
|
202
198
|
type: 0,
|
|
203
199
|
value: "Liens"
|
|
204
200
|
}];
|
|
201
|
+
var ItuhfW = [{
|
|
202
|
+
type: 0,
|
|
203
|
+
value: "Bonne réponse"
|
|
204
|
+
}];
|
|
205
205
|
var J9e9Qb = [{
|
|
206
206
|
type: 0,
|
|
207
207
|
value: "Vidéo"
|
|
@@ -246,6 +246,10 @@ var KuzZbb = [{
|
|
|
246
246
|
type: 0,
|
|
247
247
|
value: "Couleur de l'arrière-plan"
|
|
248
248
|
}];
|
|
249
|
+
var LFziCV = [{
|
|
250
|
+
type: 0,
|
|
251
|
+
value: "Sans icône vrai/faux"
|
|
252
|
+
}];
|
|
249
253
|
var LI0Gz4 = [{
|
|
250
254
|
type: 0,
|
|
251
255
|
value: "Courriel"
|
|
@@ -525,10 +529,6 @@ var ZLDmja = [{
|
|
|
525
529
|
type: 0,
|
|
526
530
|
value: "Envoyer"
|
|
527
531
|
}];
|
|
528
|
-
var ZMS1Wv = [{
|
|
529
|
-
type: 0,
|
|
530
|
-
value: "Texte"
|
|
531
|
-
}];
|
|
532
532
|
var Zbu5Uk = [{
|
|
533
533
|
type: 0,
|
|
534
534
|
value: "Libellé"
|
|
@@ -777,6 +777,10 @@ var iL9RLu = [{
|
|
|
777
777
|
type: 0,
|
|
778
778
|
value: "Collaborateur"
|
|
779
779
|
}];
|
|
780
|
+
var iQ5Uf7 = [{
|
|
781
|
+
type: 0,
|
|
782
|
+
value: "Rétroaction"
|
|
783
|
+
}];
|
|
780
784
|
var iipV5Q = [{
|
|
781
785
|
type: 0,
|
|
782
786
|
value: "Type"
|
|
@@ -1373,10 +1377,6 @@ var messages = {
|
|
|
1373
1377
|
type: 0,
|
|
1374
1378
|
value: "Angle"
|
|
1375
1379
|
}],
|
|
1376
|
-
"3NghmM": [{
|
|
1377
|
-
type: 0,
|
|
1378
|
-
value: "Bonne réponse"
|
|
1379
|
-
}],
|
|
1380
1380
|
"3OS3Ms": [{
|
|
1381
1381
|
type: 0,
|
|
1382
1382
|
value: "Légende"
|
|
@@ -1641,7 +1641,6 @@ var messages = {
|
|
|
1641
1641
|
value: "Boucle"
|
|
1642
1642
|
}],
|
|
1643
1643
|
F59wsl: F59wsl,
|
|
1644
|
-
FJygXH: FJygXH,
|
|
1645
1644
|
FKOWH0: FKOWH0,
|
|
1646
1645
|
FOmgqv: FOmgqv,
|
|
1647
1646
|
FjuRaw: FjuRaw,
|
|
@@ -1674,6 +1673,7 @@ var messages = {
|
|
|
1674
1673
|
type: 0,
|
|
1675
1674
|
value: "Titre"
|
|
1676
1675
|
}],
|
|
1676
|
+
ItuhfW: ItuhfW,
|
|
1677
1677
|
J9e9Qb: J9e9Qb,
|
|
1678
1678
|
JAguka: JAguka,
|
|
1679
1679
|
JC9Qlf: JC9Qlf,
|
|
@@ -1685,6 +1685,7 @@ var messages = {
|
|
|
1685
1685
|
KCDOHI: KCDOHI,
|
|
1686
1686
|
KHWeV7: KHWeV7,
|
|
1687
1687
|
KuzZbb: KuzZbb,
|
|
1688
|
+
LFziCV: LFziCV,
|
|
1688
1689
|
LI0Gz4: LI0Gz4,
|
|
1689
1690
|
LOknw0: LOknw0,
|
|
1690
1691
|
LkVfwW: LkVfwW,
|
|
@@ -1693,6 +1694,10 @@ var messages = {
|
|
|
1693
1694
|
value: "Ajouter un bouton"
|
|
1694
1695
|
}],
|
|
1695
1696
|
Lrwi2G: Lrwi2G,
|
|
1697
|
+
"Lz2+Ws": [{
|
|
1698
|
+
type: 0,
|
|
1699
|
+
value: "Rétroaction de la réponse"
|
|
1700
|
+
}],
|
|
1696
1701
|
"M/FGRs": [{
|
|
1697
1702
|
type: 0,
|
|
1698
1703
|
value: "Balance"
|
|
@@ -1789,10 +1794,6 @@ var messages = {
|
|
|
1789
1794
|
W5qWPj: W5qWPj,
|
|
1790
1795
|
WY14Zu: WY14Zu,
|
|
1791
1796
|
Wb5zY4: Wb5zY4,
|
|
1792
|
-
"Wk/o9B": [{
|
|
1793
|
-
type: 0,
|
|
1794
|
-
value: "Sans vrai/faux"
|
|
1795
|
-
}],
|
|
1796
1797
|
WlNxMj: WlNxMj,
|
|
1797
1798
|
Wr9olU: Wr9olU,
|
|
1798
1799
|
X7kRRa: X7kRRa,
|
|
@@ -1818,7 +1819,6 @@ var messages = {
|
|
|
1818
1819
|
Z5jrDS: Z5jrDS,
|
|
1819
1820
|
ZCe0r4: ZCe0r4,
|
|
1820
1821
|
ZLDmja: ZLDmja,
|
|
1821
|
-
ZMS1Wv: ZMS1Wv,
|
|
1822
1822
|
Zbu5Uk: Zbu5Uk,
|
|
1823
1823
|
ZeosMy: ZeosMy,
|
|
1824
1824
|
ZiWlL6: ZiWlL6,
|
|
@@ -1914,6 +1914,7 @@ var messages = {
|
|
|
1914
1914
|
i6bmbD: i6bmbD,
|
|
1915
1915
|
iHV3W3: iHV3W3,
|
|
1916
1916
|
iL9RLu: iL9RLu,
|
|
1917
|
+
iQ5Uf7: iQ5Uf7,
|
|
1917
1918
|
iipV5Q: iipV5Q,
|
|
1918
1919
|
irG6mX: irG6mX,
|
|
1919
1920
|
jEK6B8: jEK6B8,
|
package/locale/fr.js
CHANGED
|
@@ -128,10 +128,6 @@ var F59wsl = [{
|
|
|
128
128
|
type: 0,
|
|
129
129
|
value: "Urbania Horoscope"
|
|
130
130
|
}];
|
|
131
|
-
var FJygXH = [{
|
|
132
|
-
type: 0,
|
|
133
|
-
value: "Résultat"
|
|
134
|
-
}];
|
|
135
131
|
var FKOWH0 = [{
|
|
136
132
|
type: 0,
|
|
137
133
|
value: "align. droite"
|
|
@@ -196,6 +192,10 @@ var ICXTfR = [{
|
|
|
196
192
|
type: 0,
|
|
197
193
|
value: "Liens"
|
|
198
194
|
}];
|
|
195
|
+
var ItuhfW = [{
|
|
196
|
+
type: 0,
|
|
197
|
+
value: "Bonne réponse"
|
|
198
|
+
}];
|
|
199
199
|
var J9e9Qb = [{
|
|
200
200
|
type: 0,
|
|
201
201
|
value: "Vidéo"
|
|
@@ -240,6 +240,10 @@ var KuzZbb = [{
|
|
|
240
240
|
type: 0,
|
|
241
241
|
value: "Couleur de l'arrière-plan"
|
|
242
242
|
}];
|
|
243
|
+
var LFziCV = [{
|
|
244
|
+
type: 0,
|
|
245
|
+
value: "Sans icône vrai/faux"
|
|
246
|
+
}];
|
|
243
247
|
var LI0Gz4 = [{
|
|
244
248
|
type: 0,
|
|
245
249
|
value: "Courriel"
|
|
@@ -519,10 +523,6 @@ var ZLDmja = [{
|
|
|
519
523
|
type: 0,
|
|
520
524
|
value: "Envoyer"
|
|
521
525
|
}];
|
|
522
|
-
var ZMS1Wv = [{
|
|
523
|
-
type: 0,
|
|
524
|
-
value: "Texte"
|
|
525
|
-
}];
|
|
526
526
|
var Zbu5Uk = [{
|
|
527
527
|
type: 0,
|
|
528
528
|
value: "Libellé"
|
|
@@ -771,6 +771,10 @@ var iL9RLu = [{
|
|
|
771
771
|
type: 0,
|
|
772
772
|
value: "Collaborateur"
|
|
773
773
|
}];
|
|
774
|
+
var iQ5Uf7 = [{
|
|
775
|
+
type: 0,
|
|
776
|
+
value: "Rétroaction"
|
|
777
|
+
}];
|
|
774
778
|
var iipV5Q = [{
|
|
775
779
|
type: 0,
|
|
776
780
|
value: "Type"
|
|
@@ -1367,10 +1371,6 @@ var messages = {
|
|
|
1367
1371
|
type: 0,
|
|
1368
1372
|
value: "Angle"
|
|
1369
1373
|
}],
|
|
1370
|
-
"3NghmM": [{
|
|
1371
|
-
type: 0,
|
|
1372
|
-
value: "Bonne réponse"
|
|
1373
|
-
}],
|
|
1374
1374
|
"3OS3Ms": [{
|
|
1375
1375
|
type: 0,
|
|
1376
1376
|
value: "Légende"
|
|
@@ -1635,7 +1635,6 @@ var messages = {
|
|
|
1635
1635
|
value: "Boucle"
|
|
1636
1636
|
}],
|
|
1637
1637
|
F59wsl: F59wsl,
|
|
1638
|
-
FJygXH: FJygXH,
|
|
1639
1638
|
FKOWH0: FKOWH0,
|
|
1640
1639
|
FOmgqv: FOmgqv,
|
|
1641
1640
|
FjuRaw: FjuRaw,
|
|
@@ -1668,6 +1667,7 @@ var messages = {
|
|
|
1668
1667
|
type: 0,
|
|
1669
1668
|
value: "Titre"
|
|
1670
1669
|
}],
|
|
1670
|
+
ItuhfW: ItuhfW,
|
|
1671
1671
|
J9e9Qb: J9e9Qb,
|
|
1672
1672
|
JAguka: JAguka,
|
|
1673
1673
|
JC9Qlf: JC9Qlf,
|
|
@@ -1679,6 +1679,7 @@ var messages = {
|
|
|
1679
1679
|
KCDOHI: KCDOHI,
|
|
1680
1680
|
KHWeV7: KHWeV7,
|
|
1681
1681
|
KuzZbb: KuzZbb,
|
|
1682
|
+
LFziCV: LFziCV,
|
|
1682
1683
|
LI0Gz4: LI0Gz4,
|
|
1683
1684
|
LOknw0: LOknw0,
|
|
1684
1685
|
LkVfwW: LkVfwW,
|
|
@@ -1687,6 +1688,10 @@ var messages = {
|
|
|
1687
1688
|
value: "Ajouter un bouton"
|
|
1688
1689
|
}],
|
|
1689
1690
|
Lrwi2G: Lrwi2G,
|
|
1691
|
+
"Lz2+Ws": [{
|
|
1692
|
+
type: 0,
|
|
1693
|
+
value: "Rétroaction de la réponse"
|
|
1694
|
+
}],
|
|
1690
1695
|
"M/FGRs": [{
|
|
1691
1696
|
type: 0,
|
|
1692
1697
|
value: "Balance"
|
|
@@ -1783,10 +1788,6 @@ var messages = {
|
|
|
1783
1788
|
W5qWPj: W5qWPj,
|
|
1784
1789
|
WY14Zu: WY14Zu,
|
|
1785
1790
|
Wb5zY4: Wb5zY4,
|
|
1786
|
-
"Wk/o9B": [{
|
|
1787
|
-
type: 0,
|
|
1788
|
-
value: "Sans vrai/faux"
|
|
1789
|
-
}],
|
|
1790
1791
|
WlNxMj: WlNxMj,
|
|
1791
1792
|
Wr9olU: Wr9olU,
|
|
1792
1793
|
X7kRRa: X7kRRa,
|
|
@@ -1812,7 +1813,6 @@ var messages = {
|
|
|
1812
1813
|
Z5jrDS: Z5jrDS,
|
|
1813
1814
|
ZCe0r4: ZCe0r4,
|
|
1814
1815
|
ZLDmja: ZLDmja,
|
|
1815
|
-
ZMS1Wv: ZMS1Wv,
|
|
1816
1816
|
Zbu5Uk: Zbu5Uk,
|
|
1817
1817
|
ZeosMy: ZeosMy,
|
|
1818
1818
|
ZiWlL6: ZiWlL6,
|
|
@@ -1908,6 +1908,7 @@ var messages = {
|
|
|
1908
1908
|
i6bmbD: i6bmbD,
|
|
1909
1909
|
iHV3W3: iHV3W3,
|
|
1910
1910
|
iL9RLu: iL9RLu,
|
|
1911
|
+
iQ5Uf7: iQ5Uf7,
|
|
1911
1912
|
iipV5Q: iipV5Q,
|
|
1912
1913
|
irG6mX: irG6mX,
|
|
1913
1914
|
jEK6B8: jEK6B8,
|
package/locale/fr.json
CHANGED
|
@@ -213,12 +213,6 @@
|
|
|
213
213
|
"value": "Angle"
|
|
214
214
|
}
|
|
215
215
|
],
|
|
216
|
-
"3NghmM": [
|
|
217
|
-
{
|
|
218
|
-
"type": 0,
|
|
219
|
-
"value": "Bonne réponse"
|
|
220
|
-
}
|
|
221
|
-
],
|
|
222
216
|
"3OS3Ms": [
|
|
223
217
|
{
|
|
224
218
|
"type": 0,
|
|
@@ -759,12 +753,6 @@
|
|
|
759
753
|
"value": "Urbania Horoscope"
|
|
760
754
|
}
|
|
761
755
|
],
|
|
762
|
-
"FJygXH": [
|
|
763
|
-
{
|
|
764
|
-
"type": 0,
|
|
765
|
-
"value": "Résultat"
|
|
766
|
-
}
|
|
767
|
-
],
|
|
768
756
|
"FKOWH0": [
|
|
769
757
|
{
|
|
770
758
|
"type": 0,
|
|
@@ -885,6 +873,12 @@
|
|
|
885
873
|
"value": "Titre"
|
|
886
874
|
}
|
|
887
875
|
],
|
|
876
|
+
"ItuhfW": [
|
|
877
|
+
{
|
|
878
|
+
"type": 0,
|
|
879
|
+
"value": "Bonne réponse"
|
|
880
|
+
}
|
|
881
|
+
],
|
|
888
882
|
"J9e9Qb": [
|
|
889
883
|
{
|
|
890
884
|
"type": 0,
|
|
@@ -951,6 +945,12 @@
|
|
|
951
945
|
"value": "Couleur de l'arrière-plan"
|
|
952
946
|
}
|
|
953
947
|
],
|
|
948
|
+
"LFziCV": [
|
|
949
|
+
{
|
|
950
|
+
"type": 0,
|
|
951
|
+
"value": "Sans icône vrai/faux"
|
|
952
|
+
}
|
|
953
|
+
],
|
|
954
954
|
"LI0Gz4": [
|
|
955
955
|
{
|
|
956
956
|
"type": 0,
|
|
@@ -985,6 +985,12 @@
|
|
|
985
985
|
"value": "Courriel"
|
|
986
986
|
}
|
|
987
987
|
],
|
|
988
|
+
"Lz2+Ws": [
|
|
989
|
+
{
|
|
990
|
+
"type": 0,
|
|
991
|
+
"value": "Rétroaction de la réponse"
|
|
992
|
+
}
|
|
993
|
+
],
|
|
988
994
|
"M/FGRs": [
|
|
989
995
|
{
|
|
990
996
|
"type": 0,
|
|
@@ -1345,12 +1351,6 @@
|
|
|
1345
1351
|
"value": "Sélectionnez un fichier de police..."
|
|
1346
1352
|
}
|
|
1347
1353
|
],
|
|
1348
|
-
"Wk/o9B": [
|
|
1349
|
-
{
|
|
1350
|
-
"type": 0,
|
|
1351
|
-
"value": "Sans vrai/faux"
|
|
1352
|
-
}
|
|
1353
|
-
],
|
|
1354
1354
|
"WlNxMj": [
|
|
1355
1355
|
{
|
|
1356
1356
|
"type": 0,
|
|
@@ -1465,12 +1465,6 @@
|
|
|
1465
1465
|
"value": "Envoyer"
|
|
1466
1466
|
}
|
|
1467
1467
|
],
|
|
1468
|
-
"ZMS1Wv": [
|
|
1469
|
-
{
|
|
1470
|
-
"type": 0,
|
|
1471
|
-
"value": "Texte"
|
|
1472
|
-
}
|
|
1473
|
-
],
|
|
1474
1468
|
"Zbu5Uk": [
|
|
1475
1469
|
{
|
|
1476
1470
|
"type": 0,
|
|
@@ -1895,6 +1889,12 @@
|
|
|
1895
1889
|
"value": "Collaborateur"
|
|
1896
1890
|
}
|
|
1897
1891
|
],
|
|
1892
|
+
"iQ5Uf7": [
|
|
1893
|
+
{
|
|
1894
|
+
"type": 0,
|
|
1895
|
+
"value": "Rétroaction"
|
|
1896
|
+
}
|
|
1897
|
+
],
|
|
1898
1898
|
"iipV5Q": [
|
|
1899
1899
|
{
|
|
1900
1900
|
"type": 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/intl",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.318",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@babel/runtime": "^7.13.10",
|
|
60
60
|
"@formatjs/cli": "^4.4.0",
|
|
61
|
-
"@micromag/core": "^0.3.
|
|
61
|
+
"@micromag/core": "^0.3.318",
|
|
62
62
|
"commander": "^8.3.0",
|
|
63
63
|
"fs-extra": "^10.0.0",
|
|
64
64
|
"gettext-parser": "^4.0.4",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "7d1a296e0c0d410e1225279e1f19e3a7715bfa96"
|
|
79
79
|
}
|