Index: trunk/extensions/TodoTasks/SpecialTaskList.i18n.php |
— | — | @@ -5,6 +5,8 @@ |
6 | 6 | $messages = array(); |
7 | 7 | $messages['en'] = array( |
8 | 8 | 'tasklist' => 'Task List', |
| 9 | + 'tasklist-parser-desc' => 'adds <nowiki>{{#todo:}}</nowiki> parser function for assigning tasks', |
| 10 | + 'tasklist-special-desc' => 'Adds a special page for reviewing [[Special:TaskList|tasks assignments]]', |
9 | 11 | 'tasklistbyproject' => 'Task List By Project', |
10 | 12 | 'tasklistunknownproject' => 'Unknown project', |
11 | 13 | 'tasklistunspecuser' => 'Unspecified user', |
— | — | @@ -89,21 +91,23 @@ |
90 | 92 | * @author Grondin |
91 | 93 | */ |
92 | 94 | $messages['fr'] = array( |
93 | | - 'tasklist' => 'Liste de tâches', |
94 | | - 'tasklistbyproject' => 'Liste de tâches par projet', |
| 95 | + 'tasklist' => 'Liste de tâches', |
| 96 | + 'tasklist-parser-desc' => 'Ajoute <nowiki>{{#todo:}}</nowiki> une fonction parser pour assigner des tâches', |
| 97 | + 'tasklist-special-desc' => 'Ajoute une page spéciale pour réviser [[Special:TaskList|la liste des tâches assignées]]', |
| 98 | + 'tasklistbyproject' => 'Liste de tâches par projet', |
95 | 99 | 'tasklistunknownproject' => 'Projet inconnu', |
96 | | - 'tasklistunspecuser' => 'Contributeur inconnu', |
97 | | - 'tasklistincorrectuser' => 'Pseudonyme incorrect', |
98 | | - 'tasklistemail' => 'Cher %s', |
99 | | - 'tasklistemailsubject' => '[%s] Changement à la liste de tâches', |
100 | | - 'tasklistmytasks' => 'Mes tâches', |
101 | | - 'tasklistbyprojectbad' => "Le projet '''%s''' n'est pas valide. Consulter la [[MediaWiki:TodoTasksValidProjects|liste des projets]].", |
102 | | - 'tasklistbyprojname' => "Tâches assignées pour '''%s'''.", |
103 | | - 'tasklistchooseproj' => 'Projet sélectionné :', |
104 | | - 'tasklistprojdisp' => 'Afficher', |
105 | | - 'tasklistbyname' => '== Liste de tâches à faire pour %s ==', |
106 | | - 'tasklistnoprojects' => "Erreur : il semble que vous ayez activé '''\$wgUseProjects''', mais sans avoir créé [[MediaWiki:TodoTasksValidProjects]]. Prière de lire les [http://www.mediawiki.org/wiki/Extension:Todo_Tasks#Step_8 instructions d'installation] pour plus de détails.", |
107 | | - 'tasklistemailbody' => ", |
| 100 | + 'tasklistunspecuser' => 'Contributeur inconnu', |
| 101 | + 'tasklistincorrectuser' => 'Pseudonyme incorrect', |
| 102 | + 'tasklistemail' => 'Cher %s', |
| 103 | + 'tasklistemailsubject' => '[%s] Changement à la liste de tâches', |
| 104 | + 'tasklistmytasks' => 'Mes tâches', |
| 105 | + 'tasklistbyprojectbad' => "Le projet '''%s''' n'est pas valide. Consulter la [[MediaWiki:TodoTasksValidProjects|liste des projets]].", |
| 106 | + 'tasklistbyprojname' => "Tâches assignées pour '''%s'''.", |
| 107 | + 'tasklistchooseproj' => 'Projet sélectionné :', |
| 108 | + 'tasklistprojdisp' => 'Afficher', |
| 109 | + 'tasklistbyname' => '== Liste de tâches à faire pour %s ==', |
| 110 | + 'tasklistnoprojects' => "Erreur : il semble que vous ayez activé '''\$wgUseProjects''', mais sans avoir créé [[MediaWiki:TodoTasksValidProjects]]. Prière de lire les [http://www.mediawiki.org/wiki/Extension:Todo_Tasks#Step_8 instructions d'installation] pour plus de détails.", |
| 111 | + 'tasklistemailbody' => ", |
108 | 112 | |
109 | 113 | Quelqu'un vous a assigné une nouvelle tâche pour vous sur %s. |
110 | 114 | |
Index: trunk/extensions/TodoTasks/SpecialTaskList.php |
— | — | @@ -26,7 +26,8 @@ |
27 | 27 | 'author' => 'Paul Grinberg', |
28 | 28 | 'email' => 'gri6507 at yahoo dot com', |
29 | 29 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Todo_Tasks', |
30 | | - 'description' => 'adds <nowiki>{{#todo:}}</nowiki> parser function for assigning tasks' |
| 30 | + 'description' => 'adds <nowiki>{{#todo:}}</nowiki> parser function for assigning tasks', |
| 31 | + 'descriptionmsg' => 'tasklist-parser-desc', |
31 | 32 | ); |
32 | 33 | $wgExtensionCredits['specialpage'][] = array( |
33 | 34 | 'name' => 'Todo Tasks', |
— | — | @@ -34,7 +35,8 @@ |
35 | 36 | 'author' => 'Paul Grinberg', |
36 | 37 | 'email' => 'gri6507 at yahoo dot com', |
37 | 38 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Todo_Tasks', |
38 | | - 'description' => 'Adds a special page for reviewing tasks assignments' |
| 39 | + 'description' => 'Adds a special page for reviewing tasks assignments', |
| 40 | + 'descriptionmsg' => 'tasklist-special-desc', |
39 | 41 | ); |
40 | 42 | |
41 | 43 | $wgUseProjects = true; |