-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor to guzzle client and environment variables (#13)
* peer review changes * peer review changes * peer review changes * Cleanup docs * test field validate * correct extension syntax --------- Co-authored-by: Bernie Hamlin <[email protected]>
- Loading branch information
Showing
19 changed files
with
318 additions
and
303 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,4 @@ | ||
.vscode | ||
composer.lock | ||
public | ||
vendor |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
de: | ||
Terraformers\TurnstileCaptcha\Forms\CaptchaField: | ||
Terraformers\TurnstileCaptcha\Forms\TurnstileCaptchaField: | ||
NOSCRIPT: "Sie müssen JavaScript aktivieren um dieses Formular zu übermitteln" | ||
VALIDATE_ERROR: "Spam-Schutz konnte nicht geprüft werden" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
en: | ||
Terraformers\TurnstileCaptcha\Forms\CaptchaField: | ||
Terraformers\TurnstileCaptcha\Forms\TurnstileCaptchaField: | ||
NOSCRIPT: "You must enable JavaScript to submit this form" | ||
VALIDATE_ERROR: "Captcha could not be validated" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
fr: | ||
Terraformers\TurnstileCaptcha\Forms\CaptchaField: | ||
Terraformers\TurnstileCaptcha\Forms\TurnstileCaptchaField: | ||
NOSCRIPT: "Vous devez activer JavaScript pour soumettre ce formulaire" | ||
VALIDATE_ERROR: "Captcha n'a pas pu être validé" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ru: | ||
Terraformers\TurnstileCaptcha\Forms\CaptchaField: | ||
Terraformers\TurnstileCaptcha\Forms\TurnstileCaptchaField: | ||
NOSCRIPT: "Укажите ответ на капчу, если вы её не видите вам необходимо включить JavaScript." | ||
VALIDATE_ERROR: "Ошибка проверки капчи - попробуйте ещё раз." |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit bootstrap="vendor/silverstripe/framework/tests/bootstrap.php" colors="true"> | ||
<phpunit bootstrap="vendor/silverstripe/framework/tests/bootstrap.php" colors="true" defaultTestSuite="Default"> | ||
<testsuites> | ||
<testsuite name="Default"> | ||
<directory>tests/php</directory> | ||
<directory suffix=".php">tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
</phpunit> |
Oops, something went wrong.