addonsmanager.php 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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_plugin', "Instalar Plugins");
  25. define('OGP_LANG_install_mappack', "Instalar Mapas");
  26. define('OGP_LANG_install_config', "Instalar Configs");
  27. define('OGP_LANG_game_name', "Nombre del juego");
  28. define('OGP_LANG_directory', "Ruta del Directorio");
  29. define('OGP_LANG_remote_server', "Servidor Remoto");
  30. define('OGP_LANG_select_addon', "Selecciona Añadido");
  31. define('OGP_LANG_install', "Instalar");
  32. define('OGP_LANG_failed_to_start_file_download', "Falló la descarga.");
  33. define('OGP_LANG_no_games_servers_available', "No hay servidores de juegos en su cuenta.");
  34. define('OGP_LANG_addon_installed_successfully', "Añadido instalado correctamente");
  35. define('OGP_LANG_path', "Ruta");
  36. define('OGP_LANG_wait_while_decompressing', "Espere mientras el archivo %s es descomprimido.");
  37. define('OGP_LANG_addon_name', "Nombre del añadido");
  38. define('OGP_LANG_url', "URL");
  39. define('OGP_LANG_select_game_type', "Selecciona tipo de Juego");
  40. define('OGP_LANG_plugin', "Plugin");
  41. define('OGP_LANG_mappack', "Mapas");
  42. define('OGP_LANG_config', "Configs");
  43. define('OGP_LANG_type', "Tipo de Añadido ");
  44. define('OGP_LANG_game', "Juego");
  45. define('OGP_LANG_show_all_addons', "Mostrar todos");
  46. define('OGP_LANG_show_addons_for_selected_type', "Mostrar del tipo seleccionado");
  47. define('OGP_LANG_show_addons_for_selected_game', "Mostrar del juego seleccionado");
  48. define('OGP_LANG_linux_games', "Juegos Linux:");
  49. define('OGP_LANG_windows_games', "Juegos Windows:");
  50. define('OGP_LANG_create_addon', "Crear Añadido");
  51. define('OGP_LANG_addons_db', "Base de Datos de Añadidos");
  52. define('OGP_LANG_addon_has_been_created', "El añadido %s ha sido creado.");
  53. define('OGP_LANG_remove_addon', "Eliminar añadido");
  54. define('OGP_LANG_fill_the_url_address_to_a_compressed_file', "Por favor, rellene la dirección URL para el archivo comprimido.");
  55. define('OGP_LANG_fill_the_addon_name', "Por favor, escriba el nombre del añadido.");
  56. define('OGP_LANG_select_an_addon_type', "Por favor, seleccione el tipo de añadido que desea agregar.");
  57. define('OGP_LANG_select_a_game_type', "Por favor, seleccione el juego al que pertenece este añadido.");
  58. define('OGP_LANG_edit_addon', "Editar Añadido");
  59. define('OGP_LANG_post-script', "Script post-instalación(bash)");
  60. define('OGP_LANG_replacements', "Reemplazos:");
  61. define('OGP_LANG_addon_name_info', "Introduzca un nombre descriptivo para este añadido, este será el nombre que verá el usuario.");
  62. define('OGP_LANG_url_info', "Introduzca una dirección web que contenga un archivo para descargar, si está comprimido en zip o tar.gz será descomprimido, en la raiz del directorio del servidor o en la ruta indicada a continuación.");
  63. define('OGP_LANG_path_info', "La ruta debe de ser relativa a la carpeta del servidor y no debe contener barras al principio ni al final, ejemplo: cstrike/cfg. Si lo deja en blanco se usara la raiz del servidor.");
  64. define('OGP_LANG_post-script_info', "Escriba código en lenguaje Bash, este será ejecutado como un script, puede usar los reemplazos de texto para personalizar la instalación, estos serán reemplazados por los datos del servidor en el que se instale el añadido. El script partirá de la carpeta raiz del servidor o de la ruta indicada.");
  65. define('OGP_LANG_show_to_group', "Mostrar al grupo");
  66. define('OGP_LANG_all_groups', "Todos los grupos");
  67. define('OGP_LANG_show_addons_for_selected_group', "Mostrar del grupo seleccionado");
  68. define('OGP_LANG_group', "Grupo");
  69. ?>