r91830 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r91829‎ | r91830 | r91831 >
Date:13:16, 10 July 2011
Author:raymond
Status:ok
Tags:
Comment:
Tweak extension credits, add description message
Add extension to Translatewiki, ping r87714 to inform the author
Modified paths:
  • /trunk/extensions/Categorize/Categorize.i18n.php (modified) (history)
  • /trunk/extensions/Categorize/Categorize.php (modified) (history)
  • /trunk/extensions/Translate/groups/mediawiki-defines.txt (modified) (history)

Diff [purge]

Index: trunk/extensions/Translate/groups/mediawiki-defines.txt
@@ -123,6 +123,9 @@
124124
125125 Cassandra
126126
 127+Categorize
 128+ignored = categorize-subtitle
 129+
127130 Category Browser
128131 aliasfile = CategoryBrowser/CategoryBrowser.alias.php
129132 optional = cb_previous_items_stats
Index: trunk/extensions/Categorize/Categorize.i18n.php
@@ -1,30 +1,34 @@
22 <?php
33
4 -# Internationalisation file for the Categorize extension for MediaWiki
5 -/* Categorize Mediawiki Extension
 4+/**
 5+ * Internationalisation file for extension Categorize.
66 *
 7+ * @file
 8+ * @ingroup Extensions
79 * @author Andreas Rindler (mediawiki at jenandi dot com) and Thomas Fauré (faure dot thomas at gmail dot com)
8 - * @licence GNU General Public Licence 3.0
9 - * @description
 10+ * @license GNU General Public Licence 3.0
1011 *
1112 */
 13+
1214 $messages = array();
1315
1416 /** English
1517 * @author Thomas Fauré
1618 */
1719 $messages['en'] = array(
 20+ 'categorize-desc' => 'Adds input box to edit and upload page which allows users to assign categories to the page',
1821 'categorize-title' => 'Knowledge qualification',
1922 'categorize-subtitle' => '',
2023 'categorize-footer' => 'If you want to add a label, please contact us at ...',
21 - 'categorize-advice' => 'Click on the labels you want to attribute to this article:'
22 - );
 24+ 'categorize-advice' => 'Click on the labels you want to attribute to this page:'
 25+);
 26+
2327 /** French (Français)
2428 * @author Thomas Fauré
2529 */
2630 $messages['fr'] = array(
2731 'categorize-title' => 'Qualification des savoirs',
28 - 'categorize-subtitle' => '',
2932 'categorize-footer' => 'Si vous souhaitez ajouter un label, contactez ...',
3033 'categorize-advice' => 'Cliquez sur les labels que vous souhaitez attribuer à cet article :'
31 - );
 34+);
 35+
Index: trunk/extensions/Categorize/Categorize.php
@@ -39,10 +39,11 @@
4040 $wgCategorizeCloud = 'list';
4141
4242 $wgExtensionCredits['other'][] = array(
 43+ 'path' => __FILE__,
4344 'name' => 'Categorize',
4445 'author' => 'Thomas Fauré',
4546 'url' => 'http://www.mediawiki.org/wiki/Extension:Categorize',
46 - 'description' => 'Adds input box to edit and upload page which allows users to assign categories to the article. When a user starts typing the name of a category, the extension queries the database to find categories that match the user input. Furthermore, a best categories labels cloud is displayed.',
 47+ 'descriptionmsg' => 'categorize-desc',
4748 'version' => '0.1.2'
4849 );
4950

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r87714delete some unused translations and remove an empty loop in JS file.faurethomas14:08, 9 May 2011

Status & tagging log