Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2418 lars 1
<?php
2
/**
3
 * System messages translation for CodeIgniter(tm)
4
 *
5
 * @author	CodeIgniter community
6
 * @copyright	Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
7
 * @license	http://opensource.org/licenses/MIT	MIT License
8
 * @link	https://codeigniter.com
9
 */
10
defined('BASEPATH') OR exit('No direct script access allowed');
11
 
12
$lang['profiler_database'] = 'БАЗА ДАННЫХ';
13
$lang['profiler_controller_info'] = 'КЛАСС/МЕТОД';
14
$lang['profiler_benchmarks'] = 'КРИТЕРИИ';
15
$lang['profiler_queries'] = 'ЗАПРОСЫ';
16
$lang['profiler_get_data'] = 'GET ДАННЫЕ';
17
$lang['profiler_post_data'] = 'POST ДАННЫЕ';
18
$lang['profiler_uri_string'] = 'URI СТРОКА';
19
$lang['profiler_memory_usage'] = 'ИСПОЛЬЗОВАНИЕ ПАМЯТИ';
20
$lang['profiler_config'] = 'ПЕРЕМЕННЫЕ КОНФИГУРАЦИИ';
21
$lang['profiler_session_data'] = 'SESSION ДАННЫЕ';
22
$lang['profiler_headers'] = 'HTTP ЗАГОЛОВКИ';
23
$lang['profiler_no_db'] = 'Драйвер базы данных в данный момент не загружен';
24
$lang['profiler_no_queries'] = 'Ни один запрос не был выполнен';
25
$lang['profiler_no_post'] = 'Нет данных POST';
26
$lang['profiler_no_get'] = 'Нет данных GET';
27
$lang['profiler_no_uri'] = 'Нет данных URI';
28
$lang['profiler_no_memory'] = 'Информация по использованию памяти недоступна';
29
$lang['profiler_no_profiles'] = 'Нет данных для профилирования - все секции профайлера были отключены.';
30
$lang['profiler_section_hide'] = 'Спрятать';
31
$lang['profiler_section_show'] = 'Показать';
32
$lang['profiler_seconds'] = 'секунд';