Skip to content

Commit 1f69071

Browse files
[mr] Add Marathi language translations (#541)
1 parent 4c97b4a commit 1f69071

34 files changed

Lines changed: 947 additions & 0 deletions

Language/mr/Api.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
// API language settings
15+
return [
16+
'invalidFields' => 'अवैध field मागवले गेले: {0}', // 'Invalid field requested: {0}'
17+
'invalidIncludes' => 'अवैध include मागवले गेले: {0}', // 'Invalid include requested: {0}'
18+
'missingInclude' => 'यासाठी include method नाही: {0}', // 'Missing include method for: {0}'
19+
'transformerNotFound' => 'Transformer class \'{0}\' सापडली नाही.', // 'Transformer class \'{0}\' not found.'
20+
'invalidTransformer' => 'Transformer class \'{0}\' ने TransformerInterface implement केलेले असणे आवश्यक आहे.', // 'Transformer class \'{0}\' must implement TransformerInterface.'
21+
];

Language/mr/CLI.php

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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+
];

Language/mr/Cache.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
// Cache language settings
15+
return [
16+
'unableToWrite' => 'कॅश "{0}" मध्ये लिहू शकत नाही.', // 'Cache unable to write to "{0}".'
17+
'invalidHandlers' => 'कॅश कॉन्फिगमध्ये $validHandlers ची array असणे आवश्यक आहे.', // 'Cache config must have an array of $validHandlers.'
18+
'noBackup' => 'कॅश कॉन्फिगमध्ये handler आणि backupHandler सेट असणे आवश्यक आहे.', // 'Cache config must have a handler and backupHandler set.'
19+
'handlerNotFound' => 'कॅश कॉन्फिगमध्ये अवैध handler किंवा backup handler दिलेला आहे.', // 'Cache config has an invalid handler or backup handler specified.'
20+
];

Language/mr/Cast.php

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
// Cast language settings
15+
return [
16+
'baseCastMissing' => '"{0}" क्लासने "CodeIgniter\Entity\Cast\BaseCast" क्लास inherit केलेली असणे आवश्यक आहे.', // 'The "{0}" class must inherit the "CodeIgniter\Entity\Cast\BaseCast" class.'
17+
'enumInvalidCaseName' => 'enum "{1}" साठी case नाव "{0}" अवैध आहे.', // 'Invalid case name "{0}" for enum "{1}".'
18+
'enumInvalidType' => '"{1}" प्रकारचा enum अपेक्षित होता, पण "{0}" मिळाला.', // 'Expected enum of type "{1}", but received "{0}".'
19+
'enumInvalidValue' => 'enum "{0}" साठी मूल्य "{1}" अवैध आहे.', // 'Invalid value "{1}" for enum "{0}".'
20+
'enumMissingClass' => 'enum casting साठी enum class दिलेली असणे आवश्यक आहे.', // 'Enum class must be specified for enum casting.'
21+
'enumNotEnum' => '"{0}" ही वैध enum class नाही.', // 'The "{0}" is not a valid enum class.'
22+
'invalidCastMethod' => '"{0}" ही वैध cast method नाही, वैध methods या आहेत: ["get", "set"].', // 'The "{0}" is invalid cast method, valid methods are: ["get", "set"].'
23+
'invalidTimestamp' => '"timestamp" प्रकाराच्या type casting साठी योग्य timestamp अपेक्षित आहे.', // 'Type casting "timestamp" expects a correct timestamp.'
24+
'jsonErrorCtrlChar' => 'अनपेक्षित control character आढळला.', // 'Unexpected control character found.'
25+
'jsonErrorDepth' => 'कमाल stack depth ओलांडली गेली.', // 'Maximum stack depth exceeded.'
26+
'jsonErrorStateMismatch' => 'Underflow किंवा modes मध्ये विसंगती आहे.', // 'Underflow or the modes mismatch.'
27+
'jsonErrorSyntax' => 'Syntax error, JSON चुकीचा बनलेला आहे.', // 'Syntax error, malformed JSON.'
28+
'jsonErrorUnknown' => 'अज्ञात त्रुटी.', // 'Unknown error.'
29+
'jsonErrorUtf8' => 'चुकीचे UTF-8 अक्षर आढळले, कदाचित चुकीचे encoding झाले आहे.', // 'Malformed UTF-8 characters, possibly incorrectly encoded.'
30+
];

Language/mr/Cookie.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
// Cookie language settings
15+
return [
16+
'invalidExpiresTime' => '"Expires" attribute साठी "{0}" प्रकार अवैध आहे. अपेक्षित: string, integer, DateTimeInterface object.', // 'Invalid "{0}" type for "Expires" attribute. Expected: string, integer, DateTimeInterface object.'
17+
'invalidExpiresValue' => 'कुकीची expiration time वैध नाही.', // 'The cookie expiration time is not valid.'
18+
'invalidCookieName' => 'कुकी नाव "{0}" मध्ये अवैध अक्षरे आहेत.', // 'The cookie name "{0}" contains invalid characters.'
19+
'emptyCookieName' => 'कुकीचे नाव रिकामे असू शकत नाही.', // 'The cookie name cannot be empty.'
20+
'invalidSecurePrefix' => '"__Secure-" prefix वापरण्यासाठी "Secure" attribute सेट केलेला असणे आवश्यक आहे.', // 'Using the "__Secure-" prefix requires setting the "Secure" attribute.'
21+
'invalidHostPrefix' => '"__Host-" prefix वापरताना "Secure" flag सेट असणे आवश्यक आहे, "Domain" attribute नसावा, आणि "Path" "/" असावा.', // 'Using the "__Host-" prefix must be set with the "Secure" flag, must not have a "Domain" attribute, and the "Path" is set to "/".'
22+
'invalidSameSite' => 'SameSite चे मूल्य None, Lax, Strict किंवा रिकामी string असणे आवश्यक आहे, {0} दिले आहे.', // 'The SameSite value must be None, Lax, Strict or a blank string, {0} given.'
23+
'invalidSameSiteNone' => '"SameSite=None" attribute वापरण्यासाठी "Secure" attribute सेट केलेला असणे आवश्यक आहे.', // 'Using the "SameSite=None" attribute requires setting the "Secure" attribute.'
24+
'invalidCookieInstance' => '"{0}" क्लासमध्ये cookies array मधील घटक "{1}" चे instances अपेक्षित होते, पण index {3} वर "{2}" मिळाले.', // '"{0}" class expected cookies array to be instances of "{1}" but got "{2}" at index {3}.'
25+
'unknownCookieInstance' => '"{0}" नाव आणि "{1}" prefix असलेला Cookie object collection मध्ये सापडला नाही.', // 'Cookie object with name "{0}" and prefix "{1}" was not found in the collection.'
26+
];

