Fix #2281 warning/notice if sender/recipient of message is not a member anymore

This commit is contained in:
Kijin Sung 2024-01-27 23:52:11 +09:00
parent 4e192668a1
commit 86548a8d6a
6 changed files with 10 additions and 8 deletions

View file

@ -37,6 +37,7 @@ $lang->msg_title_is_null = 'Please enter the title of message.';
$lang->msg_content_is_null = 'Please enter the content.';
$lang->msg_allow_message_to_friend = 'Failed to send a message because the recipient accepts messages from friends only.';
$lang->msg_disallow_message = 'Failed to send a message because the recipient blocked receiving messages.';
$lang->msg_invalid_recipient = 'Failed to find the recipient\'s member information.';
$lang->about_allow_message = 'You can set whether to receive messages or not.';
$lang->msg_send_mail_privacy = 'Your email address will be exposed to the recipient.';
$lang->msg_send_mail_admin_only = 'The email option can only be used by the administrator.';

View file

@ -37,6 +37,7 @@ $lang->msg_title_is_null = '쪽지 제목을 입력해주세요.';
$lang->msg_content_is_null = '내용을 입력해주세요.';
$lang->msg_allow_message_to_friend = '친구에게만 쪽지 발송을 허용한 사용자라서 쪽지 발송을 하지 못했습니다.';
$lang->msg_disallow_message = '쪽지 수신을 거부한 사용자라서 쪽지 발송을 하지 못했습니다.';
$lang->msg_invalid_recipient = '수신자 정보를 찾을 수 없습니다.';
$lang->msg_send_mail_privacy = '보낸이의 메일 주소가 받는이에게 노출될 수 있습니다.';
$lang->msg_send_mail_admin_only = '메일 발송 기능은 관리자만 사용할 수 있습니다.';
$lang->about_allow_message = '쪽지 수신 여부를 결정할 수 있습니다.';