update.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2016 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', "هذه الصفحة تتطلب PHP curl module .");
  26. define('no_access', "أنت بحاجة إلى صلاحيات الأدمن للدخول إلى هذه الصفحة.");
  27. define('dwl_update', "تحميل التحديث...");
  28. define('dwl_complete', "تم التحميل");
  29. define('install_update', "تثبيت التحديث...");
  30. define('update_complete', "تم التحديث");
  31. define('ignored_files', "%s ملف تم تجاهله");
  32. define('not_updated_files_blacklisted', "لم يتم تحديث / تثبيت ملفات (القائمة السوداء):<br>%s");
  33. define('latest_version', "احدث اصدار");
  34. define('panel_version', "نسخة اللوحة");
  35. define('update_now', "تحديث الان");
  36. define('the_panel_is_up_to_date', "اللوحة محدثة لاخر إصدار.");
  37. define('files_overwritten', "%s ملف استبدل");
  38. define('files_not_overwritten', "%s لم يتم استبداله لانه بالقائمة السوداء");
  39. define('can_not_update_non_writable_files', "لايمكن تحديث الملفات/المجلدات التالية لانها غير قابلة لإستبدال");
  40. define('dwl_failed', "رابط التحميل غير متوفر: \"%s\".<br>جرب مجدداً في وقت لاحق.");
  41. define('temp_folder_not_writable', "The download can not be placed, because Apache does not have write permision at the system temporary folder(%s).");
  42. define('base_dir_not_writable', "The Panel can not update, because Apache does not have write permission on \"%s\" folder.");
  43. define('new_files', "%s ملف جديد");
  44. define('updated_files', "تحديث الملفات:<br>%s");
  45. define('select_mirror', "إختر مرآه");
  46. define('view_changes', "شاهد التغيرات");
  47. define('get_x_revison_messages_may_take_some_time', "الحصول على رسالة مراجعة %s ستأخذ بعض الوقت");
  48. define('updating_modules', "تحديث الموديولات");
  49. define('updating_finished', "انتهى التحديث");
  50. define('updated_module', "تحديث الموديول : '%s'.");
  51. define('blacklist_files', "ملفات القائمة السوداء");
  52. define('blacklist_files_info', "لن يتم تحديث كافة الملفات المعلمة.");
  53. define('save_to_blacklist', "حفظ إلى القائمة السوداء");
  54. define('no_new_updates', "لا توجد تحديثات جديدة");
  55. ?>