Author Topic: Captcha Tekste ändern  (Read 3893 times)

0 Members and 1 Guest are viewing this topic.

Offline joombler

  • Newbie
  • *
  • Posts: 16
    • View Profile
Captcha Tekste ändern
« on: May 30, 2007, 12:56:01 AM »
Can someone pls tell me where to find (in which script) this text:

'Please enter the letters or digits that appear in the image. If you have problems identifying the image, click on it to get a new one.'

It is to be read in p.e. the registration form and uploadform. I would like to translate it into Dutch, but unfortunately I can't find it yet...

herzlichen Dank,
Jos

Offline CeJay

  • Sr. Member
  • ****
  • Posts: 425
    • View Profile
Re: Captcha Tekste ändern
« Reply #1 on: May 30, 2007, 07:40:00 AM »
This is set in your lang folder. If you are editing the english one then go in there and open main.php.
It is set on about line 28 (depends on if you edited this file or not before this).

Or
Find:
Code: [Select]
$lang['captcha'] = "Verification code:";
$lang['captcha_desc'] = "Please enter the letters or digits that appear in the image. If you have problems identifying the image, click on it to get a new one.";
$lang['captcha_required'] = 'Please enter the verification code.';

Replace with:
Code: [Select]
$lang['captcha'] = "Bestätigungs-Code:";
$lang['captcha_desc'] = "Bitte tragen Sie die Zeichen aus dem Bild in das Textfeld darunter ein. Wenn Sie Probleme haben den Code zu erkennen, klicken Sie auf das Bild um ein neues zu erhalten.";
$lang['captcha_required'] = 'Das Feld mit dem Bestätigungs-Code muss ausgefüllt werden.';


Offline joombler

  • Newbie
  • *
  • Posts: 16
    • View Profile
Re: Captcha Tekste ändern
« Reply #2 on: May 30, 2007, 11:56:40 AM »
Herzlichten Dank, ich werde das ändern!

cheers,
Jos