mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
- allow local moderators to properly use the mcp for more than one forum (mcp)
- automatically get a forum id for global topics if needed (mcp) - allow linking to unapproved topics via a post id (viewtopic) - use #p[post_id] anchor (mcp_post) - use actions where appropriate (mcp_queue) - added approve_details mode (mcp_queue) - use new post details page (mcp_queue) - adding missing lang keys for (dis)approval of topics/posts (mcp_queue) - return to topic link (mcp_topic) - some changes to follow the coding guidelines git-svn-id: file:///svn/phpbb/trunk@5584 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -55,6 +55,11 @@ $lang = array_merge($lang, array(
|
||||
'DELETE_TOPICS_CONFIRM' => 'Are you sure you want to delete these topics?',
|
||||
'DELETE_TOPIC_CONFIRM' => 'Are you sure you want to delete this topic?',
|
||||
'DISAPPROVE' => 'Disapprove',
|
||||
'DISAPPROVE_REASON' => 'Reason for disapproval',
|
||||
'DISAPPROVE_POST' => 'Disapprove Post',
|
||||
'DISAPPROVE_POST_CONFIRM' => 'Are you sure you want to disapprove this post?',
|
||||
'DISAPPROVE_POSTS' => 'Disapprove Posts',
|
||||
'DISAPPROVE_POSTS_CONFIRM' => 'Are you sure you want to disapprove the selected posts?',
|
||||
'DISPLAY_LOG' => 'Display entries from previous',
|
||||
'DISPLAY_OPTIONS' => 'Display options',
|
||||
|
||||
@@ -154,6 +159,7 @@ $lang = array_merge($lang, array(
|
||||
|
||||
'MCP_QUEUE' => 'Moderation Queue',
|
||||
'MCP_QUEUE_REPORTS' => 'Reports',
|
||||
'MCP_QUEUE_APPROVE_DETAILS' => 'Approve details',
|
||||
'MCP_QUEUE_UNAPPROVED_POSTS' => 'Posts awaiting for approval',
|
||||
'MCP_QUEUE_UNAPPROVED_TOPICS' => 'Topics awaiting for approval',
|
||||
'MCP_VIEW_ALL' => 'View all (%s)',
|
||||
@@ -194,6 +200,7 @@ $lang = array_merge($lang, array(
|
||||
'POSTER' => 'Poster',
|
||||
'POSTS_APPROVED_SUCCESS'=> 'The selected posts have been approved',
|
||||
'POSTS_DELETED_SUCCESS' => 'The selected posts have been successfully removed from the database',
|
||||
'POSTS_DISAPPROVED_SUCCESS'=> 'The selected posts have been disapproved',
|
||||
'POSTS_LOCKED_SUCCESS' => 'The selected posts have been locked successfully',
|
||||
'POSTS_MERGED_SUCCESS' => 'The selected posts have been merged',
|
||||
'POSTS_UNLOCKED_SUCCESS'=> 'The selected posts have been unlocked successfully',
|
||||
@@ -201,6 +208,7 @@ $lang = array_merge($lang, array(
|
||||
'POSTS_PER_PAGE_EXPLAIN'=> '(Set to 0 to view all posts)',
|
||||
'POST_APPROVED_SUCCESS' => 'The selected post has been approved',
|
||||
'POST_DELETED_SUCCESS' => 'The selected post has been successfully removed from the database',
|
||||
'POST_DISAPPROVED_SUCCESS' => 'The selected post has been disapproved',
|
||||
'POST_DETAILS' => 'Post details',
|
||||
'POST_LOCKED_SUCCESS' => 'Post locked successfully',
|
||||
'POST_NOT_EXIST' => 'The post you requested does not exist',
|
||||
@@ -224,6 +232,7 @@ $lang = array_merge($lang, array(
|
||||
'RETURN_MESSAGE' => 'Click %sHere%s to return to the message',
|
||||
'RETURN_NEW_FORUM' => 'Click %sHere%s to return to the new forum',
|
||||
'RETURN_NEW_TOPIC' => 'Click %sHere%s to return to the new topic',
|
||||
'RETURN_QUEUE' => 'Click %sHere%s to return to the queue',
|
||||
|
||||
'SELECT_ACTION' => 'Select desired action',
|
||||
'SELECT_TOPIC' => 'Select topic',
|
||||
@@ -245,13 +254,15 @@ $lang = array_merge($lang, array(
|
||||
'THIS_POST_IP' => 'IP for this post',
|
||||
'TOPICS_APPROVED_SUCCESS' => 'The selected topics have been approved',
|
||||
'TOPICS_DELETED_SUCCESS'=> 'The selected topics have been successfully removed from the database',
|
||||
'TOPICS_DISAPPROVED_SUCCESS' => 'The selected topics have been disapproved',
|
||||
'TOPICS_FORKED_SUCCESS' => 'The selected topics have been copied successfully',
|
||||
'TOPICS_LOCKED_SUCCESS' => 'The selected topics have been locked',
|
||||
'TOPICS_MOVED_SUCCESS' => 'The selected topics have been moved successfully',
|
||||
'TOPICS_RESYNC_SUCCESS' => 'The selected topics have been resynchronised',
|
||||
'TOPICS_UNLOCKED_SUCCESS' => 'The selected topics have been unlocked',
|
||||
'TOPIC_APPROVED_SUCCESS'=> 'The selected topic has been approved',
|
||||
'TOPIC_APPROVED_SUCCESS' => 'The selected topic has been approved',
|
||||
'TOPIC_DELETED_SUCCESS' => 'The selected topic has been successfully removed from the database',
|
||||
'TOPIC_DISAPPROVED_SUCCESS' => 'The selected topic has been disapproved',
|
||||
'TOPIC_FORKED_SUCCESS' => 'The selected topic has been copied successfully',
|
||||
'TOPIC_LOCKED_SUCCESS' => 'The selected topic has been locked',
|
||||
'TOPIC_MOVED_SUCCESS' => 'The selected topic has been moved successfully',
|
||||
|
Reference in New Issue
Block a user