mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-26 10:03:11 -04:00
33 lines
2.1 KiB
PHP
33 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* System messages translation for CodeIgniter(tm)
|
|
*
|
|
* @author CodeIgniter community
|
|
* @author Kim Chanthoeun
|
|
* @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'] = 'DATABASE';
|
|
$lang['profiler_controller_info'] = 'CLASS/METHOD';
|
|
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
|
$lang['profiler_queries'] = 'QUERIES';
|
|
$lang['profiler_get_data'] = 'GET DATA';
|
|
$lang['profiler_post_data'] = 'POST DATA';
|
|
$lang['profiler_uri_string'] = 'URI STRING';
|
|
$lang['profiler_memory_usage'] = 'MEMORY USAGE';
|
|
$lang['profiler_config'] = 'CONFIG VARIABLES';
|
|
$lang['profiler_session_data'] = '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'] = 'វិនាទី'; |