Index: trunk/extensions/SharedCssJs/SharedCssJs.i18n.php |
— | — | @@ -17,30 +17,31 @@ |
18 | 18 | * @author SVG |
19 | 19 | */ |
20 | 20 | $messages['en'] = array( |
21 | | - 'sharedcssjs-desc' => "Enables fetching of global wiki and user CSS and JS from central wiki", |
22 | | - 'sharedcssjs-error' => "This page is included from central wiki by another way and can only editing there.", |
23 | | - 'global.css' => "/* CSS placed here will be applied to all skins on all wikis of the wiki farm */", |
24 | | - 'global.js' => "/* JavaScript placed here will be applied to all skins on all wikis of the wiki farm */", |
| 21 | + 'sharedcssjs-desc' => 'Enables fetching of global wiki and user CSS and JS from central wiki', |
| 22 | + 'sharedcssjs-error' => 'This page is included from central wiki by another way and can only editing there.', |
| 23 | + 'global.css' => '/* CSS placed here will be applied to all skins on all wikis of the wiki farm */', |
| 24 | + 'global.js' => '/* JavaScript placed here will be applied to all skins on all wikis of the wiki farm */', |
25 | 25 | ); |
26 | 26 | |
27 | 27 | /** Message documentation (Message documentation) |
28 | 28 | * @author SVG |
29 | 29 | */ |
30 | 30 | $messages['qqq'] = array( |
31 | | - 'sharedcssjs-desc' => "{{desc}}", |
32 | | - 'sharedcssjs-error' => "{{msg-mw|sharedcssjs-error}} |
| 31 | + 'sharedcssjs-desc' => '{{desc}}', |
| 32 | + 'sharedcssjs-error' => '{{msg-mw|sharedcssjs-error}} |
33 | 33 | |
34 | | -Similar to {{msg-mw|protectedpagetext}}", |
35 | | - 'global.css' => "{{msg-mw|global.css}}", |
36 | | - 'global.js' => "{{msg-mw|global.js}}", |
| 34 | +Similar to {{msg-mw|protectedpagetext}}', |
| 35 | + 'global.css' => '{{msg-mw|global.css}}', |
| 36 | + 'global.js' => '{{msg-mw|global.js}}', |
37 | 37 | ); |
38 | 38 | |
39 | 39 | /** German (Deutsch) |
40 | 40 | * @author SVG |
41 | 41 | */ |
42 | 42 | $messages['de'] = array( |
43 | | - 'sharedcssjs-desc' => "Ermöglicht das Nutzen von globalen Wiki- und Benutzer-CSS und JS-Dateien aus dem Zentral Wiki", |
44 | | - 'sharedcssjs-error' => "Diese Seite ist aus dem Zentral Wiki auf einem anderen Weg eingebunden und kann auch nur dort bearbeitet werden.", |
45 | | - 'global.css' => "/* Das folgende CSS wird für alle Benutzeroberflächen auf allen Wikis der Wiki-Farm geladen */", |
46 | | - 'global.js' => "/* Das folgende JavaScript wird für alle Benutzeroberflächen auf allen Wikis der Wiki-Farm geladen */", |
| 43 | + 'sharedcssjs-desc' => 'Ermöglicht das Nutzen von globalen Wiki- und Benutzer-CSS und JS-Dateien aus dem Zentral Wiki', |
| 44 | + 'sharedcssjs-error' => 'Diese Seite ist aus dem Zentral Wiki auf einem anderen Weg eingebunden und kann auch nur dort bearbeitet werden.', |
| 45 | + 'global.css' => '/* Das folgende CSS wird für alle Benutzeroberflächen auf allen Wikis der Wiki-Farm geladen */', |
| 46 | + 'global.js' => '/* Das folgende JavaScript wird für alle Benutzeroberflächen auf allen Wikis der Wiki-Farm geladen */', |
47 | 47 | ); |
| 48 | + |
Index: trunk/extensions/SharedCssJs/SharedCssJs.php |
— | — | @@ -16,12 +16,13 @@ |
17 | 17 | die(1); |
18 | 18 | } |
19 | 19 | |
20 | | -$wgExtensionCredits['skin'][] = array( |
21 | | - 'name' => 'SharedCssJs', |
22 | | - 'author' => array( "Tim Weyer" ), |
23 | | - 'version' => '1.0', |
24 | | - 'url' => 'http://www.mediawiki.org/wiki/Extension:SharedCssJs', |
25 | | - 'descriptionmsg' => 'sharedcssjs-desc', |
| 20 | +$wgExtensionCredits['other'][] = array( |
| 21 | + 'path' => __FILE__, |
| 22 | + 'name' => 'SharedCssJs', |
| 23 | + 'author' => array( "Tim Weyer" ), |
| 24 | + 'version' => '1.0', |
| 25 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:SharedCssJs', |
| 26 | + 'descriptionmsg' => 'sharedcssjs-desc', |
26 | 27 | ); |
27 | 28 | |
28 | 29 | // Localisation of this extension |