update.php 3.4 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 página requer módulo curl PHP.");
  26. define('OGP_LANG_no_access', "Você precisa de direitos de administrador para acessar esta página.");
  27. define('OGP_LANG_dwl_update', "Carregando a atualização ...");
  28. define('OGP_LANG_dwl_complete', "Download completo");
  29. define('OGP_LANG_install_update', "Instalando atualização...");
  30. define('OGP_LANG_update_complete', "Atualização completa");
  31. define('OGP_LANG_ignored_files', "%s ficheiro(s) ignorado(s)");
  32. define('OGP_LANG_not_updated_files_blacklisted', "Arquivos não atualizados/instalados (lista negra):<br>%s");
  33. define('OGP_LANG_latest_version', "Última versão");
  34. define('OGP_LANG_panel_version', "Versão do painel");
  35. define('OGP_LANG_update_now', "Atualizar agora");
  36. define('OGP_LANG_the_panel_is_up_to_date', "O Painel está atualizado.");
  37. define('OGP_LANG_files_overwritten', "%s arquivos sobrescritos");
  38. define('OGP_LANG_files_not_overwritten', "%s os arquivos NÃO são substituídos devido a lista negra");
  39. define('OGP_LANG_can_not_update_non_writable_files', "Não é possível atualizar porque os seguintes arquivos / pastas não podem ser gravados");
  40. define('OGP_LANG_dwl_failed', "O link de download não está disponível: \"%s\". <br> Tente novamente mais tarde.");
  41. define('OGP_LANG_temp_folder_not_writable', "O download não pode ser colocado, porque o Apache não possui permissão de gravação na pasta temporária do sistema (%s).");
  42. define('OGP_LANG_base_dir_not_writable', "O Painel não pode atualizar, porque o Apache não possui permissão de gravação na pasta \"%s\".");
  43. define('OGP_LANG_new_files', "%s novos arquivos.");
  44. define('OGP_LANG_updated_files', "Arquivos atualizados:<br>%s");
  45. define('OGP_LANG_select_mirror', "Selecione o espelho");
  46. define('OGP_LANG_view_changes', "Ver alterações");
  47. define('OGP_LANG_updating_modules', "Módulos de atualização");
  48. define('OGP_LANG_updating_finished', "Atualização concluída");
  49. define('OGP_LANG_updated_module', "Módulo atualizado: '%s'.");
  50. define('OGP_LANG_blacklist_files', "Arquivos da lista negra");
  51. define('OGP_LANG_blacklist_files_info', "Todos os arquivos marcados não serão atualizados.");
  52. define('OGP_LANG_save_to_blacklist', "Salvar na lista negra");
  53. define('OGP_LANG_no_new_updates', "Não há novas atualizações");
  54. define('OGP_LANG_module_file_missing', "esta em falta a pasta do arquivo module.php.");
  55. define('OGP_LANG_query_failed', "Falha ao executar a consulta");
  56. define('OGP_LANG_query_failed_2', "para o banco de dados.");
  57. define('OGP_LANG_missing_zip_extension', "A extensão php-zip não está carregada. Por favor, habilite-o para usar o módulo de atualização.");
  58. ?>