mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-17 22:47:58 -04:00
33 lines
1.5 KiB
PHP
33 lines
1.5 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/)
|
|
* @license http://opensource.org/licenses/MIT MIT License
|
|
* @link http://codeigniter.com
|
|
*/
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
$lang['profiler_database'] = 'BANCO DE DADOS';
|
|
$lang['profiler_controller_info'] = 'CLASSE/METODO';
|
|
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
|
$lang['profiler_queries'] = 'CONSULTAS';
|
|
$lang['profiler_get_data'] = 'DADOS GET';
|
|
$lang['profiler_post_data'] = 'DADOS POST';
|
|
$lang['profiler_uri_string'] = 'URI STRING';
|
|
$lang['profiler_memory_usage'] = 'USO DE MEMÓRIA';
|
|
$lang['profiler_config'] = 'VARIÁVEIS DE CONFIGURAÇÃO';
|
|
$lang['profiler_session_data'] = 'DADOS DA SESSÃO';
|
|
$lang['profiler_headers'] = 'CABEÇALHOS HTTP';
|
|
$lang['profiler_no_db'] = 'Não foi carregado o driver do banco de dados corrente.';
|
|
$lang['profiler_no_queries'] = 'Não tem consulta em execução.';
|
|
$lang['profiler_no_post'] = 'Não existe dados para postar.';
|
|
$lang['profiler_no_get'] = 'Não existe dados para obter.';
|
|
$lang['profiler_no_uri'] = 'Não existem dados URI';
|
|
$lang['profiler_no_memory'] = 'Uso de memória indisponível';
|
|
$lang['profiler_no_profiles'] = 'Não há dados no perfil - Todas as sessões de profile foram desativados.';
|
|
$lang['profiler_section_hide'] = 'Ocultar';
|
|
$lang['profiler_section_show'] = 'Exibir';
|
|
$lang['profiler_seconds'] = 'segundos';
|