update.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2017 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('curl_needed', "Esta pagina necesita el modulo Curl de PHP.");
  26. define('no_access', "Necesitas derechos de administrador para entrar en esta pagina.");
  27. define('dwl_update', "Descargando la actualización...");
  28. define('dwl_complete', "Descarga completa");
  29. define('install_update', "Instalando actualización...");
  30. define('update_complete', "<b>Actualización completa.</b>");
  31. define('ignored_files', "%s archivos ignorados.");
  32. define('not_updated_files_blacklisted', "Archivos no actualizados/instalados (En la lista negra):<br>%s");
  33. define('latest_version', "Última versión");
  34. define('panel_version', "Versión del panel");
  35. define('update_now', "Actualizar Ahora");
  36. define('the_panel_is_up_to_date', "El panel está actualizado.");
  37. define('files_overwritten', "%s Archivos sobrescritos.");
  38. define('files_not_overwritten', "%s Archivos NO sobrescritos debido a la lista negra.");
  39. define('can_not_update_non_writable_files', "No se puede actualizar porque los siguientes archivos/carpetas no se pueden sobreescribir");
  40. define('dwl_failed', "El sistema no puede acceder a la url de la descarga: \"%s\".<br>Intentelo de nuevo mas tarde.");
  41. define('temp_folder_not_writable', "No se puede colocar la descarga, debido a que Apache no tiene permisos de escritura en la carpeta temporal del sistema(%s).");
  42. define('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('new_files', "%s archivos nuevos.");
  44. define('updated_files', "Archivos actualizados:<br>%s");
  45. define('select_mirror', "Seleccione un servidor de descarga");
  46. define('view_changes', "Ver cambios");
  47. define('get_x_revison_messages_may_take_some_time', "Obtener %s mensajes de revisión puede tardar algún tiempo.");
  48. define('updating_modules', "Actualizando Modulos");
  49. define('updating_finished', "Actualización Completa");
  50. define('updated_module', "Modulo %s actualizado.");
  51. define('blacklist_files', "Lista negra de archivos");
  52. define('blacklist_files_info', "Todos los archivos marcados no serán actualizados.");
  53. define('save_to_blacklist', "Guardar en la lista negra");
  54. define('no_new_updates', "No hay actualizaciones disponibles.");
  55. define('module_file_missing', "directory is missing the module.php file.");
  56. define('query_failed', "Failed to execute query");
  57. define('query_failed_2', "to database.");
  58. define('missing_zip_extension', "The php-zip extension is not loaded. Please enable it to use the update module.");
  59. ?>