Index: trunk/extensions/Translate/SpecialManageGroups.php |
— | — | @@ -42,25 +42,27 @@ |
43 | 43 | $groups = MessageGroups::singleton()->getGroups(); |
44 | 44 | |
45 | 45 | $wgOut->wrapWikiMsg( '==$1==', 'translate-manage-listgroups' ); |
| 46 | + $separator = wfMsg( 'word-separator' ); |
46 | 47 | |
47 | 48 | foreach ( $groups as $group ) { |
48 | 49 | if ( !$group instanceof FileBasedMessageGroup ) continue; |
49 | 50 | |
50 | 51 | $link = $this->skin->link( $this->getTitle(), $group->getLabel(), array(), array( 'group' => $group->getId() ) ); |
51 | | - $wgOut->addHtml( $link ); |
| 52 | + $out = $link . $separator; |
52 | 53 | |
53 | 54 | $cache = new MessageGroupCache( $group ); |
54 | 55 | |
55 | 56 | if ( $cache->exists() ) { |
56 | 57 | $timestamp = wfTimestamp( TS_MW, $cache->getTimestamp() ); |
57 | | - $wgOut->addWikiMsg( 'translate-manage-cacheat', |
| 58 | + $out .= wfMsg( 'translate-manage-cacheat', |
58 | 59 | $wgLang->date( $timestamp ), |
59 | 60 | $wgLang->time( $timestamp ) |
60 | 61 | ); |
61 | 62 | } else { |
62 | | - $wgOut->addWikiMsg( 'translate-manage-newgroup' ); |
| 63 | + $$out .= wfMsg( 'translate-manage-newgroup' ); |
63 | 64 | } |
64 | 65 | |
| 66 | + $wgOut->addHtml( $out ); |
65 | 67 | $wgOut->addHtml( '<hr>' ); |
66 | 68 | } |
67 | 69 | |