inital commit
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['attachment_types'] = "Attachment Types";
|
||||
$l['attachment_types_desc'] = "Here you can create and manage attachment types which define which types of files users can attach to posts. Note: Disabling an attachment type will make existing attachments of this type inaccessible.";
|
||||
$l['add_new_attachment_type'] = "Add New Attachment Type";
|
||||
$l['add_attachment_type'] = "Add Attachment Type";
|
||||
$l['add_attachment_type_desc'] = "Adding a new attachment type will allow members to attach files of this type to their posts. You have the ability to control the extension, MIME type, maximum size and show a small icon for each attachment type.";
|
||||
$l['edit_attachment_type'] = "Edit Attachment Type";
|
||||
$l['edit_attachment_type_desc'] = "You have the ability to control the extension, MIME type, maximum size and show a small MIME type for this attachment type.";
|
||||
|
||||
$l['extension'] = "Extension";
|
||||
$l['maximum_size'] = "Maximum Size";
|
||||
$l['no_attachment_types'] = "There are no attachment types on your forum at this time.";
|
||||
|
||||
$l['name'] = "Name";
|
||||
$l['name_desc'] = "Enter the name of the attachment type.";
|
||||
$l['file_extension'] = "File Extension";
|
||||
$l['file_extension_desc'] = "Enter the file extension you wish to allow uploads for here (Do not include the period before the extension) (Example: txt)";
|
||||
$l['mime_type'] = "MIME Type";
|
||||
$l['mime_type_desc'] = "Enter the MIME type sent by the server when downloading files of this type (<a href=\"http://www.freeformatter.com/mime-types-list.html\">See a list here</a>)";
|
||||
$l['maximum_file_size'] = "Maximum File Size (Kilobytes)";
|
||||
$l['maximum_file_size_desc'] = "The maximum file size for uploads of this attachment type in Kilobytes (1 MB = 1024 KB)";
|
||||
$l['limit_intro'] = "Please ensure the maximum file size is below the smallest of the following PHP limits:";
|
||||
$l['limit_post_max_size'] = "Max Post Size: {1}";
|
||||
$l['limit_upload_max_filesize'] = "Upload Max File Size: {1}";
|
||||
$l['attachment_icon'] = "Attachment Icon";
|
||||
$l['attachment_icon_desc'] = "If you wish to show a small attachment icon for attachments of this type then enter the path to it here. {theme} will be replaced by the image directory for the viewers theme allowing you to specify per-theme attachment icons.";
|
||||
$l['save_attachment_type'] = "Save Attachment Type";
|
||||
|
||||
$l['error_invalid_attachment_type'] = "You have selected an invalid attachment type.";
|
||||
$l['error_missing_mime_type'] = "You did not enter a MIME type for this attachment type";
|
||||
$l['error_missing_extension'] = "You did not enter a file extension for this attachment type";
|
||||
|
||||
$l['success_attachment_type_created'] = "The attachment type has been created successfully.";
|
||||
$l['success_attachment_type_updated'] = "The attachment type has been updated successfully.";
|
||||
$l['success_attachment_type_deleted'] = "The attachment type has been deleted successfully.";
|
||||
|
||||
$l['confirm_attachment_type_deletion'] = "Are you sure you wish to delete this attachment type?";
|
||||
|
||||
$l['success_activated_attachment_type'] = 'The selected attachment type has been activated successfully.';
|
||||
$l['success_deactivated_attachment_type'] = 'The selected attachment type has been deactivated successfully.';
|
||||
|
||||
$l['enabled'] = "Enabled?";
|
||||
$l['avatar_file'] = 'Avatar File';
|
||||
$l['avatar_file_desc'] = 'Do you want to allow this attachment type to be used for avatars?';
|
||||
|
||||
$l['available_to_groups'] = 'Available to groups';
|
||||
$l['available_in_forums'] = 'Available in forums';
|
||||
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['bad_words'] = "Word Filters";
|
||||
$l['edit_bad_word'] = "Edit Filter";
|
||||
$l['edit_bad_word_desc'] = "Here you can edit the filter and its replacement.";
|
||||
$l['bad_word_filters'] = "Word Filters";
|
||||
$l['bad_word_filters_desc'] = "This feature allows you to manage a listing of words or phrases which are automatically replaced in posts on your forum. It is useful for replacing swear words and such.";
|
||||
|
||||
$l['bad_word'] = "Word";
|
||||
$l['bad_word_desc'] = "Enter the word which you wish to be filtered. The '*' symbol represents any number of characters and the '+' symbol represents any single character (other than space and new line).";
|
||||
$l['bad_word_max'] = "A filtered word can't be longer than 100 characters.";
|
||||
$l['replacement'] = "Replacement";
|
||||
$l['replacement_desc'] = "Enter the string which will replace the filtered word (If this is blank, asterisks will be shown).";
|
||||
$l['regex'] = "Regular Expression";
|
||||
$l['regex_desc'] = "Treat the \"Word\" field as a regular expression.";
|
||||
$l['replacement_word_max'] = "A replacement word can't be longer than 100 characters.";
|
||||
$l['error_replacement_word_invalid'] = "A replacement word cannot be equivalent to it's word filter.";
|
||||
|
||||
$l['save_bad_word'] = "Save Filter";
|
||||
$l['no_bad_words'] = "There are no word filters currently set at this time.";
|
||||
$l['add_bad_word'] = "Add a Filter";
|
||||
|
||||
$l['error_missing_bad_word'] = "You did not enter a word filter.";
|
||||
$l['error_invalid_regex'] = "The specified regular expression is invalid.";
|
||||
$l['error_invalid_bid'] = "The specified filter does not exist.";
|
||||
$l['error_bad_word_filtered'] = "The filter you entered already exists.";
|
||||
|
||||
$l['success_added_bad_word'] = "The filter has been added successfully.";
|
||||
$l['success_deleted_bad_word'] = "The filter has been deleted successfully.";
|
||||
$l['success_updated_bad_word'] = "The filter has been updated successfully.";
|
||||
|
||||
$l['confirm_bad_word_deletion'] = "Are you sure you wish to delete this filter?";
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['banning'] = "Banning";
|
||||
$l['banned_ips'] = "Banned IPs";
|
||||
$l['banned_ips_desc'] = "Here you can manage IP addresses which are banned from accessing your board.";
|
||||
$l['banned_accounts'] = "Banned Accounts";
|
||||
$l['disallowed_usernames'] = "Disallowed Usernames";
|
||||
$l['disallowed_usernames_desc'] = "Here you manage a list of usernames which cannot be registered or used by users. This feature is also particularly useful for reserving usernames.";
|
||||
$l['disallowed_email_addresses'] = "Disallowed Email Addresses";
|
||||
$l['disallowed_email_addresses_desc'] = "Here you manage a list of email addresses which cannot be registered or used by users.";
|
||||
|
||||
$l['banned_ip_addresses'] = "Banned IP Addresses";
|
||||
$l['username'] = "Username";
|
||||
$l['date_disallowed'] = "Date Disallowed";
|
||||
$l['last_attempted_use'] = "Last Attempted Use";
|
||||
$l['email_address'] = "Email Address";
|
||||
$l['ip_address'] = "IP Address";
|
||||
$l['ban_date'] = "Ban Date";
|
||||
$l['last_access'] = "Last Access";
|
||||
$l['no_bans'] = "There are no bans currently set at this time.";
|
||||
$l['add_disallowed_username'] = "Add a Disallowed Username";
|
||||
$l['username_desc'] = "Note: To indicate a wild card match, use *";
|
||||
$l['disallow_username'] = "Disallow Username";
|
||||
$l['add_disallowed_email_address'] = "Add a Disallowed Email Address";
|
||||
$l['email_address_desc'] = "Note: To indicate a wild card match, use *";
|
||||
$l['disallow_email_address'] = "Disallow Email Address";
|
||||
$l['ban_an_ip_address'] = "Ban an IP Address";
|
||||
$l['ip_address_desc'] = "Note: To ban a range of IP addresses use * (Ex: 127.0.0.*) or CIDR notation (Ex: 127.0.0.0/8)";
|
||||
$l['ban_ip_address'] = "Ban IP Address";
|
||||
|
||||
$l['error_missing_ban_input'] = "You did not enter a value to ban.";
|
||||
$l['error_invalid_filter'] = "The specified filter does not exist.";
|
||||
$l['error_filter_already_banned'] = "The filter you entered is already banned.";
|
||||
|
||||
$l['success_ip_banned'] = "The IP address has been banned successfully.";
|
||||
$l['success_username_disallowed'] = "The username has been disallowed successfully.";
|
||||
$l['success_email_disallowed'] = "The email address has been disallowed successfully.";
|
||||
$l['success_ban_deleted'] = "The specified ban has been deleted successfully.";
|
||||
|
||||
$l['confirm_ban_deletion'] = "Are you sure you wish to delete this ban?";
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['calendars'] = "Calendars";
|
||||
$l['manage_calendars'] = "Manage Calendars";
|
||||
$l['manage_calendars_desc'] = "This section allows you to manage the calendars on your board. If you change the display order for one or more calendars make sure you submit the form at the bottom of the page.";
|
||||
$l['add_calendar'] = "Add New Calendar";
|
||||
$l['add_calendar_desc'] = "Here you can create a new calendar.";
|
||||
$l['edit_calendar'] = "Edit Calendar";
|
||||
$l['edit_calendar_desc'] = "Here you can edit the settings for this calendar.";
|
||||
|
||||
$l['calendar'] = "Calendar";
|
||||
$l['order'] = "Order";
|
||||
$l['no_calendars'] = "There are no calendars on your forum at this time.";
|
||||
$l['save_calendar_orders'] = "Save Calendar Display Order";
|
||||
|
||||
$l['name'] = "Name";
|
||||
$l['display_order'] = "Display Order";
|
||||
$l['week_start'] = "Start of Week";
|
||||
$l['week_start_desc'] = "Here you can set the day weeks should start on for this calendar.";
|
||||
$l['sunday'] = "Sunday";
|
||||
$l['monday'] = "Monday";
|
||||
$l['tuesday'] = "Tuesday";
|
||||
$l['wednesday'] = "Wednesday";
|
||||
$l['thursday'] = "Thursday";
|
||||
$l['friday'] = "Friday";
|
||||
$l['saturday'] = "Saturday";
|
||||
$l['event_limit'] = "Event Limit";
|
||||
$l['event_limit_desc'] = "The number of events to be shown before a single link to all events on the particular day is shown instead.";
|
||||
$l['show_birthdays'] = "Show Birthdays?";
|
||||
$l['show_birthdays_desc'] = "Do you wish to show birthdays of registered users in this calendar?";
|
||||
$l['moderate_events'] = "Moderate New Events?";
|
||||
$l['moderate_events_desc'] = "If this option is set to 'Yes,' all events will be moderated apart from those created by members with 'Bypass moderation queue' set for their calendar permissions.";
|
||||
$l['allow_html'] = "Allow HTML in Events?";
|
||||
$l['allow_mycode'] = "Allow MyCode in Events?";
|
||||
$l['allow_img'] = "Allow [IMG] Code in Events?";
|
||||
$l['allow_video'] = "Allow [VIDEO] Code in Events?";
|
||||
$l['allow_smilies'] = "Allow Smilies in Events?";
|
||||
$l['save_calendar'] = "Save Calendar";
|
||||
|
||||
$l['permissions'] = "Permissions";
|
||||
$l['edit_permissions'] = "Edit Calendar Permissions";
|
||||
$l['calendar_permissions_for'] = "Calendar Permissions for";
|
||||
$l['permissions_group'] = "Group";
|
||||
$l['permissions_view'] = "View";
|
||||
$l['permissions_post_events'] = "Post Events";
|
||||
$l['permissions_bypass_moderation'] = "Bypass Moderation";
|
||||
$l['permissions_moderator'] = "Moderator Permissions";
|
||||
$l['permissions_all'] = "All?";
|
||||
$l['permissions_use_group_default'] = "Use Group Default";
|
||||
$l['save_permissions'] = "Save Permissions";
|
||||
|
||||
$l['error_invalid_calendar'] = "The specified calendar does not exist.";
|
||||
$l['error_missing_name'] = "You did not enter a name for this calendar";
|
||||
$l['error_missing_order'] = "You did not enter a display order for this calendar";
|
||||
|
||||
$l['success_calendar_created'] = "The calendar has been created successfully.";
|
||||
$l['success_calendar_updated'] = "The calendar has been updated successfully.";
|
||||
$l['success_calendar_permissions_updated'] = "The calendar permissions have been updated successfully.";
|
||||
$l['success_calendar_deleted'] = "The selected calendar has been deleted successfully.";
|
||||
$l['success_calendar_orders_updated'] = "The calendar display orders have been updated successfully.";
|
||||
|
||||
$l['confirm_calendar_deletion'] = "Are you sure you wish to delete this calendar?";
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['help_documents'] = "Help Documents";
|
||||
$l['add_new_section'] = "Add New Section";
|
||||
$l['add_new_section_desc'] = "Here you can add a new help section.";
|
||||
$l['add_new_document'] = "Add New Document";
|
||||
$l['add_new_document_desc'] = "Here you can add a new help document.";
|
||||
$l['edit_section'] = "Edit Section";
|
||||
$l['edit_section_desc'] = "Here you can edit a help section.";
|
||||
$l['edit_document'] = "Edit Document";
|
||||
$l['edit_document_desc'] = "Here you can edit a help document.";
|
||||
$l['manage_help_documents'] = "Manage Help Documents";
|
||||
$l['manage_help_documents_desc'] = "This section allows you to manage your help documents.";
|
||||
|
||||
$l['title'] = "Title";
|
||||
$l['short_description'] = "Short Description";
|
||||
$l['display_order'] = "Display Order";
|
||||
$l['enabled'] = "Enabled?";
|
||||
$l['use_translation'] = "Use Translation?";
|
||||
$l['add_section'] = "Add Section";
|
||||
$l['add_document'] = "Add Document";
|
||||
$l['save_section'] = "Save Section";
|
||||
$l['save_document'] = "Save Document";
|
||||
$l['section'] = "Section";
|
||||
$l['document'] = "Document";
|
||||
$l['id'] = "ID";
|
||||
$l['custom_doc_sec'] = "Custom Document/Section";
|
||||
$l['default_doc_sec'] = "Default Document/Section";
|
||||
$l['no_help_documents'] = "There are no help documents on your forum at this time.";
|
||||
$l['section_document'] = "Section / Document";
|
||||
|
||||
$l['error_section_missing_name'] = "You must specify a name for the section.";
|
||||
$l['error_section_missing_description'] = "You must specify a short description for the section.";
|
||||
$l['error_section_missing_enabled'] = "You must specify yes or no for \"Enabled?\".";
|
||||
$l['error_section_missing_translation'] = "You must specify yes or no for \"Use Translation?\".";
|
||||
$l['error_missing_sid'] = "You must specify a section for the document.";
|
||||
$l['error_document_missing_name'] = "You must specify a name for the document.";
|
||||
$l['error_document_missing_description'] = "You must specify a short description for the document.";
|
||||
$l['error_document_missing_document'] = "You must specify the document.";
|
||||
$l['error_document_missing_enabled'] = "You must specify yes or no for \"Enabled?\".";
|
||||
$l['error_document_missing_translation'] = "You must specify yes or no for \"Use Translation?\".";
|
||||
$l['error_invalid_sid'] = "Invalid document id specified.";
|
||||
$l['error_missing_section_id'] = "The specified section does not exist.";
|
||||
$l['error_missing_hid'] = "The specified document does not exist.";
|
||||
|
||||
$l['success_help_section_added'] = "The help section has been added successfully.";
|
||||
$l['success_help_document_added'] = "The help document has been added successfully.";
|
||||
$l['success_help_section_updated'] = "The help section has been updated successfully.";
|
||||
$l['success_help_document_updated'] = "The help document has been updated successfully.";
|
||||
$l['success_section_deleted'] = "The selected help section has been deleted successfully.";
|
||||
$l['success_document_deleted'] = "The selected help document has been deleted successfully.";
|
||||
|
||||
$l['confirm_section_deletion'] = "Are you sure you wish to delete this section?";
|
||||
$l['confirm_document_deletion'] = "Are you sure you wish to delete this document?";
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['languages'] = "Languages";
|
||||
$l['languages_desc'] = "The language packs you have installed on your forum are shown below. You can choose to edit the language files, edit the files with another language, or edit the language's properties.";
|
||||
$l['find_language_packs'] = "Find Language Packs";
|
||||
$l['language_files'] = "Language Files";
|
||||
$l['language_files_desc'] = "Below are the files within the selected language, for both the front-end and the admin control panel. Here you can choose to edit these files.";
|
||||
$l['quick_phrases'] = "Quick Phrases";
|
||||
$l['quick_phrases_desc'] = "Quick access to commonly modified language phrases.";
|
||||
|
||||
$l['edit_with'] = "Edit with {1}";
|
||||
$l['edit_language_variables'] = "Edit Language Variables";
|
||||
$l['edit_language_variables_desc'] = "Here you can edit the different language strings to your liking.";
|
||||
$l['edit_properties_desc'] = "Here you can edit a language pack properties.";
|
||||
$l['installed_language_packs'] = "Installed Language Packs";
|
||||
$l['front_end'] = "Front End";
|
||||
$l['admin_cp'] = "Admin CP";
|
||||
$l['save_language_file'] = "Save Language File";
|
||||
$l['nav_editing_set'] = "Editing Language Set Properties";
|
||||
$l['edit_properties'] = "Edit Language Pack Properties";
|
||||
$l['friendly_name'] = "Friendly Name";
|
||||
$l['language_in_html'] = "Language in <html> tag";
|
||||
$l['charset'] = "Character Set";
|
||||
$l['admin'] = "Contains Admin CP language variables?";
|
||||
$l['rtl'] = "Right-To-Left?";
|
||||
|
||||
$l['quickphrases_agreement'] = 'Registration Agreement - Title';
|
||||
$l['quickphrases_agreement_1'] = 'Registration Agreement - Paragraph 1';
|
||||
$l['quickphrases_agreement_2'] = 'Registration Agreement - Paragraph 2';
|
||||
$l['quickphrases_agreement_3'] = 'Registration Agreement - Paragraph 3';
|
||||
$l['quickphrases_agreement_4'] = 'Registration Agreement - Paragraph 4';
|
||||
$l['quickphrases_agreement_5'] = 'Registration Agreement - Paragraph 5';
|
||||
|
||||
$l['quickphrases_error_nopermission_guest_1'] = 'No Permissions Message - Paragraph 1';
|
||||
$l['quickphrases_error_nopermission_guest_2'] = 'No Permissions Message - Paragraph 2';
|
||||
$l['quickphrases_error_nopermission_guest_3'] = 'No Permissions Message - Paragraph 3';
|
||||
$l['quickphrases_error_nopermission_guest_4'] = 'No Permissions Message - Paragraph 4';
|
||||
|
||||
$l['no_languages'] = "No Languages";
|
||||
$l['no_language_files_front_end'] = "There are no Front End Language files found.";
|
||||
$l['no_language_files_admin_cp'] = "There are no Admin CP Language files found.";
|
||||
|
||||
$l['error_invalid_set'] = "Invalid language set specified.";
|
||||
$l['error_invalid_file'] = "Invalid language file specified.";
|
||||
$l['error_cannot_write_to_file'] = "Cannot write to file. Check the file permissions for this language set and try again";
|
||||
$l['error_folders_fail'] = "There was problem accessing requested language pack folders. Please make sure they exists and are writable.";
|
||||
|
||||
$l['alert_note_cannot_write'] = "Before you can edit the language file, you must CHMOD the files in this language set so that the server has permission to write to them.";
|
||||
|
||||
$l['success_langfile_updated'] = "The language file has been updated successfully.";
|
||||
$l['success_langprops_updated'] = "The language properties have been updated successfully.";
|
||||
$l['success_quickphrases_updated'] = "The quick language phrases have been updated successfully.";
|
||||
|
||||
$l['issues'] = "Issues";
|
||||
$l['phrases'] = "Phrases";
|
||||
$l['issues_ok'] = "It seems like everything should be ok here.";
|
||||
$l['issues_nothingtocompare'] = "There is nothing to compare here.";
|
||||
$l['issues_warning'] = "This file may require your attention.\nPlease make sure to check it.";
|
||||
@@ -0,0 +1,132 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['mod_tools'] = "Moderator Tools";
|
||||
|
||||
$l['thread_tools'] = "Thread Tools";
|
||||
$l['thread_tools_desc'] = "Custom moderator tools allows you to create combinations of moderator actions that can be used on both threads and posts. These can then be used like the default tools when managing your forum. Here you can manage your custom thread tools.";
|
||||
|
||||
$l['add_thread_tool'] = "Add Thread Tool";
|
||||
$l['add_new_thread_tool'] = "Add New Thread Tool";
|
||||
$l['add_thread_tool_desc'] = "Here you can add a new custom thread moderation tool. This tool will be accessible from both inline thread moderation and from within threads themselves, listed with the default moderation tools.";
|
||||
|
||||
$l['post_tools'] = "Post Tools";
|
||||
$l['post_tools_desc'] = "Custom moderator tools allows you to create combinations of moderator actions that can be used on both threads and posts. These can then be used like the default tools when managing your forum. Here you can manage your custom post tools.";
|
||||
|
||||
$l['add_post_tool'] = "Add Post Tool";
|
||||
$l['add_new_post_tool'] = "Add New Post Tool";
|
||||
$l['add_post_tool_desc'] = "Here you can add a new custom post moderation tool. This tool will be accessible from within threads themselves, listed with the default moderation tools.";
|
||||
|
||||
$l['edit_post_tool'] = "Edit Post Tool";
|
||||
$l['edit_post_tool_desc'] = "Here you can edit the post tool's settings and actions.";
|
||||
$l['edit_thread_tool'] = "Edit Thread Tool";
|
||||
$l['edit_thread_tool_desc'] = "Here you can edit the thread tool's settings and actions.";
|
||||
|
||||
$l['no_thread_tools'] = "There are no thread tools setup on your forum.";
|
||||
$l['no_post_tools'] = "There are no post tools setup on your forum.";
|
||||
|
||||
$l['confirm_thread_tool_deletion'] = "Are you sure you want to delete this thread tool?";
|
||||
$l['confirm_post_tool_deletion'] = "Are you sure you want to delete this post tool?";
|
||||
|
||||
$l['success_post_tool_deleted'] = "The selected post moderation tool has been deleted successfully.";
|
||||
$l['success_thread_tool_deleted'] = "The selected thread moderation tool has been deleted successfully.";
|
||||
|
||||
$l['error_invalid_post_tool'] = "The specified post tool does not exist.";
|
||||
$l['error_invalid_thread_tool'] = "The specified thread tool does not exist.";
|
||||
|
||||
$l['general_options'] = "General Options";
|
||||
$l['short_description'] = "Short Description";
|
||||
$l['available_in_forums'] = "Available in forums";
|
||||
$l['available_to_groups'] = "Available to groups";
|
||||
$l['show_confirmation'] = "Show Confirmation Page";
|
||||
$l['save_thread_tool'] = "Save Thread Tool";
|
||||
|
||||
$l['title'] = "Title";
|
||||
|
||||
$l['thread_moderation'] = "Thread Moderation";
|
||||
$l['approve_unapprove'] = "Approve/Unapprove thread?";
|
||||
|
||||
$l['no_change'] = "No Change";
|
||||
$l['approve'] = "Approve";
|
||||
$l['unapprove'] = "Unapprove";
|
||||
$l['stick'] = "Stick";
|
||||
$l['unstick'] = "Unstick";
|
||||
$l['open'] = "Open";
|
||||
$l['close'] = "Close";
|
||||
$l['stick'] = "Stick";
|
||||
$l['unstick'] = "Unstick";
|
||||
$l['toggle'] = "Toggle";
|
||||
$l['days'] = "Days";
|
||||
$l['no_prefix'] = "No Prefix";
|
||||
$l['restore'] = "Restore";
|
||||
$l['softdelete'] = "Soft delete";
|
||||
|
||||
$l['forum_to_move_to'] = "Forum to move to:";
|
||||
$l['leave_redirect'] = "Leave redirect?";
|
||||
$l['delete_redirect_after'] = "Delete redirect after";
|
||||
$l['do_not_move_thread'] = "Do not move thread";
|
||||
$l['do_not_copy_thread'] = "Do not copy thread";
|
||||
$l['move_thread'] = "Move thread?";
|
||||
$l['move_thread_desc'] = "If moving the thread(s), the \"delete redirect after… days\" is only to be filled in if a redirect will be left.";
|
||||
$l['forum_to_copy_to'] = "Forum to copy to:";
|
||||
$l['copy_thread'] = "Copy thread?";
|
||||
$l['open_close_thread'] = "Open/close thread?";
|
||||
$l['stick_unstick_thread'] = "Stick/unstick thread?";
|
||||
$l['softdelete_restore_thread'] = "Soft delete/restore thread?";
|
||||
$l['delete_thread'] = "Delete thread permanently?";
|
||||
$l['merge_thread'] = "Merge thread?";
|
||||
$l['merge_thread_desc'] = "Only if used in inline moderation.";
|
||||
$l['delete_poll'] = "Delete poll?";
|
||||
$l['delete_redirects'] = "Delete redirects?";
|
||||
$l['remove_subscriptions'] = "Remove thread subscriptions?";
|
||||
$l['recount_rebuild'] = "Recount & Rebuild?";
|
||||
$l['apply_thread_prefix'] = "Apply thread prefix?";
|
||||
$l['new_subject'] = "New subject?";
|
||||
$l['new_subject_desc'] = "{subject} represents the original subject. {username} represents the moderator's username.";
|
||||
|
||||
$l['add_new_reply'] = "Add New Reply";
|
||||
$l['add_new_reply_desc'] = "Leave blank for no reply.";
|
||||
$l['reply_subject'] = "Reply subject.";
|
||||
$l['reply_subject_desc'] = "Only used if a reply was made.<br />{subject} represents the original subject. {username} represents the moderator's username.";
|
||||
|
||||
$l['success_mod_tool_created'] = "The moderation tool has been created successfully.";
|
||||
$l['success_mod_tool_updated'] = "The moderation tool has been updated successfully.";
|
||||
|
||||
$l['inline_post_moderation'] = "Inline Post Moderation";
|
||||
$l['delete_posts'] = "Delete posts permanently?";
|
||||
$l['merge_posts'] = "Merge posts?";
|
||||
$l['merge_posts_desc'] = "Only if used from inline moderation.";
|
||||
$l['approve_unapprove_posts'] = "Approve/unapprove posts?";
|
||||
$l['softdelete_restore_posts'] = "Soft delete/restore posts?";
|
||||
|
||||
$l['split_posts'] = "Split Posts";
|
||||
$l['split_posts2'] = "Split posts?";
|
||||
$l['do_not_split'] = "Do not split posts";
|
||||
$l['split_to_same_forum'] = "Split to same forum";
|
||||
$l['close_split_thread'] = "Close split thread?";
|
||||
$l['stick_split_thread'] = "Stick split thread?";
|
||||
$l['unapprove_split_thread'] = "Unapprove split thread?";
|
||||
$l['split_thread_prefix'] = "Split thread prefix";
|
||||
$l['split_thread_subject'] = "Split thread subject";
|
||||
$l['split_thread_subject_desc'] = "{subject} represents the original subject. Only required if splitting posts.";
|
||||
$l['add_new_split_reply'] = "Add reply to split thread";
|
||||
$l['add_new_split_reply_desc'] = "Leave blank for no reply.";
|
||||
$l['split_reply_subject'] = "Reply subject";
|
||||
$l['split_reply_subject_desc'] = "Only used if a reply is made";
|
||||
$l['save_post_tool'] = "Save Post Tool";
|
||||
|
||||
$l['send_private_message'] = 'Send Private Message';
|
||||
$l['private_message_message'] = 'Message';
|
||||
$l['private_message_message_desc'] = 'Message to send to the author of the thread. Leave empty to disable this feature.';
|
||||
$l['private_message_subject'] = 'Subject';
|
||||
$l['private_message_subject_desc'] = 'Enter the subject of the Private Message.';
|
||||
|
||||
$l['error_missing_title'] = "Please enter a name for this tool.";
|
||||
$l['error_missing_description'] = "Please enter a short description for this tool.";
|
||||
$l['error_no_forums_selected'] = "Please select the forums in which this tool will be available.";
|
||||
$l['error_no_groups_selected'] = "Please select the groups to which this tool will be available.";
|
||||
$l['error_forum_is_category'] = "You can't pick a category-type forum as a destination forum.";
|
||||
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['configuration'] = "Configuration";
|
||||
|
||||
$l['bbsettings'] = "Settings";
|
||||
$l['banning'] = "Banning";
|
||||
$l['custom_profile_fields'] = "Custom Profile Fields";
|
||||
$l['smilies'] = "Smilies";
|
||||
$l['word_filters'] = "Word Filters";
|
||||
$l['mycode'] = "MyCode";
|
||||
$l['languages'] = "Languages";
|
||||
$l['post_icons'] = "Post Icons";
|
||||
$l['help_documents'] = "Help Documents";
|
||||
$l['plugins'] = "Plugins";
|
||||
$l['attachment_types'] = "Attachment Types";
|
||||
$l['moderator_tools'] = "Moderator Tools";
|
||||
$l['spiders_bots'] = "Spiders / Bots";
|
||||
$l['calendars'] = "Calendars";
|
||||
$l['warning_system'] = "Warning System";
|
||||
$l['thread_prefixes'] = "Thread Prefixes";
|
||||
$l['security_questions'] = "Security Questions";
|
||||
$l['report_reasons'] = "Report Reasons";
|
||||
|
||||
$l['can_manage_settings'] = "Can manage settings?";
|
||||
$l['can_manage_banned_accounts'] = "Can manage banned accounts?";
|
||||
$l['can_manage_custom_profile_fields'] = "Can manage custom profile fields?";
|
||||
$l['can_manage_smilies'] = "Can manage smilies?";
|
||||
$l['can_manage_bad_words'] = "Can manage word filters?";
|
||||
$l['can_manage_custom_mycode'] = "Can manage custom MyCode?";
|
||||
$l['can_manage_language_packs'] = "Can manage language packs?";
|
||||
$l['can_manage_post_icons'] = "Can manage post icons?";
|
||||
$l['can_manage_help_documents'] = "Can manage help documents?";
|
||||
$l['can_manage_plugins'] = "Can manage plugins?";
|
||||
$l['can_manage_attachment_types'] = "Can manage attachment types?";
|
||||
$l['can_manage_spiders_bots'] = "Can manage spiders / bots?";
|
||||
$l['can_manage_calendars'] = "Can manage calendars?";
|
||||
$l['can_manage_warning_system'] = "Can manage warning system?";
|
||||
$l['can_manage_mod_tools'] = "Can manage moderator tools?";
|
||||
$l['can_manage_thread_prefixes'] = "Can manage thread prefixes?";
|
||||
$l['can_manage_security_questions'] = "Can manage security questions?";
|
||||
$l['can_manage_report_reasons'] = "Can manage report reasons?";
|
||||
|
||||
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['custom_mycode'] = "Custom MyCode";
|
||||
$l['mycode'] = "MyCode";
|
||||
$l['mycode_desc'] = "Custom MyCode allows you to create additional MyCode for your members to use in their messages.";
|
||||
$l['add_new_mycode'] = "Add New MyCode";
|
||||
$l['add_new_mycode_desc'] = "Here you can add a new custom MyCode to your forum. You can use the MyCode Sandbox below the form to test your regular expression and replacement before saving.";
|
||||
$l['edit_mycode_desc'] = "Here you can edit a custom MyCode. You can use the MyCode Sandbox below the form to test your regular expression and replacement before saving your changes.";
|
||||
|
||||
$l['title'] = "Title";
|
||||
$l['short_description'] = "Short Description";
|
||||
$l['regular_expression'] = "Regular Expression";
|
||||
$l['regular_expression_desc'] = "Enter a regular expression that will search for a specific combination of characters. You must make sure the regular expression is valid and safe—no validation is performed.";
|
||||
$l['replacement'] = "Replacement";
|
||||
$l['replacement_desc'] = "Enter a replacement for the regular expression.";
|
||||
$l['example'] = "Example:";
|
||||
$l['enabled'] = "Enabled?";
|
||||
$l['parse_order'] = "Parse Order";
|
||||
$l['parse_order_desc'] = "MyCodes will be parsed in ascending order relative to other MyCodes.";
|
||||
$l['edit_mycode'] = "Edit MyCode";
|
||||
$l['activate_mycode'] = "Activate MyCode";
|
||||
$l['deactivate_mycode'] = "Deactivate MyCode";
|
||||
$l['delete_mycode'] = "Delete MyCode";
|
||||
$l['no_mycode'] = "No custom MyCodes exist at this time.";
|
||||
$l['save_mycode'] = "Save MyCode";
|
||||
$l['add_mycode'] = "Add MyCode";
|
||||
$l['changes_not_saved'] = "Your changes have not yet been saved.";
|
||||
|
||||
$l['sandbox'] = "Sandbox";
|
||||
$l['sandbox_desc'] = "You can use this area to test the regular expression and replacement above before saving your changes.";
|
||||
$l['test_value'] = "Test Value";
|
||||
$l['test_value_desc'] = "Enter in text to be tested in the box below.";
|
||||
$l['result_html'] = "HTML Result";
|
||||
$l['result_html_desc'] = "The text area below shows the resulting HTML using the regular expression on the test value.";
|
||||
$l['result_actual'] = "Actual Result";
|
||||
$l['result_actual_desc'] = "The area below shows the actual result when the HTML is rendered.";
|
||||
$l['test'] = "Test MyCode";
|
||||
|
||||
$l['error_missing_title'] = "You did not enter a title.";
|
||||
$l['error_missing_regex'] = "You did not enter a regular expression.";
|
||||
$l['error_regex_already_available'] = "You entered a regular expression which is already defined in another MyCode. Please provide a different regular expression for this MyCode.";
|
||||
$l['error_missing_replacement'] = "You did not enter a replacement.";
|
||||
$l['error_invalid_mycode'] = "The specified MyCode does not exist.";
|
||||
|
||||
$l['success_added_mycode'] = "The MyCode has been added successfully.";
|
||||
$l['success_deleted_mycode'] = "The selected MyCode has been deleted successfully.";
|
||||
$l['success_updated_mycode'] = "The MyCode has been updated successfully.";
|
||||
$l['success_deactivated_mycode'] = "The selected MyCode has been deactivated successfully.";
|
||||
$l['success_activated_mycode'] = "The selected MyCode has been activated successfully.";
|
||||
|
||||
$l['confirm_mycode_deletion'] = "Are you sure you wish to delete this MyCode?";
|
||||
|
||||
$l['mycode_sandbox_test_error'] = 'There was an error fetching the test results.';
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['plugins'] = "Plugins";
|
||||
$l['plugins_desc'] = "This section allows you to activate, deactivate, and manage the plugins that you have uploaded to your forum's <strong>inc/plugins</strong> directory. To hide a plugin from view, but not lose any stored information from it, click the Deactivate link.";
|
||||
$l['plugin_updates'] = "Plugin Updates";
|
||||
$l['plugin_updates_desc'] = "This section allows you to check for updates on all your plugins.";
|
||||
$l['browse_plugins'] = "Browse Plugins";
|
||||
$l['browse_plugins_desc'] = "Here you may browse the official MyBB modifications site for plugins compatible with your series of MyBB.";
|
||||
$l['browse_all_plugins'] = "Browse All Plugins";
|
||||
|
||||
$l['plugin'] = "Plugin";
|
||||
$l['active_plugin'] = "Active Plugins";
|
||||
$l['inactive_plugin'] = "Inactive Plugins";
|
||||
$l['your_version'] = "Your Version";
|
||||
$l['latest_version'] = "Latest Version";
|
||||
$l['download'] = "Download";
|
||||
$l['deactivate'] = "Deactivate";
|
||||
$l['activate'] = "Activate";
|
||||
$l['install_and_activate'] = "Install & Activate";
|
||||
$l['uninstall'] = "Uninstall";
|
||||
$l['created_by'] = "Created by";
|
||||
$l['no_plugins'] = "There are no plugins on your forum at this time.";
|
||||
$l['no_active_plugins'] = "There are no active plugins on your forum.";
|
||||
$l['no_inactive_plugins'] = "There are no inactive plugins available.";
|
||||
|
||||
$l['plugin_incompatible'] = "This plugin is incompatible with MyBB {1}";
|
||||
|
||||
$l['recommended_plugins_for_mybb'] = "Recommended Plugins for MyBB {1}";
|
||||
$l['browse_results_for_mybb'] = "Browse Results for MyBB {1}";
|
||||
$l['search_for_plugins'] = "Search for Plugins";
|
||||
$l['search'] = "Search";
|
||||
|
||||
$l['error_vcheck_no_supported_plugins'] = "None of the plugins installed support version checking.";
|
||||
$l['error_vcheck_communications_problem'] = "There was a problem communicating with the MyBB modifications version server. Please try again in a few minutes.";
|
||||
$l['error_vcheck_vulnerable'] = "[Vulnerable plugin]:";
|
||||
$l['error_vcheck_vulnerable_notes'] = "This submission has currently been marked as vulnerable by the MyBB Staff. We recommend complete removal of this modification. Please see the notes below: ";
|
||||
$l['error_no_input'] = "Error code 1: No input specified.";
|
||||
$l['error_no_pids'] = "Error code 2: No plugin ids specified.";
|
||||
$l['error_communication_problem'] = "There was a problem communicating with the MyBB modifications server. Please try again in a few minutes.";
|
||||
$l['error_invalid_plugin'] = "The selected plugin does not exist.";
|
||||
$l['error_no_results_found'] = "No results were found for the specified keywords.";
|
||||
|
||||
$l['success_plugins_up_to_date'] = "Congratulations, all of your plugins are up to date.";
|
||||
$l['success_plugin_activated'] = "The selected plugin has been activated successfully.";
|
||||
$l['success_plugin_deactivated'] = "The selected plugin has been deactivated successfully.";
|
||||
$l['success_plugin_installed'] = "The selected plugin has been installed and activated successfully.";
|
||||
$l['success_plugin_uninstalled'] = "The selected plugin has been uninstalled successfully.";
|
||||
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['post_icons'] = "Post Icons";
|
||||
$l['add_post_icon'] = "Add New Post Icon";
|
||||
$l['add_post_icon_desc'] = "Here you can add a single new post icon.";
|
||||
$l['add_multiple_post_icons'] = "Add Multiple Post Icons";
|
||||
$l['add_multiple_post_icons_desc'] = "Here you can add multiple new post icons.";
|
||||
$l['edit_post_icon'] = "Edit Post Icon";
|
||||
$l['edit_post_icon_desc'] = "Here you can edit a post icon.";
|
||||
$l['manage_post_icons'] = "Manage Post Icons";
|
||||
$l['manage_post_icons_desc'] = "This section allows you to edit, delete, and manage your post icons.";
|
||||
|
||||
$l['name_desc'] = "This is the name for the post icon.";
|
||||
$l['image_path'] = "Image Path";
|
||||
$l['image_path_desc'] = "This is the path to the post icon image. If you want to use different post icon images for different themes, please use <strong>{theme}</strong> to represent the image directory of each theme.";
|
||||
$l['save_post_icon'] = "Save Post Icon";
|
||||
$l['reset'] = "Reset";
|
||||
|
||||
$l['path_to_images'] = "Path to Images";
|
||||
$l['path_to_images_desc'] = "This is the path to the folder that the images are in.";
|
||||
$l['show_post_icons'] = "Show Post Icons";
|
||||
$l['image'] = "Image";
|
||||
$l['add'] = "Add?";
|
||||
$l['save_post_icons'] = "Save Post Icons";
|
||||
|
||||
$l['no_post_icons'] = "There are no post icons on your forum at this time.";
|
||||
|
||||
$l['error_missing_name'] = "You did not enter a name for this post icon";
|
||||
$l['error_missing_path'] = "You did not enter a path to this post icon";
|
||||
$l['error_missing_path_multiple'] = "You did not enter a path";
|
||||
$l['error_invalid_path'] = "You did not enter a valid path";
|
||||
$l['error_no_images'] = "There are no post icons in the specified directory, or all post icons in the directory have already been added.";
|
||||
$l['error_none_included'] = "You did not select any post icons to include.";
|
||||
$l['error_invalid_post_icon'] = "The specified post icon does not exist.";
|
||||
|
||||
$l['success_post_icon_added'] = "The post icon has been added successfully.";
|
||||
$l['success_post_icons_added'] = "The selected post icons have been added successfully.";
|
||||
$l['success_post_icon_updated'] = "The post icon has been updated successfully.";
|
||||
$l['success_post_icon_deleted'] = "The selected post icon has been deleted successfully.";
|
||||
|
||||
$l['confirm_post_icon_deletion'] = "Are you sure you wish to delete this post icon?";
|
||||
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['custom_profile_fields'] = "Custom Profile Fields";
|
||||
$l['custom_profile_fields_desc'] = "This section allows you to edit, delete, and manage your custom profile fields.";
|
||||
$l['add_profile_field'] = "Add Profile Field";
|
||||
$l['add_new_profile_field'] = "Add New Profile Field";
|
||||
$l['add_new_profile_field_desc'] = "Here you can add a new custom profile field.";
|
||||
$l['edit_profile_field'] = "Edit Profile Field";
|
||||
$l['edit_profile_field_desc'] = "Here you can edit a custom profile field.";
|
||||
|
||||
$l['title'] = "Title";
|
||||
$l['short_description'] = "Short Description";
|
||||
$l['maximum_length'] = "Maximum Length";
|
||||
$l['maximum_length_desc'] = "This maximum number of characters that can be entered. This only applies to text boxes and text areas.";
|
||||
$l['field_length'] = "Field Length";
|
||||
$l['field_length_desc'] = "This length of the field. This only applies to single and multiple select boxes.";
|
||||
$l['display_order'] = "Display Order";
|
||||
$l['display_order_desc'] = "This is the order of custom profile fields in relation to other custom profile fields. This number should not be the same as another field.";
|
||||
$l['text'] = "Textbox";
|
||||
$l['textarea'] = "Textarea";
|
||||
$l['select'] = "Select Box";
|
||||
$l['multiselect'] = "Multiple Option Selection Box";
|
||||
$l['radio'] = "Radio Buttons";
|
||||
$l['checkbox'] = "Check Boxes";
|
||||
$l['field_type'] = "Field Type";
|
||||
$l['field_type_desc'] = "This is the field type that will be shown.";
|
||||
$l['field_regex'] = "Regular Expression";
|
||||
$l['field_regex_desc'] = "Enter a regular expression that should be matched from the user input. You must make sure the regular expression is valid and safe—no validation is performed. Empty for anything.<br />
|
||||
<strong>Example:</strong> ([a-z0-9_\- ,.+]+)";
|
||||
$l['selectable_options'] = "Selectable Options?";
|
||||
$l['selectable_options_desc'] = "Please enter each option on a separate line. This only applies to the select boxes, check boxes, and radio buttons types.";
|
||||
$l['required'] = "Required?";
|
||||
$l['required_desc'] = "Is this field required to be filled in during registration or profile editing? Note that this does not apply if the field is hidden or the field is not editable.";
|
||||
$l['show_on_registration'] = "Show on Registration?";
|
||||
$l['show_on_registration_desc'] = "Should this field appear on the registration form? Note that this does not apply if the field is not editable. Fields that are required will always appear on registration.";
|
||||
$l['display_on_profile'] = "Display on profile?";
|
||||
$l['display_on_profile_desc'] = "Should this field be displayed on the user's profile?";
|
||||
$l['display_on_postbit'] = "Display on postbit?";
|
||||
$l['display_on_postbit_desc'] = "Should this field be displayed on the user's posts?";
|
||||
$l['viewableby'] = 'Viewable By';
|
||||
$l['viewableby_desc'] = 'Select the allowed groups to view this profile field.';
|
||||
$l['editableby'] = 'Editable By';
|
||||
$l['editableby_desc'] = 'Select the allowed groups to edit this profile field.';
|
||||
$l['min_posts_enabled'] = "Minimum post count?";
|
||||
$l['min_posts_enabled_desc'] = "Should this field only be available to users with a certain post count? If so, set the minimum amount of posts required here.";
|
||||
$l['parser_options'] = "Parser Options";
|
||||
$l['parse_allowhtml'] = "Yes, allow HTML in this profile field.";
|
||||
$l['parse_allowmycode'] = "Yes, allow MyCode in this profile field.";
|
||||
$l['parse_allowsmilies'] = "Yes, allow smilies in this profile field.";
|
||||
$l['parse_allowimgcode'] = "Yes, allow [img] code in this profile field.";
|
||||
$l['parse_allowvideocode'] = "Yes, allow [video] code in this profile field.";
|
||||
$l['save_profile_field'] = "Save Profile Field";
|
||||
$l['name'] = "Name";
|
||||
$l['registration'] = "Registration?";
|
||||
$l['editable'] = "Editable?";
|
||||
$l['profile'] = "Profile?";
|
||||
$l['postbit'] = "Postbit?";
|
||||
$l['edit_field'] = "Edit Field";
|
||||
$l['delete_field'] = "Delete Field";
|
||||
$l['no_profile_fields'] = "There are no custom profile fields on your forum at this time.";
|
||||
|
||||
$l['error_missing_name'] = "You did not enter a title for this custom profile field";
|
||||
$l['error_missing_description'] = "You did not enter a description for this custom profile field";
|
||||
$l['error_invalid_fid'] = "The selected profile field does not exist.";
|
||||
|
||||
$l['success_profile_field_added'] = "The custom profile field has been created successfully.";
|
||||
$l['success_profile_field_saved'] = "The custom profile field has been saved successfully.";
|
||||
$l['success_profile_field_deleted'] = "The selected custom profile field has been deleted successfully.";
|
||||
|
||||
$l['confirm_profile_field_deletion'] = "Are you sure you wish to delete this profile field?";
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['security_questions'] = "Security Questions";
|
||||
$l['security_questions_desc'] = "Here you can create and manage security questions that will be randomly shown during registration.";
|
||||
$l['add_new_question'] = "Add New Question";
|
||||
$l['add_new_question_desc'] = "Add a question and its answers for the security questions to be used during registration.";
|
||||
$l['edit_question'] = "Edit Question";
|
||||
$l['edit_question_desc'] = "Here you edit a security question.";
|
||||
$l['preview_question'] = "Preview Question";
|
||||
|
||||
$l['options'] = "Options";
|
||||
$l['shown'] = "Shown";
|
||||
$l['correct'] = "Correct";
|
||||
$l['incorrect'] = "Incorrect";
|
||||
$l['disable_question'] = "Disable Question";
|
||||
$l['enable_question'] = "Enable Question";
|
||||
$l['delete_question'] = "Delete Question";
|
||||
$l['no_security_questions'] = "There are no security questions on your forum at this time.";
|
||||
|
||||
$l['question'] = "Question";
|
||||
$l['question_desc'] = "Enter the question you want answered during registration.";
|
||||
$l['answers'] = "Answer(s)";
|
||||
$l['answers_desc'] = "Enter the answer(s) to the question above. Please enter each answer on a separate line.";
|
||||
$l['active'] = "Active";
|
||||
$l['save_question'] = "Save Question";
|
||||
|
||||
$l['error_invalid_question'] = "You have selected an invalid question.";
|
||||
$l['error_missing_question'] = "You did not enter a question for this question";
|
||||
$l['error_missing_answer'] = "You did not enter any answers for this question";
|
||||
|
||||
$l['success_question_created'] = "The question has been created successfully.";
|
||||
$l['success_question_updated'] = "The question has been updated successfully.";
|
||||
$l['success_question_disabled'] = "The question has been disabled successfully.";
|
||||
$l['success_question_enabled'] = "The question has been enabled successfully.";
|
||||
$l['success_question_deleted'] = "The question has been deleted successfully.";
|
||||
|
||||
$l['confirm_question_deletion'] = "Are you sure you wish to delete this question?";
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['report_reasons'] = "Report Reasons";
|
||||
$l['report_reasons_desc'] = "Here you can create and manage reasons that can be selecting when users report content.";
|
||||
$l['add_new_reason'] = "Add New Reason";
|
||||
$l['add_new_reason_desc'] = "Add a new reason for users to select when reporting content.";
|
||||
$l['edit_reason'] = "Edit Reason";
|
||||
$l['edit_reason_desc'] = "Edit a reason for users to select when reporting content.";
|
||||
|
||||
$l['applies_to'] = "Applies To";
|
||||
$l['order'] = "Order";
|
||||
$l['extra_comment'] = "Require Comment?";
|
||||
$l['options'] = "Options";
|
||||
$l['delete_reason'] = "Delete Reason";
|
||||
$l['no_report_reasons'] = "There are no report reasons on your forum at this time.";
|
||||
|
||||
$l['reason_title'] = "Title";
|
||||
$l['reason_title_desc'] = "Enter the title of the reason for reporting the content.";
|
||||
$l['requires_extra'] = "Require An Extra Comment?";
|
||||
$l['requires_extra_desc'] = "Require the user to enter an additional comment when this reason is selected?";
|
||||
$l['save_reason'] = "Save Reason";
|
||||
|
||||
$l['content_colon'] = "Content:";
|
||||
|
||||
$l['all_content'] = "All content";
|
||||
$l['select_content'] = "Select content";
|
||||
|
||||
// Content types
|
||||
$l['report_content_'] = "None";
|
||||
$l['report_content_all'] = "All";
|
||||
$l['report_content_post'] = "Post";
|
||||
$l['report_content_profile'] = "Profile";
|
||||
$l['report_content_reputation'] = "Reputation";
|
||||
|
||||
// Content reasons
|
||||
$l['report_reason_rules'] = "Breaks Forum Rules";
|
||||
$l['report_reason_bad'] = "Inappropriate Content";
|
||||
$l['report_reason_spam'] = "Spam Content";
|
||||
$l['report_reason_wrong'] = "Wrong Forum";
|
||||
$l['report_reason_other'] = "Other";
|
||||
|
||||
$l['default_report_reason'] = "Default";
|
||||
$l['custom_report_reason'] = "Custom";
|
||||
|
||||
$l['update_reasons_order'] = "Update Reasons Order";
|
||||
|
||||
$l['error_cannot_modify_reason'] = "You cannot modify this reason.";
|
||||
$l['error_cannot_delete_reason'] = "You cannot delete this reason.";
|
||||
$l['error_invalid_reason'] = "You have selected an invalid reason.";
|
||||
$l['error_missing_title'] = "You did not enter a title for this reason.";
|
||||
//$l['error_missing_applies_to'] = "You did not select what content this reason applies to.";
|
||||
$l['error_missing_extra'] = "You did not select if you want extra information for this reason.";
|
||||
|
||||
$l['success_reasons_disporder_updated'] = "The report reason display orders have been updated successfully.";
|
||||
$l['success_reason_created'] = "The reason has been created successfully.";
|
||||
$l['success_reason_updated'] = "The reason has been updated successfully.";
|
||||
$l['success_reason_deleted'] = "The reason has been deleted successfully.";
|
||||
|
||||
$l['confirm_reason_deletion'] = "Are you sure you wish to delete this reason?";
|
||||
|
||||
@@ -0,0 +1,110 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['board_settings'] = "Board Settings";
|
||||
$l['change_settings'] = "Change Settings";
|
||||
$l['change_settings_desc'] = "This section allows you to manage all of the various settings relating to your board. To begin, select a group below to manage settings relating to that group.";
|
||||
$l['add_new_setting'] = "Add New Setting";
|
||||
$l['add_new_setting_desc'] = "This section allows you to add a new setting to your board.";
|
||||
$l['modify_existing_settings'] = "Modify Settings";
|
||||
$l['modify_existing_settings_desc'] = "This section allows you to modify an existing setting on your forum.";
|
||||
$l['add_new_setting_group'] = "Add New Setting Group";
|
||||
$l['add_new_setting_group_desc'] = "This section allows you to create a setting group to categorize individual settings.";
|
||||
$l['edit_setting_group'] = "Edit Setting Group";
|
||||
$l['edit_setting_group_desc'] = "This section allows you to edit an existing setting group.";
|
||||
|
||||
$l['title'] = "Title";
|
||||
$l['description'] = "Description";
|
||||
$l['group'] = "Group";
|
||||
$l['display_order'] = "Display Order";
|
||||
$l['name'] = "Identifier";
|
||||
$l['name_desc'] = "This unique identifier is used in the settings array to reference this setting (in scripts, translations, and templates).";
|
||||
$l['group_name_desc'] = "This unique identifier is used for the translation system.";
|
||||
$l['text'] = "Text";
|
||||
$l['numeric_text'] = "Numeric Text";
|
||||
$l['textarea'] = "Textarea";
|
||||
$l['yesno'] = "Yes / No Choice";
|
||||
$l['onoff'] = "On / Off Choice";
|
||||
$l['select'] = "Selection Box";
|
||||
$l['radio'] = "Radio Buttons";
|
||||
$l['checkbox'] = "Checkboxes";
|
||||
$l['language_selection_box'] = "Language Selection Box";
|
||||
$l['forum_selection_box'] = "Forum Selection Box";
|
||||
$l['forum_selection_single'] = "Single Forum Selection Box";
|
||||
$l['group_selection_box'] = "Group Selection Box";
|
||||
$l['group_selection_single'] = "Single Group Selection Box";
|
||||
$l['adminlanguage'] = "Administration Language Selection Box";
|
||||
$l['cpstyle'] = "Control Panel Style Selection Box";
|
||||
$l['php'] = "Evaluated PHP";
|
||||
$l['type'] = "Type";
|
||||
$l['extra'] = "Extra";
|
||||
$l['extra_desc'] = "If this setting is a select, radio or check box enter a key paired (key=Item) list of items to show. Separate items with a new line. If PHP, enter the PHP to be evaluated.";
|
||||
$l['value'] = "Value";
|
||||
$l['insert_new_setting'] = "Insert New Setting";
|
||||
$l['edit_setting'] = "Edit Setting";
|
||||
$l['delete_setting'] = "Delete Setting";
|
||||
$l['setting_configuration'] = "Setting Configuration";
|
||||
$l['update_setting'] = "Update Setting";
|
||||
$l['save_settings'] = "Save Settings";
|
||||
$l['setting_groups'] = "Setting Groups";
|
||||
$l['bbsettings'] = "Settings";
|
||||
$l['insert_new_setting_group'] = "Insert New Setting Group";
|
||||
$l['setting_group_setting'] = "Setting Group / Setting";
|
||||
$l['order'] = "Order";
|
||||
$l['delete_setting_group'] = "Delete Setting Group";
|
||||
$l['save_display_orders'] = "Save Display Orders";
|
||||
$l['update_setting_group'] = "Update Setting Group";
|
||||
$l['modify_setting'] = "Modify Setting";
|
||||
$l['search'] = "Search";
|
||||
$l['plugin_settings'] = "Plugin Settings";
|
||||
|
||||
$l['show_all_settings'] = "Show All Settings";
|
||||
$l['settings_search'] = "Search For Settings";
|
||||
|
||||
$l['confirm_setting_group_deletion'] = "Are you sure you wish to delete this setting group?";
|
||||
$l['confirm_setting_deletion'] = "Are you sure you wish to delete this setting?";
|
||||
|
||||
$l['error_format_dimension'] = "Defined {1} format is invalid.";
|
||||
$l['error_field_postmaxavatarsize'] = "Maximum Avatar Dimensions";
|
||||
$l['error_field_useravatardims'] = "Default Avatar Dimensions";
|
||||
$l['error_field_maxavatardims'] = "Maximum Avatar Dimensions";
|
||||
$l['error_field_memberlistmaxavatarsize'] = "Maximum Display Avatar Dimensions";
|
||||
$l['error_missing_title'] = "You did not enter a title for this setting";
|
||||
$l['error_missing_group_title'] = "You did not enter a title for this setting group";
|
||||
$l['error_invalid_gid'] = "You did not select a valid group to place this setting in";
|
||||
$l['error_invalid_gid2'] = "You have followed a link to an invalid setting group. Please ensure it exists.";
|
||||
$l['error_missing_name'] = "You did not enter an identifier for this setting";
|
||||
$l['error_missing_group_name'] = "You did not enter an identifier for this setting group";
|
||||
$l['error_invalid_type'] = "You did not select a valid type for this setting";
|
||||
$l['error_invalid_sid'] = "The specified setting does not exist";
|
||||
$l['error_duplicate_name'] = "The identifier specified has already been used for the \"{1}\" setting -- it must be unique";
|
||||
$l['error_duplicate_group_name'] = "The identifier specified has already been used for the \"{1}\" setting group -- it must be unique";
|
||||
$l['error_no_settings_found'] = "No settings were found for the specified search phrase.";
|
||||
$l['error_cannot_edit_default'] = "Default settings and groups may not be edited or removed.";
|
||||
$l['error_cannot_edit_php'] = "This is a special type of setting which cannot be edited.";
|
||||
$l['error_ajax_search'] = "There was a problem searching for settings:";
|
||||
$l['error_ajax_unknown'] = "An unknown error occurred while searching for settings.";
|
||||
$l['error_chmod_settings_file'] = "The settings file \"./inc/settings.php\" isn't writable. Please CHMOD to 666.<br />For more information on CHMODing, see the <a href=\"https://docs.mybb.com/1.8/administration/security/file-permissions\" target=\"_blank\" rel=\"noopener\">MyBB Docs</a>.";
|
||||
|
||||
$l['success_setting_added'] = "The setting has been created successfully.";
|
||||
$l['success_setting_updated'] = "The setting has been updated successfully.";
|
||||
$l['success_setting_deleted'] = "The selected setting has been deleted successfully.";
|
||||
$l['success_settings_updated'] = "The settings have been updated successfully.";
|
||||
$l['success_settings_updated_hiddencaptchaimage'] = '<div class="smalltext" style="font-weight: normal;">Please note that the <strong>Hidden CAPTCHA field</strong> setting was reverted to <strong>{1}</strong> due to a conflict with the <strong>{2}</strong> field in the registration form.</div>';
|
||||
$l['success_settings_updated_username_method'] = '<div class="smalltext" style="font-weight: normal;">Please note that the <b>Allowed Login Methods</b> setting was not updated due to multiple users using the same e-mail address at this time.</div>';
|
||||
$l['success_settings_updated_allowmultipleemails'] = '<div class="smalltext" style="font-weight: normal;">Please note that the <b>Allow emails to be registered multiple times?</b> setting can\'t be enabled because the <b>Allowed Login Methods</b> setting allows users to login by e-mail address.</div>';
|
||||
$l['success_settings_updated_captchaimage'] = '<div class="smalltext" style="font-weight: normal;">Please note that the <strong>CAPTCHA Images for Registration & Posting</strong> setting was reverted to <strong>MyBB Default Captcha</strong> due to the lack of public/private key(s).</div>';
|
||||
$l['success_display_orders_updated'] = "The setting display orders have been updated successfully.";
|
||||
$l['success_setting_group_added'] = "The setting group has been created successfully.";
|
||||
$l['success_setting_group_updated'] = "The setting group has been updated successfully.";
|
||||
$l['success_setting_group_deleted'] = "The selected setting group has been deleted successfully.";
|
||||
$l['success_duplicate_settings_deleted'] = "All duplicate setting groups have been deleted successfully.";
|
||||
|
||||
$l['searching'] = 'Searching…';
|
||||
$l['search_error'] = 'There was an error fetching your search results:';
|
||||
$l['search_done'] = 'Done!';
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['smilies'] = "Smilies";
|
||||
$l['manage_smilies'] = "Manage Smilies";
|
||||
$l['manage_smilies_desc'] = "This section allows you to edit and delete your smilies.";
|
||||
$l['add_smilie'] = "Add New Smilie";
|
||||
$l['add_smilie_desc'] = "Here you can add a single new smilie.";
|
||||
$l['add_multiple_smilies'] = "Add Multiple Smilies";
|
||||
$l['add_multiple_smilies_desc'] = "Here you can add multiple new smilies at once.";
|
||||
$l['edit_smilie'] = "Edit Smilie";
|
||||
$l['edit_smilie_desc'] = "Here you can edit a single smilie.";
|
||||
$l['mass_edit'] = "Mass Edit";
|
||||
$l['mass_edit_desc'] = "Here you can easily edit all your smilies in one go.";
|
||||
|
||||
$l['no_smilies'] = "There are no smilies on your forum at this time.";
|
||||
|
||||
$l['image'] = "Image";
|
||||
$l['name'] = "Name";
|
||||
$l['text_replace'] = "Text to Replace";
|
||||
$l['text_replace_desc'] = "This is the text to replace with the smilie (enter one per line).";
|
||||
$l['image_path'] = "Image Path";
|
||||
$l['image_path_desc'] = "This is the path to the smilie image. If you want to use different smilie images for different themes, please use <strong>{theme}</strong> to represent the image directory of each theme.";
|
||||
$l['order'] = "Order";
|
||||
$l['display_order'] = "Display Order";
|
||||
$l['display_order_desc'] = "The order on the smilies list that this will appear. This number should not be the same as another smilie's.";
|
||||
$l['mass_edit_show_clickable'] = "Show on Clickable?";
|
||||
$l['show_clickable'] = "Show on clickable list?";
|
||||
$l['show_clickable_desc'] = "Do you want this smilie to show on the clickable smilie list on the post editor?";
|
||||
$l['include'] = "Add?";
|
||||
$l['path_to_images'] = "Path to Images";
|
||||
$l['path_to_images_desc'] = "This is the path to the folder that the images are in.";
|
||||
$l['smilie_delete'] = "Delete?";
|
||||
$l['save_smilie'] = "Save Smilie";
|
||||
$l['save_smilies'] = "Save Smilies";
|
||||
$l['show_smilies'] = "Show Smilies";
|
||||
$l['reset'] = "Reset";
|
||||
|
||||
$l['error_missing_name'] = "You did not enter a name for this smilie.";
|
||||
$l['error_missing_text_replacement'] = "You did not enter a text replacement for this smilie.";
|
||||
$l['error_missing_path'] = "You did not enter a path for this smilie.";
|
||||
$l['error_missing_path_multiple'] = "You did not enter a path.";
|
||||
$l['error_missing_order'] = "You did not enter a display order for this smilie.";
|
||||
$l['error_duplicate_order'] = "You did not enter a valid display order for this smilie.";
|
||||
$l['error_missing_clickable'] = "You did not specify yes or no for the \"Show Clickable\" option.";
|
||||
$l['error_no_smilies'] = "There are no smilies in the specified directory, or all smilies in the directory have already been added.";
|
||||
$l['error_no_images'] = "There are no images in the specified directory.";
|
||||
$l['error_none_included'] = "You did not select any smilies to include.";
|
||||
$l['error_invalid_path'] = "You did not enter a valid path.";
|
||||
$l['error_invalid_smilie'] = "The specified smilie does not exist.";
|
||||
|
||||
$l['success_smilie_added'] = "The smilie has been added successfully.";
|
||||
$l['success_multiple_smilies_added'] = "The selected smilies have been added successfully.";
|
||||
$l['success_smilie_updated'] = "The smilie has been updated successfully.";
|
||||
$l['success_multiple_smilies_updated'] = "The smilies have been updated successfully.";
|
||||
$l['success_smilie_deleted'] = "The selected smilie has been deleted successfully.";
|
||||
$l['success_mass_edit_updated'] = "The smilies have been updated successfully.";
|
||||
|
||||
$l['confirm_smilie_deletion'] = "Are you sure you wish to delete this smilie?";
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['spiders_bots'] = "Spiders / Bots";
|
||||
$l['spiders_bots_desc'] = "This section allows you to manage the search engine spiders & bots automatically detected by your forum. You're also able to see when a particular bot last visited.";
|
||||
$l['add_new_bot'] = "Add New Bot";
|
||||
$l['add_new_bot_desc'] = "Here you can add a new bot that you would like to be detected by your forum.";
|
||||
|
||||
$l['edit_bot'] = "Edit Bot";
|
||||
$l['edit_bot_desc'] = "Here you can edit an existing bot.";
|
||||
|
||||
$l['bot'] = "Bot";
|
||||
$l['last_visit'] = "Last Visit";
|
||||
$l['no_bots'] = "There are no search engine spiders or web crawlers being tracked by this forum.";
|
||||
|
||||
$l['name'] = "Name";
|
||||
$l['name_desc'] = "Enter the name of this bot which you want to identify it by";
|
||||
$l['user_agent'] = "User Agent String";
|
||||
$l['user_agent_desc'] = "Enter the string which will be matched against the bots user agent (partial matches are accepted)";
|
||||
$l['language_str'] = "Language";
|
||||
$l['language_desc'] = "Select the language pack the bot will use when viewing the board.";
|
||||
$l['theme'] = "Theme";
|
||||
$l['theme_desc'] = "Select the theme the bot will use when viewing the board.";
|
||||
$l['user_group'] = "User Group";
|
||||
$l['user_group_desc'] = "Select the user group permissions will be applied from for this board (Note: It is not recommended you change this from the default Guests group)";
|
||||
$l['save_bot'] = "Save Bot";
|
||||
$l['use_board_default'] = "Use Board Default";
|
||||
|
||||
$l['error_invalid_bot'] = "The specified bot does not exist.";
|
||||
$l['error_missing_name'] = "You did not enter a name for this bot";
|
||||
$l['error_missing_agent'] = "You did not enter a user agent string for this bot";
|
||||
|
||||
$l['success_bot_created'] = "The bot has been created successfully.";
|
||||
$l['success_bot_updated'] = "The bot has been updated successfully.";
|
||||
$l['success_bot_deleted'] = "The selected bot has been deleted successfully.";
|
||||
|
||||
$l['confirm_bot_deletion'] = "Are you sure you wish to delete this bot?";
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['thread_prefixes'] = "Thread Prefixes";
|
||||
$l['thread_prefixes_desc'] = "Thread prefixes allow you to define prefixes that users can assign to their threads. Threads can then be filtered by prefix within a forum.";
|
||||
|
||||
$l['add_new_thread_prefix'] = "Add New Thread Prefix";
|
||||
$l['add_new_thread_prefix_desc'] = "Here you can add a new thread prefix and define where it is available, as well as which usergroups can use it.";
|
||||
|
||||
$l['edit_prefix'] = "Edit Prefix";
|
||||
$l['edit_prefix_desc'] = "Here you can edit a thread prefix and change how it is displayed, where it is available and which usergroups can use it.";
|
||||
$l['edit_thread_prefix'] = "Edit Thread Prefix";
|
||||
$l['delete_thread_prefix'] = "Delete Thread Prefix";
|
||||
|
||||
$l['prefix_options'] = "Prefix Options";
|
||||
$l['save_thread_prefix'] = "Save Thread Prefix";
|
||||
|
||||
$l['prefix'] = "Prefix";
|
||||
$l['prefix_desc'] = "Plain text version of the prefix to be displayed in selection menus.";
|
||||
$l['display_style'] = "Display Style";
|
||||
$l['display_style_desc'] = "This is how the prefix will appear next to thread subjects. You may enter HTML markup here or simply use the same as the plain text version above.";
|
||||
$l['available_in_forums'] = "Available in forums";
|
||||
$l['available_to_groups'] = "Available to groups";
|
||||
|
||||
$l['no_thread_prefixes'] = "There are no thread prefixes setup on your forum.";
|
||||
|
||||
$l['confirm_thread_prefix_deletion'] = "Are you sure you want to delete this thread prefix? Note: You should remember to update any custom moderator tools which use this prefix after deletion.";
|
||||
|
||||
$l['success_thread_prefix_created'] = "The thread prefix has been created successfully.";
|
||||
$l['success_thread_prefix_updated'] = "The thread prefix has been updated successfully.";
|
||||
$l['success_thread_prefix_deleted'] = "The thread prefix has been deleted successfully. Please update any custom moderator tools which use this prefix";
|
||||
|
||||
$l['error_missing_prefix'] = "Please enter the prefix you wish to add.";
|
||||
$l['error_missing_display_style'] = "Please enter a display style for this prefix.";
|
||||
$l['error_no_forums_selected'] = "Please select the forums in which this prefix will be available.";
|
||||
$l['error_no_groups_selected'] = "Please select the groups to which this prefix will be available.";
|
||||
$l['error_invalid_prefix'] = "The specified thread prefix does not exist.";
|
||||
|
||||
@@ -0,0 +1,80 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['warning_system'] = "Warning System";
|
||||
$l['warning_types'] = "Warning Types";
|
||||
$l['warning_types_desc'] = "Here you can manage the list of different warning types staff are allowed to issue to users.";
|
||||
$l['add_warning_type'] = "Add New Warning Type";
|
||||
$l['add_warning_type_desc'] = "Here you can create a new predefined warning type. Warning types are selectable when warning users and you can define the number of points to add for this type as well as the time period before warnings of this type expire.";
|
||||
$l['edit_warning_type'] = "Edit Warning Type";
|
||||
$l['edit_warning_type_desc'] = "Here you can edit this warning type. Warning types are selectable when warning users and you can define the number of points to add for this type as well as the time period before warnings of this type expire.";
|
||||
$l['warning_levels'] = "Warning Levels";
|
||||
$l['warning_levels_desc'] = "Warning Levels define what happens to a user when they reach a particular warning level (percentage of maximum warning points). You can ban users or suspend their privileges.";
|
||||
$l['add_warning_level'] = "Add New Warning Level";
|
||||
$l['add_warning_level_desc'] = "Here you can create a new warning level. Warning levels are actions to be taken against users when they reach a specific percentage of the maximum warning level.";
|
||||
$l['edit_warning_level'] = "Edit Warning Level";
|
||||
$l['edit_warning_level_desc'] = "Warning levels are actions to be taken against users when they reach a specific percentage of the maximum warning level.";
|
||||
|
||||
$l['percentage'] = "Percentage";
|
||||
$l['action_to_take'] = "Action to Take";
|
||||
$l['move_banned_group'] = "Move to banned group ({3}) for {1} {2}";
|
||||
$l['move_banned_group_permanent'] = "Move to banned group ({1}) Permanently";
|
||||
$l['suspend_posting'] = "Suspend posting privileges for {1} {2}";
|
||||
$l['suspend_posting_permanent'] = "Suspend posting privileges Permanently";
|
||||
$l['moderate_new_posts'] = "Moderate new posts for {1} {2}";
|
||||
$l['moderate_new_posts_permanent'] = "Moderate new posts Permanently";
|
||||
$l['no_warning_levels'] = "There are no warning levels on your forum at this time.";
|
||||
|
||||
$l['warning_type'] = "Warning Type";
|
||||
$l['points'] = "Points";
|
||||
$l['expires_after'] = "Expires After";
|
||||
$l['no_warning_types'] = "There are no warning types on your forum at this time.";
|
||||
|
||||
$l['warning_points_percentage'] = "Percentage of Maximum Warning Points";
|
||||
$l['warning_points_percentage_desc'] = "Please enter a numeric value between 1 and 100.";
|
||||
$l['action_to_be_taken'] = "Action to be Taken";
|
||||
$l['action_to_be_taken_desc'] = "Select the action you wish to be taken when users reach the above level.";
|
||||
$l['ban_user'] = "Ban User";
|
||||
$l['banned_group'] = "Banned group:";
|
||||
$l['ban_length'] = "Ban length:";
|
||||
$l['suspend_posting_privileges'] = "Suspend Posting Privileges";
|
||||
$l['suspension_length'] = "Suspension length:";
|
||||
$l['moderate_posts'] = "Moderate Posts";
|
||||
$l['moderation_length'] = "Moderation length:";
|
||||
$l['save_warning_level'] = "Save Warning Level";
|
||||
|
||||
$l['title'] = "Title";
|
||||
$l['points_to_add'] = "Points to Add";
|
||||
$l['points_to_add_desc'] = "The number of points to add to a users warning level.";
|
||||
$l['warning_expiry'] = "Warning Expiry";
|
||||
$l['warning_expiry_desc'] = "How long after this warning is given do you want it to expire?";
|
||||
$l['save_warning_type'] = "Save Warning Type";
|
||||
|
||||
$l['expiration_hours'] = "Hour(s)";
|
||||
$l['expiration_days'] = "Day(s)";
|
||||
$l['expiration_weeks'] = "Week(s)";
|
||||
$l['expiration_months'] = "Month(s)";
|
||||
$l['expiration_never'] = "Never";
|
||||
$l['expiration_permanent'] = "Permanent";
|
||||
|
||||
$l['error_invalid_warning_level'] = "The specified warning level does not exist.";
|
||||
$l['error_invalid_warning_percentage'] = "You did not enter a valid percentage value for this warning level. Your percentage value must be between 1 and 100.";
|
||||
$l['error_invalid_warning_type'] = "The specified warning type does not exist.";
|
||||
$l['error_missing_action_type'] = "Please select one of the actions to be taken to assign with this new warning level.";
|
||||
$l['error_missing_type_title'] = "You did not enter a title for this warning type";
|
||||
$l['error_missing_type_points'] = "You did not enter a valid number of points to add when giving warnings of this type. You must enter a number greater than 0 but not greater than {1}";
|
||||
|
||||
$l['success_warning_level_created'] = "The warning level has been created successfully.";
|
||||
$l['success_warning_level_updated'] = "The warning level has been updated successfully.";
|
||||
$l['success_warning_level_deleted'] = "The selected warning level has been deleted successfully.";
|
||||
$l['success_warning_type_created'] = "The warning type has been created successfully.";
|
||||
$l['success_warning_type_updated'] = "The warning type has been updated successfully.";
|
||||
$l['success_warning_type_deleted'] = "The selected warning type has been deleted successfully.";
|
||||
|
||||
$l['confirm_warning_level_deletion'] = "Are you sure you wish to delete this warning level?";
|
||||
$l['confirm_warning_type_deletion'] = "Are you sure you wish to delete this warning type?";
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['forum_announcements'] = "Forum Announcements";
|
||||
$l['forum_announcements_desc'] = "Here you can manage the announcements on your board. Global announcements are shown in all forums, whereas ones set for individual forums are shown in that forum and all child forums.";
|
||||
$l['add_announcement'] = "Add Announcement";
|
||||
$l['add_announcement_desc'] = "Here you can add an announcement for a single forum or all forums.";
|
||||
$l['update_announcement'] = "Save Announcement";
|
||||
$l['preview_announcement'] = "Preview Announcement";
|
||||
$l['update_announcement_desc'] = "Here you can update an announcements details.";
|
||||
|
||||
$l['start_date_desc'] = "On this date and time (in GMT), the announcement will appear in the selected forum(s).";
|
||||
$l['end_date_desc'] = "On this date and time (in GMT), the announcement will be hidden from view on your forum. You may select never end this announcement until you delete it or edit its end date.";
|
||||
$l['forums_to_appear_in_desc'] = "The announcement will appear in the forums selected below. The announcement will appear in the selected forum and all child forums of the selected forum.";
|
||||
|
||||
$l['announcement'] = "Announcement";
|
||||
$l['global_announcements'] = "Global Announcements";
|
||||
|
||||
$l['no_global_announcements'] = "There are currently no global forum announcements.";
|
||||
$l['no_forums'] = "There are currently no forums setup to show forum announcements.";
|
||||
|
||||
$l['confirm_announcement_deletion'] = "Are you sure you wish to delete this announcement?";
|
||||
|
||||
$l['success_announcement_deleted'] = "The selected announcement has been deleted successfully.";
|
||||
$l['success_added_announcement'] = "The selected announcement has been created successfully.";
|
||||
$l['success_updated_announcement'] = "The selected announcement has been updated successfully.";
|
||||
|
||||
$l['error_invalid_announcement'] = "Please input a valid announcement.";
|
||||
$l['error_missing_title'] = "You did not enter a title.";
|
||||
$l['error_missing_message'] = "You did not enter a message.";
|
||||
$l['error_missing_forum'] = "You did not select a forum.";
|
||||
$l['error_invalid_start_date'] = "The starting date for the announcement is invalid.";
|
||||
$l['error_invalid_end_date'] = "The ending date for the announcement is invalid.";
|
||||
$l['error_end_before_start'] = "The ending date must be after the start date.";
|
||||
|
||||
$l['add_an_announcement'] = "Add an announcement";
|
||||
$l['update_an_announcement'] = "Update an announcement";
|
||||
$l['save_announcement'] = "Save Announcement";
|
||||
$l['title'] = "Title";
|
||||
$l['start_date'] = "Start Date";
|
||||
$l['end_date'] = "End Date";
|
||||
$l['message'] = "Message";
|
||||
$l['forums_to_appear_in'] = "Forums to Appear in";
|
||||
$l['allow_html'] = "Allow HTML?";
|
||||
$l['allow_mycode'] = "Allow MyCode?";
|
||||
$l['allow_smilies'] = "Allow Smilies?";
|
||||
$l['time'] = "Time:";
|
||||
$l['set_time'] = "Set Time";
|
||||
|
||||
$l['announcement_preview'] = 'Announcement Preview';
|
||||
|
||||
@@ -0,0 +1,112 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
// Tabs
|
||||
$l['attachments'] = "Attachments";
|
||||
$l['stats'] = "Statistics";
|
||||
$l['find_attachments'] = "Find Attachments";
|
||||
$l['find_attachments_desc'] = "Using the attachments search system you can search for specific files users have attached to your forums. Begin by entering some search terms below. All fields are optional and won't be included in the criteria unless they contain a value.";
|
||||
$l['find_orphans'] = "Find Orphaned Attachments";
|
||||
$l['find_orphans_desc'] = "Orphaned attachments are attachments which are for some reason missing in the database or the file system. This utility will assist you in locating and removing them.";
|
||||
$l['attachment_stats'] = "Attachment Statistics";
|
||||
$l['attachment_stats_desc'] = "Below are some general statistics for the attachments currently on your forum.";
|
||||
|
||||
// Errors
|
||||
$l['error_nothing_selected'] = "Please select one or more attachments to delete.";
|
||||
$l['error_no_attachments'] = "There aren't any attachments on your forum yet. Once an attachment is posted you'll be able to access this section.";
|
||||
$l['error_not_all_removed'] = "Only some orphaned attachments were successfully deleted, others could not be removed from the uploads directory.";
|
||||
$l['error_count'] = 'Unable to remove {1} attachment(s).';
|
||||
$l['error_invalid_username'] = "The username you entered is invalid.";
|
||||
$l['error_invalid_forums'] = "One or more forums you selected are invalid.";
|
||||
$l['error_no_results'] = "No attachments were found with the specified search criteria.";
|
||||
$l['error_not_found'] = "Attachment file could not be found in the uploads directory.";
|
||||
$l['error_not_attached'] = "Attachment was uploaded over 24 hours ago but not attached to a post.";
|
||||
$l['error_does_not_exist'] = "Thread or post for this attachment no longer exists.";
|
||||
|
||||
// Success
|
||||
$l['success_deleted'] = "The selected attachments have been deleted successfully.";
|
||||
$l['success_orphan_deleted'] = "The selected orphaned attachment(s) have been deleted successfully.";
|
||||
$l['success_count'] = '{1} attachment(s) removed successfully.';
|
||||
$l['success_no_orphans'] = "There are no orphaned attachments on your forum.";
|
||||
|
||||
// Confirm
|
||||
$l['confirm_delete'] = "Are you sure you wish to delete the selected attachments?";
|
||||
|
||||
// == Pages
|
||||
// = Stats
|
||||
$l['general_stats'] = "General Statistics";
|
||||
$l['stats_attachment_stats'] = "Attachments - Attachment Statistics";
|
||||
$l['num_uploaded'] = "<strong>No. Uploaded Attachments</strong>";
|
||||
$l['space_used'] = "<strong>Attachment Space Used</strong>";
|
||||
$l['bandwidth_used'] = "<strong>Estimated Bandwidth Usage</strong>";
|
||||
$l['average_size'] = "<strong>Average Attachment Size</strong>";
|
||||
$l['size'] = "Size";
|
||||
$l['posted_by'] = "Posted By";
|
||||
$l['thread'] = "Thread";
|
||||
$l['downloads'] = "Downloads";
|
||||
$l['date_uploaded'] = "Date Uploaded";
|
||||
$l['popular_attachments'] = "Top 5 Most Popular Attachments";
|
||||
$l['largest_attachments'] = "Top 5 Largest Attachments";
|
||||
$l['users_diskspace'] = "Top 5 Users Using the Most Disk Space";
|
||||
$l['username'] = "Username";
|
||||
$l['total_size'] = "Total Size";
|
||||
|
||||
// = Orphans
|
||||
$l['orphan_results'] = "Orphaned Attachments Search - Results";
|
||||
$l['orphan_attachments_search'] = "Orphaned Attachments Search";
|
||||
$l['reason_orphaned'] = "Reason Orphaned";
|
||||
$l['reason_not_in_table'] = "Not in attachments table";
|
||||
$l['reason_file_missing'] = "Attached file missing";
|
||||
$l['reason_thread_deleted'] = "Thread been deleted";
|
||||
$l['reason_post_never_made'] = "Post never made";
|
||||
$l['unknown'] = "Unknown";
|
||||
$l['results'] = "Results";
|
||||
$l['step1'] = "Step 1";
|
||||
$l['step2'] = "Step 2";
|
||||
$l['step1of2'] = "Step 1 of 2 - File System Scan";
|
||||
$l['step2of2'] = "Step 2 of 2 - Database Scan";
|
||||
$l['step1of2_line1'] = "Please wait, the file system is currently being scanned for orphaned attachments.";
|
||||
$l['step2of2_line1'] = "Please wait, the database is currently being scanned for orphaned attachments.";
|
||||
$l['step_line2'] = "You'll automatically be redirected to the next step once this process is complete.";
|
||||
$l['scanning'] = 'Scanning…';
|
||||
|
||||
// = Attachments / Index
|
||||
$l['index_find_attachments'] = "Attachments - Find Attachments";
|
||||
$l['find_where'] = "Find attachments where…";
|
||||
$l['name_contains'] = "File name contains";
|
||||
$l['name_contains_desc'] = "To search by wild card enter *.[file extension]. Example: *.zip.";
|
||||
$l['type_contains'] = "File type contains";
|
||||
$l['forum_is'] = "Forum is";
|
||||
$l['username_is'] = "Posters' username is";
|
||||
$l['poster_is'] = "Poster is";
|
||||
$l['poster_is_either'] = "User or Guest";
|
||||
$l['poster_is_user'] = "Users Only";
|
||||
$l['poster_is_guest'] = "Guests Only";
|
||||
$l['more_than'] = "More than";
|
||||
$l['greater_than'] = "Greater than";
|
||||
$l['is_exactly'] = "Is exactly";
|
||||
$l['less_than'] = "Less than";
|
||||
$l['date_posted_is'] = "Date posted is";
|
||||
$l['days_ago'] = "days ago";
|
||||
$l['file_size_is'] = "File size is";
|
||||
$l['kb'] = "KB";
|
||||
$l['download_count_is'] = "Download count is";
|
||||
$l['display_options'] = "Display Options";
|
||||
$l['filename'] = "File Name";
|
||||
$l['filesize'] = "File Size";
|
||||
$l['download_count'] = "Download Count";
|
||||
$l['post_username'] = "Post Username";
|
||||
$l['asc'] = "Ascending";
|
||||
$l['desc'] = "Descending";
|
||||
$l['sort_results_by'] = "Sort results by";
|
||||
$l['results_per_page'] = "Results per page";
|
||||
$l['in'] = "in";
|
||||
|
||||
// Buttons
|
||||
$l['button_delete_orphans'] = "Delete Checked Orphans";
|
||||
$l['button_delete_attachments'] = "Delete Checked Attachments";
|
||||
$l['button_find_attachments'] = "Find Attachments";
|
||||
@@ -0,0 +1,279 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['forum_management'] = "Forum Management";
|
||||
$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.";
|
||||
$l['add_forum'] = "Add New Forum";
|
||||
$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.";
|
||||
$l['copy_forum'] = "Copy Forum";
|
||||
$l['copy_forum_desc'] = "Here you can copy forum settings or permissions from an existing forum to another or to a new forum.";
|
||||
$l['forum_permissions'] = "Permissions";
|
||||
$l['forum_permissions_desc'] = "Here you can modify the full permissions for an individual group for a single forum";
|
||||
$l['view_forum'] = "View Forum";
|
||||
$l['view_forum_desc'] = "Here you can view sub forums, quickly edit permissions and add moderators to your forum.";
|
||||
$l['add_child_forum'] = "Add Child Forum";
|
||||
$l['edit_forum_settings'] = "Edit Forum Settings";
|
||||
$l['edit_forum_settings_desc'] = "Here you can edit an existing forums' settings and its permissions.";
|
||||
$l['edit_forum'] = "Edit Forum";
|
||||
$l['edit_mod'] = "Edit Moderator";
|
||||
$l['edit_mod_desc'] = "Here you can modify a particular moderator's settings.";
|
||||
$l['forum_moderators'] = "Forum Moderators";
|
||||
$l['forum_permissions2'] = "Forum Permissions";
|
||||
$l['more_subforums'] = "and {1} more.";
|
||||
|
||||
$l['manage_forums'] = "Manage Forums";
|
||||
$l['forum'] = "Forum";
|
||||
$l['order'] = "Order";
|
||||
|
||||
$l['subforums'] = "Sub Forums";
|
||||
$l['moderators'] = "Moderators";
|
||||
$l['permissions'] = "Permissions";
|
||||
$l['delete_forum'] = "Delete Forum";
|
||||
|
||||
$l['sub_forums'] = "Sub Forums";
|
||||
$l['update_forum_orders'] = "Save Forum Orders";
|
||||
$l['update_forum_permissions'] = "Save Forum Permissions";
|
||||
$l['reset'] = "Reset";
|
||||
$l['in_forums'] = "Forums in \"{1}\"";
|
||||
$l['forum_permissions_in'] = "Forum Permissions in \"{1}\"";
|
||||
$l['moderators_assigned_to'] = "Moderators Assigned to \"{1}\"";
|
||||
$l['edit_permissions'] = "Edit Permissions";
|
||||
$l['set_permissions'] = "Set Permissions";
|
||||
$l['using_custom_perms'] = "Using Custom Permissions";
|
||||
$l['using_default_perms'] = "Using Default Permissions";
|
||||
$l['clear_custom_perms'] = "Clear Custom Permissions";
|
||||
$l['set_custom_perms'] = "Set Custom Permissions";
|
||||
|
||||
$l['permissions_use_group_default'] = "Use Group Default";
|
||||
$l['permissions_group'] = "Group";
|
||||
$l['permissions_canview'] = "Can view?";
|
||||
$l['permissions_canpostthreads'] = "Can post threads?";
|
||||
$l['permissions_canpostreplys'] = "Can post replies?";
|
||||
$l['permissions_canpostpolls'] = "Can post polls?";
|
||||
$l['permissions_canuploadattachments'] = "Can upload attachments?";
|
||||
$l['permissions_all'] = "All?";
|
||||
|
||||
$l['overview_allowed_actions'] = "Overview: Allowed Actions";
|
||||
$l['overview_disallowed_actions'] = "Overview: Disallowed Actions";
|
||||
$l['perm_drag_canview'] = "• View";
|
||||
$l['perm_drag_canpostthreads'] = "• Post Threads";
|
||||
$l['perm_drag_canpostreplys'] = "• Post Replies";
|
||||
$l['perm_drag_canpostpolls'] = "• Post Polls";
|
||||
|
||||
$l['moderator_permissions'] = "Moderator Permissions";
|
||||
$l['forum_desc'] = "Forum the moderator manages.";
|
||||
$l['edit_mod_for'] = "Edit moderator options for \"{1}\"";
|
||||
$l['can_edit_posts'] = "Can edit posts?";
|
||||
$l['can_soft_delete_posts'] = "Can soft delete posts?";
|
||||
$l['can_restore_posts'] = "Can restore soft deleted posts?";
|
||||
$l['can_delete_posts'] = "Can delete posts permanently?";
|
||||
$l['can_soft_delete_threads'] = "Can soft delete threads?";
|
||||
$l['can_restore_threads'] = "Can restore soft deleted threads?";
|
||||
$l['can_delete_threads'] = "Can delete threads permanently?";
|
||||
$l['can_view_ips'] = "Can view IPs?";
|
||||
$l['can_view_unapprove'] = "Can view unapproved threads and posts?";
|
||||
$l['can_view_deleted'] = "Can view deleted threads and posts?";
|
||||
$l['can_open_close_threads'] = "Can open/close threads?";
|
||||
$l['can_stick_unstick_threads'] = "Can stick/unstick threads?";
|
||||
$l['can_approve_unapprove_threads'] = "Can approve/unapprove threads?";
|
||||
$l['can_approve_unapprove_posts'] = "Can approve/unapprove posts?";
|
||||
$l['can_approve_unapprove_attachments'] = "Can approve/unapprove attachments?";
|
||||
$l['can_manage_threads'] = "Can manage threads (split, move, copy, merge)?";
|
||||
$l['can_manage_polls'] = "Can manage polls?";
|
||||
$l['can_post_closed_threads'] = "Can post in closed threads?";
|
||||
$l['can_move_to_other_forums'] = "Can move threads to another forum this user doesn't moderate?";
|
||||
$l['can_use_custom_tools'] = "Can use custom moderator tools?";
|
||||
$l['can_manage_announcements'] = "Can manage announcements in this forum?";
|
||||
$l['can_manage_reported_posts'] = "Can manage reported posts in this forum?";
|
||||
$l['can_view_mod_log'] = "Can view moderator log entries for this forum?";
|
||||
$l['moderator_cp_permissions'] = "Moderator CP Permissions";
|
||||
$l['moderator_cp_permissions_desc'] = "This user must be able to access the Mod CP and have usergroup permission to access these functions in order for these permissions to take effect.";
|
||||
|
||||
$l['save_mod'] = "Save Moderator";
|
||||
|
||||
$l['no_forums'] = "There are no forums found.";
|
||||
$l['no_moderators'] = "There are no moderators found.";
|
||||
|
||||
$l['success_forum_disporder_updated'] = "The forum display orders have been updated successfully.";
|
||||
$l['success_forum_deleted'] = "The selected forum has been deleted successfully. Ideally you should now run the <a href=\"index.php?module=tools-recount_rebuild\">Recount & Rebuild</a> tools.";
|
||||
$l['success_moderator_deleted'] = "The selected moderator has been deleted successfully.<br />Please remember that this hasn't changed this user's group permission, they may still have moderation powers.";
|
||||
$l['success_forum_permissions_updated'] = "The forum permissions have been updated successfully.";
|
||||
$l['success_forum_updated'] = "The forum settings have been updated successfully.";
|
||||
$l['success_moderator_updated'] = "The selected moderator has been updated successfully.";
|
||||
$l['success_custom_permission_cleared'] = "The custom permissions for this forum have been cleared successfully.";
|
||||
|
||||
$l['error_invalid_forum'] = "Please select a valid forum.";
|
||||
$l['error_invalid_moderator'] = "Please select a valid moderator to delete.";
|
||||
$l['error_invalid_fid'] = "Invalid Forum ID selected.";
|
||||
$l['error_forum_parent_child'] = "You can't set the parent forum of this forum to one of it's children.";
|
||||
$l['error_forum_parent_itself'] = "The forum parent cannot be the forum itself.";
|
||||
$l['error_incorrect_moderator'] = "Please select a valid moderator.";
|
||||
|
||||
$l['confirm_moderator_deletion'] = "Are you sure you wish to remove this moderator from this forum?";
|
||||
$l['confirm_forum_deletion'] = "Are you sure you wish to delete this forum?";
|
||||
$l['confirm_clear_custom_permission'] = "Are you sure you wish to clear this custom permission?";
|
||||
|
||||
$l['forum_type'] = "Forum Type";
|
||||
$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.";
|
||||
$l['category'] = "Category";
|
||||
$l['title'] = "Title";
|
||||
$l['description'] = "Description";
|
||||
$l['save_forum'] = "Save Forum";
|
||||
$l['parent_forum'] = "Parent Forum";
|
||||
$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.";
|
||||
$l['none'] = "None";
|
||||
$l['display_order'] = "Display Order";
|
||||
|
||||
$l['show_additional_options'] = "Show Additional Options";
|
||||
$l['hide_additional_options'] = "Hide Additional Options";
|
||||
$l['additional_forum_options'] = "Additional Forum Options";
|
||||
$l['forum_link'] = "Forum Link";
|
||||
$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.";
|
||||
$l['forum_password'] = "Forum Password";
|
||||
$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.";
|
||||
$l['access_options'] = "Access Options";
|
||||
$l['forum_is_active'] = "Forum is Active?";
|
||||
$l['forum_is_active_desc'] = "If unselected, this forum will not be shown to users and will not \"exist\".";
|
||||
$l['forum_is_open'] = "Forum is Open?";
|
||||
$l['forum_is_open_desc'] = "If unselected, users will not be able to post in this forum regardless of permissions.";
|
||||
|
||||
$l['copy_to_new_forum'] = "Copy to new forum";
|
||||
$l['source_forum'] = "Source forum";
|
||||
$l['source_forum_desc'] = "Forum to copy settings and/or permissions from.";
|
||||
$l['destination_forum'] = "Destination forum";
|
||||
$l['destination_forum_desc'] = "Forum to copy settings and/or permissions to.";
|
||||
$l['new_forum_settings'] = "New Forum Settings";
|
||||
$l['copy_settings_and_properties'] = "Copy Forum Settings and Properties";
|
||||
$l['copy_settings_and_properties_desc'] = "Only applies if the destination forum exists.";
|
||||
$l['copy_user_group_permissions'] = "Copy User Group Permissions";
|
||||
$l['copy_user_group_permissions_desc'] = "Use CTRL to select multiple groups.";
|
||||
|
||||
$l['override_user_style'] = "Yes, override the user's selected style for this forum";
|
||||
$l['style_options'] = "Style Options";
|
||||
$l['forum_specific_style'] = "Forum-Specific Style:";
|
||||
$l['use_default'] = "Use Default";
|
||||
$l['dont_display_rules'] = "Don't display rules for this forum";
|
||||
$l['display_rules_inline'] = "Display rules for this forum on the thread listing";
|
||||
$l['display_rules_inline_new'] = "Display rules in the thread listing and for new threads/replies";
|
||||
$l['display_rules_link'] = "Display a link to the rules for this forum";
|
||||
$l['display_method'] = "Display Method:";
|
||||
$l['rules'] = "Rules:";
|
||||
$l['forum_rules'] = "Forum Rules";
|
||||
$l['name'] = "Name";
|
||||
$l['username'] = "Username";
|
||||
$l['moderator_username_desc'] = "Username of the moderator to be added";
|
||||
$l['add_user_as_moderator'] = "Add a user as Moderator";
|
||||
$l['usergroup'] = "Usergroup";
|
||||
$l['add_usergroup_as_moderator'] = "Add a usergroup as Moderators";
|
||||
$l['moderator_usergroup_desc'] = "Select a usergroup to add as a Moderator from the list below.";
|
||||
$l['add_usergroup_moderator'] = "Add Usergroup Moderator";
|
||||
$l['add_user_moderator'] = "Add User Moderator";
|
||||
|
||||
$l['default_view_options'] = "Default View Options";
|
||||
$l['default_date_cut'] = "Default Date Cut:";
|
||||
$l['default_sort_by'] = "Default Sort By:";
|
||||
$l['default_sort_order'] = "Default Sort Order:";
|
||||
|
||||
$l['board_default'] = "Board Default";
|
||||
|
||||
$l['datelimit_1day'] = "Last day";
|
||||
$l['datelimit_5days'] = "Last 5 days";
|
||||
$l['datelimit_10days'] = "Last 10 days";
|
||||
$l['datelimit_20days'] = "Last 20 days";
|
||||
$l['datelimit_50days'] = "Last 50 days";
|
||||
$l['datelimit_75days'] = "Last 75 days";
|
||||
$l['datelimit_100days'] = "Last 100 days";
|
||||
$l['datelimit_lastyear'] = "Last year";
|
||||
$l['datelimit_beginning'] = "The beginning";
|
||||
|
||||
$l['sort_by_subject'] = "Thread subject";
|
||||
$l['sort_by_lastpost'] = "Last post time";
|
||||
$l['sort_by_starter'] = "Thread starter";
|
||||
$l['sort_by_started'] = "Thread creation time";
|
||||
$l['sort_by_rating'] = "Thread rating";
|
||||
$l['sort_by_replies'] = "Number of replies";
|
||||
$l['sort_by_views'] = "Number of views";
|
||||
|
||||
$l['sort_order_asc'] = "Ascending";
|
||||
$l['sort_order_desc'] = "Descending";
|
||||
|
||||
$l['misc_options'] = "Miscellaneous Options";
|
||||
$l['allow_html'] = "Yes, allow HTML in posts";
|
||||
$l['allow_mycode'] = "Yes, allow MyCode in posts";
|
||||
$l['allow_smilies'] = "Yes, allow smilies in posts";
|
||||
$l['allow_img_code'] = "Yes, allow [img] code in posts (requires MyCode to be turned on)";
|
||||
$l['allow_video_code'] = "Yes, allow [video] code in posts (requires MyCode to be turned on)";
|
||||
$l['allow_post_icons'] = "Yes, allow post icons to be chosen for posts";
|
||||
$l['allow_thread_ratings'] = "Yes, allow threads to be rated";
|
||||
$l['show_forum_jump'] = "Yes, show this forum in the 'forum jump' menu";
|
||||
$l['use_postcounts'] = "Yes, posts in this forum should count towards user post counts";
|
||||
$l['use_threadcounts'] = "Yes, threads in this forum should count towards user thread counts";
|
||||
$l['require_thread_prefix'] = "Yes, require a thread prefix for all threads";
|
||||
|
||||
$l['use_permissions'] = "Use Permissions";
|
||||
$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.";
|
||||
$l['inherit_permissions'] = "Use user group permissions or inherit permissions from parent forums";
|
||||
$l['custom_permissions'] = "Use custom permissions (below)";
|
||||
$l['custom_permissions_for'] = "Custom Permissions for";
|
||||
|
||||
$l['inherited_permission'] = "inherited";
|
||||
$l['custom_permission'] = "custom";
|
||||
|
||||
$l['save_permissions'] = "Save Forum Permissions";
|
||||
|
||||
$l['error_missing_title'] = "You must enter in a title.";
|
||||
$l['error_no_parent'] = "You must select a parent forum.";
|
||||
$l['error_not_empty'] = "Forums with threads cannot be converted to categories.";
|
||||
$l['error_forum_link_not_empty'] = "Forums with threads cannot be redirected to another webpage.";
|
||||
|
||||
$l['success_forum_added'] = "The forum has been created successfully.";
|
||||
$l['success_moderator_added'] = "The moderator has been added to this forum successfully.";
|
||||
$l['success_forum_permissions_saved'] = "The forum permissions have been saved successfully.";
|
||||
$l['success_forum_copied'] = "The selected forum has been copied successfully.";
|
||||
|
||||
$l['error_moderator_already_added'] = "The selected user/group is already a moderator of this forum.";
|
||||
$l['error_moderator_not_found'] = "The specified username/group was not found.";
|
||||
$l['error_new_forum_needs_name'] = "You need to give your new forum a name.";
|
||||
$l['error_invalid_source_forum'] = "Invalid source forum.";
|
||||
$l['error_invalid_destination_forum'] = "Invalid destination forum.";
|
||||
|
||||
$l['group_viewing'] = "Viewing";
|
||||
$l['group_posting_rating'] = "Posting / Rating";
|
||||
$l['group_editing'] = "Editing";
|
||||
$l['group_moderate'] = "Moderation";
|
||||
$l['group_polls'] = "Polls";
|
||||
$l['group_misc'] = "Miscellaneous";
|
||||
|
||||
$l['viewing_field_canview'] = "Can view forum?";
|
||||
$l['viewing_field_canviewthreads'] = "Can view threads within forum?";
|
||||
$l['viewing_field_canonlyviewownthreads'] = "Can only view own threads?";
|
||||
$l['viewing_field_candlattachments'] = "Can download attachments?";
|
||||
|
||||
$l['posting_rating_field_canpostthreads'] = "Can post threads?";
|
||||
$l['posting_rating_field_canpostreplys'] = "Can post replies?";
|
||||
$l['posting_rating_field_canonlyreplyownthreads'] = "Can only reply to own threads?";
|
||||
$l['posting_rating_field_canpostattachments'] = "Can post attachments?";
|
||||
$l['posting_rating_field_canratethreads'] = "Can rate threads?";
|
||||
|
||||
$l['editing_field_caneditposts'] = "Can edit own posts?";
|
||||
$l['editing_field_candeleteposts'] = "Can delete own posts?";
|
||||
$l['editing_field_candeletethreads'] = "Can delete own threads?";
|
||||
$l['editing_field_caneditattachments'] = "Can update own attachments?";
|
||||
$l['editing_field_canviewdeletionnotice'] = "Can view deletion notices?";
|
||||
|
||||
$l['moderate_field_modposts'] = "Moderate new posts?";
|
||||
$l['moderate_field_modthreads'] = "Moderate new threads?";
|
||||
$l['moderate_field_modattachments'] = "Moderate new attachments?";
|
||||
$l['moderate_field_mod_edit_posts'] = "Moderate posts after they've been edited?";
|
||||
|
||||
$l['polls_field_canpostpolls'] = "Can post polls?";
|
||||
$l['polls_field_canvotepolls'] = "Can vote in polls?";
|
||||
|
||||
$l['misc_field_cansearch'] = "Can search forum?";
|
||||
|
||||
$l['confirm_proceed_deletion'] = "Click \"Proceed\" to continue the deletion of the forum.";
|
||||
$l['automatically_redirecting'] = "Automatically Redirecting…";
|
||||
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
// Tabs
|
||||
$l['moderation_queue'] = "Moderation Queue";
|
||||
$l['threads'] = "Threads";
|
||||
$l['threads_desc'] = "Here you can view and approve threads in the moderation queue.";
|
||||
$l['posts'] = "Posts";
|
||||
$l['posts_desc'] = "Here you can view and approve posts in the moderation queue.";
|
||||
$l['attachments'] = "Attachments";
|
||||
$l['attachments_desc'] = "Here you can view and approve attachments in the moderation queue.";
|
||||
$l['threads_awaiting_moderation'] = "Threads Awaiting Moderation";
|
||||
$l['posts_awaiting_moderation'] = "Posts Awaiting Moderation";
|
||||
$l['attachments_awaiting_moderation'] = "Attachments Awaiting Moderation";
|
||||
|
||||
// Errors
|
||||
$l['error_no_posts'] = "There are no posts currently awaiting moderation.";
|
||||
$l['error_no_attachments'] = "There are no attachments currently awaiting moderation.";
|
||||
$l['error_no_threads'] = "There are no threads, posts or attachments currently awaiting moderation.";
|
||||
|
||||
// Success
|
||||
$l['success_threads'] = "The selected threads have been moderated successfully.";
|
||||
$l['success_posts'] = "The selected posts have been moderated successfully.";
|
||||
$l['success_attachments'] = "The selected attachments have been moderated successfully.";
|
||||
|
||||
// Pages
|
||||
$l['subject'] = "Subject";
|
||||
$l['author'] = "Author";
|
||||
$l['posted'] = "Posted";
|
||||
$l['ignore'] = "Ignore";
|
||||
$l['approve'] = "Approve";
|
||||
$l['forum'] = "Forum:";
|
||||
$l['thread'] = "Thread:";
|
||||
$l['post'] = "Post:";
|
||||
$l['re'] = "RE:";
|
||||
$l['filename'] = "File Name";
|
||||
$l['uploadedby'] = "Uploaded by";
|
||||
$l['controls'] = "Controls";
|
||||
|
||||
// Buttons
|
||||
$l['mark_as_ignored'] = "Mark all as ignored";
|
||||
$l['mark_as_deleted'] = "Mark all for deletion";
|
||||
$l['mark_as_approved'] = "Mark all as approved";
|
||||
$l['perform_action'] = "Perform Actions";
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['forums_and_posts'] = "Forums & Posts";
|
||||
|
||||
$l['forum_management'] = "Forum Management";
|
||||
$l['forum_announcements'] = "Forum Announcements";
|
||||
$l['moderation_queue'] = "Moderation Queue";
|
||||
$l['attachments'] = "Attachments";
|
||||
|
||||
$l['can_manage_forums'] = "Can manage forums?";
|
||||
$l['can_manage_forum_announcements'] = "Can manage forum announcements?";
|
||||
$l['can_moderate'] = "Can moderate posts, threads, and attachments?";
|
||||
$l['can_manage_attachments'] = "Can manage attachments?";
|
||||
|
||||
375
webroot/forum/inc/languages/english/admin/global.lang.php
Normal file
375
webroot/forum/inc/languages/english/admin/global.lang.php
Normal file
@@ -0,0 +1,375 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['today_rel'] = "<span title=\"{1}\">Today</span>";
|
||||
$l['yesterday_rel'] = "<span title=\"{1}\">Yesterday</span>";
|
||||
$l['today'] = "Today";
|
||||
$l['yesterday'] = "Yesterday";
|
||||
|
||||
$l['size_yb'] = "YB";
|
||||
$l['size_zb'] = "ZB";
|
||||
$l['size_eb'] = "EB";
|
||||
$l['size_pb'] = "PB";
|
||||
$l['size_tb'] = "TB";
|
||||
$l['size_gb'] = "GB";
|
||||
$l['size_mb'] = "MB";
|
||||
$l['size_kb'] = "KB";
|
||||
$l['size_bytes'] = "bytes";
|
||||
$l['na'] = "N/A";
|
||||
|
||||
// Header language strings
|
||||
$l['mybb_admin_panel'] = "MyBB Control Panel";
|
||||
$l['mybb_admin_cp'] = "MyBB Admin CP";
|
||||
$l['logged_in_as'] = "Logged in as";
|
||||
$l['view_board'] = "View Forum";
|
||||
$l['logout'] = "Log Out";
|
||||
|
||||
// Footer language strings
|
||||
$l['generated_in'] = "Generated in {1} with <a href=\"{2}\" target=\"_blank\">{3} queries</a>. Memory Usage: {4}";
|
||||
|
||||
// Login page
|
||||
$l['enter_username_and_password'] = "Please enter your {1} and password to continue.";
|
||||
$l['login_username'] = 'username';
|
||||
$l['login_email'] = 'email';
|
||||
$l['login_username_and_password'] = 'username/email';
|
||||
$l['mybb_admin_login'] = "MyBB Control Panel - Login";
|
||||
$l['return_to_forum'] = "Return to forum";
|
||||
$l['please_login'] = "Please Login";
|
||||
$l['username'] = "Username:";
|
||||
$l['username1'] = "Email:";
|
||||
$l['username2'] = "Username/Email:";
|
||||
$l['password'] = "Password:";
|
||||
$l['secret_pin'] = "Secret PIN:";
|
||||
$l['login'] = "Login";
|
||||
$l['lost_password'] = "Forgot your password?";
|
||||
|
||||
$l['error_invalid_admin_session'] = "Invalid administration session.";
|
||||
$l['error_admin_session_expired'] = "Your administration session has expired.";
|
||||
$l['error_invalid_ip'] = "Your IP address is not valid for this session.";
|
||||
$l['error_mybb_admin_lockedout'] = "This account has been locked out.";
|
||||
$l['error_mybb_admin_lockedout_message'] = "Your account is currently locked out after failing to login {1} times. You have been sent an email with instructions on how to unlock your account.";
|
||||
|
||||
$l['error_invalid_username'] = "The username you entered is invalid.";
|
||||
$l['error_invalid_uid'] = "The user id you entered is invalid.";
|
||||
$l['error_invalid_token'] = "The activation code you entered is invalid.";
|
||||
|
||||
$l['success_logged_out'] = "You have been logged out successfully.";
|
||||
$l['error_invalid_username_password'] = "The {1} and password combination you entered is invalid.";
|
||||
|
||||
// Action Confirmation
|
||||
$l['confirm_action'] = "Are you sure you wish to perform this action?";
|
||||
|
||||
// Common words and phrases
|
||||
$l['home'] = "Home";
|
||||
$l['name'] = "Name";
|
||||
$l['size'] = "Size";
|
||||
$l['controls'] = "Controls";
|
||||
$l['view'] = "View";
|
||||
$l['yes'] = "Yes";
|
||||
$l['no'] = "No";
|
||||
$l['cancel'] = "Cancel";
|
||||
$l['options'] = "Options";
|
||||
$l['proceed'] = "Proceed";
|
||||
$l['ok'] = "OK";
|
||||
$l['error'] = "Error";
|
||||
$l['edit'] = "Edit";
|
||||
$l['never'] = "Never";
|
||||
$l['legend'] = "Legend";
|
||||
$l['version'] = "Version";
|
||||
$l['languagevar'] = "Language";
|
||||
$l['use_default'] = "Use Default";
|
||||
$l['file'] = "File";
|
||||
$l['go'] = "Go";
|
||||
$l['clear'] = "Clear";
|
||||
$l['unknown'] = "Unknown";
|
||||
$l['year'] = "Year";
|
||||
$l['year_short'] = "y";
|
||||
$l['years'] = "Years";
|
||||
$l['years_short'] = "y";
|
||||
$l['month'] = "Month";
|
||||
$l['month_short'] = "m";
|
||||
$l['months'] = "Months";
|
||||
$l['months_short'] = "m";
|
||||
$l['week'] = "Week";
|
||||
$l['week_short'] = "w";
|
||||
$l['weeks'] = "Weeks";
|
||||
$l['weeks_short'] = "w";
|
||||
$l['day'] = "Day";
|
||||
$l['day_short'] = "d";
|
||||
$l['days'] = "Days";
|
||||
$l['days_short'] = "d";
|
||||
$l['hour'] = "Hour";
|
||||
$l['hour_short'] = "h";
|
||||
$l['hours'] = "Hours";
|
||||
$l['hours_short'] = "h";
|
||||
$l['minute'] = "Minute";
|
||||
$l['minute_short'] = "m";
|
||||
$l['minutes'] = "Minutes";
|
||||
$l['minutes_short'] = "m";
|
||||
$l['second'] = "Second";
|
||||
$l['second_short'] = "s";
|
||||
$l['seconds'] = "Seconds";
|
||||
$l['seconds_short'] = "s";
|
||||
$l['permanent'] = "Permanent";
|
||||
$l['all_forums'] = "All Forums";
|
||||
$l['all_groups'] = "All groups";
|
||||
$l['select_forums'] = "Select forums";
|
||||
$l['select_groups'] = "Select groups";
|
||||
$l['forums_colon'] = "Forums:";
|
||||
$l['groups_colon'] = "Groups:";
|
||||
$l['none'] = "None";
|
||||
$l['mybb_acp'] = "MyBB ACP";
|
||||
$l['pages'] = "Pages";
|
||||
$l['previous'] = "Previous";
|
||||
$l['page'] = "Page";
|
||||
$l['next'] = "Next";
|
||||
$l['delete'] = "Delete";
|
||||
$l['reset'] = "Reset";
|
||||
$l['and'] = "and";
|
||||
$l['on'] = "On";
|
||||
$l['off'] = "Off";
|
||||
$l['alt_enabled'] = "Enabled";
|
||||
$l['alt_disabled'] = "Disabled";
|
||||
$l['enable'] = "Enable";
|
||||
$l['disable'] = "Disable";
|
||||
$l['saved'] = 'Saved';
|
||||
$l['guest'] = 'Guest';
|
||||
|
||||
$l['rel_in'] = "In ";
|
||||
$l['rel_ago'] = "ago";
|
||||
$l['rel_less_than'] = "Less than ";
|
||||
$l['rel_time'] = "<span title=\"{5}{6}\">{1}{2} {3} {4}</span>";
|
||||
$l['rel_minutes_single'] = "minute";
|
||||
$l['rel_minutes_plural'] = "minutes";
|
||||
$l['rel_hours_single'] = "hour";
|
||||
$l['rel_hours_plural'] = "hours";
|
||||
|
||||
// Parser bits
|
||||
$l['quote'] = "Quote:";
|
||||
$l['wrote'] = "Wrote:";
|
||||
$l['code'] = "Code:";
|
||||
$l['php_code'] = "PHP Code:";
|
||||
$l['linkback'] = "Original Post";
|
||||
|
||||
// The months of the year
|
||||
$l['january'] = "January";
|
||||
$l['february'] = "February";
|
||||
$l['march'] = "March";
|
||||
$l['april'] = "April";
|
||||
$l['may'] = "May";
|
||||
$l['june'] = "June";
|
||||
$l['july'] = "July";
|
||||
$l['august'] = "August";
|
||||
$l['september'] = "September";
|
||||
$l['october'] = "October";
|
||||
$l['november'] = "November";
|
||||
$l['december'] = "December";
|
||||
|
||||
// Access Denied
|
||||
$l['access_denied'] = "Access Denied";
|
||||
$l['access_denied_desc'] = "You do not have permission to access this part of the administration control panel.";
|
||||
|
||||
// Super Administrator required
|
||||
$l['cannot_perform_action_super_admin_general'] = "Sorry, but you cannot perform this action because you are not a super administrator.<br /><br />To be able to perform this action, you need to add your user ID to the list of super administrators in inc/config.php.";
|
||||
|
||||
// AJAX
|
||||
$l['loading_text'] = "Loading<br />Please wait…";
|
||||
|
||||
// Time zone selection boxes
|
||||
$l['timezone_gmt_minus_1200'] = "(GMT -12:00) Howland and Baker Islands";
|
||||
$l['timezone_gmt_minus_1100'] = "(GMT -11:00) Nome, Midway Island";
|
||||
$l['timezone_gmt_minus_1000'] = "(GMT -10:00) Hawaii, Papeete";
|
||||
$l['timezone_gmt_minus_950'] = "(GMT -9:30) Marquesas Islands";
|
||||
$l['timezone_gmt_minus_900'] = "(GMT -9:00) Alaska";
|
||||
$l['timezone_gmt_minus_800'] = "(GMT -8:00) Pacific Time";
|
||||
$l['timezone_gmt_minus_700'] = "(GMT -7:00) Mountain Time";
|
||||
$l['timezone_gmt_minus_600'] = "(GMT -6:00) Central Time, Mexico City";
|
||||
$l['timezone_gmt_minus_500'] = "(GMT -5:00) Eastern Time, Bogota, Lima, Quito";
|
||||
$l['timezone_gmt_minus_450'] = "(GMT -4:30) Caracas";
|
||||
$l['timezone_gmt_minus_400'] = "(GMT -4:00) Atlantic Time, La Paz, Halifax";
|
||||
$l['timezone_gmt_minus_350'] = "(GMT -3:30) Newfoundland";
|
||||
$l['timezone_gmt_minus_300'] = "(GMT -3:00) Brazil, Buenos Aires, Georgetown, Falkland Is.";
|
||||
$l['timezone_gmt_minus_200'] = "(GMT -2:00) Mid-Atlantic, South Georgia and the South Sandwich Islands";
|
||||
$l['timezone_gmt_minus_100'] = "(GMT -1:00) Azores, Cape Verde Islands";
|
||||
$l['timezone_gmt'] = "(GMT) Casablanca, Dublin, Edinburgh, London, Lisbon, Monrovia";
|
||||
$l['timezone_gmt_100'] = "(GMT +1:00) Berlin, Bratislava, Brussels, Copenhagen, Madrid, Paris, Prague, Rome, Warsaw";
|
||||
$l['timezone_gmt_200'] = "(GMT +2:00) Athens, Istanbul, Cairo, Jerusalem, South Africa";
|
||||
$l['timezone_gmt_300'] = "(GMT +3:00) Kaliningrad, Minsk, Baghdad, Riyadh, Nairobi";
|
||||
$l['timezone_gmt_350'] = "(GMT +3:30) Tehran";
|
||||
$l['timezone_gmt_400'] = "(GMT +4:00) Moscow, Abu Dhabi, Baku, Muscat, Tbilisi";
|
||||
$l['timezone_gmt_450'] = "(GMT +4:30) Kabul";
|
||||
$l['timezone_gmt_500'] = "(GMT +5:00) Islamabad, Karachi, Tashkent";
|
||||
$l['timezone_gmt_550'] = "(GMT +5:30) Mumbai, Kolkata, Chennai, New Delhi";
|
||||
$l['timezone_gmt_575'] = "(GMT +5:45) Kathmandu";
|
||||
$l['timezone_gmt_600'] = "(GMT +6:00) Almaty, Dhaka, Yekaterinburg";
|
||||
$l['timezone_gmt_650'] = "(GMT +6:30) Yangon";
|
||||
$l['timezone_gmt_700'] = "(GMT +7:00) Bangkok, Hanoi, Jakarta";
|
||||
$l['timezone_gmt_800'] = "(GMT +8:00) Beijing, Hong Kong, Perth, Singapore, Taipei, Manila";
|
||||
$l['timezone_gmt_850'] = "(GMT +8:30) Pyongyang";
|
||||
$l['timezone_gmt_875'] = "(GMT +8:45) Eucla";
|
||||
$l['timezone_gmt_900'] = "(GMT +9:00) Osaka, Sapporo, Seoul, Tokyo, Irkutsk";
|
||||
$l['timezone_gmt_950'] = "(GMT +9:30) Adelaide, Darwin";
|
||||
$l['timezone_gmt_1000'] = "(GMT +10:00) Melbourne, Papua New Guinea, Sydney, Yakutsk";
|
||||
$l['timezone_gmt_1050'] = "(GMT +10:30) Lord Howe Island";
|
||||
$l['timezone_gmt_1100'] = "(GMT +11:00) Magadan, New Caledonia, Solomon Islands, Vladivostok";
|
||||
$l['timezone_gmt_1150'] = "(GMT +11:30) Norfolk Island";
|
||||
$l['timezone_gmt_1200'] = "(GMT +12:00) Auckland, Wellington, Fiji, Marshall Islands";
|
||||
$l['timezone_gmt_1275'] = "(GMT +12:45) Chatham Islands";
|
||||
$l['timezone_gmt_1300'] = "(GMT +13:00) Samoa, Tonga, Tokelau";
|
||||
$l['timezone_gmt_1400'] = "(GMT +14:00) Line Islands";
|
||||
$l['timezone_gmt_short'] = "GMT {1}({2})";
|
||||
|
||||
// Global language strings used for log deletion pages
|
||||
$l['confirm_delete_logs'] = "Prune the selected log entries?";
|
||||
$l['confirm_delete_all_logs'] = "Prune all log entries?";
|
||||
$l['selected_logs_deleted'] = "The selected log entries have been deleted.";
|
||||
$l['all_logs_deleted'] = "All log entries have been deleted.";
|
||||
$l['delete_selected'] = "Delete Selected";
|
||||
$l['delete_all'] = "Delete All Filtered";
|
||||
|
||||
// Misc
|
||||
$l['encountered_errors'] = "The following errors were encountered:";
|
||||
$l['invalid_post_verify_key'] = "An authorization code mismatch occurred. Please confirm that you wish to perform the action below.";
|
||||
$l['invalid_post_verify_key2'] = "An authorization code mismatch occurred. Please double check that you are accessing this page correctly.";
|
||||
$l['unknown_error'] = "An unknown error has occurred.";
|
||||
|
||||
// Code buttons editor language strings
|
||||
$l['editor_bold'] = "Bold";
|
||||
$l['editor_italic'] = "Italic";
|
||||
$l['editor_underline'] = "Underline";
|
||||
$l['editor_strikethrough'] = "Strikethrough";
|
||||
$l['editor_subscript'] = "Subscript";
|
||||
$l['editor_superscript'] = "Superscript";
|
||||
$l['editor_alignleft'] = "Align left";
|
||||
$l['editor_center'] = "Center";
|
||||
$l['editor_alignright'] = "Align right";
|
||||
$l['editor_justify'] = "Justify";
|
||||
$l['editor_fontname'] = "Font Name";
|
||||
$l['editor_fontsize'] = "Font Size";
|
||||
$l['editor_fontcolor'] = "Font Color";
|
||||
$l['editor_removeformatting'] = "Remove Formatting";
|
||||
$l['editor_cut'] = "Cut";
|
||||
$l['editor_copy'] = "Copy";
|
||||
$l['editor_paste'] = "Paste";
|
||||
$l['editor_cutnosupport'] = "Your browser does not allow the cut command. Please use the keyboard shortcut Ctrl/Cmd-X";
|
||||
$l['editor_copynosupport'] = "Your browser does not allow the copy command. Please use the keyboard shortcut Ctrl/Cmd-C";
|
||||
$l['editor_pastenosupport'] = "Your browser does not allow the paste command. Please use the keyboard shortcut Ctrl/Cmd-V";
|
||||
$l['editor_pasteentertext'] = "Paste your text inside the following box:";
|
||||
$l['editor_pastetext'] = "Paste Text";
|
||||
$l['editor_numlist'] = "Numbered list";
|
||||
$l['editor_bullist'] = "Bullet list";
|
||||
$l['editor_undo'] = "Undo";
|
||||
$l['editor_redo'] = "Redo";
|
||||
$l['editor_rows'] = "Rows:";
|
||||
$l['editor_cols'] = "Cols:";
|
||||
$l['editor_inserttable'] = "Insert a table";
|
||||
$l['editor_inserthr'] = "Insert a horizontal rule";
|
||||
$l['editor_code'] = "Code";
|
||||
$l['editor_php'] = "PHP";
|
||||
$l['editor_width'] = "Width (optional):";
|
||||
$l['editor_height'] = "Height (optional):";
|
||||
$l['editor_insertimg'] = "Insert an image";
|
||||
$l['editor_email'] = "E-mail:";
|
||||
$l['editor_insertemail'] = "Insert an email";
|
||||
$l['editor_url'] = "URL:";
|
||||
$l['editor_insertlink'] = "Insert a link";
|
||||
$l['editor_unlink'] = "Unlink";
|
||||
$l['editor_more'] = "More";
|
||||
$l['editor_insertemoticon'] = "Insert an emoticon";
|
||||
$l['editor_videourl'] = "Video URL:";
|
||||
$l['editor_videotype'] = "Video Type:";
|
||||
$l['editor_insert'] = "Insert";
|
||||
$l['editor_insertyoutubevideo'] = "Insert a YouTube video";
|
||||
$l['editor_currentdate'] = "Insert current date";
|
||||
$l['editor_currenttime'] = "Insert current time";
|
||||
$l['editor_print'] = "Print";
|
||||
$l['editor_viewsource'] = "View source";
|
||||
$l['editor_description'] = "Description (optional):";
|
||||
$l['editor_enterimgurl'] = "Enter the image URL:";
|
||||
$l['editor_enteremail'] = "Enter the e-mail address:";
|
||||
$l['editor_enterdisplayedtext'] = "Enter the displayed text:";
|
||||
$l['editor_enterurl'] = "Enter URL:";
|
||||
$l['editor_enteryoutubeurl'] = "Enter the YouTube video URL or ID:";
|
||||
$l['editor_insertquote'] = "Insert a Quote";
|
||||
$l['editor_invalidyoutube'] = "Invalid YouTube video";
|
||||
$l['editor_dailymotion'] = "Dailymotion";
|
||||
$l['editor_metacafe'] = "MetaCafe";
|
||||
$l['editor_mixer'] = "Mixer";
|
||||
$l['editor_vimeo'] = "Vimeo";
|
||||
$l['editor_youtube'] = "Youtube";
|
||||
$l['editor_facebook'] = "Facebook";
|
||||
$l['editor_liveleak'] = "LiveLeak";
|
||||
$l['editor_insertvideo'] = "Insert a video";
|
||||
$l['editor_maximize'] = "Maximize";
|
||||
|
||||
$l['missing_task'] = "Error: Task file does not exist";
|
||||
$l['task_backup_cannot_write_backup'] = "Error: The database backup task cannot write to backups directory.";
|
||||
$l['task_backup_ran'] = "The database backup task successfully ran.";
|
||||
$l['task_checktables_ran'] = "The check tables task successfully ran with no corrupted tables found.";
|
||||
$l['task_checktables_ran_found'] = "Notice: The check tables task successfully ran and repaired the {1} table(s).";
|
||||
$l['task_dailycleanup_ran'] = "The daily cleanup task successfully ran.";
|
||||
$l['task_hourlycleanup_ran'] = "The hourly cleanup task successfully ran.";
|
||||
$l['task_logcleanup_ran'] = "The log cleanup task successfully ran and pruned any old logs.";
|
||||
$l['task_promotions_ran'] = "The promotions task successfully ran.";
|
||||
$l['task_threadviews_ran'] = "The thread views task successfully ran.";
|
||||
$l['task_usercleanup_ran'] = "The user cleanup task successfully ran.";
|
||||
$l['task_massmail_ran'] = "The mass mail task successfully ran.";
|
||||
$l['task_userpruning_ran'] = "The user pruning task successfully ran.";
|
||||
$l['task_delayedmoderation_ran'] = "The delayed moderation task successfully ran.";
|
||||
$l['task_massmail_ran_errors'] = "One or more problems occurred sending to \"{1}\":
|
||||
{2}";
|
||||
$l['task_versioncheck_ran'] = "The version check task successfully ran.";
|
||||
$l['task_versioncheck_ran_errors'] = "Could not connect to MyBB for a version check.";
|
||||
$l['task_recachestylesheets_ran'] = 'Re-cached {1} stylesheets.';
|
||||
|
||||
$l['massmail_username'] = "Username";
|
||||
$l['email_addr'] = "Email Address";
|
||||
$l['board_name'] = "Board Name";
|
||||
$l['board_url'] = "Board URL";
|
||||
|
||||
// Unlock ACP
|
||||
$l['lockout_unlock'] = "Unlock Admin Control Panel";
|
||||
$l['enter_username_and_token'] = "Please enter your username and the activation code to continue.";
|
||||
$l['unlock_token'] = "Activation code:";
|
||||
$l['unlock_account'] = "Unlock Account";
|
||||
|
||||
// Email message for if an admin account has been locked out
|
||||
$l['locked_out_subject'] = "Administrator Account Locked Out at {1}";
|
||||
$l['locked_out_message'] = "{1},
|
||||
|
||||
Your administrator account at {2} has been locked after {3} failed login attempts.
|
||||
|
||||
To unlock your account, please go to the URL below in your web browser.
|
||||
|
||||
{4}/{5}/index.php?action=unlock&uid={7}&token={6}
|
||||
|
||||
If the above link does not work correctly, go to
|
||||
|
||||
{4}/{5}/index.php?action=unlock
|
||||
|
||||
You will need to enter the following:
|
||||
Username: {1}
|
||||
Activation Code: {6}
|
||||
|
||||
Thank you,
|
||||
{2} Staff";
|
||||
|
||||
$l['comma'] = ", ";
|
||||
|
||||
$l['search_for_a_user'] = "Search for a user";
|
||||
|
||||
$l['mybb_engine'] = "MyBB Engine";
|
||||
|
||||
// If the language string for "Username" is too cramped in the ACP Login box
|
||||
// then use this to define how much larger you want the gap to be (in px)
|
||||
// $l['login_field_width'] = "0";
|
||||
|
||||
$l['my2fa'] = "Two-Factor Authentication";
|
||||
$l['my2fa_failed'] = "The code was incorrect, you're logged out now";
|
||||
$l['my2fa_code'] = "Please enter the authentication code";
|
||||
$l['my2fa_label'] = "Authentication code:";
|
||||
$l['my2fa_no_codes'] = "Note: you've used all of your recovery codes. Please visit the <a href=\"index.php?module=home-preferences&action=recovery_codes\">recovery codes page</a> to generate a new set.";
|
||||
23
webroot/forum/inc/languages/english/admin/hello.lang.php
Normal file
23
webroot/forum/inc/languages/english/admin/hello.lang.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
* Website: http://www.mybb.com
|
||||
* License: http://www.mybb.com/about/license
|
||||
*
|
||||
*/
|
||||
|
||||
$l['hello_desc'] = 'A sample plugin that allows you to create messages on the index page and appends them to each post.';
|
||||
|
||||
$l['setting_group_hello'] = 'Hello World!';
|
||||
$l['setting_group_hello_desc'] = 'Settings for Hello World! Plugin.';
|
||||
|
||||
$l['setting_hello_display1'] = 'Display Message Index';
|
||||
$l['setting_hello_display1_desc'] = 'Set to no if you do not want to display the messages on index.';
|
||||
|
||||
$l['setting_hello_display2'] = 'Display Message Postbit';
|
||||
$l['setting_hello_display2_desc'] = 'Set to no if you do not want to display the messages below every post.';
|
||||
|
||||
$l['hello_uninstall'] = 'Hello World! Uninstallation';
|
||||
$l['hello_uninstall_message'] = 'Do you wish to drop all messages from the database?';
|
||||
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['dashboard'] = "Dashboard";
|
||||
$l['dashboard_description'] = "This section allows you to see some of the various statistics relating to your board. You may also add other notes for other administrators to see.";
|
||||
|
||||
$l['mybb_server_stats'] = "MyBB and Server Statistics";
|
||||
$l['forum_stats'] = "Forum Statistics";
|
||||
$l['mybb_version'] = "MyBB Version";
|
||||
$l['threads'] = "Threads";
|
||||
$l['new_today'] = "New Today";
|
||||
$l['unapproved'] = "Unapproved";
|
||||
$l['php_version'] = "PHP Version";
|
||||
$l['posts'] = "Posts";
|
||||
$l['sql_engine'] = "SQL Engine";
|
||||
$l['users'] = "Users";
|
||||
$l['registered_users'] = "Registered Users";
|
||||
$l['active_users'] = "Active Users";
|
||||
$l['registrations_today'] = "Registrations Today";
|
||||
$l['awaiting_activation'] = "Awaiting Activation";
|
||||
$l['server_load'] = "Server Load";
|
||||
$l['attachments'] = "Attachments";
|
||||
$l['used'] = "Used";
|
||||
$l['reported_posts'] = "Reported Posts";
|
||||
$l['unread_reports'] = "Unread Reports";
|
||||
|
||||
$l['version_check'] = "Check for Updates";
|
||||
$l['last_update_check_two_weeks'] = "Your last <a href=\"{1}\">MyBB version check</a> was more than two weeks ago.";
|
||||
$l['new_version_available'] = "You are currently running {1} whilst the latest generally available release is {2}.";
|
||||
$l['version_check_description'] = "Here you can check that you are currently running the latest copy of MyBB and see the latest announcements directly from MyBB.";
|
||||
$l['latest_mybb_announcements'] = "Latest MyBB Announcements";
|
||||
$l['no_announcements'] = "No stored announcements. <a href=\"index.php?module=home&action=version_check\">Check for Updates</a>.";
|
||||
$l['your_version'] = "Your Version";
|
||||
$l['latest_version'] = "Latest Version";
|
||||
$l['update_forum'] = "Please upgrade to the latest version of MyBB by visiting the <a href=\"https://mybb.com\" target=\"_blank\" rel=\"noopener\">MyBB Website</a>.";
|
||||
$l['read_more'] = "Read more";
|
||||
|
||||
$l['success_up_to_date'] = "Congratulations, you are running the latest version of MyBB.";
|
||||
|
||||
$l['error_out_of_date'] = "Your copy of MyBB is out of date.";
|
||||
$l['error_communication'] = "There was a problem communicating with the version server. Please try again in a few minutes.";
|
||||
$l['error_fetch_news'] = "MyBB was unable to successfully fetch the latest announcements from the MyBB website.";
|
||||
|
||||
$l['news_description'] = "The latest news from the <a href=\"https://blog.mybb.com/\" target=\"_blank\" rel=\"noopener\">MyBB Blog</a>.";
|
||||
|
||||
$l['admin_notes_public'] = "These notes are public to all administrators.";
|
||||
$l['admin_notes'] = "Administrator Notes";
|
||||
$l['save_notes'] = "Save Notes";
|
||||
|
||||
$l['success_notes_updated'] = "The administrator notes have been successfully updated.";
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['home'] = "Home";
|
||||
|
||||
$l['dashboard'] = "Dashboard";
|
||||
$l['preferences'] = "Preferences";
|
||||
$l['mybb_credits'] = "MyBB Credits";
|
||||
|
||||
$l['add_new_forum'] = "Add New Forum";
|
||||
$l['search_for_users'] = "Search for Users";
|
||||
$l['themes'] = "Themes";
|
||||
$l['templates'] = "Templates";
|
||||
$l['plugins'] = "Plugins";
|
||||
$l['database_backups'] = "Database Backups";
|
||||
$l['quick_access'] = "Quick Access";
|
||||
$l['online_admins'] = "Online Admins";
|
||||
$l['ipaddress'] = "IP Address:";
|
||||
$l['mybb_documentation'] = "MyBB Documentation";
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['preferences_and_personal_notes'] = "Preferences & Personal Notes";
|
||||
$l['prefs_and_personal_notes_description'] = "Here you can manage your Admin Control Panel preferences and leave personal notes for yourself.";
|
||||
|
||||
$l['preferences'] = "Preferences";
|
||||
$l['global_preferences'] = "Global Preferences";
|
||||
$l['acp_theme'] = "Admin Control Panel Theme";
|
||||
$l['select_acp_theme'] = "Please select a theme to use in the Admin Control Panel.";
|
||||
$l['acp_language'] = "Admin Control Panel Language";
|
||||
$l['select_acp_language'] = "Please select a language to use in the Admin Control Panel.";
|
||||
$l['notes_not_shared'] = "These notes are not shared with other Administrators.";
|
||||
$l['save_notes_and_prefs'] = "Save Personal Notes & Preferences";
|
||||
$l['personal_notes'] = "Personal Notes";
|
||||
$l['codemirror'] = "Turn on / off Code Mirror";
|
||||
$l['use_codemirror_desc'] = "This preference allows you to turn off Code Mirror (used in template editing and stylesheet editing for syntax highlighting) if you are experiencing issues / slow loading.";
|
||||
|
||||
$l['success_preferences_updated'] = "The preferences have been successfully updated.";
|
||||
|
||||
$l['use_2fa_desc'] = "Two-Factor Authentication is a method to secure your admin account. After you've enabled it you'll see a QR Code below which you need to scan with an app <a href=\"https://docs.mybb.com/1.8/administration/security/2fa/\" target=\"_blank\" rel=\"noopener\">like Google Authenticator or Authy</a>. Those apps will generate a token which you need to enter on every acp login.";
|
||||
$l['my2fa_qr'] = "Two-Factor Authentication Code";
|
||||
$l['recovery_codes_desc'] = "View your <a href=\"index.php?module=home-preferences&action=recovery_codes\">recovery codes</a>.";
|
||||
$l['recovery_codes'] = "Recovery Codes";
|
||||
$l['recovery_codes_warning'] = "<b>Note:</b> the codes will be regenerated on every page visit and can be only used once.";
|
||||
$l['print_recovery_codes'] = "Print Recovery Codes";
|
||||
8
webroot/forum/inc/languages/english/admin/index.html
Normal file
8
webroot/forum/inc/languages/english/admin/index.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['templates_and_style'] = "Templates & Style";
|
||||
|
||||
$l['themes'] = "Themes";
|
||||
$l['templates'] = "Templates";
|
||||
|
||||
$l['can_manage_themes'] = "Can manage themes?";
|
||||
$l['can_manage_templates'] = "Can manage templates?";
|
||||
|
||||
@@ -0,0 +1,179 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['template_sets'] = "Template Sets";
|
||||
$l['template_set'] = "Template Set";
|
||||
$l['templates'] = "{1} Templates";
|
||||
|
||||
$l['manage_template_sets'] = "Manage Template Sets";
|
||||
$l['manage_template_sets_desc'] = "Here you can manage template sets, view the templates using these sets, and begin customizing your board's layout.";
|
||||
$l['add_set'] = "Add Set";
|
||||
$l['add_set_desc'] = "Here you can create a new template set. A new template set creates a copy of the master MyBB templates and allows you to edit them without interfering with changes in any other template sets you may already have";
|
||||
$l['add_template'] = "Add Template";
|
||||
$l['add_template_desc'] = "Here you can create a new template.";
|
||||
$l['add_template_group'] = "Add Template Group";
|
||||
$l['add_template_group_desc'] = "Add a template group to collate templates together.";
|
||||
$l['search_replace'] = "Search/Replace";
|
||||
$l['search_replace_desc'] = "This tool will allow you to search for template titles or templates that contain certain text, and optionally replace it with another text automatically.";
|
||||
$l['find_updated'] = "Find Updated Templates";
|
||||
$l['find_updated_desc'] = "Allows you to find changed templates in new versions of MyBB so you can properly apply the changes.";
|
||||
$l['edit_template'] = "Edit Template";
|
||||
$l['editing_template'] = "Editing Template: {1}";
|
||||
$l['edit_template_desc'] = "Here you can edit the template's code, title or set.";
|
||||
$l['edit_set'] = "Edit Set";
|
||||
$l['edit_set_desc'] = "Here you can edit the properties for this template set.";
|
||||
$l['manage_templates'] = "Manage Templates";
|
||||
$l['manage_templates_desc'] = "Here you can manage the templates for this template set. To edit a template click on it's link or select \"Full Edit\" to edit all properties on a separate page.";
|
||||
$l['diff_report'] = "Diff Report";
|
||||
$l['diff_report_desc'] = "Performs a difference analysis between the templates and shows you exactly what changes have been made between your customized copy and the latest master copy.";
|
||||
|
||||
$l['title'] = "Title";
|
||||
$l['save'] = "Save";
|
||||
$l['search_for'] = "Search For";
|
||||
$l['replace_with'] = "Replace With (Optional)";
|
||||
$l['reset'] = "Reset";
|
||||
$l['find_templates'] = "Find Templates";
|
||||
$l['find_and_replace'] = "Find and Replace";
|
||||
$l['search_template_names'] = "Search Template Titles";
|
||||
$l['ungrouped_templates'] = "Ungrouped Templates";
|
||||
|
||||
$l['search_noneset'] = "You did not enter a search string.";
|
||||
$l['search_results'] = "Template Search Results";
|
||||
$l['search_header'] = "Searching For \"{1}\" in {2}";
|
||||
$l['search_updated'] = "Updated {1}";
|
||||
$l['search_found'] = "Found in {1}";
|
||||
$l['search_created_custom'] = "Created custom template for {1}";
|
||||
$l['search_edit'] = "edit";
|
||||
$l['search_change_original'] = "change original";
|
||||
$l['search_noresults'] = "No templates were found containing the string '<strong>{1}</strong>'";
|
||||
$l['search_noresults_title'] = "No templates were found with the title '<strong>{1}</strong>'";
|
||||
$l['default_templates'] = "Default Templates";
|
||||
|
||||
$l['edit_template_breadcrumb'] = "Edit Template: ";
|
||||
|
||||
$l['global_templates'] = "Global Templates";
|
||||
$l['master_templates'] = "Master Templates";
|
||||
|
||||
$l['not_used_by_any_themes'] = "Not used by any themes";
|
||||
$l['used_by'] = "Used by: ";
|
||||
$l['used_by_all_themes'] = "Used by all themes";
|
||||
|
||||
$l['expand_templates'] = "Expand Templates";
|
||||
$l['edit_template_set'] = "Edit Template Set";
|
||||
$l['delete_template_set'] = "Delete Template Set";
|
||||
$l['empty_template_set'] = "<em>There are no templates in this set.</em>";
|
||||
|
||||
$l['inline_edit'] = "Inline Edit";
|
||||
$l['full_edit'] = "Full Edit";
|
||||
$l['revert_to_orig'] = "Revert to Original";
|
||||
$l['delete_template'] = "Delete Template";
|
||||
$l['edit_in'] = "Edit in";
|
||||
|
||||
$l['group_calendar'] = "Calendar";
|
||||
$l['group_forumdisplay'] = "Forum Display";
|
||||
$l['group_index'] = "Index Page";
|
||||
$l['group_error'] = "Error Message";
|
||||
$l['group_memberlist'] = "Member List";
|
||||
$l['group_multipage'] = "Multipage Pagination";
|
||||
$l['group_private'] = "Private Messaging";
|
||||
$l['group_portal'] = "Portal";
|
||||
$l['group_postbit'] = "Post Bit";
|
||||
$l['group_posticons'] = "Post Icon";
|
||||
$l['group_showthread'] = "Show Thread";
|
||||
$l['group_usercp'] = "User Control Panel";
|
||||
$l['group_online'] = "Who's Online";
|
||||
$l['group_forumbit'] = "Forum Bit";
|
||||
$l['group_editpost'] = "Edit Post";
|
||||
$l['group_forumjump'] = "Forum Jump";
|
||||
$l['group_moderation'] = "Moderation";
|
||||
$l['group_nav'] = "Navigation";
|
||||
$l['group_search'] = "Search";
|
||||
$l['group_showteam'] = "Show Forum Team";
|
||||
$l['group_reputation'] = "Reputation";
|
||||
$l['group_newthread'] = "New Thread";
|
||||
$l['group_newreply'] = "New Reply";
|
||||
$l['group_member'] = "Member";
|
||||
$l['group_warning'] = "Warning System";
|
||||
$l['group_global'] = "Global";
|
||||
$l['group_header'] = "Header";
|
||||
$l['group_managegroup'] = "Manage Group";
|
||||
$l['group_misc'] = "Miscellaneous";
|
||||
$l['group_modcp'] = "Moderator Control Panel";
|
||||
$l['group_announcement'] = "Announcement";
|
||||
$l['group_polls'] = "Poll";
|
||||
$l['group_post'] = "Post";
|
||||
$l['group_printthread'] = "Print Thread";
|
||||
$l['group_report'] = "Report";
|
||||
$l['group_smilieinsert'] = "Smilie Inserter";
|
||||
$l['group_stats'] = "Statistics";
|
||||
$l['group_xmlhttp'] = "XMLHTTP";
|
||||
$l['group_footer'] = "Footer";
|
||||
$l['group_video'] = "Video MyCode";
|
||||
$l['group_sendthread'] = "Send Thread";
|
||||
$l['group_mycode'] = "MyCode";
|
||||
|
||||
$l['expand'] = "Expand";
|
||||
$l['collapse'] = "Collapse";
|
||||
|
||||
$l['save_continue'] = "Save and Continue Editing";
|
||||
$l['save_close'] = "Save and Return to Listing";
|
||||
|
||||
$l['template_name'] = "Template Name";
|
||||
$l['template_name_desc'] = "Name of the template. If you change this on the default template, it will save the template as a custom template under the new name.";
|
||||
$l['template_set_desc'] = "Which template set should this template be in?";
|
||||
|
||||
$l['template_group_prefix'] = "Template Group Prefix";
|
||||
$l['template_group_prefix_desc'] = "The prefix name to group templates. This must not already exist. For example, to group templates <em>hello_world</em>, <em>hello_foobar</em> and <em>hello_foo</em>, enter <strong>hello</strong> here.";
|
||||
$l['template_group_title'] = "Template Group Title";
|
||||
$l['template_group_title_desc'] = "The title of the prefix group. This will be shown in the templates list. For example, for our <em>hello</em> templates, enter <strong>Hello</strong> here.";
|
||||
|
||||
$l['edit_template_group'] = "Edit Template Group";
|
||||
$l['editing_template_group'] = "Editing Template Group {1}";
|
||||
$l['delete_template_group'] = "Delete Template Group";
|
||||
$l['save_template_group'] = "Save Template Group";
|
||||
|
||||
$l['templates_the_same'] = "The two templates you've selected are both the same and cannot be compared.";
|
||||
$l['master_updated_ins'] = "Changes that have been made between your previous version and this one are highlighted like this.";
|
||||
$l['master_updated_del'] = "Any customizations you've made to your templates (the old ones) are highlighted like this.";
|
||||
$l['template_diff_analysis'] = "Template Difference Analysis";
|
||||
$l['search_names_header'] = "Searching template names containing \"{1}\"";
|
||||
|
||||
$l['updated_template_welcome1'] = "Edit - Allows you to edit the current template for this template set to incorporate updates made between the versions.";
|
||||
$l['updated_template_welcome2'] = "Revert - Will revert the customized template back to the master revision, however you'll lose any custom changes you have made.";
|
||||
$l['updated_template_welcome3'] = "Diff - Performs a difference analysis between the templates and shows you exactly what changes have been made between your customized copy and the latest master copy.";
|
||||
|
||||
$l['no_global_templates'] = "There are currently no global templates.";
|
||||
$l['no_updated_templates'] = "There are currently no templates which have been updated since you last upgraded.";
|
||||
|
||||
$l['confirm_template_set_deletion'] = "Are you sure you want to delete this template set?";
|
||||
$l['confirm_template_group_delete'] = "Are you sure you want to delete this template group? This action does not remove the templates in the group.";
|
||||
$l['confirm_template_deletion'] = "Are you sure you want to delete this template?";
|
||||
$l['confirm_template_revertion'] = "Are you sure you want to revert this template?";
|
||||
|
||||
$l['error_security_problem'] = "A potential security issue was found in the template. Please review your changes or contact the MyBB Group for support.";
|
||||
$l['error_missing_input'] = "Please make sure you have all the input required to edit this template (tid and sid)";
|
||||
$l['error_already_exists'] = "The template title is already in use. Please use a different title.";
|
||||
$l['error_invalid_template'] = "Please select a valid template.";
|
||||
$l['error_missing_set_title'] = "Please select a template set title.";
|
||||
$l['error_invalid_input'] = "Please make sure you have the correct template set ID.";
|
||||
$l['error_invalid_set'] = "Please select a valid template set.";
|
||||
$l['error_invalid_template_set'] = "Invalid template set selected.";
|
||||
$l['error_themes_attached_template_set'] = "This template set cannot be deleted as there are themes attached to this template set.";
|
||||
$l['error_missing_group_prefix'] = "Please enter a prefix for the template group.";
|
||||
$l['error_invalid_group_title'] = "As underscores (_) are used as delimiter those are forbidden in template group prefixes. Please select another prefix.";
|
||||
$l['error_missing_group_title'] = "Please enter a title for the template group.";
|
||||
$l['error_duplicate_group_prefix'] = "A template group already exists with this prefix. Please enter another prefix.";
|
||||
$l['error_missing_template_group'] = "The template group could not be found.";
|
||||
$l['error_default_template_group'] = "You cannot edit or remove a default template group.";
|
||||
|
||||
$l['success_template_saved'] = "The selected template has successfully been saved.";
|
||||
$l['success_template_deleted'] = "The selected template has successfully been deleted.";
|
||||
$l['success_template_reverted'] = "The selected template has successfully been reverted.";
|
||||
$l['success_template_set_saved'] = "The selected template set has successfully been saved.";
|
||||
$l['success_template_set_deleted'] = "The selected template set has successfully been deleted.";
|
||||
$l['success_template_group_saved'] = "The selected template group has successfully been saved.";
|
||||
$l['success_template_group_deleted'] = "The selected template group has successfully been deleted.";
|
||||
221
webroot/forum/inc/languages/english/admin/style_themes.lang.php
Normal file
221
webroot/forum/inc/languages/english/admin/style_themes.lang.php
Normal file
@@ -0,0 +1,221 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['themes'] = "Themes";
|
||||
$l['themes_desc'] = "Here you can manage the themes set up on your forum. Themes allow you to customize the appearance of your forum. A list of the themes currently set up are shown below.";
|
||||
|
||||
$l['create_new_theme'] = "Create New Theme";
|
||||
$l['create_new_theme_desc'] = "Here you can create a new theme based on the default. <strong>Template sets, stylesheets, and other settings are inherited from the parent theme.</strong>";
|
||||
|
||||
$l['import_a_theme'] = "Import a Theme";
|
||||
$l['import_a_theme_desc'] = "Here you can import new themes. You may import a theme from your computer, or a remote URL.";
|
||||
|
||||
$l['edit_stylesheets'] = "Edit Stylesheets";
|
||||
$l['edit_stylesheets_desc'] = "Here you can easily manage the stylesheets in use by this theme. Stylesheets are based on CSS and define the fonts, colors and other visual aspects for this theme. A list of stylesheets attached to this theme is below.";
|
||||
|
||||
$l['add_stylesheet'] = "Add Stylesheet";
|
||||
$l['add_stylesheet_desc'] = "Here you can add a new stylesheet to this theme. A stylesheet contains CSS that allows you to customize the appearance of this theme. You will be taken to the stylesheet edit page following creation.";
|
||||
|
||||
$l['browse_themes'] = "Browse Themes";
|
||||
$l['browse_themes_desc'] = "Here you may browse the official MyBB modifications site for themes compatible with your series of MyBB.";
|
||||
|
||||
$l['browse_all_themes'] = "Browse All Themes";
|
||||
|
||||
$l['export_theme'] = "Export Theme";
|
||||
$l['export_theme_desc'] = "Here you can export your themes and customized templates. Exporting themes is useful if you wish to share them with others or import them to another forum.";
|
||||
|
||||
$l['duplicate_theme'] = "Duplicate Theme";
|
||||
$l['duplicate_theme_desc'] = "Here you can duplicate your themes. This helps you if you want to develop another version of it.";
|
||||
|
||||
$l['colors_manage'] = "Manage Colors";
|
||||
$l['colors_attached_to'] = "color setting";
|
||||
$l['colors_setting'] = "Base Color";
|
||||
$l['colors_setting_desc'] = "Select the color this theme should use as its base color. Stylesheets attached to this color will be used.";
|
||||
$l['colors_no_color_setting'] = "There are no colors available. Please create a list of colors below to use this feature.";
|
||||
$l['colors_add'] = "Manage Colors";
|
||||
$l['colors_add_desc'] = "A list of colors available for this theme. This should be a list of key paired (key=item) colors, for example, <em>blue=Blue</em>. Separate items with a new line.";
|
||||
$l['colors_please_select'] = "None";
|
||||
$l['colors_add_edit_desc'] = "Select a color to attach this stylesheet to. You can select more than one color.";
|
||||
$l['colors_specific_color'] = "Specific color";
|
||||
|
||||
$l['include_custom_only'] = "Include customized items only?";
|
||||
$l['include_custom_only_desc'] = "If you wish to include items (css and stylesheets) inherited from parent themes select \"no\", otherwise only customized elements will be exported.";
|
||||
$l['include_templates'] = "Include templates in the export as well?";
|
||||
$l['include_templates_desc'] = "If you want to export the customized templates used in this theme as well, select yes.";
|
||||
|
||||
$l['edit_stylesheet_simple_mode'] = "Edit Stylesheet: Simple Mode";
|
||||
$l['edit_stylesheet_simple_mode_desc'] = "Here you can easily edit your theme's stylesheet. Simple mode allows you to customize the CSS in this stylesheet with little or no knowledge of CSS. Begin by selecting an item below.";
|
||||
$l['edit_stylesheet_advanced_mode'] = "Edit Stylesheet: Advanced Mode";
|
||||
$l['edit_stylesheet_advanced_mode_desc'] = "Here you can edit this stylesheet like a flat file. The contents of the CSS stylesheet is shown in the text area below.";
|
||||
|
||||
$l['theme'] = "Theme";
|
||||
$l['num_users'] = "# Users";
|
||||
$l['edit_theme'] = "Edit Theme";
|
||||
$l['delete_theme'] = "Delete Theme";
|
||||
$l['set_as_default'] = "Set as Default";
|
||||
$l['default_theme'] = "Default Theme";
|
||||
$l['force_on_users'] = "Force on Users";
|
||||
$l['delete_revert'] = "Delete / Revert";
|
||||
|
||||
$l['local_file'] = "Local File";
|
||||
$l['url'] = "URL";
|
||||
$l['import_from'] = "Import from";
|
||||
$l['import_from_desc'] = "Select a file to import. You can either import the theme file from your computer or from a URL.";
|
||||
$l['parent_theme'] = "Parent Theme";
|
||||
$l['parent_theme_desc'] = "Select the theme this theme should be a child of.";
|
||||
$l['new_name'] = "New Name";
|
||||
$l['new_name_desc'] = "A new name for the imported theme. If left blank, the name in the theme file will be used.";
|
||||
$l['advanced_options'] = "Advanced Options";
|
||||
$l['ignore_version_compatibility'] = "Ignore Version Compatibility";
|
||||
$l['ignore_version_compat_desc'] = "Should this theme be installed regardless of the version of MyBB it was created for?";
|
||||
$l['import_stylesheets'] = "Import Stylesheets";
|
||||
$l['import_stylesheets_desc'] = "If this theme contains custom stylesheets should they be imported?";
|
||||
$l['import_templates'] = "Import Templates";
|
||||
$l['import_templates_desc'] = "If this theme contains custom templates should they be imported?";
|
||||
$l['import_theme'] = "Import Theme";
|
||||
|
||||
$l['new_name_duplicate_desc'] = "A new name for the duplicated theme.";
|
||||
$l['duplicate_stylesheets'] = "Duplicate Stylesheets";
|
||||
$l['duplicate_stylesheets_desc'] = "If this theme contains custom stylesheets should they be duplicated?";
|
||||
$l['duplicate_templates'] = "Duplicate Templates";
|
||||
$l['duplicate_templates_desc'] = "If this theme contains custom templates should they be duplicated?";
|
||||
|
||||
$l['create_a_theme'] = "Create a Theme";
|
||||
$l['name'] = "Name";
|
||||
$l['name_desc'] = "Specify a name for the new theme.";
|
||||
$l['display_order'] = "Order";
|
||||
|
||||
$l['edit_theme_properties'] = "Edit Theme Properties";
|
||||
$l['name_desc_edit'] = "Specify a name for the theme.";
|
||||
$l['allowed_user_groups'] = "Allowed User Groups";
|
||||
$l['allowed_user_groups_desc'] = "Specify which user groups are allowed to use this theme. Selecting 'All User Groups' will override any other selection. Hold down the CTRL key to select multiple user groups.";
|
||||
$l['all_user_groups'] = "All User Groups";
|
||||
$l['template_set'] = "Template Set";
|
||||
$l['template_set_desc'] = "Specify the template set the theme should use. The selected template set defines the markup (HTML) used in presenting the theme.";
|
||||
$l['editor_theme'] = "Editor Style";
|
||||
$l['editor_theme_desc'] = "Specify the style to be used for the MyCode editor in this theme. Editor styles can be found in the <strong>jscripts/editor_themes</strong> folder.";
|
||||
$l['img_directory'] = "Image Directory";
|
||||
$l['img_directory_desc'] = "The root directory for the location of the images used in this theme. Note that this only specifies the directory for the images used in templates, not the stylesheets.";
|
||||
$l['logo'] = "Board Logo";
|
||||
$l['logo_desc'] = "Location of the board logo used in this theme (this is the logo that appears at the top of each page).";
|
||||
$l['table_spacing'] = "Table Spacing";
|
||||
$l['table_spacing_desc'] = "The width of the inner padding of table cells, in pixels. This is HTML's <em>cellpadding</em> attribute of the <em>table</em> tag.";
|
||||
$l['inner_border'] = "Inner Table Border Width";
|
||||
$l['inner_border_desc'] = "The amount of padding between each table cell, in pixels. This is HTML's <em>cellspacing</em> attribute of the <em>table</em> tag.";
|
||||
$l['save_theme_properties'] = "Save Theme Properties";
|
||||
$l['save_stylesheet_order'] = "Save Stylesheet Orders";
|
||||
|
||||
$l['background'] = "Background";
|
||||
$l['extra_css_atribs'] = "Extra CSS Attributes";
|
||||
$l['color'] = "Color";
|
||||
$l['width'] = "Width";
|
||||
$l['text_decoration'] = "Text Decoration";
|
||||
$l['font_family'] = "Font Family";
|
||||
$l['font_size'] = "Font Size";
|
||||
$l['font_style'] = "Font Style";
|
||||
$l['font_weight'] = "Font Weight";
|
||||
|
||||
$l['stylesheets'] = "Stylesheets";
|
||||
$l['inherited_from'] = "Inherited from";
|
||||
$l['attached_to'] = "Attached to";
|
||||
$l['attached_to_nothing'] = "Attached to nothing";
|
||||
$l['attached_to_desc'] = "You can either attach stylesheets globally or to specific files. If you attach it to specific files you can attach it to specific actions within each file.";
|
||||
$l['actions'] = "actions";
|
||||
$l['of'] = "of";
|
||||
$l['attached_to_all_pages'] = "Attached to all pages";
|
||||
$l['properties'] = "Properties";
|
||||
$l['edit_style'] = "Edit Style";
|
||||
$l['stylesheets_in'] = "Stylesheets in";
|
||||
$l['stylesheet_properties'] = "Stylesheet Properties";
|
||||
$l['stylesheet_inherited_default'] = "This stylesheet is currently being inherited from {1}. Any changes you make will break the inheritance, and the stylesheet will be copied to this theme.";
|
||||
$l['stylesheet_inherited'] = "This stylesheet is currently being inherited from {1}. Any changes you make will break the inheritance, and the stylesheet will be copied to this theme. Edit this stylesheet in {1} to keep the inheritance.";
|
||||
$l['globally'] = "Globally";
|
||||
$l['specific_files'] = "Specific files";
|
||||
$l['specific_actions'] = "Specific actions";
|
||||
$l['specific_actions_desc'] = "Actions are separated by commas";
|
||||
$l['file'] = "File";
|
||||
$l['add_another'] = "Add another";
|
||||
$l['edit_stylesheet_properties_for'] = "Edit Stylesheet Properties for";
|
||||
$l['file_name'] = "File Name";
|
||||
$l['file_name_desc'] = "Name for the stylesheet, usually ending in <strong>[.css]</strong>";
|
||||
$l['save_stylesheet_properties'] = "Save Stylesheet Properties";
|
||||
$l['saved'] = "Saved";
|
||||
$l['editing'] = "Editing";
|
||||
$l['selector'] = "Selector";
|
||||
$l['save_changes'] = "Save Changes";
|
||||
$l['save_changes_and_close'] = "Save Changes & Close";
|
||||
$l['save_changes_js'] = "Do you want to save your changes first?";
|
||||
$l['delete_confirm_js'] = "Are you sure you want to delete this?";
|
||||
$l['import_stylesheet_from'] = "Import from another stylesheet in this theme";
|
||||
$l['write_own'] = "Write my own content";
|
||||
$l['save_stylesheet'] = "Save Stylesheet";
|
||||
$l['add_stylesheet_to'] = "Add Stylesheet to";
|
||||
|
||||
$l['full_stylesheet_for'] = "Full Stylesheet for";
|
||||
|
||||
$l['recommended_themes_for_mybb'] = "Recommended Themes for MyBB {1}";
|
||||
$l['browse_results_for_mybb'] = "Browse Results for MyBB {1}";
|
||||
$l['search_for_themes'] = "Search for Themes";
|
||||
$l['search'] = "Search";
|
||||
$l['download'] = "Download";
|
||||
$l['created_by'] = "Created by";
|
||||
|
||||
$l['error_invalid_stylesheet'] = "You have selected an invalid stylesheet.";
|
||||
$l['error_invalid_theme'] = "You have selected an invalid theme.";
|
||||
$l['error_missing_name'] = "Please enter a name for this theme.";
|
||||
$l['error_missing_url'] = "Please enter a valid url to import a theme from.";
|
||||
$l['error_theme_already_exists'] = "A theme with the same name already exists. Please specify a different name.";
|
||||
$l['error_theme_security_problem'] = "A potential security issue was found in the theme. It was not imported. Please contact the Author or MyBB Group for support.";
|
||||
|
||||
$l['error_local_file'] = "Could not open the local file. Does it exist? Please check and try again.";
|
||||
$l['error_uploadfailed'] = "Upload failed. Please try again.";
|
||||
$l['error_uploadfailed_detail'] = "Error details: ";
|
||||
$l['error_uploadfailed_php1'] = "PHP returned: Uploaded file exceeded upload_max_filesize directive in php.ini. Please contact your forum administrator with this error.";
|
||||
$l['error_uploadfailed_php2'] = "The uploaded file exceeded the maximum file size specified.";
|
||||
$l['error_uploadfailed_php3'] = "The uploaded file was only partially uploaded.";
|
||||
$l['error_uploadfailed_php4'] = "No file was uploaded.";
|
||||
$l['error_uploadfailed_php6'] = "PHP returned: Missing a temporary folder. Please contact your forum administrator with this error.";
|
||||
$l['error_uploadfailed_php7'] = "PHP returned: Failed to write the file to disk. Please contact your forum administrator with this error.";
|
||||
$l['error_uploadfailed_phpx'] = "PHP returned error code: {1}. Please contact your forum administrator with this error.";
|
||||
$l['error_uploadfailed_lost'] = "The file could not be found on the server.";
|
||||
$l['error_uploadfailed_nocontents'] = "MyBB could not find the theme with the file you uploaded. Please check the file is the correct and is not corrupt.";
|
||||
$l['error_invalid_version'] = "This theme has been written for another version of MyBB. Please check the \"Ignore Version Compatibility\" to ignore this error.";
|
||||
$l['error_missing_stylesheet_name'] = "Please enter a name for this stylesheet.";
|
||||
$l['error_missing_stylesheet_extension'] = "This stylesheet must end with the correct file extension, for example, {1}<em>.css</em>";
|
||||
$l['error_invalid_parent_theme'] = "The selected parent theme does not exist. Please select a valid parent theme.";
|
||||
$l['error_invalid_templateset'] = "The selected template set does not exist. Please select a valid template set.";
|
||||
$l['error_invalid_color'] = "The defined color set \"{1}\" is either having invalid character(s) or not in prescribed format. Only alpha-numeric characters are allowed for naming separated by '='.";
|
||||
$l['error_invalid_editortheme'] = "The selected editor theme does not exist. Please select a valid editor theme.";
|
||||
$l['error_inheriting_stylesheets'] = "You cannot delete this theme because there are still other themes that are inheriting stylesheets from it.";
|
||||
$l['error_cannot_parse'] = "MyBB cannot parse this stylesheet for the simple editor. It can only be edited in advanced mode.";
|
||||
$l['error_communication_problem'] = "There was a problem communicating with the MyBB themes server. Please try again in a few minutes.";
|
||||
$l['error_no_results_found'] = "No results were found for the specified keyword(s).";
|
||||
$l['error_no_color_picked'] = "You didn't specify which colors to attach this stylesheet to.";
|
||||
$l['error_no_display_order'] = "There was an error finding the display orders for the stylesheets. Please refresh the page and try again.";
|
||||
|
||||
$l['success_duplicated_theme'] = "The selected theme has been duplicated successfully.";
|
||||
$l['success_imported_theme'] = "The selected theme has been imported successfully.";
|
||||
$l['success_theme_created'] = "The theme has been created successfully.";
|
||||
$l['success_theme_deleted'] = "The selected theme has been deleted successfully.";
|
||||
$l['success_stylesheet_properties_updated'] = "The properties for the selected stylesheet have been updated successfully.";
|
||||
$l['success_stylesheet_updated'] = "The selected stylesheet has been updated successfully.";
|
||||
$l['success_stylesheet_deleted'] = "The selected stylesheet has been deleted / reverted successfully.";
|
||||
$l['success_theme_set_default'] = "The selected theme is now the forum default.";
|
||||
$l['success_theme_forced'] = "All users have been forced to use the selected theme successfully.";
|
||||
$l['success_theme_properties_updated'] = "The properties for the select theme have been updated successfully.";
|
||||
$l['success_stylesheet_added'] = "The stylesheet for this theme has been created successfully.";
|
||||
$l['success_stylesheet_order_updated'] = "The display orders for the stylesheets have been updated successfully.";
|
||||
|
||||
$l['confirm_theme_deletion'] = "Are you sure you want to delete this theme?";
|
||||
$l['confirm_stylesheet_deletion'] = "Are you sure you want to delete / revert this stylesheet?";
|
||||
$l['confirm_theme_forced'] = "Are you sure you want to force this theme on all users? This may reset the theme's access level.";
|
||||
|
||||
$l['theme_info_fetch_error'] = 'There was an error fetching the style info.';
|
||||
$l['theme_info_save_error'] = 'There was an error saving the style info.';
|
||||
|
||||
$l['saving'] = 'Saving…';
|
||||
|
||||
@@ -0,0 +1,311 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
$l['admin_logs'] = "Administrator Logs";
|
||||
$l['admin_logs_desc'] = "Here you can view, prune, and search the actions administrators have taken in the control panel.";
|
||||
$l['prune_admin_logs'] = "Prune Administrator Logs";
|
||||
$l['prune_admin_logs_desc'] = "Here you can prune the administrator logs matching a specified criteria.";
|
||||
|
||||
$l['no_adminlogs'] = "There are no log entries with the selected criteria.";
|
||||
|
||||
$l['username'] = "Username";
|
||||
$l['date'] = "Date";
|
||||
$l['information'] = "Information";
|
||||
$l['ipaddress'] = "IP Address";
|
||||
|
||||
$l['filter_administrator_logs'] = "Filter Administrator Logs";
|
||||
$l['administrator'] = "Administrator:";
|
||||
$l['sort_by'] = "Sort By:";
|
||||
$l['results_per_page'] = "Results Per Page:";
|
||||
$l['all_administrators'] = "All Administrators";
|
||||
$l['all_modules'] = "All Modules";
|
||||
$l['older_than'] = "Older than ";
|
||||
$l['days'] = "days";
|
||||
|
||||
$l['prune_administrator_logs'] = "Prune Administrator Logs";
|
||||
$l['date_range'] = "Date range:";
|
||||
$l['module'] = "Module:";
|
||||
|
||||
$l['asc'] = "Ascending";
|
||||
$l['desc'] = "Descending";
|
||||
|
||||
$l['in'] = "in";
|
||||
$l['order'] = "order";
|
||||
|
||||
$l['success_pruned_admin_logs'] = "The administrator logs have been pruned successfully.";
|
||||
$l['note_logs_locked'] = "For security reasons, logs less than 24 hours old cannot be pruned.";
|
||||
|
||||
$l['admin_log_config_attachment_types_add'] = "Added attachment extension #{1} ({2})";
|
||||
$l['admin_log_config_attachment_types_edit'] = "Edited attachment extension #{1} ({2})";
|
||||
$l['admin_log_config_attachment_types_delete'] = "Deleted attachment extension #{1} ({2})";
|
||||
$l['admin_log_config_attachment_types_toggle_status'] = "Toggled attachment status #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_badwords_add'] = "Added word filter #{1} ({2})";
|
||||
$l['admin_log_config_badwords_edit'] = "Edited word filter #{1} ({2})";
|
||||
$l['admin_log_config_badwords_delete'] = "Deleted word filter #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_banning_add_ip'] = "Added IP ban #{1} ({2})";
|
||||
$l['admin_log_config_banning_add_username'] = "Added disallowed username #{1} ({2})";
|
||||
$l['admin_log_config_banning_add_email'] = "Added disallowed email #{1} ({2})";
|
||||
$l['admin_log_config_banning_delete_ip'] = "Removed IP ban #{1} ({2})";
|
||||
$l['admin_log_config_banning_delete_username'] = "Removed disallowed username #{1} ({2})";
|
||||
$l['admin_log_config_banning_delete_email'] = "Removed disallowed email #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_calendars_add'] = "Added calendar #{1} ({2})";
|
||||
$l['admin_log_config_calendars_permissions'] = "Modified permissions for calendar #{1} ({2})";
|
||||
$l['admin_log_config_calendars_edit'] = "Edited calendar #{1} ({2})";
|
||||
$l['admin_log_config_calendars_delete'] = "Deleted calendar #{1} ({2})";
|
||||
$l['admin_log_config_calendars_update_order'] = "Updated calendar display order";
|
||||
|
||||
$l['admin_log_config_help_documents_add_section'] = "Added help section #{1} ({2})";
|
||||
$l['admin_log_config_help_documents_add_document'] = "Added help document #{1} ({2})";
|
||||
$l['admin_log_config_help_documents_edit_section'] = "Edited help section #{1} ({2})";
|
||||
$l['admin_log_config_help_documents_edit_document'] = "Edited help document #{1} ({2})";
|
||||
$l['admin_log_config_help_documents_delete_section'] = "Deleted help section #{1} ({2})";
|
||||
$l['admin_log_config_help_documents_delete_document'] = "Deleted help document #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_languages_edit_properties'] = "Edited properties for language pack: {1}";
|
||||
$l['admin_log_config_languages_edit'] = "Edited {2} in language pack: {1}";
|
||||
$l['admin_log_config_languages_edit_admin'] = "Edited admin/{2} in language pack: {1}";
|
||||
$l['admin_log_config_languages_quick_phrases'] = "Edited quick phrases in language pack: {1}";
|
||||
|
||||
$l['admin_log_config_mod_tools_delete_post_tool'] = "Deleted post moderation tool #{1} ({2})";
|
||||
$l['admin_log_config_mod_tools_delete_thread_tool'] = "Deleted thread moderation tool #{1} ({2})";
|
||||
$l['admin_log_config_mod_tools_edit_post_tool'] = "Edited post moderation tool #{1} ({2})";
|
||||
$l['admin_log_config_mod_tools_edit_thread_tool'] = "Edited thread moderation tool #{1} ({2})";
|
||||
$l['admin_log_config_mod_tools_add_post_tool'] = "Added post moderation tool #{1} ({2})";
|
||||
$l['admin_log_config_mod_tools_add_thread_tool'] = "Added thread moderation tool #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_mycode_toggle_status_enabled'] = "Enabled custom MyCode #{1} ({2})";
|
||||
$l['admin_log_config_mycode_toggle_status_disabled'] = "Disabled custom MyCode #{1} ({2})";
|
||||
$l['admin_log_config_mycode_add'] = "Added custom MyCode #{1} ({2})";
|
||||
$l['admin_log_config_mycode_edit'] = "Edited custom MyCode #{1} ({2})";
|
||||
$l['admin_log_config_mycode_delete'] = "Deleted custom MyCode #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_plugins_activate'] = "Activated plugin: {1}";
|
||||
$l['admin_log_config_plugins_activate_install'] = "Activated and installed plugin: {1}";
|
||||
$l['admin_log_config_plugins_deactivate'] = "Deactivated plugin: {1}";
|
||||
$l['admin_log_config_plugins_deactivate_uninstall'] = "Deactivated and uninstalled plugin: {1}";
|
||||
|
||||
$l['admin_log_config_post_icons_add'] = "Added post icon #{1} ({2})";
|
||||
$l['admin_log_config_post_icons_add_multiple'] = "Added multiple post icons";
|
||||
$l['admin_log_config_post_icons_edit'] = "Edited post icon #{1} ({2})";
|
||||
$l['admin_log_config_post_icons_delete'] = "Deleted post icon #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_profile_fields_add'] = "Added custom profile field #{1} ({2})";
|
||||
$l['admin_log_config_profile_fields_edit'] = "Edited custom profile field #{1} ({2})";
|
||||
$l['admin_log_config_profile_fields_delete'] = "Deleted custom profile field #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_questions_add'] = "Added question #{1} ({2})";
|
||||
$l['admin_log_config_questions_edit'] = "Edited question #{1} ({2})";
|
||||
$l['admin_log_config_questions_delete'] = "Deleted question #{1} ({2})";
|
||||
$l['admin_log_config_questions_enable'] = "Enabled question #{1} ({2})";
|
||||
$l['admin_log_config_questions_disable'] = "Disabled question #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_report_reasons_add'] = "Added report reason #{1} ({2})";
|
||||
$l['admin_log_config_report_reasons_edit'] = "Edited report reason #{1} ({2})";
|
||||
$l['admin_log_config_report_reasons_delete'] = "Deleted report reason #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_settings_delete_duplicates'] = "Deleted duplicate settings and setting groups";
|
||||
$l['admin_log_config_settings_addgroup'] = "Added setting group #{1} ({2}) properties ";
|
||||
$l['admin_log_config_settings_editgroup'] = "Edited setting group #{1} ({2}) properties ";
|
||||
$l['admin_log_config_settings_deletegroup'] = "Deleted setting group #{1} ({2})";
|
||||
$l['admin_log_config_settings_add'] = "Added setting #{1} ({2}) properties ";
|
||||
$l['admin_log_config_settings_edit'] = "Edited setting #{1} ({2}) properties ";
|
||||
$l['admin_log_config_settings_delete'] = "Deleted setting #{1} ({2})";
|
||||
$l['admin_log_config_settings_manage'] = "Updated setting and setting group orders";
|
||||
$l['admin_log_config_settings_change'] = "Changed board settings";
|
||||
|
||||
$l['admin_log_config_smilies_add'] = "Added smilie #{1} ({2})";
|
||||
$l['admin_log_config_smilies_edit'] = "Edited smilie #{1} ({2})";
|
||||
$l['admin_log_config_smilies_delete'] = "Deleted smilie #{1} ({2})";
|
||||
$l['admin_log_config_smilies_add_multiple'] = "Added multiple smilies";
|
||||
$l['admin_log_config_smilies_mass_edit'] = "Edited multiple smilies";
|
||||
|
||||
$l['admin_log_config_spiders_add'] = "Added spider #{1} ({2})";
|
||||
$l['admin_log_config_spiders_edit'] = "Edited spider #{1} ({2})";
|
||||
$l['admin_log_config_spiders_delete'] = "Deleted spider #{1} ({2})";
|
||||
|
||||
$l['admin_log_config_thread_prefixes_add_prefix'] = 'Added thread prefix #{1} ({2})';
|
||||
$l['admin_log_config_thread_prefixes_edit_prefix'] = 'Edited thread prefix #{1} ({2})';
|
||||
$l['admin_log_config_thread_prefixes_delete_prefix'] = 'Deleted thread prefix #{1} ({2})';
|
||||
|
||||
$l['admin_log_config_warning_add_level'] = "Added warning level #{1} at {2}%";
|
||||
$l['admin_log_config_warning_edit_level'] = "Edited warning level #{1} at {2}%";
|
||||
$l['admin_log_config_warning_delete_level'] = "Deleted warning level #{1} at {2}%";
|
||||
$l['admin_log_config_warning_add_type'] = "Added warning type #{1} ({2})";
|
||||
$l['admin_log_config_warning_edit_type'] = "Edited warning type #{1} ({2})";
|
||||
$l['admin_log_config_warning_delete_type'] = "Deleted warning type #{1} ({2})";
|
||||
|
||||
$l['admin_log_forum_announcements_add'] = "Added announcement #{1} ({2})";
|
||||
$l['admin_log_forum_announcements_edit'] = "Edited announcement #{1} ({2})";
|
||||
$l['admin_log_forum_announcements_delete'] = "Deleted announcement #{1} ({2})";
|
||||
|
||||
$l['admin_log_forum_attachments_delete_post'] = "Deleted attachment #{1} ({2}) from post #{3}";
|
||||
$l['admin_log_forum_attachments_delete'] = "Deleted attachment #{1} ({2})";
|
||||
$l['admin_log_forum_attachments_delete_orphans'] = "Deleted orphaned attachments";
|
||||
|
||||
$l['admin_log_forum_management_copy'] = "Copied settings from forum #{1} ({2}) to forum #{3} ({4})";
|
||||
$l['admin_log_forum_management_copy_with_permissions'] = "Copied settings and group permissions for usergroups #{5} from forum #{1} ({2}) to forum #{3} ({4})";
|
||||
$l['admin_log_forum_management_editmod'] = "Edited moderator #{3} ({4}) on forum #{1} ({2})";
|
||||
$l['admin_log_forum_management_permissions'] = "Edited group permissions for forum #{1} ({2})";
|
||||
$l['admin_log_forum_management_add'] = "Added forum #{1} ({2})";
|
||||
$l['admin_log_forum_management_edit'] = "Edited forum #{1} ({2})";
|
||||
$l['admin_log_forum_management_deletemod'] = "Deleted moderator #{1} ({2}) from forum #{3} ({4})";
|
||||
$l['admin_log_forum_management_delete'] = "Deleted forum #{1} ({2})";
|
||||
$l['admin_log_forum_management_orders'] = "Updated root forum orders";
|
||||
$l['admin_log_forum_management_orders_sub'] = "Updated forum orders within forum #{2} ({3})";
|
||||
$l['admin_log_forum_management_addmod'] = "Added moderator #{2} ({3}) to forum #{4} ({5})";
|
||||
$l['admin_log_forum_management_quickpermissions'] = "Updated quick forum permissions for forum #{2} ({3})";
|
||||
|
||||
$l['admin_log_forum_moderation_queue_threads'] = "Moderated unapproved threads";
|
||||
$l['admin_log_forum_moderation_queue_posts'] = "Moderated unapproved posts";
|
||||
$l['admin_log_forum_moderation_queue_attachments'] = "Moderated unapproved attachments";
|
||||
|
||||
$l['admin_log_home_preferences_enabled'] = "Enabled Two-Factor Authentication";
|
||||
$l['admin_log_home_preferences_disabled'] = "Disabled Two-Factor Authentication";
|
||||
|
||||
$l['admin_log_style_templates_delete_set'] = "Deleted template set #{1} ({2})";
|
||||
$l['admin_log_style_templates_delete_template'] = "Deleted template #{1} ({2}) from template set #{3} ({4})";
|
||||
$l['admin_log_style_templates_delete_template_global'] = "Deleted template #{1} ({2}) from the global template set";
|
||||
$l['admin_log_style_templates_add_set'] = "Added template set #{1} ({2})";
|
||||
$l['admin_log_style_templates_add_template'] = "Added template #{1} ({2}) from template set #{3} ({4})";
|
||||
$l['admin_log_style_templates_edit_set'] = "Edited template set #{1} ({2})";
|
||||
$l['admin_log_style_templates_edit_template'] = "Edited template #{1} ({2}) from template set #{3} ({4})";
|
||||
$l['admin_log_style_templates_edit_template_global'] = "Edited template #{1} ({2}) from the global template set";
|
||||
$l['admin_log_style_templates_search_replace'] = "Searched templates for '{1}' and replaced with '{2}'";
|
||||
$l['admin_log_style_templates_revert'] = "Reverted template #{1} ({2}) in template set #{3} ({4})";
|
||||
$l['admin_log_style_templates_add_template_group'] = "Added template group #{1} ({2})";
|
||||
$l['admin_log_style_templates_edit_template_group'] = "Edited template group #{1} ({2})";
|
||||
$l['admin_log_style_templates_delete_template_group'] = "Deleted template group #{1} ({2})";
|
||||
|
||||
$l['admin_log_style_themes_import'] = "Imported theme #{1}";
|
||||
$l['admin_log_style_themes_duplicate'] = "Duplicated theme #{2} to #{1}";
|
||||
$l['admin_log_style_themes_add'] = "Created theme #{2} ({1})";
|
||||
$l['admin_log_style_themes_edit_stylesheet'] = "Edited stylesheet {2} in {1}";
|
||||
$l['admin_log_style_themes_delete_stylesheet'] = "Deleted / Reverted stylesheet #{1} ({2}) in theme #{3} ({4})";
|
||||
$l['admin_log_style_themes_force'] = "Forced theme #{1} ({2}) on all users";
|
||||
$l['admin_log_style_themes_set_default'] = "Set theme #{1} ({2}) as default";
|
||||
$l['admin_log_style_themes_add_stylesheet'] = "Added stylesheet #{1} ({2}) in theme #{3} ({4})";
|
||||
$l['admin_log_style_themes_stylesheet_properties'] = "Edited the properties for stylesheet #{1} ({2}) in theme #{3} ({4})";
|
||||
$l['admin_log_style_themes_edit'] = "Edited theme #{1} ({2})";
|
||||
$l['admin_log_style_themes_delete'] = "Deleted theme #{1} ({2})";
|
||||
$l['admin_log_style_themes_export'] = "Exported theme #{1} ({2})";
|
||||
|
||||
$l['admin_log_tools_system_health_utf8_conversion'] = "Converted table {1} to UTF-8 Character Set.";
|
||||
|
||||
$l['admin_log_tools_adminlog_prune'] = "Pruned {4} administrator logs older than {1} days";
|
||||
$l['admin_log_tools_adminlog_prune_user'] = "Pruned {4} administrator logs older than {1} days for user #{2}";
|
||||
$l['admin_log_tools_adminlog_prune_module'] = "Pruned {4} administrator logs older than {1} days for module {3}";
|
||||
$l['admin_log_tools_adminlog_prune_user_module'] = "Pruned {4} administrator logs older than {1} days for user #{2} and module {3}";
|
||||
|
||||
$l['admin_log_tools_modlog_prune'] = "Pruned {4} moderator logs older than {1} days";
|
||||
$l['admin_log_tools_modlog_prune_user'] = "Pruned {4} moderator logs older than {1} days for user #{2}";
|
||||
$l['admin_log_tools_modlog_prune_forum'] = "Pruned {4} moderator logs older than {1} days for forum #{3} ({5})";
|
||||
$l['admin_log_tools_modlog_prune_user_forum'] = "Pruned {4} moderator logs older than {1} days for user #{2} and forum #{3} ({5})";
|
||||
|
||||
$l['admin_log_tools_backupdb_dlbackup'] = "Downloaded an existing backup: {1}";
|
||||
$l['admin_log_tools_backupdb_delete'] = "Deleted a backup: {1}";
|
||||
$l['admin_log_tools_backupdb_backup'] = "Created a backup: {2}";
|
||||
$l['admin_log_tools_backupdb_backup_download'] = "Downloaded a backup of the current database";
|
||||
|
||||
$l['admin_log_tools_cache_rebuild'] = "Rebuilt cache ({1})";
|
||||
$l['admin_log_tools_cache_reload'] = "Reload cache ({1})";
|
||||
$l['admin_log_tools_cache_rebuild_all'] = "Rebuilt & reloaded all caches";
|
||||
|
||||
$l['admin_log_tools_index_utf8_conversion'] = "Converted table {1} to UTF-8";
|
||||
|
||||
$l['admin_log_tools_mailerrors_prune'] = "Pruned {1} email error logs";
|
||||
|
||||
$l['admin_log_tools_maillogs_prune'] = "Pruned {1} email logs";
|
||||
|
||||
$l['admin_log_tools_optimizedb_'] = "Optimized database tables: {1}";
|
||||
|
||||
$l['admin_log_tools_php_info_phpinfo'] = "Viewed PHP Info";
|
||||
|
||||
$l['admin_log_tools_recount_rebuild_'] = "Recounted and rebuilt ({1})";
|
||||
$l['admin_log_tools_recount_rebuild_stats'] = "Recounted and rebuilt statistics";
|
||||
$l['admin_log_tools_recount_rebuild_forum'] = "Recounted and rebuilt forum counters";
|
||||
$l['admin_log_tools_recount_rebuild_thread'] = "Recounted and rebuilt thread counters";
|
||||
$l['admin_log_tools_recount_rebuild_poll'] = "Recounted and rebuilt poll votes";
|
||||
$l['admin_log_tools_recount_rebuild_userposts'] = "Recounted and rebuilt user post counts";
|
||||
$l['admin_log_tools_recount_rebuild_userthreads'] = "Recounted and rebuilt user thread counts";
|
||||
$l['admin_log_tools_recount_rebuild_attachmentthumbs'] = "Recounted and rebuilt attachment thumbnails";
|
||||
$l['admin_log_tools_recount_rebuild_reputation'] = "Recounted and rebuilt user reputation";
|
||||
$l['admin_log_tools_recount_rebuild_warning'] = "Recounted and rebuilt warning points";
|
||||
$l['admin_log_tools_recount_rebuild_privatemessages'] = "Recounted and rebuilt private messages";
|
||||
$l['admin_log_tools_recount_rebuild_referral'] = "Recounted and rebuilt user referral count";
|
||||
$l['admin_log_tools_recount_rebuild_threadrating'] = "Recounted and rebuilt thread ratings";
|
||||
|
||||
$l['admin_log_tools_spamlog_prune'] = "Pruned {4} spam logs older than {1} days";
|
||||
$l['admin_log_tools_spamlog_prune_user'] = "Pruned {4} spam logs older than {1} days with username {2}";
|
||||
$l['admin_log_tools_spamlog_prune_email'] = "Pruned {4} spam logs older than {1} days with email {3}";
|
||||
$l['admin_log_tools_spamlog_prune_user_email'] = "Pruned {4} spam logs older than {1} days with username {2} and email {3}";
|
||||
|
||||
$l['admin_log_tools_tasks_add'] = "Added task #{1} ({2})";
|
||||
$l['admin_log_tools_tasks_edit'] = "Edited task #{1} ({2})";
|
||||
$l['admin_log_tools_tasks_delete'] = "Deleted task #{1} ({2})";
|
||||
$l['admin_log_tools_tasks_enable'] = "Enabled task #{1} ({2})";
|
||||
$l['admin_log_tools_tasks_disable'] = "Disabled task #{1} ({2})";
|
||||
$l['admin_log_tools_tasks_run'] = "Executed task #{1} ({2})";
|
||||
|
||||
$l['admin_log_user_awaiting_activation_activate_activated'] = "Activated {2} user account(s)";
|
||||
$l['admin_log_user_awaiting_activation_activate_deleted'] = "Deleted {2} user account(s)";
|
||||
|
||||
$l['admin_log_user_admin_permissions_delete_user'] = "Deleted administrator permissions for user #{1} ({2})";
|
||||
$l['admin_log_user_admin_permissions_delete_group'] = "Deleted group administrator permissions for usergroup #{1} ({2})";
|
||||
$l['admin_log_user_admin_permissions_edit_user'] = "Edited administrator permissions for user #{1} ({2})";
|
||||
$l['admin_log_user_admin_permissions_edit_group'] = "Edited group administrator permissions for usergroup #{1} ({2})";
|
||||
$l['admin_log_user_admin_permissions_edit'] = "Edited default administrator permissions";
|
||||
|
||||
$l['admin_log_user_banning_lift'] = "Lifted ban for user #{1} ({2})";
|
||||
$l['admin_log_user_banning_edit'] = "Edited ban for user #{1} ({2})";
|
||||
$l['admin_log_user_banning_prune'] = "Pruned posts and threads for user #{1} ({2})";
|
||||
$l['admin_log_user_banning_add_permanent'] = "Banned user #{1} ({2}) permanently";
|
||||
$l['admin_log_user_banning_add_temporary'] = "Banned user #{1} ({2}) until {3}";
|
||||
|
||||
$l['admin_log_user_group_promotions_disable'] = "Disabled group promotion #{1} ({2})";
|
||||
$l['admin_log_user_group_promotions_delete'] = "Deleted group promotion #{1} ({2})";
|
||||
$l['admin_log_user_group_promotions_enable'] = "Enabled group promotion #{1} ({2})";
|
||||
$l['admin_log_user_group_promotions_edit'] = "Edited group promotion #{1} ({2})";
|
||||
$l['admin_log_user_group_promotions_add'] = "Added group promotion #{1} ({2})";
|
||||
|
||||
$l['admin_log_user_groups_add_leader'] = "Added user #{1} ({2}) as a leader for usergroup #{3} ({4})";
|
||||
$l['admin_log_user_groups_delete_leader'] = "Removed user #{1} ({2}) as a leader for usergroup #{3} ({4})";
|
||||
$l['admin_log_user_groups_edit_leader'] = "Edited user #{1} ({2}) as a leader for usergroup #{3} ({4})";
|
||||
$l['admin_log_user_groups_add'] = "Added usergroup #{1} ({2})";
|
||||
$l['admin_log_user_groups_edit'] = "Edited usergroup #{1} ({2})";
|
||||
$l['admin_log_user_groups_delete'] = "Deleted usergroup #{1} ({2})";
|
||||
$l['admin_log_user_groups_disporder'] = "Updated usergroup display orders";
|
||||
$l['admin_log_user_groups_join_requests_approve'] = "Approved selected join requests for usergroup #{3} ({2})";
|
||||
$l['admin_log_user_groups_join_requests_deny'] = "Denied selected join requests for usergroup #{3} ({2})";
|
||||
|
||||
$l['admin_log_user_titles_add'] = "Added default user title #{1} ({2}) at {3} posts";
|
||||
$l['admin_log_user_titles_edit'] = "Edited default user title #{1} ({2}) at {3} posts";
|
||||
$l['admin_log_user_titles_delete'] = "Deleted default user title #{1} ({2}) at {3} posts";
|
||||
|
||||
$l['admin_log_user_users_avatar_gallery'] = "Selected a new avatar for user #{1} ({2})";
|
||||
$l['admin_log_user_users_activate_user'] = "Activated user #{1} ({2})";
|
||||
$l['admin_log_user_users_add'] = "Created user #{1} ({2})";
|
||||
$l['admin_log_user_users_edit'] = "Edited user #{1} ({2})";
|
||||
$l['admin_log_user_users_delete'] = "Deleted user #{1} ({2})";
|
||||
$l['admin_log_user_users_ipaddresses'] = "Viewed IP addresses associated with user #{1} ({2})";
|
||||
$l['admin_log_user_users_merge'] = "Merged user #{1} ({2}) into user #{3} ({4})";
|
||||
|
||||
$l['admin_log_user_users_inline_usergroup'] = "Edited {1} user(s) primary / additional / display usergroup";
|
||||
$l['admin_log_user_users_inline_delete'] = "Deleted {1} user(s)";
|
||||
$l['admin_log_user_users_inline_banned_perm'] = "Banned {1} user(s) permanently";
|
||||
$l['admin_log_user_users_inline_banned_temp'] = "Banned {1} user(s) until {2}";
|
||||
$l['admin_log_user_users_inline_activated'] = "Activated {1} user(s)";
|
||||
$l['admin_log_user_users_inline_lift'] = "Lifted {1} user(s) bans";
|
||||
|
||||
$l['admin_log_user_mass_mail_delete'] = "Deleted mass mail #{1} ({2})";
|
||||
|
||||
$l['admin_log_admin_locked_out'] = 'Administrator login attempt for user #{1} ({2}) locked out.';
|
||||
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
$l['database_backups'] = "Database Backups";
|
||||
$l['database_backups_desc'] = "Here you find a listing of the database backups that are currently stored on your web server in the MyBB Backups directory.";
|
||||
$l['new_database_backup'] = "New Database Backup";
|
||||
$l['new_backup'] = "New Backup";
|
||||
$l['new_backup_desc'] = "Here you can backup a copy of your database.";
|
||||
$l['backups'] = "Backups";
|
||||
$l['existing_database_backups'] = "Existing Database Backups";
|
||||
|
||||
$l['backup_saved_to'] = "The backup was saved to:";
|
||||
$l['download'] = "Download";
|
||||
$l['table_selection'] = "Table Selection";
|
||||
$l['backup_options'] = "Backup Options";
|
||||
$l['table_select_desc'] = "You may select the database tables you wish to perform this action on here. Hold down CTRL to select multiple tables.";
|
||||
$l['select_all'] = "Select All";
|
||||
$l['deselect_all'] = "Deselect All";
|
||||
$l['select_forum_tables'] = "Select Forum Tables";
|
||||
$l['file_type'] = "File Type";
|
||||
$l['file_type_desc'] = "Select the file type you would like the database backup saved as.";
|
||||
$l['gzip_compressed'] = "GZIP Compressed";
|
||||
$l['plain_text'] = "Plain Text";
|
||||
$l['save_method'] = "Save Method";
|
||||
$l['save_method_desc'] = "Select the method you would like to use to save the backup.";
|
||||
$l['backup_directory'] = "Backup Directory";
|
||||
$l['backup_contents'] = "Backup Contents";
|
||||
$l['backup_contents_desc'] = "Select the information that you would like included in the backup.";
|
||||
$l['structure_and_data'] = "Structure and Data";
|
||||
$l['structure_only'] = "Structure Only";
|
||||
$l['data_only'] = "Data only";
|
||||
$l['analyze_and_optimize'] = "Analyze and Optimize Selected Tables";
|
||||
$l['analyze_and_optimize_desc'] = "Would you like the selected tables to be analyzed and optimized during the backup?";
|
||||
$l['perform_backup'] = "Perform Backup";
|
||||
$l['backup_filename'] = "Backup Filename";
|
||||
$l['file_size'] = "File Size";
|
||||
$l['creation_date'] = "Creation Date";
|
||||
$l['no_backups'] = "There are currently no backups made yet.";
|
||||
|
||||
$l['error_file_not_specified'] = "You did not specify a database backup to download.";
|
||||
$l['error_invalid_backup'] = "The back up file you selected is either invalid or does not exist.";
|
||||
$l['error_backup_doesnt_exist'] = "The specified backup does not exist";
|
||||
$l['error_backup_not_deleted'] = "The backup has not been deleted.";
|
||||
$l['error_tables_not_selected'] = "You did not select any tables to backup.";
|
||||
$l['error_no_zlib'] = "The zlib library for PHP is not enabled - you cannot create GZIP compressed backups.";
|
||||
|
||||
$l['alert_not_writable'] = "Your backups directory (within the Admin CP directory) is not writable. You cannot save backups on the server.";
|
||||
|
||||
$l['confirm_backup_deletion'] = "Are you sure you wish to delete this backup?";
|
||||
|
||||
$l['success_backup_deleted'] = "The backup has been deleted successfully.";
|
||||
$l['success_backup_created'] = "The backup has been created successfully.";
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['cache'] = "Cache:";
|
||||
$l['cache_manager'] = "Cache Manager";
|
||||
$l['cache_manager_description'] = "Here you can manage caches which are used as a method of optimizing MyBB. Rebuilding a cache will take all the necessary data used to create the cache and re-synchronize it. Reloading a cache will reload it into the selected cache handler (disk, eaccelerator, memcache, etc). Reloading is useful when switching from the database or file system to xcache, eaccelerator, or another cache handler.";
|
||||
$l['rebuild_cache'] = "Rebuild Cache";
|
||||
$l['reload_cache'] = "Reload Cache";
|
||||
$l['rebuild_reload_all'] = "(Rebuild & Reload All)";
|
||||
|
||||
$l['error_cannot_rebuild'] = "This cache cannot be rebuilt.";
|
||||
$l['error_empty_cache'] = "Cache is empty.";
|
||||
$l['error_incorrect_cache'] = "Incorrect cache specified.";
|
||||
$l['error_no_cache_specified'] = "You did not specify a cache to view.";
|
||||
|
||||
$l['success_cache_rebuilt'] = "The cache has been rebuilt successfully.";
|
||||
$l['success_cache_reloaded'] = "The cache has been reloaded successfully.";
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['file_verification'] = "File Verification";
|
||||
$l['checking'] = "Checking…";
|
||||
$l['file_verification_message'] = "This process will check all MyBB default files to check for validity. Press Yes to continue.<br /> <small>Please note, this process can not differentiate between custom modifications and actual corruption in files. Therefore you should take caution in reverting files this process returns as \"corrupt\".</small>";
|
||||
|
||||
$l['error_communication'] = "There was a problem communicating with the MyBB server. Please try again in a few minutes.";
|
||||
$l['file'] = "File";
|
||||
$l['no_corrupt_files_found'] = "Congratulations! No corrupt files have been found on your installation.";
|
||||
$l['found_problems'] = "Found Problems";
|
||||
$l['no_problems_found'] = "No Problems Detected";
|
||||
$l['changed'] = "Changed";
|
||||
$l['missing'] = "Missing";
|
||||
$l['status'] = "Status";
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['system_email_log'] = "System Email Log";
|
||||
$l['system_email_log_desc'] = "Any emails which were generated by MyBB and returned an error when being sent are logged by MyBB and are shown below. This section is particularly useful for identifying SMTP configuration issues or for identifying mail support on your server.";
|
||||
$l['prune_system_email_log'] = "Prune System Email Log";
|
||||
$l['filter_system_email_log'] = "Filter System Email Log";
|
||||
|
||||
$l['close_window'] = "Close Window";
|
||||
$l['user_email_log_viewer'] = "User Email Log Viewer";
|
||||
$l['smtp_code'] = "SMTP Code:";
|
||||
$l['smtp_server_response'] = "SMTP Server Response:";
|
||||
$l['to'] = "To";
|
||||
$l['from'] = "From";
|
||||
$l['subject'] = "Subject";
|
||||
$l['date'] = "Date";
|
||||
$l['email'] = "Email";
|
||||
$l['date_sent'] = "Date Sent";
|
||||
$l['error_message'] = "Error Message";
|
||||
$l['fine'] = "Find";
|
||||
$l['no_logs'] = "There are no log entries with the selected criteria.";
|
||||
$l['subject_contains'] = "Subject contains";
|
||||
$l['error_message_contains'] = "Error Message contains";
|
||||
$l['to_address_contains'] = "To Address contains";
|
||||
$l['from_address_contains'] = "From Address contains";
|
||||
$l['find_emails_to_addr'] = "Find all emails sent to this address";
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['user_email_log'] = "User Email Log";
|
||||
$l['user_email_log_desc'] = "All emails sent from one member to another member as well as emails sent by the 'Send Thread to a Friend' feature are logged and shown below. Here you can identify potential abusers of this function.";
|
||||
$l['prune_user_email_log'] = "Prune User Email Log";
|
||||
|
||||
$l['close_window'] = "Close Window";
|
||||
$l['user_email_log_viewer'] = "User Email Log Viewer";
|
||||
$l['to'] = "To";
|
||||
$l['from'] = "From";
|
||||
$l['ip_address'] = "IP Address";
|
||||
$l['subject'] = "Subject";
|
||||
$l['date'] = "Date";
|
||||
$l['email'] = "Email";
|
||||
$l['date_sent'] = "Date Sent";
|
||||
$l['deleted'] = "Deleted";
|
||||
$l['sent_using_send_thread_feature'] = "Sent using the Send Thread to Friend feature";
|
||||
$l['thread'] = "Thread:";
|
||||
$l['find_emails_by_user'] = "Find all emails sent by this user";
|
||||
$l['find'] = "Find";
|
||||
$l['deleted_user'] = "Deleted User";
|
||||
$l['email_sent_to_user'] = "Email sent to user";
|
||||
$l['email_sent_using_contact_form'] = "Email sent using the contact form";
|
||||
$l['no_logs'] = "There are no log entries with the selected criteria.";
|
||||
$l['filter_user_email_log'] = "Filter User Email Log";
|
||||
$l['username_is'] = "Username is";
|
||||
$l['email_contains'] = "Email Address contains";
|
||||
$l['subject_contains'] = "Subject contains";
|
||||
$l['find_emails_to_user'] = "Find all emails sent to this user";
|
||||
|
||||
$l['error_invalid_user'] = "The username you entered does not exist.";
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
$l['mod_logs'] = "Moderator Logs";
|
||||
$l['mod_logs_desc'] = "Here you can view, prune, and search the moderator logs. These logs contain the actions any user may take (deletion of their own posts/threads) and all other actions by moderators.";
|
||||
$l['prune_mod_logs'] = "Prune Moderator Logs";
|
||||
$l['prune_mod_logs_desc'] = "Here you can prune the moderator logs matching a specified criteria.";
|
||||
|
||||
$l['no_modlogs'] = "There are no log entries with the selected criteria.";
|
||||
|
||||
$l['username'] = "Username";
|
||||
$l['na_deleted'] = "N/A - Been Deleted";
|
||||
$l['date'] = "Date";
|
||||
$l['action'] = "Action";
|
||||
$l['information'] = "Information";
|
||||
$l['ipaddress'] = "IP Address";
|
||||
|
||||
$l['forum'] = "Forum:";
|
||||
$l['thread'] = "Thread:";
|
||||
$l['post'] = "Post:";
|
||||
$l['user_info'] = "User:";
|
||||
$l['announcement'] = "Announcement:";
|
||||
|
||||
$l['filter_moderator_logs'] = "Filter Moderator Logs";
|
||||
$l['forum_moderator'] = "Forum Moderator:";
|
||||
$l['sort_by'] = "Sort By:";
|
||||
$l['results_per_page'] = "Results Per Page:";
|
||||
$l['all_moderators'] = "All Moderators";
|
||||
$l['older_than'] = "Older than ";
|
||||
|
||||
$l['forum_name'] = "Forum Name";
|
||||
$l['thread_subject'] = "Thread Subject";
|
||||
|
||||
$l['asc'] = "Ascending";
|
||||
$l['desc'] = "Descending";
|
||||
|
||||
$l['in'] = "in";
|
||||
$l['order'] = "order";
|
||||
$l['days'] = "days";
|
||||
|
||||
$l['prune_moderator_logs'] = "Prune Moderator Logs";
|
||||
$l['date_range'] = "Date range:";
|
||||
|
||||
$l['success_pruned_mod_logs'] = "The moderator logs have been pruned successfully.";
|
||||
$l['note_logs_locked'] = "For security reasons, logs less than 24 hours old cannot be pruned.";
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['tools_and_maintenance'] = "Tools & Maintenance";
|
||||
|
||||
$l['maintenance'] = "Maintenance";
|
||||
$l['logs'] = "Logs";
|
||||
|
||||
$l['system_health'] = "System Health";
|
||||
$l['cache_manager'] = "Cache Manager";
|
||||
$l['task_manager'] = "Task Manager";
|
||||
$l['recount_and_rebuild'] = "Recount & Rebuild";
|
||||
$l['view_php_info'] = "View PHP Info";
|
||||
$l['database_backups'] = "Database Backups";
|
||||
$l['optimize_database'] = "Optimize Database";
|
||||
$l['file_verification'] = "File Verification";
|
||||
|
||||
$l['administrator_log'] = "Administrator Log";
|
||||
$l['moderator_log'] = "Moderator Log";
|
||||
$l['user_email_log'] = "User Email Log";
|
||||
$l['system_mail_log'] = "System Mail Log";
|
||||
$l['user_warning_log'] = "User Warning Log";
|
||||
$l['spam_log'] = "Spam Log";
|
||||
$l['statistics'] = "Statistics";
|
||||
|
||||
$l['can_access_system_health'] = "Can access system health?";
|
||||
$l['can_manage_cache'] = "Can manage cache?";
|
||||
$l['can_manage_tasks'] = "Can manage scheduled tasks?";
|
||||
$l['can_manage_db_backup'] = "Can manage backup database?";
|
||||
$l['can_optimize_db'] = "Can optimize database?";
|
||||
$l['can_recount_and_rebuild'] = "Can recount and rebuild?";
|
||||
$l['can_manage_admin_logs'] = "Can manage administrator log?";
|
||||
$l['can_manage_mod_logs'] = "Can manage moderator log?";
|
||||
$l['can_manage_user_mail_log'] = "Can manage user mail Log?";
|
||||
$l['can_manage_system_mail_log'] = "Can manage system mail log?";
|
||||
$l['can_manage_user_warning_log'] = "Can manage user warning logs?";
|
||||
$l['can_manage_spam_log'] = "Can manage spam logs?";
|
||||
$l['can_view_php_info'] = "Can view PHP info?";
|
||||
$l['can_manage_file_verification'] = "Can manage file verification?";
|
||||
$l['can_view_statistics'] = "Can view statistics?";
|
||||
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['optimize_database'] = "Optimize Database";
|
||||
|
||||
$l['table_selection'] = "Table Selection";
|
||||
$l['tables_select_desc'] = "You may select the database tables you wish to perform this action on here. Hold down CTRL to select multiple tables.";
|
||||
$l['select_all'] = "Select All";
|
||||
$l['deselect_all'] = "Deselect All";
|
||||
$l['select_forum_tables'] = "Select Forum Tables";
|
||||
$l['optimize_selected_tables'] = "Optimize Selected Tables";
|
||||
|
||||
$l['error_no_tables_selected'] = "You did not select any database tables to optimize.";
|
||||
|
||||
$l['success_tables_optimized'] = "The selected tables have been optimized and analyzed successfully.";
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['php_info'] = "PHP Info";
|
||||
$l['browser_no_iframe_support'] = "Your browser does not support iFrames.";
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['recount_rebuild'] = "Recount & Rebuild";
|
||||
$l['recount_rebuild_desc'] = "Here you can recount & rebuild data to fix any synchronization errors in your forum.";
|
||||
|
||||
$l['data_per_page'] = "Data Entries Per Page";
|
||||
$l['recount_stats'] = "Recount Statistics";
|
||||
$l['recount_stats_desc'] = "This will recount and update your forum statistics on the forum index and statistics pages.";
|
||||
$l['recount_reputation'] = "Recount Reputation";
|
||||
$l['recount_reputation_desc'] = "This will recount the reputation of each user.";
|
||||
$l['recount_warning'] = "Recount Warning Points";
|
||||
$l['recount_warning_desc'] = "This will recount the active warning points of each user.";
|
||||
$l['recount_private_messages'] = "Recount Private Messages";
|
||||
$l['recount_private_messages_desc'] = "This will recount the private message count for each user.";
|
||||
$l['recount_referrals'] = "Recount Referrals";
|
||||
$l['recount_referrals_desc'] = "This will recount the referral count of each user.";
|
||||
$l['recount_thread_ratings'] = "Recount Thread Ratings";
|
||||
$l['recount_thread_ratings_desc'] = "This will recount the rating of each thread.";
|
||||
$l['rebuild_forum_counters'] = "Rebuild Forum Counters";
|
||||
$l['rebuild_forum_counters_desc'] = "When this is run, the post/thread counters and last post of each forum will be updated to reflect the correct values.";
|
||||
$l['rebuild_thread_counters'] = "Rebuild Thread Counters";
|
||||
$l['rebuild_thread_counters_desc'] = "When this is run, the post/view counters and last post of each thread will be updated to reflect the correct values.";
|
||||
$l['rebuild_poll_counters'] = "Rebuild Poll Counters";
|
||||
$l['rebuild_poll_counters_desc'] = "When this is run, the vote counters and total number of votes of each poll will be updated to reflect the correct values.";
|
||||
$l['recount_user_posts'] = "Recount User Post Counts";
|
||||
$l['recount_user_posts_desc'] = "When this is run, the post count for each user will be updated to reflect its current live value based on the posts in the database, and forums that have post count disabled.";
|
||||
$l['recount_user_threads'] = "Recount User Thread Counts";
|
||||
$l['recount_user_threads_desc'] = "When this is run, the thread count for each user will be updated to reflect its current live value based on the threads in the database, and forums that have thread count disabled.";
|
||||
$l['rebuild_attachment_thumbs'] = "Rebuild Attachment Thumbnails";
|
||||
$l['rebuild_attachment_thumbs_desc'] = "This will rebuild attachment thumbnails to ensure they're using the current width and height dimensions and will also rebuild missing thumbnails.";
|
||||
|
||||
$l['success_rebuilt_forum_counters'] = "The forum counters have been rebuilt successfully.";
|
||||
$l['success_rebuilt_thread_counters'] = "The thread counters have been rebuilt successfully.";
|
||||
$l['success_rebuilt_poll_counters'] = "The poll counters have been rebuilt successfully.";
|
||||
$l['success_rebuilt_user_post_counters'] = "The user posts count have been recounted successfully.";
|
||||
$l['success_rebuilt_user_thread_counters'] = "The user threads count have been recounted successfully.";
|
||||
$l['success_rebuilt_attachment_thumbnails'] = "The attachment thumbnails have been rebuilt successfully.";
|
||||
$l['success_rebuilt_forum_stats'] = "The forum statistics have been rebuilt successfully.";
|
||||
$l['success_rebuilt_reputation'] = "The user reputation has been rebuilt successfully.";
|
||||
$l['success_rebuilt_warning'] = "The user warning points have been rebuilt successfully.";
|
||||
$l['success_rebuilt_private_messages'] = "The user private message count has been recounted successfully.";
|
||||
$l['success_rebuilt_referral'] = "The user referral count have been recounted successfully.";
|
||||
$l['success_rebuilt_thread_ratings'] = "The thread ratings have been recounted successfully.";
|
||||
|
||||
$l['confirm_proceed_rebuild'] = "Click \"Proceed\" to continue the recount and rebuild process.";
|
||||
$l['automatically_redirecting'] = "Automatically Redirecting…";
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*/
|
||||
|
||||
|
||||
$l['spam_logs'] = 'Spam Logs';
|
||||
$l['spam_logs_desc'] = 'This section allows you to view a history of users blocked by the spam filters.';
|
||||
$l['prune_spam_logs'] = 'Prune Spam Logs';
|
||||
$l['prune_spam_logs_desc'] = 'Here you can prune the spam logs matching a specified criteria.';
|
||||
$l['spam_username'] = 'Username';
|
||||
$l['spam_email'] = 'Email Address';
|
||||
$l['spam_ip'] = 'IP Address';
|
||||
$l['spam_date'] = 'Date';
|
||||
$l['spam_confidence'] = 'Confidence';
|
||||
$l['no_spam_logs'] = 'No users have been blocked by the spam filters yet.';
|
||||
$l['success_pruned_spam_logs'] = 'The spam logs have been pruned successfully.';
|
||||
$l['note_logs_locked'] = 'For security reasons, logs less than 24 hours old cannot be pruned.';
|
||||
$l['all_usernames'] = 'All usernames';
|
||||
$l['all_emails'] = ' All Email Addresses';
|
||||
$l['date_range'] = "Date range:";
|
||||
$l['days'] = "days";
|
||||
$l['filter_spam_logs'] = 'Filter Spam Logs';
|
||||
$l['asc'] = "Ascending";
|
||||
$l['desc'] = "Descending";
|
||||
$l['search_ip_on_sfs'] = "Search this IP on Stop Forum Spam";
|
||||
$l['search'] = "Search";
|
||||
|
||||
$l['in'] = "in";
|
||||
$l['order'] = "order";
|
||||
$l['sort_by'] = "Sort By";
|
||||
$l['results_per_page'] = "Results Per Page";
|
||||
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['statistics'] = "Statistics";
|
||||
$l['overall_statistics'] = "Overall Statistics";
|
||||
$l['overall_statistics_desc'] = "Here you can view overall statistics on your forum. All times are in UTC.";
|
||||
|
||||
$l['date_range'] = "Date Range";
|
||||
|
||||
$l['date'] = "Date";
|
||||
$l['users'] = "Users";
|
||||
$l['threads'] = "Threads";
|
||||
$l['posts'] = "Posts";
|
||||
|
||||
$l['from'] = "From";
|
||||
$l['to'] = "to";
|
||||
|
||||
$l['increase'] = "Increase";
|
||||
$l['no_change'] = "No Change";
|
||||
$l['decrease'] = "Decrease";
|
||||
|
||||
$l['error_no_results_found_for_criteria'] = "We could not find any results for the date range you provided. Please try a different date range.";
|
||||
$l['error_no_statistics_available_yet'] = "We're sorry, there are currently no statistics data available for your forum yet.";
|
||||
@@ -0,0 +1,90 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['system_health'] = "System Health";
|
||||
$l['system_health_desc'] = "Here you can view information on your system's health.";
|
||||
$l['utf8_conversion'] = "UTF-8 Conversion";
|
||||
$l['utf8_conversion_desc'] = "You are currently converting a database table to the UTF-8 format. Be aware that this process may take up to several hours depending on the size of your forum and this table. When the process is complete, you will be returned to the UTF-8 Conversion main page.";
|
||||
$l['utf8_conversion_desc2'] = "This tool checks the database tables to make sure they are in the UTF-8 format and allows you to convert them if they are not.";
|
||||
|
||||
$l['convert_all'] = "Convert All";
|
||||
$l['converting_to_utf8'] = "MyBB is currently converting \"{1}\" table to UTF-8 language encoding from {2} encoding.";
|
||||
$l['convert_to_utf8'] = "You are about to convert the \"{1}\" table to UTF-8 language encoding from {2} encoding.";
|
||||
$l['convert_all_to_utf'] = "You are about to convert ALL tables to UTF-8 language encoding from {1} encoding.";
|
||||
$l['convert_all_to_utf8mb4'] = "You are about to convert ALL tables to 4-Byte UTF-8 Unicode language encoding from {1} encoding.";
|
||||
$l['converting_to_utf8mb4'] = "MyBB is currently converting \"{1}\" table to 4-Byte UTF-8 Unicode language encoding from {2} encoding.";
|
||||
$l['please_wait'] = "Please wait…";
|
||||
$l['converting_table'] = "Converting Table:";
|
||||
$l['convert_table'] = "Convert Table";
|
||||
$l['convert_tables'] = "Convert All Tables";
|
||||
$l['convert_database_table'] = "Convert Database Table";
|
||||
$l['convert_database_tables'] = "Convert All Database Tables";
|
||||
$l['table'] = "Table";
|
||||
$l['status_utf8'] = "UTF-8 Status";
|
||||
$l['status_utf8mb4'] = "4-Byte UTF-8 Support<br />(requires MySQL 5.5.3 or above)";
|
||||
$l['not_available'] = "Not available";
|
||||
$l['all_tables'] = "All Tables";
|
||||
$l['convert_now'] = "Convert Now";
|
||||
$l['totals'] = "Totals";
|
||||
$l['attachments'] = "Attachments";
|
||||
$l['total_database_size'] = "Total Database Size";
|
||||
$l['attachment_space_used'] = "Attachment Space used";
|
||||
$l['total_cache_size'] = "Total Cache Size";
|
||||
$l['estimated_attachment_bandwidth_usage'] = "Estimated Attachment Bandwidth Usage";
|
||||
$l['max_upload_post_size'] = "Max Upload / POST Size";
|
||||
$l['average_attachment_size'] = "Average Attachment Size";
|
||||
$l['stats'] = "Stats";
|
||||
$l['task'] = "Task";
|
||||
$l['run_time'] = "Run Time";
|
||||
$l['next_3_tasks'] = "Next 3 Tasks";
|
||||
$l['no_tasks'] = "There are no tasks running at this time.";
|
||||
$l['backup_time'] = "Backup Time";
|
||||
$l['no_backups'] = "There are currently no backups made yet.";
|
||||
$l['existing_db_backups'] = "Existing Database Backups";
|
||||
$l['writable'] = "Writable";
|
||||
$l['not_writable'] = "Not Writable";
|
||||
$l['please_chmod_777'] = "Please CHMOD to 777.";
|
||||
$l['chmod_info'] = "Please change the CHMOD settings to the ones specified with the file below. For more information on CHMODing, see the";
|
||||
$l['file'] = "File";
|
||||
$l['location'] = "Location";
|
||||
$l['settings_file'] = "Settings File";
|
||||
$l['config_file'] = "Configuration File";
|
||||
$l['file_upload_dir'] = "File Uploads Directory";
|
||||
$l['avatar_upload_dir'] = "Avatar Uploads Directory";
|
||||
$l['language_files'] = "Language Files";
|
||||
$l['backup_dir'] = "Backups Directory";
|
||||
$l['cache_dir'] = "Cache Directory";
|
||||
$l['themes_dir'] = "Themes Directory";
|
||||
$l['chmod_files_and_dirs'] = "CHMOD Files and Directories";
|
||||
|
||||
$l['notice_process_long_time'] = "This process may take up to several hours depending on the size of your forum and this table. <strong>It is highly recommend to create a database backup as this process can't be undone.</strong>";
|
||||
$l['notice_mb4_warning'] = "4-Byte UTF-8 Support requires MySQL 5.5.3 or above. You will not be able to import your database on a MySQL server with another version.";
|
||||
|
||||
$l['check_templates'] = "Check Templates";
|
||||
$l['check_templates_desc'] = "Checks all installed templates for known security issues.";
|
||||
$l['check_templates_title'] = "Check Template Security";
|
||||
$l['check_templates_info'] = "This process will check your templates against security issues that could affect your forum and the server it runs on. This might take a while if you've installed many themes.
|
||||
<br /><br />To start the process, press the 'Proceed' button below.";
|
||||
$l['check_templates_info_desc'] = "The templates below matched known security issues. Please review them.";
|
||||
$l['full_edit'] = "Full Edit";
|
||||
|
||||
$l['error_chmod'] = "of the required files and directories do not have proper CHMOD settings.";
|
||||
$l['error_invalid_table'] = "The specified table does not exist.";
|
||||
$l['error_db_encoding_not_set'] = "Your current setup of MyBB is not setup to use this tool yet. Please see the <a href=\"https://docs.mybb.com/1.8/administration/utf-8-setup/\">MyBB Docs</a> for more information on how to set it up.";
|
||||
$l['error_not_supported'] = "Your current Database Engine is not supported by the UTF-8 Conversion Tool.";
|
||||
$l['error_invalid_input'] = "There was a problem checking the templates. Please try again or contact the MyBB Group for support.";
|
||||
$l['error_master_templates_altered'] = "The Master Templates have been altered. Please contact the MyBB Group for support on how to alter these.";
|
||||
$l['error_utf8mb4_version'] = "Your MySQL version doesn't support 4-Byte UTF-8 encoding.";
|
||||
|
||||
|
||||
$l['warning_multiple_encodings'] = "It is recommend not to use different encodings in your database. This may cause unexpected behavior or MySQL errors.";
|
||||
$l['warning_utf8mb4_config'] = "For full 4-Byte UTF-8 support you need to change <i>\$config['database']['encoding'] = 'utf8';</i> to <i>\$config['database']['encoding'] = 'utf8mb4';</i> in your inc/config.php.";
|
||||
|
||||
$l['success_templates_checked'] = "Templates checked successfully - no security issues were found!";
|
||||
$l['success_all_tables_already_converted'] = "All tables have already been converted or are already in UTF-8 format.";
|
||||
$l['success_table_converted'] = "The selected table \"{1}\" has been converted to UTF-8 successfully.";
|
||||
$l['success_chmod'] = "All of the required files and directories have the proper CHMOD settings.";
|
||||
@@ -0,0 +1,76 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['task_manager'] = "Task Manager";
|
||||
$l['add_new_task'] = "Add New Task";
|
||||
$l['add_new_task_desc'] = "Here you can create new scheduled tasks which are automatically run on your board.";
|
||||
$l['edit_task'] = "Edit Task";
|
||||
$l['edit_task_desc'] = "Below you can edit the various settings for this scheduled task.";
|
||||
$l['task_logs'] = "Task Logs";
|
||||
$l['view_task_logs'] = "View Task Logs";
|
||||
$l['view_task_logs_desc'] = "When a task is run and logging is enabled, any results or errors will be listed below. Entries older than 30 days are automatically deleted.";
|
||||
$l['scheduled_tasks'] = "Scheduled Tasks";
|
||||
$l['scheduled_tasks_desc'] = "Here you can manage tasks which are automatically run on your board. To run a task now click the icon to the right of the task.";
|
||||
|
||||
$l['title'] = "Title";
|
||||
$l['short_description'] = "Short Description";
|
||||
$l['task_file'] = "Task File";
|
||||
$l['task_file_desc'] = "Select the task file you wish this task to run.";
|
||||
$l['time_minutes'] = "Time: Minutes";
|
||||
$l['time_minutes_desc'] = "Enter a comma separated list of minutes (0-59) for which this task should run on. Enter '*' if this task should run on every minute.";
|
||||
$l['time_hours'] = "Time: Hours";
|
||||
$l['time_hours_desc'] = "Enter a comma separated list of hours (0-23) for which this task should run on. Enter '*' if this task should run on every hour.";
|
||||
$l['time_days_of_month'] = "Time: Days of Month";
|
||||
$l['time_days_of_month_desc'] = "Enter a comma separated list of days (1-31) for which this task should run on. Enter '*' if this task should run on every day or you wish to specify a weekday below.";
|
||||
$l['every_weekday'] = "Every Weekday";
|
||||
$l['sunday'] = "Sunday";
|
||||
$l['monday'] = "Monday";
|
||||
$l['tuesday'] = "Tuesday";
|
||||
$l['wednesday'] = "Wednesday";
|
||||
$l['thursday'] = "Thursday";
|
||||
$l['friday'] = "Friday";
|
||||
$l['saturday'] = "Saturday";
|
||||
$l['time_weekdays'] = "Time: Weekdays";
|
||||
$l['time_weekdays_desc'] = "Select which weekdays this task should run on. Holding down CTRL selects multiple weekdays. Select 'Every weekday' if you want this task to run each weekday or you have entered a predefined day above.";
|
||||
$l['every_month'] = "Every Month";
|
||||
$l['time_months'] = "Time: Months";
|
||||
$l['time_months_desc'] = "Select which months this task should run on. Holding down CTRL selects multiple months. Select 'Every month' if you want this task to run each month.";
|
||||
$l['enabled'] = "Task enabled?";
|
||||
$l['enable_logging'] = "Enable Logging?";
|
||||
$l['save_task'] = "Save Task";
|
||||
$l['task'] = "Task";
|
||||
$l['date'] = "Date";
|
||||
$l['data'] = "Data";
|
||||
$l['no_task_logs'] = "There are currently no log entries for any of the scheduled tasks.";
|
||||
$l['next_run'] = "Next Run";
|
||||
$l['run_task_now'] = "Run this task now";
|
||||
$l['disable_task'] = "Disable Task";
|
||||
$l['run_task'] = "Run Task";
|
||||
$l['enable_task'] = "Enable Task";
|
||||
$l['delete_task'] = "Delete Task";
|
||||
|
||||
$l['error_invalid_task'] = "The specified task does not exist.";
|
||||
$l['error_missing_title'] = "You did not enter a title for this scheduled task";
|
||||
$l['error_missing_description'] = "You did not enter a description for this scheduled task";
|
||||
$l['error_invalid_task_file'] = "The task file you selected does not exist.";
|
||||
$l['error_invalid_minute'] = "The minute you've entered is invalid.";
|
||||
$l['error_invalid_hour'] = "The hour you've entered is invalid.";
|
||||
$l['error_invalid_day'] = "The day you've entered is invalid.";
|
||||
$l['error_invalid_weekday'] = "The weekday you've selected is invalid.";
|
||||
$l['error_invalid_month'] = "The month you've selected is invalid.";
|
||||
|
||||
$l['success_task_created'] = "The task has been created successfully.";
|
||||
$l['success_task_updated'] = "The selected task has been updated successfully.";
|
||||
$l['success_task_deleted'] = "The selected task has been deleted successfully.";
|
||||
$l['success_task_enabled'] = "The selected task has been enabled successfully.";
|
||||
$l['success_task_disabled'] = "The selected task has been disabled successfully.";
|
||||
$l['success_task_run'] = "The selected task has been run successfully.";
|
||||
|
||||
$l['confirm_task_deletion'] = "Are you sure you wish to delete this scheduled task?";
|
||||
$l['confirm_task_enable'] = "<strong>WARNING:</strong> You are about to enable a task that is only meant to be run via cron (Please see the <a href=\"https://docs.mybb.com/1.8/administration/task-manager\" target=\"_blank\" rel=\"noopener\">MyBB Docs</a> for more information). Continue?";
|
||||
$l['no_tasks'] = "There are no tasks on your forum at this time.";
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
$l['warning_logs'] = "Warning Logs";
|
||||
$l['warning_logs_desc'] = "This section allows you to view a history of warnings issued to users.";
|
||||
$l['warned_user'] = "Warned User";
|
||||
$l['warning'] = "Warning";
|
||||
$l['date_issued'] = "Date Issued";
|
||||
$l['expires'] = "Expires";
|
||||
$l['expiry_date'] = "Expiry Date";
|
||||
$l['issued_date'] = "Issued Date";
|
||||
$l['issued_by'] = "Issued By";
|
||||
$l['details'] = "Details";
|
||||
$l['filter_warning_logs'] = "Filter Warning Logs";
|
||||
$l['filter_warned_user'] = "Warned user:";
|
||||
$l['filter_issued_by'] = "Warning issued by:";
|
||||
$l['filter_reason'] = "Reason contains:";
|
||||
$l['sort_by'] = "Sort By:";
|
||||
$l['results_per_page'] = "Results Per Page:";
|
||||
$l['view'] = "View";
|
||||
$l['no_warning_logs'] = "There are no warning logs to view.";
|
||||
$l['revoked'] = "Revoked ";
|
||||
$l['post'] = "Post";
|
||||
|
||||
$l['asc'] = "Ascending";
|
||||
$l['desc'] = "Descending";
|
||||
|
||||
$l['in'] = "in";
|
||||
$l['order'] = "order";
|
||||
|
||||
$l['warning_details'] = "Warning Details";
|
||||
$l['warning_note'] = "Administrative Notes";
|
||||
$l['already_expired'] = "Expired";
|
||||
$l['warning_revoked'] = "Revoked";
|
||||
$l['warning_active'] = "Active";
|
||||
$l['error_invalid_warning'] = "An invalid warning was specified.";
|
||||
|
||||
$l['revoke_warning'] = "Revoke this Warning";
|
||||
$l['revoke_warning_desc'] = "To revoke this warning please enter a reason below. This will not remove any bans or suspensions imposed by this warning.";
|
||||
$l['reason'] = "Reason:";
|
||||
$l['warning_is_revoked'] = "This warning has been revoked";
|
||||
$l['revoked_by'] = "Revoked by:";
|
||||
$l['date_revoked'] = "Date Revoked:";
|
||||
$l['error_already_revoked'] = "This warning has already been revoked.";
|
||||
$l['error_no_revoke_reason'] = "You did not enter a reason as to why you want to revoke this warning.";
|
||||
$l['redirect_warning_revoked'] = "This warning has been revoked and the users warning points decreased successfully.";
|
||||
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['admin_permissions'] = "Admin Permissions";
|
||||
$l['user_permissions'] = "User Permissions";
|
||||
$l['user_permissions_desc'] = "Here you can manage the administrator permissions for individual users. This effectively allows you to lock certain administrators out of different areas of the Admin CP.";
|
||||
$l['group_permissions'] = "Group Permissions";
|
||||
$l['group_permissions_desc'] = "Administrator permissions can also be applied to user groups that have permission to access the Admin CP. Similarly you can use this tool to lock out entire administrative groups from accessing the different areas of the Admin CP.";
|
||||
$l['default_permissions'] = "Default Permissions";
|
||||
$l['default_permissions_desc'] = "The default administrative permissions are those applied to users who do not have custom administrator permissions set for them or are not inheriting group administrator permissions.";
|
||||
|
||||
$l['admin_permissions_updated'] = "The admin permissions have been updated successfully.";
|
||||
$l['revoke_permissions'] = "Revoke Permissions";
|
||||
$l['edit_permissions'] = "Edit Permissions";
|
||||
$l['set_permissions'] = "Set Permissions";
|
||||
$l['edit_permissions_desc'] = "Here you can restrict access to entire tabs or individual pages. Be aware that the \"Home\" tab is accessible to all administrators.";
|
||||
$l['update_permissions'] = "Update Permissions";
|
||||
$l['view_log'] = "View Log";
|
||||
$l['permissions_type_group'] = "Permission type of the group";
|
||||
$l['permissions_type_user'] = "Permission type of the user";
|
||||
$l['no_group_perms'] = "There are currently no set group permissions.";
|
||||
$l['no_user_perms'] = "There are currently no set user permissions.";
|
||||
$l['edit_user'] = "Edit User Profile";
|
||||
$l['using_individual_perms'] = "Using Individual Permissions";
|
||||
$l['using_custom_perms'] = "Using Custom Permissions";
|
||||
$l['using_group_perms'] = "Using Group Permissions";
|
||||
$l['using_default_perms'] = "Using Default Permissions";
|
||||
$l['last_active'] = "Last Active";
|
||||
$l['user'] = "User";
|
||||
$l['edit_group'] = "Edit Group";
|
||||
$l['default'] = "Default";
|
||||
$l['group'] = "Group";
|
||||
|
||||
$l['error_super_admin'] = 'Sorry, but you cannot perform this action on the specified user as they are a super administrator.';
|
||||
$l['error_delete_no_uid'] = 'You did not enter a admin user/usergroup permission id';
|
||||
$l['error_delete_invalid_uid'] = 'You did not enter a valid admin user/usergroup permission id';
|
||||
|
||||
$l['success_perms_deleted'] = 'The admin user/usergroup permissions has been revoked successfully.';
|
||||
|
||||
$l['confirm_perms_deletion'] = "Are you sure you wish to revoked this admin user/usergroup permissions?";
|
||||
$l['confirm_perms_deletion2'] = "Are you sure you wish to revoke this user\'s permissions?";
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['awaiting_activation'] = "Awaiting Activation";
|
||||
$l['awaiting_activation_desc'] = "Here you can manage users who are awaiting activation. Please note any user who is awaiting email activation will not need to confirm their email if they are activated here.";
|
||||
|
||||
$l['manage_awaiting_activation'] = "Manage Awaiting Activation";
|
||||
|
||||
$l['no_users_awaiting_activation'] = "There are currently no users awaiting activation.";
|
||||
|
||||
$l['username'] = "Username";
|
||||
$l['registered'] = "Registered";
|
||||
$l['last_active'] = "Last Active";
|
||||
$l['email'] = "Email";
|
||||
$l['ipaddress'] = "IP Address";
|
||||
$l['type'] = "Type";
|
||||
|
||||
$l['email_activation'] = "Awaiting Email Activation";
|
||||
$l['administrator_activation'] = "Awaiting Administrator Activation";
|
||||
$l['admin_activation_coppa'] = "Awaiting Administrator Activation (COPPA)";
|
||||
|
||||
$l['activate_users'] = "Activate Users";
|
||||
$l['delete_users'] = "Delete Users";
|
||||
|
||||
$l['confirm_activate_users'] = "Are you sure you want to activate the selected users?";
|
||||
$l['confirm_delete_users'] = "Are you sure you want to delete the selected users?";
|
||||
|
||||
$l['no_users_selected'] = "You did not select any users.";
|
||||
|
||||
$l['success_users_deleted'] = "The selected user(s) have been deleted.";
|
||||
$l['success_users_activated'] = "The selected user(s) have been activated.";
|
||||
|
||||
$l['emailsubject_activateaccount'] = "Account Activation at {1}";
|
||||
$l['email_adminactivateaccount'] = "{1},
|
||||
|
||||
The administrator has activated your forum account on {2}.
|
||||
|
||||
To proceed, please go to
|
||||
|
||||
{3}
|
||||
|
||||
You will be able to login with the credentials you registered with.
|
||||
|
||||
Thank you,
|
||||
{2} Staff";
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
// Tabs
|
||||
$l['banning'] = "Banning";
|
||||
$l['banned_accounts'] = "Banned Accounts";
|
||||
$l['banned_accounts_desc'] = "Here you can manage user accounts which are banned from access to the board.";
|
||||
$l['ban_a_user'] = "Ban a User";
|
||||
$l['ban_a_user_desc'] = "Here you can ban a user.";
|
||||
$l['edit_ban'] = "Edit Ban";
|
||||
$l['edit_ban_desc'] = "Here you can edit the reason and length of currently banned users.";
|
||||
$l['banned_ips'] = "Banned IPs";
|
||||
$l['disallowed_usernames'] = "Disallowed Usernames";
|
||||
$l['disallowed_email_addresses'] = "Disallowed Email Addresses";
|
||||
|
||||
// Errors
|
||||
$l['error_invalid_ban'] = "You have selected an invalid ban to edit.";
|
||||
$l['error_invalid_username'] = "The username you have entered is invalid and does not exist.";
|
||||
$l['error_no_perm_to_ban'] = "You do not have permission to ban this user.";
|
||||
$l['error_already_banned'] = "This user already belongs to a banned group and cannot be added to a new one.";
|
||||
$l['error_ban_self'] = "You cannot ban yourself.";
|
||||
$l['error_no_reason'] = "You did not enter a reason to ban this user.";
|
||||
|
||||
// Success
|
||||
$l['success_ban_lifted'] = "The selected ban has been lifted successfully.";
|
||||
$l['success_banned'] = "The selected user has been banned successfully.";
|
||||
$l['success_ban_updated'] = "The selected ban has been updated successfully.";
|
||||
$l['success_pruned'] = "The selected user's posts and threads have been pruned successfully.";
|
||||
|
||||
// Confirm
|
||||
$l['confirm_lift_ban'] = "Are you sure you want to lift this ban?";
|
||||
$l['confirm_prune'] = "Are you sure you want to prune all threads and posts created by this user?";
|
||||
|
||||
//== Pages
|
||||
//= Add / Edit
|
||||
$l['ban_username'] = "Username <em>*</em>";
|
||||
$l['autocomplete_enabled'] = "Auto-complete is enabled in this field.";
|
||||
$l['ban_reason'] = "Ban Reason";
|
||||
$l['ban_group'] = "Banned Group <em>*</em>";
|
||||
$l['ban_group_desc'] = "In order for this user to be banned they must be moved to a banned group.";
|
||||
$l['ban_time'] = "Ban Length <em>*</em>";
|
||||
|
||||
//= Index
|
||||
$l['user'] = "User";
|
||||
$l['moderation'] = "Moderation";
|
||||
$l['ban_lifts_on'] = "Ban Lifts On";
|
||||
$l['time_left'] = "Time Left";
|
||||
$l['permenantly'] = "permanently";
|
||||
$l['na'] = "N/A";
|
||||
$l['for'] = "for";
|
||||
$l['bannedby_x_on_x'] = "<strong>{1}</strong><br /><small>Banned by {2} on {3} {4}</small>";
|
||||
$l['lift'] = "Lift";
|
||||
$l['no_banned_users'] = "You don't have any banned users at the moment.";
|
||||
$l['prune_threads_and_posts'] = "Prune Threads & Posts";
|
||||
|
||||
// Buttons
|
||||
$l['ban_user'] = "Ban User";
|
||||
$l['update_ban'] = "Update Ban";
|
||||
@@ -0,0 +1,91 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['user_group_promotions'] = "User Group Promotions";
|
||||
$l['user_group_promotions_desc'] = "Here you can manage User Group Promotions.";
|
||||
$l['edit_promotion'] = "Edit Promotion";
|
||||
$l['edit_promotion_desc'] = "Here you can edit promotions which are automatically run on your board.";
|
||||
$l['add_new_promotion'] = "Add New Promotion";
|
||||
$l['add_new_promotion_desc'] = "Here you can create new promotions which are automatically run on your board.";
|
||||
|
||||
$l['title'] = "Title";
|
||||
$l['short_desc'] = "Short Description";
|
||||
$l['post_count'] = "Post Count";
|
||||
$l['thread_count'] = "Thread Count";
|
||||
$l['reputation'] = "Reputation";
|
||||
$l['referrals'] = "Referrals";
|
||||
$l['time_registered'] = "Time Registered";
|
||||
$l['time_online'] = "Time Online";
|
||||
$l['promo_requirements'] = "Promotion Requirements";
|
||||
$l['promo_requirements_desc'] = "Select which criteria must be met for this promotion. Holding down CTRL selects multiple criteria.";
|
||||
$l['greater_than_or_equal_to'] = "Greater than or equal to";
|
||||
$l['greater_than'] = "Greater than";
|
||||
$l['equal_to'] = "Equal to";
|
||||
$l['less_than_or_equal_to'] = "Less than or equal to";
|
||||
$l['less_than'] = "Less than";
|
||||
$l['reputation_count'] = "Reputation Count";
|
||||
$l['reputation_count_desc'] = "Enter the amount of reputation to be required. Reputation must be selected as a required value for this to be included. Select the type of comparison for reputation.";
|
||||
$l['referral_count'] = "Referral Count";
|
||||
$l['referral_count_desc'] = "Enter the number of referrals required. Referral count must be selected as a required value for this to be included. Select the type of comparison for referrals.";
|
||||
$l['warning_points'] = "Warning Points";
|
||||
$l['warning_points_desc'] = "Enter the number of warning points required. Warning Points must be selected as a required value for this to be included. Select the type of comparison for warning points.";
|
||||
$l['post_count_desc'] = "Enter the number of posts required. Post count must be selected as a required value for this to be included. Select the type of comparison for posts.";
|
||||
$l['thread_count_desc'] = "Enter the number of threads required. Thread count must be selected as a required value for this to be included. Select the type of comparison for threads.";
|
||||
$l['hours'] = "Hours";
|
||||
$l['days'] = "Days";
|
||||
$l['weeks'] = "Weeks";
|
||||
$l['months'] = "Months";
|
||||
$l['years'] = "Years";
|
||||
$l['time_registered_desc'] = "Enter the number of hours, days, weeks, months, or years that this user must have been registered for. Time registered must be selected as a required value for this to be included. Select whether the time registered should be counted in hours, days, weeks, months, or years.";
|
||||
$l['time_online_desc'] = "Enter the number of hours, days, weeks, months, or years that this user must have been online for. Time online must be selected as a required value for this to be included. Select whether the time spend online should be counted in hours, days, weeks, months, or years.";
|
||||
$l['all_user_groups'] = 'All User Groups';
|
||||
$l['orig_user_group'] = 'Original User Group';
|
||||
$l['orig_user_group_desc'] = "Select which user group or user groups that the user must be in for the promotion to run. Holding down CTRL selects multiple groups.";
|
||||
$l['new_user_group'] = 'New User Group';
|
||||
$l['new_user_group_desc'] = "Select the user group that the user will be moved into after this promotion.";
|
||||
$l['primary_user_group'] = 'Primary User Group';
|
||||
$l['secondary_user_group'] = 'Secondary User Group';
|
||||
$l['user_group_change_type'] = 'User Group Change Type';
|
||||
$l['user_group_change_type_desc'] = "Select 'Primary User Group' if the user should have their primary user group changed to the new user group. Select 'Secondary User Group' if the user should have the new user group added as an secondary user group to their profile.";
|
||||
$l['enabled'] = "Enabled?";
|
||||
$l['enable_logging'] = "Enable Logging?";
|
||||
$l['promotion_logs'] = "Promotion Logs";
|
||||
$l['view_promotion_logs'] = "View Promotion Logs";
|
||||
$l['view_promotion_logs_desc'] = 'Here you can view logs of promotions previously run.';
|
||||
$l['promoted_user'] = "Promoted User";
|
||||
$l['time_promoted'] = "Time Promoted";
|
||||
$l['no_promotion_logs'] = "There are currently no promotions logged.";
|
||||
$l['promotion_manager'] = "Promotions Manager";
|
||||
$l['promotion'] = "Promotion";
|
||||
$l['disable_promotion'] = "Disable Promotion";
|
||||
$l['enable_promotion'] = "Enable Promotion";
|
||||
$l['delete_promotion'] = "Delete Promotion";
|
||||
$l['no_promotions_set'] = "There are currently no set promotions.";
|
||||
$l['update_promotion'] = "Save Promotion";
|
||||
$l['multiple_usergroups'] = "Multiple User Groups";
|
||||
$l['secondary'] = "Secondary";
|
||||
$l['primary'] = "Primary";
|
||||
|
||||
$l['error_no_promo_id'] = 'You did not enter a promotion id';
|
||||
$l['error_invalid_promo_id'] = 'You did not enter a valid promotion id';
|
||||
|
||||
$l['error_no_title'] = "You did not enter a title for this promotion";
|
||||
$l['error_no_desc'] = "You did not enter a description for this promotion";
|
||||
$l['error_no_requirements'] = "You did not select at least one requirement for this promotion";
|
||||
$l['error_no_orig_usergroup'] = "You did not select at least one original user group for this promotion";
|
||||
$l['error_no_new_usergroup'] = "You did not select at least one new user group for this promotion";
|
||||
$l['error_no_usergroup_change_type'] = "You did not select at least one user group change type for this promotion";
|
||||
|
||||
$l['success_promo_disabled'] = 'The selected group promotion has been disabled successfully.';
|
||||
$l['success_promo_deleted'] = 'The selected group promotion has been deleted successfully.';
|
||||
$l['success_promo_enabled'] = 'The selected group promotion has been enabled successfully.';
|
||||
$l['success_promo_updated'] = 'The selected group promotion has been updated successfully.';
|
||||
$l['success_promo_added'] = 'The promotion has been created successfully.';
|
||||
|
||||
$l['confirm_promo_disable'] = "Are you sure you want to disable this promotion?";
|
||||
$l['confirm_promo_deletion'] = "Are you sure you wish to delete this promotion?";
|
||||
|
||||
225
webroot/forum/inc/languages/english/admin/user_groups.lang.php
Normal file
225
webroot/forum/inc/languages/english/admin/user_groups.lang.php
Normal file
@@ -0,0 +1,225 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['user_groups'] = "User Groups";
|
||||
$l['manage_user_groups'] = "Manage User Groups";
|
||||
$l['manage_user_groups_desc'] = "Here you can manage the various user groups on your board. In addition, for staff groups, you can manage their display order on the forum team page. Leave all as \"0\" sorts the group alphabetically. If you change the order of these groups, be sure to submit the form at the bottom of the page.";
|
||||
$l['add_user_group'] = "Add New User Group";
|
||||
$l['add_user_group_desc'] = "Here you can create a new user group and optionally copy the permissions from another user group. After saving the user group you will be taken to the full edit page for this user group.";
|
||||
$l['group_join_requests'] = "Group Join Requests";
|
||||
$l['group_join_requests_desc'] = "Below is a list of users who are requesting access to this user group. From here, you can either approve or deny their request.";
|
||||
$l['manage_group_leaders'] = "Manage Group Leaders";
|
||||
$l['manage_group_leaders_desc'] = "Here you can manage the group leaders for this user group. Depending on the options you enable for the leader, these users can manage the users who are a member of this group and can moderate any join requests if this group is publicly joinable.";
|
||||
$l['edit_user_group'] = "Edit User Group";
|
||||
$l['edit_user_group_desc'] = "Here you can edit an existing user group.";
|
||||
$l['edit_group_leader'] = "Edit Group Leader";
|
||||
$l['edit_group_leader_desc'] = "Here you can change the permissions for this group leader in regards to what actions they're allowed to perform.";
|
||||
$l['group_leaders'] = "Group Leaders";
|
||||
|
||||
$l['delete_group'] = "Delete Group";
|
||||
$l['edit_group'] = "Edit Group";
|
||||
$l['no_groups'] = "There are currently no user groups on your forum";
|
||||
$l['join_requests'] = "Moderate Join Requests";
|
||||
$l['update_groups_order'] = "Update Groups Order";
|
||||
$l['reset'] = "Reset";
|
||||
$l['number_of_users'] = "# of Users";
|
||||
$l['order'] = "Order";
|
||||
$l['group'] = "Group";
|
||||
$l['custom_user_group'] = "Custom User Group";
|
||||
$l['default_user_group'] = "Default User Group";
|
||||
$l['join_requests_for'] = "Join Requests for";
|
||||
$l['users'] = "Users";
|
||||
$l['reason'] = "Reason";
|
||||
$l['date_requested'] = "Date Requested";
|
||||
$l['approve'] = "Approve";
|
||||
$l['deny'] = "Deny";
|
||||
$l['approve_selected_requests'] = "Approve Selected Requests";
|
||||
$l['deny_selected_requests'] = "Deny Selected Requests";
|
||||
$l['group_leaders_for'] = "Group leaders for";
|
||||
$l['can_manage_members'] = "Can manage members?";
|
||||
$l['can_manage_join_requests'] = "Can manage join requests?";
|
||||
$l['can_invite_members'] = "Can invite members?";
|
||||
$l['user'] = "User";
|
||||
$l['can_manage_group_members'] = "Can manage group members?";
|
||||
$l['can_manage_group_members_desc'] = "If this user should be able to manage the members within a group, set to Yes.";
|
||||
$l['can_manage_group_join_requests'] = "Can manage group join requests?";
|
||||
$l['can_manage_group_join_requests_desc'] = "Should this user be able to approve or deny new membership requests for this group?";
|
||||
$l['can_invite_group_members'] = "Can invite group members?";
|
||||
$l['can_invite_group_members_desc'] = "Should this user be able to invite new members to join this group?";
|
||||
$l['make_user_member'] = "Make user member?";
|
||||
$l['make_user_member_desc'] = "Should this user be added as a member of this group if they're not already?";
|
||||
$l['add_group_leader'] = "Add Group Leader to";
|
||||
$l['save_group_leader'] = "Save Group Leader";
|
||||
$l['edit_leader'] = "Edit Leader:";
|
||||
$l['title'] = "Title";
|
||||
$l['short_description'] = "Short Description";
|
||||
$l['username_style'] = "Username Style";
|
||||
$l['username_style_desc'] = "This option allows you to set a custom username style for users who have this user group as their display group. <strong>Use {username} to represent the user's name.</strong>";
|
||||
$l['user_title'] = "Default User Title";
|
||||
$l['user_title_desc'] = "If the user has nothing entered in their custom user title field, the user title entered here will be displayed. If you leave this option blank, users will have their title and stars taken from the User Titles configuration.";
|
||||
$l['do_not_copy_permissions'] = "Don't copy permissions from another group";
|
||||
$l['copy_permissions_from'] = "Copy Permissions From…";
|
||||
$l['copy_permissions_from_desc'] = "If you wish, you can copy the forum and group permissions from another group. To make use of this, select a group to copy permissions from.";
|
||||
$l['save_user_group'] = "Save User Group";
|
||||
$l['list_users'] = "List Users";
|
||||
|
||||
$l['general'] = "General";
|
||||
$l['forums_posts'] = "Forums and Posts";
|
||||
$l['users_permissions'] = "Users and Permissions";
|
||||
$l['misc'] = "Miscellaneous";
|
||||
$l['mod_cp'] = "Moderator CP";
|
||||
$l['stars'] = "# of Stars";
|
||||
$l['star_image'] = "Star Image";
|
||||
$l['user_stars'] = "User Stars";
|
||||
$l['user_stars_desc'] = "If you enter a number of stars and the location of a star image, this star image will be shown for this particular user group. If you want to use different star images for different themes, please use <strong>{theme}</strong> to represent the image directory of each theme. The number of stars only takes effect if Default User Title is not blank.";
|
||||
$l['group_image'] = "Group Image";
|
||||
$l['group_image_desc'] = "Here you can set a group image which will show on each post made by users in this group. Please use <strong>{lang}</strong> to represent the user's chosen language if translated group images are available";
|
||||
$l['general_options'] = "General Options";
|
||||
$l['member_list'] = "Yes, show users of this group on the member list";
|
||||
$l['forum_team'] = "Yes, show this group on the 'forum team' page";
|
||||
$l['is_banned_group'] = "Yes, this is a banned group<br /><small>If this group is a 'banned' user group, users will be able to be 'banned' in to this user group.</small>";
|
||||
$l['publicly_joinable_options'] = "Publicly Joinable Options";
|
||||
$l['user_joinable'] = "Yes, users can freely join and leave this group";
|
||||
$l['moderate_join_requests'] = "Yes, all new join requests need to be moderated first<br /><small>Users must be able to freely join and leave this group for this to take effect.</small>";
|
||||
$l['invite_only'] = "Yes, users must be invited in order to join this group<br /><small>Users must be able to freely join and leave this group for this to take effect.</small>";
|
||||
$l['can_set_as_display_group'] = "Yes, users can set this group as their display group<br /><small>If set to yes, users will be able to set this user group as their display group for user titles, stars, name style and group images.</small>";
|
||||
$l['moderation_administration_options'] = "Moderation/Administration Options";
|
||||
$l['is_super_mod'] = "Yes, users of this group are super moderators";
|
||||
$l['can_access_mod_cp'] = "Yes, users of this group can access the moderator CP";
|
||||
$l['can_access_admin_cp'] = "Yes, users of this group can access the admin CP";
|
||||
$l['viewing_options'] = "Viewing Options";
|
||||
$l['can_view_board'] = "Can view board?";
|
||||
$l['can_view_threads'] = "Can view threads?";
|
||||
$l['can_search_forums'] = "Can search forums?";
|
||||
$l['can_view_profiles'] = "Can view user profiles?";
|
||||
$l['can_download_attachments'] = "Can download attachments?";
|
||||
$l['can_view_board_closed'] = "Can view board when closed?";
|
||||
$l['posting_rating_options'] = "Posting/Rating Options";
|
||||
$l['can_post_threads'] = "Can post new threads?";
|
||||
$l['can_post_replies'] = "Can post replies to threads?";
|
||||
$l['can_rate_threads'] = "Can rate threads?";
|
||||
$l['moderation_options'] = "Moderation Options";
|
||||
$l['mod_new_posts'] = "Moderate new posts?";
|
||||
$l['mod_new_threads'] = "Moderate new threads?";
|
||||
$l['mod_new_attachments'] = "Moderate new attachments?";
|
||||
$l['mod_after_edit'] = "Moderate posts after they've been edited?";
|
||||
$l['poll_options'] = "Poll Options";
|
||||
$l['max_posts_per_day'] = "Maximum Posts Per Day";
|
||||
$l['max_posts_per_day_desc'] = "This is the total number of posts allowed per user per day. 0 for unlimited.";
|
||||
$l['can_post_polls'] = "Can post polls?";
|
||||
$l['can_vote_polls'] = "Can vote in polls?";
|
||||
$l['can_undo_votes'] = "Can undo votes in polls?";
|
||||
$l['attachment_options'] = "Attachment Options";
|
||||
$l['can_post_attachments'] = "Can post attachments?";
|
||||
$l['attach_quota'] = "Attachment Quota:";
|
||||
$l['attach_quota_desc'] = "Here you can set the attachment quota that each user in this group will receive. If set to 0, there is no limit.";
|
||||
$l['editing_deleting_options'] = "Editing/Deleting Options";
|
||||
$l['can_edit_posts'] = "Can edit own posts?";
|
||||
$l['can_delete_posts'] = "Can delete own posts?";
|
||||
$l['can_delete_threads'] = "Can delete own threads?";
|
||||
$l['can_edit_attachments'] = "Can update own attachments?";
|
||||
$l['can_view_deletion_notices'] = "Can view deletion notices?";
|
||||
$l['account_management'] = "Account Management";
|
||||
$l['edit_time_limit'] = "Edit Time Limit";
|
||||
$l['edit_time_limit_desc'] = "The number of minutes until regular users cannot edit their own posts (if they have the permission). Enter 0 (zero) for no limit.";
|
||||
$l['can_be_reported'] = "Can be reported (profile, posts and reputation)?";
|
||||
$l['can_access_usercp'] = "Can access User CP?";
|
||||
$l['can_change_username'] = "Can change username?";
|
||||
$l['can_change_website'] = "Can change website?";
|
||||
$l['can_use_usertitles'] = "Can use custom user titles?";
|
||||
$l['can_upload_avatars'] = "Can upload avatars?";
|
||||
$l['can_use_signature'] = "Can add a signature?";
|
||||
$l['can_use_signature_posts'] = "Can add a signature after x posts?";
|
||||
$l['required_posts'] = "Required Post Count Before Signature Can Be Added:";
|
||||
$l['required_posts_desc'] = "Here you can enter the minimum number of posts a user must have before they can add a signature. If set to 0, users can add a signature at any post count.";
|
||||
$l['uses_no_follow'] = "Signature links have nofollow enabled?";
|
||||
$l['reputation_system'] = "Reputation System";
|
||||
$l['can_use_pms'] = "Can use private messaging?";
|
||||
$l['can_send_pms'] = "Can send private messages?";
|
||||
$l['can_track_pms'] = "Can track sent private messages?";
|
||||
$l['can_deny_reciept'] = "Can deny message receipt notifications?";
|
||||
$l['can_override_pms'] = "Can send private messages even if recipients have them disabled?";
|
||||
$l['message_quota'] = "Message Quota:";
|
||||
$l['message_quota_desc'] = "Maximum number of private messages that can be stored by users in this group. If empty, users can store unlimited messages.";
|
||||
$l['max_recipients'] = "Maximum Recipients Per Message:";
|
||||
$l['max_recipients_desc'] = "Maximum number of recipients a user can send a private message to at one time. If empty, users can send private messages to an unlimited number of recipients.";
|
||||
$l['show_reputations'] = "Show reputations for users in this group?";
|
||||
$l['can_give_reputation'] = "Can give reputations to users?";
|
||||
$l['can_delete_own_reputation'] = "Can delete own given reputations?";
|
||||
$l['points_to_award_take'] = "Points to Award/Take Away:";
|
||||
$l['points_to_award_take_desc'] = "Here you need to enter the number of points to give or take away on each reputation given by users of this group.";
|
||||
$l['max_reputations_daily'] = "Maximum Reputations Allowed Per Day:";
|
||||
$l['max_reputations_daily_desc'] = "Here you can enter the maximum number of reputations that users in this group can give per day. To allow unlimited reputations per day, enter 0.";
|
||||
$l['max_reputations_perthread'] = "Maximum Reputations Allowed Per Thread:";
|
||||
$l['max_reputations_perthread_desc'] = "When 'Allow Post Reputation' is allowed, you can set the maximum amount of reputations that users in this group can give to the same user, in the same thread, per day, in the box below. To allow unlimited reputations for a user, per thread, enter 0.";
|
||||
$l['max_reputations_peruser'] = "Maximum Reputations Allowed Per User:";
|
||||
$l['max_reputations_peruser_desc'] = "Along with a per thread maximum, you can enter a maximum number of reputations that users in this group can give to the same user per day. To allow unlimited reputations for a user, enter 0.";
|
||||
$l['warning_system'] = "Warning System";
|
||||
$l['can_send_warnings'] = "Can send warnings to other users?";
|
||||
$l['can_receive_warnings'] = "Can receive warnings from other users?";
|
||||
$l['warnings_per_day'] = "Maximum Warnings Allowed Per Day:";
|
||||
$l['private_messaging'] = "Private Messaging";
|
||||
$l['calendar'] = "Calendar";
|
||||
$l['can_view_calendar'] = "Can view calendar?";
|
||||
$l['can_post_events'] = "Can post calendar events?";
|
||||
$l['can_bypass_event_moderation'] = "Can bypass calendar event moderation queue?";
|
||||
$l['can_moderate_events'] = "Can moderate calendar events?";
|
||||
$l['whos_online'] = "Who's Online";
|
||||
$l['can_view_whos_online'] = "Can view who's online?";
|
||||
$l['can_view_invisible'] = "Can view invisible users?";
|
||||
$l['can_view_ips'] = "Can view IP addresses on who's online?";
|
||||
$l['can_view_member_list'] = "Can view member list?";
|
||||
$l['show_in_birthday_list'] = "Can be shown in the birthday list?";
|
||||
$l['can_email_users'] = "Can send threads to friends and email users?";
|
||||
$l['can_email_users_override'] = "Can email users even if they appear on their ignore list?";
|
||||
$l['max_emails_per_day'] = "Maximum Emails Per Day:";
|
||||
$l['max_emails_per_day_desc'] = "The maximum number of emails users can send using the 'Email User' and 'Send Thread to Friend' features. If set to 0, there is no limit.";
|
||||
$l['email_flood_time'] = "Email Flood Time:";
|
||||
$l['email_flood_time_desc'] = "The number of minutes a user must wait after sending an email before they can send another. If set to 0, there is no wait.";
|
||||
$l['forum_post_options'] = "Forums & Posts";
|
||||
$l['user_options'] = "Users";
|
||||
$l['can_manage_announce'] = "Can manage announcements?<br /><small>Please note that forum moderators must be assigned to at least one forum in order to manage announcements.</small>";
|
||||
$l['can_manage_mod_queue'] = "Can manage moderator queue?<br /><small>Please note that forum moderators must be assigned to at least one forum in order to manage the moderator queue.</small>";
|
||||
$l['can_manage_reported_content'] = "Can manage reported content?<br /><small>Please note that forum moderators must be assigned to at least one forum in order to manage reported content.</small>";
|
||||
$l['can_view_mod_logs'] = "Can view moderator logs?<br /><small>Please note that forum moderators must be assigned to at least one forum in order to view the moderator logs.</small>";
|
||||
$l['can_edit_profiles'] = "Can edit profiles?<br /><small>Please note that forum moderators cannot edit the profiles of super moderators or administrators regardless of this permission.</small>";
|
||||
$l['can_ban_users'] = "Can ban users?<br /><small>Please note that forum moderators cannot ban super moderators or administrators regardless of this permission.</small>";
|
||||
$l['can_view_warnlogs'] = "Can view warning logs?";
|
||||
$l['can_use_ipsearch'] = "Can use IP search?";
|
||||
$l['outstanding_join_request'] = "outstanding join requests";
|
||||
|
||||
$l['no_join_requests'] = "There are no outstanding join requests for this user group.";
|
||||
$l['no_assigned_leaders'] = "You haven't assigned any users as leaders of this group yet. To create a leader for this group, fill in the form below.";
|
||||
|
||||
$l['error_missing_title'] = "You did not enter a title for this new user group.";
|
||||
$l['error_invalid_user_group'] = "You have selected an invalid user group.";
|
||||
$l['error_invalid_join_request'] = "You have selected an invalid join request.";
|
||||
$l['error_invalid_username'] = "The username you entered is invalid.";
|
||||
$l['error_already_leader'] = "The user is already a leader of this user group.";
|
||||
$l['error_invalid_group_leader'] = "You specified an invalid group leader.";
|
||||
$l['error_missing_namestyle_username'] = "The username style must contain {username}";
|
||||
$l['error_disallowed_namestyle_username'] = "You can't use script, meta or base tags in the username style.";
|
||||
$l['error_default_group_delete'] = "Default groups cannot be deleted";
|
||||
$l['error_cannot_have_both_types'] = "You cannot have a joinable group that is both moderated and invite only. Please choose one or the other.";
|
||||
|
||||
$l['success_group_created'] = "The new user group has been created successfully.";
|
||||
$l['success_group_updated'] = "The selected user group has been updated successfully.";
|
||||
$l['success_group_created_duplicate_title'] = "The new user group has been created successfully. Please note that there are multiple user groups named \"{1}\".";
|
||||
$l['success_group_updated_duplicate_title'] = "The selected user group has been updated successfully. Please note that there are multiple user groups named \"{1}\".";
|
||||
$l['success_group_deleted'] = "The selected user group has been deleted successfully.";
|
||||
$l['success_groups_disporder_updated'] = "The user group display orders have been updated successfully.";
|
||||
$l['success_join_request_approved'] = "The selected join request has been approved successfully. The user is now a member of this user group.";
|
||||
$l['success_join_request_denied'] = "The selected join request has been denied successfully.";
|
||||
$l['success_selected_requests_approved'] = "The selected join requests have been approved successfully. The users are now part of this group.";
|
||||
$l['success_selected_requests_denied'] = "The selected join requests have been denied successfully.";
|
||||
$l['success_user_made_leader'] = "was successfully made a group leader for this user group.";
|
||||
$l['success_group_leader_updated'] = "The selected group leader has been updated successfully.";
|
||||
$l['success_group_leader_deleted'] = "The selected user has been removed from the group leaders list for this group successfully.";
|
||||
|
||||
$l['confirm_group_deletion'] = "Are you sure you want to delete this user group?";
|
||||
$l['confirm_group_leader_deletion'] = "Are you sure you want to delete this group leader?";
|
||||
|
||||
@@ -0,0 +1,120 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['mass_mail'] = "Mass Mail";
|
||||
|
||||
$l['mass_mail_queue'] = "Mass Mail Queue";
|
||||
$l['mass_mail_queue_desc'] = "Here you can manage mass mailings that are currently being sent or are queued for the future.";
|
||||
$l['create_mass_mail'] = "Create New Mailing";
|
||||
$l['create_mass_mail_desc'] = "Here you can create a new mass mailing and set its options.";
|
||||
$l['mass_mail_archive'] = "Mass Mailing Archive";
|
||||
$l['mass_mail_archive_desc'] = "Here you can view a log of mass mailings that have already been sent.";
|
||||
$l['edit_mass_mail'] = "Edit Mass Mailing";
|
||||
$l['edit_mass_mail_desc'] = "Here you can edit a mass mailing and its options.";
|
||||
$l['send_mass_mail'] = "Send Mass Mailing";
|
||||
|
||||
$l['email_addr'] = "Email Address";
|
||||
$l['board_name'] = "Board Name";
|
||||
$l['board_url'] = "Board URL";
|
||||
$l['personalize_message'] = "Personalize this message:";
|
||||
|
||||
$l['message_settings'] = "Message Settings";
|
||||
$l['subject'] = "Subject";
|
||||
$l['subject_desc'] = "Please enter the subject of the message.";
|
||||
$l['send_via_email'] = "Send via email";
|
||||
$l['send_via_pm'] = "Send via private message";
|
||||
$l['message_type'] = "Message Type";
|
||||
$l['deliver_immediately'] = "Deliver immediately";
|
||||
$l['deliver_specific'] = "Deliver on a specific date";
|
||||
$l['delivery_date'] = "Delivery Date";
|
||||
$l['delivery_date_desc'] = "Please select the date and time you want this mass mailing to be delivered";
|
||||
$l['per_page'] = "Per Page";
|
||||
$l['per_page_desc'] = "Please enter the number of mass mailings to run per page.";
|
||||
$l['plain_text_only'] = "Plain Text Only";
|
||||
$l['html_only'] = "HTML Only";
|
||||
$l['html_and_plain_text'] = "HTML and Plain Text";
|
||||
$l['message_format'] = "Message Format";
|
||||
$l['define_html_message'] = "Define the HTML Message";
|
||||
$l['define_html_message_desc'] = "Enter the HTML version of the message";
|
||||
$l['auto_gen_plain_text'] = "Attempt to automatically generate text version";
|
||||
$l['define_text_version'] = "Define the Text Version";
|
||||
$l['define_text_version_desc'] = "Enter the Text version of the message";
|
||||
$l['define_the_recipients'] = "Define the Recipients";
|
||||
$l['username_contains'] = "Username contains…";
|
||||
$l['email_addr_contains'] = "Email address contains…";
|
||||
$l['members_of'] = "Members of the following groups…";
|
||||
$l['greater_than'] = "Greater Than";
|
||||
$l['is_exactly'] = "Is Exactly";
|
||||
$l['less_than'] = "Less Than";
|
||||
$l['more_than'] = "More Than";
|
||||
$l['post_count_is'] = "Post Count is";
|
||||
$l['hours'] = "Hours";
|
||||
$l['days'] = "Days";
|
||||
$l['weeks'] = "Weeks";
|
||||
$l['months'] = "Months";
|
||||
$l['years'] = "Years";
|
||||
$l['ago'] = "ago";
|
||||
$l['user_last_active'] = "User was Last Active";
|
||||
$l['user_registered'] = "User Registered";
|
||||
$l['save_mass_mail'] = "Save Mass Mail";
|
||||
|
||||
$l['step_four'] = "Step 4";
|
||||
$l['delivery_method'] = "Delivery Method";
|
||||
$l['private_message'] = "Private Message";
|
||||
$l['email'] = "Email";
|
||||
$l['subject'] = "Subject";
|
||||
$l['message'] = "Message";
|
||||
$l['text_based'] = "Text Based";
|
||||
$l['preview'] = "Preview";
|
||||
$l['mass_mail_preview'] = "Mass Email Preview";
|
||||
$l['html_based'] = "HTML Based";
|
||||
$l['total_recipients'] = "Total Recipients";
|
||||
$l['change_recipient_conds'] = "Change recipient conditions";
|
||||
$l['review_message'] = "Review Your Message";
|
||||
$l['define_delivery_date'] = "Define Delivery Date";
|
||||
$l['schedule_for_delivery'] = "Schedule for Delivery";
|
||||
$l['username'] = "Username";
|
||||
|
||||
$l['step_three'] = "Step 3";
|
||||
$l['next_step'] = "Next Step";
|
||||
|
||||
$l['step_two'] = "Step 2";
|
||||
$l['review_text_version'] = "Review Text Version";
|
||||
$l['review_text_version_desc'] = "Please review the automatically generated text version";
|
||||
|
||||
$l['step_one'] = "Step 1";
|
||||
|
||||
$l['status'] = "Status";
|
||||
$l['recipients'] = "Recipients";
|
||||
$l['delivered'] = "Delivered";
|
||||
$l['canceled'] = "Canceled";
|
||||
$l['resend'] = "Resend";
|
||||
$l['no_archived_messages'] = "You do not have any previously sent or canceled mass mailings.";
|
||||
|
||||
$l['draft'] = "Draft";
|
||||
$l['queued'] = "Queued";
|
||||
$l['delivering'] = "Delivering";
|
||||
$l['na'] = "N/A";
|
||||
$l['mass_mail_cancel_confirmation'] = "Are you sure you wish to cancel the delivery of this mass mailing?";
|
||||
$l['no_unsent_messages'] = "You do not have any unsent, queued or currently delivering mass mailings.";
|
||||
|
||||
$l['error_invalid_mid'] = "You have selected an invalid mass mailing.";
|
||||
$l['error_only_in_future'] = "You can only deliver mass mailings in the future.";
|
||||
$l['error_no_users'] = "Your search criteria did not return any users. Please adjust your criteria and try again.";
|
||||
$l['error_missing_plain_text'] = "You did not enter a plain text version of this message.";
|
||||
$l['error_missing_subject'] = "You did not enter a subject for this mass mailing.";
|
||||
$l['error_missing_message'] = "You did not enter a message to send.";
|
||||
$l['error_missing_html'] = "You did not enter a HTML version of this message.";
|
||||
$l['error_delete_invalid_mid'] = "You have selected an invalid mass mailing to delete.";
|
||||
|
||||
$l['success_mass_mail_saved'] = "The mass mailing has been saved successfully.";
|
||||
$l['success_mass_mail_deleted'] = "The selected mass mailing has been deleted successfully.";
|
||||
$l['success_mass_mail_resent'] = "The mass mailing has been copied successfully. Please review it below.";
|
||||
$l['success_mass_mail_canceled'] = "The mass mailing delivery has been canceled successfully.";
|
||||
|
||||
$l['mass_mail_deletion_confirmation'] = "Are you sure you want to delete this mass mailing?";
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['users_and_groups'] = "Users & Groups";
|
||||
|
||||
$l['users'] = "Users";
|
||||
$l['awaiting_activation'] = "Awaiting Activation";
|
||||
$l['groups'] = "Groups";
|
||||
$l['user_titles'] = "User Titles";
|
||||
$l['banning'] = "Banning";
|
||||
$l['admin_permissions'] = "Admin Permissions";
|
||||
$l['mass_mail'] = "Mass Mail";
|
||||
$l['group_promotions'] = "Group Promotions";
|
||||
|
||||
$l['can_manage_users'] = "Can manage users?";
|
||||
$l['can_manage_awaiting_activation'] = "Can manage awaiting activation?";
|
||||
$l['can_manage_user_groups'] = "Can manage user groups?";
|
||||
$l['can_manage_user_titles'] = "Can manage user titles?";
|
||||
$l['can_manage_user_bans'] = "Can manage User Bans?";
|
||||
$l['can_manage_admin_permissions'] = "Can manage admin permissions?";
|
||||
$l['can_send_mass_mail'] = "Can send mass mail?";
|
||||
$l['can_manage_group_promotions'] = "Can manage group promotions?";
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['user_titles'] = "User Titles";
|
||||
$l['user_titles_desc'] = "This section allows management of user titles. User titles are assigned to users based on the number of posts they make and also allow a custom 'Star' image to be shown based on the number of posts the user has.";
|
||||
$l['add_new_user_title'] = "Add New User Title";
|
||||
$l['add_new_user_title_desc'] = "This section allows you to add a new user title. <i>Note: This is <strong>not</strong> the <u><a href=\"index.php?module=user-group_promotions\">promotion system.</a></u></i>";
|
||||
|
||||
$l['error_missing_title'] = "You did not enter a title for this user title";
|
||||
$l['error_missing_posts'] = "You did not enter the minimum number of posts for this user title";
|
||||
$l['error_cannot_have_same_posts'] = "This user title cannot have the same minimum number of posts as another title";
|
||||
$l['error_invalid_user_title'] = "You have specified an invalid user title";
|
||||
|
||||
$l['success_user_title_created'] = "The new user title has been created successfully.";
|
||||
$l['success_user_title_updated'] = "The user title has been updated successfully.";
|
||||
$l['success_user_title_deleted'] = "The specified user title has been deleted successfully.";
|
||||
|
||||
$l['title_to_assign'] = "Title to Assign";
|
||||
$l['title_to_assign_desc'] = "This title will be shown for users underneath their name if they do not have a custom title set.";
|
||||
$l['minimum_posts'] = "Minimum Posts";
|
||||
$l['minimum_posts_desc'] = "The minimum number of posts for a user to have before they're assigned this user title.";
|
||||
$l['number_of_stars'] = "Number of Stars";
|
||||
$l['number_of_stars_desc'] = "Enter the number of stars to be shown under this user title. Set to 0 to show no stars.";
|
||||
$l['star_image'] = "Star Image";
|
||||
$l['star_image_desc'] = "If this user title should show stars, enter the path to the star image here. If empty, the user group star image will be shown. Use {theme} to specify the image directory for the viewers current theme.";
|
||||
$l['save_user_title'] = "Save User Title";
|
||||
$l['edit_user_title'] = "Edit User Title";
|
||||
$l['edit_user_title_desc'] = "This section allows you to edit a user title.";
|
||||
$l['user_title_deletion_confirmation'] = "Are you sure you want to delete this user title?";
|
||||
$l['manage_user_titles'] = "Manage User Titles";
|
||||
$l['user_title'] = "User Title";
|
||||
$l['no_user_titles'] = "You do not have any user titles defined at the moment";
|
||||
|
||||
410
webroot/forum/inc/languages/english/admin/user_users.lang.php
Normal file
410
webroot/forum/inc/languages/english/admin/user_users.lang.php
Normal file
@@ -0,0 +1,410 @@
|
||||
<?php
|
||||
/**
|
||||
* MyBB 1.8 English Language Pack
|
||||
* Copyright 2014 MyBB Group, All Rights Reserved
|
||||
*
|
||||
*/
|
||||
|
||||
$l['users'] = "Users";
|
||||
|
||||
$l['search_for_user'] = "Search for a User";
|
||||
$l['browse_users'] = "Browse Users";
|
||||
$l['browse_users_desc'] = "Below you can browse users of your forums in different defined views. Views are particularly useful for generating different result sets with different information - think of them as saved live searches.";
|
||||
$l['find_users'] = "Find Users";
|
||||
$l['find_users_desc'] = "Here you can search for users of your forum. The fewer fields you fill in, the broader your search is; the more you fill in, the narrower your search is.";
|
||||
$l['create_user'] = "Create New User";
|
||||
$l['create_user_desc'] = "Here you can create a new user.";
|
||||
$l['merge_users'] = "Merge Users";
|
||||
$l['merge_users_desc'] = "Here you can merge two user accounts into one. The \"Source Account\" will be merged into the \"Destination Account\" leaving <strong>only</strong> the destination account. The source accounts posts, threads, private messages, calendar events, post count and buddy list will be merged into the destination account.<br /><span style=\"font-size: 15px;\">Please be aware that this process cannot be undone.</span>";
|
||||
$l['edit_user'] = "Edit User";
|
||||
$l['edit_user_desc'] = "Here you can edit this users profile, settings, and signature; see general statistics; and visit other pages for further information relating to this user.";
|
||||
$l['show_referrers'] = "Show Referrers";
|
||||
$l['show_referrers_desc'] = "The results to your search criteria are shown below. You can view the results in either a table view or business card view.";
|
||||
$l['show_ip_addresses'] = "Show IP Addresses";
|
||||
$l['show_ip_addresses_desc'] = "The registration IP address and the post IPs for the selected users are shown below. The first IP address is the registration IP (it is marked as such). Any other IP addresses are IP addresses the user has posted with.";
|
||||
$l['manage_users'] = "Manage Users";
|
||||
$l['manage_users_desc'] = "Mass-managing users makes it a lot easier to do common tasks.";
|
||||
$l['inline_edit'] = "Inline User Moderation:";
|
||||
$l['inline_activate'] = "Activate User(s)";
|
||||
$l['inline_ban'] = "Ban User(s)";
|
||||
$l['inline_usergroup'] = "Change Users' Usergroup";
|
||||
$l['inline_delete'] = "Delete User(s)";
|
||||
$l['inline_prune'] = "Prune/Delete Users' Posts";
|
||||
$l['inline_activated'] = "{1} user(s) were successfully activated.";
|
||||
$l['inline_activated_more'] = "<small>{1} user(s) you selected were already activated.</small>";
|
||||
$l['inline_activated_failed'] = "All the users you selected were already activated.";
|
||||
$l['ban_time'] = "Ban Length <em>*</em>";
|
||||
$l['ban_reason'] = "Ban Reason";
|
||||
$l['mass_ban'] = "Mass Ban Users";
|
||||
$l['important'] = "Important";
|
||||
$l['mass_ban_info'] = "This action will affect {1} user(s). Only continue if you are sure you want to do this.";
|
||||
$l['ban_users'] = "Ban Users";
|
||||
$l['users_banned'] = "{1} user(s) have been banned.";
|
||||
$l['confirm_multilift'] = "Are you sure you want to lift bans for the user(s) you selected?";
|
||||
$l['success_ban_lifted'] = "Bans for {1} user(s) you selected have been lifted.";
|
||||
$l['edit_ban'] = "Edit Ban";
|
||||
$l['lift_ban'] = "Lift Ban";
|
||||
$l['lift_bans'] = "Lift Bans";
|
||||
$l['confirm_multidelete'] = "Are you sure you want to delete these {1} user(s)? This cannot be undone.";
|
||||
$l['users_deleted'] = "{1} user(s) have been deleted.";
|
||||
$l['mass_prune_info'] = "This action will affect {1} user(s). If you continue, it will remove all the users' posts older than the date you enter below.<br /><br /><strong>Please note that if any users' post is the first post of a thread, the entire thread will be removed.</strong>";
|
||||
$l['mass_prune_posts'] = "Mass Prune Posts";
|
||||
$l['manual_date'] = "Enter a manual date";
|
||||
$l['relative_date'] = "Or select a delete option";
|
||||
$l['multi_selected_dates'] = "You've selected both a manual date and a set option. Please select either a manual date or a set option.";
|
||||
$l['incorrect_date'] = "The date you entered is invalid. Please enter a valid date, or leave blank and select a set option.";
|
||||
$l['prune_complete'] = "Prune completed successfully.";
|
||||
$l['prune_fail'] = "No posts were found for the selected user(s). No posts were pruned.";
|
||||
$l['no_prune_option'] = "Please enter a date or select an option to continue.";
|
||||
$l['prune_posts'] = "Prune Posts";
|
||||
$l['delete_posts'] = "Delete Posts";
|
||||
$l['usergroup_info'] = "The following action will affect {1} user(s). By choosing the options below, you will be overwriting the selected users' primary / additional / display usergroup.";
|
||||
$l['mass_usergroups'] = "Mass Usergroup Change";
|
||||
$l['success_mass_usergroups'] = "User(s) updated successfully.";
|
||||
$l['alter_usergroups'] = "Save Changes";
|
||||
$l['no_usergroup_changed'] = "None of the user(s) you selected can have their usergroups changed.";
|
||||
$l['no_set_option'] = "A valid set date was not selected. Please select an option from the dropdown box or enter a manual date.";
|
||||
$l['select_an_option'] = "(Select an Option)";
|
||||
|
||||
$l['month_1'] = "January";
|
||||
$l['month_2'] = "February";
|
||||
$l['month_3'] = "March";
|
||||
$l['month_4'] = "April";
|
||||
$l['month_5'] = "May";
|
||||
$l['month_6'] = "June";
|
||||
$l['month_7'] = "July";
|
||||
$l['month_8'] = "August";
|
||||
$l['month_9'] = "September";
|
||||
$l['month_10'] = "October";
|
||||
$l['month_11'] = "November";
|
||||
$l['month_12'] = "December";
|
||||
|
||||
$l['option_1'] = "More than a month old";
|
||||
$l['option_2'] = "More than 3 months old";
|
||||
$l['option_3'] = "More than 6 months old";
|
||||
$l['option_4'] = "More than a year old";
|
||||
$l['option_5'] = "More than 18 months old";
|
||||
$l['option_6'] = "More than 2 years old";
|
||||
|
||||
$l['error_avatartoobig'] = "Sorry, but we cannot change your avatar as the new avatar you specified is too big. The maximum dimensions are {1}x{2} (width x height)";
|
||||
$l['error_invalidavatarurl'] = "The URL you entered for your avatar does not appear to be valid. Please ensure you enter a valid URL.";
|
||||
$l['error_remote_avatar_not_allowed'] = "Remote avatar URLs have been disabled by the forum administrator.";
|
||||
$l['error_invalid_user'] = "You have selected an invalid user.";
|
||||
$l['error_no_perms_super_admin'] = "You do not have permission to edit this user because you are not a super administrator.";
|
||||
$l['error_invalid_user_source'] = "The source account username you entered does not exist";
|
||||
$l['error_invalid_user_destination'] = "The destination account username you entered does not exist";
|
||||
$l['error_cannot_merge_same_account'] = "The source and destination accounts must be different";
|
||||
$l['error_no_users_found'] = "No users were found matching the specified search criteria. Please modify your search criteria and try again.";
|
||||
$l['error_invalid_admin_view'] = "You selected an invalid administration view.";
|
||||
$l['error_missing_view_title'] = "You did not enter a title for this view.";
|
||||
$l['error_no_view_fields'] = "You did not select any fields to display on this view";
|
||||
$l['error_invalid_view_perpage'] = "You have entered an invalid number of results to show per page";
|
||||
$l['error_invalid_view_sortby'] = "You have selected an invalid field to sort results by";
|
||||
$l['error_invalid_view_sortorder'] = "You have selected an invalid sort order";
|
||||
$l['error_invalid_view_delete'] = "You selected an invalid administration view to delete";
|
||||
$l['error_cannot_delete_view'] = "You must have at least 1 administration view.";
|
||||
$l['error_inline_no_users_selected'] = "Sorry, but you did not select any users. Please select some users and try again.";
|
||||
$l['error_cannot_delete_user'] = "This user cannot be deleted.";
|
||||
$l['error_no_referred_users'] = "The selected user does not have any referred users.";
|
||||
|
||||
$l['user_deletion_confirmation'] = "Are you sure you wish to delete this user?";
|
||||
|
||||
$l['success_coppa_activated'] = "The selected COPPA user has been activated successfully.";
|
||||
$l['success_activated'] = "The selected user has been activated successfully.";
|
||||
$l['success_user_created'] = "The user has been created successfully.";
|
||||
$l['success_user_updated'] = "The selected user has been updated successfully.";
|
||||
$l['success_user_deleted'] = "The selected user has been deleted successfully.";
|
||||
$l['success_merged'] = "has successfully been merged into";
|
||||
$l['succuss_view_set_as_default'] = "The selected administration view has been set as your default successfully";
|
||||
$l['success_view_created'] = "The administration view has been created successfully.";
|
||||
$l['success_view_updated'] = "The selected administration view has been updated successfully.";
|
||||
$l['success_view_deleted'] = "The selected administration view has been deleted successfully.";
|
||||
|
||||
$l['confirm_view_deletion'] = "Are you sure you want to delete the selected view?";
|
||||
|
||||
$l['warning_coppa_user'] = "<p class=\"alert\"><strong>Warning: </strong> This user is awaiting COPPA validation. <a href=\"index.php?module=user-users&action=activate_user&uid={1}&my_post_key={2}\">Activate Account</a></p>";
|
||||
|
||||
$l['required_profile_info'] = "Required Profile Information";
|
||||
$l['password'] = "Password";
|
||||
$l['confirm_password'] = "Confirm Password";
|
||||
$l['email_address'] = "Email Address";
|
||||
$l['use_primary_user_group'] = "Use Primary User Group";
|
||||
$l['primary_user_group'] = "Primary User Group";
|
||||
$l['additional_user_groups'] = "Additional User Groups";
|
||||
$l['additional_user_groups_desc'] = "Use CTRL to select multiple groups";
|
||||
$l['display_user_group'] = "Display User Group";
|
||||
$l['save_user'] = "Save User";
|
||||
|
||||
$l['overview'] = "Overview";
|
||||
$l['profile'] = "Profile";
|
||||
$l['account_settings'] = "Account Settings";
|
||||
$l['signature'] = "Signature";
|
||||
$l['avatar'] = "Avatar";
|
||||
$l['mod_options'] = "Moderator Options";
|
||||
$l['general_account_stats'] = "General Account Statistics";
|
||||
$l['local_time'] = "Local Time";
|
||||
$l['local_time_format'] = "{1} at {2}";
|
||||
$l['posts'] = "Posts";
|
||||
$l['age'] = "Age";
|
||||
$l['posts_per_day'] = "Posts per day";
|
||||
$l['percent_of_total_posts'] = "Percent of total posts";
|
||||
$l['user_overview'] = "User Overview";
|
||||
|
||||
$l['new_password'] = "New Password";
|
||||
$l['new_password_desc'] = "Only required if changing";
|
||||
$l['confirm_new_password'] = "Confirm New Password";
|
||||
|
||||
$l['optional_profile_info'] = "Optional Profile Information";
|
||||
$l['custom_user_title'] = "Custom User Title";
|
||||
$l['custom_user_title_desc'] = "If empty, the group user title will be used";
|
||||
$l['website'] = "Website";
|
||||
$l['icq_number'] = "ICQ Number";
|
||||
$l['yahoo_messanger_handle'] = "Yahoo! Messenger Handle";
|
||||
$l['skype_handle'] = "Skype Handle";
|
||||
$l['google_handle'] = "Google Hangouts Handle";
|
||||
$l['birthday'] = "Date of Birth";
|
||||
|
||||
$l['away_information'] = "Away Information";
|
||||
$l['away_status'] = "Away Status:";
|
||||
$l['away_status_desc'] = "Allows you to leave an away message if you are going away for a while.";
|
||||
$l['im_away'] = "I'm Away";
|
||||
$l['im_here'] = "I'm Here";
|
||||
$l['away_reason'] = "Away Reason:";
|
||||
$l['away_reason_desc'] = "Allows you to enter a small description of why you are away (max 200 characters).";
|
||||
$l['return_date'] = "Return Date:";
|
||||
$l['return_date_desc'] = "If you know when you will be back, you can enter your return date here.";
|
||||
$l['error_acp_return_date_past'] = "You cannot return in the past!";
|
||||
|
||||
$l['hide_from_whos_online'] = "Hide from the Who's Online list";
|
||||
$l['login_cookies_privacy'] = "Login, Cookies & Privacy";
|
||||
$l['recieve_admin_emails'] = "Receive emails from administrators";
|
||||
$l['hide_email_from_others'] = "Hide email address from other members";
|
||||
$l['recieve_pms_from_others'] = "Receive private messages from other users";
|
||||
$l['recieve_pms_from_buddy'] = "Only receive private messages from buddy list (this setting has no effect unless there is at least one buddy on the list)";
|
||||
$l['alert_new_pms'] = "Alert with notice when new private message is received";
|
||||
$l['email_notify_new_pms'] = "Notify by email when new private message is received";
|
||||
$l['buddy_requests_pm'] = "Receive PM notifications for new buddy requests";
|
||||
$l['buddy_requests_auto'] = "Automatically accept buddy requests (if the above checkbox is ticked, a PM is sent informing of the new buddy connection)";
|
||||
$l['default_thread_subscription_mode'] = "Default thread subscription mode";
|
||||
$l['do_not_subscribe'] = "Do not subscribe";
|
||||
$l['no_notification'] = "No notification";
|
||||
$l['instant_email_notification'] = "Instant email notification";
|
||||
$l['instant_pm_notification'] = "Instant PM notification";
|
||||
$l['messaging_and_notification'] = "Messaging & Notification";
|
||||
$l['use_default'] = "Use Default";
|
||||
$l['date_format'] = "Date Format";
|
||||
$l['time_format'] = "Time Format";
|
||||
$l['time_zone'] = "Time Zone";
|
||||
$l['daylight_savings_time_correction'] = "Daylight Saving Time correction";
|
||||
$l['automatically_detect'] = "Automatically detect DST settings";
|
||||
$l['always_use_dst_correction'] = "Always use DST correction";
|
||||
$l['never_use_dst_correction'] = "Never use DST correction";
|
||||
$l['date_and_time_options'] = "Date & Time Options";
|
||||
$l['show_threads_last_day'] = "Show threads from the last day";
|
||||
$l['show_threads_last_5_days'] = "Show threads from the last 5 days";
|
||||
$l['show_threads_last_10_days'] = "Show threads from the last 10 days";
|
||||
$l['show_threads_last_20_days'] = "Show threads from the last 20 days";
|
||||
$l['show_threads_last_50_days'] = "Show threads from the last 50 days";
|
||||
$l['show_threads_last_75_days'] = "Show threads from the last 75 days";
|
||||
$l['show_threads_last_100_days'] = "Show threads from the last 100 days";
|
||||
$l['show_threads_last_year'] = "Show threads from the last year";
|
||||
$l['show_all_threads'] = "Show all threads";
|
||||
$l['threads_per_page'] = "Threads Per Page";
|
||||
$l['default_thread_age_view'] = "Default Thread Age View";
|
||||
$l['forum_display_options'] = "Forum Display Options";
|
||||
$l['show_classic_postbit'] = "Display posts in classic mode";
|
||||
$l['display_images'] = "Display images in posts";
|
||||
$l['display_videos'] = "Display videos in posts";
|
||||
$l['display_users_sigs'] = "Display users' signatures in their posts";
|
||||
$l['display_users_avatars'] = "Display users' avatars in their posts";
|
||||
$l['show_quick_reply'] = "Show the quick reply box at the bottom of the thread view";
|
||||
$l['posts_per_page'] = "Posts Per Page";
|
||||
$l['default_thread_view_mode'] = "Default Thread View Mode";
|
||||
$l['linear_mode'] = "Linear Mode";
|
||||
$l['threaded_mode'] = "Threaded Mode";
|
||||
$l['thread_view_options'] = "Thread View Options";
|
||||
$l['show_redirect'] = "Show friendly redirection pages";
|
||||
$l['show_code_buttons'] = "Show MyCode formatting options on posting pages";
|
||||
$l['source_editor'] = "Put the editor in source mode by default";
|
||||
$l['theme'] = "Theme";
|
||||
$l['board_language'] = "Board Language";
|
||||
$l['other_options'] = "Other Options";
|
||||
$l['signature_desc'] = "Formatting options: MyCode is {1}, smilies are {2}, IMG code is {3}, HTML is {4}";
|
||||
$l['enable_sig_in_all_posts'] = "Enable signature in all posts";
|
||||
$l['disable_sig_in_all_posts'] = "Disable signature in all posts";
|
||||
$l['do_nothing'] = "Do not change signature preferences";
|
||||
$l['signature_preferences'] = "Signature Preferences";
|
||||
$l['suspend_sig'] = "Suspend Signature";
|
||||
$l['suspend_sig_box'] = "Suspend this user's signature";
|
||||
$l['suspend_sig_perm'] = "<small>Suspended permanently.</small>";
|
||||
$l['suspend_sig_info'] = "If a signature is suspended, the user can't edit it and it won't be shown on their profile or in their posts";
|
||||
$l['suspend_sig_extend'] = "<small>Enter a new time below to change, or untick this option to remove this suspension.</small>";
|
||||
$l['suspend_expire_info'] = "<small>Remaining: <span style=\"color: {2};\">{1}</span></small>";
|
||||
$l['suspend_never_expire'] = "<small>{1}'s suspension will never expire (permanently suspended).</small>";
|
||||
$l['suspend_sig_error'] = "You entered an incorrect time to suspend this user's signature for. Please enter a correct time.";
|
||||
|
||||
$l['moderate_posts'] = "Moderate Posts";
|
||||
$l['moderate_posts_info'] = "Moderate new posts made by {1}.";
|
||||
$l['moderate_for'] = "Moderate for:";
|
||||
$l['moderated_perm'] = "<p><small>Moderated permanently.<br />Enter a new time below to change or untick this option to remove this moderation.</small></p>";
|
||||
$l['moderate_length'] = "<p><small>Remaining Moderation: <span style=\"color: {2};\">{1}</span>.<br />Enter a new time below to change or untick this option to remove this moderation.</small></p>";
|
||||
|
||||
$l['suspend_posts'] = "Suspend Posts";
|
||||
$l['suspend_posts_info'] = "Suspend {1} from making new posts.";
|
||||
$l['suspend_for'] = "Suspend for:";
|
||||
$l['suspended_perm'] = "<p><small>Suspended permanently.<br />Enter a new time below to change or untick this option to remove this suspension.</small></p>";
|
||||
$l['suspend_length'] = "<p><small>Remaining Suspension: <span style=\"color: {2};\">{1}</span>.<br />Enter a new time below to change or untick this option to remove this suspension.</small></p>";
|
||||
|
||||
$l['suspendsignature_error'] = "You selected to suspend this user's signature, but didn't enter a valid time period. Please enter a valid time to continue or untick the option to cancel.";
|
||||
$l['moderateposting_error'] = "You selected to moderate this user's posts, but didn't enter a valid time period. Please enter a valid time to continue or untick the option to cancel.";
|
||||
$l['suspendposting_error'] = "You selected to suspend this user's posts, but didn't enter a valid time period. Please enter a valid time to continue or untick the option to cancel.";
|
||||
$l['suspendmoderate_error'] = "You've selected to suspend and moderate the user's posts. Please select only one type of moderation.";
|
||||
|
||||
$l['expire_length'] = "Suspension length:";
|
||||
$l['expire_hours'] = "hour(s)";
|
||||
$l['expire_days'] = "day(s)";
|
||||
$l['expire_weeks'] = "week(s)";
|
||||
$l['expire_months'] = "month(s)";
|
||||
$l['expire_never'] = "Never";
|
||||
$l['expire_permanent'] = "Permanent";
|
||||
|
||||
$l['username'] = "Username";
|
||||
$l['email'] = "Email";
|
||||
$l['primary_group'] = "Primary Group";
|
||||
$l['additional_groups'] = "Additional Groups";
|
||||
$l['registered'] = "Registered";
|
||||
$l['last_active'] = "Last Active";
|
||||
$l['post_count'] = "Post Count";
|
||||
$l['thread_count'] = "Thread Count";
|
||||
$l['reputation'] = "Reputation";
|
||||
$l['warning_level'] = "Warning Level";
|
||||
$l['registration_ip'] = "Registration IP";
|
||||
$l['last_known_ip'] = "Last Known IP";
|
||||
$l['registration_date'] = "Registration Date";
|
||||
$l['info_on_ip'] = "Information on this IP address";
|
||||
|
||||
$l['current_avatar'] = "Current Avatar";
|
||||
$l['user_current_using_uploaded_avatar'] = "This user is currently using an uploaded avatar.";
|
||||
$l['user_currently_using_remote_avatar'] = "This user is currently using a remotely linked avatar.";
|
||||
$l['max_dimensions_are'] = "The maximum dimensions for avatars are";
|
||||
$l['avatar_max_size'] = "Avatars can be a maximum of";
|
||||
$l['remove_avatar'] = "Remove current avatar?";
|
||||
$l['avatar_desc'] = "Below you can manage the avatar for this user. Avatars are small identifying images which are placed under the authors username when they make a post.";
|
||||
$l['avatar_auto_resize'] = "If the avatar is too large, it will automatically be resized";
|
||||
$l['attempt_to_auto_resize'] = "Attempt to resize this avatar if it is too large?";
|
||||
$l['specify_custom_avatar'] = "Specify Custom Avatar";
|
||||
$l['upload_avatar'] = "Upload Avatar";
|
||||
$l['or_specify_avatar_url'] = "or Specify Avatar/Gravatar URL";
|
||||
|
||||
$l['user_notes'] = "User Notes";
|
||||
|
||||
$l['ip_addresses'] = "IP Addresses";
|
||||
$l['ip_address'] = "IP Address";
|
||||
$l['show_users_regged_with_ip'] = "Show users who have registered with this IP";
|
||||
$l['show_users_posted_with_ip'] = "Show users who have posted with this IP";
|
||||
$l['ban_ip'] = "Ban IP";
|
||||
$l['ip_address_for'] = "IP Addresses for";
|
||||
|
||||
$l['source_account'] = "Source Account";
|
||||
$l['source_account_desc'] = "This is the account that will be merged into the destination account. It will be removed after this process.";
|
||||
$l['destination_account'] = "Destination Account";
|
||||
$l['destination_account_desc'] = "This is the account that the source account will be merged into. It will remain after this process.";
|
||||
$l['merge_user_accounts'] = "Merge User Accounts";
|
||||
|
||||
$l['display_options'] = "Display Options";
|
||||
$l['ascending'] = "Ascending";
|
||||
$l['descending'] = "Descending";
|
||||
$l['sort_results_by'] = "Sort results by";
|
||||
$l['in'] = "in";
|
||||
$l['results_per_page'] = "Results per page";
|
||||
$l['display_results_as'] = "Display results as";
|
||||
$l['business_card'] = "Business cards";
|
||||
$l['views'] = "Views";
|
||||
$l['views_desc'] = "The view manager allows you to create different kinds of views for this specific area. Different views are useful for generating a variety of reports.";
|
||||
$l['manage_views'] = "Manage Views";
|
||||
$l['none'] = "None";
|
||||
$l['search'] = "Search";
|
||||
|
||||
$l['view_profile'] = "View Profile";
|
||||
$l['edit_profile_and_settings'] = "Edit Profile & Settings";
|
||||
$l['ban_user'] = "Ban User";
|
||||
$l['approve_coppa_user'] = "Activate COPPA User";
|
||||
$l['approve_user'] = "Activate User";
|
||||
$l['delete_user'] = "Delete User";
|
||||
$l['show_referred_users'] = "Show Referred Users";
|
||||
$l['show_attachments'] = "Show Attachments";
|
||||
$l['table_view'] = "Table View";
|
||||
$l['card_view'] = "Card View";
|
||||
|
||||
$l['find_users_where'] = "Find users where…";
|
||||
$l['username_contains'] = "Username contains";
|
||||
$l['email_address_contains'] = "Email address contains";
|
||||
$l['is_member_of_groups'] = "Is member of one or more of these user groups";
|
||||
$l['website_contains'] = "Website contains";
|
||||
$l['icq_number_contains'] = "ICQ number contains";
|
||||
$l['yahoo_contains'] = "Yahoo! Messenger handle contains";
|
||||
$l['skype_contains'] = "Skype handle contains";
|
||||
$l['google_contains'] = "Google Hangouts handle contains";
|
||||
$l['signature_contains'] = "Signature contains";
|
||||
$l['user_title_contains'] = "Custom user title contains";
|
||||
$l['greater_than'] = "Greater than";
|
||||
$l['is_exactly'] = "Is exactly";
|
||||
$l['less_than'] = "Less than";
|
||||
$l['post_count_is'] = "Post count is";
|
||||
$l['thread_count_is'] = "Thread count is";
|
||||
$l['reg_ip_matches'] = "Registration IP address matches";
|
||||
$l['wildcard'] = "To search for ranges of IP addresses use * (Ex: 127.0.0.*) or CIDR notation (Ex: 127.0.0.0/8)";
|
||||
$l['posted_with_ip'] = "Has posted with the IP address";
|
||||
$l['custom_profile_fields_match'] = "Where custom profile fields match…";
|
||||
$l['is_not_blank'] = " is not empty";
|
||||
$l['or'] = "or";
|
||||
$l['reg_in_x_days'] = "Registered in the last";
|
||||
$l['days'] = "days";
|
||||
|
||||
$l['view'] = "View";
|
||||
$l['create_new_view'] = "Create New View";
|
||||
$l['create_new_view_desc'] = "Here you can define a new view for this area. You can define which fields you want to be shown, any search criteria and sorting options.";
|
||||
$l['view_manager'] = "View Manager";
|
||||
$l['set_as_default_view'] = "Set as Default View?";
|
||||
$l['enabled'] = "Enabled";
|
||||
$l['disabled'] = "Disabled";
|
||||
$l['fields_to_show'] = "Fields to Show";
|
||||
$l['fields_to_show_desc'] = "Please select the fields you wish to display";
|
||||
$l['edit_view'] = "Edit View";
|
||||
$l['edit_view_desc'] = "Whilst editing a view you can define which fields you want to be shown, any search criteria and sorting options.";
|
||||
$l['private'] = "Private";
|
||||
$l['private_desc'] = "This view is only visible to you";
|
||||
$l['public'] = "Public";
|
||||
$l['public_desc'] = "All other administrators can see this view";
|
||||
$l['visibility'] = "Visibility";
|
||||
$l['save_view'] = "Save View";
|
||||
$l['created_by'] = "Created by";
|
||||
$l['default'] = "Default";
|
||||
$l['this_is_a_view'] = "This is a {1} view";
|
||||
$l['set_as_default'] = "Set as Default";
|
||||
$l['delete_view'] = "Delete View";
|
||||
$l['default_view_desc'] = "Default view created by MyBB. Cannot be edited or removed.";
|
||||
$l['public_view_desc'] = "Public view visible to all administrators.";
|
||||
$l['private_view_desc'] = "Private view visible only to yourself.";
|
||||
$l['table'] = "Table";
|
||||
$l['title'] = "Title";
|
||||
|
||||
$l['view_title_1'] = "All Users";
|
||||
|
||||
$l['emailsubject_activateaccount'] = "Account Activation at {1}";
|
||||
$l['email_adminactivateaccount'] = "{1},
|
||||
|
||||
The administrator has activated your forum account on {2}.
|
||||
|
||||
To proceed, please go to
|
||||
|
||||
{3}
|
||||
|
||||
You will be able to login with the credentials you registered with.
|
||||
|
||||
Thank you,
|
||||
{2} Staff";
|
||||
|
||||
$l['ipaddress_misc_info'] = "Misc. Information for '{1}'";
|
||||
$l['ipaddress_host_name'] = "Host Name";
|
||||
$l['ipaddress_location'] = "GeoIP Location";
|
||||
Reference in New Issue
Block a user