Index: trunk/extensions/Translate/SpecialTranslations.php |
— | — | @@ -179,6 +179,13 @@ |
180 | 180 | $tools['edit'] = $sk->link( $t, $niceTitle ); |
181 | 181 | } |
182 | 182 | |
| 183 | + $tools['history'] = $sk->link( |
| 184 | + $t, |
| 185 | + " <sup>h</sup> ", |
| 186 | + array( 'action'), |
| 187 | + array( 'action' => 'history' ) |
| 188 | + ); |
| 189 | + |
183 | 190 | $anchor = 'msg_' . $key; |
184 | 191 | $anchor = Xml::element( 'a', array( 'name' => $anchor, 'href' => "#$anchor" ), "↓" ); |
185 | 192 | |
— | — | @@ -190,7 +197,7 @@ |
191 | 198 | $class = 'def'; |
192 | 199 | } |
193 | 200 | |
194 | | - $leftColumn = $anchor . $tools['edit'] . $extra; |
| 201 | + $leftColumn = $anchor . $tools['history'] . $tools['edit'] . $extra; |
195 | 202 | $out .= Xml::tags( 'tr', array( 'class' => $class ), |
196 | 203 | Xml::tags( 'td', null, $leftColumn ) . |
197 | 204 | Xml::tags( 'td', null, TranslateUtils::convertWhiteSpaceToHTML( $pageInfo[$key][0] ) ) |