mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
17 lines
615 B
PHP
17 lines
615 B
PHP
<?php
|
||
|
||
return [
|
||
'topic' => [
|
||
'replied_notify_subject' => 'Het onderwerp heeft een nieuw antwoord',
|
||
'replied_notify_body' => 'Je topic::topic_subject heeft een nieuw antwoord.',
|
||
],
|
||
'post' => [
|
||
'edited_notify_subject' => 'Antwoord op bericht is gewijzigd',
|
||
'edited_notify_body' => 'Je antwoord op onderwerp: :topic_subject is gewijzigd door: :editor.',
|
||
],
|
||
'reply' => [
|
||
'replied_notify_subject' => 'Uw antwoord heeft een nieuw antwoord',
|
||
'replied_notify_body' => 'Je antwoord op topic::topic_onderwerp werd beantwoord door :responyer.',
|
||
]
|
||
];
|