X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fabout.php;h=cd20c2633260dc67837899ecdbf16ac81cb6984c;hb=d2dcc1938bc3932ab0c60664c60ade26d5096b84;hp=469d7b92019e63185084f27fb45db16d71a3de62;hpb=8b5c49cd37e4dc685dd99221aaa5046220563fd9;p=squirrelmail.git diff --git a/src/about.php b/src/about.php index 469d7b92..cd20c263 100644 --- a/src/about.php +++ b/src/about.php @@ -3,29 +3,23 @@ /** * 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-2006 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail */ /** - * Path for SquirrelMail required files. - * @ignore + * Include the SquirrelMail initialization file. */ -define('SM_PATH','../'); - -/* SquirrelMail required files. */ -require_once(SM_PATH . 'include/validate.php'); -require_once(SM_PATH . 'functions/global.php'); +require('../include/init.php'); displayPageHeader($color, 'None' ); @@ -34,34 +28,47 @@ displayPageHeader($color, 'None' ); 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 mailaccount, 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"),$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) { @@ -69,15 +76,15 @@ if ( count ($plugins) > 0 ) { } echo "
\n\n"; } else { - echo "none installed\n\n"; + echo ''._("none installed")."\n\n"; } + ?>


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

- - - - +display('footer.tpl'); +?> \ No newline at end of file