[PHPVortex-Commit] phpvortex/conf conf.php,NONE,1.1 lang_en.php,NONE,1.1 lang_pt_br.php,NONE,1.1
Brought to you by:
nop144666
From: Thiago R. <nop...@us...> - 2004-10-04 21:12:13
|
Update of /cvsroot/phpvortex/phpvortex/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3562/conf Added Files: conf.php lang_en.php lang_pt_br.php Log Message: Global configuration added --- NEW FILE: conf.php --- <?php /** * General configuration file for PHP Vortex with system-wide defaults. * * @package Vortex * @subpackage Util * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** require one of the localized message files */ // require_once('lang_en.php'); require_once('lang_pt_br.php'); ?> --- NEW FILE: lang_pt_br.php --- <?php /** * File with messages for output in PT-BR. * * @package Vortex * @subpackage Util * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ $vortex_msgs = array(); $vortex_msgs['consist_error'] = 'Os seguintes campos são de preenchimento obrigatório:'; ?> --- NEW FILE: lang_en.php --- <?php /** * File with messages for output in EN. * * @package Vortex * @subpackage Util * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ $vortex_msgs = array(); $vortex_msgs['consist_error'] = 'The following fields are required:'; ?> |