modulemanager.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. define('OGP_LANG_module_id', "أي دي الوحدة");
  25. define('OGP_LANG_module_name', "إسم الوحدة");
  26. define('OGP_LANG_module_folder', "ملف الوحدة");
  27. define('OGP_LANG_module_version', "إصدار الوحدة");
  28. define('OGP_LANG_db_version', "إصدار قاعدة البيانات");
  29. define('OGP_LANG_modules_available_for_install', "الوحدات المخصصة المتاحة للتثبيت:");
  30. define('OGP_LANG_install', "التثبت");
  31. define('OGP_LANG_uninstall', "الغاء التثبيت");
  32. define('OGP_LANG_modules', "الوحدات");
  33. define('OGP_LANG_update_modules', "تحديث الوحدات");
  34. define('OGP_LANG_no_installed_modules', "لم يتم العثور على وحدات مثبتة.");
  35. define('OGP_LANG_not_complete', "ميزة التثبيت / إلغاء التثبيت ليست كاملة وقد لا تعمل بشكل صحيح. تحذير: قد يحدث فقدان البيانات في قاعدة بيانات أوغب!");
  36. define('OGP_LANG_core_mods_installed', "الوحدات الأساسية المثبتة:");
  37. define('OGP_LANG_custom_mods_installed', "الوحدات المخصصة المثبتة:");
  38. define('OGP_LANG_installing_module', "تثبيت وحدة '%s'");
  39. define('OGP_LANG_successfully_installed_module', "تم تثبيت الوحدة %s بنجاح.");
  40. define('OGP_LANG_failed_to_install_module', "أخفق تثبيت الوحدة %s.");
  41. define('OGP_LANG_adding_module', "إضافة وحدة تسمى'%s'.");
  42. define('OGP_LANG_module_already_installed', "الوحدة التي تسمى '%s' مثبتة بالفعل.");
  43. define('OGP_LANG_uninstalling_module', "إلغاء تثبيت الوحدة '%s'");
  44. define('OGP_LANG_successfully_uninstalled_module', "تم إلغاء تثبيت الوحدة %s بنجاح.");
  45. define('OGP_LANG_failed_to_uninstall_module', "أخفقت إزالة الوحدة %s.");
  46. define('OGP_LANG_module_file_missing', "الدليل مفقود في ملف module.php.");
  47. define('OGP_LANG_module_file_missing_info', "يفتقد المعلومات المطلوبة.");
  48. define('OGP_LANG_query_failed', "أخفق تنفيذ طلب الquery");
  49. define('OGP_LANG_query_failed_2', "إلى قاعدة البيانات.");
  50. define('OGP_LANG_failed_del_db', "أخفق حذف الوحدة من قاعدة البيانات.");
  51. define('OGP_LANG_updated_module', "الوحدة المحدثة: '%s'.");
  52. define('OGP_LANG_updating_modules', "تحديث الوحدات");
  53. define('OGP_LANG_updating_finished', "تم الانتهاء من التحديث");
  54. ?>