easyappointments/application/language/hebrew/migration_lang.php

21 lines
1.1 KiB
PHP
Raw Normal View History

2020-11-18 19:35:06 +03:00
<?php
/**
* System messages translation for CodeIgniter(tm)
*
2020-12-09 15:17:45 +03:00
* @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
2020-11-18 19:35:06 +03:00
*/
2020-12-09 15:17:45 +03:00
defined('BASEPATH') or exit('No direct script access allowed');
2020-11-18 19:35:06 +03:00
2020-12-09 15:17:45 +03:00
$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" יש שם קובץ לא חוקי.';