33 行
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			33 行
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * System messages translation for CodeIgniter(tm)
 | 
						|
 *
 | 
						|
 * @author	CodeIgniter community
 | 
						|
 * @author	Iban Eguia
 | 
						|
 * @copyright	Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
 | 
						|
 * @license	http://opensource.org/licenses/MIT	MIT License
 | 
						|
 * @link	https://codeigniter.com
 | 
						|
 */
 | 
						|
defined('BASEPATH') OR exit('No direct script access allowed');
 | 
						|
 | 
						|
$lang['profiler_database']		= 'BASE DE DATOS';
 | 
						|
$lang['profiler_controller_info'] = 'CLASE/MÉTODO';
 | 
						|
$lang['profiler_benchmarks']	= 'PUNTOS DE REFERENCIA';
 | 
						|
$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 MEMORIA';
 | 
						|
$lang['profiler_config']		= 'VARIABLES DE CONFIGURACIÓN';
 | 
						|
$lang['profiler_session_data']	= 'DATOS DE SESIÓN';
 | 
						|
$lang['profiler_headers']		= 'CABECERAS HTTP';
 | 
						|
$lang['profiler_no_db']			= 'El driver de la base de datos no está cargado actualmente';
 | 
						|
$lang['profiler_no_queries']	= 'No hubo ninguna consulta';
 | 
						|
$lang['profiler_no_post']		= 'No hay ningún dato POST';
 | 
						|
$lang['profiler_no_get']		= 'No hay ningún dato GET';
 | 
						|
$lang['profiler_no_uri']		= 'No hay ningún dato de la URI';
 | 
						|
$lang['profiler_no_memory']		= 'Uso de memoria no disponible';
 | 
						|
$lang['profiler_no_profiles']	= 'No hay datos del perfilador - todas las secciones han sido deshabilitadas.';
 | 
						|
$lang['profiler_section_hide']	= 'Ocultar';
 | 
						|
$lang['profiler_section_show']	= 'Mostrar';
 | 
						|
$lang['profiler_seconds']		= 'segundos';
 |