@dynamic-labs/locale 4.59.1 → 4.59.2
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/CHANGELOG.md +13 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +2 -2
- package/src/lib/en/translation.cjs +2 -0
- package/src/lib/en/translation.d.ts +2 -0
- package/src/lib/en/translation.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.59.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.59.1...v4.59.2) (2026-02-03)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add more copykeys in the send widget. ([#10271](https://github.com/dynamic-labs/dynamic-auth/issues/10271)) ([d62c4c5](https://github.com/dynamic-labs/dynamic-auth/commit/d62c4c50feaebb2449b1b3b8372638257761a729))
|
|
8
|
+
* add StellarWalletConnector ([#10249](https://github.com/dynamic-labs/dynamic-auth/issues/10249)) ([152b400](https://github.com/dynamic-labs/dynamic-auth/commit/152b4001fd17f3f11581e66502edd6e17b51ecd0))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* filter delegated wallets to only include EVM and Solana chains ([#10237](https://github.com/dynamic-labs/dynamic-auth/issues/10237)) ([53f9b00](https://github.com/dynamic-labs/dynamic-auth/commit/53f9b003b95dcd11ea380893f28085362e42f252))
|
|
14
|
+
|
|
2
15
|
### [4.59.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.59.0...v4.59.1) (2026-01-30)
|
|
3
16
|
|
|
4
17
|
This was a version bump only, there were no code changes.
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/locale",
|
|
3
|
-
"version": "4.59.
|
|
3
|
+
"version": "4.59.2",
|
|
4
4
|
"description": "Locale for Dynamic SDK",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"i18next": "23.4.6",
|
|
22
22
|
"react-i18next": "13.5.0",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.59.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.59.2"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {}
|
|
26
26
|
}
|
|
@@ -2285,6 +2285,8 @@ const translation = {
|
|
|
2285
2285
|
label: 'Address',
|
|
2286
2286
|
placeholder: 'Enter wallet address...',
|
|
2287
2287
|
},
|
|
2288
|
+
select_token: 'Select any token',
|
|
2289
|
+
symbol_available: '{{symbol}} Available',
|
|
2288
2290
|
},
|
|
2289
2291
|
multiple_recipients: 'Multiple',
|
|
2290
2292
|
preview_transaction: 'Preview transaction',
|
|
@@ -2281,6 +2281,8 @@ const translation = {
|
|
|
2281
2281
|
label: 'Address',
|
|
2282
2282
|
placeholder: 'Enter wallet address...',
|
|
2283
2283
|
},
|
|
2284
|
+
select_token: 'Select any token',
|
|
2285
|
+
symbol_available: '{{symbol}} Available',
|
|
2284
2286
|
},
|
|
2285
2287
|
multiple_recipients: 'Multiple',
|
|
2286
2288
|
preview_transaction: 'Preview transaction',
|