This commit is contained in:
20
application/language/romanian/migration_lang.php
Normal file
20
application/language/romanian/migration_lang.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @author Cristian Robert Chiribuc
|
||||
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['migration_none_found'] = 'Nu s-au găsit migrații.';
|
||||
$lang['migration_not_found'] = 'Nu s-au putut găsi migrații cu numărul: %s.';
|
||||
$lang['migration_sequence_gap'] = 'Există un decalaj în secvența de migrare aproape de versiunea nr.: %s.';
|
||||
$lang['migration_multiple_version'] = 'Există mai multe migrații cu aceleași versiune de număr: %s.';
|
||||
$lang['migration_class_doesnt_exist'] = 'Clasa migrației "%s" nu a fost găsită.';
|
||||
$lang['migration_missing_up_method'] = 'Clasei migrației "%s" îi lipsește o metodă de tip "up".';
|
||||
$lang['migration_missing_down_method'] = 'Clasei migrației "%s" îi lipsește o metodă de tip "down".';
|
||||
$lang['migration_invalid_filename'] = 'Migrația "%s" are un nume invalid..';
|
||||
Reference in New Issue
Block a user