start working on 1.5.1 release notes
[squirrelmail.git] / src / about.php
CommitLineData
8b5c49cd 1<?php
2
3/**
4 * about.php
5 *
8b5c49cd 6 * An "about box" detailing SquirrelMail info.
7 *
8 * TODO:
8b5c49cd 9 * - Insert org_name, provider_url?
10 * - What more information is needed?
4356be7f 11 * - Display of system information might be restricted
8b5c49cd 12 *
47ccfad4 13 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
4b4abf93 14 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
8b5c49cd 15 * @version $Id$
16 * @package squirrelmail
17 */
18
19/**
20 * Path for SquirrelMail required files.
21 * @ignore
22 */
23define('SM_PATH','../');
24
25/* SquirrelMail required files. */
26require_once(SM_PATH . 'include/validate.php');
8b5c49cd 27
28displayPageHeader($color, 'None' );
29
30?>
31<p align="center">
32<img src="../images/sm_logo.png" width="308" height="111"
33 alt="SquirrelMail Logo" /><br />
34<table align="center" width="80%" cellpadding="1" cellspacing="2" border="0">
3d05d2fc 35<tr><td bgcolor="#dcdcdc" align="center"><center><b>
36<?php echo sprintf(_("About SquirrelMail %s"),$version); ?>
37</b></center></td></tr>
8b5c49cd 38<tr><td>
39<br />
3d05d2fc 40<?php echo _("SquirrelMail is the name of the program that provides access to your email via the web."); ?>
8b5c49cd 41<br />
8b5c49cd 42<br />
3d05d2fc 43<strong>
44<?php
45// i18n: %s displays org_name variable value enclosed in () or empty string.
46echo 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 . ')':''));
47echo "</strong>\n";
48
49// i18n: %s tags are used in order to remove html URL attributes from translation
50echo 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>');
51
52echo "<br />\n<br />\n";
53
54// i18n: %s tags are used in order to remove html URL attributes from translation
55echo 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>');
56
6e0899c0 57// add space between two sentences.
f8a1ed5a 58// Don't want to join two sprintf strings.
6e0899c0 59echo ' ';
60
3d05d2fc 61// i18n: %s tags are used in order to remove html URL attributes from translation
62echo 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>');
63?>
64<br />
8b5c49cd 65<br /><br />
3d05d2fc 66<b>
67<?php echo _("System information"); ?>
68</b><br/><br/>
8b5c49cd 69<small>
8b5c49cd 70<?php
3d05d2fc 71echo sprintf(_("You are using SquirrelMail version: %s"),$version);
72echo "<br />\n";
73echo _("The administrator installed the following plugins:");
74echo "<br />\n";
8b5c49cd 75if ( count ($plugins) > 0 ) {
76 sort($plugins);
77 echo "<ul>\n";
78 foreach($plugins as $plugin) {
79 echo "<li>" . $plugin . "</li>\n";
80 }
81 echo "</ul>\n\n";
82} else {
3d05d2fc 83 echo '<em>'._("none installed")."</em>\n\n";
8b5c49cd 84}
a2b193bc 85
8b5c49cd 86?>
87</small>
88<br /><br />
89</td></tr>
47ccfad4 90<tr><td align="center">&copy; 1999 - 2006 The SquirrelMail Project Team</td></tr>
8b5c49cd 91</table></p>
f8a1ed5a 92</body></html>