Index: trunk/extensions/FlaggedRevs/language/PendingChanges.i18n.php |
— | — | @@ -11,7 +11,7 @@ |
12 | 12 | $messages['en'] = array( |
13 | 13 | 'pendingchanges' => 'Pages with pending changes', |
14 | 14 | 'pendingchanges-legend' => 'List reviewed pages with pending changes', |
15 | | - 'pendingchanges-list' => 'This page lists reviewed pages having one or more edits awaiting review.', |
| 15 | + 'pendingchanges-list' => 'This page lists [[{{MediaWiki:Validationpage}}|reviewed]] pages having one or more edits awaiting review.', |
16 | 16 | 'pendingchanges-none' => 'There are currently no pages meeting these criteria', |
17 | 17 | 'pendingchanges-hours' => '($1 {{PLURAL:$1|hour|hours}})', |
18 | 18 | 'pendingchanges-days' => '($1 {{PLURAL:$1|day|days}})', |
Index: trunk/extensions/FlaggedRevs/language/ProblemChanges.i18n.php |
— | — | @@ -10,6 +10,7 @@ |
11 | 11 | |
12 | 12 | $messages['en'] = array( |
13 | 13 | 'problemchanges' => 'Tagged pending changes', |
| 14 | + 'problemchanges-list' => 'This page lists [[{{MediaWiki:Validationpage}}|reviewed]] pages having one or more tagged edits awaiting review. A list of valid change tags can be found at [[Special:Tags]].', |
14 | 15 | 'problemchanges-legend' => 'List pages with tagged edits pending review', |
15 | 16 | 'problemchanges-none' => 'There are currently no pages meeting these criteria', |
16 | 17 | 'problemchanges-category' => 'Category:', |
Index: trunk/extensions/FlaggedRevs/FlaggedRevision.php |
— | — | @@ -602,8 +602,8 @@ |
603 | 603 | * (c) ( rev at time of review ) if FR_INCLUDES_FREEZE |
604 | 604 | * Pending changes exist for a template iff the template is used in |
605 | 605 | * the current rev of this page and one of the following holds: |
606 | | - * (a) Current template is newer than the "version used" above (updated) |
607 | | - * (b) Current template exists and the "version used" was non-existing (created) |
| 606 | + * (a) Current template is newer than the "version used" above (updated) |
| 607 | + * (b) Current template exists and the "version used" was non-existing (created) |
608 | 608 | * (c) Current template doesn't exist and the "version used" existed (deleted) |
609 | 609 | * |
610 | 610 | * @return Array of (template title, rev ID in reviewed version) tuples |
— | — | @@ -671,8 +671,8 @@ |
672 | 672 | * (c) ( rev at time of review ) if FR_INCLUDES_FREEZE |
673 | 673 | * Pending changes exist for a file iff the file is used in |
674 | 674 | * the current rev of this page and one of the following holds: |
675 | | - * (a) Current file is newer than the "version used" above (updated) |
676 | | - * (b) Current file exists and the "version used" was non-existing (created) |
| 675 | + * (a) Current file is newer than the "version used" above (updated) |
| 676 | + * (b) Current file exists and the "version used" was non-existing (created) |
677 | 677 | * (c) Current file doesn't exist and the "version used" existed (deleted) |
678 | 678 | * |
679 | 679 | * @param string $noForeign Using 'noForeign' skips new non-local file versions (bug 15748) |
Index: trunk/extensions/FlaggedRevs/specialpages/ProblemChanges_body.php |
— | — | @@ -41,6 +41,8 @@ |
42 | 42 | |
43 | 43 | public function showList( $par ) { |
44 | 44 | global $wgOut, $wgScript; |
| 45 | + // Add explanatory text |
| 46 | + $wgOut->addWikiMsg( 'problemchanges-list' ); |
45 | 47 | $limit = $this->parseParams( $par ); |
46 | 48 | $pager = new ProblemChangesPager( $this, $this->level, $this->category, $this->tag ); |
47 | 49 | // Apply limit if transcluded |