mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-25 17:57:58 -05:00
33 lines
2.0 KiB
PHP
33 lines
2.0 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'] = 'ฐานข้อมูล';
|
|
$lang['profiler_controller_info'] = 'คลาส/เมธอด';
|
|
$lang['profiler_benchmarks'] = 'การวัดสมรรถนะ';
|
|
$lang['profiler_queries'] = 'คิวรี';
|
|
$lang['profiler_get_data'] = 'ข้อมูล GET';
|
|
$lang['profiler_post_data'] = 'ข้อมูล POST';
|
|
$lang['profiler_uri_string'] = 'URI STRING';
|
|
$lang['profiler_memory_usage'] = 'การใช้งานหน่วยความจำ';
|
|
$lang['profiler_config'] = 'ตัวแปรคอนฟิก';
|
|
$lang['profiler_session_data'] = 'ข้อมูล เซ็สชั่น';
|
|
$lang['profiler_headers'] = 'HTTP HEADERS';
|
|
$lang['profiler_no_db'] = 'ไม่มีการเรียกใช้งานไดร์เวอร์ฐานข้อมูลในขณะนี้';
|
|
$lang['profiler_no_queries'] = 'ไม่มีคิวรีที่รันอยู่';
|
|
$lang['profiler_no_post'] = 'ไม่มีข้อมูล POST';
|
|
$lang['profiler_no_get'] = 'ไม่มีข้อมูล GET';
|
|
$lang['profiler_no_uri'] = 'ไม่มีข้อมูล URI';
|
|
$lang['profiler_no_memory'] = 'ข้อมูลการใช้งานหน่วยความจำไม่พร้อมใช้งาน';
|
|
$lang['profiler_no_profiles'] = 'ไม่พบข้อมูลประวัติ - ส่วนของการเก็บประวัติทั้งหมดอาจถูกปิดไว้';
|
|
$lang['profiler_section_hide'] = 'ซ่อน';
|
|
$lang['profiler_section_show'] = 'แสดง';
|
|
$lang['profiler_seconds'] = 'วินาที';
|