@dynamic-labs/locale 4.61.2 → 4.61.3
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 +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,18 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.61.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.61.2...v4.61.3) (2026-02-13)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add reset widget password flow for WaaS wallets ([#10437](https://github.com/dynamic-labs/dynamic-auth/issues/10437)) ([7490069](https://github.com/dynamic-labs/dynamic-auth/commit/7490069b70b04be5d70c472c17b132c6a5eddcd5))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* add broken ton wallet mobile connection ([#10435](https://github.com/dynamic-labs/dynamic-auth/issues/10435)) ([a71cd88](https://github.com/dynamic-labs/dynamic-auth/commit/a71cd88fd4e80af6a8956cdb5cc389a34e4e00f1))
|
|
13
|
+
* infinite loop when rapidly entering phone number ([#10434](https://github.com/dynamic-labs/dynamic-auth/issues/10434)) ([39a57cc](https://github.com/dynamic-labs/dynamic-auth/commit/39a57cc51b879abbb63bd129a489adcd8522b261))
|
|
14
|
+
* invalidate non matching ton connect proof ([#10438](https://github.com/dynamic-labs/dynamic-auth/issues/10438)) ([406ba34](https://github.com/dynamic-labs/dynamic-auth/commit/406ba34ba9053953a4b5a5d6ead6d7e8a1718423))
|
|
15
|
+
|
|
2
16
|
### [4.61.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.61.1...v4.61.2) (2026-02-12)
|
|
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": "4.61.
|
|
3
|
+
"version": "4.61.3",
|
|
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.61.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.61.3"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {}
|
|
26
26
|
}
|
|
@@ -1123,6 +1123,7 @@ const translation = {
|
|
|
1123
1123
|
title: 'Password',
|
|
1124
1124
|
button: 'Set Up Password',
|
|
1125
1125
|
set_button: 'Set Password',
|
|
1126
|
+
reset_button: 'Reset Password',
|
|
1126
1127
|
},
|
|
1127
1128
|
},
|
|
1128
1129
|
empty_screen: {
|
|
@@ -2145,6 +2146,33 @@ const translation = {
|
|
|
2145
2146
|
done: 'Done',
|
|
2146
2147
|
},
|
|
2147
2148
|
},
|
|
2149
|
+
dyn_reset_password: {
|
|
2150
|
+
current: {
|
|
2151
|
+
title: 'Enter Current Password',
|
|
2152
|
+
description: 'Confirm your current password to continue',
|
|
2153
|
+
label: 'Your current Password',
|
|
2154
|
+
placeholder: 'Enter your password',
|
|
2155
|
+
error: {
|
|
2156
|
+
required: 'Password is required',
|
|
2157
|
+
invalid_password: 'Current password is incorrect',
|
|
2158
|
+
failed: 'Failed to verify password',
|
|
2159
|
+
},
|
|
2160
|
+
},
|
|
2161
|
+
enter: {
|
|
2162
|
+
title: 'Reset password',
|
|
2163
|
+
description: 'Set a strong password to protect your wallet.',
|
|
2164
|
+
same_password_error: 'New password cannot be the same as your current password',
|
|
2165
|
+
},
|
|
2166
|
+
confirm: {
|
|
2167
|
+
title: 'Confirm your Password',
|
|
2168
|
+
description: "Enter your password again to verify you've securely saved it.",
|
|
2169
|
+
acknowledgment: 'I understand that if I lose my password I will lose access to my account and my assets. Keep your password safe.',
|
|
2170
|
+
},
|
|
2171
|
+
success: {
|
|
2172
|
+
title: 'Password updated successfully!',
|
|
2173
|
+
description: 'All set! You have successfully reset your password.',
|
|
2174
|
+
},
|
|
2175
|
+
},
|
|
2148
2176
|
/**
|
|
2149
2177
|
* @description copy keys for unlock wallet view
|
|
2150
2178
|
* @default
|
|
@@ -1119,6 +1119,7 @@ export declare const translation: {
|
|
|
1119
1119
|
title: string;
|
|
1120
1120
|
button: string;
|
|
1121
1121
|
set_button: string;
|
|
1122
|
+
reset_button: string;
|
|
1122
1123
|
};
|
|
1123
1124
|
};
|
|
1124
1125
|
empty_screen: {
|
|
@@ -2141,6 +2142,33 @@ export declare const translation: {
|
|
|
2141
2142
|
done: string;
|
|
2142
2143
|
};
|
|
2143
2144
|
};
|
|
2145
|
+
dyn_reset_password: {
|
|
2146
|
+
current: {
|
|
2147
|
+
title: string;
|
|
2148
|
+
description: string;
|
|
2149
|
+
label: string;
|
|
2150
|
+
placeholder: string;
|
|
2151
|
+
error: {
|
|
2152
|
+
required: string;
|
|
2153
|
+
invalid_password: string;
|
|
2154
|
+
failed: string;
|
|
2155
|
+
};
|
|
2156
|
+
};
|
|
2157
|
+
enter: {
|
|
2158
|
+
title: string;
|
|
2159
|
+
description: string;
|
|
2160
|
+
same_password_error: string;
|
|
2161
|
+
};
|
|
2162
|
+
confirm: {
|
|
2163
|
+
title: string;
|
|
2164
|
+
description: string;
|
|
2165
|
+
acknowledgment: string;
|
|
2166
|
+
};
|
|
2167
|
+
success: {
|
|
2168
|
+
title: string;
|
|
2169
|
+
description: string;
|
|
2170
|
+
};
|
|
2171
|
+
};
|
|
2144
2172
|
/**
|
|
2145
2173
|
* @description copy keys for unlock wallet view
|
|
2146
2174
|
* @default
|
|
@@ -1119,6 +1119,7 @@ const translation = {
|
|
|
1119
1119
|
title: 'Password',
|
|
1120
1120
|
button: 'Set Up Password',
|
|
1121
1121
|
set_button: 'Set Password',
|
|
1122
|
+
reset_button: 'Reset Password',
|
|
1122
1123
|
},
|
|
1123
1124
|
},
|
|
1124
1125
|
empty_screen: {
|
|
@@ -2141,6 +2142,33 @@ const translation = {
|
|
|
2141
2142
|
done: 'Done',
|
|
2142
2143
|
},
|
|
2143
2144
|
},
|
|
2145
|
+
dyn_reset_password: {
|
|
2146
|
+
current: {
|
|
2147
|
+
title: 'Enter Current Password',
|
|
2148
|
+
description: 'Confirm your current password to continue',
|
|
2149
|
+
label: 'Your current Password',
|
|
2150
|
+
placeholder: 'Enter your password',
|
|
2151
|
+
error: {
|
|
2152
|
+
required: 'Password is required',
|
|
2153
|
+
invalid_password: 'Current password is incorrect',
|
|
2154
|
+
failed: 'Failed to verify password',
|
|
2155
|
+
},
|
|
2156
|
+
},
|
|
2157
|
+
enter: {
|
|
2158
|
+
title: 'Reset password',
|
|
2159
|
+
description: 'Set a strong password to protect your wallet.',
|
|
2160
|
+
same_password_error: 'New password cannot be the same as your current password',
|
|
2161
|
+
},
|
|
2162
|
+
confirm: {
|
|
2163
|
+
title: 'Confirm your Password',
|
|
2164
|
+
description: "Enter your password again to verify you've securely saved it.",
|
|
2165
|
+
acknowledgment: 'I understand that if I lose my password I will lose access to my account and my assets. Keep your password safe.',
|
|
2166
|
+
},
|
|
2167
|
+
success: {
|
|
2168
|
+
title: 'Password updated successfully!',
|
|
2169
|
+
description: 'All set! You have successfully reset your password.',
|
|
2170
|
+
},
|
|
2171
|
+
},
|
|
2144
2172
|
/**
|
|
2145
2173
|
* @description copy keys for unlock wallet view
|
|
2146
2174
|
* @default
|