update.php 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. include('litefm.php');
  25. define('OGP_LANG_curl_needed', "Esta pagina necesita el modulo Curl de PHP.");
  26. define('OGP_LANG_no_access', "Necesitas derechos de administrador para entrar en esta pagina.");
  27. define('OGP_LANG_dwl_update', "Descargando la actualización...");
  28. define('OGP_LANG_dwl_complete', "Descarga completa");
  29. define('OGP_LANG_install_update', "Instalando actualización...");
  30. define('OGP_LANG_update_complete', "<b>Actualización completa.</b>");
  31. define('OGP_LANG_ignored_files', "%s ignored file(s)");
  32. define('OGP_LANG_not_updated_files_blacklisted', "Archivos no actualizados/instalados (en la lista negra): <br>%s");
  33. define('OGP_LANG_latest_version', "Última versión");
  34. define('OGP_LANG_panel_version', "Versión del panel");
  35. define('OGP_LANG_update_now', "Actualizar Ahora");
  36. define('OGP_LANG_the_panel_is_up_to_date', "El panel está actualizado.");
  37. define('OGP_LANG_files_overwritten', "%s Archivos sobrescritos.");
  38. define('OGP_LANG_files_not_overwritten', "%s los archivos NO se sobrescriben debido a la lista negra");
  39. define('OGP_LANG_can_not_update_non_writable_files', "No se puede actualizar porque los siguientes archivos/carpetas no se pueden sobreescribir");
  40. define('OGP_LANG_dwl_failed', "El sistema no puede acceder a la url de la descarga: \"%s\".<br>Intentelo de nuevo mas tarde.");
  41. define('OGP_LANG_temp_folder_not_writable', "La descarga no se puede realizar porque Apache no tiene permiso de escritura en la carpeta temporal del sistema (%s).");
  42. define('OGP_LANG_base_dir_not_writable', "El Panel no puede ser actualizado, debido a que Apache no tiene permisos de escritura en la carpeta \"%s\".");
  43. define('OGP_LANG_new_files', "%s archivos nuevos.");
  44. define('OGP_LANG_updated_files', "Archivos actualizados:<br>%s");
  45. define('OGP_LANG_select_mirror', "Seleccione un servidor de descarga");
  46. define('OGP_LANG_view_changes', "Ver cambios");
  47. define('OGP_LANG_updating_modules', "Actualizando Modulos");
  48. define('OGP_LANG_updating_finished', "Actualización Completa");
  49. define('OGP_LANG_updated_module', "Modulo %s actualizado.");
  50. define('OGP_LANG_blacklist_files', "Lista negra de archivos");
  51. define('OGP_LANG_blacklist_files_info', "Todos los archivos marcados no serán actualizados.");
  52. define('OGP_LANG_save_to_blacklist', "Guardar en la lista negra");
  53. define('OGP_LANG_no_new_updates', "No hay actualizaciones disponibles.");
  54. define('OGP_LANG_module_file_missing', "directorio falta el archivo module.php.");
  55. define('OGP_LANG_query_failed', "Error al ejecutar la consulta");
  56. define('OGP_LANG_query_failed_2', "a la base de datos.");
  57. define('OGP_LANG_missing_zip_extension', "La extensión php-zip no está cargada. Por favor, habilite el uso del módulo de Actualización.");
  58. ?>