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
 * @author	Stefano Mazzega
7
 * @copyright	Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
8
 * @license	http://opensource.org/licenses/MIT	MIT License
9
 * @link	https://codeigniter.com
10
 */
11
defined('BASEPATH') OR exit('No direct script access allowed');
12
 
13
$lang['profiler_database'] = 'DATABASE';
14
$lang['profiler_controller_info'] = 'CLASSE/METODO';
15
$lang['profiler_benchmarks'] = 'BENCHMARKS';
16
$lang['profiler_queries'] = 'QUERIES';
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'] = 'UTILIZZO MEMORIA';
21
$lang['profiler_config'] = 'VARIABILI DI CONFIGURAZIONE';
22
$lang['profiler_session_data'] = 'SESSION DATA';
23
$lang['profiler_headers'] = 'HTTP HEADERS';
24
$lang['profiler_no_db'] = 'Il driver del database non è attualmente caricato';
25
$lang['profiler_no_queries'] = 'Nessuna query è stata eseguita';
26
$lang['profiler_no_post'] = 'Nessun parametro POST esistente';
27
$lang['profiler_no_get'] = 'Nessun parametro GET esistente';
28
$lang['profiler_no_uri'] = 'Nessun parametro URI esistente';
29
$lang['profiler_no_memory'] = 'Utilizzo memoria non disponibile';
30
$lang['profiler_no_profiles'] = 'No Profile data - tutte le sezioni del Profiler sono state disabilitate.';
31
$lang['profiler_section_hide'] = 'Nascondi';
32
$lang['profiler_section_show'] = 'Mostra';
33
$lang['profiler_seconds'] = 'secondi';