| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
*
|
|
|
5 |
* @author CodeIgniter community
|
|
|
6 |
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
|
7 |
* @copyright Mario Ljubičić
|
|
|
8 |
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
9 |
* @link https://codeigniter.com
|
|
|
10 |
*/
|
|
|
11 |
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
|
|
12 |
|
|
|
13 |
$lang['migration_none_found'] = 'Migracije nisu pronađene.';
|
|
|
14 |
$lang['migration_not_found'] = 'Nisu pronađene migracije sa verzijom: %s.';
|
|
|
15 |
$lang['migration_sequence_gap'] = 'Postoji praznina u migracijskom slijedu blizu verzije: %s.';
|
|
|
16 |
$lang['migration_multiple_version'] = 'Postoji više migracija sa istom verzijom broj: %s.';
|
|
|
17 |
$lang['migration_class_doesnt_exist'] = 'Migracijska klasa "%s" se ne može pronaći.';
|
|
|
18 |
$lang['migration_missing_up_method'] = 'Migracijskoj klasi "%s" nedostaje "up" metoda.';
|
|
|
19 |
$lang['migration_missing_down_method'] = 'Migracijskoj klasi "%s" nedostaje "down" metoda.';
|
|
|
20 |
$lang['migration_invalid_filename'] = 'Migracija "%s" ima neispravan naziv datoteke.';
|