| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2018 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('OGP_LANG_login_name', "اسم المستخدم");
- define('OGP_LANG_users_fname', "الاسم الأول");
- define('OGP_LANG_users_lname', "الاسم الأخير");
- define('OGP_LANG_users_passwd', "كلمة المرور");
- define('OGP_LANG_users_cpasswd', "التحقق من كلمة المرور");
- define('OGP_LANG_passwd_len', "يجب أن تكون كلمة المرور أطول من 6 أحرف");
- define('OGP_LANG_err_password', "لا يمكن أن تكون كلمة المرور فارغة");
- define('OGP_LANG_err_confirm_password', "التحقق من أن حقل كلمة المرور لا يمكن أن يكون فارغا");
- define('OGP_LANG_err_password_mismatch', "كلمات المرور غير متطابقة");
- define('OGP_LANG_phone_number', "رقم الهاتف");
- define('OGP_LANG_users_email', "البريد الإلكتروني");
- define('OGP_LANG_register_a_new_user', "تسجيل مستخدم جديد");
- define('OGP_LANG_password_mismatch', "عدم تطابق كلمات المرور");
- define('OGP_LANG_confirm_password', "تأكيد كلمة المرور");
- define('OGP_LANG_successfull', "نجح");
- define('OGP_LANG_click_here', "انقر هنا");
- define('OGP_LANG_to_login', "لتسجيل الدخول.");
- define('OGP_LANG_registered_on', "مسجل في: %s.");
- define('OGP_LANG_register_message', "مرحبا، <br><br>تم إنشاء حساب Open Game Panel، ويمكنك الآن تسجيل الدخول باستخدام معلومات الحساب التالية:<br><br>اسم المستخدم: %s<br>كلمه السر: %s<br><br>تذكر تغيير كلمة المرور الخاصة بك في كثير من الأحيان، وأول مرة تقوم بتسجيل الدخول.<br><br>رجاءا لا ترد على هذا الأيميل!<br><br>______________________________<br>OGP Mailer");
- define('OGP_LANG_err_captcha', "لا يتطابق CAPTCHA.");
- define('OGP_LANG_err_login_name', "اسم المستخدم فارغ أو قيد الاستخدام.");
- define('OGP_LANG_err_first_name', "أدخل أسمك.");
- define('OGP_LANG_err_last_name', "لم يتم إدخال الاسم الأخير.");
- define('OGP_LANG_err_phone_number', "رقم الهاتف فارغ.");
- define('OGP_LANG_err_email_address', "عنوان بريد إلكتروني فارغ أو غير صحيح.");
- define('OGP_LANG_err_email_address_already_in_use_by', "عنوان البريد الإلكتروني قيد الاستخدام من قبل <b>%s</b>.");
- define('OGP_LANG_user_registration', "تسجيل المستخدم");
- define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "تم إرسال تفاصيل حسابك عبر البريد الإلكتروني إلى <b>%s</b>.");
- define('OGP_LANG_account_created', "لقد تم إنشاء حسابك.");
- define('OGP_LANG_subject', "%s :: معلومات الحساب");
- ?>
|