[ Index ]

PHP Cross Reference of MyBB 1.8.37

title

Body

[close]

/inc/languages/english/admin/ -> config_settings.lang.php (source)

   1  <?php
   2  /**
   3   * MyBB 1.8 English Language Pack
   4   * Copyright 2014 MyBB Group, All Rights Reserved
   5   *
   6   */
   7  
   8  $l['board_settings'] = "Board Settings";
   9  $l['change_settings'] = "Change Settings";
  10  $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.";
  11  $l['add_new_setting'] = "Add New Setting";
  12  $l['add_new_setting_desc'] = "This section allows you to add a new setting to your board.";
  13  $l['modify_existing_settings'] = "Modify Settings";
  14  $l['modify_existing_settings_desc'] = "This section allows you to modify an existing setting on your forum.";
  15  $l['add_new_setting_group'] = "Add New Setting Group";
  16  $l['add_new_setting_group_desc'] = "This section allows you to create a setting group to categorize individual settings.";
  17  $l['edit_setting_group'] = "Edit Setting Group";
  18  $l['edit_setting_group_desc'] = "This section allows you to edit an existing setting group.";
  19  
  20  $l['title'] = "Title";
  21  $l['description'] = "Description";
  22  $l['group'] = "Group";
  23  $l['display_order'] = "Display Order";
  24  $l['name'] = "Identifier";
  25  $l['name_desc'] = "This unique identifier is used in the settings array to reference this setting (in scripts, translations, and templates).";
  26  $l['group_name_desc'] = "This unique identifier is used for the translation system.";
  27  $l['text'] = "Text";
  28  $l['numeric_text'] = "Numeric Text";
  29  $l['textarea'] = "Textarea";
  30  $l['yesno'] = "Yes / No Choice";
  31  $l['onoff'] = "On / Off Choice";
  32  $l['select'] = "Selection Box";
  33  $l['radio'] = "Radio Buttons";
  34  $l['checkbox'] = "Checkboxes";
  35  $l['language_selection_box'] = "Language Selection Box";
  36  $l['forum_selection_box'] = "Forum Selection Box";
  37  $l['forum_selection_single'] = "Single Forum Selection Box";
  38  $l['group_selection_box'] = "Group Selection Box";
  39  $l['group_selection_single'] = "Single Group Selection Box";
  40  $l['adminlanguage'] = "Administration Language Selection Box";
  41  $l['cpstyle'] = "Control Panel Style Selection Box";
  42  $l['prefix_selection_box'] = "Prefix Selection Box";
  43  $l['php'] = "Evaluated PHP";
  44  $l['type'] = "Type";
  45  $l['extra'] = "Extra";
  46  $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.";
  47  $l['value'] = "Value";
  48  $l['insert_new_setting'] = "Insert New Setting";
  49  $l['edit_setting'] = "Edit Setting";
  50  $l['delete_setting'] = "Delete Setting";
  51  $l['setting_configuration'] = "Setting Configuration";
  52  $l['update_setting'] = "Update Setting";
  53  $l['save_settings'] = "Save Settings";
  54  $l['setting_groups'] = "Setting Groups";
  55  $l['bbsettings'] = "Settings";
  56  $l['insert_new_setting_group'] = "Insert New Setting Group";
  57  $l['setting_group_setting'] = "Setting Group / Setting";
  58  $l['order'] = "Order";
  59  $l['delete_setting_group'] = "Delete Setting Group";
  60  $l['save_display_orders'] = "Save Display Orders";
  61  $l['update_setting_group'] = "Update Setting Group";
  62  $l['modify_setting'] = "Modify Setting";
  63  $l['search'] = "Search";
  64  $l['plugin_settings'] = "Plugin Settings";
  65  
  66  $l['show_all_settings'] = "Show All Settings";
  67  $l['settings_search'] = "Search For Settings";
  68  
  69  $l['confirm_setting_group_deletion'] = "Are you sure you wish to delete this setting group?";
  70  $l['confirm_setting_deletion'] = "Are you sure you wish to delete this setting?";
  71  
  72  $l['error_format_dimension'] = "Defined {1} format is invalid.";
  73  $l['error_field_minnamelength'] = "Minimum name length can not be larger than maximum name length";
  74  $l['error_field_minpasswordlength'] = "Minimum password length can not be larger than maximum password length";
  75  $l['error_field_minpasswordlength_complex'] = "Minimum password length can not be less than 3 when using complex passwords";
  76  $l['error_field_postmaxavatarsize'] = "Maximum Avatar Dimensions";
  77  $l['error_field_useravatardims'] = "Default Avatar Dimensions";
  78  $l['error_field_maxavatardims'] = "Maximum Avatar Dimensions";
  79  $l['error_field_memberlistmaxavatarsize'] = "Maximum Display Avatar Dimensions";
  80  $l['error_missing_title'] = "You did not enter a title for this setting";
  81  $l['error_missing_group_title'] = "You did not enter a title for this setting group";
  82  $l['error_invalid_gid'] = "You did not select a valid group to place this setting in";
  83  $l['error_invalid_gid2'] = "You have followed a link to an invalid setting group. Please ensure it exists.";
  84  $l['error_missing_name'] = "You did not enter an identifier for this setting";
  85  $l['error_missing_group_name'] = "You did not enter an identifier for this setting group";
  86  $l['error_invalid_type'] = "You did not select a valid type for this setting";
  87  $l['error_invalid_sid'] = "The specified setting does not exist";
  88  $l['error_duplicate_name'] = "The identifier specified has already been used for the \"{1}\" setting -- it must be unique";
  89  $l['error_duplicate_group_name'] = "The identifier specified has already been used for the \"{1}\" setting group -- it must be unique";
  90  $l['error_no_settings_found'] = "No settings were found for the specified search phrase.";
  91  $l['error_cannot_edit_default'] = "Default settings and groups may not be edited or removed.";
  92  $l['error_cannot_edit_php'] = "This is a special type of setting which cannot be edited.";
  93  $l['error_ajax_search'] = "There was a problem searching for settings:";
  94  $l['error_ajax_unknown'] = "An unknown error occurred while searching for settings.";
  95  $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>.";
  96  $l['error_admin_email_settings_empty'] = '<div class="smalltext" style="font-weight: normal;">Please note that the <strong>Admin Email</strong> was not saved as the setting can not be empty, and must be a valid email address.</div>';
  97  
  98  $l['success_setting_added'] = "The setting has been created successfully.";
  99  $l['success_setting_updated'] = "The setting has been updated successfully.";
 100  $l['success_setting_deleted'] = "The selected setting has been deleted successfully.";
 101  $l['success_settings_updated'] = "The settings have been updated successfully.";
 102  $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>';
 103  $l['success_settings_updated_username_method_conflict'] = '<div class="smalltext" style="font-weight: normal;">Please note that the <b>Allowed Login Methods</b> setting was not updated due to emails to be registered multiple times is allowed currently.</div>';
 104  $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>';
 105  $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>';
 106  $l['success_settings_updated_captchaimage'] = '<div class="smalltext" style="font-weight: normal;">Please note that the <strong>CAPTCHA Images for Registration &amp; Posting</strong> setting was reverted to <strong>MyBB Default Captcha</strong> due to the lack of public/private key(s).</div>';
 107  $l['success_settings_updated_minsearchword'] = '<div class="smalltext" style="font-weight: normal;">Please note that the <strong>Minimum Search Word Length</strong> setting was set to match the database system configuration.</div>';
 108  $l['success_display_orders_updated'] = "The setting display orders have been updated successfully.";
 109  $l['success_setting_group_added'] = "The setting group has been created successfully.";
 110  $l['success_setting_group_updated'] = "The setting group has been updated successfully.";
 111  $l['success_setting_group_deleted'] = "The selected setting group has been deleted successfully.";
 112  $l['success_duplicate_settings_deleted'] = "All duplicate setting groups have been deleted successfully.";
 113  
 114  $l['searching'] = 'Searching&hellip;';
 115  $l['search_error'] = 'There was an error fetching your search results:';
 116  $l['search_done'] = 'Done!';
 117  


2005 - 2021 © MyBB.de | Alle Rechte vorbehalten! | Sponsor: netcup Cross-referenced by PHPXref