20 lines
1.5 KiB
PHP
20 lines
1.5 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* System messages translation for CodeIgniter(tm)
|
||
|
*
|
||
|
* @author Kaustubh Kulkarni from JustInClicks.com
|
||
|
* @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" मध्ये "अप" पद्धत नाही.';
|
||
|
$lang['migration_missing_down_method'] = 'स्थलांतर वर्ग "% s" मध्ये "डाऊन" पद्धत नाही.';
|
||
|
$lang['migration_invalid_filename'] = 'स्थलांतर "% s" हे अवैध फाइलनाव आहे.';
|