Files
nexusphp/resources/lang/en/forum.php
tonghoil 25db083394 新增帖子引用回复私信
1. 新增帖子引用回复私信功能
2. 修复Topic类某个typo
2025-09-16 00:32:45 +08:00

17 lines
558 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return [
'topic' => [
'replied_notify_subject' => 'The topic has a new reply',
'replied_notify_body' => 'Your topic:topic_subject has a new reply.',
],
'post' => [
'edited_notify_subject' => 'Post reply was modified',
'edited_notify_body' => 'Your reply to topic: :topic_subject was modified by: :editor.',
],
'reply' => [
'replied_notify_subject' => 'Your reply has a new reply',
'replied_notify_body' => 'Your reply to topic:topic_subject was replied by :replyer.',
]
];