source: branches/2.0/language/en_UK/install.lang.php @ 3204

Last change on this file since 3204 was 3204, checked in by patdenice, 15 years ago

merge r3203 from trunk to branch 2.0.
Move template class inclusion to common.inc.php.
Add forum link in upgrade page.
Install and upgrade try to configure PHP5.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 5.3 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2009 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24$lang['Installation'] = 'Installation';
25$lang['Initial_config'] = 'Basic configuration';
26$lang['Default_lang'] = 'Default gallery language';
27$lang['step1_title'] = 'Database configuration';
28$lang['step2_title'] = 'Admin configuration';
29$lang['Start_Install'] = 'Start Install';
30$lang['reg_err_mail_address'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)';
31
32$lang['install_webmaster'] = 'Webmaster login';
33$lang['install_webmaster_info'] = 'It will be shown to the visitors. It is necessary for website administration';
34
35$lang['step1_confirmation'] = 'Parameters are correct';
36$lang['step1_err_db'] = 'Connection to server succeed, but it was impossible to connect to database';
37$lang['step1_err_server'] = 'Can\'t connect to server';
38$lang['step1_err_copy_2'] = 'The next step of the installation is now possible';
39$lang['step1_err_copy_next'] = 'next step';
40$lang['step1_err_copy'] = 'Copy the text in pink between hyphens and paste it into the file "include/mysql.inc.php"(Warning : mysql.inc.php must only contain what is in pink, no line return or space character)';
41
42$lang['step1_host'] = 'MySQL host';
43$lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr';
44$lang['step1_user'] = 'User';
45$lang['step1_user_info'] = 'user login given by your host provider';
46$lang['step1_pass'] = 'Password';
47$lang['step1_pass_info'] = 'user password given by your host provider';
48$lang['step1_database'] = 'Database name';
49$lang['step1_database_info'] = 'also given by your host provider';
50$lang['step1_prefix'] = 'Database table prefix';
51$lang['step1_prefix_info'] = 'database tables names will be prefixed with it (enables you to manage better your tables)';
52$lang['step2_err_login1'] = 'enter a login for webmaster';
53$lang['step2_err_login3'] = 'webmaster login can\'t contain characters \' or "';
54$lang['step2_err_pass'] = 'please enter your password again';
55$lang['install_end_title'] = 'Installation finished';
56$lang['step2_pwd'] = 'Webmaster password';
57$lang['step2_pwd_info'] = 'Keep it confidential, it enables you to access administration panel';
58$lang['step2_pwd_conf'] = 'Password [confirm]';
59$lang['step2_pwd_conf_info'] = 'verification';
60$lang['install_help'] = 'Need help ? Ask your question on <a href="%s">Piwigo message board</a>.';
61$lang['install_end_message'] = 'The configuration of Piwigo is finished, here is the next step<br /><br />
62* go to the identification page and use the login/password given for webmaster<br />
63* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories';
64$lang['conf_mail_webmaster'] = 'Webmaster mail address';
65$lang['conf_mail_webmaster_info'] = 'Visitors will be able to contact site administrator with this mail';
66
67$lang['PHP 5 is required'] = 'PHP 5 is required';
68$lang['It appears your webhost is currently running PHP %s.'] = 'It appears your webhost is currently running PHP %s.';
69$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = 'Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.';
70$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = 'Note you can change your configuration by yourself and restart Piwigo after that.';
71$lang['Try to configure PHP 5'] = 'Try to configure PHP 5';
72$lang['Sorry!'] = 'Sorry!';
73$lang['Piwigo was not able to configure PHP 5.'] = 'Piwigo was not able to configure PHP 5.';
74$lang["You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself."] = "You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself.";
75$lang['Hope to see you back soon.'] = 'Hope to see you back soon.';
76?>
Note: See TracBrowser for help on using the repository browser.