mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-25 17:57:58 -05:00
33 lines
1.7 KiB
PHP
33 lines
1.7 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 СТРОКА';
|
||
$lang['profiler_memory_usage'] = 'ИСПОЛЬЗОВАНИЕ ПАМЯТИ';
|
||
$lang['profiler_config'] = 'ПЕРЕМЕННЫЕ КОНФИГУРАЦИИ';
|
||
$lang['profiler_session_data'] = 'SESSION ДАННЫЕ';
|
||
$lang['profiler_headers'] = 'HTTP ЗАГОЛОВКИ';
|
||
$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'] = 'секунд';
|