| 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', "Hello,<br><br>Your Open Game Panel account has been created and you may <a href='%s' target='_blank'>login now</a>.<br><br>Username: %s<br><br>Remember to change your password often and the first time you login.<br><br>Please do not reply to this email!<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 :: اطلاعات حساب");
- ?>
|