Language/mr/Core.php

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
// Core language settings
15+
return [
16+
'copyError' => 'फाइल "{0}" बदलण्याचा प्रयत्न करताना त्रुटी आली. कृपया तुमची file directory writable आहे याची खात्री करा.', // 'An error was encountered while attempting to replace the file "{0}". Please make sure your file directory is writable.'
17+
'enabledZlibOutputCompression' => 'तुमचे zlib.output_compression ini directive चालू आहे. हे output buffers सोबत नीट काम करणार नाही.', // 'Your zlib.output_compression ini directive is turned on. This will not work well with output buffers.'
18+
'invalidFile' => 'अवैध फाइल: "{0}"', // 'Invalid file: "{0}"'
19+
'invalidDirectory' => 'Directory अस्तित्वात नाही: "{0}"', // 'Directory does not exist: "{0}"'
20+
'invalidPhpVersion' => 'CodeIgniter चालवण्यासाठी तुमचा PHP version {0} किंवा त्यापेक्षा जास्त असणे आवश्यक आहे. सध्याचा version: {1}', // 'Your PHP version must be {0} or higher to run CodeIgniter. Current version: {1}'
21+
'missingExtension' => 'Framework ला खालील extension(s) install आणि load केलेले असणे आवश्यक आहे: "{0}".', // 'The framework needs the following extension(s) installed and loaded: "{0}".'
22+
'noHandlers' => '"{0}" ने किमान एक Handler द्यायला हवा.', // '"{0}" must provide at least one Handler.'
23+
];

Language/mr/Database.php

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
// Database language settings
15+
return [
16+
'invalidEvent' => '"{0}" हा वैध Model Event callback नाही.', // '"{0}" is not a valid Model Event callback.'
17+
'invalidArgument' => 'तुम्ही वैध "{0}" द्यायला हवा.', // 'You must provide a valid "{0}".'
18+
'invalidAllowedFields' => 'मॉडेल "{0}" साठी allowed fields निर्दिष्ट करणे आवश्यक आहे.', // 'Allowed fields must be specified for model: "{0}"'
19+
'emptyDataset' => '{0} करण्यासाठी कोणताही data नाही.', // 'There is no data to {0}.'
20+
'emptyPrimaryKey' => '{0} तयार करताना कोणतीही primary key defined नाही.', // 'There is no primary key defined when trying to make {0}.'
21+
'failGetFieldData' => 'डेटाबेसमधून field data मिळवण्यात अयशस्वी.', // 'Failed to get field data from database.'
22+
'failGetIndexData' => 'डेटाबेसमधून index data मिळवण्यात अयशस्वी.', // 'Failed to get index data from database.'
23+
'failGetForeignKeyData' => 'डेटाबेसमधून foreign key data मिळवण्यात अयशस्वी.', // 'Failed to get foreign key data from database.'
24+
'parseStringFail' => 'Key string parse करण्यात अयशस्वी.', // 'Parsing key string failed.'
25+
'featureUnavailable' => 'तुम्ही वापरत असलेल्या डेटाबेससाठी ही सुविधा उपलब्ध नाही.', // 'This feature is not available for the database you are using.'
26+
'tableNotFound' => 'सध्याच्या डेटाबेसमध्ये "{0}" टेबल सापडले नाही.', // 'Table "{0}" was not found in the current database.'
27+
'noPrimaryKey' => '"{0}" model class मध्ये Primary Key दिलेली नाही.', // '"{0}" model class does not specify a Primary Key.'
28+
'noDateFormat' => '"{0}" model class मध्ये वैध dateFormat नाही.', // '"{0}" model class does not have a valid dateFormat.'
29+
'fieldNotExists' => 'Field "{0}" सापडले नाही.', // 'Field "{0}" not found.'
30+
'forEmptyInputGiven' => 'Field "{0}" साठी रिकामी statement दिली आहे.', // 'Empty statement is given for the field "{0}"'
31+
'forFindColumnHaveMultipleColumns' => 'Column name मध्ये फक्त एकच column परवानगी आहे.', // 'Only single column allowed in Column name.'
32+
'methodNotAvailable' => 'तुम्ही "{0}" मध्ये "{1}" वापरू शकत नाही. ही Query Builder Class ची method आहे.', // 'You cannot use "{1}" in "{0}". This is a method of the Query Builder Class.'
33+
];

0 commit comments

Comments
 (0)