mirror of
https://github.com/YunoHost-Apps/agendav_ynh.git
synced 2024-09-03 20:36:12 +02:00
20 lines
No EOL
842 B
PHP
20 lines
No EOL
842 B
PHP
<?php
|
|
|
|
$lang['profiler_database'] = 'DATABASE';
|
|
$lang['profiler_controller_info'] = 'CLASS/METHOD';
|
|
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
|
$lang['profiler_queries'] = 'QUERIES';
|
|
$lang['profiler_get_data'] = 'GET DATA';
|
|
$lang['profiler_post_data'] = 'POST DATA';
|
|
$lang['profiler_uri_string'] = 'URI STRING';
|
|
$lang['profiler_memory_usage'] = 'MEMORY USAGE';
|
|
$lang['profiler_config'] = '';
|
|
$lang['profiler_headers'] = '';
|
|
$lang['profiler_no_db'] = 'Il driver del database non è attualmente caricato';
|
|
$lang['profiler_no_queries'] = 'Nessuna query è stata eseguita';
|
|
$lang['profiler_no_post'] = 'Nessun POST esistente';
|
|
$lang['profiler_no_get'] = 'Nessun GET esistente';
|
|
$lang['profiler_no_uri'] = 'Nessun URI esistente';
|
|
$lang['profiler_no_memory'] = 'Utilizzo memoria non disponibile';
|
|
$lang['profiler_no_profiles'] = '';
|
|
?>
|