| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
* @author CodeIgniter community
|
|
|
5 |
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
|
6 |
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
7 |
* @link https://codeigniter.com
|
|
|
8 |
*/
|
|
|
9 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
10 |
|
|
|
11 |
$lang['profiler_database'] = 'BASE DE DONNÉES';
|
|
|
12 |
$lang['profiler_controller_info'] = 'CLASSE/MÉTHODE';
|
|
|
13 |
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
|
|
14 |
$lang['profiler_queries'] = 'REQUÊTES';
|
|
|
15 |
$lang['profiler_get_data'] = 'DONNÉES GET';
|
|
|
16 |
$lang['profiler_post_data'] = 'DONNÉES POST';
|
|
|
17 |
$lang['profiler_uri_string'] = 'URI STRING';
|
|
|
18 |
$lang['profiler_memory_usage'] = 'UTILISATION MÉMOIRE';
|
|
|
19 |
$lang['profiler_config'] = 'VARIABLES CONFIG';
|
|
|
20 |
$lang['profiler_session_data'] = 'DONNÉES SESSION';
|
|
|
21 |
$lang['profiler_headers'] = 'EN-TÊTES HTTP';
|
|
|
22 |
$lang['profiler_no_db'] = "Le driver de la base de données n'est actuellement pas chargé";
|
|
|
23 |
$lang['profiler_no_queries'] = "Aucune requête n'a été exécutée";
|
|
|
24 |
$lang['profiler_no_post'] = "Aucune donnée POST n'existe";
|
|
|
25 |
$lang['profiler_no_get'] = "Aucune donnée GET n'existe";
|
|
|
26 |
$lang['profiler_no_uri'] = "Aucune donnée URI n'existe";
|
|
|
27 |
$lang['profiler_no_memory'] = 'Utilisation de la mémoire indisponible';
|
|
|
28 |
$lang['profiler_no_profiles'] = 'Pas de données du profil - toute section est desactivée.';
|
|
|
29 |
$lang['profiler_section_hide'] = 'Cacher';
|
|
|
30 |
$lang['profiler_section_show'] = 'Montrer';
|
|
|
31 |
$lang['profiler_seconds'] = 'secondes';
|