mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-11 11:41:08 -04:00
33 lines
1.9 KiB
PHP
33 lines
1.9 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'] = 'SESSION डेटा';
|
|
$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'] = 'सेकंड';
|