[ Index ] |
PHP Cross Reference of MyBB |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * MyBB 1.6 English Language Pack 4 * Copyright 2010 MyBB Group, All Rights Reserved 5 * 6 * $Id: forum_management.lang.php 5828 2012-05-08 16:06:16Z Tomm $ 7 */ 8 9 $l['forum_management'] = "Forum Management"; 10 $l['forum_management_desc'] = "This section allows you to manage the categories and forums on your board. You can manage forum permissions and forum-specific moderators as well. If you change the display order for one or more forums or categories, make sure you submit the form at the bottom of the page."; 11 $l['add_forum'] = "Add New Forum"; 12 $l['add_forum_desc'] = "Here you can add a new forum or category to your board. You may also set initial permissions for this forum."; 13 $l['copy_forum'] = "Copy Forum"; 14 $l['copy_forum_desc'] = "Here you can copy forum settings or permissions from an existing forum to another or to a new forum."; 15 $l['forum_permissions'] = "Permissions"; 16 $l['forum_permissions_desc'] = "Here you can modify the full permissions for an individual group for a single forum"; 17 $l['view_forum'] = "View Forum"; 18 $l['view_forum_desc'] = "Here you can view sub forums, quickly edit permissions and add moderators to your forum."; 19 $l['add_child_forum'] = "Add Child Forum"; 20 $l['edit_forum_settings'] = "Edit Forum Settings"; 21 $l['edit_forum_settings_desc'] = "Here you can edit an existing forums' settings and its permissions."; 22 $l['edit_forum'] = "Edit Forum"; 23 $l['edit_mod'] = "Edit Moderator"; 24 $l['edit_mod_desc'] = "Here you can modify a particular moderator's settings."; 25 $l['forum_moderators'] = "Forum Moderators"; 26 $l['forum_permissions2'] = "Forum Permissions"; 27 $l['more_subforums'] = "and {1} more."; 28 29 $l['manage_forums'] = "Manage Forums"; 30 $l['forum'] = "Forum"; 31 $l['order'] = "Order"; 32 33 $l['subforums'] = "Sub Forums"; 34 $l['moderators'] = "Moderators"; 35 $l['permissions'] = "Permissions"; 36 $l['delete_forum'] = "Delete Forum"; 37 38 $l['sub_forums'] = "Sub Forums"; 39 $l['update_forum_orders'] = "Save Forum Orders"; 40 $l['update_forum_permissions'] = "Save Forum Permissions"; 41 $l['reset'] = "Reset"; 42 $l['in_forums'] = "Forums in \"{1}\""; 43 $l['forum_permissions_in'] = "Forum Permissions in \"{1}\""; 44 $l['moderators_assigned_to'] = "Moderators Assigned to \"{1}\""; 45 $l['edit_permissions'] = "Edit Permissions"; 46 $l['set_permissions'] = "Set Permissions"; 47 $l['using_custom_perms'] = "Using Custom Permissions"; 48 $l['using_default_perms'] = "Using Default Permissions"; 49 $l['clear_custom_perms'] = "Clear Custom Permissions"; 50 $l['set_custom_perms'] = "Set Custom Permissions"; 51 52 $l['permissions_use_group_default'] = "Use Group Default"; 53 $l['permissions_group'] = "Group"; 54 $l['permissions_canview'] = "Can view?"; 55 $l['permissions_canpostthreads'] = "Can post threads?"; 56 $l['permissions_canpostreplys'] = "Can post replies?"; 57 $l['permissions_canpostpolls'] = "Can post polls?"; 58 $l['permissions_canuploadattachments'] = "Can upload attachments?"; 59 $l['permissions_all'] = "All?"; 60 61 $l['overview_allowed_actions'] = "Overview: Allowed Actions"; 62 $l['overview_disallowed_actions'] = "Overview: Disallowed Actions"; 63 $l['perm_drag_canview'] = "• View"; 64 $l['perm_drag_canpostthreads'] = "• Post Threads"; 65 $l['perm_drag_canpostreplys'] = "• Post Replies"; 66 $l['perm_drag_canpostpolls'] = "• Post Polls"; 67 68 $l['moderator_permissions'] = "Moderator Permissions"; 69 $l['forum_desc'] = "Forum the moderator manages."; 70 $l['edit_mod_for'] = "Edit moderator options for \"{1}\""; 71 $l['can_edit_posts'] = "Can edit posts?"; 72 $l['can_delete_posts'] = "Can delete posts?"; 73 $l['can_view_ips'] = "Can view IPs?"; 74 $l['can_open_close_threads'] = "Can open/close and stick/unstick threads?"; 75 $l['can_manage_threads'] = "Can manage threads (split, move, copy, merge)?"; 76 $l['can_move_to_other_forums'] = "Can move threads to another forum this user doesn't moderate?"; 77 $l['can_use_custom_tools'] = "Can use custom moderator tools?"; 78 $l['save_mod'] = "Save Moderator"; 79 80 $l['no_forums'] = "There are no forums found."; 81 $l['no_moderators'] = "There are no moderators found."; 82 83 $l['success_forum_disporder_updated'] = "The forum display orders have been updated successfully."; 84 $l['success_forum_deleted'] = "The selected forum has been deleted successfully."; 85 $l['success_moderator_deleted'] = "The selected moderator has been deleted successfully."; 86 $l['success_forum_permissions_updated'] = "The forum permissions have been updated successfully."; 87 $l['success_forum_updated'] = "The forum settings have been updated successfully."; 88 $l['success_moderator_updated'] = "The selected moderator has been updated successfully."; 89 $l['success_custom_permission_cleared'] = "The custom permissions for this forum have been cleared successfully."; 90 91 $l['error_invalid_forum'] = "Please select a valid forum."; 92 $l['error_invalid_moderator'] = "Please select a valid moderator to delete."; 93 $l['error_invalid_fid'] = "Invalid Forum ID selected."; 94 $l['error_forum_parent_child'] = "You can't set the parent forum of this forum to one of it's children."; 95 $l['error_forum_parent_itself'] = "The forum parent cannot be the forum itself."; 96 $l['error_incorrect_moderator'] = "Please select a valid moderator."; 97 98 $l['confirm_moderator_deletion'] = "Are you sure you wish to remove this moderator from this forum?"; 99 $l['confirm_forum_deletion'] = "Are you sure you wish to delete this forum?"; 100 $l['confirm_clear_custom_permission'] = "Are you sure you wish to clear this custom permission?"; 101 102 $l['forum_type'] = "Forum Type"; 103 $l['forum_type_desc'] = "Select the type of forum you are creating - a forum you can post in, or a category, which contains other forums."; 104 $l['category'] = "Category"; 105 $l['title'] = "Title"; 106 $l['description'] = "Description"; 107 $l['save_forum'] = "Save Forum"; 108 $l['parent_forum'] = "Parent Forum"; 109 $l['parent_forum_desc'] = "The Forum that contains this forum. Categories do not have a parent forum - in this case, select 'None' - however, categories can be specified to have a parent forum."; 110 $l['none'] = "None"; 111 $l['display_order'] = "Display Order"; 112 113 $l['show_additional_options'] = "Show Additional Options"; 114 $l['hide_additional_options'] = "Hide Additional Options"; 115 $l['additional_forum_options'] = "Additional Forum Options"; 116 $l['forum_link'] = "Forum Link"; 117 $l['forum_link_desc'] = "To make a forum redirect to another location, enter the URL to the destination you wish to redirect to. Entering a URL in this field will remove the forum functionality; however, permissions can still be set for it."; 118 $l['forum_password'] = "Forum Password"; 119 $l['forum_password_desc'] = "To protect this forum further, you can choose a password that must be entered for access. Note: User groups still need permissions to access this forum."; 120 $l['access_options'] = "Access Options"; 121 $l['forum_is_active'] = "Forum is Active?"; 122 $l['forum_is_active_desc'] = "If unselected, this forum will not be shown to users and will not \"exist\"."; 123 $l['forum_is_open'] = "Forum is Open?"; 124 $l['forum_is_open_desc'] = "If unselected, users will not be able to post in this forum regardless of permissions."; 125 126 $l['copy_to_new_forum'] = "Copy to new forum"; 127 $l['source_forum'] = "Source forum"; 128 $l['source_forum_desc'] = "Forum to copy settings and/or permissions from."; 129 $l['destination_forum'] = "Destination forum"; 130 $l['destination_forum_desc'] = "Forum to copy settings and/or permissions to."; 131 $l['new_forum_settings'] = "New Forum Settings"; 132 $l['copy_settings_and_properties'] = "Copy Forum Settings and Properties"; 133 $l['copy_settings_and_properties_desc'] = "Only applies if the destination forum exists."; 134 $l['copy_user_group_permissions'] = "Copy User Group Permissions"; 135 $l['copy_user_group_permissions_desc'] = "Use CTRL to select multiple groups."; 136 137 $l['moderation_options'] = "Moderation Options"; 138 $l['mod_new_posts'] = "Yes, moderate new posts"; 139 $l['mod_new_threads'] = "Yes, moderate new threads"; 140 $l['mod_new_attachments'] = "Yes, moderate new attachments"; 141 $l['mod_after_edit'] = "Yes, moderate posts after they've been edited"; 142 $l['override_user_style'] = "Yes, override the user's selected style for this forum"; 143 $l['style_options'] = "Style Options"; 144 $l['forum_specific_style'] = "Forum-Specific Style:"; 145 $l['use_default'] = "Use Default"; 146 $l['dont_display_rules'] = "Don't display rules for this forum"; 147 $l['display_rules_inline'] = "Display rules for this forum on the thread listing"; 148 $l['display_rules_inline_new'] = "Display rules in the thread listing and for new threads/replies"; 149 $l['display_rules_link'] = "Display a link to the rules for this forum"; 150 $l['display_method'] = "Display Method:"; 151 $l['rules'] = "Rules:"; 152 $l['forum_rules'] = "Forum Rules"; 153 $l['name'] = "Name"; 154 $l['username'] = "Username"; 155 $l['moderator_username_desc'] = "Username of the moderator to be added"; 156 $l['add_user_as_moderator'] = "Add a user as Moderator"; 157 $l['usergroup'] = "Usergroup"; 158 $l['add_usergroup_as_moderator'] = "Add a usergroup as Moderators"; 159 $l['moderator_usergroup_desc'] = "Select a usergroup to add as a Moderator from the list below."; 160 $l['add_usergroup_moderator'] = "Add Usergroup Moderator"; 161 $l['add_user_moderator'] = "Add User Moderator"; 162 163 $l['default_view_options'] = "Default View Options"; 164 $l['default_date_cut'] = "Default Date Cut:"; 165 $l['default_sort_by'] = "Default Sort By:"; 166 $l['default_sort_order'] = "Default Sort Order:"; 167 168 $l['board_default'] = "Board Default"; 169 170 $l['datelimit_1day'] = "Last day"; 171 $l['datelimit_5days'] = "Last 5 days"; 172 $l['datelimit_10days'] = "Last 10 days"; 173 $l['datelimit_20days'] = "Last 20 days"; 174 $l['datelimit_50days'] = "Last 50 days"; 175 $l['datelimit_75days'] = "Last 75 days"; 176 $l['datelimit_100days'] = "Last 100 days"; 177 $l['datelimit_lastyear'] = "Last year"; 178 $l['datelimit_beginning'] = "The beginning"; 179 180 $l['sort_by_subject'] = "Thread subject"; 181 $l['sort_by_lastpost'] = "Last post time"; 182 $l['sort_by_starter'] = "Thread starter"; 183 $l['sort_by_started'] = "Thread creation time"; 184 $l['sort_by_rating'] = "Thread rating"; 185 $l['sort_by_replies'] = "Number of replies"; 186 $l['sort_by_views'] = "Number of views"; 187 188 $l['sort_order_asc'] = "Ascending"; 189 $l['sort_order_desc'] = "Descending"; 190 191 $l['misc_options'] = "Miscellaneous Options"; 192 $l['allow_html'] = "Yes, allow HTML in posts"; 193 $l['allow_mycode'] = "Yes, allow MyCode in posts"; 194 $l['allow_smilies'] = "Yes, allow smilies in posts"; 195 $l['allow_img_code'] = "Yes, allow [img] code in posts (requires MyCode to be turned on)"; 196 $l['allow_video_code'] = "Yes, allow [video] code in posts (requires MyCode to be turned on)"; 197 $l['allow_post_icons'] = "Yes, allow post icons to be chosen for posts"; 198 $l['allow_thread_ratings'] = "Yes, allow threads to be rated"; 199 $l['show_forum_jump'] = "Yes, show this forum in the 'forum jump' menu"; 200 $l['use_postcounts'] = "Yes, posts in this forum should count towards user post counts"; 201 202 $l['use_permissions'] = "Use Permissions"; 203 $l['use_permissions_desc'] = "Select the permissions you would like to use for this user group - inherited permissions (will delete custom permissions) or custom permissions."; 204 $l['inherit_permissions'] = "Use user group permissions or inherit permissions from parent forums"; 205 $l['custom_permissions'] = "Use custom permissions (below)"; 206 $l['custom_permissions_for'] = "Custom Permissions for"; 207 208 $l['inherited_permission'] = "inherited"; 209 $l['custom_permission'] = "custom"; 210 211 $l['save_permissions'] = "Save Forum Permissions"; 212 213 $l['error_missing_title'] = "You must enter in a title."; 214 $l['error_no_parent'] = "You must select a parent forum."; 215 $l['error_not_empty'] = "Forums with threads cannot be converted to categories."; 216 217 $l['success_forum_added'] = "The forum has been created successfully."; 218 $l['success_moderator_added'] = "The moderator has been added to this forum successfully."; 219 $l['success_forum_permissions_saved'] = "The forum permissions have been saved successfully."; 220 $l['success_forum_copied'] = "The selected forum has been copied successfully."; 221 222 $l['error_moderator_already_added'] = "The selected user/group is already a moderator of this forum."; 223 $l['error_moderator_not_found'] = "The specified username/group was not found."; 224 $l['error_new_forum_needs_name'] = "You need to give your new forum a name."; 225 $l['error_invalid_source_forum'] = "Invalid source forum."; 226 $l['error_invalid_destination_forum'] = "Invalid destination forum."; 227 228 $l['group_viewing'] = "Viewing"; 229 $l['group_posting_rating'] = "Posting / Rating"; 230 $l['group_editing'] = "Editing"; 231 $l['group_polls'] = "Polls"; 232 $l['group_misc'] = "Miscellaneous"; 233 234 $l['viewing_field_canview'] = "Can view forum?"; 235 $l['viewing_field_canviewthreads'] = "Can view threads within forum?"; 236 $l['viewing_field_canonlyviewownthreads'] = "Can only view own threads?"; 237 $l['viewing_field_candlattachments'] = "Can download attachments?"; 238 239 $l['posting_rating_field_canpostthreads'] = "Can post threads?"; 240 $l['posting_rating_field_canpostreplys'] = "Can post replies?"; 241 $l['posting_rating_field_canpostattachments'] = "Can post attachments?"; 242 $l['posting_rating_field_canratethreads'] = "Can rate threads?"; 243 244 $l['editing_field_caneditposts'] = "Can edit own posts?"; 245 $l['editing_field_candeleteposts'] = "Can delete own posts?"; 246 $l['editing_field_candeletethreads'] = "Can delete own threads?"; 247 $l['editing_field_caneditattachments'] = "Can update own attachments?"; 248 249 $l['polls_field_canpostpolls'] = "Can post polls?"; 250 $l['polls_field_canvotepolls'] = "Can vote in polls?"; 251 252 $l['misc_field_cansearch'] = "Can search forum?"; 253 254 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Oct 8 19:19:50 2013 | Cross-referenced by PHPXref 0.7.1 |