Index: trunk/extensions/UnicodeConverter/UnicodeConverter.i18n.php |
— | — | @@ -10,6 +10,7 @@ |
11 | 11 | |
12 | 12 | $messages['en'] = array( |
13 | 13 | 'unicodeconverter' => 'Unicode Converter', |
| 14 | + 'unicodeconverter-desc' => 'A simple example of a special page module. Given a string in UTF-8, it converts it to HTML entities suitable for an ISO 8859-1 web page', |
14 | 15 | 'unicodeconverter-ok' => 'OK', |
15 | 16 | 'unicodeconverter-oldtext' => 'Original text:', |
16 | 17 | 'unicodeconverter-newtext' => 'Converted text:', |
— | — | @@ -24,6 +25,7 @@ |
25 | 26 | |
26 | 27 | $messages ['fr'] = array( |
27 | 28 | 'unicodeconverter' => 'Convertisseur Unicode', |
| 29 | + 'unicodeconverter-desc' => 'Un simple exemple de mode de page spéciale. Donne une chaîne de caractère au format UTF-8, le convertit en entité HTML pour une page web en ISA 8859-1', |
28 | 30 | 'unicodeconverter-ok' => 'Convertir', |
29 | 31 | 'unicodeconverter-oldtext' => 'Texte d’origine :', |
30 | 32 | 'unicodeconverter-newtext' => 'Texte une fois converti :', |
Index: trunk/extensions/UnicodeConverter/UnicodeConverter.php |
— | — | @@ -16,6 +16,7 @@ |
17 | 17 | 'author' => 'Tim Starling', |
18 | 18 | 'description' => 'A simple example of a special page module. Given a string in UTF-8, it converts it to HTML entities suitable for an ISO 8859-1 web page', |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:UnicodeConvertor', |
| 20 | + 'descriptionmsg' => 'unicodeconverter-desc', |
20 | 21 | ); |
21 | 22 | |
22 | 23 | if ( !function_exists( 'extAddSpecialPage' ) ) { |