source: trunk/language/en_UK/install.lang.php @ 2297

Last change on this file since 2297 was 2297, checked in by plg, 16 years ago

Modification: new header on PHP files, PhpWebGallery renamed Piwigo.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 6.1 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008      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// | PhpWebGallery - a PHP based picture gallery                           |
25// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
26// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
27// +-----------------------------------------------------------------------+
28// | file          : $Id: install.lang.php 2297 2008-04-04 22:57:23Z plg $
29// | last update   : $Date: 2008-04-04 22:57:23 +0000 (Fri, 04 Apr 2008) $
30// | last modifier : $Author: plg $
31// | revision      : $Revision: 2297 $
32// +-----------------------------------------------------------------------+
33// | This program is free software; you can redistribute it and/or modify  |
34// | it under the terms of the GNU General Public License as published by  |
35// | the Free Software Foundation                                          |
36// |                                                                       |
37// | This program is distributed in the hope that it will be useful, but   |
38// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
39// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
40// | General Public License for more details.                              |
41// |                                                                       |
42// | You should have received a copy of the GNU General Public License     |
43// | along with this program; if not, write to the Free Software           |
44// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
45// | USA.                                                                  |
46// +-----------------------------------------------------------------------+
47
48$lang['install_message'] = 'Message';
49$lang['Initial_config'] = 'Basic configuration';
50$lang['Default_lang'] = 'Default gallery language';
51$lang['step1_title'] = 'Database configuration';
52$lang['step2_title'] = 'Admin configuration';
53$lang['Start_Install'] = 'Start Install';
54$lang['reg_err_mail_address'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)';
55
56$lang['install_webmaster'] = 'Webmaster login';
57$lang['install_webmaster_info'] = 'It will be shown to the visitors. It is necessary for website administration';
58
59$lang['step1_confirmation'] = 'Parameters are correct';
60$lang['step1_err_db'] = 'Connection to server succeed, but it was impossible to connect to database';
61$lang['step1_err_server'] = 'Can\'t connect to server';
62$lang['step1_err_copy_2'] = 'The next step of the installation is now possible';
63$lang['step1_err_copy_next'] = 'next step';
64$lang['step1_err_copy'] = 'Copy the text in red between hyphens and paste it into the file "include/mysql.inc.php"(Warning : mysql.inc.php must only contain what is in blue, no line return or space character)';
65
66$lang['step1_host'] = 'MySQL host';
67$lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr';
68$lang['step1_user'] = 'User';
69$lang['step1_user_info'] = 'user login given by your host provider';
70$lang['step1_pass'] = 'Password';
71$lang['step1_pass_info'] = 'user password given by your host provider';
72$lang['step1_database'] = 'Database name';
73$lang['step1_database_info'] = 'also given by your host provider';
74$lang['step1_prefix'] = 'Database table prefix';
75$lang['step1_prefix_info'] = 'database tables names will be prefixed with it (enables you to manage better your tables)';
76$lang['step2_err_login1'] = 'enter a login for webmaster';
77$lang['step2_err_login3'] = 'webmaster login can\'t contain characters \' or "';
78$lang['step2_err_pass'] = 'please enter your password again';
79$lang['install_end_title'] = 'Installation finished';
80$lang['step2_pwd'] = 'Webmaster password';
81$lang['step2_pwd_info'] = 'Keep it confidential, it enables you to access administration panel';
82$lang['step2_pwd_conf'] = 'Password [confirm]';
83$lang['step2_pwd_conf_info'] = 'verification';
84$lang['install_help'] = 'Need help ? Ask your question on <a href="%s">PhpWebGallery message board</a>.';
85$lang['install_end_message'] = 'The configuration of PhpWebGallery is finished, here is the next step<br /><br />
86For security reason, please delete file "install.php"<br />
87Once this file deleted , follow this instructions :
88<ul>
89<li>go to the identification page : [ <a href="identification.php">identification</a> ] and use the login/password given for webmaster</li>
90<li>this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories</li>
91</ul>';
92$lang['conf_mail_webmaster'] = 'Webmaster mail address';
93$lang['conf_mail_webmaster_info'] = 'Visitors will be able to contact site administrator with this mail';
94?>
Note: See TracBrowser for help on using the repository browser.