mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-27 02:21:59 -04:00
34 lines
1.4 KiB
PHP
34 lines
1.4 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/)
|
|
* @copyright Novak Urošević
|
|
* @license http://opensource.org/licenses/MIT MIT License
|
|
* @link http://codeigniter.com
|
|
*/
|
|
defined('BASEPATH') OR exit('Nije dozvoljen direktan pristup');
|
|
|
|
$lang['profiler_database'] = 'BAZA';
|
|
$lang['profiler_controller_info'] = 'KLASA/METOD';
|
|
$lang['profiler_benchmarks'] = 'BENČMARK';
|
|
$lang['profiler_queries'] = 'UPITI';
|
|
$lang['profiler_get_data'] = 'GET DATA';
|
|
$lang['profiler_post_data'] = 'POST DATA';
|
|
$lang['profiler_uri_string'] = 'URI STRING';
|
|
$lang['profiler_memory_usage'] = 'UPOTREBA MEMORIJE';
|
|
$lang['profiler_config'] = 'CONFIG VREDNOSTI';
|
|
$lang['profiler_session_data'] = 'PODACI SESIJE';
|
|
$lang['profiler_headers'] = 'HTTP HEDEERI';
|
|
$lang['profiler_no_db'] = 'Drajver baze podataka nije trenutno učitan';
|
|
$lang['profiler_no_queries'] = 'Nema pokrenutih upita';
|
|
$lang['profiler_no_post'] = 'Ne postoje POST podaci';
|
|
$lang['profiler_no_get'] = 'Ne postoje GET podaci';
|
|
$lang['profiler_no_uri'] = 'Ne postoje URI podaci';
|
|
$lang['profiler_no_memory'] = 'Nedostupna Upotreba Memorije';
|
|
$lang['profiler_no_profiles'] = 'Nema Profil podataka - sve Profajler sekcije su onemogućene.';
|
|
$lang['profiler_section_hide'] = 'Sakrij';
|
|
$lang['profiler_section_show'] = 'Prikaži';
|
|
$lang['profiler_seconds'] = 'sekundi';
|