modulemanager.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2016 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('module_id', "ID");
  25. define('module_name', "Nombre");
  26. define('module_folder', "Carpeta");
  27. define('module_version', "Versión");
  28. define('db_version', "Versión BD");
  29. define('modules_available_for_install', "Los siguientes módulos estan disponibles para su instalacion");
  30. define('install', "Instalar");
  31. define('modules', "Módulos");
  32. define('update_modules', "Actualizar Modulos");
  33. define('no_installed_modules', "No se han encontrado módulos instalados.");
  34. define('not_complete', "Peligro, manejar con cuidado, eliminar un módulo <br>puede suponer la pérdida de todos los datos relacionados con el.");
  35. define('core_mods_installed', "Core Modules Installed:");
  36. define('custom_mods_installed', "Custom Modules Installed:");
  37. define('installing_module', "Instalando módulo '%s'");
  38. define('successfully_installed_module', "Módulo %s instalado correctamente");
  39. define('failed_to_install_module', "Fallo al instalar el módulo %s.");
  40. define('adding_module', "Instalando el módulo '%s'.");
  41. define('module_already_installed', "El módulo '%s' ya se ha instalado.");
  42. define('uninstalling_module', "Desinstalando el módulo '%s'");
  43. define('successfully_uninstalled_module', "Se ha desinstalado el módulo %s correctamente.");
  44. define('failed_to_uninstall_module', "Fallo la desinstalacion del módulo %s.");
  45. define('module_file_missing', "El archivo del modulo no existe.");
  46. define('module_file_missing_info', "La informacion sobre el modulo esta incompleta.");
  47. define('query_failed', "No se pudo procesar la peticion con la base de datos.");
  48. define('query_failed_2', "to database.");
  49. define('failed_del_db', "Error al eliminar datos de la BD.");
  50. define('updated_module', "Modulo %s actualizado.");
  51. define('updating_modules', "Actualizando Modulos");
  52. define('updating_finished', "Actualización Completa");
  53. ?>