mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-06-15 02:57:28 -04:00
20 lines
1.4 KiB
PHP
20 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* System messages translation for CodeIgniter(tm)
|
|
*
|
|
* @author CodeIgniter community
|
|
* @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
|
|
* @license http://opensource.org/licenses/MIT MIT License
|
|
* @link http://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" અમાન્ય ફાઇલનામ છે.';
|