mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-11 11:41:08 -04:00
31 lines
1.3 KiB
PHP
31 lines
1.3 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['ut_test_name'] = 'টেস্ট নাম';
|
|
$lang['ut_test_datatype'] = 'টেস্ট ডেটাটাইপ';
|
|
$lang['ut_res_datatype'] = 'প্রত্যাশিত ডেটাটাইপ';
|
|
$lang['ut_result'] = 'ফলাফল';
|
|
$lang['ut_undefined'] = 'টেস্ট নাম সঠিক ভাবে দেয়া হয় নি';
|
|
$lang['ut_file'] = 'ফাইল নেম';
|
|
$lang['ut_line'] = 'লাইন সংখ্যা';
|
|
$lang['ut_passed'] = 'পাসওয়ার্ড';
|
|
$lang['ut_failed'] = 'ব্যর্থ';
|
|
$lang['ut_boolean'] = 'বুলিয়ান';
|
|
$lang['ut_integer'] = 'ইন্টিজার';
|
|
$lang['ut_float'] = 'দশমিক';
|
|
$lang['ut_double'] = 'ডাবল'; // can be the same as float
|
|
$lang['ut_string'] = 'স্ট্রিং';
|
|
$lang['ut_array'] = 'এ্যারে';
|
|
$lang['ut_object'] = 'অবজেক্ট';
|
|
$lang['ut_resource'] = 'রিসোর্স';
|
|
$lang['ut_null'] = 'নাল';
|
|
$lang['ut_notes'] = 'নোট';
|