[ Index ]

PHP Cross Reference of MyBB

title

Body

[close]

/install/resources/ -> language.lang.php (source)

   1  <?php
   2  /* INSTALL LANGUAGE VARIABLES */
   3  $l['none'] = 'None';
   4  $l['not_installed'] = 'Not Installed';
   5  $l['installed'] = 'Installed';
   6  $l['not_writable'] = 'Not Writable';
   7  $l['writable'] = 'Writable';
   8  $l['done'] = 'done';
   9  $l['next'] = 'Next';
  10  $l['error'] = 'Error';
  11  $l['multi_byte'] = 'Multi-Byte';
  12  $l['recheck'] = 'Recheck';
  13  
  14  $l['title'] = "MyBB Installation Wizard";
  15  $l['welcome'] = 'Welcome';
  16  $l['license_agreement'] = 'License Agreement';
  17  $l['req_check'] = 'Requirements Check';
  18  $l['db_config'] = 'Database Configuration';
  19  $l['table_creation'] = 'Table Creation';
  20  $l['data_insertion'] = 'Data Insertion';
  21  $l['theme_install'] = 'Theme Installation';
  22  $l['board_config'] = 'Board Configuration';
  23  $l['admin_user'] = 'Administrator User';
  24  $l['finish_setup'] = 'Finish Setup';
  25  
  26  $l['table_population'] = 'Table Population';
  27  $l['theme_installation'] = 'Theme Insertion';
  28  $l['create_admin'] = 'Create Administrator Account';
  29  
  30  $l['already_installed'] = "MyBB is already installed";
  31  $l['mybb_already_installed'] = "<p>Welcome to the installation wizard for MyBB {1}. MyBB has detected it is already configured this directory.</p>
  32  <p>Please choose a suitable action below:</p>
  33  
  34  <div class=\"border_wrapper upgrade_note\" style=\"padding: 4px;\">
  35      <h3>Upgrade my existing copy of MyBB to {1} <span style=\"font-size: 80%; color: maroon;\">(Recommended)</span></h3>
  36      <p>This option will upgrade your current version of MyBB to MyBB {1}.</p>
  37      <p>You should choose this option when you wish to retain your current forum threads, posts, users and other information.</p>
  38      <form method=\"post\" action=\"upgrade.php\">
  39          <div class=\"next_button\"><input type=\"submit\" class=\"submit_button\" value=\"Upgrade to MyBB {1} &raquo;\" /></div>
  40      </form>
  41  </div>
  42  
  43  <div style=\"padding: 4px;\">
  44      <h3>Install a new copy of MyBB</h3>
  45      <p>This option will <span style=\"color: red;\">delete any existing forum you may have set up</span> and install a fresh version of MyBB.</p>
  46      <p>You should choose this option to erase your existing copy of MyBB if you wish to start again.</p>
  47      <form method=\"post\" action=\"index.php\" onsubmit=\"return confirm('Are you sure you wish to install a fresh copy of MyBB?\\n\\nThis will delete your existing forum. THIS PROCESS CANNOT BE UNDONE.');\">
  48          <input type=\"hidden\" name=\"action\" value=\"intro\" />
  49          <div class=\"next_button\"><input type=\"submit\" class=\"submit_button\" value=\"Install MyBB {1} &raquo;\" /></div>
  50      </form>
  51  </div>";
  52  
  53  $l['mybb_incorrect_folder'] = "<div class=\"border_wrapper upgrade_note\" style=\"padding: 4px;\">
  54      <h3>MyBB has detected that it is running from the \"Upload\" directory.</h3>
  55      <p>While there is nothing wrong with this, it is recommended that your upload the contents of the \"Upload\" directory and not the directory itself.<br /><br />For more information please see the <a href=\"http://docs.mybb.com/Help-Upload_Directory.html\" target=\"_blank\">MyBB Docs</a>.</p>
  56  </div>";
  57  
  58  $l['welcome_step'] = '<p>Welcome to the installation wizard for MyBB {1}. This wizard will install and configure a copy of MyBB on your server.</p>
  59  <p>Now that you\'ve uploaded the MyBB files the database and settings need to be created and imported. Below is an outline of what is going to be completed during installation.</p>
  60  <ul>
  61      <li>MyBB requirements checked</li>
  62      <li>Configuration of database engine</li>
  63      <li>Creation of database tables</li>
  64      <li>Default data inserted</li>
  65      <li>Default themes and templates imported</li>
  66      <li>Creation of an administrator account to manage your board</li>
  67      <li>Basic board settings configured</li>
  68  </ul>
  69  <p>After each step has successfully been completed, click Next to move on to the next step.</p>
  70  <p>Click "Next" to view the MyBB license agreement.</p>
  71  <p><input type="checkbox" name="allow_anonymous_info" value="1" id="allow_anonymous" checked="checked" /> <label for="allow_anonymous"> Send anonymous statistics about your server specifications to the MyBB Group</label> (<a href="http://docs.mybb.com/Anonymous_Statistics.html" style="color: #555;" target="_blank"><small>What information is sent?</small></a>)</p>';
  72  
  73  $l['license_step'] = '<div class="license_agreement">
  74  {1}
  75  </div>
  76  <p><strong>By clicking Next, you agree to the terms stated in the MyBB License Agreement above.</strong></p>';
  77  
  78  
  79  $l['req_step_top'] = '<p>Before you can install MyBB, we must check that you meet the minimum requirements for installation.</p>';
  80  $l['req_step_reqtable'] = '<div class="border_wrapper">
  81              <div class="title">Requirements Check</div>
  82          <table class="general" cellspacing="0">
  83          <thead>
  84              <tr>
  85                  <th colspan="2" class="first last">Requirements</th>
  86              </tr>
  87          </thead>
  88          <tbody>
  89          <tr class="first">
  90              <td class="first">PHP Version:</td>
  91              <td class="last alt_col">{1}</td>
  92          </tr>
  93          <tr class="alt_row">
  94              <td class="first">Supported DB Extensions:</td>
  95              <td class="last alt_col">{2}</td>
  96          </tr>
  97          <tr class="alt_row">
  98              <td class="first">Supported Translation Extensions:</td>
  99              <td class="last alt_col">{3}</td>
 100          </tr>
 101          <tr class="alt_row">
 102              <td class="first">PHP XML Extensions:</td>
 103              <td class="last alt_col">{4}</td>
 104          </tr>
 105          <tr class="alt_row">
 106              <td class="first">Configuration File Writable:</td>
 107              <td class="last alt_col">{5}</td>
 108          </tr>
 109          <tr>
 110              <td class="first">Settings File Writable:</td>
 111              <td class="last alt_col">{6}</td>
 112          </tr>
 113          <tr>
 114              <td class="first">Cache Directory Writable:</td>
 115              <td class="last alt_col">{7}</td>
 116          </tr>
 117          <tr class="alt_row">
 118              <td class="first">File Uploads Directory Writable:</td>
 119              <td class="last alt_col">{8}</td>
 120          </tr>
 121          <tr class="last">
 122              <td class="first">Avatar Uploads Directory Writable:</td>
 123              <td class="last alt_col">{9}</td>
 124          </tr>
 125          </tbody>
 126          </table>
 127          </div>';
 128  $l['req_step_reqcomplete'] = '<p><strong>Congratulations, you meet the requirements to run MyBB.</strong></p>
 129  <p>Click Next to continue with the installation process.</p>';
 130  
 131  $l['req_step_span_fail'] = '<span class="fail"><strong>{1}</strong></span>';
 132  $l['req_step_span_pass'] = '<span class="pass">{1}</span>';
 133  
 134  $l['req_step_error_box'] = '<p><strong>{1}</strong></p>';
 135  $l['req_step_error_phpversion'] = 'MyBB Requires PHP 5.1.0 or later to run. You currently have {1} installed.';
 136  $l['req_step_error_dboptions'] = 'MyBB requires one or more suitable database extensions to be installed. Your server reported that none were available.';
 137  $l['req_step_error_xmlsupport'] = 'MyBB requires PHP to be compiled with support for XML Data Handling. Please see <a href="http://www.php.net/xml" target="_blank">PHP.net</a> for more information.';
 138  $l['req_step_error_configdefaultfile'] = 'The configuration file (inc/config.default.php) could not be renamed. Please manually rename the <u>config.default.php</u> file to <u>config.php</u> to allow it to be written to or contact <a href="http://mybb.com/support" target="_blank">MyBB Support.</a>';
 139  $l['req_step_error_configfile'] = 'The configuration file (inc/config.php) is not writable. Please adjust the <a href="http://docs.mybb.com/CHMOD_Files.html" target="_blank">chmod</a> permissions to allow it to be written to.';
 140  $l['req_step_error_settingsfile'] = 'The settings file (inc/settings.php) is not writable. Please adjust the <a href="http://docs.mybb.com/CHMOD_Files.html" target="_blank">chmod</a> permissions to allow it to be written to.';
 141  $l['req_step_error_cachedir'] = 'The cache directory (cache/) is not writable. Please adjust the <a href="http://docs.mybb.com/CHMOD_Files.html" target="_blank">chmod</a> permissions to allow it to be written to.';
 142  $l['req_step_error_uploaddir'] = 'The uploads directory (uploads/) is not writable. Please adjust the <a href="http://docs.mybb.com/CHMOD_Files.html" target="_blank">chmod</a> permissions to allow it to be written to.';
 143  $l['req_step_error_avatardir'] = 'The avatars directory (uploads/avatars/) is not writable. Please adjust the <a href="http://docs.mybb.com/CHMOD_Files.html" target="_blank">chmod</a> permissions to allow it to be written to.';
 144  $l['req_step_error_cssddir'] = 'The css directory (css/) is not writable. Please adjust the <a href="http://docs.mybb.com/CHMOD_Files.html" target="_blank">chmod</a> permissions to allow it to be written to.';
 145  $l['req_step_error_tablelist'] = '<div class="error">
 146  <h3>Error</h3>
 147  <p>The MyBB Requirements check failed due to the reasons below. MyBB installation cannot continue because you did not meet the MyBB requirements. Please correct the errors below and try again:</p>
 148  {1}
 149  </div>';
 150  
 151  
 152  $l['db_step_config_db'] = '<p>It is now time to configure the database that MyBB will use as well as your database authentication details. If you do not have this information, it can usually be obtained from your webhost.</p>';
 153  $l['db_step_config_table'] = '<div class="border_wrapper">
 154  <div class="title">Database Configuration</div>
 155  <table class="general" cellspacing="0">
 156  <tr>
 157      <th colspan="2" class="first last">Database Settings</th>
 158  </tr>
 159  <tr class="first">
 160      <td class="first"><label for="dbengine">Database Engine:</label></td>
 161      <td class="last alt_col"><select name="dbengine" id="dbengine" onchange="updateDBSettings();">{1}</select></td>
 162  </tr>
 163  {2}
 164  </table>
 165  </div>
 166  <p>Once you\'ve checked these details are correct, click next to continue.</p>';
 167  
 168  $l['database_settings'] = "Database Settings";
 169  $l['database_path'] = "Database Path:";
 170  $l['database_host'] = "Database Server Hostname:";
 171  $l['database_user'] = "Database Username:";
 172  $l['database_pass'] = "Database Password:";
 173  $l['database_name'] = "Database Name:";
 174  $l['table_settings'] = "Table Settings";
 175  $l['table_prefix'] = "Table Prefix:";
 176  $l['table_encoding'] = "Table Encoding:";
 177  
 178  $l['db_step_error_config'] = '<div class="error">
 179  <h3>Error</h3>
 180  <p>There seems to be one or more errors with the database configuration information that you supplied:</p>
 181  {1}
 182  <p>Once the above are corrected, continue with the installation.</p>
 183  </div>';
 184  $l['db_step_error_invalidengine'] = 'You have selected an invalid database engine. Please make your selection from the list below.';
 185  $l['db_step_error_noconnect'] = 'Could not connect to the database server at \'{1}\' with the supplied username and password. Are you sure the hostname and user details are correct?';
 186  $l['db_step_error_nodbname'] = 'Could not select the database \'{1}\'. Are you sure it exists and the specified username and password have access to it?';
 187  $l['db_step_error_missingencoding'] = 'You have not selected an encoding yet. Please make sure you selected an encoding before continuing. (Select \'UTF-8 Unicode\' if you are not sure)';
 188  $l['db_step_error_sqlite_invalid_dbname'] = 'You may not use relative URLs for SQLite databases. Please use a file system path (ex: /home/user/database.db) for your SQLite database.';
 189  $l['db_step_error_invalid_tableprefix'] = 'You may only use an underscore (_) and alphanumeric characters in a table prefix. Please use a valid table prefix before continuing.';
 190  $l['db_step_error_tableprefix_too_long'] = 'You may only use a table prefix with a length of 40 characters or less. Please use a shorter table prefix before continuing.';
 191  
 192  $l['tablecreate_step_connected'] = '<p>Connection to the database server and database you specified was successful.</p>
 193  <p>Database Engine: {1} {2}</p>
 194  <p>The MyBB database tables will now be created.</p>';
 195  $l['tablecreate_step_created'] = 'Creating table {1}...';
 196  $l['tablecreate_step_done'] = '<p>All tables have been created, click Next to populate them.</p>';
 197  
 198  $l['populate_step_insert'] = '<p>Now that the basic tables have been created, it\'s time to insert the default data.</p>';
 199  $l['populate_step_inserted'] = '<p>The default data has successfully been inserted into the database. Click Next to insert the default MyBB template and theme sets.</p>';
 200  
 201  
 202  $l['theme_step_importing'] = '<p>Loading and importing theme and template file...</p>';
 203  $l['theme_step_imported'] = '<p>The default theme and template sets have been successfully inserted. Click Next to configure the basic options for your board.</p>';
 204  
 205  
 206  $l['config_step_table'] = '<p>It is now time for you to configure the basic settings for your forums such as forum name, URL, your website details, along with your "cookie" domain and paths. These settings can easily be changed in the future through the MyBB Admin Control Panel.</p>
 207          <div class="border_wrapper">
 208              <div class="title">Board Configuration</div>
 209              <table class="general" cellspacing="0">
 210                  <tbody>
 211                  <tr>
 212                      <th colspan="2" class="first last">Forum Details</th>
 213                  </tr>
 214                  <tr class="first">
 215                      <td class="first"><label for="bbname">Forum Name:</label></td>
 216                      <td class="last alt_col"><input type="text" class="text_input" name="bbname" id="bbname" value="{1}" /></td>
 217                  </tr>
 218                  <tr class="alt_row last">
 219                      <td class="first"><label for="bburl">Forum URL (No trailing slash):</label></td>
 220                      <td class="last alt_col"><input type="text" class="text_input" name="bburl" id="bburl" value="{2}" /></td>
 221                  </tr>
 222                  <tr>
 223                      <th colspan="2" class="first last">Website Details</th>
 224                  </tr>
 225                  <tr>
 226                      <td class="first"><label for="websitename">Website Name:</label></td>
 227                      <td class="last alt_col"><input type="text" class="text_input" name="websitename" id="websitename" value="{3}" /></td>
 228                  </tr>
 229                  <tr class="alt_row last">
 230                      <td class="first"><label for="websiteurl">Website URL:</label></td>
 231                      <td class="last alt_col"><input type="text" class="text_input" name="websiteurl" id="websiteurl" value="{4}" /></td>
 232                  </tr>
 233                  <tr>
 234                      <th colspan="2" class="first last">Cookie settings <a title="Whats this?" target="_blank" href="http://docs.mybb.com/Cookie_Settings.html">(?)</a></th>
 235                  </tr>
 236                  <tr>
 237                      <td class="first"><label for="cookiedomain">Cookie Domain:</label></td>
 238                      <td class="last alt_col"><input type="text" class="text_input" name="cookiedomain" id="cookiedomain" value="{5}" /></td>
 239                  </tr>
 240                  <tr class="alt_row last">
 241                      <td class="first"><label for="cookiepath">Cookie Path:</label></td>
 242                      <td class="last alt_col"><input type="text" class="text_input" name="cookiepath" id="cookiepath" value="{6}" /></td>
 243                  </tr>
 244                  <tr>
 245                      <th colspan="2" class="first last">Contact Details (Shown in footer)</th>
 246                  </tr>
 247                  <tr class="last">
 248                      <td class="first"><label for="contactemail">Contact Email:</label></td>
 249                      <td class="last alt_col"><input type="text" class="text_input" name="contactemail" id="contactemail" value="{7}" /></td>
 250                  </tr>
 251                  </tbody>
 252              </table>
 253          </div>
 254  
 255      <p>Once you\'ve correctly entered the details above and are ready to proceed, click Next.</p>';
 256  
 257  $l['config_step_error_config'] = '<div class="error">
 258  <h3>Error</h3>
 259  <p>There seems to be one or more errors with the board configuration you supplied:</p>
 260  {1}
 261  <p>Once the above are corrected, continue with the installation.</p>
 262  </div>';
 263  $l['config_step_error_url'] = 'You did not enter the URL to your forums.';
 264  $l['config_step_error_name'] = 'You did not enter a name for your copy of MyBB.';
 265  
 266  
 267  $l['admin_step_setupsettings'] = '<p>Setting up basic board settings...</p>';
 268  $l['admin_step_insertesettings'] = '<p>Inserted {1} settings into {2} groups.</p>
 269  <p>Updating settings with user defined values.</p>';
 270  $l['admin_step_insertedtasks'] = '<p>Inserted {1} scheduled tasks.</p>';
 271  $l['admin_step_insertedviews'] = '<p>Inserted {1} admin views.</p>';
 272  $l['admin_step_createadmin'] ='<p>You need to create an initial administrator account for you to login and manage your copy of MyBB. Please fill in the required fields below to create this account.</p>';
 273  $l['admin_step_admintable'] = '<div class="border_wrapper">
 274              <div class="title">Administrator Account Details</div>
 275  
 276          <table class="general" cellspacing="0">
 277          <thead>
 278          <tr>
 279              <th colspan="2" class="first last">Account Details</th>
 280          </tr>
 281          </thead>
 282          <tr class="first">
 283              <td class="first"><label for="adminuser">Username:</label></td>
 284              <td class="alt_col last"><input type="text" class="text_input" name="adminuser" id="adminuser" value="{1}" autocomplete="off" /></td>
 285          </tr>
 286          <tr class="alt_row">
 287              <td class="first"><label for="adminpass">Password:</label></td>
 288              <td class="alt_col last"><input type="password" class="text_input" name="adminpass" id="adminpass" value="" autocomplete="off"  /></td>
 289          </tr>
 290          <tr class="last">
 291              <td class="first"><label for="adminpass2">Retype Password:</label></td>
 292              <td class="alt_col last"><input type="password" class="text_input" name="adminpass2" id="adminpass2" value="" autocomplete="off"  /></td>
 293          </tr>
 294          <tr>
 295              <th colspan="2" class="first last">Contact Details</th>
 296          </tr>
 297          <tr class="first last">
 298              <td class="first"><label for="adminemail">Email Address:</label></td>
 299              <td class="alt_col last"><input type="text" class="text_input" name="adminemail" id="adminemail" value="{2}" /></td>
 300          </tr>
 301      </table>
 302      </div>
 303  
 304      <p>Once you\'ve correctly entered the details above and are ready to proceed, click Next.</p>';
 305  
 306  $l['admin_step_error_config'] = '<div class="error">
 307  <h3>Error</h3>
 308  <p>There seems to be one or more errors with the board configuration you supplied:</p>
 309  {1}
 310  <p>Once the above are corrected, continue with the installation.</p>
 311  </div>';
 312  $l['admin_step_error_nouser'] = 'You did not enter a username for your Administrator account.';
 313  $l['admin_step_error_nopassword'] = 'You did not enter a password for your Administrator account.';
 314  $l['admin_step_error_nomatch'] = 'The passwords you entered do not match.';
 315  $l['admin_step_error_noemail'] = 'You did not enter your email address for the Administrator\'s account.';
 316  
 317  $l['done_step_usergroupsinserted'] = "<p>Importing user groups...";
 318  $l['done_step_admincreated'] = '<p>Creating Administrator account...';
 319  $l['done_step_adminoptions'] = '<p>Building Administrator permissions...';
 320  $l['done_step_cachebuilding'] = '<p>Building data caches...';
 321  $l['done_step_success'] = '<p class="success">Your copy of MyBB has successfully been installed and configured correctly.</p>
 322  <p>The MyBB Group thanks you for your support in installing our software and we hope to see you around the <a href="http://community.mybb.com/" target="_blank">Community Forums</a> if you need help or wish to become a part of the MyBB community.</p>';
 323  $l['done_step_locked'] = '<p>Your installer has been locked. To unlock the installer please delete the \'lock\' file in this directory.</p><p>You may now proceed to your new copy of <a href="../index.php">MyBB</a> or its <a href="../admin/index.php">Admin Control Panel</a>.</p>';
 324  $l['done_step_dirdelete'] = '<p><strong><span style="colour:red">Please remove this directory before exploring your copy of MyBB.</span></strong></p>';
 325  $l['done_whats_next'] = '<div class="error"><p><strong>Switching from another forum software?</strong></p><p>MyBB offers a merge system for easy merging of multiple forums from various different popular forum software, allowing an easy conversion process to MyBB. If you\'re looking to switch to MyBB, you\'re heading in the right direction! Check out the <a target="_blank" href="http://www.mybb.com/downloads/merge-system">Merge System</a> for more information.</p>';
 326  
 327  /* UPGRADE LANGUAGE VARIABLES */
 328  $l['upgrade'] = "Upgrade Process";
 329  $l['upgrade_welcome'] = "<p>Welcome to the upgrade wizard for MyBB {1}.</p><p>Before you continue, please make sure you know which version of MyBB you were previously running as you will need to select it below.</p><p><strong>We strongly recommend that you also obtain a complete backup of your database and files before attempting to upgrade</strong> so if something goes wrong you can easily revert back to the previous version.  Also, ensure that your backups are complete before proceeding.</p><p>Make sure you only click Next ONCE on each step of the upgrade process. Pages may take a while to load depending on the size of your forum.</p><p>Once you are ready, please select your old version below and click Next to continue.</p>";
 330  $l['upgrade_templates_reverted'] = 'Templates Reverted';
 331  $l['upgrade_templates_reverted_success'] = "<p>All of the templates have successfully been reverted to the new ones contained in this release. Please press next to continue with the upgrade process.</p>";
 332  $l['upgrade_settings_sync'] = 'Settings Synchronisation';
 333  $l['upgrade_settings_sync_success'] = "<p>The board settings have been synchronised with the latest in MyBB.</p><p>{1} new settings inserted along with {2} new setting groups.</p><p>To finalise the upgrade, please click next below to continue.</p>";
 334  $l['upgrade_datacache_building'] = 'Data Cache Building';
 335  $l['upgrade_building_datacache'] = '<p>Building caches...';
 336  $l['upgrade_continue'] = 'Please press next to continue';
 337  $l['upgrade_locked'] = "<p>Your installer has been locked. To unlock the installer please delete the 'lock' file in this directory.</p><p>You may now proceed to your upgraded copy of <a href=\"../index.php\">MyBB</a> or its <a href=\"../{1}/index.php\">Admin Control Panel</a>.</p>";
 338  $l['upgrade_removedir'] = 'Please remove this directory before exploring your upgraded MyBB.';
 339  $l['upgrade_congrats'] = "<p>Congratulations, your copy of MyBB has successfully been updated to {1}.</p>{2}<p><strong>What's Next?</strong></p><ul><li>Please use the 'Find Updated Templates' tool in the Admin CP to find customised templates updated during this upgrade process. Edit them to contain the changes or revert them to originals.</li><li>Ensure that your board is still fully functional.</li></ul>";
 340  $l['upgrade_template_reversion'] = "Template Reversion Warning";
 341  $l['upgrade_template_reversion_success'] = "<p>All necessary database modifications have successfully been made to upgrade your board.</p><p>This upgrade requires all templates to be reverted to the new ones contained in the package so please back up any custom templates you have made before clicking next.";
 342  $l['upgrade_send_stats'] = "<p><input type=\"checkbox\" name=\"allow_anonymous_info\" value=\"1\" id=\"allow_anonymous\" checked=\"checked\" /> <label for=\"allow_anonymous\"> Send anonymous statistics about your server specifications to the MyBB Group</label> (<a href=\"http://docs.mybb.com/Anonymous_Statistics.html\" style=\"color: #555;\" target=\"_blank\"><small>What information is sent?</small></a>)</p>";
 343  
 344  /* Error messages */
 345  $l['locked'] = 'The installer is currently locked, please remove \'lock\' from the install directory to continue';
 346  ?>


Generated: Tue Oct 8 19:19:50 2013 Cross-referenced by PHPXref 0.7.1