Index: trunk/extensions/NewUserNotif/NewUserNotif.i18n.php |
— | — | @@ -7,12 +7,13 @@ |
8 | 8 | |
9 | 9 | $messages = array(); |
10 | 10 | |
11 | | -/* English |
| 11 | +/** English |
12 | 12 | * @author Rob Church |
13 | 13 | */ |
14 | 14 | $messages['en'] = array( |
15 | | - 'newusernotifsubj' => 'New User Notification for $1', |
16 | | - 'newusernotifbody' => "Hello $1,\n\nA new user account, $2, has been created on $3 at $4.", |
| 15 | + 'newusernotifsubj' => 'New User Notification for $1', |
| 16 | + 'newusernotif-desc' => 'Sends email notification when user accounts are created', |
| 17 | + 'newusernotifbody' => "Hello $1,\n\nA new user account, $2, has been created on $3 at $4.", |
17 | 18 | ); |
18 | 19 | |
19 | 20 | $messages['ar'] = array( |
— | — | @@ -42,9 +43,15 @@ |
43 | 44 | В $3 беше регистрирана нова потребителска сметка, $2, на $4.', |
44 | 45 | ); |
45 | 46 | |
| 47 | +/** German (Deutsch) |
| 48 | + * @author Raimond Spekking |
| 49 | + */ |
46 | 50 | $messages['de'] = array( |
47 | | - 'newusernotifsubj' => 'Benachrichtung für $1 über die Einrichtung eines neuen Benutzerskontos', |
48 | | - 'newusernotifbody' => "Hallo $1,\n\nEin neues Benutzerkonto, $2, wurde am $4 auf $3 angelegt.", |
| 51 | + 'newusernotifsubj' => 'Benachrichtung für $1 über die Einrichtung eines neuen Benutzerskontos', |
| 52 | + 'newusernotif-desc' => 'Versendet E-Mail-Benachrichtigungen bei Erstellung neuer Benutzerkonten', |
| 53 | + 'newusernotifbody' => "Hallo $1, |
| 54 | + |
| 55 | +Ein neues Benutzerkonto, $2, wurde am $4 auf $3 angelegt.", |
49 | 56 | ); |
50 | 57 | |
51 | 58 | $messages['fr'] = array( |
Index: trunk/extensions/NewUserNotif/NewUserNotif.php |
— | — | @@ -8,15 +8,16 @@ |
9 | 9 | * @author Rob Church <robchur@gmail.com> |
10 | 10 | * @addtogroup Extensions |
11 | 11 | * @copyright © 2006 Rob Church |
12 | | - * @licence GNU General Public Licence 2.0 or later |
| 12 | + * @license GNU General Public Licence 2.0 or later |
13 | 13 | */ |
14 | 14 | |
15 | 15 | $wgExtensionCredits['other'][] = array( |
16 | | - 'name' => 'New User Email Notification', |
17 | | - 'version' => '1.5', |
18 | | - 'author' => 'Rob Church', |
19 | | - 'url' => 'http://www.mediawiki.org/wiki/Extension:New_User_Email_Notification', |
20 | | - 'description' => 'Sends email notification when user accounts are created', |
| 16 | + 'name' => 'New User Email Notification', |
| 17 | + 'version' => '1.5.1', |
| 18 | + 'author' => 'Rob Church', |
| 19 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:New_User_Email_Notification', |
| 20 | + 'description' => 'Sends email notification when user accounts are created', |
| 21 | + 'descriptionmsg' => 'newusernotif-desc', |
21 | 22 | ); |
22 | 23 | |
23 | 24 | $dir = dirname(__FILE__) . '/'; |