-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofiler_lang.php
More file actions
executable file
·52 lines (50 loc) · 2.82 KB
/
profiler_lang.php
File metadata and controls
executable file
·52 lines (50 loc) · 2.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.2.4 or newer
*
* NOTICE OF LICENSE
*
* Licensed under the Open Software License version 3.0
*
* This source file is subject to the Open Software License (OSL 3.0) that is
* bundled with this package in the files license.txt / license.rst. It is
* also available through the world wide web at this URL:
* http://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to obtain it
* through the world wide web, please send an email to
* licensing@ellislab.com so we can send you a copy immediately.
*
* @package CodeIgniter
* @author EllisLab Dev Team
* @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/)
* @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
* @link http://codeigniter.com
* @since Version 1.0
* @filesource
*/
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'] = 'វិនាទី';
/* End of file profiler_lang.php */
/* Location: ./system/language/english/profiler_lang.php */