Index: trunk/extensions/Duplicator/Duplicator.i18n.php |
— | — | @@ -13,6 +13,7 @@ |
14 | 14 | */ |
15 | 15 | $messages['en'] = array( |
16 | 16 | 'duplicator' => 'Duplicate a page', |
| 17 | + 'duplicator-desc' => 'Create independent copies of articles with full edit histories', |
17 | 18 | 'duplicator-toolbox' => 'Duplicate this page', |
18 | 19 | 'duplicator-header' => 'This page allows the complete duplication of a page, creating independent copies of all histories. This is useful for page forking, etc.', |
19 | 20 | 'duplicator-options' => 'Options', |
— | — | @@ -228,6 +229,7 @@ |
229 | 230 | /* French */ |
230 | 231 | $messages['fr'] = array( |
231 | 232 | 'duplicator' => 'Dupliquer un article', |
| 233 | + 'duplicator-desc' => 'Créer des copies distinctes d’articles avec l’historique complet des modifications.', |
232 | 234 | 'duplicator-toolbox' => 'Dupliquer cet article', |
233 | 235 | 'duplicator-header' => 'Cette page permet la duplication complète d’un article, en créant deux versions indépendantes de l’historique complet. Il sert par exemple à séparer un article en deux.', |
234 | 236 | 'duplicator-options' => 'Options', |
Index: trunk/extensions/Duplicator/Duplicator.php |
— | — | @@ -14,6 +14,7 @@ |
15 | 15 | 'author' => 'Rob Church', |
16 | 16 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Duplicator', |
17 | 17 | 'description' => 'Create independent copies of articles with full edit histories', |
| 18 | + 'descriptionmsg' => 'duplicator-desc', |
18 | 19 | ); |
19 | 20 | |
20 | 21 | $dir = dirname(__FILE__) . '/'; |