Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 373
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3 *
4 * This file is part of the phpBB Forum Software package.
5 *
6 * @copyright (c) phpBB Limited <https://www.phpbb.com>
7 * @license GNU General Public License, version 2 (GPL-2.0)
8 *
9 * For full copyright and license information, please see
10 * the docs/CREDITS.txt file.
11 *
12 */
13
14/**
15 * DO NOT CHANGE
16 */
17if (!defined('IN_PHPBB'))
18{
19    exit;
20}
21
22if (empty($lang) || !is_array($lang))
23{
24    $lang = array();
25}
26
27// DEVELOPERS PLEASE NOTE
28//
29// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
30//
31// Placeholders can now contain order information, e.g. instead of
32// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
33// translators to re-order the output of data while ensuring it remains correct
34//
35// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
36// equally where a string contains only two placeholders which are used to wrap text
37// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
38
39// Common installer pages
40$lang = array_merge($lang, array(
41    'INSTALL_PANEL'    => 'Installation Panel',
42    'SELECT_LANG'    => 'Select language',
43
44    'STAGE_INSTALL'    => 'Installing phpBB',
45
46    // Introduction page
47    'INTRODUCTION_TITLE'    => 'Introduction',
48    'INTRODUCTION_BODY'        => 'Welcome to phpBB!<br /><br />phpBB® is the most widely used open source bulletin board solution in the world. phpBB is the latest installment in a package line started in 2000. Like its predecessors, phpBB is feature-rich, user-friendly, and fully supported by the phpBB Team. phpBB greatly improves on what made phpBB2 and phpBB3 popular, and adds commonly requested features that were not present in previous versions. We hope it exceeds your expectations.<br /><br />This installation system will guide you through installing phpBB, updating to the latest version of phpBB from past releases, as well as converting to phpBB from a different discussion board system (including phpBB2). For more information, we encourage you to read <a href="%1$s">the installation guide</a>.<br /><br />To read the phpBB license or learn about obtaining support and our stance on it, please select the respective options from the side menu. To continue, please select the appropriate tab above.',
49
50    // Support page
51    'SUPPORT_TITLE'        => 'Support',
52    'SUPPORT_BODY'        => 'Full support will be provided for the current stable release of phpBB, free of charge. This includes:</p><ul><li>installation</li><li>configuration</li><li>technical questions</li><li>problems relating to potential bugs in the software</li><li>updating from Release Candidate (RC) versions to the latest stable version</li><li>converting from phpBB 2.0.x to phpBB</li><li>converting from other discussion board software to phpBB (please see the <a href="https://www.phpbb.com/community/viewforum.php?f=486">Convertors Forum</a>)</li></ul><p>We encourage users still running pre-release versions of phpBB to replace their installation with a fresh copy of the latest version.</p><h2>Extensions / Styles</h2><p>For issues relating to Extensions, please post in the appropriate <a href="https://www.phpbb.com/community/viewforum.php?f=451">Extensions Forum</a>.<br />For issues relating to styles, templates and themes, please post in the appropriate <a href="https://www.phpbb.com/community/viewforum.php?f=471">Styles Forum</a>.<br /><br />If your question relates to a specific package, please post directly in the topic dedicated to the package.</p><h2>Obtaining Support</h2><p><a href="https://www.phpbb.com/support/">Support Section</a><br /><a href="https://www.phpbb.com/support/docs/en/3.3/ug/quickstart/">Quick Start Guide</a><br /><br />To ensure you stay up to date with the latest news and releases, follow us on <a href="https://www.twitter.com/phpbb/">Twitter</a> and <a href="https://www.facebook.com/phpbb/">Facebook</a><br /><br />',
53
54    // License
55    'LICENSE_TITLE'        => 'General Public License',
56
57    // Install page
58    'INSTALL_INTRO'            => 'Welcome to Installation',
59    'INSTALL_INTRO_BODY'    => 'With this option, it is possible to install phpBB onto your server.</p><p>In order to proceed, you will need your database settings. If you do not know your database settings, please contact your host and ask for them. You will not be able to continue without them. You need:</p>
60
61    <ul>
62        <li>The Database Type - the database you will be using.</li>
63        <li>The Database server hostname or DSN - the address of the database server.</li>
64        <li>The Database server port - the port of the database server (most of the time this is not needed).</li>
65        <li>The Database name - the name of the database on the server.</li>
66        <li>The Database username and Database password - the login data to access the database.</li>
67    </ul>
68
69    <p><strong>Note:</strong> if you are installing using SQLite, you should enter the full path to your database file in the DSN field and leave the username and password fields blank. For security reasons, you should make sure that the database file is not stored in a location accessible from the web.</p>
70
71    <p>phpBB supports the following databases:</p>
72    <ul>
73        <li>MySQL 5.6 or above</li>
74        <li>MariaDB 10.2.7 or above</li>
75        <li>PostgreSQL 9.4 or above</li>
76        <li>SQLite 3.8.3 or above</li>
77        <li>MS SQL Server 2012 or above (via ODBC or the native adapter)</li>
78        <li>Oracle</li>
79    </ul>
80
81    <p>Only those databases supported on your server will be displayed.',
82
83    'ACP_LINK'    => 'Take me to <a href="%1$s">the ACP</a>',
84
85    'INSTALL_PHPBB_INSTALLED'        => 'phpBB is already installed.',
86    'INSTALL_PHPBB_NOT_INSTALLED'    => 'phpBB is not installed yet.',
87    'INSTALL_RESTART'                => 'Restart installation',
88));
89
90// Requirements translation
91$lang = array_merge($lang, array(
92    // Filesystem requirements
93    'FILE_NOT_EXISTS'                        => 'File does not exist',
94    'FILE_NOT_EXISTS_EXPLAIN'                => 'To be able to install phpBB the %1$s file needs to exist.',
95    'FILE_NOT_EXISTS_EXPLAIN_OPTIONAL'        => 'It is recommended that the %1$s file exist for a better forum user experience.',
96    'FILE_NOT_WRITABLE'                        => 'File is not writable',
97    'FILE_NOT_WRITABLE_EXPLAIN'                => 'To be able to install phpBB the %1$s file needs to be writable.',
98    'FILE_NOT_WRITABLE_EXPLAIN_OPTIONAL'    => 'It is recommended that the %1$s file be writable for a better forum user experience.',
99
100    'DIRECTORY_NOT_EXISTS'                        => 'Directory does not exist',
101    'DIRECTORY_NOT_EXISTS_EXPLAIN'                => 'To be able to install phpBB the %1$s directory needs to exist.',
102    'DIRECTORY_NOT_EXISTS_EXPLAIN_OPTIONAL'        => 'It is recommended that the %1$s directory exist for a better forum user experience.',
103    'DIRECTORY_NOT_WRITABLE'                    => 'Directory is not writable',
104    'DIRECTORY_NOT_WRITABLE_EXPLAIN'            => 'To be able to install phpBB the %1$s directory needs to be writable.',
105    'DIRECTORY_NOT_WRITABLE_EXPLAIN_OPTIONAL'    => 'It is recommended that the %1$s directory be writable for a better forum user experience.',
106
107    // Server requirements
108    'PHP_VERSION_REQD'                    => 'PHP version',
109    'PHP_VERSION_REQD_EXPLAIN'            => 'phpBB requires PHP version 8.2.0 or higher.',
110    'PHP_GETIMAGESIZE_SUPPORT'            => 'PHP getimagesize() function is required',
111    'PHP_GETIMAGESIZE_SUPPORT_EXPLAIN'    => 'In order for phpBB to function correctly, the getimagesize function needs to be available.',
112    'PCRE_UTF_SUPPORT'                    => 'PCRE UTF-8 support',
113    'PCRE_UTF_SUPPORT_EXPLAIN'            => 'phpBB will not run if your PHP installation is not compiled with UTF-8 support in the PCRE extension.',
114    'PHP_MBSTRING_SUPPORT'                => 'PHP mbstring support',
115    'PHP_MBSTRING_SUPPORT_EXPLAIN'        => 'In order for phpBB to function correctly, the PHP mbstring extension needs to be available.',
116    'PHP_XML_SUPPORT'                    => 'PHP XML/DOM support',
117    'PHP_XML_SUPPORT_EXPLAIN'            => 'In order for phpBB to function correctly, the PHP XML/DOM extension needs to be available.',
118    'PHP_SUPPORTED_DB'                    => 'Supported databases',
119    'PHP_SUPPORTED_DB_EXPLAIN'            => 'You must have support for at least one compatible database within PHP. If no database modules are shown as available you should contact your hosting provider or review the relevant PHP installation documentation for advice.',
120
121    'RETEST_REQUIREMENTS'    => 'Retest requirements',
122
123    'STAGE_REQUIREMENTS'    => 'Check requirements',
124));
125
126// General error messages
127$lang = array_merge($lang, array(
128    'INST_ERR_MISSING_DATA'        => 'You must fill out all fields in this block.',
129
130    'TIMEOUT_DETECTED_TITLE'    => 'The installer detected a timeout',
131    'TIMEOUT_DETECTED_MESSAGE'    => 'The installer has detected a timeout, you may try to refresh the page, which may lead to data corruption. We suggest that you either increase your timeout settings or try to use the CLI.',
132));
133
134// Data obtaining translations
135$lang = array_merge($lang, array(
136    'STAGE_OBTAIN_DATA'    => 'Set installation data',
137
138    //
139    // Admin data
140    //
141    'STAGE_ADMINISTRATOR'    => 'Administrator details',
142
143    // Form labels
144    'ADMIN_CONFIG'                => 'Administrator configuration',
145    'ADMIN_PASSWORD'            => 'Administrator password',
146    'ADMIN_PASSWORD_CONFIRM'    => 'Confirm administrator password',
147    'ADMIN_PASSWORD_EXPLAIN'    => 'Please enter a password between 6 and 30 characters in length.',
148    'ADMIN_USERNAME'            => 'Administrator username',
149    'ADMIN_USERNAME_EXPLAIN'    => 'Please enter a username between 3 and 20 characters in length.',
150
151    // Errors
152    'INST_ERR_EMAIL_INVALID'        => 'The email address you entered is invalid.',
153    'INST_ERR_PASSWORD_MISMATCH'    => 'The passwords you entered did not match.',
154    'INST_ERR_PASSWORD_TOO_LONG'    => 'The password you entered is too long. The maximum length is 30 characters.',
155    'INST_ERR_PASSWORD_TOO_SHORT'    => 'The password you entered is too short. The minimum length is 6 characters.',
156    'INST_ERR_USER_TOO_LONG'        => 'The username you entered is too long. The maximum length is 20 characters.',
157    'INST_ERR_USER_TOO_SHORT'        => 'The username you entered is too short. The minimum length is 3 characters.',
158
159    //
160    // Board data
161    //
162    // Form labels
163    'BOARD_CONFIG'        => 'Bulletin board configuration',
164    'DEFAULT_LANGUAGE'    => 'Default language',
165    'BOARD_NAME'        => 'Title of the board',
166    'BOARD_DESCRIPTION'    => 'Short description of the board',
167
168    //
169    // Database data
170    //
171    'STAGE_DATABASE'    => 'Database settings',
172
173    // Form labels
174    'DB_CONFIG'                => 'Database configuration',
175    'DBMS'                    => 'Database type',
176    'DB_HOST'                => 'Database server hostname or DSN',
177    'DB_HOST_EXPLAIN'        => 'DSN stands for Data Source Name and is relevant only for ODBC installs. On PostgreSQL, use localhost to connect to the local server via UNIX domain socket and 127.0.0.1 to connect via TCP. For SQLite, enter the full path to your database file.',
178    'DB_PORT'                => 'Database server port',
179    'DB_PORT_EXPLAIN'        => 'Leave this blank unless you know the server operates on a non-standard port.',
180    'DB_PASSWORD'            => 'Database password',
181    'DB_NAME'                => 'Database name',
182    'DB_USERNAME'            => 'Database username',
183    'DATABASE_VERSION'        => 'Database version',
184    'TABLE_PREFIX'            => 'Prefix for tables in database',
185    'TABLE_PREFIX_EXPLAIN'    => 'The prefix must start with a letter and must only contain letters, numbers and underscores.',
186
187    // Database options
188    'DB_OPTION_MSSQL_ODBC'    => 'MSSQL Server via ODBC',
189    'DB_OPTION_MSSQLNATIVE'    => 'MSSQL Server [ Native ]',
190    'DB_OPTION_MYSQLI'        => 'MySQL',
191    'DB_OPTION_ORACLE'        => 'Oracle',
192    'DB_OPTION_POSTGRES'    => 'PostgreSQL',
193    'DB_OPTION_SQLITE3'        => 'SQLite 3',
194
195    // Errors
196    'INST_ERR_DB'                    => 'Database installation error',
197    'INST_ERR_NO_DB'                => 'Cannot load the PHP module for the selected database type.',
198    'INST_ERR_DB_INVALID_PREFIX'    => 'The prefix you entered is invalid. It must start with a letter and must only contain letters, numbers and underscores.',
199    'INST_ERR_PREFIX_TOO_LONG'        => 'The table prefix you have specified is too long. The maximum length is %d characters.',
200    'INST_ERR_DB_NO_NAME'            => 'No database name specified.',
201    'INST_ERR_DB_FORUM_PATH'        => 'The database file specified is within your board directory tree. You should put this file in a non web-accessible location.',
202    'INST_ERR_DB_CONNECT'            => 'Could not connect to the database, see error message below.',
203    'INST_ERR_DB_NO_WRITABLE'        => 'Both the database and the directory containing it must be writable.',
204    'INST_ERR_DB_NO_ERROR'            => 'No error message given.',
205    'INST_ERR_PREFIX'                => 'Tables with the specified prefix already exist, please choose an alternative.',
206    'INST_ERR_DB_NO_MARIADB'        => 'The version of MariaDB installed on this machine is too old, it must be upgraded to at least 10.2.7.',
207    'INST_ERR_DB_NO_MYSQLI'            => 'The version of MySQL installed on this machine is too old, it must be upgraded to at least 5.6.',
208    'INST_ERR_DB_NO_MSSQL'            => 'The version of Microsoft SQL Server installed on this machine is too old, it must be upgraded to at least SQL Server 2012 (11.0.2100.60)',
209    'INST_ERR_DB_NO_SQLITE3'        => 'The version of the SQLite extension you have installed is too old, it must be upgraded to at least 3.8.3.',
210    'INST_ERR_DB_NO_ORACLE'            => 'The version of Oracle installed is too old, it must be upgraded to at least 12.1.0.2.',
211    'INST_ERR_DB_NO_POSTGRES'        => 'The version of the PostgreSQL you have installed is too old, it must be upgraded to at least 9.4.',
212    'INST_ERR_DB_NO_POSTGRES_UTF8'    => 'The database you have selected was not created in <var>UNICODE</var> or <var>UTF8</var> encoding. Try installing with a database in <var>UNICODE</var> or <var>UTF8</var> encoding.',
213    'INST_SCHEMA_FILE_NOT_WRITABLE'    => 'The schema file is not writable',
214
215    //
216    // Email data
217    //
218    'EMAIL_CONFIG'    => 'E-mail configuration',
219
220    // Package info
221    'PACKAGE_VERSION'                    => 'Package version installed',
222    'UPDATE_INCOMPLETE'                => 'Your phpBB installation has not been correctly updated.',
223    'UPDATE_INCOMPLETE_MORE'        => 'Please read the information below in order to fix this error.',
224    'UPDATE_INCOMPLETE_EXPLAIN'        => '<h1>Incomplete update</h1>
225
226        <p>We noticed that the last update of your phpBB installation hasn’t been completed. Visit the <a href="%1$s" title="%1$s">database updater</a>, ensure <em>Update database only</em> is selected and click on <strong>Submit</strong>. Don\'t forget to delete the "install"-directory after you have updated the database successfully.</p>',
227
228    // Auto update
229    'UPDATE_PACKAGE_DOWNLOAD_FAILURE'        => 'Failed to download the update package.',
230    'UPDATE_SIGNATURE_DOWNLOAD_FAILURE'        => 'Failed to download the update package signature.',
231    'UPDATE_SIGNATURE_INVALID'                => 'The update package is corrupted.',
232    'UPDATE_PACKAGE_EXTRACT_FAILURE'        => 'Could not extract files from the update package.',
233    'UPDATE_FILES_COPY_FAILURE'                => 'Could not copy files from the update package.',
234
235    //
236    // Server data
237    //
238    // Form labels
239    'UPGRADE_INSTRUCTIONS'            => 'A new feature release <strong>%1$s</strong> is available. Please read <a href="%2$s" title="%2$s"><strong>the release announcement</strong></a> to learn about what it has to offer, and how to upgrade.',
240    'SERVER_CONFIG'                => 'Server configuration',
241    'SCRIPT_PATH'                => 'Script path',
242    'SCRIPT_PATH_EXPLAIN'        => 'The path where phpBB is located relative to the domain name, e.g. <samp>/phpBB</samp>.',
243));
244
245// Default database schema entries...
246$lang = array_merge($lang, array(
247    'CONFIG_BOARD_EMAIL_SIG'        => 'Thanks, The Management',
248    'CONFIG_SITE_DESC'                => 'A short text to describe your forum',
249    'CONFIG_SITENAME'                => 'yourdomain.com',
250
251    'DEFAULT_INSTALL_POST'            => '<t>This is an example post in your phpBB installation. Everything seems to be working. You may delete this post if you like and continue to set up your board. During the installation process your first category and your first forum are assigned an appropriate set of permissions for the predefined usergroups administrators, bots, global moderators, guests, registered users and registered COPPA users. If you also choose to delete your first category and your first forum, do not forget to assign permissions for all these usergroups for all new categories and forums you create. It is recommended to rename your first category and your first forum and copy permissions from these while creating new categories and forums. Have fun!</t>',
252
253    'FORUMS_FIRST_CATEGORY'            => 'Your first category',
254    'FORUMS_TEST_FORUM_DESC'        => 'Description of your first forum.',
255    'FORUMS_TEST_FORUM_TITLE'        => 'Your first forum',
256
257    'RANKS_SITE_ADMIN_TITLE'        => 'Site Admin',
258    'REPORT_WAREZ'                    => 'The post contains links to illegal or pirated software.',
259    'REPORT_SPAM'                    => 'The reported post has the only purpose to advertise for a website or another product.',
260    'REPORT_OFF_TOPIC'                => 'The reported post is off topic.',
261    'REPORT_OTHER'                    => 'The reported post does not fit into any other category, please use the further information field.',
262
263    'SMILIES_ARROW'                    => 'Arrow',
264    'SMILIES_CONFUSED'                => 'Confused',
265    'SMILIES_COOL'                    => 'Cool',
266    'SMILIES_CRYING'                => 'Crying or Very Sad',
267    'SMILIES_EMARRASSED'            => 'Embarrassed',
268    'SMILIES_EVIL'                    => 'Evil or Very Mad',
269    'SMILIES_EXCLAMATION'            => 'Exclamation',
270    'SMILIES_GEEK'                    => 'Geek',
271    'SMILIES_IDEA'                    => 'Idea',
272    'SMILIES_LAUGHING'                => 'Laughing',
273    'SMILIES_MAD'                    => 'Mad',
274    'SMILIES_MR_GREEN'                => 'Mr. Green',
275    'SMILIES_NEUTRAL'                => 'Neutral',
276    'SMILIES_QUESTION'                => 'Question',
277    'SMILIES_RAZZ'                    => 'Razz',
278    'SMILIES_ROLLING_EYES'            => 'Rolling Eyes',
279    'SMILIES_SAD'                    => 'Sad',
280    'SMILIES_SHOCKED'                => 'Shocked',
281    'SMILIES_SMILE'                    => 'Smile',
282    'SMILIES_SURPRISED'                => 'Surprised',
283    'SMILIES_TWISTED_EVIL'            => 'Twisted Evil',
284    'SMILIES_UBER_GEEK'                => 'Uber Geek',
285    'SMILIES_VERY_HAPPY'            => 'Very Happy',
286    'SMILIES_WINK'                    => 'Wink',
287
288    'TOPICS_TOPIC_TITLE'            => 'Welcome to phpBB',
289));
290
291// Common navigation items' translation
292$lang = array_merge($lang, array(
293    'MENU_OVERVIEW'        => 'Overview',
294    'MENU_INTRO'        => 'Introduction',
295    'MENU_LICENSE'        => 'License',
296    'MENU_SUPPORT'        => 'Support',
297));
298
299// Task names
300$lang = array_merge($lang, array(
301    // Install filesystem
302    'TASK_CREATE_CONFIG_FILE'    => 'Creating configuration file',
303
304    // Install database
305    'TASK_ADD_CONFIG_SETTINGS'            => 'Adding configuration settings',
306    'TASK_UPDATE_POSTS'                    => 'Adding default forums, topics and posts',
307    'TASK_ADD_DEFAULT_DATA'                => 'Adding default settings to the database',
308    'TASK_CREATE_DATABASE_SCHEMA_FILE'    => 'Creating database schema file',
309    'TASK_SETUP_DATABASE'                => 'Setting up database',
310    'TASK_CREATE_TABLES'                => 'Creating tables',
311
312    // Install data
313    'TASK_ADD_BOTS'                => 'Registering bots',
314    'TASK_ADD_LANGUAGES'        => 'Installing available languages',
315    'TASK_SET_LANGUAGES'        => 'Adding language profile fields',
316    'TASK_ADD_MODULES'            => 'Installing modules',
317    'TASK_CREATE_SEARCH_INDEX'    => 'Creating search index',
318
319    // Install finish tasks
320    'TASK_INSTALL_EXTENSIONS'    => 'Installing packaged extensions',
321    'TASK_NOTIFY_USER'            => 'Sending notification e-mail',
322    'TASK_POPULATE_MIGRATIONS'    => 'Populating migrations',
323
324    // Installer general progress messages
325    'INSTALLER_FINISHED'    => 'The installer has finished successfully',
326));
327
328// Installer's general messages
329$lang = array_merge($lang, array(
330    'MODULE_NOT_FOUND'                => 'Module not found',
331    'MODULE_NOT_FOUND_DESCRIPTION'    => 'A module could not be found because the service, %s, is undefined.',
332
333    'TASK_NOT_FOUND'                => 'Task not found',
334    'TASK_NOT_FOUND_DESCRIPTION'    => 'A task could not be found because the service, %s, is undefined.',
335
336    'SKIP_MODULE'    => 'Skip “%s” module',
337    'SKIP_TASK'        => 'Skip “%s” task',
338
339    'TASK_SERVICE_INSTALLER_MISSING'    => 'All installer task services should start with “installer”',
340    'TASK_CLASS_NOT_FOUND'                => 'Installer task service definition is invalid. Service name “%1$s” given, the expected class namespace is “%2$s” for that. For more information please see the documentation of task_interface.',
341
342    'INSTALLER_CONFIG_NOT_WRITABLE'    => 'The installer config file is not writable.',
343));
344
345// CLI messages
346$lang = array_merge($lang, array(
347    'CLI_INSTALL_BOARD'                => 'Install phpBB',
348    'CLI_UPDATE_BOARD'                => 'Update phpBB',
349    'CLI_INSTALL_SHOW_CONFIG'        => 'Show the configuration which will be used',
350    'CLI_INSTALL_VALIDATE_CONFIG'    => 'Validate a configuration file',
351    'CLI_CONFIG_FILE'                => 'Config file to use',
352    'MISSING_FILE'                    => 'Unable to access file %1$s',
353    'MISSING_DATA'                    => 'Config file is missing data or might contain invalid settings.',
354    'INVALID_YAML_FILE'                => 'Could not parse YAML file %1$s',
355    'CONFIGURATION_VALID'            => 'The configuration file is valid',
356));
357
358// Common updater messages
359$lang = array_merge($lang, array(
360    'UPDATE_INSTALLATION'            => 'Update phpBB installation',
361    'UPDATE_INSTALLATION_EXPLAIN'    => 'With this option, it is possible to update your phpBB installation to the latest version.<br />During the process all of your files will be checked for their integrity. You are able to review all differences and files before the update.<br /><br />The file update itself can be done in two different ways.</p><h2>Manual Update</h2><p>With this update you only download your personal set of changed files to make sure you do not lose your file modifications you may have done. After you downloaded this package you need to manually upload the files to their correct position under your phpBB root directory. Once done, you are able to do the file check stage again to see if you moved the files to their correct location.</p><h2>Advanced Update with FTP</h2><p>This method is similar to the first one but without the need to download the changed files and uploading them on your own. This will be done for you. In order to use this method you need to know your FTP login details since you will be asked for them. Once finished you will be redirected to the file check again to make sure everything got updated correctly.<br /><br />',
362    'UPDATE_INSTRUCTIONS'            => '
363
364        <h1>Release announcement</h1>
365
366        <p>Please read the release announcement for the latest version before you continue your update process, it may contain useful information. It also contains full download links as well as the change log.</p>
367
368        <br />
369
370        <h1>How to update your installation with the Full Package</h1>
371
372        <p>The recommended way of updating your installation is using the full package. If core phpBB files have been modified in your installation you may wish to use the advanced update package in order to not lose these changes. You are also able to update your installation using the other methods listed within the INSTALL.html document. The steps for updating phpBB using the full package are:</p>
373
374        <ol style="margin-left: 20px; font-size: 1.1em;">
375            <li><strong class="error">Backup all board files and the database.</strong></li>
376            <li>Go to the <a href="https://www.phpbb.com/downloads/" title="https://www.phpbb.com/downloads/">phpBB.com downloads page</a> and download the latest "Full Package" archive.</li>
377            <li>Unpack the archive.</li>
378            <li>Remove (delete) the <code class="inline">config.php</code> file, and the <code class="inline">/images</code>, <code class="inline">/store</code> and <code class="inline">/files</code> folders <em>from the package</em> (not your site).</li>
379            <li>Go to the ACP, Board settings, and make sure prosilver is set as the default style. If not, set it to prosilver.</li>
380            <li>Delete the <code class="inline">/vendor</code> and <code class="inline">/cache</code> folders from the board’s root folder on the host.</li>
381            <li>Via FTP or SSH upload the remaining files and folders (that is, the remaining CONTENTS of the phpBB folder) to the root folder of your board installation on the server, overwriting the existing files. (Note: take care not to delete any extensions in your <code class="inline">/ext</code> folder when uploading the new phpBB contents.)</li>
382            <li><strong><a href="%1$s" title="%1$s">Now start the update process by pointing your browser to the install folder</a>.</strong></li>
383            <li>Follow the steps to update the database and let that run to completion.</li>
384            <li>Via FTP or SSH delete the <code class="inline">/install</code> folder from the root of your board installation.<br><br></li>
385        </ol>
386
387        <p>You now have a new up to date board containing all your users and posts. Follow up tasks:</p>
388        <ul style="margin-left: 20px; font-size: 1.1em;">
389            <li>Update your language pack</li>
390            <li>Update your style<br><br></li>
391        </ul>
392
393        <h1>How to update your installation with the Advanced Update Package</h1>
394
395        <p>The advanced update package is only recommended for expert users in case core phpBB files have been modified in your installation. You are also able to update your installation using the methods listed within the INSTALL.html document. The steps for updating phpBB using the advanced update package are:</p>
396
397        <ol style="margin-left: 20px; font-size: 1.1em;">
398            <li>Go to the <a href="https://www.phpbb.com/downloads/" title="https://www.phpbb.com/downloads/">phpBB.com downloads page</a> and download the "Advanced Update Package" archive.</li>
399            <li>Unpack the archive.</li>
400            <li>Upload the complete uncompressed "install" and "vendor" folders to your phpBB root directory (where your config.php file is).<br><br></li>
401        </ol>
402
403        <p>Once uploaded your board will be offline for normal users due to the install directory you uploaded now being present.<br /><br />
404        <strong><a href="%1$s" title="%1$s">Now start the update process by pointing your browser to the install folder</a>.</strong><br />
405        <br />
406        You will then be guided through the update process. You will be notified once the update is complete.
407        </p>
408    ',
409));
410
411// Updater forms
412$lang = array_merge($lang, array(
413    // Updater types
414    'UPDATE_TYPE'            => 'Type of update to run',
415
416    'UPDATE_TYPE_ALL'        => 'Update filesystem and database',
417    'UPDATE_TYPE_DB_ONLY'    => 'Update database only',
418
419    // File updater methods
420    'UPDATE_FILE_METHOD_TITLE'        => 'File updater methods',
421
422    'UPDATE_FILE_METHOD'            => 'File updater method',
423    'UPDATE_FILE_METHOD_DOWNLOAD'    => 'Download modified files in an archive',
424    'UPDATE_FILE_METHOD_FTP'        => 'Update files via FTP (Automatic)',
425    'UPDATE_FILE_METHOD_FILESYSTEM'    => 'Update files via direct file access (Automatic)',
426
427    // File updater archives
428    'SELECT_DOWNLOAD_FORMAT'    => 'Select download archive format',
429
430    // FTP settings
431    'FTP_SETTINGS'            => 'FTP settings',
432));
433
434// Requirements messages
435$lang = array_merge($lang, array(
436    'UPDATE_FILES_NOT_FOUND'    => 'No valid update directory was found, please make sure you uploaded the relevant files.',
437
438    'NO_UPDATE_FILES_UP_TO_DATE'    => 'Your version is up to date. There is no need to run the update tool. If you want to make an integrity check on your files make sure you uploaded the correct update files.',
439    'OLD_UPDATE_FILES'                => 'Update files are out of date. The update files found are for updating from phpBB %1$s to phpBB %2$s but the latest version of phpBB is %3$s.',
440    'INCOMPATIBLE_UPDATE_FILES'        => 'The update files found are incompatible with your installed version. Your installed version is %1$s and the update file is for updating phpBB %2$s to %3$s.',
441));
442
443// Update files
444$lang = array_merge($lang, array(
445    'STAGE_UPDATE_FILES'        => 'Update files',
446
447    // Check files
448    'UPDATE_CHECK_FILES'    => 'Check files to update',
449
450    // Update file differ
451    'FILE_DIFFER_ERROR_FILE_CANNOT_BE_READ'    => 'The file differ failed to open %s.',
452
453    'UPDATE_FILE_DIFF'        => 'Diffing changed files',
454    'ALL_FILES_DIFFED'        => 'All modified files has been diffed.',
455
456    // File status
457    'UPDATE_CONTINUE_FILE_UPDATE'    => 'Update files',
458
459    'DOWNLOAD'                            => 'Download',
460    'DOWNLOAD_CONFLICTS'                => 'Download merge conflicts archive',
461    'DOWNLOAD_CONFLICTS_EXPLAIN'        => 'Search for &lt;&lt;&lt; to spot conflicts',
462    'DOWNLOAD_UPDATE_METHOD'            => 'Download modified files archive',
463    'DOWNLOAD_UPDATE_METHOD_EXPLAIN'    => 'Once downloaded you should unpack the archive. You will find the modified files you need to upload to your phpBB root directory within it. Please upload the files to their respective locations then. After you have uploaded all files, you may continue with the update process.',
464
465    'FILE_ALREADY_UP_TO_DATE'        => 'File is already up to date.',
466    'FILE_DIFF_NOT_ALLOWED'            => 'File not allowed to be diffed.',
467    'FILE_USED'                        => 'Information used from',            // Single file
468    'FILES_CONFLICT'                => 'Conflict files',
469    'FILES_CONFLICT_EXPLAIN'        => 'The following files are modified and do not represent the original files from the old version. phpBB determined that these files create conflicts if they are tried to be merged. Please investigate the conflicts and try to manually resolve them or continue the update choosing the preferred merging method. If you resolve the conflicts manually check the files again after you modified them. You are also able to choose between the preferred merge method for every file. The first one will result in a file where the conflicting lines from your old file will be lost, the other one will result in losing the changes from the newer file.',
470    'FILES_DELETED'                    => 'Deleted files',
471    'FILES_DELETED_EXPLAIN'            => 'The following files do not exist in the new version. These files have to be deleted from your installation.',
472    'FILES_MODIFIED'                => 'Modified files',
473    'FILES_MODIFIED_EXPLAIN'        => 'The following files are modified and do not represent the original files from the old version. The updated file will be a merge between your modifications and the new file.',
474    'FILES_NEW'                        => 'New files',
475    'FILES_NEW_EXPLAIN'                => 'The following files currently do not exist within your installation. These files will be added to your installation.',
476    'FILES_NEW_CONFLICT'            => 'New conflicting files',
477    'FILES_NEW_CONFLICT_EXPLAIN'    => 'The following files are new within the latest version but it has been determined that there is already a file with the same name within the same position. This file will be overwritten by the new file.',
478    'FILES_NOT_MODIFIED'            => 'Not modified files',
479    'FILES_NOT_MODIFIED_EXPLAIN'    => 'The following files are not modified and represent the original phpBB files from the version you want to update from.',
480    'FILES_UP_TO_DATE'                => 'Already updated files',
481    'FILES_UP_TO_DATE_EXPLAIN'        => 'The following files are already up to date and do not need to be updated.',
482    'FILES_VERSION'                    => 'Files Version',
483    'TOGGLE_DISPLAY'                => 'View/Hide file list',
484
485    // File updater
486    'UPDATE_UPDATING_FILES'    => 'Updating files',
487
488    'UPDATE_FILE_UPDATER_HAS_FAILED'    => 'File updater “%1$s“ has failed. The installer will try to fallback to “%2$s“.',
489    'UPDATE_FILE_UPDATERS_HAVE_FAILED'    => 'The file updater failed. No further fallback methods are available.',
490
491    'UPDATE_CONTINUE_UPDATE_PROCESS'    => 'Continue update process',
492    'UPDATE_RECHECK_UPDATE_FILES'        => 'Check files again',
493));
494
495// Update database
496$lang = array_merge($lang, array(
497    'STAGE_UPDATE_DATABASE'        => 'Update database',
498
499    'INLINE_UPDATE_SUCCESSFUL'        => 'The database update was successful.',
500
501    'TASK_UPDATE_EXTENSIONS'    => 'Updating extensions',
502));
503
504// Converter
505$lang = array_merge($lang, array(
506    // Common converter messages
507    'CONVERT_NOT_EXIST'            => 'The specified convertor does not exist.',
508    'DEV_NO_TEST_FILE'            => 'No value has been specified for the test_file variable in the convertor. If you are a user of this convertor, you should not be seeing this error, please report this message to the convertor author. If you are a convertor author, you must specify the name of a file which exists in the source board to allow the path to it to be verified.',
509    'COULD_NOT_FIND_PATH'        => 'Could not find path to your former board. Please check your settings and try again.<br />» %s was specified as the source path.',
510    'CONFIG_PHPBB_EMPTY'        => 'The phpBB config variable for “%s” is empty.',
511
512    'MAKE_FOLDER_WRITABLE'        => 'Please make sure that this folder exists and is writable by the webserver then try again:<br />»<strong>%s</strong>.',
513    'MAKE_FOLDERS_WRITABLE'        => 'Please make sure that these folders exist and are writable by the webserver then try again:<br />»<strong>%s</strong>.',
514
515    'INSTALL_TEST'                => 'Test again',
516
517    'NO_TABLES_FOUND'            => 'No tables found.',
518    'TABLES_MISSING'            => 'Could not find these tables<br />» <strong>%s</strong>.',
519    'CHECK_TABLE_PREFIX'        => 'Please check your table prefix and try again.',
520
521    // Conversion in progress
522    'CATEGORY'                    => 'Category',
523    'CONTINUE_CONVERT'            => 'Continue conversion',
524    'CONTINUE_CONVERT_BODY'        => 'A previous conversion attempt has been determined. You are now able to choose between starting a new conversion or continuing the conversion.',
525    'CONVERT_NEW_CONVERSION'    => 'New conversion',
526    'CONTINUE_OLD_CONVERSION'    => 'Continue previously started conversion',
527    'POST_ID'                    => 'Post ID',
528
529    // Start conversion
530    'SUB_INTRO'                    => 'Introduction',
531    'CONVERT_INTRO'                => 'Welcome to the phpBB Unified Convertor Framework',
532    'CONVERT_INTRO_BODY'        => 'From here, you are able to import data from other (installed) board systems. The list below shows all the conversion modules currently available. If there is no convertor shown in this list for the board software you wish to convert from, please check our website where further conversion modules may be available for download.',
533    'AVAILABLE_CONVERTORS'        => 'Available convertors',
534    'NO_CONVERTORS'                => 'No convertors are available for use.',
535    'CONVERT_OPTIONS'            => 'Options',
536    'SOFTWARE'                    => 'Board software',
537    'VERSION'                    => 'Version',
538    'CONVERT'                    => 'Convert',
539
540    // Settings
541    'STAGE_SETTINGS'            => 'Settings',
542    'TABLE_PREFIX_SAME'            => 'The table prefix needs to be the one used by the software you are converting from.<br />» Specified table prefix was %s.',
543    'DEFAULT_PREFIX_IS'            => 'The convertor was not able to find tables with the specified prefix. Please make sure you have entered the correct details for the board you are converting from. The default table prefix for %1$s is <strong>%2$s</strong>.',
544    'SPECIFY_OPTIONS'            => 'Specify conversion options',
545    'FORUM_PATH'                => 'Board path',
546    'FORUM_PATH_EXPLAIN'        => 'This is the <strong>relative</strong> path on disk to your former board from the <strong>root of this phpBB installation</strong>.',
547    'REFRESH_PAGE'                => 'Refresh page to continue conversion',
548    'REFRESH_PAGE_EXPLAIN'        => 'If set to yes, the convertor will refresh the page to continue the conversion after having finished a step. If this is your first conversion for testing purposes and to determine any errors in advance, we suggest to set this to No.',
549
550    // Conversion
551    'STAGE_IN_PROGRESS'            => 'Conversion in progress',
552
553    'AUTHOR_NOTES'                => 'Author notes<br />» %s',
554    'STARTING_CONVERT'            => 'Starting conversion process',
555    'CONFIG_CONVERT'            => 'Converting the configuration',
556    'DONE'                        => 'Done',
557    'PREPROCESS_STEP'            => 'Executing pre-processing functions/queries',
558    'FILLING_TABLE'                => 'Filling table <strong>%s</strong>',
559    'FILLING_TABLES'            => 'Filling tables',
560    'DB_ERR_INSERT'                => 'Error while processing <code>INSERT</code> query.',
561    'DB_ERR_LAST'                => 'Error while processing <var>query_last</var>.',
562    'DB_ERR_QUERY_FIRST'        => 'Error while executing <var>query_first</var>.',
563    'DB_ERR_QUERY_FIRST_TABLE'    => 'Error while executing <var>query_first</var>, %s (“%s”).',
564    'DB_ERR_SELECT'                => 'Error while running <code>SELECT</code> query.',
565    'STEP_PERCENT_COMPLETED'    => 'Step <strong>%d</strong> of <strong>%d</strong>',
566    'FINAL_STEP'                => 'Process final step',
567    'SYNC_FORUMS'                => 'Starting to synchronise forums',
568    'SYNC_POST_COUNT'            => 'Synchronising post_counts',
569    'SYNC_POST_COUNT_ID'        => 'Synchronising post_counts from <var>entry</var> %1$s to %2$s.',
570    'SYNC_TOPICS'                => 'Starting to synchronise topics',
571    'SYNC_TOPIC_ID'                => 'Synchronising topics from <var>topic_id</var> %1$s to %2$s.',
572    'PROCESS_LAST'                    => 'Processing last statements',
573    'UPDATE_TOPICS_POSTED'        => 'Generating topics posted information',
574    'UPDATE_TOPICS_POSTED_ERR'    => 'An error occurred while generating topics posted information. You can retry this step in the ACP after the conversion process is completed.',
575    'CONTINUE_LAST'                => 'Continue last statements',
576    'CLEAN_VERIFY'                => 'Cleaning up and verifying the final structure',
577    'NOT_UNDERSTAND'            => 'Could not understand %s #%d, table %s (“%s”)',
578    'NAMING_CONFLICT'            => 'Naming conflict: %s and %s are both aliases<br /><br />%s',
579
580    // Finish conversion
581    'CONVERT_COMPLETE'            => 'Conversion completed',
582    'CONVERT_COMPLETE_EXPLAIN'    => 'You have now successfully converted your board to phpBB 4.0. You can now login and <a href="../">access your board</a>. Please ensure that the settings were transferred correctly before enabling your board by deleting the install directory. Remember that help on using phpBB is available online via the <a href="https://www.phpbb.com/support/docs/en/3.3/ug/">Documentation</a> and the <a href="https://www.phpbb.com/community/viewforum.php?f=661">support forums</a>.',
583
584    'COLLIDING_CLEAN_USERNAME'            => '<strong>%s</strong> is the clean username for:',
585    'COLLIDING_USER'                    => '» user id: <strong>%d</strong> username: <strong>%s</strong> (%d posts)',
586    'COLLIDING_USERNAMES_FOUND'            => 'Colliding usernames were found on your old board. In order to complete the conversion please delete or rename these users so that there is only one user on your old board for each clean username.',
587    'CONV_ERR_FATAL'                    => 'Fatal conversion error',
588    'CONV_ERROR_ATTACH_FTP_DIR'            => 'FTP upload for attachments is enabled at the old board. Please disable the FTP upload option and make sure a valid upload directory is specified, then copy all attachment files to this new web accessible directory. Once you have done this, restart the convertor.',
589    'CONV_ERROR_CONFIG_EMPTY'            => 'There is no configuration information available for the conversion.',
590    'CONV_ERROR_FORUM_ACCESS'            => 'Unable to get forum access information.',
591    'CONV_ERROR_GET_CATEGORIES'            => 'Unable to get categories.',
592    'CONV_ERROR_GET_CONFIG'                => 'Could not retrieve your board configuration.',
593    'CONV_ERROR_COULD_NOT_READ'            => 'Unable to access/read “%s”.',
594    'CONV_ERROR_GROUP_ACCESS'            => 'Unable to get group authentication information.',
595    'CONV_ERROR_INCONSISTENT_GROUPS'    => 'Inconsistency in groups table detected in add_bots() - you need to add all special groups if you do it manually.',
596    'CONV_ERROR_INSERT_BOT'                => 'Unable to insert bot into users table.',
597    'CONV_ERROR_INSERT_BOTGROUP'        => 'Unable to insert bot into bots table.',
598    'CONV_ERROR_INSERT_USER_GROUP'        => 'Unable to insert user into user_group table.',
599    'CONV_ERROR_MESSAGE_PARSER'            => 'Message parser error',
600    'CONV_ERROR_NO_AVATAR_PATH'            => 'Note to developer: you must specify $convertor[\'avatar_path\'] to use %s.',
601    'CONV_ERROR_NO_FORUM_PATH'            => 'The relative path to the source board has not been specified.',
602    'CONV_ERROR_NO_GALLERY_PATH'        => 'Note to developer: you must specify $convertor[\'avatar_gallery_path\'] to use %s.',
603    'CONV_ERROR_NO_GROUP'                => 'Group “%1$s” could not be found in %2$s.',
604    'CONV_ERROR_NO_RANKS_PATH'            => 'Note to developer: you must specify $convertor[\'ranks_path\'] to use %s.',
605    'CONV_ERROR_NO_SMILIES_PATH'        => 'Note to developer: you must specify $convertor[\'smilies_path\'] to use %s.',
606    'CONV_ERROR_NO_UPLOAD_DIR'            => 'Note to developer: you must specify $convertor[\'upload_path\'] to use %s.',
607    'CONV_ERROR_PERM_SETTING'            => 'Unable to insert/update permission setting.',
608    'CONV_ERROR_PM_COUNT'                => 'Unable to select folder pm count.',
609    'CONV_ERROR_REPLACE_CATEGORY'        => 'Unable to insert new forum replacing old category.',
610    'CONV_ERROR_REPLACE_FORUM'            => 'Unable to insert new forum replacing old forum.',
611    'CONV_ERROR_USER_ACCESS'            => 'Unable to get user authentication information.',
612    'CONV_ERROR_WRONG_GROUP'            => 'Wrong group “%1$s” defined in %2$s.',
613    'CONV_OPTIONS_BODY'                    => 'This page collects the data required to access the source board. Enter the database details of your former board; the converter will not change anything in the database given below. The source board should be disabled to allow a consistent conversion.',
614    'CONV_SAVED_MESSAGES'                => 'Saved messages',
615
616    'PRE_CONVERT_COMPLETE'            => 'All pre-conversion steps have successfully been completed. You may now begin the actual conversion process. Please note that you may have to manually do and adjust several things. After conversion, especially check the permissions assigned, rebuild your search index which is not converted and also make sure files got copied correctly, for example avatars and smilies.',
617));