@dynamic-labs/locale 5.6.0 → 5.7.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 +21 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +2 -2
- package/src/lib/en/translation.cjs +4 -0
- package/src/lib/en/translation.d.ts +4 -0
- package/src/lib/en/translation.js +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
|
|
2
|
+
## [5.7.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.6.1...v5.7.0) (2026-09-08)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **social:** add gemini social provider ([#12292](https://github.com/dynamic-labs/dynamic-auth/issues/12292)) ([fa72cb0](https://github.com/dynamic-labs/dynamic-auth/commit/fa72cb09f678506a5f34188eb7d62415bcb7073b))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **locale:** add missing dyn_upgrade_wallet.no_legacy_wallets and .close keys ([#12350](https://github.com/dynamic-labs/dynamic-auth/issues/12350)) ([50da3fa](https://github.com/dynamic-labs/dynamic-auth/commit/50da3fa3078de4ecbd88031a3e533a4ff6ced89b))
|
|
13
|
+
* **sdk-react-core:** expose SDK i18next instance for extension packages ([#12351](https://github.com/dynamic-labs/dynamic-auth/issues/12351)) ([f3d95b1](https://github.com/dynamic-labs/dynamic-auth/commit/f3d95b1bb1c30114d32d93dec4e9c2455ab4fdbb))
|
|
14
|
+
* **sdk-react-core:** publish ./icons and ./components subpath exports ([#12334](https://github.com/dynamic-labs/dynamic-auth/issues/12334)) ([519487c](https://github.com/dynamic-labs/dynamic-auth/commit/519487cf5f4f7abe895a125c5bf38800cae04bb5))
|
|
15
|
+
|
|
16
|
+
### [5.6.1](https://github.com/dynamic-labs/dynamic-auth/compare/v5.6.0...v5.6.1) (2026-09-01)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **sdk-react-core:** drop legacy-client dependency by moving SdkWebViewLoadState to types ([#12314](https://github.com/dynamic-labs/dynamic-auth/issues/12314)) ([8ae0110](https://github.com/dynamic-labs/dynamic-auth/commit/8ae011056604ec28de9daa5ab37c5ec2b6c378bb))
|
|
22
|
+
|
|
2
23
|
## [5.6.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.5.0...v5.6.0) (2026-09-01)
|
|
3
24
|
|
|
4
25
|
|
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.7.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.7.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {}
|
|
26
26
|
}
|
|
@@ -3177,6 +3177,8 @@ const translation = {
|
|
|
3177
3177
|
* recommended: 'recommended',
|
|
3178
3178
|
* upgrade: 'Upgrade',
|
|
3179
3179
|
* not_now: 'Not now',
|
|
3180
|
+
* no_legacy_wallets: 'You have no legacy wallets to upgrade.',
|
|
3181
|
+
* close: 'Close',
|
|
3180
3182
|
* }
|
|
3181
3183
|
*/
|
|
3182
3184
|
dyn_upgrade_wallet: {
|
|
@@ -3191,6 +3193,8 @@ const translation = {
|
|
|
3191
3193
|
recommended: 'recommended',
|
|
3192
3194
|
upgrade: 'Upgrade',
|
|
3193
3195
|
not_now: 'Not now',
|
|
3196
|
+
no_legacy_wallets: 'You have no legacy wallets to upgrade.',
|
|
3197
|
+
close: 'Close',
|
|
3194
3198
|
},
|
|
3195
3199
|
/**
|
|
3196
3200
|
* @description copy keys for Dynamic wallet upgrade flow view
|
|
@@ -3173,6 +3173,8 @@ export declare const translation: {
|
|
|
3173
3173
|
* recommended: 'recommended',
|
|
3174
3174
|
* upgrade: 'Upgrade',
|
|
3175
3175
|
* not_now: 'Not now',
|
|
3176
|
+
* no_legacy_wallets: 'You have no legacy wallets to upgrade.',
|
|
3177
|
+
* close: 'Close',
|
|
3176
3178
|
* }
|
|
3177
3179
|
*/
|
|
3178
3180
|
dyn_upgrade_wallet: {
|
|
@@ -3187,6 +3189,8 @@ export declare const translation: {
|
|
|
3187
3189
|
recommended: string;
|
|
3188
3190
|
upgrade: string;
|
|
3189
3191
|
not_now: string;
|
|
3192
|
+
no_legacy_wallets: string;
|
|
3193
|
+
close: string;
|
|
3190
3194
|
};
|
|
3191
3195
|
/**
|
|
3192
3196
|
* @description copy keys for Dynamic wallet upgrade flow view
|
|
@@ -3173,6 +3173,8 @@ const translation = {
|
|
|
3173
3173
|
* recommended: 'recommended',
|
|
3174
3174
|
* upgrade: 'Upgrade',
|
|
3175
3175
|
* not_now: 'Not now',
|
|
3176
|
+
* no_legacy_wallets: 'You have no legacy wallets to upgrade.',
|
|
3177
|
+
* close: 'Close',
|
|
3176
3178
|
* }
|
|
3177
3179
|
*/
|
|
3178
3180
|
dyn_upgrade_wallet: {
|
|
@@ -3187,6 +3189,8 @@ const translation = {
|
|
|
3187
3189
|
recommended: 'recommended',
|
|
3188
3190
|
upgrade: 'Upgrade',
|
|
3189
3191
|
not_now: 'Not now',
|
|
3192
|
+
no_legacy_wallets: 'You have no legacy wallets to upgrade.',
|
|
3193
|
+
close: 'Close',
|
|
3190
3194
|
},
|
|
3191
3195
|
/**
|
|
3192
3196
|
* @description copy keys for Dynamic wallet upgrade flow view
|