69 lines
4.5 KiB
PHP
69 lines
4.5 KiB
PHP
<?php
|
|
/*
|
|
*
|
|
* OGP - Open Game Panel
|
|
* Copyright (C) 2008 - 2018 The OGP Development Team
|
|
*
|
|
* http://www.opengamepanel.org/
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
define('OGP_LANG_install_lang', "Seleccione su idioma preferido");
|
|
define('OGP_LANG_install_welcome', "Bienvenido a la instalación de Open Game Panel");
|
|
define('OGP_LANG_file_permission_check', "Comprobando los permisos de los archivos");
|
|
define('OGP_LANG_OK', "Correcto");
|
|
define('OGP_LANG_write_permission_required', "Requiere permisos de escritura (775)");
|
|
define('OGP_LANG_execute_permission_required', "Requiere permisos de ejecución (777)");
|
|
define('OGP_LANG_create_an_empty_file', "Crea un archivo vacio.");
|
|
define('OGP_LANG_found', "Encontrado");
|
|
define('OGP_LANG_not_found', "Extraviado");
|
|
define('OGP_LANG_pear_xxtea_info', "Pera Crypt_XXTEA es necesario para el uso de OGP. En la mayoría de las distribuciones de Linux, este módulo se puede instalar con el siguiente comando Pear 'pear install Crypt_XXTEA-beta'.");
|
|
define('OGP_LANG_refresh', "Refrescar");
|
|
define('OGP_LANG_checking_required_modules', "Comprobando módulos requeridos");
|
|
define('OGP_LANG_checking_optional_modules', "Comprobando módulos opcionales");
|
|
define('OGP_LANG_database_type', "Tipo De Base De Datos");
|
|
define('OGP_LANG_database_settings', "Configuración De Acceso A La Base De Datos");
|
|
define('OGP_LANG_database_hostname', "Nombre del Host");
|
|
define('OGP_LANG_database_username', "Nombre de Usuario");
|
|
define('OGP_LANG_database_password', "Contraseña");
|
|
define('OGP_LANG_database_name', "Nombre De La Base De Datos");
|
|
define('OGP_LANG_database_prefix', "Prefijo Para Las Tablas");
|
|
define('OGP_LANG_next', "Siguiente");
|
|
define('OGP_LANG_encryption_key', "Clave De Encriptación (Agente)");
|
|
define('OGP_LANG_agent_port', "Puerto (Agente)");
|
|
define('OGP_LANG_unable_to_write_config', "No se puede escribir en el archivo de configuración. Vuelva a comprobar el permiso de escritura.");
|
|
define('OGP_LANG_admin_login_details', "Datos Del Administrador Principal");
|
|
define('OGP_LANG_config_written', "El archivo de configuración se creo correctamente.");
|
|
define('OGP_LANG_database_created', "Las tables se crearon completamente.");
|
|
define('OGP_LANG_admin_login_details_info', "Ahora crearemos un usuario administrador para su Open game panel.");
|
|
define('OGP_LANG_username', "Usuario");
|
|
define('OGP_LANG_repeat_password', "Repita la contraseña");
|
|
define('OGP_LANG_email', "Dirección de correo electrónico");
|
|
define('OGP_LANG_back', "Volver");
|
|
define('OGP_LANG_database_setup_failure', "La instalacion no pudo crear las tablas en la base de datos. Por favor compruebe los datos de conexión.");
|
|
define('OGP_LANG_php_version_check', "Comprobando la versión de PHP");
|
|
define('OGP_LANG_invalid_username', "Introdujo un nombre de usuario no valido.");
|
|
define('OGP_LANG_password_too_short', "Contraseña demasiado corta.");
|
|
define('OGP_LANG_password_contains_invalid_characters', "Su contraseña contiene caracteres no validos.");
|
|
define('OGP_LANG_invalid_email_address', "Ha introducido una dirección de correo electrónico no válida.");
|
|
define('OGP_LANG_setup_complete', "La instalación terminó correctamente. Open Game Panel está listo para sú uso.");
|
|
define('OGP_LANG_remove_install_and_secure_config', "Por seguridad, debería eliminar install.php de su servidor y cambiar los permisos (chmod) de includes/config.inc.php a 644.");
|
|
define('OGP_LANG_go_to_panel', "Haga click aquí para entrar a OGP.");
|
|
define('OGP_LANG_unable_to_resolve', "Sí no puede resolver este problema visite el foro de OpenGamePanel.org, estaremos encantados de ayudarle.");
|
|
define('OGP_LANG_slogan', "El de código abierto!");
|
|
define('OGP_LANG_default_welcome_title_message', "Bienvenido! <b style='font-size:12px; font-weight:normal;'>Puede cambiar este texto en '<a href='?m=settings&p=themes'>Temas</a>' bajo el menú de '<a href='?m=administration&p=main'>Administración</a>'.</b>");
|
|
?>
|