mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-25 17:57:58 -05:00
33 lines
1.6 KiB
PHP
33 lines
1.6 KiB
PHP
<?php
|
||
/**
|
||
* System messages translation for CodeIgniter(tm)
|
||
*
|
||
* @author CodeIgniter community
|
||
* @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
|
||
* @license http://opensource.org/licenses/MIT MIT License
|
||
* @link http://codeigniter.com
|
||
*/
|
||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
||
$lang['profiler_database'] = 'VERİ TABANI';
|
||
$lang['profiler_controller_info'] = 'SINIF/METOD';
|
||
$lang['profiler_benchmarks'] = 'KIYASLAMALAR';
|
||
$lang['profiler_queries'] = 'SORGULAR';
|
||
$lang['profiler_get_data'] = 'GET VERİSİ';
|
||
$lang['profiler_post_data'] = 'POST VERİSİ';
|
||
$lang['profiler_uri_string'] = 'URI DİZİSİ';
|
||
$lang['profiler_memory_usage'] = 'BELLEK KULLANIMI';
|
||
$lang['profiler_config'] = 'AYAR DEĞİŞKENLERİ';
|
||
$lang['profiler_session_data'] = 'OTURUM VERİSİ';
|
||
$lang['profiler_headers'] = 'HTTP BAŞLIKLARI';
|
||
$lang['profiler_no_db'] = 'Veri tabanı sürücüsü henüz yüklenmedi';
|
||
$lang['profiler_no_queries'] = 'Herhangi bir sorgu çalıştırılmadı';
|
||
$lang['profiler_no_post'] = 'POST verisi bulunamadı';
|
||
$lang['profiler_no_get'] = 'GET verisi bulunamadı';
|
||
$lang['profiler_no_uri'] = 'URI verisi bulunamadı';
|
||
$lang['profiler_no_memory'] = 'Bellek Kullanımı bulunamadı';
|
||
$lang['profiler_no_profiles'] = 'Profil verisi bulunamadı - Tüm profil bölümleri devre dışı bırakıldı.';
|
||
$lang['profiler_section_hide'] = 'Gizle';
|
||
$lang['profiler_section_show'] = 'Göster';
|
||
$lang['profiler_seconds'] = 'saniye';
|