Load ReCaptcha action Italian translation needed

qu quenda 09 Sep, 2015
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
Gr GreyHead 09 Sep, 2015
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:
    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
qu quenda 10 Sep, 2015
Perfect. It works.

THANk-YOU!!

ettore
This topic is locked and no more replies can be posted.