Files
opensourcepos/system/language/ru/profiler_lang.php
2016-04-04 23:43:13 +02:00

33 lines
1.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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'] = 'секунд';