48 lines
No EOL
2 KiB
PHP
48 lines
No EOL
2 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_system_uptime', "Sistem Çalışma Süresi");
|
||
define('OGP_LANG_system_up_time', "Çalışma Süresi");
|
||
define('OGP_LANG_system_up_since', "Bu yana");
|
||
define('OGP_LANG_day_word', "Gün");
|
||
define('OGP_LANG_days_word', "Gün");
|
||
define('OGP_LANG_hour_word', "Saat");
|
||
define('OGP_LANG_hours_word', "Saat");
|
||
define('OGP_LANG_minute_word', "Dakika");
|
||
define('OGP_LANG_minutes_word', "Dakika");
|
||
define('OGP_LANG_second_word', "Saniye");
|
||
define('OGP_LANG_seconds_word', "Saniye");
|
||
define('OGP_LANG_cpu_usage', "CPU Kullanımı");
|
||
define('OGP_LANG_cpu_load', "Yük");
|
||
define('OGP_LANG_ram_usage', "RAM Kullanımı");
|
||
define('OGP_LANG_ram_used', "Kullanılan Bellek");
|
||
define('OGP_LANG_ram_of', "-");
|
||
define('OGP_LANG_storage_space', "Depolama Alanı");
|
||
define('OGP_LANG_storage_total', "Disk Alanı");
|
||
define('OGP_LANG_storage_used', "Kullanılmış");
|
||
define('OGP_LANG_storage_free', "Boş Alan");
|
||
define('OGP_LANG_process_monitor', "İşlem İzleme");
|
||
define('OGP_LANG_status_extension_required', "Eklenti Gerekli");
|
||
define('OGP_LANG_gd_info', " Bu çubuk görüntülerini oluşturmak için <a href=\"http://php.net/manual/en/image.installation.php\">GD</a> PHP eklentisi gerekli");
|
||
?>
|