-
Notifications
You must be signed in to change notification settings - Fork 17
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 #31 from andreapasotti/translation
Translations
- Loading branch information
Showing
2 changed files
with
33 additions
and
1 deletion.
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
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,32 @@ | ||
<?php | ||
/** | ||
* Craft reCAPTCHA plugin for Craft CMS 3.x | ||
* | ||
* Integrate Google’s reCAPTCHA into your forms. | ||
* | ||
* @link https://mattwest.io | ||
* @copyright Copyright (c) 2018 Matt West | ||
*/ | ||
|
||
/** | ||
* Craft reCAPTCHA italian Translation | ||
* | ||
* Returns an array with the string to be translated (as passed to `Craft::t('craft-recaptcha', '...')`) as | ||
* the key, and the translation as the value. | ||
* | ||
* http://www.yiiframework.com/doc-2.0/guide-tutorial-i18n.html | ||
* | ||
* @author Andrea Pasotti (https://www.andreapasottiweb.com) | ||
* @package CraftRecaptcha | ||
* @since 1.0.0 | ||
*/ | ||
return [ | ||
'Craft reCAPTCHA plugin loaded' => 'Plugin Craft reCAPTCHA caricato', | ||
'Site Key' => 'Chiave del sito', | ||
'Secret Key' => 'Chiave segreta', | ||
'Enter your reCAPTCHA site key.' => 'Inserisci la tua chiave del sito reCAPTCHA.', | ||
'Enter your reCAPTCHA secret key.' => 'Inserisci la tua chiave segreta reCAPTCHA.', | ||
'Validate contact forms?' => 'Convalida i form di contatto?', | ||
'Enable to automatically validate reCAPTCHAs when using the official [Craft CMS contact form plugin](https://github.com/craftcms/contact-form).' => 'Abilita per convalidare automaticamente i reCAPTCHA utilizzando [Craft CMS Contact Form Plugin](https://github.com/craftcms/contact-form)', | ||
'Please verify you are human.' => 'Per favore verifica di essere un umano.' | ||
]; |