-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathprofiler_lang.php
More file actions
26 lines (24 loc) · 1.21 KB
/
profiler_lang.php
File metadata and controls
26 lines (24 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
$lang['profiler_database'] = 'BASE DE DATOS';
$lang['profiler_controller_info'] = 'CLASE/MÉTODO';
$lang['profiler_benchmarks'] = 'BENCHMARKS';
$lang['profiler_queries'] = 'CONSULTAS';
$lang['profiler_get_data'] = 'DATOS GET';
$lang['profiler_post_data'] = 'DATOS POST';
$lang['profiler_uri_string'] = 'CADENA URI';
$lang['profiler_memory_usage'] = 'USO DE MEMRIA';
$lang['profiler_config'] = 'VARIABLES DE CONFIGURACIÓN';
$lang['profiler_headers'] = 'CABECERAS HTTP';
$lang['profiler_no_db'] = 'El driver para Base de Datos no ha sido cargado';
$lang['profiler_no_queries'] = 'No se han ejecutado consultas';
$lang['profiler_no_post'] = 'No existen datos de tipo POST';
$lang['profiler_no_get'] = 'No existen datos de tipo GET';
$lang['profiler_no_uri'] = 'No existen datos de tipo URI';
$lang['profiler_no_memory'] = 'Uso de memoria no disponible';
$lang['profiler_no_profiles'] = 'No hay datos de perfil - se desabilitan todas las secciones del perfil.';
/* Added after 2.0.2 */
$lang['profiler_session_data'] = 'DATOS DE SESIÓN';
$lang['profiler_section_hide'] = 'Ocultar';
$lang['profiler_section_show'] = 'Mostrar';
/* End of file profiler_lang.php */
/* Location: ./system/language/spanish/profiler_lang.php */