update.php 3.8 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 ignored file(s)");
  32. define('OGP_LANG_not_updated_files_blacklisted', "Not updated/installed 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 فایل Overwrite شدند.");
  38. define('OGP_LANG_files_not_overwritten', "%s files are NOT overwritten due to blacklist");
  39. define('OGP_LANG_can_not_update_non_writable_files', "امکان به روزرسانی وجود ندارد، فایل ها یا دایرکتوری های مورد نظر Writable نیستند.");
  40. define('OGP_LANG_dwl_failed', "لینک دانلود درحال حاضر در دسترس نیست: \"%s\".<br> بعدا سعی کنید.");
  41. define('OGP_LANG_temp_folder_not_writable', "The download can not be placed, because Apache does not have write permission at the system temporary folder (%s).");
  42. define('OGP_LANG_base_dir_not_writable', "پنل نمیتواند به روزرسانی شود، Apache دست رسی Write کردن بر روی \"%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', "اجرای Query با شکست مواجه شد");
  56. define('OGP_LANG_query_failed_2', "به پایگاه داده.");
  57. define('OGP_LANG_missing_zip_extension', "The php-zip extension is not loaded. Please, enable it to use the Update module.");
  58. ?>