Index: trunk/extensions/LiquidThreads/i18n/Lqt.i18n.php |
— | — | @@ -158,7 +158,7 @@ |
159 | 159 | 'lqt-history-comment' => 'Comment', |
160 | 160 | 'lqt-history-thread' => 'Thread', |
161 | 161 | 'lqt-thread-edited-author' => "Edited by author.<br />\nLast edit: $1", |
162 | | - 'lqt-thread-edited-others' => "Edited by {{PLURAL:$2|another user|$2 other users}}.<br />\nLast edit: $1", |
| 162 | + 'lqt-thread-edited-others' => "Edited by {{PLURAL:$2|another user|$2 users}}.<br />\nLast edit: $1", |
163 | 163 | 'lqt-header-actions' => 'Actions', |
164 | 164 | 'lqt_summarize_link' => 'Summarize', |
165 | 165 | 'lqt-summarize-intro' => 'Please summarize the below thread in the editing box. |
Index: trunk/extensions/LiquidThreads/classes/View.php |
— | — | @@ -1406,6 +1406,8 @@ |
1407 | 1407 | Threads::EDITED_BY_OTHERS => 'others' ); |
1408 | 1408 | $lastEdit = $thread->root()->getTimestamp(); |
1409 | 1409 | $lastEdit = $wgLang->timeanddate( $lastEdit, true ); |
| 1410 | + $lastEditTime = $wgLang->time( $lastEdit, true ); |
| 1411 | + $lastEditDate = $wgLang->date( $lastEdit, true ); |
1410 | 1412 | $editors = ''; |
1411 | 1413 | $editorCount = 0; |
1412 | 1414 | |
— | — | @@ -1428,7 +1430,8 @@ |
1429 | 1431 | $editedBy = $ebLookup[$editedFlag]; |
1430 | 1432 | $editedNotice = wfMsgExt( 'lqt-thread-edited-' . $editedBy, |
1431 | 1433 | array( 'parseinline' ), |
1432 | | - array( $lastEdit, $editorCount ) ); |
| 1434 | + array( $lastEdit, $editorCount, $lastEditTime, |
| 1435 | + $lastEditDate ) ); |
1433 | 1436 | $editedNotice = str_replace( '$3', $editors, $editedNotice ); |
1434 | 1437 | $infoElements[] = Xml::tags( 'div', array( 'class' => |
1435 | 1438 | 'lqt-thread-toolbar-edited-' . $editedBy ), |