Update of /cvsroot/phpmp/phpMP/languages/spanish
In directory usw-pr-cvs1:/tmp/cvs-serv12737
Added Files:
lang_main.php
Log Message:
Added support for spanish. This isn't a very good translation since I used BabelFish to do it, but it does prove that language support works.
--- NEW FILE: lang_main.php ---
<?
/******************************************************************************
*******************************************************************************
phpMP - The World's Greatest Modular Portal
***********************************************
Are you MPowered?
Copyright (C) 2002 phpMP Development Group
All rights reserved.
Lead Programmer: Brian Rose
Lead Designer: Trevor Joynson
Filename: /languages/spanish/lang_main.php
Usage & Function: Main Spanish Language File
Create Date: July 25, 2002
$Id: lang_main.php,v 1.1 2002/08/10 21:41:01 heimidal Exp $
*******************************************************************************
*******************************************************************************
This software is provided under the GPL software license. A copy of the
license should have been included with this software, located in the Docs
folder. Feel free to redistribute and/or modify it according to the
regulations stated in the license.
*******************************************************************************
******************************************************************************/
class Language {
var $lang;
function Language() {
global $MPCONF;
$this->lang['l_home'] = 'Casero';
$this->lang['l_nav_bar'] = '<a href="' . $MPCONF['GEN']['uri'] . '/index.php">casero</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/features.php">características</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/forums/index.php">foros</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/downloads.php">transferencias directas</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/support.php">ayuda</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/about.php">sobre</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/team.php">equipo</a> <font color="#0a4a67">•</font> <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmp/phpMP/">cvs</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/devworld/modules/index.php?action=list">módulos</a> <font color="#0a4a67">•</font> <a href="http://www.sourceforge.net/">fragua de la fuente</a>';
$this->lang['l_username'] = 'Nombre';
$this->lang['l_user_panel'] = 'Panel De Control Del Usuario';
$this->lang['l_user_panel_short'] = 'Panel De Control Del Usuario';
$this->lang['l_email'] = 'Correo';
$this->lang['l_password'] = 'Contraseña';
$this->lang['l_confirm_password'] = 'Confirme';
$this->lang['l_realname'] = 'Nombre Verdadero';
$this->lang['l_location'] = 'Localización';
$this->lang['l_required_field'] = 'Denota un Campo Requerido';
$this->lang['l_login'] = 'Conexión';
$this->lang['l_logout'] = 'Registro Hacia Fuera';
$this->lang['l_forgot_password'] = '¿Se Olvidó De Su Contraseña?';
$this->lang['l_register'] = 'Registro';
$this->lang['l_welcome'] = 'Recepción';
$this->lang['l_edit_profile'] = 'Corrija El Perfil De Usuario';
$this->lang['l_admin_area'] = 'Área De la Administración';
$this->lang['l_register_name'] = 'Coloque Un Nombre';
$this->lang['l_not_logged_in'] = 'Le no entran.';
$this->lang['l_powered_by'] = 'accionado cerca phpMP ' . $MPCONF['GEN']['version'] . ' © 2002 <a href="http://phpmp.sourceforge.net/">grupo del desarrollo del phpMP</a>.';
$this->lang['l_copyright'] = 'Todo el contenido es característica de su dueño respectivo. Todos los derechos reservados.';
}
}
?>
|