Skip to content

Commit 6321cd0

Browse files
author
Saket Hatwar
committed
Fixes
1 parent 0feec63 commit 6321cd0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ msgstr "ईमेल पता पहले से मौजूद है"
9696
msgid "Your password can't be your email."
9797
msgstr "आपका पासवर्ड आपका ईमेल नहीं हो सकता।"
9898

99-
msgid "Your password can't be your username."
99+
msgid "Your password can't be your username"
100100
msgstr "आपका पासवर्ड आपका उपयोगकर्ता नाम नहीं हो सकता।"
101101

102102
msgid "The passwords do not match."

modules/my_preferences/locale/my_preferences.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ msgstr ""
9393
msgid "The email address already exists"
9494
msgstr ""
9595

96-
msgid "Your password can't be your email."
96+
msgid "Your password cannot be your email."
9797
msgstr ""
9898

99-
msgid "Your password can't be your username."
99+
msgid "Your password cannot be your username"
100100
msgstr ""
101101

102102
msgid "The passwords do not match."

modules/my_preferences/php/my_preferences.class.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ namespace LORIS\my_preferences;
1010
class My_Preferences extends \NDB_Form
1111
{
1212
// Use gettext for error messages
13-
private const PASSWORD_ERROR_IS_EMAIL = 'Your password can't be your email.';
14-
private const PASSWORD_ERROR_IS_USER = 'Your password can't be your username.';
13+
private const PASSWORD_ERROR_IS_EMAIL = 'Your password cannot be your email.';
14+
private const PASSWORD_ERROR_IS_USER = 'Your password cannot be your username';
1515
private const PASSWORD_ERROR_NO_MATCH = 'The passwords do not match.';
1616
private const PASSWORD_ERROR_NO_CHANGE = 'New and old passwords are identical';
1717

0 commit comments

Comments
 (0)