Index: trunk/extensions/EducationProgram/actions/CourseHistoryAction.php |
— | — | @@ -20,7 +20,12 @@ |
21 | 21 | } |
22 | 22 | |
23 | 23 | protected function getDescription() { |
24 | | - return wfMsgHtml( 'coursehistory' ); |
| 24 | + return Linker::linkKnown( |
| 25 | + SpecialPage::getTitleFor( 'Log' ), |
| 26 | + $this->msg( 'ep-course-history' )->escaped(), |
| 27 | + array(), |
| 28 | + array( 'page' => $this->getTitle()->getPrefixedText() ) |
| 29 | + ); |
25 | 30 | } |
26 | 31 | |
27 | 32 | protected function getItemClass() { |
Index: trunk/extensions/EducationProgram/actions/OrgHistoryAction.php |
— | — | @@ -20,7 +20,12 @@ |
21 | 21 | } |
22 | 22 | |
23 | 23 | protected function getDescription() { |
24 | | - return wfMsgHtml( 'orghistory' ); |
| 24 | + return Linker::linkKnown( |
| 25 | + SpecialPage::getTitleFor( 'Log' ), |
| 26 | + $this->msg( 'ep-org-history' )->escaped(), |
| 27 | + array(), |
| 28 | + array( 'page' => $this->getTitle()->getPrefixedText() ) |
| 29 | + ); |
25 | 30 | } |
26 | 31 | |
27 | 32 | protected function getItemClass() { |
Index: trunk/extensions/EducationProgram/EducationProgram.i18n.php |
— | — | @@ -281,7 +281,6 @@ |
282 | 282 | 'vieworgaction-summary-status' => 'Status', |
283 | 283 | 'vieworgaction-summary-courses' => 'Course count', |
284 | 284 | 'vieworgaction-summary-students' => 'Student count', |
285 | | - 'ep-institution-nav-edit' => 'Edit this institution', |
286 | 285 | 'ep-institution-add-course' => 'Add a course', |
287 | 286 | 'ep-institution-inactive' => 'Inactive', |
288 | 287 | 'ep-institution-active' => 'Active', |
— | — | @@ -300,8 +299,13 @@ |
301 | 300 | 'viewcourseaction-summary-status' => 'Status', |
302 | 301 | 'viewcourseaction-summary-token' => 'Enrollment token', |
303 | 302 | 'ep-course-description' => 'description', |
304 | | - 'ep-course-nav-edit' => 'Edit this course', |
305 | 303 | |
| 304 | + // Institution history |
| 305 | + 'ep-org-history' => 'View logs for this institution', |
| 306 | + |
| 307 | + // Course history |
| 308 | + 'ep-course-history' => 'View logs for this course', |
| 309 | + |
306 | 310 | // Special:Ambassador |
307 | 311 | 'ep-ambassador-does-not-exist' => 'There is no ambassador with name "$1". See [[Special:Ambassadors|here]] for a list of ambassadors.', |
308 | 312 | 'ep-ambassador-title' => 'Ambassador: $1', |