Index: trunk/extensions/SemanticPageSeries/SemanticPageSeries.i18n.php |
— | — | @@ -14,8 +14,8 @@ |
15 | 15 | 'spssuccess' => '$1 pages will be created.', |
16 | 16 | 'spserror' => 'An error occurred', |
17 | 17 | |
18 | | - 'spserror_diffnotsupported' => 'The Diff action is not supported for page series.', |
19 | | - 'spserror_previewnotsupported' => 'The Preview action is not supported for page series.', |
| 18 | + 'spserror_diffnotsupported' => 'The diff action is not supported for page series.', |
| 19 | + 'spserror_previewnotsupported' => 'The preview action is not supported for page series.', |
20 | 20 | 'spserror_noiteratorname' => 'No iterator name given.', |
21 | 21 | 'spserror_iteratorunknown' => 'Iterator "$1" does not exist.', |
22 | 22 | 'spserror_noformname' => 'No form name given.', |
Index: trunk/extensions/SemanticPageSeries/includes/SPSSpecialSeriesEdit.php |
— | — | @@ -56,7 +56,7 @@ |
57 | 57 | $keys = array_keys( $get ); |
58 | 58 | |
59 | 59 | $wgOut->setPageTitle( wfMsg( 'spssuccesstitle', $keys[0] ) ); |
60 | | - $wgOut->addHTML( wfMsg( 'spssuccess', $get[$keys[0]] ) ); |
| 60 | + $wgOut->addHTML( wfMsg( 'spssuccess', $get[$keys[0]] ) ); // FIXME: per message doc this is a number. Therefor it needs a run through $wgLang->formatNum(). Maybe PLURAL too? |
61 | 61 | } else { |
62 | 62 | |
63 | 63 | // no action requested, show form |
Index: trunk/extensions/SemanticPageSeries/SemanticPageSeries.alias.php |
— | — | @@ -13,6 +13,6 @@ |
14 | 14 | /** English |
15 | 15 | */ |
16 | 16 | $specialPageAliases['en'] = array( |
17 | | - 'SeriesEdit' => array( 'SeriesEdit', 'SeriesEdit' ), |
| 17 | + 'SeriesEdit' => array( 'SeriesEdit' ), |
18 | 18 | ); |
19 | 19 | |