generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add error messages for Cloudflare Turnstile validation in Arabic and …
…English
- Loading branch information
Showing
4 changed files
with
33 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
return [ | ||
'missing-input-secret' => 'لم يتم إرسال البيانات اللازمة للتحقق من Captcha.', | ||
'invalid-input-secret' => 'البيانات اللازمة للتحقق من Captcha غير صحيحة أو غير موجودة.', | ||
'missing-input-response' => 'لم يتم إرسال الرد المطلوب للتحقق من Captcha.', | ||
'invalid-input-response' => 'الرد المطلوب للتحقق من Captcha غير صالح أو انتهت صلاحيته.', | ||
'bad-request' => 'تم رفض الطلب لأنه غير مكتمل أو يحتوي على خطأ.', | ||
'timeout-or-duplicate' => 'تم استخدام رد Captcha هذا مسبقًا.', | ||
'internal-error' => 'حدث خطأ داخلي أثناء التحقق من Captcha.', | ||
'unexpected' => 'حدث خطأ غير متوقع أثناء التحقق من Captcha.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
return [ | ||
'missing-input-secret' => 'The secret parameter was not passed.', | ||
'invalid-input-secret' => 'The secret parameter was invalid or did not exist.', | ||
'missing-input-response' => 'The response parameter was not passed.', | ||
'invalid-input-response' => 'The response parameter is invalid or has expired.', | ||
'bad-request' => 'The request was rejected because it was malformed.', | ||
'timeout-or-duplicate' => 'The response parameter has already been validated before.', | ||
'internal-error' => 'An internal error happened while validating the response.', | ||
'unexpected' => 'An unexpected error occurred.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters