@dynamic-labs/locale 4.38.0 → 4.39.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 +8 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +2 -2
- package/src/lib/en/translation.cjs +28 -0
- package/src/lib/en/translation.d.ts +28 -0
- package/src/lib/en/translation.js +28 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.39.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.38.0...v4.39.0) (2025-10-17)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add crypto.com as an onramp option in deposit ([#9580](https://github.com/dynamic-labs/dynamic-auth/issues/9580)) ([4988acc](https://github.com/dynamic-labs/dynamic-auth/commit/4988accfeafa5556297ad6e9873073e30c504c7f)), closes [#3](https://github.com/dynamic-labs/dynamic-auth/issues/3)
|
|
8
|
+
* add sui non-native token sending thru dynamic widget ([#9715](https://github.com/dynamic-labs/dynamic-auth/issues/9715)) ([9d9ea3b](https://github.com/dynamic-labs/dynamic-auth/commit/9d9ea3b233706766516b89d725a52d63cceb01f6))
|
|
9
|
+
|
|
2
10
|
## [4.38.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.37.2...v4.38.0) (2025-10-14)
|
|
3
11
|
|
|
4
12
|
|
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.
|
|
3
|
+
"version": "4.39.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.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.39.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {}
|
|
26
26
|
}
|
|
@@ -2860,6 +2860,31 @@ const translation = {
|
|
|
2860
2860
|
},
|
|
2861
2861
|
},
|
|
2862
2862
|
},
|
|
2863
|
+
/**
|
|
2864
|
+
* @description copy keys for Crypto.com onramp
|
|
2865
|
+
* @default
|
|
2866
|
+
* {
|
|
2867
|
+
* title: 'Buy Crypto with Crypto.com',
|
|
2868
|
+
* amount_label: 'Amount to purchase',
|
|
2869
|
+
* amount_description: 'Enter the USD amount you want to spend',
|
|
2870
|
+
* token_label: 'Token to receive',
|
|
2871
|
+
* token_description: 'Choose which token you want to purchase',
|
|
2872
|
+
* wallet_info: 'Tokens will be sent to your wallet',
|
|
2873
|
+
* creating_payment: 'Creating Payment...',
|
|
2874
|
+
* create_payment: 'Continue to Payment',
|
|
2875
|
+
* }
|
|
2876
|
+
*/
|
|
2877
|
+
dyn_crypto_com_onramp: {
|
|
2878
|
+
title: 'Buy Crypto with Crypto.com',
|
|
2879
|
+
amount_label: 'Amount to purchase',
|
|
2880
|
+
amount_description: 'Enter the USD amount you want to spend',
|
|
2881
|
+
token_label: 'Token to receive',
|
|
2882
|
+
token_description: 'Choose which token you want to purchase',
|
|
2883
|
+
wallet_info: 'Tokens will be sent to your wallet',
|
|
2884
|
+
wallet_detail_to: 'Tokens will be sent to',
|
|
2885
|
+
creating_payment: 'Creating Payment...',
|
|
2886
|
+
create_payment: 'Continue to Payment',
|
|
2887
|
+
},
|
|
2863
2888
|
/**
|
|
2864
2889
|
* @description copy keys for Dynamic widget header
|
|
2865
2890
|
* @default
|
|
@@ -3025,6 +3050,9 @@ const translation = {
|
|
|
3025
3050
|
delegation_timeout_message: 'The delegation request timed out or was rejected. Please try approving again or come back in another time.',
|
|
3026
3051
|
try_again_button: 'Try again',
|
|
3027
3052
|
logout_button: 'Log out',
|
|
3053
|
+
learn_more: 'Learn more',
|
|
3054
|
+
learn_more_description: "Delegating your wallet lets this app act on your behalf, even when you're not here. This is useful for things like trading bots or other automated workflows. You stay in control — you can revoke access anytime in your wallet settings.",
|
|
3055
|
+
learn_more_okay_button: 'Okay',
|
|
3028
3056
|
},
|
|
3029
3057
|
};
|
|
3030
3058
|
|
|
@@ -2856,6 +2856,31 @@ export declare const translation: {
|
|
|
2856
2856
|
};
|
|
2857
2857
|
};
|
|
2858
2858
|
};
|
|
2859
|
+
/**
|
|
2860
|
+
* @description copy keys for Crypto.com onramp
|
|
2861
|
+
* @default
|
|
2862
|
+
* {
|
|
2863
|
+
* title: 'Buy Crypto with Crypto.com',
|
|
2864
|
+
* amount_label: 'Amount to purchase',
|
|
2865
|
+
* amount_description: 'Enter the USD amount you want to spend',
|
|
2866
|
+
* token_label: 'Token to receive',
|
|
2867
|
+
* token_description: 'Choose which token you want to purchase',
|
|
2868
|
+
* wallet_info: 'Tokens will be sent to your wallet',
|
|
2869
|
+
* creating_payment: 'Creating Payment...',
|
|
2870
|
+
* create_payment: 'Continue to Payment',
|
|
2871
|
+
* }
|
|
2872
|
+
*/
|
|
2873
|
+
dyn_crypto_com_onramp: {
|
|
2874
|
+
title: string;
|
|
2875
|
+
amount_label: string;
|
|
2876
|
+
amount_description: string;
|
|
2877
|
+
token_label: string;
|
|
2878
|
+
token_description: string;
|
|
2879
|
+
wallet_info: string;
|
|
2880
|
+
wallet_detail_to: string;
|
|
2881
|
+
creating_payment: string;
|
|
2882
|
+
create_payment: string;
|
|
2883
|
+
};
|
|
2859
2884
|
/**
|
|
2860
2885
|
* @description copy keys for Dynamic widget header
|
|
2861
2886
|
* @default
|
|
@@ -3021,5 +3046,8 @@ export declare const translation: {
|
|
|
3021
3046
|
delegation_timeout_message: string;
|
|
3022
3047
|
try_again_button: string;
|
|
3023
3048
|
logout_button: string;
|
|
3049
|
+
learn_more: string;
|
|
3050
|
+
learn_more_description: string;
|
|
3051
|
+
learn_more_okay_button: string;
|
|
3024
3052
|
};
|
|
3025
3053
|
};
|
|
@@ -2856,6 +2856,31 @@ const translation = {
|
|
|
2856
2856
|
},
|
|
2857
2857
|
},
|
|
2858
2858
|
},
|
|
2859
|
+
/**
|
|
2860
|
+
* @description copy keys for Crypto.com onramp
|
|
2861
|
+
* @default
|
|
2862
|
+
* {
|
|
2863
|
+
* title: 'Buy Crypto with Crypto.com',
|
|
2864
|
+
* amount_label: 'Amount to purchase',
|
|
2865
|
+
* amount_description: 'Enter the USD amount you want to spend',
|
|
2866
|
+
* token_label: 'Token to receive',
|
|
2867
|
+
* token_description: 'Choose which token you want to purchase',
|
|
2868
|
+
* wallet_info: 'Tokens will be sent to your wallet',
|
|
2869
|
+
* creating_payment: 'Creating Payment...',
|
|
2870
|
+
* create_payment: 'Continue to Payment',
|
|
2871
|
+
* }
|
|
2872
|
+
*/
|
|
2873
|
+
dyn_crypto_com_onramp: {
|
|
2874
|
+
title: 'Buy Crypto with Crypto.com',
|
|
2875
|
+
amount_label: 'Amount to purchase',
|
|
2876
|
+
amount_description: 'Enter the USD amount you want to spend',
|
|
2877
|
+
token_label: 'Token to receive',
|
|
2878
|
+
token_description: 'Choose which token you want to purchase',
|
|
2879
|
+
wallet_info: 'Tokens will be sent to your wallet',
|
|
2880
|
+
wallet_detail_to: 'Tokens will be sent to',
|
|
2881
|
+
creating_payment: 'Creating Payment...',
|
|
2882
|
+
create_payment: 'Continue to Payment',
|
|
2883
|
+
},
|
|
2859
2884
|
/**
|
|
2860
2885
|
* @description copy keys for Dynamic widget header
|
|
2861
2886
|
* @default
|
|
@@ -3021,6 +3046,9 @@ const translation = {
|
|
|
3021
3046
|
delegation_timeout_message: 'The delegation request timed out or was rejected. Please try approving again or come back in another time.',
|
|
3022
3047
|
try_again_button: 'Try again',
|
|
3023
3048
|
logout_button: 'Log out',
|
|
3049
|
+
learn_more: 'Learn more',
|
|
3050
|
+
learn_more_description: "Delegating your wallet lets this app act on your behalf, even when you're not here. This is useful for things like trading bots or other automated workflows. You stay in control — you can revoke access anytime in your wallet settings.",
|
|
3051
|
+
learn_more_okay_button: 'Okay',
|
|
3024
3052
|
},
|
|
3025
3053
|
};
|
|
3026
3054
|
|