Compare commits
20 Commits
Author | SHA1 | Date | |
---|---|---|---|
f2e07fe6f2 | |||
ab786e3b0e | |||
f206bb66cc | |||
3340af5c43 | |||
bc3fdda50b | |||
b2340539d2 | |||
8199d20092 | |||
8770c50ff0 | |||
721a2b1f3d | |||
e2f1966bfb | |||
2f508ddd07 | |||
2e803e1471 | |||
800643d72c | |||
c09b7245b1 | |||
c3c8904862 | |||
9d4f95e39b | |||
107dbe33e4 | |||
6b4e7db721 | |||
aef6a785ca | |||
fc72ab4f6c |
@ -44,6 +44,7 @@ class Configuration implements ConfigurationInterface
|
|||||||
->scalarNode('interpolation')->defaultValue(true)->end()
|
->scalarNode('interpolation')->defaultValue(true)->end()
|
||||||
->arrayNode('text_color')->prototype('scalar')->end()->end()
|
->arrayNode('text_color')->prototype('scalar')->end()->end()
|
||||||
->arrayNode('background_color')->prototype('scalar')->end()->end()
|
->arrayNode('background_color')->prototype('scalar')->end()->end()
|
||||||
|
->scalarNode('disabled')->defaultValue(false)->end()
|
||||||
->end()
|
->end()
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -123,6 +123,8 @@ You can define the following configuration options globally or on the CaptchaTyp
|
|||||||
|
|
||||||
* **width**: the width of the captcha image (default=120)
|
* **width**: the width of the captcha image (default=120)
|
||||||
* **height**: the height of the captcha image (default=40)
|
* **height**: the height of the captcha image (default=40)
|
||||||
|
* **disabled**: disable globally the CAPTCHAs (can be useful in dev environment), it will
|
||||||
|
still appear but won't be editable and won't be checked
|
||||||
* **length**: the length of the captcha (number of chars, default 5)
|
* **length**: the length of the captcha (number of chars, default 5)
|
||||||
* **quality**: jpeg quality of captchas (default=15)
|
* **quality**: jpeg quality of captchas (default=15)
|
||||||
* **charset**: the charset used for code generation (default=abcdefhjkmnprstuvwxyz23456789)
|
* **charset**: the charset used for code generation (default=abcdefhjkmnprstuvwxyz23456789)
|
||||||
|
1
Resources/translations/gregwar_captcha.cs.yml
Normal file
1
Resources/translations/gregwar_captcha.cs.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
Renew: Obnovit
|
1
Resources/translations/gregwar_captcha.de.yml
Normal file
1
Resources/translations/gregwar_captcha.de.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
Renew: Erneuern
|
1
Resources/translations/gregwar_captcha.en.yml
Normal file
1
Resources/translations/gregwar_captcha.en.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
Renew: Renew
|
1
Resources/translations/gregwar_captcha.nl.yml
Normal file
1
Resources/translations/gregwar_captcha.nl.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
Renew: Vernieuwen
|
1
Resources/translations/gregwar_captcha.pt_BR.yml
Normal file
1
Resources/translations/gregwar_captcha.pt_BR.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
Renew: Regerar
|
1
Resources/translations/validators.cs.yml
Normal file
1
Resources/translations/validators.cs.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
Bad code value: Špatný kontrolní kód
|
1
Resources/translations/validators.de.yml
Normal file
1
Resources/translations/validators.de.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
Bad code value: Code stimmt nicht überein
|
1
Resources/translations/validators.en.yml
Normal file
1
Resources/translations/validators.en.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
Bad code value: Code does not match
|
1
Resources/translations/validators.nl.yml
Normal file
1
Resources/translations/validators.nl.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
Bad code value: Code komt niet overeen
|
1
Resources/translations/validators.pt_BR.yml
Normal file
1
Resources/translations/validators.pt_BR.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
Bad code value: Código de verificação inválido
|
@ -18,7 +18,7 @@
|
|||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.3.0",
|
"php": ">=5.3.0",
|
||||||
"gregwar/captcha": "v1.0.8"
|
"gregwar/captcha": "v1.0.11"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-0": {
|
"psr-0": {
|
||||||
|
Reference in New Issue
Block a user