Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Language/hi/Honeypot.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

declare(strict_types=1);

/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

// Honeypot language settings
return [
'noTemplate' => 'Honeypot HTML टेम्प्लेट कॉन्फ़िगर नहीं किया गया है।', // 'The HTML template for the Honeypot is not configured.'
'noNameField' => 'Honeypot फ़ील्ड का नाम सेट नहीं है।', // 'The name of the Honeypot field is not set.'
'theClientIsABot' => 'संभावना है कि अनुरोधकर्ता एक बॉट है।', // 'The Honeypot client may be a bot.'
];
2 changes: 1 addition & 1 deletion Language/hi/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
'invalidParameter' => 'एक पैरामीटर अपेक्षित प्रकार से मेल नहीं खाता।', // 'A parameter does not match the expected type.'
'missingDefaultRoute' => 'यह निर्धारित करने में असमर्थ कि क्या प्रदर्शित किया जाना चाहिए। रूटिंग फ़ाइल में एक डिफ़ॉल्ट रूट निर्दिष्ट नहीं किया गया है।', // 'Unable to determine what should be displayed. A default route has not been specified in the routing file.'
'invalidDynamicController' => 'सुरक्षा कारणों से एक गतिशील कंट्रोलर की अनुमति नहीं है। रूट हैंडलर: "{0}"', // 'A dynamic controller is not allowed for security reasons. Route handler: "{0}"'
'invalidControllerName' => 'नेमस्पेस डीलिमिटर एक बैकस्लैश (\) है, न कि एक स्लैश (/)। रूट हैंडलर: "{0}"', // 'The namespace delimiter is a backslash (\), not a slash (/). Route handler: "{0}"'
'invalidControllerName' => 'नेमस्पेस डीलिमिटर एक बैकस्लैश (\) है, न कि एक स्लैश (/)। रूट हैंडलर: "{0}"', // 'The namespace delimiter is a backslash (\\), not a slash (/). Route handler: "{0}"'
];