forked from mirrors/easyappointments
21 lines
1.1 KiB
PHP
21 lines
1.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* System messages translation for CodeIgniter(tm)
|
||
|
*
|
||
|
* @author CodeIgniter community
|
||
|
* @author Iban Eguia
|
||
|
* @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'] = 'מיזוג לא נמצא.';
|
||
|
$lang['migration_not_found'] = 'לא נמצאה מיזוג למספר הגרסה: %s.';
|
||
|
$lang['migration_sequence_gap'] = 'יש פער בין המיזוג, למספר הגרסה: %s.';
|
||
|
$lang['migration_multiple_version'] = 'ישנם מספר מיזוגים בעלי מספר גרסה זהה: %s.';
|
||
|
$lang['migration_class_doesnt_exist'] = 'מחלקת המיזוג "%s" לא נמצאה.';
|
||
|
$lang['migration_missing_up_method'] = 'מחלקת המיזוג "%s" חסרה את השיטה "up".';
|
||
|
$lang['migration_missing_down_method'] = 'מחלקת המיזוג "%s" חסרה את השיטה "down".';
|
||
|
$lang['migration_invalid_filename'] = 'למיזוג "%s" יש שם קובץ לא חוקי.';
|