70 lines
No EOL
4.1 KiB
PHP
70 lines
No EOL
4.1 KiB
PHP
<?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_install_plugin', "Eklentileri Yükle");
|
||
define('OGP_LANG_install_mappack', "Haritaları Yükle");
|
||
define('OGP_LANG_install_config', "Kurulumları Yükle");
|
||
define('OGP_LANG_game_name', "Oyun Adı");
|
||
define('OGP_LANG_directory', "Klasör Yolu");
|
||
define('OGP_LANG_remote_server', "Uzak Sunucu");
|
||
define('OGP_LANG_select_addon', "Addon ' u Seçin");
|
||
define('OGP_LANG_install', "Kur");
|
||
define('OGP_LANG_failed_to_start_file_download', "Dosya indirimi başlatılamadı.");
|
||
define('OGP_LANG_no_games_servers_available', "Hesabınızda kullanılamayan oyun sunucusu yok");
|
||
define('OGP_LANG_addon_installed_successfully', "Eklenti başarıyla yüklendi");
|
||
define('OGP_LANG_path', "Yol");
|
||
define('OGP_LANG_wait_while_decompressing', "%s dosyası açıldığında bekleyin");
|
||
define('OGP_LANG_addon_name', "Ekleni Adı");
|
||
define('OGP_LANG_url', "URL");
|
||
define('OGP_LANG_select_game_type', "Oyun Türünü Seçiniz");
|
||
define('OGP_LANG_plugin', "Eklenti");
|
||
define('OGP_LANG_mappack', "Harita Paketi");
|
||
define('OGP_LANG_config', "Yapılandırma");
|
||
define('OGP_LANG_type', "Eklenti Türü");
|
||
define('OGP_LANG_game', "Oyun");
|
||
define('OGP_LANG_show_all_addons', "Tüm Eklentileri Göster");
|
||
define('OGP_LANG_show_addons_for_selected_type', "Eklentileri Seçilen Tür İçin Göster");
|
||
define('OGP_LANG_show_addons_for_selected_game', "Seçili Oyun İçin Eklentileri Göster");
|
||
define('OGP_LANG_linux_games', "Linux Oyunları");
|
||
define('OGP_LANG_windows_games', "Windows Oyunları");
|
||
define('OGP_LANG_create_addon', "Eklenti oluştur");
|
||
define('OGP_LANG_addons_db', "Eklenti Yöneticisi");
|
||
define('OGP_LANG_addon_has_been_created', "Eklenti %s oluşturuldu.");
|
||
define('OGP_LANG_remove_addon', "Eklenti Sil");
|
||
define('OGP_LANG_fill_the_url_address_to_a_compressed_file', "Lütfen sıkıştırılmış bir dosya için bir URL adresi doldurun.");
|
||
define('OGP_LANG_fill_the_addon_name', "Lütfen Eklenti paketi için bir ad doldurun.");
|
||
define('OGP_LANG_select_an_addon_type', "Lütfen bir eklenti türü seçin.");
|
||
define('OGP_LANG_select_a_game_type', "Lütfen bir oyun türü seçin.");
|
||
define('OGP_LANG_edit_addon', "Eklenti Düzenleme");
|
||
define('OGP_LANG_post-script', "Yükleme sonrası komut dosyası (bash)");
|
||
define('OGP_LANG_replacements', "Yedekler:");
|
||
define('OGP_LANG_addon_name_info', "Bu Eklenti için bir ad girin, bu kullanıcının gördüğü addır.");
|
||
define('OGP_LANG_url_info', "İndirilecek bir dosyayı içeren bir web adresi girin, zip biçiminde sıkıştırılmışsa veya tar.gz dosyasının, sunucunun kök dizininde veya aşağıda verilen yolda açılması gerekir.");
|
||
define('OGP_LANG_path_info', "Yol, sunucu klasörüne göreli olmalı ve başında veya sonunda eğik çizgi içermemelidir, örneğin: cstrike / cfg. Boş bırakılırsa sunucu kök yolu kullanılır");
|
||
define('OGP_LANG_post-script_info', "Bash dil kodunu girin, bu komut dosyası olarak yürütülecektir, yüklemeyi özelleştirmek için metin değiştirmelerini kullanabilir, eklentiyi yüklediğiniz sunucudaki verilerle değiştirilecektir. Komut dosyası sunucunun kök dizininden veya belirtilen yoldan başlayacaktır.");
|
||
define('OGP_LANG_show_to_group', "Gruba göster");
|
||
define('OGP_LANG_all_groups', "Tüm gruplar");
|
||
define('OGP_LANG_show_addons_for_selected_group', "Seçilen gruplar için eklentileri göster");
|
||
define('OGP_LANG_group', "Grup");
|
||
?>
|