@dynamic-labs/locale 5.7.0 → 5.8.0
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 +14 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +2 -2
- package/src/lib/en/translation.cjs +7 -5
- package/src/lib/en/translation.d.ts +5 -3
- package/src/lib/en/translation.js +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
|
|
2
|
+
## [5.8.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.7.0...v5.8.0) (2026-09-09)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **solana-core:** standalone sponsored ATA creation ([#12365](https://github.com/dynamic-labs/dynamic-auth/issues/12365)) ([ac2e776](https://github.com/dynamic-labs/dynamic-auth/commit/ac2e7769fcf91c868e961a227b8acb6347bf3f13))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* do not report wallets installed from a provider selection router ([#12340](https://github.com/dynamic-labs/dynamic-auth/issues/12340)) ([dac5546](https://github.com/dynamic-labs/dynamic-auth/commit/dac5546edf6004c37bd84dd2089d94952949230b))
|
|
13
|
+
* **screening:** soften the blocked-wallet copy to be provider-neutral ([#12358](https://github.com/dynamic-labs/dynamic-auth/issues/12358)) ([b4854d8](https://github.com/dynamic-labs/dynamic-auth/commit/b4854d88fa67f684be0e133edd5fd4a4bf5c7f37))
|
|
14
|
+
* show transaction amount when simulation returns no transfers ([#12355](https://github.com/dynamic-labs/dynamic-auth/issues/12355)) ([bfaf337](https://github.com/dynamic-labs/dynamic-auth/commit/bfaf337e5350970f71255baff065e0cdbccdc7ca))
|
|
15
|
+
|
|
2
16
|
## [5.7.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.6.1...v5.7.0) (2026-09-08)
|
|
3
17
|
|
|
4
18
|
|
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": "5.
|
|
3
|
+
"version": "5.8.0",
|
|
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": "5.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "5.8.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {}
|
|
26
26
|
}
|
|
@@ -1647,15 +1647,17 @@ const translation = {
|
|
|
1647
1647
|
warning_message: 'This network is not available, please update.',
|
|
1648
1648
|
},
|
|
1649
1649
|
/**
|
|
1650
|
-
* @description copy keys for no access view
|
|
1650
|
+
* @description copy keys for no access view. The `chainalysis` key name is
|
|
1651
|
+
* historical: it drives the blocked view for every screening provider and for
|
|
1652
|
+
* customer-authored screening policies, so its copy stays generic.
|
|
1651
1653
|
* @default
|
|
1652
1654
|
* {
|
|
1653
1655
|
chainalysis: {
|
|
1654
1656
|
button_text: 'Try another method',
|
|
1655
|
-
description:
|
|
1657
|
+
description: "Access was declined based on this site's security policy.",
|
|
1656
1658
|
social_media_link_text: 'Why am I seeing this message?',
|
|
1657
1659
|
social_media_link_url: 'https://docs.dynamic.xyz/docs',
|
|
1658
|
-
title:
|
|
1660
|
+
title: "This wallet can't access this site.",
|
|
1659
1661
|
},
|
|
1660
1662
|
default: {
|
|
1661
1663
|
button_text: 'Try another method',
|
|
@@ -1674,10 +1676,10 @@ const translation = {
|
|
|
1674
1676
|
dyn_no_access: {
|
|
1675
1677
|
chainalysis: {
|
|
1676
1678
|
button_text: 'Try another method',
|
|
1677
|
-
description:
|
|
1679
|
+
description: "Access was declined based on this site's security policy.",
|
|
1678
1680
|
social_media_link_text: 'Why am I seeing this message?',
|
|
1679
1681
|
social_media_link_url: 'https://docs.dynamic.xyz/docs',
|
|
1680
|
-
title:
|
|
1682
|
+
title: "This wallet can't access this site.",
|
|
1681
1683
|
},
|
|
1682
1684
|
default: {
|
|
1683
1685
|
button_text: 'Try another method',
|
|
@@ -1643,15 +1643,17 @@ export declare const translation: {
|
|
|
1643
1643
|
warning_message: string;
|
|
1644
1644
|
};
|
|
1645
1645
|
/**
|
|
1646
|
-
* @description copy keys for no access view
|
|
1646
|
+
* @description copy keys for no access view. The `chainalysis` key name is
|
|
1647
|
+
* historical: it drives the blocked view for every screening provider and for
|
|
1648
|
+
* customer-authored screening policies, so its copy stays generic.
|
|
1647
1649
|
* @default
|
|
1648
1650
|
* {
|
|
1649
1651
|
chainalysis: {
|
|
1650
1652
|
button_text: 'Try another method',
|
|
1651
|
-
description:
|
|
1653
|
+
description: "Access was declined based on this site's security policy.",
|
|
1652
1654
|
social_media_link_text: 'Why am I seeing this message?',
|
|
1653
1655
|
social_media_link_url: 'https://docs.dynamic.xyz/docs',
|
|
1654
|
-
title:
|
|
1656
|
+
title: "This wallet can't access this site.",
|
|
1655
1657
|
},
|
|
1656
1658
|
default: {
|
|
1657
1659
|
button_text: 'Try another method',
|
|
@@ -1643,15 +1643,17 @@ const translation = {
|
|
|
1643
1643
|
warning_message: 'This network is not available, please update.',
|
|
1644
1644
|
},
|
|
1645
1645
|
/**
|
|
1646
|
-
* @description copy keys for no access view
|
|
1646
|
+
* @description copy keys for no access view. The `chainalysis` key name is
|
|
1647
|
+
* historical: it drives the blocked view for every screening provider and for
|
|
1648
|
+
* customer-authored screening policies, so its copy stays generic.
|
|
1647
1649
|
* @default
|
|
1648
1650
|
* {
|
|
1649
1651
|
chainalysis: {
|
|
1650
1652
|
button_text: 'Try another method',
|
|
1651
|
-
description:
|
|
1653
|
+
description: "Access was declined based on this site's security policy.",
|
|
1652
1654
|
social_media_link_text: 'Why am I seeing this message?',
|
|
1653
1655
|
social_media_link_url: 'https://docs.dynamic.xyz/docs',
|
|
1654
|
-
title:
|
|
1656
|
+
title: "This wallet can't access this site.",
|
|
1655
1657
|
},
|
|
1656
1658
|
default: {
|
|
1657
1659
|
button_text: 'Try another method',
|
|
@@ -1670,10 +1672,10 @@ const translation = {
|
|
|
1670
1672
|
dyn_no_access: {
|
|
1671
1673
|
chainalysis: {
|
|
1672
1674
|
button_text: 'Try another method',
|
|
1673
|
-
description:
|
|
1675
|
+
description: "Access was declined based on this site's security policy.",
|
|
1674
1676
|
social_media_link_text: 'Why am I seeing this message?',
|
|
1675
1677
|
social_media_link_url: 'https://docs.dynamic.xyz/docs',
|
|
1676
|
-
title:
|
|
1678
|
+
title: "This wallet can't access this site.",
|
|
1677
1679
|
},
|
|
1678
1680
|
default: {
|
|
1679
1681
|
button_text: 'Try another method',
|