Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -123,6 +123,9 @@ |
124 | 124 | |
125 | 125 | Cassandra |
126 | 126 | |
| 127 | +Categorize |
| 128 | +ignored = categorize-subtitle |
| 129 | + |
127 | 130 | Category Browser |
128 | 131 | aliasfile = CategoryBrowser/CategoryBrowser.alias.php |
129 | 132 | optional = cb_previous_items_stats |
Index: trunk/extensions/Categorize/Categorize.i18n.php |
— | — | @@ -1,30 +1,34 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | | -# Internationalisation file for the Categorize extension for MediaWiki |
5 | | -/* Categorize Mediawiki Extension |
| 4 | +/** |
| 5 | + * Internationalisation file for extension Categorize. |
6 | 6 | * |
| 7 | + * @file |
| 8 | + * @ingroup Extensions |
7 | 9 | * @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 |
10 | 11 | * |
11 | 12 | */ |
| 13 | + |
12 | 14 | $messages = array(); |
13 | 15 | |
14 | 16 | /** English |
15 | 17 | * @author Thomas Fauré |
16 | 18 | */ |
17 | 19 | $messages['en'] = array( |
| 20 | + 'categorize-desc' => 'Adds input box to edit and upload page which allows users to assign categories to the page', |
18 | 21 | 'categorize-title' => 'Knowledge qualification', |
19 | 22 | 'categorize-subtitle' => '', |
20 | 23 | '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 | + |
23 | 27 | /** French (Français) |
24 | 28 | * @author Thomas Fauré |
25 | 29 | */ |
26 | 30 | $messages['fr'] = array( |
27 | 31 | 'categorize-title' => 'Qualification des savoirs', |
28 | | - 'categorize-subtitle' => '', |
29 | 32 | 'categorize-footer' => 'Si vous souhaitez ajouter un label, contactez ...', |
30 | 33 | '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 @@ |
40 | 40 | $wgCategorizeCloud = 'list'; |
41 | 41 | |
42 | 42 | $wgExtensionCredits['other'][] = array( |
| 43 | + 'path' => __FILE__, |
43 | 44 | 'name' => 'Categorize', |
44 | 45 | 'author' => 'Thomas Fauré', |
45 | 46 | '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', |
47 | 48 | 'version' => '0.1.2' |
48 | 49 | ); |
49 | 50 | |