mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-26 10:17:59 -05:00
20 lines
1.4 KiB
PHP
20 lines
1.4 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['migration_none_found'] = 'ไม่พบการโยกย้าย';
|
|
$lang['migration_not_found'] = 'ไม่พบข้อมูลการโยกย้าย หมายเลขเวอร์ชั่น: %s.';
|
|
$lang['migration_sequence_gap'] = 'มีช่องว่างในลำดับการโยกย้ายที่อยู่ใกล้หมายเลขรุ่นคือ: %s.';
|
|
$lang['migration_multiple_version'] = 'มีการโยกย้ายหลายรายการที่มีหมายเลขรุ่นเดียวกัน: %s.';
|
|
$lang['migration_class_doesnt_exist'] = 'ไม่พบ Migration Class "%s"';
|
|
$lang['migration_missing_up_method'] = 'Migration class "%s" ไม่มีเมธอด "up"';
|
|
$lang['migration_missing_down_method'] = 'Migration class "%s" ไม่มีเมธอด "down"';
|
|
$lang['migration_invalid_filename'] = 'การโยกย้าย "%s" มีไฟล์ที่ไม่ถูกต้อง';
|