You've already forked Atomcms-edit
Initial commit
This commit is contained in:
Executable
+38
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Turnstile Keys
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the site, and the secret key of your application, after creating an application
|
||||
| with Cloudflare turnstile, copy the site key, and use it here, or in the .env
|
||||
| file.
|
||||
| Note that the secret key should not be publicly accessible.
|
||||
|
|
||||
| @see: https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key
|
||||
|
|
||||
*/
|
||||
'turnstile_site_key' => env('TURNSTILE_SITE_KEY'),
|
||||
|
||||
'turnstile_secret_key' => env('TURNSTILE_SECRET_KEY'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Error Messages
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you can find the error messages for the application. You can modify
|
||||
| or translate the error message as you like.
|
||||
|
|
||||
| Note that you can translate the error message directly, without wrapping
|
||||
| them in translate helper.
|
||||
|
|
||||
*/
|
||||
'error_messages' => [
|
||||
'turnstile_check_message' => 'The captcha failed, please try again.',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user