Index: trunk/extensions/Configure/Configure.page.php |
— | — | @@ -378,7 +378,12 @@ |
379 | 379 | foreach ( $versions as $data ) { |
380 | 380 | $ts = $data['timestamp']; |
381 | 381 | $count++; |
382 | | - $link = $skin->linkKnown( $title, $wgLang->timeAndDate( $ts ), array(), array( 'version' => $ts ) ); |
| 382 | + $datetime = wfMsgExt( 'configure-old-summary-datetime', array( 'parsemag', 'escape' ), |
| 383 | + $wgLang->timeAndDate( $ts ), |
| 384 | + $wgLang->date( $ts ), |
| 385 | + $wgLang->time( $ts ) |
| 386 | + ); |
| 387 | + $link = $skin->linkKnown( $title, $datetime, array(), array( 'version' => $ts ) ); |
383 | 388 | $diffLink = ''; |
384 | 389 | if ( $prev ) |
385 | 390 | $diffLink = '(' . $skin->linkKnown( SpecialPage::getTitleFor( 'ViewConfig' ), |
Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,10 @@ |
2 | 2 | This file lists changes on this extension. |
3 | 3 | Localisation updates are done on betawiki and aren't listed here. |
4 | 4 | |
| 5 | +0.14.12 - 17 August 2009 |
| 6 | + (bug 19058) Added configure-old-summary-datetime message for better date and |
| 7 | + time localisation in configure-old-summary message |
| 8 | + |
5 | 9 | 0.14.11 - 16 August 2009 |
6 | 10 | * (bug 19057) Added user name parameter to configure-viewconfig-line message |
7 | 11 | * (bug 19058) Added user name parameter to configure-old-summary message |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'description' => 'Allow authorised users to configure the wiki via a web-based interface', |
21 | 21 | 'descriptionmsg' => 'configure-desc', |
22 | | - 'version' => '0.14.11', |
| 22 | + 'version' => '0.14.12', |
23 | 23 | ); |
24 | 24 | |
25 | 25 | # Configuration part |
Index: trunk/extensions/Configure/Configure.i18n.php |
— | — | @@ -67,6 +67,7 @@ |
68 | 68 | 'configure-old-not-available' => 'The old version of the settings you requested, $1, is not available', |
69 | 69 | 'configure-old-changes' => 'changes', |
70 | 70 | 'configure-old-summary' => '$1 by $2 $4 $3', |
| 71 | + 'configure-old-summary-datetime' => '$1', |
71 | 72 | 'configure-saved' => 'The configuration has been saved', |
72 | 73 | 'configure-backlink' => 'Return to form', |
73 | 74 | 'configure-image-url-explanation' => 'Enter the URL to an image, or the name of an image on this wiki (without the namespace). A preview will be displayed when you leave the field.', |