source: trunk/language/en_UK.iso-8859-1/install.lang.php @ 518

Last change on this file since 518 was 518, checked in by z0rglub, 20 years ago
  • corrects bugs due to deletion of configuration parameters default_lang, default_style (renamed to default_language and default_template), session_keyword
  • in install.php, corrects bug to deletion of language keys : conf_general_webmaster, conf_general_webmaster_info and renaming of conf_general_mail
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// |                           en_EN/install.lang.php                           |
4// +-----------------------------------------------------------------------+
5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
6// | branch        : 1.4                                                   |
7// +-----------------------------------------------------------------------+
8// | file          : $RCSfile$
9// | last update   : $Date: 2004-09-07 19:29:42 +0000 (Tue, 07 Sep 2004) $
10// | last modifier : $Author: z0rglub $
11// | revision      : $Revision: 518 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28$lang['install_message'] = 'Message';
29$lang['Initial_config'] = 'Basic configuration';
30$lang['Default_lang'] = 'Default galerie language';
31$lang['step1_title'] = 'Database configuration';
32$lang['step2_title'] = 'Admin configuration';
33$lang['Start_Install'] = 'Start Install';
34$lang['reg_err_mail_address'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)';
35
36$lang['install_webmaster'] = 'webmaster login';
37$lang['install_webmaster_info'] = 'It will be shown to the visitors. It is necessary for website administration';
38$lang['install_mail_webmaster'] = $lang['conf_general_mail_webmaster'];
39$lang['install_mail_webmaster_info'] = $lang['conf_general_mail_webmaster_info'];
40
41$lang['step1_confirmation'] = 'Parameters are correct';
42$lang['step1_err_db'] = 'Connection to server succeed, but it was impossible to connect to database';
43$lang['step1_err_server'] = 'Can\'t connect to server';
44$lang['step1_err_copy_2'] = 'The next step of the installation is now possible';
45$lang['step1_err_copy_next'] = 'next step';
46$lang['step1_host'] = 'MySQL host';
47$lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr';
48$lang['step1_user'] = 'user';
49$lang['step1_user_info'] = 'user login given by your host provider';
50$lang['step1_pass'] = 'Password';
51$lang['step1_pass_info'] = 'user password given by your host provider';
52$lang['step1_database'] = 'Database name';
53$lang['step1_database_info'] = 'also given by your host provider';
54$lang['step1_prefix'] = 'Database table prefix';
55$lang['step1_prefix_info'] = 'database tables names will be prefixed with it (enables you to manage better your tables)';
56$lang['step2_err_login1'] = 'enter a login for webmaster';
57$lang['step2_err_login3'] = 'webmaster login can\'t contain characters \' or "';
58$lang['step2_err_pass'] = 'please enter your password again';
59$lang['install_end_title'] = 'Installation finished';
60$lang['step2_pwd'] = 'webmaster password';
61$lang['step2_pwd_info'] = 'Keep it confidential, it enables you to access administration panel';
62$lang['step2_pwd_conf'] = 'confirm password';
63$lang['step2_pwd_conf_info'] = 'verification';
64$lang['install_help'] = 'Need help ? Ask your question on <a href="http://forum.phpwebgallery.net">PhpWebGallery message board</a>.';
65$lang['install_end_message'] = 'The configuration of PhpWebGallery is finished, here is the next step<br /><br />
66For security reason, please delete file "install.php"<br />
67Once this file deleted , follow this instructions :
68<ul>
69<li>go to the identification page : [ <a href="identification.php">identification</a> ] and use the login/password given for webmaster</li>
70<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>
71</ul>';
72?>
Note: See TracBrowser for help on using the repository browser.