one more idea
[squirrelmail.git] / src / about.php
CommitLineData
8b5c49cd 1<?php
2
3/**
4 * about.php
5 *
6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * An "about box" detailing SquirrelMail info.
10 *
11 * TODO:
8b5c49cd 12 * - Insert org_name, provider_url?
13 * - What more information is needed?
4356be7f 14 * - Display of system information might be restricted
8b5c49cd 15 *
16 * @version $Id$
17 * @package squirrelmail
18 */
19
20/**
21 * Path for SquirrelMail required files.
22 * @ignore
23 */
24define('SM_PATH','../');
25
26/* SquirrelMail required files. */
27require_once(SM_PATH . 'include/validate.php');
8b5c49cd 28
29displayPageHeader($color, 'None' );
30
31?>
32<p align="center">
33<img src="../images/sm_logo.png" width="308" height="111"
34 alt="SquirrelMail Logo" /><br />
35<table align="center" width="80%" cellpadding="1" cellspacing="2" border="0">
3d05d2fc 36<tr><td bgcolor="#dcdcdc" align="center"><center><b>
37<?php echo sprintf(_("About SquirrelMail %s"),$version); ?>
38</b></center></td></tr>
8b5c49cd 39<tr><td>
40<br />
3d05d2fc 41<?php echo _("SquirrelMail is the name of the program that provides access to your email via the web."); ?>
8b5c49cd 42<br />
8b5c49cd 43<br />
3d05d2fc 44<strong>
45<?php
46// i18n: %s displays org_name variable value enclosed in () or empty string.
47echo sprintf(_("If you have questions about or problems with your mail account, passwords, abuse etc, please refer to your system administrator or provider%s."),( $org_name != 'SquirrelMail' ? ' (' . $org_name . ')':''));
48echo "</strong>\n";
49
50// i18n: %s tags are used in order to remove html URL attributes from translation
51echo sprintf(_("They can assist you adequately with these issues. The SquirrelMail Project Team cannot help you with that. The %shelp system%s provides answers to frequently asked questions."),'<a href="help.php">','</a>');
52
53echo "<br />\n<br />\n";
54
55// i18n: %s tags are used in order to remove html URL attributes from translation
56echo sprintf(_("SquirrelMail is a feature rich, standards compliant webmail application written in PHP. It was made by a group of volunteers united in the SquirrelMail Project Team and is released as open source, free software under the %sGNU General Public License%s."),'<a href="http://www.gnu.org/copyleft/gpl.html" target="_blank">','</a>');
57
58// i18n: %s tags are used in order to remove html URL attributes from translation
59echo sprintf(_("For more information about SquirrelMail and the SquirrelMail Project Team, see %sthe SquirrelMail website%s."),'<a href="http://www.squirrelmail.org/" target="_blank">','</a>');
60?>
61<br />
8b5c49cd 62<br /><br />
3d05d2fc 63<b>
64<?php echo _("System information"); ?>
65</b><br/><br/>
8b5c49cd 66<small>
8b5c49cd 67<?php
3d05d2fc 68echo sprintf(_("You are using SquirrelMail version: %s"),$version);
69echo "<br />\n";
70echo _("The administrator installed the following plugins:");
71echo "<br />\n";
8b5c49cd 72if ( count ($plugins) > 0 ) {
73 sort($plugins);
74 echo "<ul>\n";
75 foreach($plugins as $plugin) {
76 echo "<li>" . $plugin . "</li>\n";
77 }
78 echo "</ul>\n\n";
79} else {
3d05d2fc 80 echo '<em>'._("none installed")."</em>\n\n";
8b5c49cd 81}
82?>
83</small>
84<br /><br />
85</td></tr>
800fe5a4 86<tr><td align="center">&copy; 1999 - 2005 The SquirrelMail Project Team</td></tr>
8b5c49cd 87</table></p>
8b5c49cd 88</body></html>