Fix #1877 allow moving archived messages back to the inbox

This commit is contained in:
Kijin Sung 2022-12-20 01:27:19 +09:00
parent 8b6e1949b0
commit afdc450b00
7 changed files with 64 additions and 9 deletions

View file

@ -21,7 +21,8 @@ $lang->cmd_view_friend = 'Friends';
$lang->cmd_add_friend = 'Add Friend';
$lang->cmd_message_box = 'Message Box';
$lang->cmd_view_message_box = 'Message Box';
$lang->cmd_store = 'Save';
$lang->cmd_store = 'Move to Archive';
$lang->cmd_restore_to_inbox = 'Move to Inbox';
$lang->cmd_view_selected_frend_group = 'View only selected group';
$lang->cmd_add_friend_group = 'Add Friend Group';
$lang->cmd_rename_friend_group = 'Rename Friend Group';
@ -31,6 +32,7 @@ $lang->msg_no_self_friend = 'You cannot add yourself as a friend.';
$lang->msg_no_message = 'There is no message.';
$lang->msg_cannot_send_to_yourself = 'Cannot send a message to yourself.';
$lang->message_received = 'You have a new message.';
$lang->msg_success_moved = 'Successfully moved.';
$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.';