Hallo!
I need to translate in Italian the "Type the text" message in the ReCaptcha field.
Unfortunately the dropdown language selection list in the Load ReCaptcha action don't include the Italian language.
Can you help me?
Thank-you!
ettore
I need to translate in Italian the "Type the text" message in the ReCaptcha field.
Unfortunately the dropdown language selection list in the Load ReCaptcha action don't include the Italian language.
Can you help me?
Thank-you!
ettore
Hi ettore,
Please edit the file /administrator/components/com_chronoforms5/chronoforms/actions/load_recaptcha/load_recaptcha.php and, around line 98 add the line show here:
Bob
Please edit the file /administrator/components/com_chronoforms5/chronoforms/actions/load_recaptcha/load_recaptcha.php and, around line 98 add the line show here:
echo \GCore\Helpers\Html::formLine('Form[extras][actions_config][{N}][lang]', array('type' => 'dropdown', 'label' => l_('CF_RECAPTCHA_LANG'), 'options' => array(
'en' => 'English',
'nt' => 'Dutch',
'fr' => 'French',
'de' => 'German',
'it' => 'Italian', // << add this line
'pt' => 'Portuguese',
'ru' => 'Russian',
'es' => 'Spanish',
'tr' => 'Turkish'
), 'sublabel' => l_('CF_RECAPTCHA_LANG_DESC')));
Bob
This topic is locked and no more replies can be posted.