X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fabout.php;h=3008d3bd4eb740b57e1309df6d5293e4a977ecfd;hp=cbd1dee5565a678ff2a93f194815f5a7513daf30;hb=ceacdb3c87567ed38856c7d60ff3d862ae2cb4db;hpb=800fe5a43aaaddd39317283a4c025552736fc28a diff --git a/src/about.php b/src/about.php index cbd1dee5..3008d3bd 100644 --- a/src/about.php +++ b/src/about.php @@ -3,64 +3,75 @@ /** * about.php * - * Copyright (c) 1999-2005 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. - * * An "about box" detailing SquirrelMail info. * * TODO: - * - Add localisation * - Insert org_name, provider_url? * - What more information is needed? + * - Display of system information might be restricted * + * @copyright 1999-2011 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail */ +/** This is the about page */ +define('PAGE_NAME', 'about'); + /** - * Path for SquirrelMail required files. - * @ignore + * Include the SquirrelMail initialization file. */ -define('SM_PATH','../'); +require('../include/init.php'); -/* SquirrelMail required files. */ -require_once(SM_PATH . 'include/validate.php'); - -displayPageHeader($color, 'None' ); +displayPageHeader($color); ?>

SquirrelMail Logo
- + - +
About SquirrelMail
+ +

-SquirrelMail is the name of the program that provides access to your email via the web.
+
-If you have questions about or problems with your mail account, passwords, abuse etc, -please refer to your system administrator or provider. -They can assist you adequately with these issues. The SquirrelMail development team -cannot help you with that. The help system provides answers -to frequently asked questions.

-SquirrelMail is a feature rich, standards compliant webmail application written in PHP. -It was made by a group of volunteers united in the SquirrelMail Development Team and is -released as open source, free software under the GNU General Public License. -For more information about SquirrelMail and the SquirrelMail development team, see -the SquirrelMail website.
+ +\n"; + +// i18n: %s tags are used in order to remove html URL attributes from translation +echo 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."),'',''); + +echo "
\n
\n"; + +// i18n: %s tags are used in order to remove html URL attributes from translation +echo 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."),'',''); + +// add space between two sentences. +// Don't want to join two sprintf strings. +echo ' '; + +// i18n: %s tags are used in order to remove html URL attributes from translation +echo sprintf(_("For more information about SquirrelMail and the SquirrelMail Project Team, see %sthe SquirrelMail website%s."),'',''); +?> +


-System information

+ + +

-You are using SquirrelMail version:
-The administrator installed the following plugins:
0 ) { +echo sprintf(_("You are using SquirrelMail version: %s"), SM_VERSION); +echo "
\n"; +echo _("The administrator installed the following plugins:"); +echo "
\n"; +if ( isset($plugins) && count ($plugins) > 0 ) { sort($plugins); echo "
    \n"; foreach($plugins as $plugin) { @@ -68,12 +79,14 @@ if ( count ($plugins) > 0 ) { } echo "
\n\n"; } else { - echo "none installed\n\n"; + echo ''._("none installed")."\n\n"; } + ?>


© 1999 - 2005 The SquirrelMail Project Team
© The SquirrelMail Project Team

- +display('footer.tpl');