Property changes on: trunk/extensions/SendmailToWiki/SendmailToWiki_body.php |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 1 | + native |
Index: trunk/extensions/SendmailToWiki/SendmailToWiki.i18n.php |
— | — | @@ -1,23 +1,24 @@ |
2 | 2 | <?php |
3 | 3 | $messages = array(); |
4 | 4 | |
5 | | -/* *** English *** */ |
| 5 | +/** English |
| 6 | + * @author Jure Kajzer - freakolowsky |
| 7 | + */ |
6 | 8 | $messages['en'] = array( |
7 | 9 | 'sendmailtowiki' => 'SendmailToWiki', |
8 | | - 'sendmailtowiki-desc' => "Post wiki content trough dedicated dynamic email address.", |
9 | | - 'prefs-sendmailtowiki' => "Posting content with email", |
10 | | - 'sendmailtowiki-inemail' => "Dedicated email:", |
11 | | - 'sendmailtowiki-inpin' => "PIN:", |
12 | | - 'prefs-help-sendmailtowiki_pin' => "Blank field for PIN number disables posting content to wiki with your account.", |
13 | | - 'sendmailtowiki-err-pinlength' => "PIN must contain exactly 5 numbers!", |
14 | | - 'sendmailtowiki-err-wrongprefix' => "Wrong wiki account prefix. Contact your administrator!", |
15 | | - 'sendmailtowiki-err-invalidaccount' => "Invalid account. Check the email address you're sending to.", |
16 | | - 'sendmailtowiki-err-invalidsender' => "Invalid sender. Check the email address you're sending from.", |
17 | | - 'sendmailtowiki-err-invalidpin' => "Invalid PIN. Access Denied.", |
18 | | - 'sendmailtowiki-err-onlyplain' => "Because of potential misinterpretatons only text/plain messages are accepted.", |
| 10 | + 'sendmailtowiki-desc' => 'Post wiki content trough dedicated dynamic e-mail address.', |
| 11 | + 'prefs-sendmailtowiki' => 'Posting content with e-mail', |
| 12 | + 'sendmailtowiki-inemail' => 'Dedicated e-mail:', |
| 13 | + 'sendmailtowiki-inpin' => 'PIN:', |
| 14 | + 'prefs-help-sendmailtowiki_pin' => 'Blank field for PIN number disables posting content to wiki with your account.', |
| 15 | + 'sendmailtowiki-err-pinlength' => 'PIN must contain exactly 5 numbers!', |
| 16 | + 'sendmailtowiki-err-wrongprefix' => 'Wrong wiki account prefix. Contact your administrator!', |
| 17 | + 'sendmailtowiki-err-invalidaccount' => 'Invalid account. Check the e-mail address you are sending to.', |
| 18 | + 'sendmailtowiki-err-invalidsender' => 'Invalid sender. Check the e-mail address you are sending from.', |
| 19 | + 'sendmailtowiki-err-invalidpin' => 'Invalid PIN. Access denied.', |
| 20 | + 'sendmailtowiki-err-onlyplain' => 'Because of potential misinterpretations only text/plain messages are accepted.', |
19 | 21 | ); |
20 | | - |
21 | | -/* *** German (Deutsch) *** */ |
| 22 | + |
22 | 23 | $messages['sl'] = array( |
23 | 24 | 'sendmailtowiki' => 'SendmailToWiki', |
24 | 25 | 'sendmailtowiki-desc' => 'Pošiljanje wiki vsebine preko namenskega dinamičnega email naslova.', |
— | — | @@ -32,4 +33,4 @@ |
33 | 34 | 'sendmailtowiki-err-invalidpin' => "Nepravilen PIN. Dostop zavrnjen.", |
34 | 35 | 'sendmailtowiki-err-onlyplain' => "Zaradi potencialnega nepravilnega interpretiranja so podprta samo text/plain sporočila.", |
35 | 36 | ); |
36 | | -?> |
| 37 | + |
Property changes on: trunk/extensions/SendmailToWiki/SendmailToWiki.i18n.php |
___________________________________________________________________ |
Name: svn:eol-style |
37 | 38 | + native |
Index: trunk/extensions/SendmailToWiki/scripts/post_to_wiki.sh |
— | — | @@ -34,4 +34,4 @@ |
35 | 35 | |
36 | 36 | mail($mailData['headers']['from'], 'RE: '.$mailData['headers']['subject'], $csessionReturn, $headers); |
37 | 37 | } |
38 | | -?> |
| 38 | + |
Property changes on: trunk/extensions/SendmailToWiki/scripts/post_to_wiki.sh |
___________________________________________________________________ |
Name: svn:eol-style |
39 | 39 | + native |
Index: trunk/extensions/SendmailToWiki/SendmailToWiki.php |
— | — | @@ -9,6 +9,7 @@ |
10 | 10 | } |
11 | 11 | |
12 | 12 | $wgExtensionCredits['specialpage'][] = array( |
| 13 | + 'path' => __FILE__, |
13 | 14 | 'name' => 'SendmailToWiki', |
14 | 15 | 'author' => 'Jure Kajzer - freakolowsky <jure.kajzer@abakus.si>', |
15 | 16 | 'url' => 'http://www.mediawiki.org/wiki/Extension:SendmailToWiki', |
— | — | @@ -21,7 +22,6 @@ |
22 | 23 | |
23 | 24 | $wgAutoloadClasses['SendmailToWiki'] = $dir . 'SendmailToWiki_body.php'; |
24 | 25 | $wgExtensionMessagesFiles['SendmailToWiki'] = $dir . 'SendmailToWiki.i18n.php'; |
25 | | -//$wgExtensionAliasesFiles['SendmailToWiki'] = $dir . 'SendmailToWiki.alias.php'; |
26 | 26 | $wgSpecialPages['SendmailToWiki'] = 'SendmailToWiki'; |
27 | 27 | |
28 | 28 | $wgHooks['GetPreferences'][] = 'sendmailtowikiPrefHook'; |
— | — | @@ -67,4 +67,3 @@ |
68 | 68 | return true; |
69 | 69 | } |
70 | 70 | |
71 | | -?> |
Property changes on: trunk/extensions/SendmailToWiki/SendmailToWiki.php |
___________________________________________________________________ |
Name: svn:eol-style |
72 | 71 | + native |