56 lines
2.9 KiB
PHP
Executable file
56 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_module_id', "Modül ID");
|
||
define('OGP_LANG_module_name', "Modül Adı");
|
||
define('OGP_LANG_module_folder', "Modül Klasörü");
|
||
define('OGP_LANG_module_version', "Modül Sürümü");
|
||
define('OGP_LANG_db_version', "DB Sürümü");
|
||
define('OGP_LANG_modules_available_for_install', "Kurulum için Hazır Özel Modüller:");
|
||
define('OGP_LANG_install', "Yükle");
|
||
define('OGP_LANG_uninstall', "Kaldır");
|
||
define('OGP_LANG_modules', "Modüller");
|
||
define('OGP_LANG_update_modules', "Modülleri Güncelle");
|
||
define('OGP_LANG_no_installed_modules', "Kurulu modül bulunamadı.");
|
||
define('OGP_LANG_not_complete', "Yükle/Kaldır özelliği tamamlanmadı ve düzgün çalışmıyor. UYARI: OGP Veritabanında veri kaybı oluşabilir!");
|
||
define('OGP_LANG_core_mods_installed', "Yüklü Çekirdek Modülleri:");
|
||
define('OGP_LANG_custom_mods_installed', "Yüklü Özel Modüller:");
|
||
define('OGP_LANG_installing_module', "'%s' mödülü yükleniyor.");
|
||
define('OGP_LANG_successfully_installed_module', "%s modülü başarıyla yüklendi.");
|
||
define('OGP_LANG_failed_to_install_module', "%s modülü yüklenirken hata oluştu.");
|
||
define('OGP_LANG_adding_module', "'%s' adında modül ekleniyor.");
|
||
define('OGP_LANG_module_already_installed', "'%s' adlı modül zaten yüklü.");
|
||
define('OGP_LANG_uninstalling_module', "'%s' modülü kaldırılıyor.");
|
||
define('OGP_LANG_successfully_uninstalled_module', "'%s' modülü başarıyla kaldırıldı.");
|
||
define('OGP_LANG_failed_to_uninstall_module', "'%s' modülü kaldırılamadı.");
|
||
define('OGP_LANG_module_file_missing', "module.php dosyasında dizin eksik.");
|
||
define('OGP_LANG_module_file_missing_info', "gerekli bilgileri eksik.");
|
||
define('OGP_LANG_query_failed', "Sorgu yürütülemedi");
|
||
define('OGP_LANG_query_failed_2', "veritabanına.");
|
||
define('OGP_LANG_failed_del_db', "Veritabanından modül silinemedi.");
|
||
define('OGP_LANG_updated_module', "Güncellenen modül: '%s'");
|
||
define('OGP_LANG_updating_modules', "Modüller Güncelleniyor");
|
||
define('OGP_LANG_updating_finished', "Güncelleme Bitti.");
|
||
define('OGP_LANG_prereqs_missing', "%s kurulabilmesi için %s önkoşulları sunucuya yüklenmelidir.");
|
||
?>
|