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:';
?>
|