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
 * @copyright	Mario Ljubičić
8
 * @license	http://opensource.org/licenses/MIT	MIT License
9
 * @link	https://codeigniter.com
10
 */
11
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
12
 
13
$lang['profiler_database'] = 'BAZA';
14
$lang['profiler_controller_info'] = 'KLASA/METODA';
15
$lang['profiler_benchmarks'] = 'BENCHMARKS';
16
$lang['profiler_queries'] = 'UPITI';
17
$lang['profiler_get_data'] = 'GET DATA';
18
$lang['profiler_post_data'] = 'POST DATA';
19
$lang['profiler_uri_string'] = 'URI STRING';
20
$lang['profiler_memory_usage'] = 'UPORABA MEMORIJE';
21
$lang['profiler_config'] = 'CONFIG VRIJEDNOSTI';
22
$lang['profiler_session_data'] = 'PODACI SJEDNICE';
23
$lang['profiler_headers'] = 'HTTP ZAGLAVLJA';
24
$lang['profiler_no_db'] = 'Drajver baze podataka nije trenutno učitan';
25
$lang['profiler_no_queries'] = 'Nema pokrenutih upita';
26
$lang['profiler_no_post'] = 'Ne postoje POST podaci';
27
$lang['profiler_no_get'] = 'Ne postoje GET podaci';
28
$lang['profiler_no_uri'] = 'Ne postoje URI podaci';
29
$lang['profiler_no_memory'] = 'Nedostupna memorija';
30
$lang['profiler_no_profiles'] = 'Nema Profila podataka - sve Profiler sekcije su onemogućene.';
31
$lang['profiler_section_hide'] = 'Sakrij';
32
$lang['profiler_section_show'] = 'Prikaži';
33
$lang['profiler_seconds'] = 'sekundi';