| 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 |
* @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'] = 'Es wurde keine Migration gefunden.';
|
|
|
13 |
$lang['migration_not_found'] = 'Die Migration mit der Versionsnummer %s wurde nicht gefunden.';
|
|
|
14 |
$lang['migration_sequence_gap'] = 'Es besteht eine Lücke in der Migrationsfolge nahe der Versionsnummer: %s.';
|
|
|
15 |
$lang['migration_multiple_version'] = 'Es existieren mehrere Migrationen mit der gleichen Versionsnummer: %s.';
|
|
|
16 |
$lang['migration_class_doesnt_exist'] = 'Die Migrationsklasse "%s" konnte nicht gefunden werden.';
|
|
|
17 |
$lang['migration_missing_up_method'] = 'Der Migrationsklasse "%s" fehlt eine "up" Methode.';
|
|
|
18 |
$lang['migration_missing_down_method'] = 'Der Migrationsklasse "%s" fehlt eine "down" Methode.';
|
|
|
19 |
$lang['migration_invalid_filename'] = 'Migration "%s" hat einen ungültigen Dateinamen.';
|