mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-11 19:50:25 -04:00
20 lines
1.1 KiB
PHP
20 lines
1.1 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'] = 'Di chuyển không được tìm thấy.';
|
|
$lang['migration_not_found'] = 'Di chuyển không được tìm thấy với phiên bản: %s.';
|
|
$lang['migration_sequence_gap'] = 'Có một khoảng trống gần với di chuyển phiên bản: %s.';
|
|
$lang['migration_multiple_version'] = 'Có nhiều khoảng cách so với phiên bảng : %s.';
|
|
$lang['migration_class_doesnt_exist'] = 'migration class "%s" Không được tìm thấy.';
|
|
$lang['migration_missing_up_method'] = 'migration class "%s" Thiếu phương thức "up".';
|
|
$lang['migration_missing_down_method'] = 'migration class "%s" Thiếu phương thức "down".';
|
|
$lang['migration_invalid_filename'] = 'Migration "%s" Tập tin không hợp lệ.';
|