mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-26 10:03:11 -04:00
36 lines
5.0 KiB
PHP
36 lines
5.0 KiB
PHP
<?php
|
||
/**
|
||
* System messages translation for CodeIgniter(tm)
|
||
*
|
||
* @author CodeIgniter community
|
||
* @author Kim Chanthoeun
|
||
* @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['db_invalid_connection_str'] = 'មិនអាចកំណត់លក្ខណៈប្រព័ន្ធផ្ទុកទិន្នន័យដោយផ្អែកទៅលើ Connection string ។';
|
||
$lang['db_unable_to_connect'] = 'មិនអាចភ្ជាប់ទៅកាន់ប្រព័ន្ធផ្ទុកទិន្នន័យបានទេ។';
|
||
$lang['db_unable_to_select'] = 'មិនអាចជ្រើសរើសប្រព័ន្ធផ្ទុកទិន្នន័យ %s នេះបានទេ។';
|
||
$lang['db_unable_to_create'] = 'មិនអាចបង្កើតប្រព័ន្ធផ្ទុកទិន្នន័យ %s នេះបានទេ។';
|
||
$lang['db_invalid_query'] = 'ការទាញយកទិន្នន័យមិនត្រឹមត្រូវទេ។';
|
||
$lang['db_must_set_table'] = 'អ្នកត្រូវតែកំណត់តារាងប្រព័ន្ធផ្ទុកទិន្នន័យដើម្បីប្រើប្រាស់ក្នុងការទាញយកទិន្នន័យ។';
|
||
$lang['db_must_use_set'] = 'អ្នកត្រូវតែប្រើវិធីសាស្រ្ត "set" ដើម្បីកែសម្រួលទិន្នន័យ។';
|
||
$lang['db_must_use_index'] = 'អ្នកត្រូវតែបញ្ជាក់ index ណាមួយឲ្យបានច្បាស់លាស់ដើម្បីអេាយត្រូវនឹងប្រតិបត្តិការកែសម្រួលជាបណ្តុំ។';
|
||
$lang['db_batch_missing_index'] = 'ជួរដេក(row) មួយឬច្រើនដែលបានស្នើរការកែសម្រួលជាបណ្តុំបានបាត់បង់the specified index។';
|
||
$lang['db_must_use_where'] = 'ប្រតិបត្តិការកែសម្រួលមិនអនុញ្ញាត លើកលែតែមានលក្ខ័ណ where';
|
||
$lang['db_del_must_use_where'] = 'ប្រតិបត្តិការលប់មិនអនុញ្ញាត លើកលែតែមានលក្ខ័ណ where ឬ like។';
|
||
$lang['db_field_param_missing'] = 'ដើម្បីទាញយក fields តម្រូវឲ្យមានឈ្មេាះតារាងដូចទៅនឹងប៉ារ៉ាម៉ែត្រ។';
|
||
$lang['db_unsupported_function'] = 'លក្ខណៈពិសេសនេះមិនអាចប្រតិបត្តិការជាមួយប្រព័ន្ធផ្ទុកទិន្នន័យរបស់អ្នកបានទេ។';
|
||
$lang['db_transaction_failure'] = 'ប្រតិបត្តិការបរាជ័យ : អនុវត្តប្រតិបត្តិការឡើងវិញ។';
|
||
$lang['db_unable_to_drop'] = 'ប្រព័ន្ធផ្ទុកទិន្នន័យនេះមិនអាចលុបបានទេ។';
|
||
$lang['db_unsupported_feature'] = 'លក្ខណៈពិសេសរបស់ប្រព័ន្ធផ្ទុកទិន្នន័យនេះមិនត្រឹមត្រូវទេ។';
|
||
$lang['db_unsupported_compression'] = 'ទំរង់ File compression នេះមិនត្រឹមត្រូវទេ។';
|
||
$lang['db_filepath_error'] = 'File path មិនអាចកែសម្រួលបាន។';
|
||
$lang['db_invalid_cache_path'] = 'ទីតាំង cache មិនត្រឹមត្រូវ ឬមិនអាចកែសម្រួលបាន។';
|
||
$lang['db_table_name_required'] = 'ឈ្មេាះតារាង (table name) តម្រូវឲ្យមានសំរាប់ប្រតិបត្តិការនេះ។';
|
||
$lang['db_column_name_required'] = 'ឈ្មេាះជួរឈរ (column name) តម្រូវឲ្យមានសំរាប់ប្រតិបត្តិការនេះ។';
|
||
$lang['db_column_definition_required'] = 'និយមន័យជួរឈរ (column definition) តម្រូវឲ្យមានប្រតិបត្តិការ សំរាប់ប្រតិបត្តិការនេះ។';
|
||
$lang['db_unable_to_set_charset'] = 'មិនអាចកំណត់តួអក្សអ្នកប្រើប្រាស់: %s';
|
||
$lang['db_error_heading'] = 'ប្រព័ន្ធផ្ទុកទិន្នន័យមានបញ្ហា។'; |