Files
opensourcepos/application/language/ukrainian/migration_lang.php
2016-08-18 13:33:01 +02:00

20 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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'] = 'Неможливо знайти клас міграції "%s".';
$lang['migration_missing_up_method'] = 'В класі міграції "%s" відсунтій "up" метод.';
$lang['migration_missing_down_method'] = 'В класі міграції "%s" відсутній "down" метод.';
$lang['migration_invalid_filename'] = 'Міграція "%s" має недопустиме ім’я файлу.';