Index: trunk/extensions/HTMLets/HTMLets.i18n.php |
— | — | @@ -0,0 +1,19 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Internationalisation file for HTMLets extension. |
| 5 | + * |
| 6 | + * @addtogroup Extensions |
| 7 | + */ |
| 8 | + |
| 9 | +$messages = array(); |
| 10 | + |
| 11 | +$messages['en'] = array( |
| 12 | + 'htmlets-desc' => 'Lets you inline HTML snippets from files using the <tt><nowiki><htmlet></nowiki></tt> tag', |
| 13 | +); |
| 14 | + |
| 15 | +/** German (Deutsch) |
| 16 | + * @author Raimond Spekking |
| 17 | + */ |
| 18 | +$messages['de'] = array( |
| 19 | + 'htmlets-desc' => 'Ergänzt das <tt><nowiki><htmlet></nowiki></tt>-Tag zum Einfügen von HTML-Schnippseln hinzu', |
| 20 | +); |
Property changes on: trunk/extensions/HTMLets/HTMLets.i18n.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 21 | + native |
Index: trunk/extensions/HTMLets/install.settings |
— | — | @@ -1,3 +1,3 @@ |
2 | | -require_once( "{{path}}/HTMLets.php" ); |
| 2 | +require_once( "$IP/extensions/HTMLets/HTMLets.php" ); |
3 | 3 | |
4 | 4 | $wgHTMLetsDirectory = "$IP/htmlets"; |
Index: trunk/extensions/HTMLets/HTMLets.php |
— | — | @@ -11,7 +11,7 @@ |
12 | 12 | * @subpackage Extensions |
13 | 13 | * @author Daniel Kinzler, brightbyte.de |
14 | 14 | * @copyright © 2007 Daniel Kinzler |
15 | | - * @licence GNU General Public Licence 2.0 or later |
| 15 | + * @license GNU General Public Licence 2.0 or later |
16 | 16 | */ |
17 | 17 | |
18 | 18 | if( !defined( 'MEDIAWIKI' ) ) { |
— | — | @@ -19,12 +19,15 @@ |
20 | 20 | die( 1 ); |
21 | 21 | } |
22 | 22 | |
23 | | -$wgExtensionCredits['other'][] = array( |
24 | | - 'name' => 'HTMLets', |
25 | | - 'author' => 'Daniel Kinzler', |
26 | | - 'url' => 'http://mediawiki.org/wiki/Extension:HTMLets', |
27 | | - 'description' => 'lets you inline HTML snippets from files', |
| 23 | +$wgExtensionCredits['parserhook'][] = array( |
| 24 | + 'name' => 'HTMLets', |
| 25 | + 'author' => 'Daniel Kinzler', |
| 26 | + 'url' => 'http://mediawiki.org/wiki/Extension:HTMLets', |
| 27 | + 'version' => preg_replace('/^.* (\d\d\d\d-\d\d-\d\d) .*$/', '\1', '$LastChangedDate$'), #just the date of the last change |
| 28 | + 'description' => 'lets you inline HTML snippets from files', |
| 29 | + 'descriptionmsg' => 'htmlets-desc', |
28 | 30 | ); |
| 31 | +$wgExtensionMessagesFiles['HTMLets'] = dirname(__FILE__) . '/HTMLets.i18n.php'; |
29 | 32 | |
30 | 33 | /** |
31 | 34 | * Pass file content unchanged. May get mangeled by late server pass. |
Property changes on: trunk/extensions/HTMLets/HTMLets.php |
___________________________________________________________________ |
Added: svn:keywords |
32 | 35 | + LastChangedDate |