mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-11 19:50:25 -04:00
32 lines
1.7 KiB
PHP
32 lines
1.7 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'] = 'قاعدة البيانات';
|
|
$lang['profiler_controller_info'] = 'الصنف/الدالة';
|
|
$lang['profiler_benchmarks'] = 'بيانات التقييم';
|
|
$lang['profiler_queries'] = 'الاستعلامات';
|
|
$lang['profiler_get_data'] = 'بيانات GET';
|
|
$lang['profiler_post_data'] = 'بيانات POST';
|
|
$lang['profiler_uri_string'] = 'سطر URI';
|
|
$lang['profiler_memory_usage'] = 'استهلاك الذاكرة';
|
|
$lang['profiler_config'] = 'متغيّرات التهيئة';
|
|
$lang['profiler_session_data'] = 'بيانات الجلسة';
|
|
$lang['profiler_headers'] = 'ترويسات HTTP';
|
|
$lang['profiler_no_db'] = 'لا يوجد أي مُعرف قاعدة بيانات مُحمّل حالياً';
|
|
$lang['profiler_no_queries'] = 'لم تنفّذ أية استعلامات';
|
|
$lang['profiler_no_post'] = 'ليس هناك بيانات POST';
|
|
$lang['profiler_no_get'] = 'ليس هناك بيانات GET';
|
|
$lang['profiler_no_uri'] = 'ليس هناك بيانات URI';
|
|
$lang['profiler_no_memory'] = 'بيانات استهلاك الذاكرة غير متوفرة';
|
|
$lang['profiler_no_profiles'] = 'لا يوجد أي بيانات تقييم حيث أن جميع أقسام التقييم مُعطّلة.';
|
|
$lang['profiler_section_hide'] = 'اخفاء';
|
|
$lang['profiler_section_show'] = 'اظهار';
|
|
$lang['profiler_seconds'] = 'ثواني'; |