@micromag/intl 0.3.311 → 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 +54 -19
- package/locale/fr.js +54 -19
- package/locale/fr.json +66 -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é"
|
|
@@ -601,6 +601,10 @@ var bv3rRe = [{
|
|
|
601
601
|
type: 0,
|
|
602
602
|
value: "Bouton"
|
|
603
603
|
}];
|
|
604
|
+
var c7rrcG = [{
|
|
605
|
+
type: 0,
|
|
606
|
+
value: "Avec ligne anmée"
|
|
607
|
+
}];
|
|
604
608
|
var cDj1mZ = [{
|
|
605
609
|
type: 0,
|
|
606
610
|
value: "Arrière-plan"
|
|
@@ -773,6 +777,10 @@ var iL9RLu = [{
|
|
|
773
777
|
type: 0,
|
|
774
778
|
value: "Collaborateur"
|
|
775
779
|
}];
|
|
780
|
+
var iQ5Uf7 = [{
|
|
781
|
+
type: 0,
|
|
782
|
+
value: "Rétroaction"
|
|
783
|
+
}];
|
|
776
784
|
var iipV5Q = [{
|
|
777
785
|
type: 0,
|
|
778
786
|
value: "Type"
|
|
@@ -833,6 +841,10 @@ var mXeSkg = [{
|
|
|
833
841
|
type: 0,
|
|
834
842
|
value: "Lien"
|
|
835
843
|
}];
|
|
844
|
+
var mgjMWG = [{
|
|
845
|
+
type: 0,
|
|
846
|
+
value: "colonnes"
|
|
847
|
+
}];
|
|
836
848
|
var muYwrB = [{
|
|
837
849
|
type: 0,
|
|
838
850
|
value: "Images"
|
|
@@ -889,6 +901,10 @@ var opcGwP = [{
|
|
|
889
901
|
type: 0,
|
|
890
902
|
value: "Ajouter un interlocuteur"
|
|
891
903
|
}];
|
|
904
|
+
var p1pghO = [{
|
|
905
|
+
type: 0,
|
|
906
|
+
value: "Style de boîte"
|
|
907
|
+
}];
|
|
892
908
|
var p5RHzq = [{
|
|
893
909
|
type: 0,
|
|
894
910
|
value: "Style du texte des boutons"
|
|
@@ -1049,6 +1065,10 @@ var uSpItE = [{
|
|
|
1049
1065
|
type: 0,
|
|
1050
1066
|
value: "Ajouter des étiquettes..."
|
|
1051
1067
|
}];
|
|
1068
|
+
var uaL28k = [{
|
|
1069
|
+
type: 0,
|
|
1070
|
+
value: "Suggestion de partage"
|
|
1071
|
+
}];
|
|
1052
1072
|
var udLCuY = [{
|
|
1053
1073
|
type: 0,
|
|
1054
1074
|
value: "Ombre"
|
|
@@ -1185,6 +1205,10 @@ var z4CiV1 = [{
|
|
|
1185
1205
|
type: 0,
|
|
1186
1206
|
value: "Texte"
|
|
1187
1207
|
}];
|
|
1208
|
+
var z9nSIG = [{
|
|
1209
|
+
type: 0,
|
|
1210
|
+
value: "Style de texte du contenu"
|
|
1211
|
+
}];
|
|
1188
1212
|
var zDH24s = [{
|
|
1189
1213
|
type: 0,
|
|
1190
1214
|
value: "Latitude"
|
|
@@ -1205,6 +1229,10 @@ var zl6zsZ = [{
|
|
|
1205
1229
|
type: 0,
|
|
1206
1230
|
value: "Chapeau"
|
|
1207
1231
|
}];
|
|
1232
|
+
var zrK6ak = [{
|
|
1233
|
+
type: 0,
|
|
1234
|
+
value: "Style de texte de l'en-tête"
|
|
1235
|
+
}];
|
|
1208
1236
|
var messages = {
|
|
1209
1237
|
"+9akmg": [{
|
|
1210
1238
|
type: 0,
|
|
@@ -1349,10 +1377,6 @@ var messages = {
|
|
|
1349
1377
|
type: 0,
|
|
1350
1378
|
value: "Angle"
|
|
1351
1379
|
}],
|
|
1352
|
-
"3NghmM": [{
|
|
1353
|
-
type: 0,
|
|
1354
|
-
value: "Bonne réponse"
|
|
1355
|
-
}],
|
|
1356
1380
|
"3OS3Ms": [{
|
|
1357
1381
|
type: 0,
|
|
1358
1382
|
value: "Légende"
|
|
@@ -1617,7 +1641,6 @@ var messages = {
|
|
|
1617
1641
|
value: "Boucle"
|
|
1618
1642
|
}],
|
|
1619
1643
|
F59wsl: F59wsl,
|
|
1620
|
-
FJygXH: FJygXH,
|
|
1621
1644
|
FKOWH0: FKOWH0,
|
|
1622
1645
|
FOmgqv: FOmgqv,
|
|
1623
1646
|
FjuRaw: FjuRaw,
|
|
@@ -1650,6 +1673,7 @@ var messages = {
|
|
|
1650
1673
|
type: 0,
|
|
1651
1674
|
value: "Titre"
|
|
1652
1675
|
}],
|
|
1676
|
+
ItuhfW: ItuhfW,
|
|
1653
1677
|
J9e9Qb: J9e9Qb,
|
|
1654
1678
|
JAguka: JAguka,
|
|
1655
1679
|
JC9Qlf: JC9Qlf,
|
|
@@ -1661,6 +1685,7 @@ var messages = {
|
|
|
1661
1685
|
KCDOHI: KCDOHI,
|
|
1662
1686
|
KHWeV7: KHWeV7,
|
|
1663
1687
|
KuzZbb: KuzZbb,
|
|
1688
|
+
LFziCV: LFziCV,
|
|
1664
1689
|
LI0Gz4: LI0Gz4,
|
|
1665
1690
|
LOknw0: LOknw0,
|
|
1666
1691
|
LkVfwW: LkVfwW,
|
|
@@ -1669,6 +1694,10 @@ var messages = {
|
|
|
1669
1694
|
value: "Ajouter un bouton"
|
|
1670
1695
|
}],
|
|
1671
1696
|
Lrwi2G: Lrwi2G,
|
|
1697
|
+
"Lz2+Ws": [{
|
|
1698
|
+
type: 0,
|
|
1699
|
+
value: "Rétroaction de la réponse"
|
|
1700
|
+
}],
|
|
1672
1701
|
"M/FGRs": [{
|
|
1673
1702
|
type: 0,
|
|
1674
1703
|
value: "Balance"
|
|
@@ -1765,10 +1794,6 @@ var messages = {
|
|
|
1765
1794
|
W5qWPj: W5qWPj,
|
|
1766
1795
|
WY14Zu: WY14Zu,
|
|
1767
1796
|
Wb5zY4: Wb5zY4,
|
|
1768
|
-
"Wk/o9B": [{
|
|
1769
|
-
type: 0,
|
|
1770
|
-
value: "Sans vrai/faux"
|
|
1771
|
-
}],
|
|
1772
1797
|
WlNxMj: WlNxMj,
|
|
1773
1798
|
Wr9olU: Wr9olU,
|
|
1774
1799
|
X7kRRa: X7kRRa,
|
|
@@ -1794,7 +1819,6 @@ var messages = {
|
|
|
1794
1819
|
Z5jrDS: Z5jrDS,
|
|
1795
1820
|
ZCe0r4: ZCe0r4,
|
|
1796
1821
|
ZLDmja: ZLDmja,
|
|
1797
|
-
ZMS1Wv: ZMS1Wv,
|
|
1798
1822
|
Zbu5Uk: Zbu5Uk,
|
|
1799
1823
|
ZeosMy: ZeosMy,
|
|
1800
1824
|
ZiWlL6: ZiWlL6,
|
|
@@ -1810,6 +1834,7 @@ var messages = {
|
|
|
1810
1834
|
bQsPrs: bQsPrs,
|
|
1811
1835
|
bhEaUt: bhEaUt,
|
|
1812
1836
|
bv3rRe: bv3rRe,
|
|
1837
|
+
c7rrcG: c7rrcG,
|
|
1813
1838
|
"c9VwT/": [{
|
|
1814
1839
|
type: 0,
|
|
1815
1840
|
value: "Détails techniques"
|
|
@@ -1819,6 +1844,10 @@ var messages = {
|
|
|
1819
1844
|
ceaRdq: ceaRdq,
|
|
1820
1845
|
crLqJd: crLqJd,
|
|
1821
1846
|
cuKSQz: cuKSQz,
|
|
1847
|
+
"d/01YO": [{
|
|
1848
|
+
type: 0,
|
|
1849
|
+
value: "Partagez ce micromag!"
|
|
1850
|
+
}],
|
|
1822
1851
|
d60tSn: d60tSn,
|
|
1823
1852
|
dCG1T1: dCG1T1,
|
|
1824
1853
|
dFMzBu: dFMzBu,
|
|
@@ -1885,6 +1914,7 @@ var messages = {
|
|
|
1885
1914
|
i6bmbD: i6bmbD,
|
|
1886
1915
|
iHV3W3: iHV3W3,
|
|
1887
1916
|
iL9RLu: iL9RLu,
|
|
1917
|
+
iQ5Uf7: iQ5Uf7,
|
|
1888
1918
|
iipV5Q: iipV5Q,
|
|
1889
1919
|
irG6mX: irG6mX,
|
|
1890
1920
|
jEK6B8: jEK6B8,
|
|
@@ -1928,6 +1958,7 @@ var messages = {
|
|
|
1928
1958
|
type: 0,
|
|
1929
1959
|
value: "Précédent"
|
|
1930
1960
|
}],
|
|
1961
|
+
mgjMWG: mgjMWG,
|
|
1931
1962
|
"mlucL+": [{
|
|
1932
1963
|
type: 0,
|
|
1933
1964
|
value: "Twitter"
|
|
@@ -1950,6 +1981,7 @@ var messages = {
|
|
|
1950
1981
|
oLtEu6: oLtEu6,
|
|
1951
1982
|
oPjl8f: oPjl8f,
|
|
1952
1983
|
opcGwP: opcGwP,
|
|
1984
|
+
p1pghO: p1pghO,
|
|
1953
1985
|
p5RHzq: p5RHzq,
|
|
1954
1986
|
p6n6vY: p6n6vY,
|
|
1955
1987
|
"p6q/+/": [{
|
|
@@ -2010,6 +2042,7 @@ var messages = {
|
|
|
2010
2042
|
uKJRh2: uKJRh2,
|
|
2011
2043
|
uNpHnA: uNpHnA,
|
|
2012
2044
|
uSpItE: uSpItE,
|
|
2045
|
+
uaL28k: uaL28k,
|
|
2013
2046
|
udLCuY: udLCuY,
|
|
2014
2047
|
uiTxd7: uiTxd7,
|
|
2015
2048
|
uoF5Pv: uoF5Pv,
|
|
@@ -2068,6 +2101,7 @@ var messages = {
|
|
|
2068
2101
|
type: 0,
|
|
2069
2102
|
value: "Visuel (image ou vidéo)"
|
|
2070
2103
|
}],
|
|
2104
|
+
z9nSIG: z9nSIG,
|
|
2071
2105
|
zDH24s: zDH24s,
|
|
2072
2106
|
zDdDqI: zDdDqI,
|
|
2073
2107
|
zGIcdn: zGIcdn,
|
|
@@ -2080,7 +2114,8 @@ var messages = {
|
|
|
2080
2114
|
type: 0,
|
|
2081
2115
|
value: "Rechercher une police..."
|
|
2082
2116
|
}],
|
|
2083
|
-
zl6zsZ: zl6zsZ
|
|
2117
|
+
zl6zsZ: zl6zsZ,
|
|
2118
|
+
zrK6ak: zrK6ak
|
|
2084
2119
|
};
|
|
2085
2120
|
|
|
2086
2121
|
/* eslint-disable */
|
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é"
|
|
@@ -595,6 +595,10 @@ var bv3rRe = [{
|
|
|
595
595
|
type: 0,
|
|
596
596
|
value: "Bouton"
|
|
597
597
|
}];
|
|
598
|
+
var c7rrcG = [{
|
|
599
|
+
type: 0,
|
|
600
|
+
value: "Avec ligne anmée"
|
|
601
|
+
}];
|
|
598
602
|
var cDj1mZ = [{
|
|
599
603
|
type: 0,
|
|
600
604
|
value: "Arrière-plan"
|
|
@@ -767,6 +771,10 @@ var iL9RLu = [{
|
|
|
767
771
|
type: 0,
|
|
768
772
|
value: "Collaborateur"
|
|
769
773
|
}];
|
|
774
|
+
var iQ5Uf7 = [{
|
|
775
|
+
type: 0,
|
|
776
|
+
value: "Rétroaction"
|
|
777
|
+
}];
|
|
770
778
|
var iipV5Q = [{
|
|
771
779
|
type: 0,
|
|
772
780
|
value: "Type"
|
|
@@ -827,6 +835,10 @@ var mXeSkg = [{
|
|
|
827
835
|
type: 0,
|
|
828
836
|
value: "Lien"
|
|
829
837
|
}];
|
|
838
|
+
var mgjMWG = [{
|
|
839
|
+
type: 0,
|
|
840
|
+
value: "colonnes"
|
|
841
|
+
}];
|
|
830
842
|
var muYwrB = [{
|
|
831
843
|
type: 0,
|
|
832
844
|
value: "Images"
|
|
@@ -883,6 +895,10 @@ var opcGwP = [{
|
|
|
883
895
|
type: 0,
|
|
884
896
|
value: "Ajouter un interlocuteur"
|
|
885
897
|
}];
|
|
898
|
+
var p1pghO = [{
|
|
899
|
+
type: 0,
|
|
900
|
+
value: "Style de boîte"
|
|
901
|
+
}];
|
|
886
902
|
var p5RHzq = [{
|
|
887
903
|
type: 0,
|
|
888
904
|
value: "Style du texte des boutons"
|
|
@@ -1043,6 +1059,10 @@ var uSpItE = [{
|
|
|
1043
1059
|
type: 0,
|
|
1044
1060
|
value: "Ajouter des étiquettes..."
|
|
1045
1061
|
}];
|
|
1062
|
+
var uaL28k = [{
|
|
1063
|
+
type: 0,
|
|
1064
|
+
value: "Suggestion de partage"
|
|
1065
|
+
}];
|
|
1046
1066
|
var udLCuY = [{
|
|
1047
1067
|
type: 0,
|
|
1048
1068
|
value: "Ombre"
|
|
@@ -1179,6 +1199,10 @@ var z4CiV1 = [{
|
|
|
1179
1199
|
type: 0,
|
|
1180
1200
|
value: "Texte"
|
|
1181
1201
|
}];
|
|
1202
|
+
var z9nSIG = [{
|
|
1203
|
+
type: 0,
|
|
1204
|
+
value: "Style de texte du contenu"
|
|
1205
|
+
}];
|
|
1182
1206
|
var zDH24s = [{
|
|
1183
1207
|
type: 0,
|
|
1184
1208
|
value: "Latitude"
|
|
@@ -1199,6 +1223,10 @@ var zl6zsZ = [{
|
|
|
1199
1223
|
type: 0,
|
|
1200
1224
|
value: "Chapeau"
|
|
1201
1225
|
}];
|
|
1226
|
+
var zrK6ak = [{
|
|
1227
|
+
type: 0,
|
|
1228
|
+
value: "Style de texte de l'en-tête"
|
|
1229
|
+
}];
|
|
1202
1230
|
var messages = {
|
|
1203
1231
|
"+9akmg": [{
|
|
1204
1232
|
type: 0,
|
|
@@ -1343,10 +1371,6 @@ var messages = {
|
|
|
1343
1371
|
type: 0,
|
|
1344
1372
|
value: "Angle"
|
|
1345
1373
|
}],
|
|
1346
|
-
"3NghmM": [{
|
|
1347
|
-
type: 0,
|
|
1348
|
-
value: "Bonne réponse"
|
|
1349
|
-
}],
|
|
1350
1374
|
"3OS3Ms": [{
|
|
1351
1375
|
type: 0,
|
|
1352
1376
|
value: "Légende"
|
|
@@ -1611,7 +1635,6 @@ var messages = {
|
|
|
1611
1635
|
value: "Boucle"
|
|
1612
1636
|
}],
|
|
1613
1637
|
F59wsl: F59wsl,
|
|
1614
|
-
FJygXH: FJygXH,
|
|
1615
1638
|
FKOWH0: FKOWH0,
|
|
1616
1639
|
FOmgqv: FOmgqv,
|
|
1617
1640
|
FjuRaw: FjuRaw,
|
|
@@ -1644,6 +1667,7 @@ var messages = {
|
|
|
1644
1667
|
type: 0,
|
|
1645
1668
|
value: "Titre"
|
|
1646
1669
|
}],
|
|
1670
|
+
ItuhfW: ItuhfW,
|
|
1647
1671
|
J9e9Qb: J9e9Qb,
|
|
1648
1672
|
JAguka: JAguka,
|
|
1649
1673
|
JC9Qlf: JC9Qlf,
|
|
@@ -1655,6 +1679,7 @@ var messages = {
|
|
|
1655
1679
|
KCDOHI: KCDOHI,
|
|
1656
1680
|
KHWeV7: KHWeV7,
|
|
1657
1681
|
KuzZbb: KuzZbb,
|
|
1682
|
+
LFziCV: LFziCV,
|
|
1658
1683
|
LI0Gz4: LI0Gz4,
|
|
1659
1684
|
LOknw0: LOknw0,
|
|
1660
1685
|
LkVfwW: LkVfwW,
|
|
@@ -1663,6 +1688,10 @@ var messages = {
|
|
|
1663
1688
|
value: "Ajouter un bouton"
|
|
1664
1689
|
}],
|
|
1665
1690
|
Lrwi2G: Lrwi2G,
|
|
1691
|
+
"Lz2+Ws": [{
|
|
1692
|
+
type: 0,
|
|
1693
|
+
value: "Rétroaction de la réponse"
|
|
1694
|
+
}],
|
|
1666
1695
|
"M/FGRs": [{
|
|
1667
1696
|
type: 0,
|
|
1668
1697
|
value: "Balance"
|
|
@@ -1759,10 +1788,6 @@ var messages = {
|
|
|
1759
1788
|
W5qWPj: W5qWPj,
|
|
1760
1789
|
WY14Zu: WY14Zu,
|
|
1761
1790
|
Wb5zY4: Wb5zY4,
|
|
1762
|
-
"Wk/o9B": [{
|
|
1763
|
-
type: 0,
|
|
1764
|
-
value: "Sans vrai/faux"
|
|
1765
|
-
}],
|
|
1766
1791
|
WlNxMj: WlNxMj,
|
|
1767
1792
|
Wr9olU: Wr9olU,
|
|
1768
1793
|
X7kRRa: X7kRRa,
|
|
@@ -1788,7 +1813,6 @@ var messages = {
|
|
|
1788
1813
|
Z5jrDS: Z5jrDS,
|
|
1789
1814
|
ZCe0r4: ZCe0r4,
|
|
1790
1815
|
ZLDmja: ZLDmja,
|
|
1791
|
-
ZMS1Wv: ZMS1Wv,
|
|
1792
1816
|
Zbu5Uk: Zbu5Uk,
|
|
1793
1817
|
ZeosMy: ZeosMy,
|
|
1794
1818
|
ZiWlL6: ZiWlL6,
|
|
@@ -1804,6 +1828,7 @@ var messages = {
|
|
|
1804
1828
|
bQsPrs: bQsPrs,
|
|
1805
1829
|
bhEaUt: bhEaUt,
|
|
1806
1830
|
bv3rRe: bv3rRe,
|
|
1831
|
+
c7rrcG: c7rrcG,
|
|
1807
1832
|
"c9VwT/": [{
|
|
1808
1833
|
type: 0,
|
|
1809
1834
|
value: "Détails techniques"
|
|
@@ -1813,6 +1838,10 @@ var messages = {
|
|
|
1813
1838
|
ceaRdq: ceaRdq,
|
|
1814
1839
|
crLqJd: crLqJd,
|
|
1815
1840
|
cuKSQz: cuKSQz,
|
|
1841
|
+
"d/01YO": [{
|
|
1842
|
+
type: 0,
|
|
1843
|
+
value: "Partagez ce micromag!"
|
|
1844
|
+
}],
|
|
1816
1845
|
d60tSn: d60tSn,
|
|
1817
1846
|
dCG1T1: dCG1T1,
|
|
1818
1847
|
dFMzBu: dFMzBu,
|
|
@@ -1879,6 +1908,7 @@ var messages = {
|
|
|
1879
1908
|
i6bmbD: i6bmbD,
|
|
1880
1909
|
iHV3W3: iHV3W3,
|
|
1881
1910
|
iL9RLu: iL9RLu,
|
|
1911
|
+
iQ5Uf7: iQ5Uf7,
|
|
1882
1912
|
iipV5Q: iipV5Q,
|
|
1883
1913
|
irG6mX: irG6mX,
|
|
1884
1914
|
jEK6B8: jEK6B8,
|
|
@@ -1922,6 +1952,7 @@ var messages = {
|
|
|
1922
1952
|
type: 0,
|
|
1923
1953
|
value: "Précédent"
|
|
1924
1954
|
}],
|
|
1955
|
+
mgjMWG: mgjMWG,
|
|
1925
1956
|
"mlucL+": [{
|
|
1926
1957
|
type: 0,
|
|
1927
1958
|
value: "Twitter"
|
|
@@ -1944,6 +1975,7 @@ var messages = {
|
|
|
1944
1975
|
oLtEu6: oLtEu6,
|
|
1945
1976
|
oPjl8f: oPjl8f,
|
|
1946
1977
|
opcGwP: opcGwP,
|
|
1978
|
+
p1pghO: p1pghO,
|
|
1947
1979
|
p5RHzq: p5RHzq,
|
|
1948
1980
|
p6n6vY: p6n6vY,
|
|
1949
1981
|
"p6q/+/": [{
|
|
@@ -2004,6 +2036,7 @@ var messages = {
|
|
|
2004
2036
|
uKJRh2: uKJRh2,
|
|
2005
2037
|
uNpHnA: uNpHnA,
|
|
2006
2038
|
uSpItE: uSpItE,
|
|
2039
|
+
uaL28k: uaL28k,
|
|
2007
2040
|
udLCuY: udLCuY,
|
|
2008
2041
|
uiTxd7: uiTxd7,
|
|
2009
2042
|
uoF5Pv: uoF5Pv,
|
|
@@ -2062,6 +2095,7 @@ var messages = {
|
|
|
2062
2095
|
type: 0,
|
|
2063
2096
|
value: "Visuel (image ou vidéo)"
|
|
2064
2097
|
}],
|
|
2098
|
+
z9nSIG: z9nSIG,
|
|
2065
2099
|
zDH24s: zDH24s,
|
|
2066
2100
|
zDdDqI: zDdDqI,
|
|
2067
2101
|
zGIcdn: zGIcdn,
|
|
@@ -2074,7 +2108,8 @@ var messages = {
|
|
|
2074
2108
|
type: 0,
|
|
2075
2109
|
value: "Rechercher une police..."
|
|
2076
2110
|
}],
|
|
2077
|
-
zl6zsZ: zl6zsZ
|
|
2111
|
+
zl6zsZ: zl6zsZ,
|
|
2112
|
+
zrK6ak: zrK6ak
|
|
2078
2113
|
};
|
|
2079
2114
|
|
|
2080
2115
|
/* eslint-disable */
|
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,
|
|
@@ -1577,6 +1571,12 @@
|
|
|
1577
1571
|
"value": "Bouton"
|
|
1578
1572
|
}
|
|
1579
1573
|
],
|
|
1574
|
+
"c7rrcG": [
|
|
1575
|
+
{
|
|
1576
|
+
"type": 0,
|
|
1577
|
+
"value": "Avec ligne anmée"
|
|
1578
|
+
}
|
|
1579
|
+
],
|
|
1580
1580
|
"c9VwT/": [
|
|
1581
1581
|
{
|
|
1582
1582
|
"type": 0,
|
|
@@ -1613,6 +1613,12 @@
|
|
|
1613
1613
|
"value": "Chapeau"
|
|
1614
1614
|
}
|
|
1615
1615
|
],
|
|
1616
|
+
"d/01YO": [
|
|
1617
|
+
{
|
|
1618
|
+
"type": 0,
|
|
1619
|
+
"value": "Partagez ce micromag!"
|
|
1620
|
+
}
|
|
1621
|
+
],
|
|
1616
1622
|
"d60tSn": [
|
|
1617
1623
|
{
|
|
1618
1624
|
"type": 0,
|
|
@@ -1883,6 +1889,12 @@
|
|
|
1883
1889
|
"value": "Collaborateur"
|
|
1884
1890
|
}
|
|
1885
1891
|
],
|
|
1892
|
+
"iQ5Uf7": [
|
|
1893
|
+
{
|
|
1894
|
+
"type": 0,
|
|
1895
|
+
"value": "Rétroaction"
|
|
1896
|
+
}
|
|
1897
|
+
],
|
|
1886
1898
|
"iipV5Q": [
|
|
1887
1899
|
{
|
|
1888
1900
|
"type": 0,
|
|
@@ -2015,6 +2027,12 @@
|
|
|
2015
2027
|
"value": "Précédent"
|
|
2016
2028
|
}
|
|
2017
2029
|
],
|
|
2030
|
+
"mgjMWG": [
|
|
2031
|
+
{
|
|
2032
|
+
"type": 0,
|
|
2033
|
+
"value": "colonnes"
|
|
2034
|
+
}
|
|
2035
|
+
],
|
|
2018
2036
|
"mlucL+": [
|
|
2019
2037
|
{
|
|
2020
2038
|
"type": 0,
|
|
@@ -2111,6 +2129,12 @@
|
|
|
2111
2129
|
"value": "Ajouter un interlocuteur"
|
|
2112
2130
|
}
|
|
2113
2131
|
],
|
|
2132
|
+
"p1pghO": [
|
|
2133
|
+
{
|
|
2134
|
+
"type": 0,
|
|
2135
|
+
"value": "Style de boîte"
|
|
2136
|
+
}
|
|
2137
|
+
],
|
|
2114
2138
|
"p5RHzq": [
|
|
2115
2139
|
{
|
|
2116
2140
|
"type": 0,
|
|
@@ -2381,6 +2405,12 @@
|
|
|
2381
2405
|
"value": "Ajouter des étiquettes..."
|
|
2382
2406
|
}
|
|
2383
2407
|
],
|
|
2408
|
+
"uaL28k": [
|
|
2409
|
+
{
|
|
2410
|
+
"type": 0,
|
|
2411
|
+
"value": "Suggestion de partage"
|
|
2412
|
+
}
|
|
2413
|
+
],
|
|
2384
2414
|
"udLCuY": [
|
|
2385
2415
|
{
|
|
2386
2416
|
"type": 0,
|
|
@@ -2621,6 +2651,12 @@
|
|
|
2621
2651
|
"value": "Visuel (image ou vidéo)"
|
|
2622
2652
|
}
|
|
2623
2653
|
],
|
|
2654
|
+
"z9nSIG": [
|
|
2655
|
+
{
|
|
2656
|
+
"type": 0,
|
|
2657
|
+
"value": "Style de texte du contenu"
|
|
2658
|
+
}
|
|
2659
|
+
],
|
|
2624
2660
|
"zDH24s": [
|
|
2625
2661
|
{
|
|
2626
2662
|
"type": 0,
|
|
@@ -2662,5 +2698,11 @@
|
|
|
2662
2698
|
"type": 0,
|
|
2663
2699
|
"value": "Chapeau"
|
|
2664
2700
|
}
|
|
2701
|
+
],
|
|
2702
|
+
"zrK6ak": [
|
|
2703
|
+
{
|
|
2704
|
+
"type": 0,
|
|
2705
|
+
"value": "Style de texte de l'en-tête"
|
|
2706
|
+
}
|
|
2665
2707
|
]
|
|
2666
2708
|
}
|
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
|
}
|