register.php 3.6 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_login_name', "اسم المستخدم");
  25. define('OGP_LANG_users_fname', "الاسم الأول");
  26. define('OGP_LANG_users_lname', "الاسم الأخير");
  27. define('OGP_LANG_users_passwd', "كلمة المرور");
  28. define('OGP_LANG_users_cpasswd', "التحقق من كلمة المرور");
  29. define('OGP_LANG_passwd_len', "يجب أن تكون كلمة المرور أطول من 6 أحرف");
  30. define('OGP_LANG_err_password', "لا يمكن أن تكون كلمة المرور فارغة");
  31. define('OGP_LANG_err_confirm_password', "التحقق من أن حقل كلمة المرور لا يمكن أن يكون فارغا");
  32. define('OGP_LANG_err_password_mismatch', "كلمات المرور غير متطابقة");
  33. define('OGP_LANG_phone_number', "رقم الهاتف");
  34. define('OGP_LANG_users_email', "البريد الإلكتروني");
  35. define('OGP_LANG_register_a_new_user', "تسجيل مستخدم جديد");
  36. define('OGP_LANG_password_mismatch', "عدم تطابق كلمات المرور");
  37. define('OGP_LANG_confirm_password', "تأكيد كلمة المرور");
  38. define('OGP_LANG_successfull', "نجح");
  39. define('OGP_LANG_click_here', "انقر هنا");
  40. define('OGP_LANG_to_login', "لتسجيل الدخول.");
  41. define('OGP_LANG_registered_on', "مسجل في: %s.");
  42. define('OGP_LANG_register_message', "مرحبا، <br><br>تم إنشاء حساب Open Game Panel، ويمكنك الآن تسجيل الدخول باستخدام معلومات الحساب التالية:<br><br>اسم المستخدم: %s<br>كلمه السر: %s<br><br>تذكر تغيير كلمة المرور الخاصة بك في كثير من الأحيان، وأول مرة تقوم بتسجيل الدخول.<br><br>رجاءا لا ترد على هذا الأيميل!<br><br>______________________________<br>OGP Mailer");
  43. define('OGP_LANG_err_captcha', "لا يتطابق CAPTCHA.");
  44. define('OGP_LANG_err_login_name', "اسم المستخدم فارغ أو قيد الاستخدام.");
  45. define('OGP_LANG_err_first_name', "أدخل أسمك.");
  46. define('OGP_LANG_err_last_name', "لم يتم إدخال الاسم الأخير.");
  47. define('OGP_LANG_err_phone_number', "رقم الهاتف فارغ.");
  48. define('OGP_LANG_err_email_address', "عنوان بريد إلكتروني فارغ أو غير صحيح.");
  49. define('OGP_LANG_err_email_address_already_in_use_by', "عنوان البريد الإلكتروني قيد الاستخدام من قبل <b>%s</b>.");
  50. define('OGP_LANG_user_registration', "تسجيل المستخدم");
  51. define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "تم إرسال تفاصيل حسابك عبر البريد الإلكتروني إلى <b>%s</b>.");
  52. define('OGP_LANG_account_created', "لقد تم إنشاء حسابك.");
  53. define('OGP_LANG_subject', "%s :: معلومات الحساب");
  54. ?>