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	Ignasi Molsosa
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'] = 'BASE DE DADES';
14
$lang['profiler_controller_info'] = 'CLASSE/MÈTODE';
15
$lang['profiler_benchmarks'] = 'BENCHMARKS';
16
$lang['profiler_queries'] = 'CONSULTES';
17
$lang['profiler_get_data'] = 'DADES GET';
18
$lang['profiler_post_data'] = 'DADES POST';
19
$lang['profiler_uri_string'] = 'CADENA URI';
20
$lang['profiler_memory_usage'] = 'US DE MEMÒRIA';
21
$lang['profiler_config'] = 'VARIABLES CONFIG';
22
$lang['profiler_session_data'] = 'DADES DE SESSIÓ';
23
$lang['profiler_headers'] = 'CAPÇALERES HTTP';
24
$lang['profiler_no_db'] = 'El driver Database no està carregat actualment';
25
$lang['profiler_no_queries'] = 'No s\'ha executat cap consulta';
26
$lang['profiler_no_post'] = 'No hi ha dades POST';
27
$lang['profiler_no_get'] = 'No hi ha dades GET';
28
$lang['profiler_no_uri'] = 'No hi ha dades de la URI';
29
$lang['profiler_no_memory'] = 'Ús de memòria no disponible';
30
$lang['profiler_no_profiles'] = 'No hi ha dades d\'anàlisi de rendiment - Totes les seccions del profiler han estat desactivades.';
31
$lang['profiler_section_hide'] = 'Amaga';
32
$lang['profiler_section_show'] = 'Mostra';
33
$lang['profiler_seconds'] = 'segons';