| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
*
|
|
|
5 |
* @author CodeIgniter community
|
|
|
6 |
* @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
|
|
|
7 |
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
8 |
* @link https://codeigniter.com
|
|
|
9 |
*/
|
|
|
10 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
11 |
|
|
|
12 |
$lang['migration_none_found'] = 'Herhangi bir taşınma bulunamadı.';
|
|
|
13 |
$lang['migration_not_found'] = 'Belirtilen sürüm numaralı taşınma bulunamadı: %s.';
|
|
|
14 |
$lang['migration_sequence_gap'] = 'Şu sürüm numarasına yakın taşınma sıralamasında bir boşluk var: %s.';
|
|
|
15 |
$lang['migration_multiple_version'] = 'Aynı sürüm numaralı birden çok taşınma var: %s.';
|
|
|
16 |
$lang['migration_class_doesnt_exist'] = 'Taşınma sınıfı "%s" bulunamadı.';
|
|
|
17 |
$lang['migration_missing_up_method'] = '"%s" taşınma sınıfında "up" metodu eksik.';
|
|
|
18 |
$lang['migration_missing_down_method'] = '"%s" taşınma sınıfında "down" metodu eksik.';
|
|
|
19 |
$lang['migration_invalid_filename'] = '"%s" taşınmasında geçersiz dosya adı.';
|