update.php 3.1 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', "此页面需要PHP curl模块。");
  26. define('OGP_LANG_no_access', "您需要管理员权限才能访问此页面。");
  27. define('OGP_LANG_dwl_update', "正在下载更新...");
  28. define('OGP_LANG_dwl_complete', "下载完成");
  29. define('OGP_LANG_install_update', "正在安装更新...");
  30. define('OGP_LANG_update_complete', "更新完成");
  31. define('OGP_LANG_ignored_files', "%s 被忽略的文件(s)");
  32. define('OGP_LANG_not_updated_files_blacklisted', "未更新/安装的文件(黑名单中):<br>%s");
  33. define('OGP_LANG_latest_version', "最新版本");
  34. define('OGP_LANG_panel_version', "面板版本");
  35. define('OGP_LANG_update_now', "立即更新");
  36. define('OGP_LANG_the_panel_is_up_to_date', "面板已是最新。");
  37. define('OGP_LANG_files_overwritten', "%s 个文件被覆盖");
  38. define('OGP_LANG_files_not_overwritten', "%s 个文件由于黑名单而未被覆盖");
  39. define('OGP_LANG_can_not_update_non_writable_files', "无法更新因以下文件/文件夹不可写");
  40. define('OGP_LANG_dwl_failed', "下载链接不可用:\"%s\"。<br>请稍后再试。");
  41. define('OGP_LANG_temp_folder_not_writable', "下载无法进行,因为Apache没有在系统临时文件夹(%s)的写入权限。");
  42. define('OGP_LANG_base_dir_not_writable', "面板无法更新,因为Apache没有对\"%s\"文件夹的写入权限。");
  43. define('OGP_LANG_new_files', "%s 个新文件。");
  44. define('OGP_LANG_updated_files', "更新的文件:<br>%s");
  45. define('OGP_LANG_select_mirror', "选择镜像");
  46. define('OGP_LANG_view_changes', "查看更改");
  47. define('OGP_LANG_updating_modules', "正在更新模块");
  48. define('OGP_LANG_updating_finished', "更新完成");
  49. define('OGP_LANG_updated_module', "已更新的模块:'%s'。");
  50. define('OGP_LANG_blacklist_files', "黑名单文件");
  51. define('OGP_LANG_blacklist_files_info', "所有标记的文件都不会被更新。");
  52. define('OGP_LANG_save_to_blacklist', "保存到黑名单");
  53. define('OGP_LANG_no_new_updates', "没有新的更新");
  54. define('OGP_LANG_module_file_missing', "目录缺少module.php文件。");
  55. define('OGP_LANG_query_failed', "查询执行失败");
  56. define('OGP_LANG_query_failed_2', "到数据库。");
  57. define('OGP_LANG_missing_zip_extension', "php-zip扩展未加载。请启用它以使用更新模块。");
  58. ?>