ywana-core8 0.1.32 → 0.1.33
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/dist/index.cjs +11 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +11 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +11 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/widgets/login/actions.js +1 -2
- package/src/widgets/login/dictionary.js +10 -0
package/dist/index.umd.js
CHANGED
@@ -2596,9 +2596,10 @@
|
|
2596
2596
|
var user = props.user,
|
2597
2597
|
_props$icon = props.icon,
|
2598
2598
|
icon = _props$icon === void 0 ? false : _props$icon,
|
2599
|
+
_props$label = props.label,
|
2600
|
+
label = _props$label === void 0 ? "Reset Password" : _props$label,
|
2599
2601
|
onOK = props.onOK,
|
2600
2602
|
onSuccess = props.onSuccess;
|
2601
|
-
var label = /*#__PURE__*/React__default["default"].createElement(Text$1, null, "Forgot Password");
|
2602
2603
|
return icon ? /*#__PURE__*/React__default["default"].createElement(Icon, {
|
2603
2604
|
icon: "mail_lock",
|
2604
2605
|
clickable: true,
|
@@ -2745,6 +2746,15 @@
|
|
2745
2746
|
it: 'Password dimenticata',
|
2746
2747
|
fr: 'Mot de passe oublié'
|
2747
2748
|
},
|
2749
|
+
'Reset Password': {
|
2750
|
+
en: 'Reset Password',
|
2751
|
+
es: 'Restablecer contraseña',
|
2752
|
+
de: 'Passwort zurücksetzen',
|
2753
|
+
pt: 'Redefinir senha',
|
2754
|
+
ca: 'Restablir contrasenya',
|
2755
|
+
it: 'Reimposta password',
|
2756
|
+
fr: 'Réinitialiser le mot de passe'
|
2757
|
+
},
|
2748
2758
|
'Check your email to reset your password': {
|
2749
2759
|
en: 'Check your email to reset your password',
|
2750
2760
|
es: 'Revise su correo electrónico para restablecer su contraseña',
|