mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 17:44:38 +09:00
Add option to disable admin content protection
최고관리자의 글을 게시판 관리자가 수정/삭제하지 못하도록 하는 기능은 게시판을 위키 등 협업 용도로 사용하는 경우 불편을 유발할 수 있으므로 옵션으로 켜고 끌 수 있도록 합니다. 기본값은 수정/삭제 금지입니다.
This commit is contained in:
parent
9d6e54f2f6
commit
3925c24487
9 changed files with 95 additions and 36 deletions
|
|
@ -56,6 +56,7 @@ $lang->allow_no_category = 'Do not require category';
|
|||
$lang->about_allow_no_category = 'Allow users to write documents without selecting a category.';
|
||||
$lang->protect_content = 'Protect Content';
|
||||
$lang->protect_comment = 'Protect Comment';
|
||||
$lang->protect_admin_content = 'Protect Admin Content';
|
||||
$lang->protect_regdate = 'Update/Delete Time Limit';
|
||||
$lang->cancel_vote = 'Vote Cancellation';
|
||||
$lang->filter_specialchars = 'Block Abuse of Unicode Symbols';
|
||||
|
|
@ -73,6 +74,7 @@ $lang->about_document_force_to_move = 'When a document is deleted, move to Trash
|
|||
$lang->about_non_login_vote = 'Allow users who are not logged in to vote on articles.';
|
||||
$lang->about_protect_regdate = 'Prevent updating or deleting a document or comment after a certain amount of time has passed. (Unit: day)';
|
||||
$lang->about_protect_content = 'Prevent updating a document if there are comments on it.';
|
||||
$lang->about_protect_admin_content = 'Prevent updating or deleting a document or comment written by the administrator, even by a user who is permitted to manage the board.';
|
||||
$lang->msg_protect_delete_content = 'You cannot delete a document with comments on it.';
|
||||
$lang->msg_protect_update_content = 'You cannot update a document with comments on it.';
|
||||
$lang->msg_admin_document_no_modify = 'You cannot edit the administrator\'s document.';
|
||||
|
|
|
|||
|
|
@ -57,6 +57,7 @@ $lang->allow_no_category = '미분류 허용';
|
|||
$lang->about_allow_no_category = '분류를 선택하지 않은 글도 허용하려면 체크하세요.';
|
||||
$lang->protect_content = '글 보호 기능';
|
||||
$lang->protect_comment = '댓글 보호 기능';
|
||||
$lang->protect_admin_content = '최고관리자 보호 기능';
|
||||
$lang->protect_regdate = '기간 제한 기능';
|
||||
$lang->cancel_vote = '추천/비추천/신고 취소 허용';
|
||||
$lang->filter_specialchars = '유니코드 특수문자 오남용 금지';
|
||||
|
|
@ -72,6 +73,7 @@ $lang->about_filter_specialchars = '가독성에 악영향을 주는 과도한
|
|||
$lang->about_non_login_vote = '로그인하지 않은 방문자도 추천할 수 있도록 합니다.';
|
||||
$lang->about_protect_regdate = '글이나 댓글을 작성한 후 일정 기간이 지나면 수정 또는 삭제할 수 없도록 합니다. (단위 : day)';
|
||||
$lang->about_protect_content = '댓글이 달린 글은 수정 또는 삭제할 수 없도록 합니다.';
|
||||
$lang->about_protect_admin_content = '최고관리자가 작성한 글이나 댓글은 게시판 관리 권한이 있는 회원이라도 수정 또는 삭제할 수 없도록 합니다.';
|
||||
$lang->msg_protect_delete_content = '댓글이 달린 글은 삭제할 수 없습니다.';
|
||||
$lang->msg_protect_update_content = '댓글이 달린 글은 수정할 수 없습니다.';
|
||||
$lang->msg_admin_document_no_modify = '최고관리자의 게시물을 수정할 권한이 없습니다.';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue