Index: trunk/extensions/AjaxLogin/AjaxLogin.i18n.php |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | 'ajaxLogin2' => 'Are you sure? |
20 | 20 | You may lose your changes to this page if you leave this page now.', |
21 | 21 | 'ajaxlogin-create' => 'Create an account', |
22 | | - 'nosuchuser' => 'There is no user by the name "$1". |
| 22 | + 'al-nosuchuser' => 'There is no user by the name "$1". |
23 | 23 | User names are case sensitive. |
24 | 24 | Check your spelling.', |
25 | 25 | ); |
Index: trunk/extensions/AjaxLogin/ApiAjaxLogin.php |
— | — | @@ -64,7 +64,7 @@ |
65 | 65 | case LoginForm::NOT_EXISTS: |
66 | 66 | $result['result'] = 'NotExists'; |
67 | 67 | wfLoadExtensionMessages( 'AjaxLogin' ); |
68 | | - $result['text'] = wfMsg( 'nosuchuser', htmlspecialchars( $Name ) ); |
| 68 | + $result['text'] = wfMsg( 'al-nosuchuser', htmlspecialchars( $Name ) ); |
69 | 69 | break; |
70 | 70 | case LoginForm::WRONG_PASS: |
71 | 71 | $result['result'] = 'WrongPass'; |
— | — | @@ -108,7 +108,7 @@ |
109 | 109 | } else if ( 0 == $u->getID() ) { |
110 | 110 | $result['result'] = 'nosuchuser'; |
111 | 111 | wfLoadExtensionMessages( 'AjaxLogin' ); |
112 | | - $result['text'] = wfMsg( 'nosuchuser', $u->getName() ); |
| 112 | + $result['text'] = wfMsg( 'al-nosuchuser', $u->getName() ); |
113 | 113 | } else if ( $u->isPasswordReminderThrottled() ) { |
114 | 114 | global $wgPasswordReminderResendTime; |
115 | 115 | $result['result'] = 'throttled-mailpassword'; |