Index: trunk/extensions/LiquidThreads/i18n/Lqt.i18n.php |
— | — | @@ -306,6 +306,9 @@ |
307 | 307 | 'lqt-edit-bump-tooltip' => 'Move this thread to the top of its discussion page', |
308 | 308 | |
309 | 309 | 'lqt-historicalrevision-error' => 'The revision you have selected is corrupt, and cannot be viewed.', |
| 310 | + |
| 311 | + // Reply subpage name |
| 312 | + 'lqt-reply-subpage' => 'reply', |
310 | 313 | ); |
311 | 314 | |
312 | 315 | /** Message documentation (Message documentation) |
Index: trunk/extensions/LiquidThreads/classes/Threads.php |
— | — | @@ -191,9 +191,10 @@ |
192 | 192 | } |
193 | 193 | |
194 | 194 | static function newReplyTitle( $thread, $user ) { |
| 195 | + wfLoadExtensionMessages( 'LiquidThreads' ); |
195 | 196 | $topThread = $thread->topmostThread(); |
196 | 197 | |
197 | | - $base = $topThread->title()->getText() . '/reply'; |
| 198 | + $base = $topThread->title()->getText() . '/' . wfMsg('lqt-reply-subpage'); |
198 | 199 | |
199 | 200 | return self::incrementedTitle( $base, NS_LQT_THREAD ); |
200 | 201 | } |