1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
$GLOBALS['lang_recaptcha'] = array(
'Human' => 'Are you a human?',
'Prove' => 'Please prove that you\'re a human being.',
'Error' => 'Please prove that you are human.',
'API error' => 'Cannot validate reCAPTCHA submission.',
'General' => 'Set up reCAPTCHA integration',
'General description' => 'Configure reCAPTCHA with your account credentials as provided by Google.',
'Enable' => 'Enable reCAPTCHA',
'Site key' => 'Site key',
'Secret key' => 'Secret key',
'Locations' => 'Locations',
'Locations description' => 'Where do you want reCAPTCHA to show up?',
'Register' => 'On the registration page',
'Login' => 'On the login page',
'Guest post' => 'When guests make a post',
'Save' => 'Save',
'Settings saved' => 'Settings saved successfully. Redirecting...',
);
|