00001 <?php
00002
00003 # This file is part of the Savane project
00004 # <http:#gna.org/projects/savane/>
00005 #
00006 # $Id: first.php 5187 2005-12-01 16:22:29Z yeupou $
00007 #
00008 # Copyright 1999-2000 (c) The SourceForge Crew
00009 # Copyright 2000-2003 (c) Free Software Foundation
00010 #
00011 # Copyright 2002-2005 (c) Mathieu Roy <yeupou--gnu.org>
00012 #
00013 # The Savane project is free software; you can redistribute it and/or
00014 # modify it under the terms of the GNU General Public License
00015 # as published by the Free Software Foundation; either version 2
00016 # of the License, or (at your option) any later version.
00017 #
00018 # The Savane project is distributed in the hope that it will be useful,
00019 # but WITHOUT ANY WARRANTY; without even the implied warranty of
00020 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00021 # GNU General Public License for more details.
00022 #
00023 # You should have received a copy of the GNU General Public License
00024 # along with the Savane project; if not, write to the Free Software
00025 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00026
00027 require "../include/pre.php";
00028 site_user_header(array('title'=>sprintf(_("Welcome to %s"),$GLOBALS['sys_name']),'context'=>'account'));
00029
00030 print '<p>'.sprintf(_("You are now a registered user on %s."),$GLOBALS['sys_name']).'</p>';
00031
00032 print '<p>'._("As a registered user, you can participate fully in the activities on the site.");
00033 print ' '.sprintf(_("You may now post items to issue trackers in %s, sign on as a project member, or even start your own project."),$GLOBALS['sys_name']).'</p>';
00034
00035 print '<p>'.sprintf(_("You should take some time to read %sthe Savane User Guide%s so that you may take full advantage of %s."),'<a href="'.$GLOBALS['sys_home'].'userguide/">','</a> ',$GLOBALS['sys_name']).'</p>';
00036
00037 print '<p>'._("Enjoy the site").'</p>';
00038
00039
00040 site_user_footer(array());;
00041
00042 ?>