Index: trunk/extensions/LiquidThreads/i18n/Lqt.i18n.php |
— | — | @@ -213,14 +213,19 @@ |
214 | 214 | 'lqt-enotif-subject-reply' => '{{SITENAME}} discussion - Reply: $1', |
215 | 215 | 'lqt-enotif-subject-newthread' => '{{SITENAME}} discussion - New thread: $1', |
216 | 216 | 'lqt-enotif-newthread' => "Hi $1, |
217 | | -This is a notification from {{SITENAME}} that a new thread on $5, '$2', |
218 | | -was created on $3 at $4. |
| 217 | + |
| 218 | +this is a notification from {{SITENAME}} that a new thread on $5, '$2', |
| 219 | +was created on $3 at $4 by $8 |
219 | 220 | |
220 | | -You can see it at <$6>", |
| 221 | +You can see it at <$6> |
| 222 | + |
| 223 | +The text is: |
| 224 | +$7", |
221 | 225 | 'lqt-enotif-reply' => "Hi $1, |
222 | | -This is a notification from {{SITENAME}} that a new reply to '$2' on $5, |
223 | | -was created on $3 at $4. |
224 | 226 | |
| 227 | +this is a notification from {{SITENAME}} that a new reply to '$2' on $5, |
| 228 | +was created on $3 at $4 by $8 |
| 229 | + |
225 | 230 | You can see it at <$6> |
226 | 231 | |
227 | 232 | The text of the reply is: |
Index: trunk/extensions/LiquidThreads/classes/NewMessagesController.php |
— | — | @@ -314,7 +314,8 @@ |
315 | 315 | $params = array( $u->getName(), $t->subjectWithoutIncrement(), |
316 | 316 | $date, $time, $talkPage, |
317 | 317 | $permalink, |
318 | | - $t->root()->getContent() ); |
| 318 | + $t->root()->getContent(), |
| 319 | + $t->author()->getName() ); |
319 | 320 | |
320 | 321 | // Get message in user's own language, bug 20645 |
321 | 322 | $msg = wfMsgReal( $msgName, $params, true /* use DB */, $langCode, |