modulemanager.php 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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_module_id', "ID");
  25. define('OGP_LANG_module_name', "Nombre");
  26. define('OGP_LANG_module_folder', "Carpeta");
  27. define('OGP_LANG_module_version', "Versión");
  28. define('OGP_LANG_db_version', "Versión BD");
  29. define('OGP_LANG_modules_available_for_install', "Los siguientes módulos estan disponibles para su instalacion");
  30. define('OGP_LANG_install', "Instalar");
  31. define('OGP_LANG_uninstall', "Desinstalar");
  32. define('OGP_LANG_modules', "Módulos");
  33. define('OGP_LANG_update_modules', "Actualizar Modulos");
  34. define('OGP_LANG_no_installed_modules', "No se han encontrado módulos instalados.");
  35. define('OGP_LANG_not_complete', "Peligro, manejar con cuidado, eliminar un módulo <br>puede suponer la pérdida de todos los datos relacionados con el.");
  36. define('OGP_LANG_core_mods_installed', "Módulos base instalados:");
  37. define('OGP_LANG_custom_mods_installed', "Módulos personalizados instalados:");
  38. define('OGP_LANG_installing_module', "Instalando módulo '%s'");
  39. define('OGP_LANG_successfully_installed_module', "Módulo %s instalado correctamente");
  40. define('OGP_LANG_failed_to_install_module', "Fallo al instalar el módulo %s.");
  41. define('OGP_LANG_adding_module', "Instalando el módulo '%s'.");
  42. define('OGP_LANG_module_already_installed', "El módulo '%s' ya se ha instalado.");
  43. define('OGP_LANG_uninstalling_module', "Desinstalando el módulo '%s'");
  44. define('OGP_LANG_successfully_uninstalled_module', "Se ha desinstalado el módulo %s correctamente.");
  45. define('OGP_LANG_failed_to_uninstall_module', "Fallo la desinstalacion del módulo %s.");
  46. define('OGP_LANG_module_file_missing', "El archivo del modulo no existe.");
  47. define('OGP_LANG_module_file_missing_info', "La informacion sobre el modulo esta incompleta.");
  48. define('OGP_LANG_query_failed', "No se pudo procesar la peticion con la base de datos.");
  49. define('OGP_LANG_query_failed_2', "a la base de datos:");
  50. define('OGP_LANG_failed_del_db', "Error al eliminar datos de la BD.");
  51. define('OGP_LANG_updated_module', "Modulo %s actualizado.");
  52. define('OGP_LANG_updating_modules', "Actualizando Modulos");
  53. define('OGP_LANG_updating_finished', "Actualización Completa");
  54. define('OGP_LANG_prereqs_missing', "Debe instalar los requisitos de %s en el sistema para que %s pueda ser instalado.");
  55. ?>