diff --git a/modules/legacy/modules/account/lib/src/features/change_password/presentation/change_password_screen.dart b/modules/legacy/modules/account/lib/src/features/change_password/presentation/change_password_screen.dart index 73ff1a4a..6442c186 100644 --- a/modules/legacy/modules/account/lib/src/features/change_password/presentation/change_password_screen.dart +++ b/modules/legacy/modules/account/lib/src/features/change_password/presentation/change_password_screen.dart @@ -129,6 +129,7 @@ class _PasswordCriteriaList extends StatelessWidget { met: _specialRegex.hasMatch(password), hasInput: hasInput, ), + Text(context.translate((I18n.passwordRepeated))) ], ); } diff --git a/packages/sf_localizations/assets/l10n/en.json b/packages/sf_localizations/assets/l10n/en.json index edb5589b..4c27f6f8 100755 --- a/packages/sf_localizations/assets/l10n/en.json +++ b/packages/sf_localizations/assets/l10n/en.json @@ -544,5 +544,6 @@ "deviceSetup_heightHint": "120", "activationKeyLabel": "Activation key", "rewardsMessage": "Send rewards", - "sendRewards": "Send rewards!" + "sendRewards": "Send rewards!", + "passwordRepeated": "The new password can't have been used before" } \ No newline at end of file diff --git a/packages/sf_localizations/assets/l10n/es.json b/packages/sf_localizations/assets/l10n/es.json index 5a721878..8e79f91b 100644 --- a/packages/sf_localizations/assets/l10n/es.json +++ b/packages/sf_localizations/assets/l10n/es.json @@ -542,5 +542,6 @@ "deviceSetup_heightHint": "120", "activationKeyLabel": "Clave de activación", "rewardsMessage": "Envía una recompensa", - "sendRewards": "¡Enviar recompensas!" + "sendRewards": "¡Enviar recompensas!", + "passwordRepeated": "La nueva contraseña no puede haber sido usada antes." } \ No newline at end of file diff --git a/packages/sf_localizations/lib/src/generated/i18n.dart b/packages/sf_localizations/lib/src/generated/i18n.dart index efd602ae..ea9e78fc 100755 --- a/packages/sf_localizations/lib/src/generated/i18n.dart +++ b/packages/sf_localizations/lib/src/generated/i18n.dart @@ -663,4 +663,5 @@ class I18n { static const String activationKeyLabel = 'activationKeyLabel'; static const String rewardsMessage = 'rewardsMessage'; static const String sendRewards = 'sendRewards'; + static const String passwordRepeated = 'passwordRepeated'; }