install.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2018 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. define('OGP_LANG_install_lang', "Seleccione su idioma preferido");
  25. define('OGP_LANG_install_welcome', "Bienvenido a la instalación de Open Game Panel");
  26. define('OGP_LANG_file_permission_check', "Comprobando los permisos de los archivos");
  27. define('OGP_LANG_OK', "Correcto");
  28. define('OGP_LANG_write_permission_required', "Requiere permisos de escritura (775)");
  29. define('OGP_LANG_execute_permission_required', "Requiere permisos de ejecución (777)");
  30. define('OGP_LANG_create_an_empty_file', "Crea un archivo vacio.");
  31. define('OGP_LANG_found', "Encontrado");
  32. define('OGP_LANG_not_found', "Extraviado");
  33. 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'.");
  34. define('OGP_LANG_refresh', "Refrescar");
  35. define('OGP_LANG_checking_required_modules', "Comprobando módulos requeridos");
  36. define('OGP_LANG_checking_optional_modules', "Comprobando módulos opcionales");
  37. define('OGP_LANG_database_type', "Tipo De Base De Datos");
  38. define('OGP_LANG_database_settings', "Configuración De Acceso A La Base De Datos");
  39. define('OGP_LANG_database_hostname', "Nombre del Host");
  40. define('OGP_LANG_database_username', "Nombre de Usuario");
  41. define('OGP_LANG_database_password', "Contraseña");
  42. define('OGP_LANG_database_name', "Nombre De La Base De Datos");
  43. define('OGP_LANG_database_prefix', "Prefijo Para Las Tablas");
  44. define('OGP_LANG_next', "Siguiente");
  45. define('OGP_LANG_encryption_key', "Clave De Encriptación (Agente)");
  46. define('OGP_LANG_agent_port', "Puerto (Agente)");
  47. define('OGP_LANG_unable_to_write_config', "No se puede escribir en el archivo de configuración. Vuelva a comprobar el permiso de escritura.");
  48. define('OGP_LANG_admin_login_details', "Datos Del Administrador Principal");
  49. define('OGP_LANG_config_written', "El archivo de configuración se creo correctamente.");
  50. define('OGP_LANG_database_created', "Las tables se crearon completamente.");
  51. define('OGP_LANG_admin_login_details_info', "Ahora crearemos un usuario administrador para su Open game panel.");
  52. define('OGP_LANG_username', "Usuario");
  53. define('OGP_LANG_repeat_password', "Repita la contraseña");
  54. define('OGP_LANG_email', "Dirección de correo electrónico");
  55. define('OGP_LANG_back', "Volver");
  56. 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.");
  57. define('OGP_LANG_php_version_check', "Comprobando la versión de PHP");
  58. define('OGP_LANG_invalid_username', "Introdujo un nombre de usuario no valido.");
  59. define('OGP_LANG_password_too_short', "Contraseña demasiado corta.");
  60. define('OGP_LANG_password_contains_invalid_characters', "Su contraseña contiene caracteres no validos.");
  61. define('OGP_LANG_invalid_email_address', "Ha introducido una dirección de correo electrónico no válida.");
  62. define('OGP_LANG_setup_complete', "La instalación terminó correctamente. Open Game Panel está listo para sú uso.");
  63. 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.");
  64. define('OGP_LANG_go_to_panel', "Haga click aquí para entrar a OGP.");
  65. define('OGP_LANG_unable_to_resolve', "Sí no puede resolver este problema visite el foro de OpenGamePanel.org, estaremos encantados de ayudarle.");
  66. define('OGP_LANG_slogan', "El de código abierto!");
  67. 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>");
  68. ?>