-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from max-ima/master
sl_SI
- Loading branch information
Showing
4 changed files
with
70 additions
and
0 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 @@ | ||
PHP Captcha za Piwigo zagotavlja funkcijo preprečevanja neželene pošte, deluje brez uporabe vsebine tretjih oseb, shranjevanja za sledenje in zamenjavo shranjevanja GDPR za Google Recaptcha in co. |
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,7 @@ | ||
<?php | ||
$url = '../'; | ||
header( 'Request-URI: '.$url ); | ||
header( 'Content-Location: '.$url ); | ||
header( 'Location: '.$url ); | ||
exit(); | ||
?> |
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,22 @@ | ||
<h4>Plugin Version</h4> | ||
<p>1.1.0</p> | ||
<p> | ||
Majhna in lahka rešitev Captcha, da vaša namestitev ostane brez komentarjev neželene pošte in lažnih registracij botov. | ||
</p> | ||
<p> | ||
Ne zanaša se na nobene oddaljene vire - kot je Recaptcha iz Googla ali kateri koli drugi. To pomeni, da vam tega ni treba omeniti v svoji izjavi o skladnosti z GDPR. Če Google kmalu omogoči Recaptcha V3, bo Recaptcha deloval kot sledilnik, saj je nasvet, da ga implementirate na vsako posamezno stran vašega spletnega mesta. Upajmo, da vam to ne bo všeč. | ||
</p> | ||
<p> | ||
Namestitev je tako enostavna kot pri katerem koli drugem vtičniku. Ker ta vtičnik ne uporablja nobenih tabel baze podatkov, ni pomembno, katero različico MySQL uporabljate. | ||
</p><p> | ||
Captcha deluje na klasičen način. Obstaja nekaj možnosti konfiguracije, kot so barve, zmeda OCR, dimenzije in dolžina izziva. Preprosto raziščite možnosti na področju vtičnikov skrbnika Piwigo. | ||
</p><p> | ||
Da, to je peta rešitev Captcha, vendar se vse druge rešitve zanašajo na oddaljene vire ali pa se ne vzdržujejo več. | ||
</p><p> | ||
Rad bi prejel povratne informacije. | ||
</p> | ||
|
||
<h4>Licenciranje</h4> | ||
<p> | ||
GPLv3 | ||
</p> |
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,40 @@ | ||
<?php | ||
|
||
$lang['Invalid Captcha'] = 'Neveljavna Captcha'; | ||
$lang['PHP Captcha for Piwigo'] = 'PHP Captcha za Piwigo'; | ||
$lang['Number of characters'] = 'Število znakov'; | ||
$lang['Characters allowed'] = 'Dovoljeni znaki'; | ||
$lang['Strict lower case'] = 'Stroge male črke'; | ||
$lang['Captcha colors'] = 'Captcha barve'; | ||
$lang['Captcha content'] = 'Captcha vsebina'; | ||
$lang['Background color'] = 'Barva ozadja'; | ||
$lang['Text color'] = 'Barva besedila'; | ||
$lang['Line color'] = 'Barva črte'; | ||
$lang['Captcha appearance'] = 'Captcha videz'; | ||
$lang['Image width'] = 'Širina slike'; | ||
$lang['Image height'] = 'Višina slike'; | ||
$lang['Font size'] = 'Velikost pisave'; | ||
$lang['Only not logged-in users see Captchas'] = 'Captche vidijo samo neprijavljeni uporabniki'; | ||
$lang['Captcha use'] = 'Uporaba Captcha'; | ||
$lang['Secure picture pages'] = 'Varne strani s slikami'; | ||
$lang['Secure category pages'] = 'Varne strani kategorij'; | ||
$lang['Secure registration form'] = 'Varen obrazec za registracijo'; | ||
$lang['OCR confusion'] = 'OCR zmeda'; | ||
$lang['Number of lines'] = 'Število vrstic'; | ||
$lang['Thickness of lines'] = 'Debelina črt'; | ||
$lang['Allow advertisement for Plugin'] = 'Dovoli oglaševanje vtičnika'; | ||
$lang['Allow small advertisement below Captcha image'] = 'Dovoli majhen oglas pod sliko Captcha'; | ||
$lang['Save all changes'] = 'Shrani vse spremembe'; | ||
$lang['Example captcha'] = 'Primer captcha'; | ||
$lang['Reset settings'] = 'Ponastavi nastavitve'; | ||
$lang['Set to defaults'] = 'Nastavite na privzete vrednosti'; | ||
$lang['Enter code'] = 'Vnesite kodo'; | ||
$lang['Code'] = 'Kodo'; | ||
$lang['Please enter a valid hex value for %s, (RRGGBB, a-f, 0-9)'] = 'Vnesite veljavno hex vrednost za %s, (RRGGBB, a-f, 0-9)'; | ||
$lang['Please enter a valid integer value for %s'] = 'Vnesite veljavno celo število za %s'; | ||
$lang['Please enter a valid value for %s, at least %d chars long'] = 'Vnesite veljavno vrednost za %s, dolg najmanj %d znakov'; | ||
$lang['Integer']="Celo število"; | ||
$lang['String']='Niz'; | ||
$lang['Hex Color (RRGGBB, a-f, 0-9)']='Hex barva (RRGGBB, a-f, 0-9)'; | ||
$lang['Secure guestbook']='Varna knjiga gostov'; | ||
$lang['Secure contact form']='Varen kontaktni obrazec'; |