mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-18 15:09:38 -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'] = 'Hər hansı daşınma tapılmadı.';
|
||
$lang['migration_not_found'] = 'Göstərilən versiyası nömrəli daşınma tapılmadı: %s.';
|
||
$lang['migration_sequence_gap'] = 'Bu versiyası nömrəsinə yaxın daşınma sıralamasında bir boşluq var: %s.';
|
||
$lang['migration_multiple_version'] = 'Eyni versiyası nömrəli birdən çox daşınma var: %s.';
|
||
$lang['migration_class_doesnt_exist'] = 'Danışnma sinifi "%s" tapılamdı.';
|
||
$lang['migration_missing_up_method'] = '"%s" daşınma sinifində "up" metodu əksikdi.';
|
||
$lang['migration_missing_down_method'] = '"%s" daşınma sinifində "down" metodu əksikdi.';
|
||
$lang['migration_invalid_filename'] = '"%s" daşınmasında səhv fayl adı.';
|