mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-02-01 05:01:14 -05:00
34 lines
1.5 KiB
PHP
34 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* System messages translation for CodeIgniter(tm)
|
|
*
|
|
* @author CodeIgniter community
|
|
* @author Ignasi Molsosa
|
|
* @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'] = 'BASE DE DADES';
|
|
$lang['profiler_controller_info'] = 'CLASSE/MÈTODE';
|
|
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
|
$lang['profiler_queries'] = 'CONSULTES';
|
|
$lang['profiler_get_data'] = 'DADES GET';
|
|
$lang['profiler_post_data'] = 'DADES POST';
|
|
$lang['profiler_uri_string'] = 'CADENA URI';
|
|
$lang['profiler_memory_usage'] = 'US DE MEMÒRIA';
|
|
$lang['profiler_config'] = 'VARIABLES CONFIG';
|
|
$lang['profiler_session_data'] = 'DADES DE SESSIÓ';
|
|
$lang['profiler_headers'] = 'CAPÇALERES HTTP';
|
|
$lang['profiler_no_db'] = 'El driver Database no està carregat actualment';
|
|
$lang['profiler_no_queries'] = 'No s\'ha executat cap consulta';
|
|
$lang['profiler_no_post'] = 'No hi ha dades POST';
|
|
$lang['profiler_no_get'] = 'No hi ha dades GET';
|
|
$lang['profiler_no_uri'] = 'No hi ha dades de la URI';
|
|
$lang['profiler_no_memory'] = 'Ús de memòria no disponible';
|
|
$lang['profiler_no_profiles'] = 'No hi ha dades d\'anàlisi de rendiment - Totes les seccions del profiler han estat desactivades.';
|
|
$lang['profiler_section_hide'] = 'Amaga';
|
|
$lang['profiler_section_show'] = 'Mostra';
|
|
$lang['profiler_seconds'] = 'segons';
|