| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2017 The OGP Development Team
- *
- * http://www.opengamepanel.org/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- */
- define('module_id', "أي دي الوحدة");
- define('module_name', "إسم الوحدة");
- define('module_folder', "ملف الوحدة");
- define('module_version', "إصدار الوحدة");
- define('db_version', "إصدار قاعدة البيانات");
- define('modules_available_for_install', "الوحدات المخصصة المتاحة للتثبيت:");
- define('install', "التثبت");
- define('uninstall', "الغاء التثبيت");
- define('modules', "الوحدات");
- define('update_modules', "تحديث الوحدات");
- define('no_installed_modules', "لم يتم العثور على وحدات مثبتة.");
- define('not_complete', "The install/uninstall feature is not complete and might not work properly. WARNING: Data loss may occur in the OGP database!");
- define('core_mods_installed', "الوحدات الأساسية المثبتة:");
- define('custom_mods_installed', "الوحدات المخصصة المثبتة:");
- define('installing_module', "تثبيت وحدة '%s'");
- define('successfully_installed_module', "تم تثبيت الوحدة %s بنجاح.");
- define('failed_to_install_module', "أخفق تثبيت الوحدة %s.");
- define('adding_module', "Adding module called '%s'.");
- define('module_already_installed', "Module called '%s' is already installed.");
- define('uninstalling_module', "Uninstalling module '%s'");
- define('successfully_uninstalled_module', "Successfully uninstalled module %s.");
- define('failed_to_uninstall_module', "Failed to uninstall module %s.");
- define('module_file_missing', "directory is missing the module.php file.");
- define('module_file_missing_info', "is missing the required information.");
- define('query_failed', "Failed to execute query");
- define('query_failed_2', "إلى قاعدة البيانات.");
- define('failed_del_db', "أخفق حذف الوحدة من قاعدة البيانات.");
- define('updated_module', "الوحدة المحدثة: '%s'.");
- define('updating_modules', "تحديث الوحدات");
- define('updating_finished', "تم الانتهاء من التحديث");
- ?>
|