@rango-dev/ui 0.17.1-next.10 → 0.17.1-next.11
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/dist/index.js +6 -6
- package/dist/index.js.map +3 -3
- package/dist/translations/en/messages.d.ts +2 -0
- package/dist/translations/en/messages.d.ts.map +1 -0
- package/dist/translations/es/messages.d.ts +2 -0
- package/dist/translations/es/messages.d.ts.map +1 -0
- package/dist/translations/fr/messages.d.ts +2 -0
- package/dist/translations/fr/messages.d.ts.map +1 -0
- package/dist/translations/ja/messages.d.ts +2 -0
- package/dist/translations/ja/messages.d.ts.map +1 -0
- package/dist/widget/ui/src/components/I18nManager/I18nManager.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/I18nManager/I18nManager.tsx +5 -5
- package/src/components/SwapDetailsPlaceholder/SwapDetailsPlaceholder.tsx +1 -1
- package/dist/translations/en.d.ts +0 -2
- package/dist/translations/en.d.ts.map +0 -1
- package/dist/translations/es.d.ts +0 -2
- package/dist/translations/es.d.ts.map +0 -1
- package/dist/translations/fr.d.ts +0 -2
- package/dist/translations/fr.d.ts.map +0 -1
- package/dist/translations/jp.d.ts +0 -2
- package/dist/translations/jp.d.ts.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../../../../translations/en/messages.ts"],"names":[],"mappings":"AAAkB,eAAO,MAAM,QAAQ,KAAitR,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../../../../translations/es/messages.ts"],"names":[],"mappings":"AAAkB,eAAO,MAAM,QAAQ,KAAu5S,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../../../../translations/fr/messages.ts"],"names":[],"mappings":"AAAkB,eAAO,MAAM,QAAQ,KAAmkT,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../../../../translations/ja/messages.ts"],"names":[],"mappings":"AAAkB,eAAO,MAAM,QAAQ,KAAwuO,CAAC"}
|
package/package.json
CHANGED
|
@@ -11,15 +11,15 @@ import React, { useEffect, useReducer } from 'react';
|
|
|
11
11
|
* "translations/*": ["../../translations/*"]
|
|
12
12
|
*}
|
|
13
13
|
*/
|
|
14
|
-
import { messages as enMessages } from '../../../../../translations/en';
|
|
15
|
-
import { messages as esMessages } from '../../../../../translations/es';
|
|
16
|
-
import { messages as frMessages } from '../../../../../translations/fr';
|
|
17
|
-
import { messages as
|
|
14
|
+
import { messages as enMessages } from '../../../../../translations/en/messages';
|
|
15
|
+
import { messages as esMessages } from '../../../../../translations/es/messages';
|
|
16
|
+
import { messages as frMessages } from '../../../../../translations/fr/messages';
|
|
17
|
+
import { messages as jaMessages } from '../../../../../translations/ja/messages';
|
|
18
18
|
|
|
19
19
|
const messages = {
|
|
20
20
|
en: enMessages,
|
|
21
21
|
es: esMessages,
|
|
22
|
-
|
|
22
|
+
ja: jaMessages,
|
|
23
23
|
fr: frMessages,
|
|
24
24
|
};
|
|
25
25
|
|
|
@@ -39,7 +39,7 @@ export function SwapDetailsPlaceholder(props: PropTypes) {
|
|
|
39
39
|
title={i18n.t(
|
|
40
40
|
'swapNotFound',
|
|
41
41
|
{ requestId },
|
|
42
|
-
{ message: 'Swap with request ID =
|
|
42
|
+
{ message: 'Swap with request ID = {requestId} not found.' }
|
|
43
43
|
)}
|
|
44
44
|
/>
|
|
45
45
|
)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../../translations/en.ts"],"names":[],"mappings":"AAAkB,eAAO,MAAM,QAAQ,KAAykV,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../../../translations/es.ts"],"names":[],"mappings":"AAAkB,eAAO,MAAM,QAAQ,KAAu8V,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"fr.d.ts","sourceRoot":"","sources":["../../../../translations/fr.ts"],"names":[],"mappings":"AAAkB,eAAO,MAAM,QAAQ,KAAkvV,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"jp.d.ts","sourceRoot":"","sources":["../../../../translations/jp.ts"],"names":[],"mappings":"AAAkB,eAAO,MAAM,QAAQ,KAAkvV,CAAC"}
|