Index: trunk/extensions/Wikilog/WikilogCommentsPage.php |
— | — | @@ -594,7 +594,10 @@ |
595 | 595 | $log->addEntry( 'c-approv', $title, '' ); |
596 | 596 | $wgOut->redirect( $this->mTalkTitle->getFullUrl() ); |
597 | 597 | } else if ( $approval == 'reject' ) { |
598 | | - $reason = wfMsgForContent( 'wikilog-log-cmt-rejdel', $comment->mUserText ); |
| 598 | + $reason = wfMsgExt( 'wikilog-log-cmt-rejdel', |
| 599 | + array( 'content', 'parsemag' ), |
| 600 | + $comment->mUserText |
| 601 | + ); |
599 | 602 | $id = $title->getArticleID( GAID_FOR_UPDATE ); |
600 | 603 | if ( $this->doDeleteArticle( $reason, false, $id ) ) { |
601 | 604 | $comment->deleteComment(); |
Index: trunk/extensions/Wikilog/Wikilog.i18n.php |
— | — | @@ -24,8 +24,8 @@ |
25 | 25 | # Logs |
26 | 26 | 'wikilog-log-pagename' => 'Wikilog actions log', |
27 | 27 | 'wikilog-log-pagetext' => 'Below is a list of wikilog actions.', |
28 | | - 'wikilog-log-cmt-approve' => 'approved comment [[$1]]', |
29 | | - 'wikilog-log-cmt-reject' => 'rejected comment [[$1]]', |
| 28 | + 'wikilog-log-cmt-approve' => 'approved comment "[[$1]]"', |
| 29 | + 'wikilog-log-cmt-reject' => 'rejected comment "[[$1]]"', |
30 | 30 | 'wikilog-log-cmt-rejdel' => 'Rejected wikilog comment from [[Special:Contributions/$1|$1]]', |
31 | 31 | |
32 | 32 | # Wikilog tab |