@dynamic-labs/locale 4.47.2 → 4.48.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 CHANGED
@@ -1,4 +1,21 @@
1
1
 
2
+ ## [4.48.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.47.3...v4.48.0) (2025-12-01)
3
+
4
+
5
+ ### Features
6
+
7
+ * export share view ([#9973](https://github.com/dynamic-labs/dynamic-auth/issues/9973)) ([41831bf](https://github.com/dynamic-labs/dynamic-auth/commit/41831bf31f5661fae3a6664643f7b2e7875df137))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * add logout button to MFA verification view ([#9972](https://github.com/dynamic-labs/dynamic-auth/issues/9972)) ([240a286](https://github.com/dynamic-labs/dynamic-auth/commit/240a2864ca92ff2262720797001327b5721bd894))
13
+ * allow user to login with MFA after logout ([#9975](https://github.com/dynamic-labs/dynamic-auth/issues/9975)) ([b404874](https://github.com/dynamic-labs/dynamic-auth/commit/b404874d65ffca166f8f2e8289a6624c685fa257))
14
+ * issue connecting with custom cosmos chain using Keplr wallet ([#9995](https://github.com/dynamic-labs/dynamic-auth/issues/9995)) ([8e045ea](https://github.com/dynamic-labs/dynamic-auth/commit/8e045ea084299f5264ae7a7515fd8d68d4f9caf2))
15
+ * support waas wallet for cookie-auth with optional custom KeyshareRelayBaseUrl ([#9994](https://github.com/dynamic-labs/dynamic-auth/issues/9994)) ([d768378](https://github.com/dynamic-labs/dynamic-auth/commit/d768378693a1cd11e89b0f59f8219ac9fd8690f9))
16
+
17
+ ### [4.47.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.47.2...v4.47.3) (2025-11-27)
18
+
2
19
  ### [4.47.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.47.1...v4.47.2) (2025-11-27)
3
20
 
4
21
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.47.2";
6
+ var version = "4.48.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.47.2";
2
+ var version = "4.48.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/locale",
3
- "version": "4.47.2",
3
+ "version": "4.48.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": "4.47.2"
23
+ "@dynamic-labs/assert-package-version": "4.48.0"
24
24
  },
25
25
  "peerDependencies": {}
26
26
  }
@@ -1345,6 +1345,7 @@ const translation = {
1345
1345
  error: 'Invalid code. Please try again.',
1346
1346
  rate_limit_error: 'Too many attempts, please try again later.',
1347
1347
  choose_another_method: 'Use a different method',
1348
+ logout: 'Log out',
1348
1349
  },
1349
1350
  secure_device_view: {
1350
1351
  title: 'Secure your account',
@@ -1424,6 +1425,7 @@ const translation = {
1424
1425
  error: 'Invalid code. Please try again.',
1425
1426
  rate_limit_error: 'Too many attempts, please try again later.',
1426
1427
  choose_another_method: 'Use a different method',
1428
+ logout: 'Log out',
1427
1429
  },
1428
1430
  secure_device_view: {
1429
1431
  title: 'Secure your account',
@@ -3033,6 +3035,30 @@ const translation = {
3033
3035
  export_failed: 'Failed to export wallet',
3034
3036
  upgrade_failed: 'Failed to upgrade wallet',
3035
3037
  },
3038
+ dyn_export_and_recovery: {
3039
+ title: 'Export & Recovery',
3040
+ private_key: 'Private Key',
3041
+ export_shares: 'Export Share',
3042
+ advanced: 'ADVANCED',
3043
+ },
3044
+ dyn_export_shares: {
3045
+ title: 'Export Key Shares',
3046
+ sensitive_info: 'Sensitive information',
3047
+ threshold_description: "You'll need at least {{required}} out of {{total}} shares to restore access to your wallet.",
3048
+ how_to_use_title: 'How to use them',
3049
+ bullet_1: 'Store your shares in separate secure locations.',
3050
+ bullet_2: "You'll need {{required}} shares to recover offline.",
3051
+ bullet_3: 'You can re-import them through your wallet recovery flow.',
3052
+ acknowledge: 'I am responsible for safeguarding and using my wallet key share information.',
3053
+ download_button: 'Download Share',
3054
+ error: 'Failed to export shares. Please try again.',
3055
+ },
3056
+ dyn_export_shares_passcode: {
3057
+ title: 'Enter Passcode',
3058
+ description: 'To export your recovery shares, enter your passcode.',
3059
+ enter_passcode: 'Enter passcode',
3060
+ error: 'Invalid passcode',
3061
+ },
3036
3062
  dyn_wallet_delegation: {
3037
3063
  title: 'Wallet delegation approval',
3038
3064
  approval_required: 'Approval required',
@@ -1341,6 +1341,7 @@ export declare const translation: {
1341
1341
  error: 'Invalid code. Please try again.',
1342
1342
  rate_limit_error: 'Too many attempts, please try again later.',
1343
1343
  choose_another_method: 'Use a different method',
1344
+ logout: 'Log out',
1344
1345
  },
1345
1346
  secure_device_view: {
1346
1347
  title: 'Secure your account',
@@ -1420,6 +1421,7 @@ export declare const translation: {
1420
1421
  error: string;
1421
1422
  rate_limit_error: string;
1422
1423
  choose_another_method: string;
1424
+ logout: string;
1423
1425
  };
1424
1426
  secure_device_view: {
1425
1427
  title: string;
@@ -3029,6 +3031,30 @@ export declare const translation: {
3029
3031
  export_failed: string;
3030
3032
  upgrade_failed: string;
3031
3033
  };
3034
+ dyn_export_and_recovery: {
3035
+ title: string;
3036
+ private_key: string;
3037
+ export_shares: string;
3038
+ advanced: string;
3039
+ };
3040
+ dyn_export_shares: {
3041
+ title: string;
3042
+ sensitive_info: string;
3043
+ threshold_description: string;
3044
+ how_to_use_title: string;
3045
+ bullet_1: string;
3046
+ bullet_2: string;
3047
+ bullet_3: string;
3048
+ acknowledge: string;
3049
+ download_button: string;
3050
+ error: string;
3051
+ };
3052
+ dyn_export_shares_passcode: {
3053
+ title: string;
3054
+ description: string;
3055
+ enter_passcode: string;
3056
+ error: string;
3057
+ };
3032
3058
  dyn_wallet_delegation: {
3033
3059
  title: string;
3034
3060
  approval_required: string;
@@ -1341,6 +1341,7 @@ const translation = {
1341
1341
  error: 'Invalid code. Please try again.',
1342
1342
  rate_limit_error: 'Too many attempts, please try again later.',
1343
1343
  choose_another_method: 'Use a different method',
1344
+ logout: 'Log out',
1344
1345
  },
1345
1346
  secure_device_view: {
1346
1347
  title: 'Secure your account',
@@ -1420,6 +1421,7 @@ const translation = {
1420
1421
  error: 'Invalid code. Please try again.',
1421
1422
  rate_limit_error: 'Too many attempts, please try again later.',
1422
1423
  choose_another_method: 'Use a different method',
1424
+ logout: 'Log out',
1423
1425
  },
1424
1426
  secure_device_view: {
1425
1427
  title: 'Secure your account',
@@ -3029,6 +3031,30 @@ const translation = {
3029
3031
  export_failed: 'Failed to export wallet',
3030
3032
  upgrade_failed: 'Failed to upgrade wallet',
3031
3033
  },
3034
+ dyn_export_and_recovery: {
3035
+ title: 'Export & Recovery',
3036
+ private_key: 'Private Key',
3037
+ export_shares: 'Export Share',
3038
+ advanced: 'ADVANCED',
3039
+ },
3040
+ dyn_export_shares: {
3041
+ title: 'Export Key Shares',
3042
+ sensitive_info: 'Sensitive information',
3043
+ threshold_description: "You'll need at least {{required}} out of {{total}} shares to restore access to your wallet.",
3044
+ how_to_use_title: 'How to use them',
3045
+ bullet_1: 'Store your shares in separate secure locations.',
3046
+ bullet_2: "You'll need {{required}} shares to recover offline.",
3047
+ bullet_3: 'You can re-import them through your wallet recovery flow.',
3048
+ acknowledge: 'I am responsible for safeguarding and using my wallet key share information.',
3049
+ download_button: 'Download Share',
3050
+ error: 'Failed to export shares. Please try again.',
3051
+ },
3052
+ dyn_export_shares_passcode: {
3053
+ title: 'Enter Passcode',
3054
+ description: 'To export your recovery shares, enter your passcode.',
3055
+ enter_passcode: 'Enter passcode',
3056
+ error: 'Invalid passcode',
3057
+ },
3032
3058
  dyn_wallet_delegation: {
3033
3059
  title: 'Wallet delegation approval',
3034
3060
  approval_required: 'Approval required',