mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-27 10:22:41 +03:00
3c605c139c
Only files already existing in EA! were imported. CI's portuguese-brazilian folder was used for EA!'s portuguese-br. CI's simplified-chinese folder was used for EA!'s chinese folder. No supported translations exists for Finish and Luxembourgish. The migration_lang files for these languages are still in English but one translation key is missing compared to the EA! English original file. For consistency purpose, the Finish and Luxembourgish migration_lang files have been overwritten by the EA! English original file.
19 lines
1.1 KiB
PHP
19 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* System messages translation for CodeIgniter(tm)
|
|
*
|
|
* @author CodeIgniter community
|
|
* @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'] = 'Es wurde keine Migration gefunden.';
|
|
$lang['migration_not_found'] = 'Die Migration mit der Versionsnummer %s wurde nicht gefunden.';
|
|
$lang['migration_sequence_gap'] = 'Es besteht eine Lücke in der Migrationsfolge nahe der Versionsnummer: %s.';
|
|
$lang['migration_multiple_version'] = 'Es existieren mehrere Migrationen mit der gleichen Versionsnummer: %s.';
|
|
$lang['migration_class_doesnt_exist'] = 'Die Migrationsklasse "%s" konnte nicht gefunden werden.';
|
|
$lang['migration_missing_up_method'] = 'Der Migrationsklasse "%s" fehlt eine "up" Methode.';
|
|
$lang['migration_missing_down_method'] = 'Der Migrationsklasse "%s" fehlt eine "down" Methode.';
|
|
$lang['migration_invalid_filename'] = 'Migration "%s" hat einen ungültigen Dateinamen.';
|