r100027 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r100026‎ | r100027 | r100028 >
Date:14:05, 17 October 2011
Author:raymond
Status:ok
Tags:
Comment:
Followup r99887: Fix type of extension: It is not a skin but "other". Fix indention (spaces -> tab)
Use simple ' ' for messages consistently
Modified paths:
  • /trunk/extensions/SharedCssJs/SharedCssJs.i18n.php (modified) (history)
  • /trunk/extensions/SharedCssJs/SharedCssJs.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SharedCssJs/SharedCssJs.i18n.php
@@ -17,30 +17,31 @@
1818 * @author SVG
1919 */
2020 $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 */',
2525 );
2626
2727 /** Message documentation (Message documentation)
2828 * @author SVG
2929 */
3030 $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}}
3333
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}}',
3737 );
3838
3939 /** German (Deutsch)
4040 * @author SVG
4141 */
4242 $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 */',
4747 );
 48+
Index: trunk/extensions/SharedCssJs/SharedCssJs.php
@@ -16,12 +16,13 @@
1717 die(1);
1818 }
1919
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',
2627 );
2728
2829 // Localisation of this extension

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r99887Adding SharedCssJs extensioncervidae15:42, 15 October 2011

Status & tagging log