Index: trunk/extensions/FlaggedRevs/language/Stabilization.i18n.php |
— | — | @@ -43,6 +43,7 @@ |
44 | 44 | |
45 | 45 | /** Message documentation (Message documentation) |
46 | 46 | * @author Jon Harald Søby |
| 47 | + * @author Purodha |
47 | 48 | * @author SPQRobin |
48 | 49 | * @author Saper |
49 | 50 | */ |
— | — | @@ -94,7 +95,10 @@ |
95 | 96 | 'stabilize_expiry_invalid' => '{{Flagged Revs}}', |
96 | 97 | 'stabilize_expiry_old' => '{{Flagged Revs}}', |
97 | 98 | 'stabilize-expiring' => "{{Flagged Revs}} |
98 | | -Used to indicate when something expires. $1 is a time stamp in the wiki's content language. |
| 99 | +Used to indicate when something expires. |
| 100 | +$1 is a time stamp in the wiki's content language. |
| 101 | +$2 is the correxponding date in the wiki's content language. |
| 102 | +$3 is the correxponding time in the wiki's content language. |
99 | 103 | |
100 | 104 | {{Identical|Expires $1 (UTC)}}", |
101 | 105 | ); |
Index: trunk/extensions/FlaggedRevs/specialpages/Stabilization_body.php |
— | — | @@ -244,7 +244,9 @@ |
245 | 245 | $encodedExpiry = Block::encodeExpiry($expiry, $dbw ); |
246 | 246 | if( $encodedExpiry != 'infinity' ) { |
247 | 247 | $expiry_description = ' (' . wfMsgForContent( 'stabilize-expiring', |
248 | | - $wgContLang->timeanddate($expiry, false, false) ) . ')'; |
| 248 | + $wgContLang->timeanddate($expiry, false, false) , |
| 249 | + $wgContLang->date($expiry, false, false) , |
| 250 | + $wgContLang->time($expiry, false, false) ) . ')'; |
249 | 251 | $reason .= "$expiry_description"; |
250 | 252 | } |
251 | 253 | } |