55 lines
2.9 KiB
PHP
Executable file
55 lines
2.9 KiB
PHP
Executable file
<?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', "Kullanıcı Adı");
|
||
define('OGP_LANG_users_fname', "Ad");
|
||
define('OGP_LANG_users_lname', "Soyad");
|
||
define('OGP_LANG_users_passwd', "Şifre");
|
||
define('OGP_LANG_users_cpasswd', "Şifrenizi onaylayın");
|
||
define('OGP_LANG_passwd_len', "Şifreniz 6 karakterden uzun olmalıdır");
|
||
define('OGP_LANG_err_password', "Şifre boş olamaz");
|
||
define('OGP_LANG_err_confirm_password', "Şifrenizi onaylayın kısmı boş olamaz");
|
||
define('OGP_LANG_err_password_mismatch', "Şifreler eşleşmiyor");
|
||
define('OGP_LANG_phone_number', "Telefon Numaranız");
|
||
define('OGP_LANG_users_email', "Email");
|
||
define('OGP_LANG_register_a_new_user', "Kayıt Ol");
|
||
define('OGP_LANG_password_mismatch', "Şifreler uyumsuz");
|
||
define('OGP_LANG_confirm_password', "Şifreyi onaylayın");
|
||
define('OGP_LANG_successfull', "Başarılı");
|
||
define('OGP_LANG_click_here', "Buraya tıklayın");
|
||
define('OGP_LANG_to_login', "giriş için.");
|
||
define('OGP_LANG_registered_on', "%s olarak kayıt olundu.");
|
||
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>Black Market Servers");
|
||
define('OGP_LANG_err_captcha', "Captcha eşleşmiyor.");
|
||
define('OGP_LANG_err_login_name', "Kullanıcı adı boş veya kullanımda.");
|
||
define('OGP_LANG_err_first_name', "Adınızı girin.");
|
||
define('OGP_LANG_err_last_name', "Soyad girilmedi.");
|
||
define('OGP_LANG_err_phone_number', "Telefon Numarası girilmedi.");
|
||
define('OGP_LANG_err_email_address', "Boş ya da hatalı mail adresi.");
|
||
define('OGP_LANG_err_email_address_already_in_use_by', "Bu mail adresini zaten <b>%s</b> tarafından kullanılıyor.");
|
||
define('OGP_LANG_user_registration', "Kullanıcı Kaydı");
|
||
define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Hesap detaylarınız <b>%s</b> adresine gönderildi.");
|
||
define('OGP_LANG_account_created', "Hesabınız oluşturuldu.");
|
||
define('OGP_LANG_subject', "%s :: Hesap Bilgileri");
|
||
?>
|