source: branches/rsr.v5.1.dev/web/punbb/lang/English/update.php @ 3

Last change on this file since 3 was 3, checked in by dj3c1t, 12 years ago

passage a Fluxbb 1.4.7

File size: 6.7 KB
Line 
1<?php
2
3// Language definitions used in db_update.php
4
5$lang_update = array(
6
7'Update'                                                =>      'Update FluxBB',
8'Update message'                                =>      'Your FluxBB database is out-of-date and must be upgraded in order to continue. If you are the board administrator, please follow the instructions below to complete the upgrade.',
9'Note'                                                  =>      'Note:',
10'Members message'                               =>      'This process is for board administators only. If you are a member there is nothing to worry about - the forums will be back shortly!',
11'Administrator only'                    =>      'This step is for the board administrator only!',
12'Database password info'                =>      'To perform the database update please enter the database password with which FluxBB was installed. If you cannot remember, this is stored in your \'config.php\' file.',
13'Database password note'                =>      'If you are running SQLite (and hence have no database password) please use the database file name instead. This must exactly match the database file name given in your configuration file.',
14'Database password'                             =>      'Database password',
15'Maintenance'                                   =>      'Maintenance',
16'Maintenance message info'              =>      'The message that will be displayed to users during the updating process. This text will not be parsed like regular posts and thus may contain HTML.',
17'Maintenance message'               =>  'Maintenance message',
18'Next'                                                  =>      'Next',
19
20'You are running error'                 =>      'You are running %1$s version %2$s. FluxBB %3$s requires at least %1$s %4$s to run properly. You must upgrade your %1$s installation before you can continue.',
21'Version mismatch error'                =>      'Version mismatch. The database \'%s\' doesn\'t seem to be running a FluxBB database schema supported by this update script.',
22'Invalid file error'                    =>      'Invalid database file name. When using SQLite the database file name must be entered exactly as it appears in your \'%s\'',
23'Invalid password error'                =>      'Invalid database password. To upgrade FluxBB you must enter your database password exactly as it appears in your \'%s\'',
24'No password error'                             =>      'No database password provided',
25'Script runs error'                             =>      'It appears the update script is already being ran by someone else. If this is not the case, please manually delete the file \'%s\' and try again',
26'No update error'                               =>      'Your forum is already as up-to-date as this script can make it',
27
28'Intro 1'                                               =>      'This script will update your forum database. The update procedure might take anything from a second to hours depending on the speed of the server and the size of the forum database. Don\'t forget to make a backup of the database before continuing.',
29'Intro 2'                                               =>      'Did you read the update instructions in the documentation? If not, start there.',
30'No charset conversion'                 =>      '<strong>IMPORTANT!</strong> FluxBB has detected that this PHP environment does not have support for the encoding mechanisms required to do UTF-8 conversion from character sets other than ISO-8859-1. What this means is that if the current character set is not ISO-8859-1, FluxBB won\'t be able to convert your forum database to UTF-8 and you will have to do it manually. Instructions for doing manual charset conversion can be found in the update instructions.',
31'Enable conversion'                             =>      '<strong>Enable conversion:</strong> When enabled this update script will, after it has made the required structural changes to the database, convert all text in the database from the current character set to UTF-8. This conversion is required if you\'re upgrading from version 1.2.',
32'Current character set'                 =>      '<strong>Current character set:</strong> If the primary language in your forum is English, you can leave this at the default value. However, if your forum is non-English, you should enter the character set of the primary language pack used in the forum. <em>Getting this wrong can corrupt your database so don\'t just guess!</em> Note: This is required even if the old database is UTF-8.',
33'Charset conversion'                    =>      'Charset conversion',
34'Enable conversion label'               =>      '<strong>Enable conversion</strong> (perform database charset conversion).',
35'Current character set label'   =>      'Current character set',
36'Current character set info'    =>      'Accept default for English forums otherwise the character set of the primary language pack.',
37'Start update'                                  =>      'Start update',
38'Error converting users'                =>      'Error converting users',
39'Error info 1'                                  =>      'There was an error converting some users. This can occur when converting from FluxBB v1.2 if multiple users have registered with very similar usernames, for example "bob" and "böb".',
40'Error info 2'                                  =>      'Below is a list of users who failed to convert. Please choose a new username for each user. Users who are renamed will automatically be sent an email alerting them of the change.',
41'New username'                                  =>      'New username',
42'Required'                                              =>      '(Required)',
43'Correct errors'                                =>      'The following errors need to be corrected:',
44'Rename users'                                  =>      'Rename users',
45'Successfully updated'                  =>      'Your forum database was successfully updated. You may now %s.',
46'go to index'                                   =>      'go to the forum index',
47
48'Unable to lock error'                  =>      'Unable to write update lock. Please make sure PHP has write access to the directory \'%s\' and no-one else is currently running the update script.',
49
50'Converting'                                    =>      'Converting %s 
',
51'Converting item'                               =>      'Converting %1$s %2$s 
',
52'Preparsing item'                               =>      'Preparsing %1$s %2$s 
',
53'Rebuilding index item'                 =>      'Rebuilding index for %1$s %2$s',
54
55'ban'                                                   =>      'ban',
56'categories'                                    =>      'categories',
57'censor words'                                  =>      'censor words',
58'configuration'                                 =>      'configuration',
59'forums'                                                =>      'forums',
60'groups'                                                =>      'groups',
61'post'                                                  =>      'post',
62'ranks'                                                 =>      'ranks',
63'report'                                                =>      'report',
64'topic'                                                 =>      'topic',
65'user'                                                  =>      'user',
66'signature'                                             =>      'signature',
67
68'Username too short error'              =>      'Usernames must be at least 2 characters long. Please choose another (longer) username.',
69'Username too long error'               =>      'Usernames must not be more than 25 characters long. Please choose another (shorter) username.',
70'Username Guest reserved error' =>      'The username guest is reserved. Please choose another username.',
71'Username IP format error'              =>      'Usernames may not be in the form of an IP address. Please choose another username.',
72'Username bad characters error' =>      'Usernames may not contain all the characters \', " and [ or ] at once. Please choose another username.',
73'Username BBCode error'                 =>      'Usernames may not contain any of the text formatting tags (BBCode) that the forum uses. Please choose another username.',
74'Username duplicate error'              =>      'Someone is already registered with the username %s. The username you entered is too similar. The username must differ from that by at least one alphanumerical character (a-z or 0-9). Please choose a different username.',
75
76);
Note: See TracBrowser for help on using the repository browser.