|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +/** |
| 6 | + * This file is part of CodeIgniter 4 framework. |
| 7 | + * |
| 8 | + * (c) CodeIgniter Foundation <admin@codeigniter.com> |
| 9 | + * |
| 10 | + * For the full copyright and license information, please view |
| 11 | + * the LICENSE file that was distributed with this source code. |
| 12 | + */ |
| 13 | + |
| 14 | +// CLI language settings |
| 15 | +return [ |
| 16 | + 'altCommandPlural' => 'तुमचा अर्थ यापैकी एक होता का?', // 'Did you mean one of these?' |
| 17 | + 'altCommandSingular' => 'तुमचा अर्थ हे होते का?', // 'Did you mean this?' |
| 18 | + 'commandNotFound' => 'Command "{0}" सापडला नाही.', // 'Command "{0}" not found.' |
| 19 | + 'generator' => [ |
| 20 | + 'cancelOperation' => 'ऑपरेशन रद्द करण्यात आले आहे.', // 'Operation has been cancelled.' |
| 21 | + 'className' => [ |
| 22 | + 'cell' => 'Cell class नाव', // 'Cell class name' |
| 23 | + 'command' => 'Command class नाव', // 'Command class name' |
| 24 | + 'config' => 'Config class नाव', // 'Config class name' |
| 25 | + 'controller' => 'Controller class नाव', // 'Controller class name' |
| 26 | + 'default' => 'Class नाव', // 'Class name' |
| 27 | + 'entity' => 'Entity class नाव', // 'Entity class name' |
| 28 | + 'filter' => 'Filter class नाव', // 'Filter class name' |
| 29 | + 'migration' => 'Migration class नाव', // 'Migration class name' |
| 30 | + 'model' => 'Model class नाव', // 'Model class name' |
| 31 | + 'seeder' => 'Seeder class नाव', // 'Seeder class name' |
| 32 | + 'test' => 'Test class नाव', // 'Test class name' |
| 33 | + 'transformer' => 'Transformer class नाव', // 'Transformer class name' |
| 34 | + 'validation' => 'Validation class नाव', // 'Validation class name' |
| 35 | + ], |
| 36 | + 'commandType' => 'Command प्रकार', // 'Command type' |
| 37 | + 'databaseGroup' => 'डेटाबेस गट', // 'Database group' |
| 38 | + 'fileCreate' => 'फाइल तयार केली: {0}', // 'File created: {0}' |
| 39 | + 'fileError' => 'फाइल तयार करताना त्रुटी: "{0}"', // 'Error while creating file: "{0}"' |
| 40 | + 'fileExist' => 'फाइल आधीपासून अस्तित्वात आहे: "{0}"', // 'File exists: "{0}"' |
| 41 | + 'fileOverwrite' => 'फाइल अधिलिखित केली: "{0}"', // 'File overwritten: "{0}"' |
| 42 | + 'parentClass' => 'Parent class नाव', // 'Parent class' |
| 43 | + 'returnType' => 'Return प्रकार', // 'Return type' |
| 44 | + 'tableName' => 'टेबलचे नाव', // 'Table name' |
| 45 | + 'usingCINamespace' => 'इशारा: "CodeIgniter" namespace वापरल्यास फाइल system directory मध्ये तयार होईल.', // 'Warning: Using the "CodeIgniter" namespace will generate the file in the system directory.' |
| 46 | + 'viewName' => [ |
| 47 | + 'cell' => 'Cell view नाव', // 'Cell view name' |
| 48 | + ], |
| 49 | + ], |
| 50 | + 'helpArguments' => 'आर्ग्युमेंट्स:', // 'Arguments:' |
| 51 | + 'helpDescription' => 'वर्णन:', // 'Description:' |
| 52 | + 'helpOptions' => 'पर्याय:', // 'Options:' |
| 53 | + 'helpUsage' => 'वापर:', // 'Usage:' |
| 54 | + 'invalidColor' => 'अवैध "{0}" रंग: "{1}".', // 'Invalid "{0}" color: "{1}".' |
| 55 | + 'namespaceNotDefined' => 'Namespace "{0}" परिभाषित केलेले नाही.', // 'Namespace "{0}" is not defined.' |
| 56 | + 'signals' => [ |
| 57 | + 'noPcntlExtension' => 'PCNTL extension उपलब्ध नाही. Signal handling बंद केले आहे.', // 'PCNTL extension not available. Signal handling disabled.' |
| 58 | + 'noPosixExtension' => 'SIGTSTP/SIGCONT हाताळण्यासाठी POSIX extension आवश्यक आहे. हे signals नोंदणीतून काढले जातील.', // 'SIGTSTP/SIGCONT handling requires POSIX extension. These signals will be removed from registration.' |
| 59 | + 'failedSignal' => 'या signal साठी handler नोंदवता आला नाही: "{0}".', // 'Failed to register handler for signal: "{0}".' |
| 60 | + ], |
| 61 | +]; |
0 commit comments