Captcha Code - Version 2.6

Version Description

Download this release

Release Info

Developer vinoj.cardoza
Plugin Icon wp plugin Captcha Code
Version 2.6
Comparing to
See all releases

Version 2.6

Files changed (41) hide show
  1. captcha_code_file.php +125 -0
  2. general_options.php +158 -0
  3. languages/wpcaptchadomain-ca_CA.mo +0 -0
  4. languages/wpcaptchadomain-ca_CA.po +142 -0
  5. languages/wpcaptchadomain-cs_CZ.mo +0 -0
  6. languages/wpcaptchadomain-cs_CZ.po +157 -0
  7. languages/wpcaptchadomain-de_DE.mo +0 -0
  8. languages/wpcaptchadomain-de_DE.po +157 -0
  9. languages/wpcaptchadomain-es_ES.mo +0 -0
  10. languages/wpcaptchadomain-es_ES.po +141 -0
  11. languages/wpcaptchadomain-fa_IR.mo +0 -0
  12. languages/wpcaptchadomain-fa_IR.po +157 -0
  13. languages/wpcaptchadomain-fi.mo +0 -0
  14. languages/wpcaptchadomain-fi.po +144 -0
  15. languages/wpcaptchadomain-fr_FR.mo +0 -0
  16. languages/wpcaptchadomain-fr_FR.po +158 -0
  17. languages/wpcaptchadomain-nl_NL.mo +0 -0
  18. languages/wpcaptchadomain-nl_NL.po +157 -0
  19. languages/wpcaptchadomain-pl_PL.mo +0 -0
  20. languages/wpcaptchadomain-pl_PL.po +157 -0
  21. languages/wpcaptchadomain-pt_BR.mo +0 -0
  22. languages/wpcaptchadomain-pt_BR.po +157 -0
  23. languages/wpcaptchadomain-pt_PT.mo +0 -0
  24. languages/wpcaptchadomain-pt_PT.po +157 -0
  25. languages/wpcaptchadomain-ru_RU.mo +0 -0
  26. languages/wpcaptchadomain-ru_RU.po +140 -0
  27. languages/wpcaptchadomain-sk_SK.mo +0 -0
  28. languages/wpcaptchadomain-sk_SK.po +157 -0
  29. languages/wpcaptchadomain-sv_SE.mo +0 -0
  30. languages/wpcaptchadomain-sv_SE.po +142 -0
  31. languages/wpcaptchadomain-zh_CN.mo +0 -0
  32. languages/wpcaptchadomain-zh_CN.po +140 -0
  33. monofont.ttf +0 -0
  34. public/images/captcha.gif +0 -0
  35. public/images/form_captcha.gif +0 -0
  36. readme.txt +136 -0
  37. screenshot-1.png +0 -0
  38. screenshot-2.png +0 -0
  39. screenshot-3.png +0 -0
  40. screenshot-4.png +0 -0
  41. wpCaptcha.php +292 -0
captcha_code_file.php ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ session_start();
3
+
4
+ //Settings: You can customize the captcha here
5
+ $image_width = 120;
6
+ $image_height = 40;
7
+
8
+ if(isset($_SESSION['total_no_of_characters']))
9
+ $characters_on_image = $_SESSION['total_no_of_characters'];
10
+
11
+ $font = './monofont.ttf';
12
+
13
+ //The characters that can be used in the CAPTCHA code.
14
+ //avoid confusing characters (l 1 and i for example)
15
+ if(isset($_SESSION['captcha_type']) && $_SESSION['captcha_type'] == 'alphanumeric')
16
+ {
17
+ switch($_SESSION['captcha_letters'])
18
+ {
19
+ case 'capital':
20
+ $possible_letters = '23456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
21
+ break;
22
+ case 'small':
23
+ $possible_letters = '23456789bcdfghjkmnpqrstvwxyz';
24
+ break;
25
+ case 'capitalsmall':
26
+ $possible_letters = '23456789bcdfghjkmnpqrstvwxyzABCEFGHJKMNPRSTVWXYZ';
27
+ break;
28
+ default:
29
+ $possible_letters = '23456789bcdfghjkmnpqrstvwxyz';
30
+ break;
31
+ }
32
+ }
33
+ elseif(isset($_SESSION['captcha_type']) && $_SESSION['captcha_type'] == 'alphabets')
34
+ {
35
+ switch($_SESSION['captcha_letters'])
36
+ {
37
+ case 'capital':
38
+ $possible_letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
39
+ break;
40
+ case 'small':
41
+ $possible_letters = 'bcdfghjkmnpqrstvwxyz';
42
+ break;
43
+ case 'capitalsmall':
44
+ $possible_letters = 'bcdfghjkmnpqrstvwxyzABCEFGHJKMNPRSTVWXYZ';
45
+ break;
46
+ default:
47
+ $possible_letters = 'abcdefghijklmnopqrstuvwxyz';
48
+ break;
49
+ }
50
+ }
51
+ elseif(isset($_SESSION['captcha_type']) && $_SESSION['captcha_type'] == 'numbers')
52
+ {
53
+ $possible_letters = '0123456789';
54
+ }
55
+ else
56
+ {
57
+ $possible_letters = '0123456789';
58
+ }
59
+ $random_dots = 0;
60
+ $random_lines = 20;
61
+ $captcha_text_color="0x142864";
62
+ $captcha_noice_color = "0x142864";
63
+
64
+ $code = '';
65
+
66
+
67
+ $i = 0;
68
+ while ($i < $characters_on_image)
69
+ {
70
+ $code .= substr($possible_letters, mt_rand(0, strlen($possible_letters)-1), 1);
71
+ $i++;
72
+ }
73
+
74
+
75
+ $font_size = $image_height * 0.75;
76
+ $image = @imagecreate($image_width, $image_height);
77
+
78
+
79
+ /* setting the background, text and noise colours here */
80
+ $background_color = imagecolorallocate($image, 255, 255, 255);
81
+
82
+ $arr_text_color = hexrgb($captcha_text_color);
83
+ $text_color = imagecolorallocate($image, $arr_text_color['red'],
84
+ $arr_text_color['green'], $arr_text_color['blue']);
85
+
86
+ $arr_noice_color = hexrgb($captcha_noice_color);
87
+ $image_noise_color = imagecolorallocate($image, $arr_noice_color['red'],
88
+ $arr_noice_color['green'], $arr_noice_color['blue']);
89
+
90
+
91
+ /* generating the dots randomly in background */
92
+ for( $i=0; $i<$random_dots; $i++ )
93
+ {
94
+ imagefilledellipse($image, mt_rand(0,$image_width), mt_rand(0,$image_height), 2, 3, $image_noise_color);
95
+ }
96
+
97
+
98
+ /* generating lines randomly in background of image */
99
+ for( $i=0; $i<$random_lines; $i++ ) {
100
+ imageline($image, mt_rand(0,$image_width), mt_rand(0,$image_height), mt_rand(0,$image_width), mt_rand(0,$image_height), $image_noise_color);
101
+ }
102
+
103
+
104
+ /* create a text box and add 6 letters code in it */
105
+ $textbox = imagettfbbox($font_size, 0, $font, $code);
106
+ $x = ($image_width - $textbox[4])/2;
107
+ $y = ($image_height - $textbox[5])/2;
108
+ imagettftext($image, $font_size, 0, $x, $y, $text_color, $font , $code);
109
+
110
+
111
+ /* Show captcha image in the page html page */
112
+ header('Content-Type: image/jpeg');// defining the image type to be shown in browser widow
113
+ imagejpeg($image);//showing the image
114
+ imagedestroy($image);//destroying the image instance
115
+ $_SESSION['captcha_code'] = $code;
116
+
117
+ function hexrgb ($hexstr)
118
+ {
119
+ $int = hexdec($hexstr);
120
+
121
+ return array("red" => 0xFF & ($int >> 0x10),
122
+ "green" => 0xFF & ($int >> 0x8),
123
+ "blue" => 0xFF & $int);
124
+ }
125
+ ?>
general_options.php ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* Function to configure Captcha for Wordpress */
3
+ function wp_captcha_general_options(){
4
+ ?>
5
+ <div class="wrap">
6
+ <h1><?php _e('CAPTCHA', 'wpcaptchadomain');?></h1>
7
+ <?php
8
+ if(isset($_POST['submit'])){
9
+ ?>
10
+ <div id="message" class="updated fade"><p><strong><?php _e('Options saved.', 'wpcaptchadomain'); ?></strong></p></div>
11
+ <?php
12
+ if(isset($_POST['captcha_login']))
13
+ update_option('wpcaptcha_login', $_POST['captcha_login']);
14
+ if(isset($_POST['captcha_register']))
15
+ update_option('wpcaptcha_register', $_POST['captcha_register']);
16
+ if(isset($_POST['captcha_lost']))
17
+ update_option('wpcaptcha_lost', $_POST['captcha_lost']);
18
+ if(isset($_POST['captcha_comments']))
19
+ update_option('wpcaptcha_comments', $_POST['captcha_comments']);
20
+ if(isset($_POST['captcha_registered']))
21
+ update_option('wpcaptcha_registered', $_POST['captcha_registered']);
22
+ if(isset($_POST['captcha_type']))
23
+ update_option('wpcaptcha_type', $_POST['captcha_type']);
24
+ if(isset($_POST['captcha_letters']))
25
+ update_option('wpcaptcha_letters', $_POST['captcha_letters']);
26
+ if(isset($_POST['total_no_of_characters']))
27
+ update_option('wpcaptcha_total_no_of_characters', $_POST['total_no_of_characters']);
28
+ }
29
+
30
+ $c_login = get_option('wpcaptcha_login');
31
+ $c_login_yes = null;
32
+ $c_login_no = null;
33
+ if(!empty($c_login) && $c_login == 'yes') $c_login_yes = 'selected="selected"';
34
+ else $c_login_no = 'selected="selected"';
35
+
36
+ $c_register = get_option('wpcaptcha_register');
37
+ $c_register_yes = null;
38
+ $c_register_no = null;
39
+ if(!empty($c_register) && $c_register == 'yes') $c_register_yes = 'selected="selected"';
40
+ else $c_register_no = 'selected="selected"';
41
+
42
+ $c_lost = get_option('wpcaptcha_lost');
43
+ $c_lost_yes = null;
44
+ $c_lost_no = null;
45
+ if(!empty($c_lost) && $c_lost == 'yes') $c_lost_yes = 'selected="selected"';
46
+ else $c_lost_no = 'selected="selected"';
47
+
48
+ $c_comments = get_option('wpcaptcha_comments');
49
+ $c_comments_yes = null;
50
+ $c_comments_no = null;
51
+ if(!empty($c_register) && $c_comments == 'yes') $c_comments_yes = 'selected="selected"';
52
+ else $c_comments_no = 'selected="selected"';
53
+
54
+ $c_registered = get_option('wpcaptcha_registered');
55
+ $c_registered_yes = null;
56
+ $c_registered_no = null;
57
+ if(!empty($c_registered) && $c_registered == 'yes') $c_registered_yes = 'selected="selected"';
58
+ else $c_registered_no = 'selected="selected"';
59
+
60
+ $c_type = get_option('wpcaptcha_type');
61
+ $c_letters = get_option('wpcaptcha_letters');
62
+ $c_total_no_of_characters = get_option('wpcaptcha_total_no_of_characters');
63
+ ?>
64
+ <form method="post" action="">
65
+ <table class="form-table">
66
+ <tr valign="top">
67
+ <th scope="row" style="width:260px;"><?php _e('Select Captcha letters type', 'wpcaptchadomain');?>:</th>
68
+ <td>
69
+ <select name="captcha_letters" style="margin:0;">
70
+ <option value="capital" <?php if($c_letters == 'capital') echo 'selected="selected"';?>><?php _e('Capital letters only', 'wpcaptchadomain');?></option>
71
+ <option value="small" <?php if($c_letters == 'small') echo 'selected="selected"';?>><?php _e('Small letters only', 'wpcaptchadomain');?></option>
72
+ <option value="capitalsmall" <?php if($c_letters == 'capitalsmall') echo 'selected="selected"';?>><?php _e('Capital & Small letters', 'wpcaptchadomain');?></option>
73
+ </select>
74
+ </td>
75
+ </tr>
76
+ <tr valign="top">
77
+ <th scope="row"><?php _e('Select a Captcha type', 'wpcaptchadomain');?>: </th>
78
+ <td>
79
+ <select name="captcha_type" style="margin:0;">
80
+ <option value="alphanumeric" <?php if($c_type == 'alphanumeric') echo 'selected="selected"';?>><?php _e('Alphanumeric', 'wpcaptchadomain');?></option>
81
+ <option value="alphabets" <?php if($c_type == 'alphabets') echo 'selected="selected"';?>><?php _e('Alphabets only', 'wpcaptchadomain');?></option>
82
+ <option value="numbers" <?php if($c_type == 'numbers') echo 'selected="selected"';?>><?php _e('Numbers only', 'wpcaptchadomain');?></option>
83
+ </select>
84
+ </td>
85
+ </tr>
86
+ <tr valign="top">
87
+ <th scope="row"><?php _e('Total number of Captcha Characters', 'wpcaptchadomain');?>: </th>
88
+ <td>
89
+ <select name="total_no_of_characters" style="margin:0;width: 50px;">
90
+ <?php
91
+ for($i=3; $i<=6; $i++){
92
+ print '<option value="'.$i.'" ';
93
+ if($c_total_no_of_characters == $i) echo 'selected="selected"';
94
+ print '>'.$i.'</option>';
95
+ }
96
+ ?>
97
+ </select>
98
+ </td>
99
+ </tr>
100
+ </table>
101
+ <h3><?php _e('Captcha display Options', 'wpcaptchadomain');?></h3>
102
+ <table class="form-table">
103
+ <tr valign="top">
104
+ <th scope="row" style="width:260px;"><?php _e("Enable Captcha for Login form", "wpcaptchadomain");?>: </th>
105
+ <td>
106
+ <select name="captcha_login" style="width:75px;margin:0;">
107
+ <option value="yes" <?php echo $c_login_yes;?>><?php _e('Yes', 'wpcaptchadomain');?></option>
108
+ <option value="no" <?php echo $c_login_no;?>><?php _e('No', 'wpcaptchadomain');?></option>
109
+ </select>
110
+ </td>
111
+ </tr>
112
+ <tr valign="top">
113
+ <th scope="row"><?php _e('Enable Captcha for Register form', 'wpcaptchadomain');?>: </th>
114
+ <td>
115
+ <select name="captcha_register" style="width:75px;margin:0;">
116
+ <option value="yes" <?php echo $c_register_yes;?>><?php _e('Yes', 'wpcaptchadomain');?></option>
117
+ <option value="no" <?php echo $c_register_no;?>><?php _e('No', 'wpcaptchadomain');?></option>
118
+ </select>
119
+ </td>
120
+ </tr>
121
+ <tr valign="top">
122
+ <th scope="row"><?php _e('Enable Captcha for Lost Password form', 'wpcaptchadomain');?>: </th>
123
+ <td>
124
+ <select name="captcha_lost" style="width:75px;margin:0;">
125
+ <option value="yes" <?php echo $c_lost_yes;?>><?php _e('Yes', 'wpcaptchadomain');?></option>
126
+ <option value="no" <?php echo $c_lost_no;?>><?php _e('No', 'wpcaptchadomain');?></option>
127
+ </select>
128
+ </td>
129
+ </tr>
130
+ <tr valign="top">
131
+ <th scope="row"><?php _e('Enable Captcha for Comments form', 'wpcaptchadomain');?>: </th>
132
+ <td>
133
+ <select name="captcha_comments" style="width:75px;margin:0;">
134
+ <option value="yes" <?php echo $c_comments_yes;?>><?php _e('Yes', 'wpcaptchadomain');?></option>
135
+ <option value="no" <?php echo $c_comments_no;?>><?php _e('No', 'wpcaptchadomain');?></option>
136
+ </select>
137
+ </td>
138
+ </tr>
139
+ <tr valign="top">
140
+ <th scope="row"><?php _e('Hide Captcha for logged in users', 'wpcaptchadomain');?>: </th>
141
+ <td>
142
+ <select name="captcha_registered" style="width:75px;margin:0;">
143
+ <option value="yes" <?php echo $c_registered_yes;?>><?php _e('Yes', 'wpcaptchadomain');?></option>
144
+ <option value="no" <?php echo $c_registered_no;?>><?php _e('No', 'wpcaptchadomain');?></option>
145
+ </select>
146
+ </td>
147
+ </tr>
148
+ <tr height="60">
149
+ <td><?php submit_button();?></td>
150
+ <td></td>
151
+ </tr>
152
+ </table>
153
+
154
+ </form>
155
+ </div>
156
+ <?php
157
+ }
158
+ ?>
languages/wpcaptchadomain-ca_CA.mo ADDED
Binary file
languages/wpcaptchadomain-ca_CA.po ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:48-0000\n"
6
+ "PO-Revision-Date: 2014-10-20 18:08+0100\n"
7
+ "Last-Translator: Fede <fede.spam@gmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Language: ca_CA\n"
15
+ "X-Generator: Poedit 1.6.10\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "CAPTCHA"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "Opcions guardades"
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Selecciona el tipus de lletres del Captcha"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "Només majúscules"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "Només minúscules"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "Majúscules i minúscules"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Seleccioneu un tipus de Captcha"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Alfanumèric"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Només lletres"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Només números\" "
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Nombre total de caràcters del Captcha"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Opcions de visualització del Captcha"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Habilita Captcha per al formulari d'autenticació"
69
+
70
+ #: ../general_options.php:98 ../general_options.php:107
71
+ #: ../general_options.php:116 ../general_options.php:125
72
+ #: ../general_options.php:134
73
+ msgid "Yes"
74
+ msgstr "Si"
75
+
76
+ #: ../general_options.php:99 ../general_options.php:108
77
+ #: ../general_options.php:117 ../general_options.php:126
78
+ #: ../general_options.php:135
79
+ msgid "No"
80
+ msgstr "No"
81
+
82
+ #: ../general_options.php:104
83
+ msgid "Enable Captcha for Register form"
84
+ msgstr "Habilita Captcha per al formulari de registre"
85
+
86
+ #: ../general_options.php:113
87
+ msgid "Enable Captcha for Lost Password form"
88
+ msgstr "Habilita Captcha per al formulari de recuperació de clau"
89
+
90
+ #: ../general_options.php:122
91
+ msgid "Enable Captcha for Comments form"
92
+ msgstr "Habilita Captcha per a l'enviament de comentaris"
93
+
94
+ #: ../general_options.php:131
95
+ msgid "Hide Captcha for logged in users"
96
+ msgstr "Amaga Captcha per a usuaris autentificats"
97
+
98
+ #: ../general_options.php:140
99
+ msgid "Save"
100
+ msgstr "Guarda"
101
+
102
+ #: ../wpCaptcha.php:25 ../wpCaptcha.php:58 ../wpCaptcha.php:124
103
+ #: ../wpCaptcha.php:144 ../wpCaptcha.php:202 ../wpCaptcha.php:256
104
+ msgid "Captcha"
105
+ msgstr "Captcha"
106
+
107
+ #: ../wpCaptcha.php:70 ../wpCaptcha.php:129 ../wpCaptcha.php:149
108
+ #: ../wpCaptcha.php:207 ../wpCaptcha.php:261
109
+ msgid "Type the text displayed above"
110
+ msgstr "Introduïu el text mostrat a dalt"
111
+
112
+ #: ../wpCaptcha.php:82
113
+ msgid "Captcha confirmation error!"
114
+ msgstr "Error de confirmació del Captcha!"
115
+
116
+ #: ../wpCaptcha.php:92
117
+ msgid "Incorrect captcha confirmation!"
118
+ msgstr "Confirmació incorrecta del captcha"
119
+
120
+ #: ../wpCaptcha.php:181
121
+ msgid "CAPTCHA cannot be empty."
122
+ msgstr "El CAPTCHA no pot estar buit."
123
+
124
+ #: ../wpCaptcha.php:185 ../wpCaptcha.php:279
125
+ msgid ""
126
+ "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
127
+ msgstr ""
128
+ "Error: CAPTCHA incorrecte. Premeu el botó enrere del seu navegador i "
129
+ "intenteu-ho de nou."
130
+
131
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:225 ../wpCaptcha.php:233
132
+ #: ../wpCaptcha.php:240
133
+ msgid "ERROR"
134
+ msgstr "Error"
135
+
136
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:233 ../wpCaptcha.php:272
137
+ msgid "Please complete the CAPTCHA."
138
+ msgstr "Completi el CAPTCHA."
139
+
140
+ #: ../wpCaptcha.php:225 ../wpCaptcha.php:240
141
+ msgid "That CAPTCHA was incorrect."
142
+ msgstr "CAPTCHA incorrecte."
languages/wpcaptchadomain-cs_CZ.mo ADDED
Binary file
languages/wpcaptchadomain-cs_CZ.po ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:47-0000\n"
6
+ "PO-Revision-Date: 2012-08-03 11:47-0000\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@hotmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Czech\n"
15
+ "X-Poedit-Country: CZECH REPUBLIC\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "CAPTCHA"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "Volby uloženy"
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Vyberte písmo pro Captcha"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "Pouze velká písmena"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "Pouze malá písmena"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "Velká a malá písmena"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Vyberte typ Captcha"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Písmena a čísla"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Pouze písmena"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Pouze čísla"
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Celkový počet znaků CAPTCHA"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Možnosti zobrazení Captcha"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Povolit Captcha pro přihlašovací formulář"
69
+
70
+ #: ../general_options.php:98
71
+ #: ../general_options.php:107
72
+ #: ../general_options.php:116
73
+ #: ../general_options.php:125
74
+ #: ../general_options.php:134
75
+ msgid "Yes"
76
+ msgstr "Ano"
77
+
78
+ #: ../general_options.php:99
79
+ #: ../general_options.php:108
80
+ #: ../general_options.php:117
81
+ #: ../general_options.php:126
82
+ #: ../general_options.php:135
83
+ msgid "No"
84
+ msgstr "Ne"
85
+
86
+ #: ../general_options.php:104
87
+ msgid "Enable Captcha for Register form"
88
+ msgstr "Povolit Captcha pro registrační formulář"
89
+
90
+ #: ../general_options.php:113
91
+ msgid "Enable Captcha for Lost Password form"
92
+ msgstr "Povolit Captcha pro formulář \"ztracené heslo\""
93
+
94
+ #: ../general_options.php:122
95
+ msgid "Enable Captcha for Comments form"
96
+ msgstr "Povolit Captcha pro komentáře"
97
+
98
+ #: ../general_options.php:131
99
+ msgid "Hide Captcha for logged in users"
100
+ msgstr "Skrýt Captcha pro přihlášené uživatele"
101
+
102
+ #: ../general_options.php:140
103
+ msgid "Save"
104
+ msgstr "Uložit"
105
+
106
+ #: ../wpCaptcha.php:25
107
+ #: ../wpCaptcha.php:58
108
+ #: ../wpCaptcha.php:124
109
+ #: ../wpCaptcha.php:144
110
+ #: ../wpCaptcha.php:202
111
+ #: ../wpCaptcha.php:256
112
+ msgid "Captcha"
113
+ msgstr "Captcha"
114
+
115
+ #: ../wpCaptcha.php:70
116
+ #: ../wpCaptcha.php:129
117
+ #: ../wpCaptcha.php:149
118
+ #: ../wpCaptcha.php:207
119
+ #: ../wpCaptcha.php:261
120
+ msgid "Type the text displayed above"
121
+ msgstr "Prosím, opište text zobrazený výše"
122
+
123
+ #: ../wpCaptcha.php:82
124
+ msgid "Captcha confirmation error!"
125
+ msgstr "Chyba v ověření Captcha!"
126
+
127
+ #: ../wpCaptcha.php:92
128
+ msgid "Incorrect captcha confirmation!"
129
+ msgstr "Nesprávně opsaný kontrolní text!"
130
+
131
+ #: ../wpCaptcha.php:181
132
+ msgid "CAPTCHA cannot be empty."
133
+ msgstr "Kontrolní text (Captcha) nemůže být prázdný."
134
+
135
+ #: ../wpCaptcha.php:185
136
+ #: ../wpCaptcha.php:279
137
+ msgid "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
138
+ msgstr "Chyba: Nesprávná CAPTCHA. Vraťte se zpět a zkuste to znovu."
139
+
140
+ #: ../wpCaptcha.php:218
141
+ #: ../wpCaptcha.php:225
142
+ #: ../wpCaptcha.php:233
143
+ #: ../wpCaptcha.php:240
144
+ msgid "ERROR"
145
+ msgstr "Chyba"
146
+
147
+ #: ../wpCaptcha.php:218
148
+ #: ../wpCaptcha.php:233
149
+ #: ../wpCaptcha.php:272
150
+ msgid "Please complete the CAPTCHA."
151
+ msgstr "Prosím, opište CAPTCHA."
152
+
153
+ #: ../wpCaptcha.php:225
154
+ #: ../wpCaptcha.php:240
155
+ msgid "That CAPTCHA was incorrect."
156
+ msgstr "Tato CAPTCHA je chybně."
157
+
languages/wpcaptchadomain-de_DE.mo ADDED
Binary file
languages/wpcaptchadomain-de_DE.po ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:48-0000\n"
6
+ "PO-Revision-Date: 2012-08-03 11:48-0000\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@hotmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: German\n"
15
+ "X-Poedit-Country: GERMANY\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "CAPTCHA"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "Einstellungen gespeichert."
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Zu verwendender Captchatyp"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "Nur Großbuchstaben"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "Nur Kleinbuchstaben"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "Groß & Kleinbuchstaben"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Wählen Sie einen Captcha-Typ"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Alphanumerisch"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Nur Buchstaben"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Nur Zahlen"
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Gesamtzahl der CAPTCHA"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Captcha Anzeige Einstellungen"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Aktiviere Captcha für Loginformular"
69
+
70
+ #: ../general_options.php:98
71
+ #: ../general_options.php:107
72
+ #: ../general_options.php:116
73
+ #: ../general_options.php:125
74
+ #: ../general_options.php:134
75
+ msgid "Yes"
76
+ msgstr "Ja"
77
+
78
+ #: ../general_options.php:99
79
+ #: ../general_options.php:108
80
+ #: ../general_options.php:117
81
+ #: ../general_options.php:126
82
+ #: ../general_options.php:135
83
+ msgid "No"
84
+ msgstr "Nein"
85
+
86
+ #: ../general_options.php:104
87
+ msgid "Enable Captcha for Register form"
88
+ msgstr "Aktiviere Captcha für Registrierungsformular"
89
+
90
+ #: ../general_options.php:113
91
+ msgid "Enable Captcha for Lost Password form"
92
+ msgstr "Aktiviere Captcha in Formular für verlorenes Passwort"
93
+
94
+ #: ../general_options.php:122
95
+ msgid "Enable Captcha for Comments form"
96
+ msgstr "Aktiviere Captcha für Kommentarformular"
97
+
98
+ #: ../general_options.php:131
99
+ msgid "Hide Captcha for logged in users"
100
+ msgstr "Verstecke Captcha für eingeloggte Benutzer"
101
+
102
+ #: ../general_options.php:140
103
+ msgid "Save"
104
+ msgstr "Speichern"
105
+
106
+ #: ../wpCaptcha.php:25
107
+ #: ../wpCaptcha.php:58
108
+ #: ../wpCaptcha.php:124
109
+ #: ../wpCaptcha.php:144
110
+ #: ../wpCaptcha.php:202
111
+ #: ../wpCaptcha.php:256
112
+ msgid "Captcha"
113
+ msgstr "Captcha"
114
+
115
+ #: ../wpCaptcha.php:70
116
+ #: ../wpCaptcha.php:129
117
+ #: ../wpCaptcha.php:149
118
+ #: ../wpCaptcha.php:207
119
+ #: ../wpCaptcha.php:261
120
+ msgid "Type the text displayed above"
121
+ msgstr "Geben Sie den obigen Text ein"
122
+
123
+ #: ../wpCaptcha.php:82
124
+ msgid "Captcha confirmation error!"
125
+ msgstr "Fehler bei Captcha-Bestätigung!"
126
+
127
+ #: ../wpCaptcha.php:92
128
+ msgid "Incorrect captcha confirmation!"
129
+ msgstr "Captcha falsch eingegeben!"
130
+
131
+ #: ../wpCaptcha.php:181
132
+ msgid "CAPTCHA cannot be empty."
133
+ msgstr "Feld darf nicht leer sein!"
134
+
135
+ #: ../wpCaptcha.php:185
136
+ #: ../wpCaptcha.php:279
137
+ msgid "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
138
+ msgstr "Fehler: Captcha falsch eingegeben! Drücken Sie den \"Zurück - Button\" Ihres Browsers und versuchen Sie es erneut."
139
+
140
+ #: ../wpCaptcha.php:218
141
+ #: ../wpCaptcha.php:225
142
+ #: ../wpCaptcha.php:233
143
+ #: ../wpCaptcha.php:240
144
+ msgid "ERROR"
145
+ msgstr "FEHLER"
146
+
147
+ #: ../wpCaptcha.php:218
148
+ #: ../wpCaptcha.php:233
149
+ #: ../wpCaptcha.php:272
150
+ msgid "Please complete the CAPTCHA."
151
+ msgstr "Bitte vervollständigen Sie die Captchaeingabe"
152
+
153
+ #: ../wpCaptcha.php:225
154
+ #: ../wpCaptcha.php:240
155
+ msgid "That CAPTCHA was incorrect."
156
+ msgstr "Diese Captchaeingabe war falsch."
157
+
languages/wpcaptchadomain-es_ES.mo ADDED
Binary file
languages/wpcaptchadomain-es_ES.po ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:48-0000\n"
6
+ "PO-Revision-Date: 2012-08-29 12:12+0100\n"
7
+ "Last-Translator: Juan Cuquejo Mira <stelaroj@hotmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Language: es_ES\n"
15
+ "X-Poedit-SearchPath-0: ..\n"
16
+
17
+ #: ../general_options.php:9
18
+ msgid "CAPTCHA"
19
+ msgstr "CAPTCHA"
20
+
21
+ #: ../general_options.php:16
22
+ msgid "Options saved."
23
+ msgstr "Opciones guardadas."
24
+
25
+ #: ../general_options.php:58
26
+ msgid "Select Captcha letters type"
27
+ msgstr "Seleccione el tipo de letras del Captcha"
28
+
29
+ #: ../general_options.php:61
30
+ msgid "Capital letters only"
31
+ msgstr "Solo mayúsculas"
32
+
33
+ #: ../general_options.php:62
34
+ msgid "Small letters only"
35
+ msgstr "Solo minúsculas"
36
+
37
+ #: ../general_options.php:63
38
+ msgid "Capital & Small letters"
39
+ msgstr "Mayúsculas y minúsculas"
40
+
41
+ #: ../general_options.php:68
42
+ msgid "Select a Captcha type"
43
+ msgstr "Seleccione un tipo de Captcha"
44
+
45
+ #: ../general_options.php:71
46
+ msgid "Alphanumeric"
47
+ msgstr "Alfanumérico"
48
+
49
+ #: ../general_options.php:72
50
+ msgid "Alphabets only"
51
+ msgstr "Solo caracteres"
52
+
53
+ #: ../general_options.php:73
54
+ msgid "Numbers only"
55
+ msgstr "Solo números"
56
+
57
+ #: ../general_options.php:78
58
+ msgid "Total number of Captcha Characters"
59
+ msgstr "Número total de caracteres del Captcha"
60
+
61
+ #: ../general_options.php:92
62
+ msgid "Captcha display Options"
63
+ msgstr "Opciones de visualización del Captcha"
64
+
65
+ #: ../general_options.php:95
66
+ msgid "Enable Captcha for Login form"
67
+ msgstr "Habilitar Captcha para el formulario de autentificación"
68
+
69
+ #: ../general_options.php:98 ../general_options.php:107
70
+ #: ../general_options.php:116 ../general_options.php:125
71
+ #: ../general_options.php:134
72
+ msgid "Yes"
73
+ msgstr "Sí"
74
+
75
+ #: ../general_options.php:99 ../general_options.php:108
76
+ #: ../general_options.php:117 ../general_options.php:126
77
+ #: ../general_options.php:135
78
+ msgid "No"
79
+ msgstr "No"
80
+
81
+ #: ../general_options.php:104
82
+ msgid "Enable Captcha for Register form"
83
+ msgstr "Habilitar Captcha para el formulario de registro"
84
+
85
+ #: ../general_options.php:113
86
+ msgid "Enable Captcha for Lost Password form"
87
+ msgstr "Habilitar Captcha para el formulario de recuperación de clave"
88
+
89
+ #: ../general_options.php:122
90
+ msgid "Enable Captcha for Comments form"
91
+ msgstr "Habilitar Captcha para el envío de comentarios"
92
+
93
+ #: ../general_options.php:131
94
+ msgid "Hide Captcha for logged in users"
95
+ msgstr "Ocultar Captcha para usuarios autentificados"
96
+
97
+ #: ../general_options.php:140
98
+ msgid "Save"
99
+ msgstr "Guardar"
100
+
101
+ #: ../wpCaptcha.php:25 ../wpCaptcha.php:58 ../wpCaptcha.php:124
102
+ #: ../wpCaptcha.php:144 ../wpCaptcha.php:202 ../wpCaptcha.php:256
103
+ msgid "Captcha"
104
+ msgstr "Captcha"
105
+
106
+ #: ../wpCaptcha.php:70 ../wpCaptcha.php:129 ../wpCaptcha.php:149
107
+ #: ../wpCaptcha.php:207 ../wpCaptcha.php:261
108
+ msgid "Type the text displayed above"
109
+ msgstr "Escriba el texto mostrado arriba"
110
+
111
+ #: ../wpCaptcha.php:82
112
+ msgid "Captcha confirmation error!"
113
+ msgstr "¡Error de confirmación del Captcha! "
114
+
115
+ #: ../wpCaptcha.php:92
116
+ msgid "Incorrect captcha confirmation!"
117
+ msgstr "¡Confirmación incorrecta del captcha! "
118
+
119
+ #: ../wpCaptcha.php:181
120
+ msgid "CAPTCHA cannot be empty."
121
+ msgstr "El CAPTCHA no puede estar vacío."
122
+
123
+ #: ../wpCaptcha.php:185 ../wpCaptcha.php:279
124
+ msgid ""
125
+ "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
126
+ msgstr ""
127
+ "Error: CAPTCHA incorrecto. Pulse el botón \"Atrás\" de su navegador e "
128
+ "inténtelo de nuevo. "
129
+
130
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:225 ../wpCaptcha.php:233
131
+ #: ../wpCaptcha.php:240
132
+ msgid "ERROR"
133
+ msgstr "ERROR"
134
+
135
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:233 ../wpCaptcha.php:272
136
+ msgid "Please complete the CAPTCHA."
137
+ msgstr "Complete el CAPTCHA. "
138
+
139
+ #: ../wpCaptcha.php:225 ../wpCaptcha.php:240
140
+ msgid "That CAPTCHA was incorrect."
141
+ msgstr "CAPTCHA incorrecto."
languages/wpcaptchadomain-fa_IR.mo ADDED
Binary file
languages/wpcaptchadomain-fa_IR.po ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-03-29 08:53+0330\n"
6
+ "PO-Revision-Date: 2013-03-29 20:37+0330\n"
7
+ "Last-Translator: مهبد رایانه سپاهان <mehbod.rayaneh@yahoo.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Czech\n"
15
+ "X-Poedit-Country: CZECH REPUBLIC\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "تصویر امنیتی"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "ذخیره تغییرات"
25
+
26
+ #: ../general_options.php:73
27
+ msgid "Select Captcha letters type"
28
+ msgstr "انتخاب نوع کاراکترهای تصویر امنیتی"
29
+
30
+ #: ../general_options.php:76
31
+ msgid "Capital letters only"
32
+ msgstr "فقط حروف بزرگ"
33
+
34
+ #: ../general_options.php:77
35
+ msgid "Small letters only"
36
+ msgstr "فقط حروف کوچک"
37
+
38
+ #: ../general_options.php:78
39
+ msgid "Capital & Small letters"
40
+ msgstr "حروف بزرگ و کوچک"
41
+
42
+ #: ../general_options.php:83
43
+ msgid "Select a Captcha type"
44
+ msgstr "انتخاب نوع تصویر امنیتی"
45
+
46
+ #: ../general_options.php:86
47
+ msgid "Alphanumeric"
48
+ msgstr "حروف و اعداد"
49
+
50
+ #: ../general_options.php:87
51
+ msgid "Alphabets only"
52
+ msgstr "فقط حروف الفبا"
53
+
54
+ #: ../general_options.php:88
55
+ msgid "Numbers only"
56
+ msgstr "فقط اعداد"
57
+
58
+ #: ../general_options.php:93
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "تعداد کاراکترهای کد امنیتی"
61
+
62
+ #: ../general_options.php:107
63
+ msgid "Captcha display Options"
64
+ msgstr "تنظیمات نمایش تصویر امنیتی"
65
+
66
+ #: ../general_options.php:110
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "فعال کردن تصویر امنیتی برای فرم ورود"
69
+
70
+ #: ../general_options.php:113
71
+ #: ../general_options.php:122
72
+ #: ../general_options.php:131
73
+ #: ../general_options.php:140
74
+ #: ../general_options.php:149
75
+ msgid "Yes"
76
+ msgstr "بلی"
77
+
78
+ #: ../general_options.php:114
79
+ #: ../general_options.php:123
80
+ #: ../general_options.php:132
81
+ #: ../general_options.php:141
82
+ #: ../general_options.php:150
83
+ msgid "No"
84
+ msgstr "خیر"
85
+
86
+ #: ../general_options.php:119
87
+ msgid "Enable Captcha for Register form"
88
+ msgstr "فعال کردن تصویر امنیتی برای فرم عضویت"
89
+
90
+ #: ../general_options.php:128
91
+ msgid "Enable Captcha for Lost Password form"
92
+ msgstr "فعال کردن تصویر امنیتی برای فرم فراموشی رمز عبور"
93
+
94
+ #: ../general_options.php:137
95
+ msgid "Enable Captcha for Comments form"
96
+ msgstr "فعال کردن تصویر برای فرم نظرات"
97
+
98
+ #: ../general_options.php:146
99
+ msgid "Hide Captcha for logged in users"
100
+ msgstr "غیر فعال کردن تصویر امنیتی برای اعضای وارد شده به سایت"
101
+
102
+ #: ../general_options.php:155
103
+ msgid "Save"
104
+ msgstr "ذخیره"
105
+
106
+ #: ../wpCaptcha.php:36
107
+ #: ../wpCaptcha.php:69
108
+ #: ../wpCaptcha.php:135
109
+ #: ../wpCaptcha.php:155
110
+ #: ../wpCaptcha.php:213
111
+ #: ../wpCaptcha.php:267
112
+ msgid "Captcha"
113
+ msgstr "تصویر امنیتی"
114
+
115
+ #: ../wpCaptcha.php:81
116
+ #: ../wpCaptcha.php:140
117
+ #: ../wpCaptcha.php:160
118
+ #: ../wpCaptcha.php:218
119
+ #: ../wpCaptcha.php:272
120
+ msgid "Type the text displayed above"
121
+ msgstr "تصویر امنیتی را وارد کنید"
122
+
123
+ #: ../wpCaptcha.php:93
124
+ msgid "Captcha confirmation error!"
125
+ msgstr "خطای تصویر امنیتی"
126
+
127
+ #: ../wpCaptcha.php:103
128
+ msgid "Incorrect captcha confirmation!"
129
+ msgstr "کد تصویر وارد شده اشتباه است!"
130
+
131
+ #: ../wpCaptcha.php:192
132
+ msgid "CAPTCHA cannot be empty."
133
+ msgstr "تصویر امنیتی را وارد کنید."
134
+
135
+ #: ../wpCaptcha.php:196
136
+ #: ../wpCaptcha.php:290
137
+ msgid "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
138
+ msgstr "خطا : تصویر امنیتی اشتباه است. به صفحه قبل باز گردید و مجددا امتحان کنید."
139
+
140
+ #: ../wpCaptcha.php:229
141
+ #: ../wpCaptcha.php:236
142
+ #: ../wpCaptcha.php:244
143
+ #: ../wpCaptcha.php:251
144
+ msgid "ERROR"
145
+ msgstr "خطا"
146
+
147
+ #: ../wpCaptcha.php:229
148
+ #: ../wpCaptcha.php:244
149
+ #: ../wpCaptcha.php:283
150
+ msgid "Please complete the CAPTCHA."
151
+ msgstr "لطفا تصویر امنیتی را کامل کنید."
152
+
153
+ #: ../wpCaptcha.php:236
154
+ #: ../wpCaptcha.php:251
155
+ msgid "That CAPTCHA was incorrect."
156
+ msgstr "تصویر امنیتی وارد شده صحیح نیست."
157
+
languages/wpcaptchadomain-fi.mo ADDED
Binary file
languages/wpcaptchadomain-fi.po ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "POT-Creation-Date: 2013-04-19 11:45-0000\n"
5
+ "PO-Revision-Date: 2013-04-19 11:52-0000\n"
6
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
7
+ "Language-Team: vinojcardoza <vinoj.cardoza@gmail.com>\n"
8
+ "Language: fi\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.5\n"
13
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SearchPath-0: ..\n"
16
+
17
+ #: ../tagcloud/general_options.php:9
18
+ msgid "CAPTCHA"
19
+ msgstr "CAPTCHA"
20
+
21
+ #: ../tagcloud/general_options.php:16
22
+ msgid "Options saved."
23
+ msgstr "Asetukset tallennettu."
24
+
25
+ #: ../tagcloud/general_options.php:73
26
+ msgid "Select Captcha letters type"
27
+ msgstr "Valitse CAPTCHA kirjainten koko"
28
+
29
+ #: ../tagcloud/general_options.php:76
30
+ msgid "Capital letters only"
31
+ msgstr "Suuret kirjaimet"
32
+
33
+ #: ../tagcloud/general_options.php:77
34
+ msgid "Small letters only"
35
+ msgstr "Pienet kirjaimet"
36
+
37
+ #: ../tagcloud/general_options.php:78
38
+ msgid "Capital & Small letters"
39
+ msgstr "Suuret ja pienet kirjaimet"
40
+
41
+ #: ../tagcloud/general_options.php:83
42
+ msgid "Select a Captcha type"
43
+ msgstr "Valitse CAPTCHA tyyppi"
44
+
45
+ #: ../tagcloud/general_options.php:86
46
+ msgid "Alphanumeric"
47
+ msgstr "Aakkosnumeerinen"
48
+
49
+ #: ../tagcloud/general_options.php:87
50
+ msgid "Alphabets only"
51
+ msgstr "Vain aakkoset"
52
+
53
+ #: ../tagcloud/general_options.php:88
54
+ msgid "Numbers only"
55
+ msgstr "Vain numerot"
56
+
57
+ #: ../tagcloud/general_options.php:93
58
+ msgid "Total number of Captcha Characters"
59
+ msgstr "Kokonaismäärä Captcha Hahmot"
60
+
61
+ #: ../tagcloud/general_options.php:107
62
+ msgid "Captcha display Options"
63
+ msgstr "CAPTCHA esitysasetukset"
64
+
65
+ #: ../tagcloud/general_options.php:110
66
+ msgid "Enable Captcha for Login form"
67
+ msgstr "Näytetään kirjautuessa"
68
+
69
+ #: ../tagcloud/general_options.php:113 ../tagcloud/general_options.php:122
70
+ #: ../tagcloud/general_options.php:131 ../tagcloud/general_options.php:140
71
+ #: ../tagcloud/general_options.php:149
72
+ msgid "Yes"
73
+ msgstr "Kyllä"
74
+
75
+ #: ../tagcloud/general_options.php:114 ../tagcloud/general_options.php:123
76
+ #: ../tagcloud/general_options.php:132 ../tagcloud/general_options.php:141
77
+ #: ../tagcloud/general_options.php:150
78
+ msgid "No"
79
+ msgstr "Ei"
80
+
81
+ #: ../tagcloud/general_options.php:119
82
+ msgid "Enable Captcha for Register form"
83
+ msgstr "Näytetään rekisteröityessä"
84
+
85
+ #: ../tagcloud/general_options.php:128
86
+ msgid "Enable Captcha for Lost Password form"
87
+ msgstr "Näytetään uutta salasanaa pyydettäessä"
88
+
89
+ #: ../tagcloud/general_options.php:137
90
+ msgid "Enable Captcha for Comments form"
91
+ msgstr "Näytetään kommentoitaessa"
92
+
93
+ #: ../tagcloud/general_options.php:146
94
+ msgid "Hide Captcha for logged in users"
95
+ msgstr "Piilota CAPTCHA sisäänkirjautuneilta käyttäjiltä"
96
+
97
+ #: ../tagcloud/general_options.php:155
98
+ msgid "Save"
99
+ msgstr "Tallenna"
100
+
101
+ #: ../tagcloud/wpCaptcha.php:36 ../tagcloud/wpCaptcha.php:69
102
+ #: ../tagcloud/wpCaptcha.php:135 ../tagcloud/wpCaptcha.php:155
103
+ #: ../tagcloud/wpCaptcha.php:213 ../tagcloud/wpCaptcha.php:267
104
+ msgid "Captcha"
105
+ msgstr "Captcha"
106
+
107
+ #: ../tagcloud/wpCaptcha.php:81 ../tagcloud/wpCaptcha.php:140
108
+ #: ../tagcloud/wpCaptcha.php:160 ../tagcloud/wpCaptcha.php:218
109
+ #: ../tagcloud/wpCaptcha.php:272
110
+ msgid "Type the text displayed above"
111
+ msgstr "Kirjoita yllä oleva koodi"
112
+
113
+ #: ../tagcloud/wpCaptcha.php:93
114
+ msgid "Captcha confirmation error!"
115
+ msgstr "CAPTCHA vahvistusvirhe!"
116
+
117
+ #: ../tagcloud/wpCaptcha.php:103
118
+ msgid "Incorrect captcha confirmation!"
119
+ msgstr "Väärä CAPTCHA vahvistus!"
120
+
121
+ #: ../tagcloud/wpCaptcha.php:192
122
+ msgid "CAPTCHA cannot be empty."
123
+ msgstr "CAPTHCA ei voi olla tyhjä."
124
+
125
+ #: ../tagcloud/wpCaptcha.php:196 ../tagcloud/wpCaptcha.php:290
126
+ msgid ""
127
+ "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
128
+ msgstr ""
129
+ "Virhe: Väärä CAPTHCA koodi. Paina selaimesi takaisinpaluu -painiketta ja "
130
+ "kokeile uudelleen."
131
+
132
+ #: ../tagcloud/wpCaptcha.php:229 ../tagcloud/wpCaptcha.php:236
133
+ #: ../tagcloud/wpCaptcha.php:244 ../tagcloud/wpCaptcha.php:251
134
+ msgid "ERROR"
135
+ msgstr "VIRHE"
136
+
137
+ #: ../tagcloud/wpCaptcha.php:229 ../tagcloud/wpCaptcha.php:244
138
+ #: ../tagcloud/wpCaptcha.php:283
139
+ msgid "Please complete the CAPTCHA."
140
+ msgstr "Ole hyvä ja täytä CAPTCHA."
141
+
142
+ #: ../tagcloud/wpCaptcha.php:236 ../tagcloud/wpCaptcha.php:251
143
+ msgid "That CAPTCHA was incorrect."
144
+ msgstr "Syöttämäsi CAPTCHA oli väärin."
languages/wpcaptchadomain-fr_FR.mo ADDED
Binary file
languages/wpcaptchadomain-fr_FR.po ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:49-0000\n"
6
+ "PO-Revision-Date: 2012-10-09 10:08-0500\n"
7
+ "Last-Translator: Sylvain Bédard <sylvain@logographe.ca>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Language: fr_FR\n"
15
+ "X-Generator: Poedit 1.5.3\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "Vérification CAPTCHA"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "Options sauvegardées"
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Type de caractères"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "Uniquement des caractères majuscules"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "Uniquement des caractères minuscules"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "Caractères majuscules et minuscules"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Type de CAPTCHA"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Alphanumérique"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Lettres uniquement"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Chiffres uniquement"
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Nombre total de caractères"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Options d'affichage"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Activer pour le formulaire d'accès"
69
+
70
+ #: ../general_options.php:98 ../general_options.php:107
71
+ #: ../general_options.php:116 ../general_options.php:125
72
+ #: ../general_options.php:134
73
+ msgid "Yes"
74
+ msgstr "Oui"
75
+
76
+ #: ../general_options.php:99 ../general_options.php:108
77
+ #: ../general_options.php:117 ../general_options.php:126
78
+ #: ../general_options.php:135
79
+ msgid "No"
80
+ msgstr "Non"
81
+
82
+ #: ../general_options.php:104
83
+ msgid "Enable Captcha for Register form"
84
+ msgstr "Activer pour le formulaire d'enregistrement"
85
+
86
+ #: ../general_options.php:113
87
+ msgid "Enable Captcha for Lost Password form"
88
+ msgstr "Activer pour le formulaire de perte de mot de passe"
89
+
90
+ #: ../general_options.php:122
91
+ msgid "Enable Captcha for Comments form"
92
+ msgstr "Activer pour le formulaire de commentaires"
93
+
94
+ #: ../general_options.php:131
95
+ msgid "Hide Captcha for logged in users"
96
+ msgstr "Cacher pour les utilisateurs connectés"
97
+
98
+ #: ../general_options.php:140
99
+ msgid "Save"
100
+ msgstr "Sauvegardé"
101
+
102
+ #: ../wpCaptcha.php:25 ../wpCaptcha.php:58 ../wpCaptcha.php:124
103
+ #: ../wpCaptcha.php:144 ../wpCaptcha.php:202 ../wpCaptcha.php:256
104
+ msgid "Captcha"
105
+ msgstr "Vérification CAPTCHA"
106
+
107
+ #: ../wpCaptcha.php:70 ../wpCaptcha.php:129 ../wpCaptcha.php:149
108
+ #: ../wpCaptcha.php:207 ../wpCaptcha.php:261
109
+ msgid "Type the text displayed above"
110
+ msgstr "Saisir le texte ci-haut"
111
+
112
+ #: ../wpCaptcha.php:82
113
+ msgid "Captcha confirmation error!"
114
+ msgstr "Erreur de saisie du CAPTCHA!"
115
+
116
+ #: ../wpCaptcha.php:92
117
+ msgid "Incorrect captcha confirmation!"
118
+ msgstr "Ce CAPTCHA est incorrect"
119
+
120
+ #: ../wpCaptcha.php:181
121
+ msgid "CAPTCHA cannot be empty."
122
+ msgstr "Le CAPTCHA ne peux pas être vide"
123
+
124
+ #: ../wpCaptcha.php:185 ../wpCaptcha.php:279
125
+ msgid ""
126
+ "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
127
+ msgstr ""
128
+ "ERREUR. Saisie CAPTCHA incorrecte. Revenez à la page précédente et essayez "
129
+ "de nouveau."
130
+
131
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:225 ../wpCaptcha.php:233
132
+ #: ../wpCaptcha.php:240
133
+ msgid "ERROR"
134
+ msgstr "ERREUR"
135
+
136
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:233 ../wpCaptcha.php:272
137
+ msgid "Please complete the CAPTCHA."
138
+ msgstr "Veuillez compléter le CAPTCHA"
139
+
140
+ #: ../wpCaptcha.php:225 ../wpCaptcha.php:240
141
+ msgid "That CAPTCHA was incorrect."
142
+ msgstr "Ce CAPTCHA est incorrect"
143
+
144
+ #~ msgid "Captcha - Options"
145
+ #~ msgstr "Captcha - Options"
146
+
147
+ #~ msgid ""
148
+ #~ "Error: You entered in the wrong CAPTCHA phrase. Press your browser's back "
149
+ #~ "button and try again."
150
+ #~ msgstr ""
151
+ #~ "Erreur : Vous êtes entré dans la mauvaise phrase de CAPTCHA. Appuyer le "
152
+ #~ "bouton arrière de votre navigateur et essayer encore. "
153
+
154
+ #~ msgid "Save options"
155
+ #~ msgstr "Save options"
156
+
157
+ #~ msgid "Captcha Options"
158
+ #~ msgstr "Captcha Options"
languages/wpcaptchadomain-nl_NL.mo ADDED
Binary file
languages/wpcaptchadomain-nl_NL.po ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:49-0000\n"
6
+ "PO-Revision-Date: 2012-08-31 09:41-0000\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@hotmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Dutch\n"
15
+ "X-Poedit-Country: NETHERLANDS\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "CAPTCHA"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "Instellingen opgeslagen."
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Selecteer Captcha lettersoort"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "Alleen hoofdletters"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "Alleen kleine letters"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "Hoofd & kleine letters"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Selecteer een Captcha type"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Alfanummeriek"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Alleen letters"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Alleen cijfers"
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Totaal aantal Captcha tekens"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Captcha weergave opties"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Captcha inschakelen op het Login formulier"
69
+
70
+ #: ../general_options.php:98
71
+ #: ../general_options.php:107
72
+ #: ../general_options.php:116
73
+ #: ../general_options.php:125
74
+ #: ../general_options.php:134
75
+ msgid "Yes"
76
+ msgstr "Ja"
77
+
78
+ #: ../general_options.php:99
79
+ #: ../general_options.php:108
80
+ #: ../general_options.php:117
81
+ #: ../general_options.php:126
82
+ #: ../general_options.php:135
83
+ msgid "No"
84
+ msgstr "Nee"
85
+
86
+ #: ../general_options.php:104
87
+ msgid "Enable Captcha for Register form"
88
+ msgstr "Captcha inschakelen op Registratie formulier"
89
+
90
+ #: ../general_options.php:113
91
+ msgid "Enable Captcha for Lost Password form"
92
+ msgstr "Captcha inschakelen op Wachtwoord Vergeten formulier"
93
+
94
+ #: ../general_options.php:122
95
+ msgid "Enable Captcha for Comments form"
96
+ msgstr "Captcha inschakelen op Reactie formulier"
97
+
98
+ #: ../general_options.php:131
99
+ msgid "Hide Captcha for logged in users"
100
+ msgstr "Geen Captcha weergeven voor ingelogde gebruikers"
101
+
102
+ #: ../general_options.php:140
103
+ msgid "Save"
104
+ msgstr "Opslaan"
105
+
106
+ #: ../wpCaptcha.php:25
107
+ #: ../wpCaptcha.php:58
108
+ #: ../wpCaptcha.php:124
109
+ #: ../wpCaptcha.php:144
110
+ #: ../wpCaptcha.php:202
111
+ #: ../wpCaptcha.php:256
112
+ msgid "Captcha"
113
+ msgstr "Captcha"
114
+
115
+ #: ../wpCaptcha.php:70
116
+ #: ../wpCaptcha.php:129
117
+ #: ../wpCaptcha.php:149
118
+ #: ../wpCaptcha.php:207
119
+ #: ../wpCaptcha.php:261
120
+ msgid "Type the text displayed above"
121
+ msgstr "Type de hierboven weergegeven tekst"
122
+
123
+ #: ../wpCaptcha.php:82
124
+ msgid "Captcha confirmation error!"
125
+ msgstr "Captcha bevestigingsfout!"
126
+
127
+ #: ../wpCaptcha.php:92
128
+ msgid "Incorrect captcha confirmation!"
129
+ msgstr "Onjuiste captcha bevestiging!"
130
+
131
+ #: ../wpCaptcha.php:181
132
+ msgid "CAPTCHA cannot be empty."
133
+ msgstr "CAPTCHA kan niet leeg zijn."
134
+
135
+ #: ../wpCaptcha.php:185
136
+ #: ../wpCaptcha.php:279
137
+ msgid "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
138
+ msgstr "Fout: Onjuiste CAPTCHA. Gebruik de vorige knop in uw browser en probeer het opnieuw."
139
+
140
+ #: ../wpCaptcha.php:218
141
+ #: ../wpCaptcha.php:225
142
+ #: ../wpCaptcha.php:233
143
+ #: ../wpCaptcha.php:240
144
+ msgid "ERROR"
145
+ msgstr "FOUT"
146
+
147
+ #: ../wpCaptcha.php:218
148
+ #: ../wpCaptcha.php:233
149
+ #: ../wpCaptcha.php:272
150
+ msgid "Please complete the CAPTCHA."
151
+ msgstr "Vul aub de CAPTCHA in."
152
+
153
+ #: ../wpCaptcha.php:225
154
+ #: ../wpCaptcha.php:240
155
+ msgid "That CAPTCHA was incorrect."
156
+ msgstr "Die CAPTCHA is onjuist."
157
+
languages/wpcaptchadomain-pl_PL.mo ADDED
Binary file
languages/wpcaptchadomain-pl_PL.po ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:48-0000\n"
6
+ "PO-Revision-Date: 2012-12-24 07:56+0100\n"
7
+ "Last-Translator: hoek <hoek@hoek.pl>\n"
8
+ "Language-Team: Hoek <hoek@hoek.pl>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Polish\n"
15
+ "X-Poedit-Country: POLAND\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "CAPTCHA"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "Opcje zapisane."
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Wybierz rodzaj liter Captcha"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "Tylko duże litery"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "Tylko małe litery"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "Duże i małe litery"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Wybierz typ Captcha"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Alfanumeryczne"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Tylko litery"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Tylko liczby"
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Liczba znaków CAPTCHA"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Opcje wyświetlania Captcha"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Włącz Captcha dla formularza logowania"
69
+
70
+ #: ../general_options.php:98
71
+ #: ../general_options.php:107
72
+ #: ../general_options.php:116
73
+ #: ../general_options.php:125
74
+ #: ../general_options.php:134
75
+ msgid "Yes"
76
+ msgstr "Tak"
77
+
78
+ #: ../general_options.php:99
79
+ #: ../general_options.php:108
80
+ #: ../general_options.php:117
81
+ #: ../general_options.php:126
82
+ #: ../general_options.php:135
83
+ msgid "No"
84
+ msgstr "Nie"
85
+
86
+ #: ../general_options.php:104
87
+ msgid "Enable Captcha for Register form"
88
+ msgstr "Włącz Captcha dla formularza rejestracji"
89
+
90
+ #: ../general_options.php:113
91
+ msgid "Enable Captcha for Lost Password form"
92
+ msgstr "Włącz Captcha dla formularza odzyskiwania hasła"
93
+
94
+ #: ../general_options.php:122
95
+ msgid "Enable Captcha for Comments form"
96
+ msgstr "Włącz Captcha dla komentarzy"
97
+
98
+ #: ../general_options.php:131
99
+ msgid "Hide Captcha for logged in users"
100
+ msgstr "Schowaj Captcha dla zalogowanych użytkowników"
101
+
102
+ #: ../general_options.php:140
103
+ msgid "Save"
104
+ msgstr "Zapisz"
105
+
106
+ #: ../wpCaptcha.php:25
107
+ #: ../wpCaptcha.php:58
108
+ #: ../wpCaptcha.php:124
109
+ #: ../wpCaptcha.php:144
110
+ #: ../wpCaptcha.php:202
111
+ #: ../wpCaptcha.php:256
112
+ msgid "Captcha"
113
+ msgstr "Captcha"
114
+
115
+ #: ../wpCaptcha.php:70
116
+ #: ../wpCaptcha.php:129
117
+ #: ../wpCaptcha.php:149
118
+ #: ../wpCaptcha.php:207
119
+ #: ../wpCaptcha.php:261
120
+ msgid "Type the text displayed above"
121
+ msgstr "Wpisz tekst wyświetlony powyżej"
122
+
123
+ #: ../wpCaptcha.php:82
124
+ msgid "Captcha confirmation error!"
125
+ msgstr "Błąd potwierdzenia Captcha!"
126
+
127
+ #: ../wpCaptcha.php:92
128
+ msgid "Incorrect captcha confirmation!"
129
+ msgstr "Nieprawidłowe potwierdzenie kodu captcha!"
130
+
131
+ #: ../wpCaptcha.php:181
132
+ msgid "CAPTCHA cannot be empty."
133
+ msgstr "Pole CAPTCHA nie może być puste."
134
+
135
+ #: ../wpCaptcha.php:185
136
+ #: ../wpCaptcha.php:279
137
+ msgid "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
138
+ msgstr "Błąd: Nipepoprawny kod Captcha. Kliknij wstecz w swojej przeglądarce i spróbuj jeszcze raz"
139
+
140
+ #: ../wpCaptcha.php:218
141
+ #: ../wpCaptcha.php:225
142
+ #: ../wpCaptcha.php:233
143
+ #: ../wpCaptcha.php:240
144
+ msgid "ERROR"
145
+ msgstr "BŁĄD"
146
+
147
+ #: ../wpCaptcha.php:218
148
+ #: ../wpCaptcha.php:233
149
+ #: ../wpCaptcha.php:272
150
+ msgid "Please complete the CAPTCHA."
151
+ msgstr "Proszę uzupełnij kod Captcha."
152
+
153
+ #: ../wpCaptcha.php:225
154
+ #: ../wpCaptcha.php:240
155
+ msgid "That CAPTCHA was incorrect."
156
+ msgstr "Ten kod CAPTCHA był niepoprawny."
157
+
languages/wpcaptchadomain-pt_BR.mo ADDED
Binary file
languages/wpcaptchadomain-pt_BR.po ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:53-0000\n"
6
+ "PO-Revision-Date: 2012-08-28 15:04-0000\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@hotmail.com>\n"
8
+ "Language-Team: Rafael Santos <rs@anoluz.net>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Portuguese\n"
15
+ "X-Poedit-Country: BRAZIL\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "CAPTCHA"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "As opções foram salvas."
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Selecione o tipo das letras do Captcha"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "Letras maiúsculas apenas"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "Letras minúsculas apenas"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "Letras maiúsculas e minúsculas"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Selecione o tipo do Captcha"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Alfanumérico"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Letras apenas"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Números apenas"
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Número total de caracteres no Captcha"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Opções de exibição do Captcha"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Habilitar Captcha para tela de Login"
69
+
70
+ #: ../general_options.php:98
71
+ #: ../general_options.php:107
72
+ #: ../general_options.php:116
73
+ #: ../general_options.php:125
74
+ #: ../general_options.php:134
75
+ msgid "Yes"
76
+ msgstr "Sim"
77
+
78
+ #: ../general_options.php:99
79
+ #: ../general_options.php:108
80
+ #: ../general_options.php:117
81
+ #: ../general_options.php:126
82
+ #: ../general_options.php:135
83
+ msgid "No"
84
+ msgstr "Não"
85
+
86
+ #: ../general_options.php:104
87
+ msgid "Enable Captcha for Register form"
88
+ msgstr "Habilitar Captcha para tela de Registo de Usuários"
89
+
90
+ #: ../general_options.php:113
91
+ msgid "Enable Captcha for Lost Password form"
92
+ msgstr "Habilitar Captcha para tela de \"Esqueci a senha\""
93
+
94
+ #: ../general_options.php:122
95
+ msgid "Enable Captcha for Comments form"
96
+ msgstr "Habilitar Captcha para tela de Comentários"
97
+
98
+ #: ../general_options.php:131
99
+ msgid "Hide Captcha for logged in users"
100
+ msgstr "Esconder Captcha para usuários já logados"
101
+
102
+ #: ../general_options.php:140
103
+ msgid "Save"
104
+ msgstr "Salvar"
105
+
106
+ #: ../wpCaptcha.php:25
107
+ #: ../wpCaptcha.php:58
108
+ #: ../wpCaptcha.php:124
109
+ #: ../wpCaptcha.php:144
110
+ #: ../wpCaptcha.php:202
111
+ #: ../wpCaptcha.php:256
112
+ msgid "Captcha"
113
+ msgstr "Captcha"
114
+
115
+ #: ../wpCaptcha.php:70
116
+ #: ../wpCaptcha.php:129
117
+ #: ../wpCaptcha.php:149
118
+ #: ../wpCaptcha.php:207
119
+ #: ../wpCaptcha.php:261
120
+ msgid "Type the text displayed above"
121
+ msgstr "Digite os caracteres exibidos acima"
122
+
123
+ #: ../wpCaptcha.php:82
124
+ msgid "Captcha confirmation error!"
125
+ msgstr "Erro de confirmação do Captcha!"
126
+
127
+ #: ../wpCaptcha.php:92
128
+ msgid "Incorrect captcha confirmation!"
129
+ msgstr "Confirmação incorreta do Captcha!"
130
+
131
+ #: ../wpCaptcha.php:181
132
+ msgid "CAPTCHA cannot be empty."
133
+ msgstr "Os caracteres do Captcha não foram preenchidos."
134
+
135
+ #: ../wpCaptcha.php:185
136
+ #: ../wpCaptcha.php:279
137
+ msgid "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
138
+ msgstr "Erro: Captcha incorreto. Pressione o botão \"Voltar\" do navegador e tente novamente."
139
+
140
+ #: ../wpCaptcha.php:218
141
+ #: ../wpCaptcha.php:225
142
+ #: ../wpCaptcha.php:233
143
+ #: ../wpCaptcha.php:240
144
+ msgid "ERROR"
145
+ msgstr "ERRO"
146
+
147
+ #: ../wpCaptcha.php:218
148
+ #: ../wpCaptcha.php:233
149
+ #: ../wpCaptcha.php:272
150
+ msgid "Please complete the CAPTCHA."
151
+ msgstr "Por favor complete o Captcha. "
152
+
153
+ #: ../wpCaptcha.php:225
154
+ #: ../wpCaptcha.php:240
155
+ msgid "That CAPTCHA was incorrect."
156
+ msgstr "O Captcha estava incorreto. "
157
+
languages/wpcaptchadomain-pt_PT.mo ADDED
Binary file
languages/wpcaptchadomain-pt_PT.po ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:53-0000\n"
6
+ "PO-Revision-Date: 2012-08-03 11:53-0000\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@hotmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Portuguese\n"
15
+ "X-Poedit-Country: PORTUGAL\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "CAPTCHA"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "As opções guardaram. "
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Seleccione letras de Captcha escrever"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "As letras maiúsculas só"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "A minúscula só"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "O capital & minúscula"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Seleccione um tipo de Captcha"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Alfanumérico"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Os alfabetos só"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Os números só"
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Número total de caracteres captcha"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Opções de exibição de Captcha"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Capacite Captcha para forma de Login"
69
+
70
+ #: ../general_options.php:98
71
+ #: ../general_options.php:107
72
+ #: ../general_options.php:116
73
+ #: ../general_options.php:125
74
+ #: ../general_options.php:134
75
+ msgid "Yes"
76
+ msgstr "Sim"
77
+
78
+ #: ../general_options.php:99
79
+ #: ../general_options.php:108
80
+ #: ../general_options.php:117
81
+ #: ../general_options.php:126
82
+ #: ../general_options.php:135
83
+ msgid "No"
84
+ msgstr "Não"
85
+
86
+ #: ../general_options.php:104
87
+ msgid "Enable Captcha for Register form"
88
+ msgstr "Capacite Captcha para forma de Registo"
89
+
90
+ #: ../general_options.php:113
91
+ msgid "Enable Captcha for Lost Password form"
92
+ msgstr "Capacite Captcha para forma Perdida de palavra-passe"
93
+
94
+ #: ../general_options.php:122
95
+ msgid "Enable Captcha for Comments form"
96
+ msgstr "Capacite Captcha para Comentários formar"
97
+
98
+ #: ../general_options.php:131
99
+ msgid "Hide Captcha for logged in users"
100
+ msgstr "Esconda Captcha para fazer utilizadores de logon"
101
+
102
+ #: ../general_options.php:140
103
+ msgid "Save"
104
+ msgstr "Guarde"
105
+
106
+ #: ../wpCaptcha.php:25
107
+ #: ../wpCaptcha.php:58
108
+ #: ../wpCaptcha.php:124
109
+ #: ../wpCaptcha.php:144
110
+ #: ../wpCaptcha.php:202
111
+ #: ../wpCaptcha.php:256
112
+ msgid "Captcha"
113
+ msgstr "Captcha"
114
+
115
+ #: ../wpCaptcha.php:70
116
+ #: ../wpCaptcha.php:129
117
+ #: ../wpCaptcha.php:149
118
+ #: ../wpCaptcha.php:207
119
+ #: ../wpCaptcha.php:261
120
+ msgid "Type the text displayed above"
121
+ msgstr "Escreva o texto exibido acima"
122
+
123
+ #: ../wpCaptcha.php:82
124
+ msgid "Captcha confirmation error!"
125
+ msgstr "Erro de confirmação de Captcha! "
126
+
127
+ #: ../wpCaptcha.php:92
128
+ msgid "Incorrect captcha confirmation!"
129
+ msgstr "Confirmação incorrecta de captcha! "
130
+
131
+ #: ../wpCaptcha.php:181
132
+ msgid "CAPTCHA cannot be empty."
133
+ msgstr "CAPTCHA não pode estar vazio. "
134
+
135
+ #: ../wpCaptcha.php:185
136
+ #: ../wpCaptcha.php:279
137
+ msgid "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
138
+ msgstr "O erro: CAPTCHA incorrecto. Pressione seu botão traseiro do navegador e tentativa outra vez. "
139
+
140
+ #: ../wpCaptcha.php:218
141
+ #: ../wpCaptcha.php:225
142
+ #: ../wpCaptcha.php:233
143
+ #: ../wpCaptcha.php:240
144
+ msgid "ERROR"
145
+ msgstr "ERRO"
146
+
147
+ #: ../wpCaptcha.php:218
148
+ #: ../wpCaptcha.php:233
149
+ #: ../wpCaptcha.php:272
150
+ msgid "Please complete the CAPTCHA."
151
+ msgstr "Por favor complete o CAPTCHA. "
152
+
153
+ #: ../wpCaptcha.php:225
154
+ #: ../wpCaptcha.php:240
155
+ msgid "That CAPTCHA was incorrect."
156
+ msgstr "Esse CAPTCHA era incorrecto. "
157
+
languages/wpcaptchadomain-ru_RU.mo ADDED
Binary file
languages/wpcaptchadomain-ru_RU.po ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:54-0000\n"
6
+ "PO-Revision-Date: 2012-09-15 19:33+0200\n"
7
+ "Last-Translator: Andriska <Andriska@list.ru>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Language: ru_RU\n"
15
+ "X-Generator: Poedit 1.5.3\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "Код безопасности"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "Параметры сохранены"
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Выберите тип букв"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "Только заглавные буквы"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "Только маленькие буквы"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "Заглавные и маленькие буквы"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Выберите тип кода"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Буквы и числа"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Только буквы"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Только числа"
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Общее количество символов"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Опции просмотра кода"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Код подтверждения в форме: Вход пользователя"
69
+
70
+ #: ../general_options.php:98 ../general_options.php:107
71
+ #: ../general_options.php:116 ../general_options.php:125
72
+ #: ../general_options.php:134
73
+ msgid "Yes"
74
+ msgstr "Да"
75
+
76
+ #: ../general_options.php:99 ../general_options.php:108
77
+ #: ../general_options.php:117 ../general_options.php:126
78
+ #: ../general_options.php:135
79
+ msgid "No"
80
+ msgstr "Нет"
81
+
82
+ #: ../general_options.php:104
83
+ msgid "Enable Captcha for Register form"
84
+ msgstr "Код подтверждения в форме: Регистрация"
85
+
86
+ #: ../general_options.php:113
87
+ msgid "Enable Captcha for Lost Password form"
88
+ msgstr "Код подтверждения в форме: Забыли Пароль"
89
+
90
+ #: ../general_options.php:122
91
+ msgid "Enable Captcha for Comments form"
92
+ msgstr "Код подтверждения для комментариев"
93
+
94
+ #: ../general_options.php:131
95
+ msgid "Hide Captcha for logged in users"
96
+ msgstr "Скрыть код подтверждения для авторизированных пользователей"
97
+
98
+ #: ../general_options.php:140
99
+ msgid "Save"
100
+ msgstr "Сохранить"
101
+
102
+ #: ../wpCaptcha.php:25 ../wpCaptcha.php:58 ../wpCaptcha.php:124
103
+ #: ../wpCaptcha.php:144 ../wpCaptcha.php:202 ../wpCaptcha.php:256
104
+ msgid "Captcha"
105
+ msgstr "Код безопасности"
106
+
107
+ #: ../wpCaptcha.php:70 ../wpCaptcha.php:129 ../wpCaptcha.php:149
108
+ #: ../wpCaptcha.php:207 ../wpCaptcha.php:261
109
+ msgid "Type the text displayed above"
110
+ msgstr "Введите символы отображаемые выше"
111
+
112
+ #: ../wpCaptcha.php:82
113
+ msgid "Captcha confirmation error!"
114
+ msgstr "Ошибка в коде подтверждения!"
115
+
116
+ #: ../wpCaptcha.php:92
117
+ msgid "Incorrect captcha confirmation!"
118
+ msgstr "Неправильный код подтверждения!"
119
+
120
+ #: ../wpCaptcha.php:181
121
+ msgid "CAPTCHA cannot be empty."
122
+ msgstr "Окно защитного кода не может быть пустым."
123
+
124
+ #: ../wpCaptcha.php:185 ../wpCaptcha.php:279
125
+ msgid ""
126
+ "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
127
+ msgstr "Ошибка: защитный код введен неверно."
128
+
129
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:225 ../wpCaptcha.php:233
130
+ #: ../wpCaptcha.php:240
131
+ msgid "ERROR"
132
+ msgstr "Ошибка"
133
+
134
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:233 ../wpCaptcha.php:272
135
+ msgid "Please complete the CAPTCHA."
136
+ msgstr "Пожалуйста введите код безопасности."
137
+
138
+ #: ../wpCaptcha.php:225 ../wpCaptcha.php:240
139
+ msgid "That CAPTCHA was incorrect."
140
+ msgstr "Код безопасности является неверным."
languages/wpcaptchadomain-sk_SK.mo ADDED
Binary file
languages/wpcaptchadomain-sk_SK.po ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:47-0000\n"
6
+ "PO-Revision-Date: 2012-12-26 11:22+0100\n"
7
+ "Last-Translator: Tomáš Bujna <info@nzw.sk>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Slovak\n"
15
+ "X-Poedit-Country: Slovak Republic\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "CAPTCHA"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "Nastavenie uložené"
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Vyberte písmo pre Captcha"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "Len veľké písmená"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "Len malé písmená"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "Veľké aj malé písmená"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Vyberte typ Captcha"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Písmená aj čísla"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Len písmená"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Len čísla"
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Celkový počet znakov Captcha"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Možnosti zobrazenia Captcha"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Povoliť Captcha pre prihlasovací formulár"
69
+
70
+ #: ../general_options.php:98
71
+ #: ../general_options.php:107
72
+ #: ../general_options.php:116
73
+ #: ../general_options.php:125
74
+ #: ../general_options.php:134
75
+ msgid "Yes"
76
+ msgstr "Áno"
77
+
78
+ #: ../general_options.php:99
79
+ #: ../general_options.php:108
80
+ #: ../general_options.php:117
81
+ #: ../general_options.php:126
82
+ #: ../general_options.php:135
83
+ msgid "No"
84
+ msgstr "Nie"
85
+
86
+ #: ../general_options.php:104
87
+ msgid "Enable Captcha for Register form"
88
+ msgstr "Povoliť Captcha pre registračný formulár"
89
+
90
+ #: ../general_options.php:113
91
+ msgid "Enable Captcha for Lost Password form"
92
+ msgstr "Povoliť Captcha pre formulár \"Stratené heslo\""
93
+
94
+ #: ../general_options.php:122
95
+ msgid "Enable Captcha for Comments form"
96
+ msgstr "Povoliť Captcha pre komentáre"
97
+
98
+ #: ../general_options.php:131
99
+ msgid "Hide Captcha for logged in users"
100
+ msgstr "Skrýť Captcha pre prihlásených užívateľov"
101
+
102
+ #: ../general_options.php:140
103
+ msgid "Save"
104
+ msgstr "Uložiť"
105
+
106
+ #: ../wpCaptcha.php:25
107
+ #: ../wpCaptcha.php:58
108
+ #: ../wpCaptcha.php:124
109
+ #: ../wpCaptcha.php:144
110
+ #: ../wpCaptcha.php:202
111
+ #: ../wpCaptcha.php:256
112
+ msgid "Captcha"
113
+ msgstr "Captcha"
114
+
115
+ #: ../wpCaptcha.php:70
116
+ #: ../wpCaptcha.php:129
117
+ #: ../wpCaptcha.php:149
118
+ #: ../wpCaptcha.php:207
119
+ #: ../wpCaptcha.php:261
120
+ msgid "Type the text displayed above"
121
+ msgstr "Opíšte zobrazený text"
122
+
123
+ #: ../wpCaptcha.php:82
124
+ msgid "Captcha confirmation error!"
125
+ msgstr "Chyba v overovaní!"
126
+
127
+ #: ../wpCaptcha.php:92
128
+ msgid "Incorrect captcha confirmation!"
129
+ msgstr "Nesprávne opísaný text!"
130
+
131
+ #: ../wpCaptcha.php:181
132
+ msgid "CAPTCHA cannot be empty."
133
+ msgstr "Kontrolný text (Captcha) nemôže zostať prázdny."
134
+
135
+ #: ../wpCaptcha.php:185
136
+ #: ../wpCaptcha.php:279
137
+ msgid "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
138
+ msgstr "Chyba: Nesprávná Captcha. Vráťte sa späť a skúste to znovu."
139
+
140
+ #: ../wpCaptcha.php:218
141
+ #: ../wpCaptcha.php:225
142
+ #: ../wpCaptcha.php:233
143
+ #: ../wpCaptcha.php:240
144
+ msgid "ERROR"
145
+ msgstr "Chyba"
146
+
147
+ #: ../wpCaptcha.php:218
148
+ #: ../wpCaptcha.php:233
149
+ #: ../wpCaptcha.php:272
150
+ msgid "Please complete the CAPTCHA."
151
+ msgstr "Prosím, opíšte Captcha kód."
152
+
153
+ #: ../wpCaptcha.php:225
154
+ #: ../wpCaptcha.php:240
155
+ msgid "That CAPTCHA was incorrect."
156
+ msgstr "Táto Captcha je chybne."
157
+
languages/wpcaptchadomain-sv_SE.mo ADDED
Binary file
languages/wpcaptchadomain-sv_SE.po ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-03 11:48-0000\n"
6
+ "PO-Revision-Date: 2013-04-06 17:48+0100\n"
7
+ "Last-Translator: Carl-Gunnar Sjöberg <sjellac@gmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Language: de_DE\n"
15
+ "X-Generator: Poedit 1.5.5\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "CAPTCHA"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "Inställningar sparade."
25
+
26
+ #: ../general_options.php:58
27
+ msgid "Select Captcha letters type"
28
+ msgstr "Välj typ av Captcha bokstäver"
29
+
30
+ #: ../general_options.php:61
31
+ msgid "Capital letters only"
32
+ msgstr "Endast versaler"
33
+
34
+ #: ../general_options.php:62
35
+ msgid "Small letters only"
36
+ msgstr "Endast gemener"
37
+
38
+ #: ../general_options.php:63
39
+ msgid "Capital & Small letters"
40
+ msgstr "Versaler & gemener"
41
+
42
+ #: ../general_options.php:68
43
+ msgid "Select a Captcha type"
44
+ msgstr "Välj typ av Captcha tecken"
45
+
46
+ #: ../general_options.php:71
47
+ msgid "Alphanumeric"
48
+ msgstr "Alfanumerisk"
49
+
50
+ #: ../general_options.php:72
51
+ msgid "Alphabets only"
52
+ msgstr "Endast bokstäver"
53
+
54
+ #: ../general_options.php:73
55
+ msgid "Numbers only"
56
+ msgstr "Endast siffror"
57
+
58
+ #: ../general_options.php:78
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "Antal Captcha tecken"
61
+
62
+ #: ../general_options.php:92
63
+ msgid "Captcha display Options"
64
+ msgstr "Inställningar för visning av Captcha"
65
+
66
+ #: ../general_options.php:95
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "Aktivera Captcha i inloggningsformulär"
69
+
70
+ #: ../general_options.php:98 ../general_options.php:107
71
+ #: ../general_options.php:116 ../general_options.php:125
72
+ #: ../general_options.php:134
73
+ msgid "Yes"
74
+ msgstr "Ja"
75
+
76
+ #: ../general_options.php:99 ../general_options.php:108
77
+ #: ../general_options.php:117 ../general_options.php:126
78
+ #: ../general_options.php:135
79
+ msgid "No"
80
+ msgstr "Nej"
81
+
82
+ #: ../general_options.php:104
83
+ msgid "Enable Captcha for Register form"
84
+ msgstr "Aktivera Captcha i registreringsformulär"
85
+
86
+ #: ../general_options.php:113
87
+ msgid "Enable Captcha for Lost Password form"
88
+ msgstr "Aktivera Captcha i formulär för lösenordsåterställning"
89
+
90
+ #: ../general_options.php:122
91
+ msgid "Enable Captcha for Comments form"
92
+ msgstr "Aktivera Captcha i kommentarsformulär"
93
+
94
+ #: ../general_options.php:131
95
+ msgid "Hide Captcha for logged in users"
96
+ msgstr "Göm Captcha för inloggade användare"
97
+
98
+ #: ../general_options.php:140
99
+ msgid "Save"
100
+ msgstr "Spara"
101
+
102
+ #: ../wpCaptcha.php:25 ../wpCaptcha.php:58 ../wpCaptcha.php:124
103
+ #: ../wpCaptcha.php:144 ../wpCaptcha.php:202 ../wpCaptcha.php:256
104
+ msgid "Captcha"
105
+ msgstr "Captcha"
106
+
107
+ #: ../wpCaptcha.php:70 ../wpCaptcha.php:129 ../wpCaptcha.php:149
108
+ #: ../wpCaptcha.php:207 ../wpCaptcha.php:261
109
+ msgid "Type the text displayed above"
110
+ msgstr "Skriv in tecknen som visas ovanför"
111
+
112
+ #: ../wpCaptcha.php:82
113
+ msgid "Captcha confirmation error!"
114
+ msgstr "Captcha kunde inte konfirmeras!"
115
+
116
+ #: ../wpCaptcha.php:92
117
+ msgid "Incorrect captcha confirmation!"
118
+ msgstr "Inkorrekt Captcha angiven!"
119
+
120
+ #: ../wpCaptcha.php:181
121
+ msgid "CAPTCHA cannot be empty."
122
+ msgstr "CAPTCHA kan inte vara tom."
123
+
124
+ #: ../wpCaptcha.php:185 ../wpCaptcha.php:279
125
+ msgid ""
126
+ "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
127
+ msgstr ""
128
+ "Fel: Inkorrekt CAPTCHA. Tryck på din webbläsares \"Tillbaka-knapp\" och "
129
+ "försök igen."
130
+
131
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:225 ../wpCaptcha.php:233
132
+ #: ../wpCaptcha.php:240
133
+ msgid "ERROR"
134
+ msgstr "FEL"
135
+
136
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:233 ../wpCaptcha.php:272
137
+ msgid "Please complete the CAPTCHA."
138
+ msgstr "Var vänlig och komplettera CAPTCHA."
139
+
140
+ #: ../wpCaptcha.php:225 ../wpCaptcha.php:240
141
+ msgid "That CAPTCHA was incorrect."
142
+ msgstr "CAPTCHA-inmatningen var inkorrekt."
languages/wpcaptchadomain-zh_CN.mo ADDED
Binary file
languages/wpcaptchadomain-zh_CN.po ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpcaptchadomain\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-01-16 12:24-0000\n"
6
+ "PO-Revision-Date: 2013-01-16 12:24-0000\n"
7
+ "Last-Translator: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
8
+ "Language-Team: Vinoj Cardoza <vinoj.cardoza@gmail.com>\n"
9
+ "Language: zh_CN\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../general_options.php:9
19
+ msgid "CAPTCHA"
20
+ msgstr "验证码"
21
+
22
+ #: ../general_options.php:16
23
+ msgid "Options saved."
24
+ msgstr "选项已保存。"
25
+
26
+ #: ../general_options.php:73
27
+ msgid "Select Captcha letters type"
28
+ msgstr "选择验证码字母型"
29
+
30
+ #: ../general_options.php:76
31
+ msgid "Capital letters only"
32
+ msgstr "大写字母"
33
+
34
+ #: ../general_options.php:77
35
+ msgid "Small letters only"
36
+ msgstr "小写字母"
37
+
38
+ #: ../general_options.php:78
39
+ msgid "Capital & Small letters"
40
+ msgstr "大写和小写字母"
41
+
42
+ #: ../general_options.php:83
43
+ msgid "Select a Captcha type"
44
+ msgstr "选择验证码类型"
45
+
46
+ #: ../general_options.php:86
47
+ msgid "Alphanumeric"
48
+ msgstr "字母数字"
49
+
50
+ #: ../general_options.php:87
51
+ msgid "Alphabets only"
52
+ msgstr "字母"
53
+
54
+ #: ../general_options.php:88
55
+ msgid "Numbers only"
56
+ msgstr "数字"
57
+
58
+ #: ../general_options.php:93
59
+ msgid "Total number of Captcha Characters"
60
+ msgstr "验证码字符总数"
61
+
62
+ #: ../general_options.php:107
63
+ msgid "Captcha display Options"
64
+ msgstr "验证码显示选项"
65
+
66
+ #: ../general_options.php:110
67
+ msgid "Enable Captcha for Login form"
68
+ msgstr "登录表单启用验证码"
69
+
70
+ #: ../general_options.php:113 ../general_options.php:122
71
+ #: ../general_options.php:131 ../general_options.php:140
72
+ #: ../general_options.php:149
73
+ msgid "Yes"
74
+ msgstr "是"
75
+
76
+ #: ../general_options.php:114 ../general_options.php:123
77
+ #: ../general_options.php:132 ../general_options.php:141
78
+ #: ../general_options.php:150
79
+ msgid "No"
80
+ msgstr "不"
81
+
82
+ #: ../general_options.php:119
83
+ msgid "Enable Captcha for Register form"
84
+ msgstr "注册表单启用验证码"
85
+
86
+ #: ../general_options.php:128
87
+ msgid "Enable Captcha for Lost Password form"
88
+ msgstr "忘记密码表单启用验证码"
89
+
90
+ #: ../general_options.php:137
91
+ msgid "Enable Captcha for Comments form"
92
+ msgstr "谈论表单启用验证码"
93
+
94
+ #: ../general_options.php:146
95
+ msgid "Hide Captcha for logged in users"
96
+ msgstr "对已登录用户隐藏验证码"
97
+
98
+ #: ../general_options.php:155
99
+ msgid "Save"
100
+ msgstr "保存"
101
+
102
+ #: ../wpCaptcha.php:36 ../wpCaptcha.php:69 ../wpCaptcha.php:135
103
+ #: ../wpCaptcha.php:155 ../wpCaptcha.php:213 ../wpCaptcha.php:267
104
+ msgid "Captcha"
105
+ msgstr "验证码"
106
+
107
+ #: ../wpCaptcha.php:81 ../wpCaptcha.php:140 ../wpCaptcha.php:160
108
+ #: ../wpCaptcha.php:218 ../wpCaptcha.php:272
109
+ msgid "Type the text displayed above"
110
+ msgstr "输入上面显示的文本"
111
+
112
+ #: ../wpCaptcha.php:93
113
+ msgid "Captcha confirmation error!"
114
+ msgstr "验证码确认错误!"
115
+
116
+ #: ../wpCaptcha.php:103
117
+ msgid "Incorrect captcha confirmation!"
118
+ msgstr "验证码确认不正确!"
119
+
120
+ #: ../wpCaptcha.php:192
121
+ msgid "CAPTCHA cannot be empty."
122
+ msgstr "验证码不能为空。"
123
+
124
+ #: ../wpCaptcha.php:196 ../wpCaptcha.php:290
125
+ msgid ""
126
+ "Error: Incorrect CAPTCHA. Press your browser's back button and try again."
127
+ msgstr "错误:验证码不正确。请按浏览器的后退按钮,再试一次。"
128
+
129
+ #: ../wpCaptcha.php:229 ../wpCaptcha.php:236 ../wpCaptcha.php:244
130
+ #: ../wpCaptcha.php:251
131
+ msgid "ERROR"
132
+ msgstr "错误"
133
+
134
+ #: ../wpCaptcha.php:229 ../wpCaptcha.php:244 ../wpCaptcha.php:283
135
+ msgid "Please complete the CAPTCHA."
136
+ msgstr "请填写验证码。"
137
+
138
+ #: ../wpCaptcha.php:236 ../wpCaptcha.php:251
139
+ msgid "That CAPTCHA was incorrect."
140
+ msgstr "验证码是不正确的。"
monofont.ttf ADDED
Binary file
public/images/captcha.gif ADDED
Binary file
public/images/form_captcha.gif ADDED
Binary file
readme.txt ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === Captcha Code===
2
+ Contributors: vinoj.cardoza
3
+ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=vinoj%2ecardoza%40gmail%2ecom&currency_code=GBP&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8
4
+ Tags: captcha, captcha code, wordpress, wordpress captcha, captcha for wordpress, form captcha, forms captcha, captcha security, security
5
+ Requires at least: 3.0
6
+ Tested up to: 4.4.2
7
+ Stable tag: trunk
8
+ License: GPLv2 or later
9
+
10
+ Adds Captcha Code anti-spam methods to WordPress forms. Forms include comments form, registration form, lost passwordform and login form.
11
+
12
+ == Description ==
13
+ Adds Captcha Code anti-spam methods to WordPress forms. Forms include comments form, registration form, lost passwordform and login form. In order to post comments or register, users will have to type in the code shown on the image. This prevents spam from automated bots. Adds security.
14
+
15
+ = Features =
16
+ 1. Administrator can specify where the captcha should be displayed i.e, comments, login, registration or lost password form.
17
+ 2. Administrator select the letters type from the options available - Capital letters, Small letters or Captial & Small letters.
18
+ 3. Administrator select the captcha type from the options available - Alphanumeric, Alphabets or numbers.
19
+ 4. Translation enabled.
20
+
21
+ = Note =
22
+ 1. If you find any bugs, please report in the following link, so that it will be fixed as quick as possible.
23
+ 2. If you think any feature adding to this plugin can improve its features, please recommend it in the following link.
24
+
25
+ = Support =
26
+
27
+ Thanks for downloading and installing my plugin. You can show your appreciation and support future development by donating.
28
+
29
+ Blog page: http://www.vinojcardoza.com/blog/captcha-code-authentication/
30
+
31
+ = Translation =
32
+ The translation were done using a translation software. I am not sure about the correctness of the translation. If you find some mistakes in the translation of your language, please let me know through the following link comments section. Also, if you couldn't find your language and you can do it, please let me know. http://www.vinojcardoza.com/captcha-code-authentication/
33
+
34
+ = Translation available for following languages =
35
+ * Catalan (Translated by SiVolsThoEnsenyo)
36
+ * Chinese (Translated by Leonardo Losoviz)
37
+ * Czech (Translated by Jan)
38
+ * Dutch (Translated by Duncan Bruns)
39
+ * Finnish (Translated by Joni Tyvio)
40
+ * French (Translated by Laurent Verpeet)
41
+ * German (Tranlsated by Simon)
42
+ * Persian (Translated by Saeed)
43
+ * Polish (Translated by Hoek)
44
+ * Portugese (European)
45
+ * Portugese - Brazilian (Translated by Rafael Santos)
46
+ * Russian (Translated by Andris Vonda)
47
+ * Slovak (Translated by Tomas Bujna)
48
+ * Spanish (Translated by Juan Cuquejo)
49
+ * Swedish (Translated by Carl-Gunnar)
50
+
51
+ == Installation ==
52
+
53
+ 1. Download the plugin.
54
+ 2. Upload to your blog (/wp-content/plugins/).
55
+ 3. Activate it.
56
+ 4. Click the 'Captcha' menu.
57
+ 6. Fill in the options.
58
+
59
+ Important Note: It is mandatory to save options in this plugin.
60
+
61
+ You're done!
62
+
63
+ Uninstalling is as simple as deactivating the plugin.
64
+
65
+ == Screenshots ==
66
+
67
+ 1. screenshot-1.png
68
+ 2. screenshot-2.png
69
+ 3. screenshot-3.png
70
+ 4. screenshot-4.png
71
+
72
+ == Change Log ==
73
+
74
+ = Version 2.6 =
75
+ * Settings menu moved uner 'Settings'
76
+
77
+ = Version 2.5.5 =
78
+ * Tested compatibility with Wordpress version 4.4.2
79
+
80
+ = Version 2.5.3 =
81
+ * Tested compatibility with Wordpress version 4.1.1
82
+
83
+ = Version 2.5.2 =
84
+ * Catalan translation added. (Translated by SiVolsThoEnsenyo)
85
+
86
+ = Version 2.5.1 =
87
+ * Admin options form updated with Wordpress forms standards.
88
+
89
+ = Version 2.5 =
90
+ * Support URL updated.
91
+
92
+ = Version 2.4 =
93
+ * Persian translation added (Translated by Saeed)
94
+ * Suggestion by Leonardo Losoviz amended to check isset session.
95
+
96
+ = Version 2.3 =
97
+ * Finnish translation added (Translated by Joni Tyvio)
98
+
99
+ = Version 2.2 =
100
+ * Swedish translation added (Translated by Carl-Gunnar)
101
+
102
+ = Version 2.1 =
103
+ * Chinese translation added (Translated by Leonardo Losoviz)
104
+
105
+ = Version 2.0 =
106
+ * Notices debugged and cleared in this version.
107
+
108
+ = Version 1.9 =
109
+ * Polish translation added (Translated by Hoek)
110
+ * Slovak translation added (Translated by Tomas Bujna)
111
+
112
+ = Version 1.8 =
113
+ * Tab index included in login page. (Suggested by Simon)
114
+
115
+ = Version 1.7 =
116
+ * Russian translation improved. (Translated by Andris Vonda)
117
+
118
+ = Version 1.6 =
119
+ * Dutch translation improved. (Translated by Duncan Bruns)
120
+ * Spanish translation improved. (Translated by Juan Cuquejo)
121
+
122
+ = Version 1.5 =
123
+ * Portugese - Brazilian translation updated. (Translated by Rafael Santos)
124
+
125
+ = Version 1.4 =
126
+ * Option enabled to restrict the number of character in the captcha code from 3 to 6.
127
+
128
+ = Version 1.3 =
129
+ * German, French and Czech translation improved and re-updated.
130
+
131
+ = Version 1.2 =
132
+ * Translation enabled.
133
+
134
+ = Version 1.1 =
135
+ * New feature added to select the captcha letter type.
136
+ * New feature added to select the captcha type.
screenshot-1.png ADDED
Binary file
screenshot-2.png ADDED
Binary file
screenshot-3.png ADDED
Binary file
screenshot-4.png ADDED
Binary file
wpCaptcha.php ADDED
@@ -0,0 +1,292 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: Captcha Code
4
+ Plugin URI: http://www.vinojcardoza.com/blog/captcha-code-authentication/
5
+ Description: Adds Captcha Code anti-spam methods to User front-end WordPress forms.
6
+ Version: 2.6.1
7
+ Author: Vinoj Cardoza
8
+ Author URI: http://www.vinojcardoza.com
9
+ License: GPL2
10
+ */
11
+
12
+ define('WP_CAPTCHA_DIR_URL', plugin_dir_url(__FILE__));
13
+ define('WP_CAPTCHA_DIR', dirname(__FILE__));
14
+
15
+ require 'general_options.php';
16
+
17
+ /* Hook to initalize the admin menu */
18
+ add_action('admin_menu', 'wp_captcha_admin_menu');
19
+ /* Hook to initialize sessions */
20
+ add_action('init', 'wp_captcha_init_sessions');
21
+
22
+ /* Hook to store the plugin status */
23
+ register_activation_hook(__FILE__, 'wp_captcha_enabled');
24
+ register_deactivation_hook(__FILE__, 'wp_captcha_disabled');
25
+
26
+ function wp_captcha_enabled(){
27
+ update_option('wpcaptcha_status', 'enabled');
28
+ }
29
+ function wp_captcha_disabled(){
30
+ update_option('wpcaptcha_status', 'disabled');
31
+ }
32
+
33
+ /* To add the menus in the admin section */
34
+ function wp_captcha_admin_menu(){
35
+ add_options_page(
36
+ __('Captcha settings'),
37
+ __('Captcha settings'),
38
+ 'manage_options',
39
+ 'wp_captcha_slug',
40
+ 'wp_captcha_general_options');
41
+ }
42
+
43
+ function wp_captcha_init_sessions(){
44
+ if(!session_id()){
45
+ session_start();
46
+ }
47
+ load_plugin_textdomain('wpcaptchadomain', false, dirname( plugin_basename(__FILE__)).'/languages');
48
+ $_SESSION['captcha_type'] = get_option('wpcaptcha_type');
49
+ $_SESSION['captcha_letters'] = get_option('wpcaptcha_letters');
50
+ $_SESSION['total_no_of_characters'] = get_option('wpcaptcha_total_no_of_characters');
51
+ if(empty($_SESSION['total_no_of_characters'])){
52
+ $_SESSION['total_no_of_characters'] = 6;
53
+ }
54
+ }
55
+
56
+ /* Captcha for login authentication starts here */
57
+
58
+ $login_captcha = get_option('wpcaptcha_login');
59
+ if($login_captcha == 'yes'){
60
+ add_action('login_form', 'include_wp_captcha_login');
61
+ add_filter( 'login_errors', 'include_captcha_login_errors' );
62
+ add_filter( 'login_redirect', 'include_captcha_login_redirect', 10, 3 );
63
+ }
64
+
65
+ /* Function to include captcha for login form */
66
+ function include_wp_captcha_login(){
67
+ echo '<p class="login-form-captcha">
68
+ <label for="captcha"><b>'. __('Captcha', 'wpcaptchadomain').' </b></label>
69
+ <span class="required">*</span>
70
+ <div style="clear:both;"></div>
71
+ <img src="'.WP_CAPTCHA_DIR_URL.'captcha_code_file.php?rand='.rand().'" />
72
+ <div style="clear:both;"></div>';
73
+
74
+ /* Will retrieve the get varibale and prints a message from url if the captcha is wrong */
75
+ if(isset($_GET['captcha']) && $_GET['captcha'] == 'confirm_error' ) {
76
+ echo '<label style="color:#FF0000;" id="capt_err" for="captcha_code_error">'.$_SESSION['captcha_error'].'</label><div style="clear:both;"></div>';;
77
+ $_SESSION['captcha_error'] = '';
78
+ }
79
+
80
+ echo '<label for="captcha_code">'.__('Type the text displayed above', 'wpcaptchadomain').':</label>
81
+ <input id="captcha_code" name="captcha_code" size="15" type="text" tabindex="30" />
82
+ </p>';
83
+ return true;
84
+ }
85
+
86
+ /* Hook to find out the errors while logging in */
87
+ function include_captcha_login_errors($errors){
88
+ if( isset( $_REQUEST['action'] ) && 'register' == $_REQUEST['action'] )
89
+ return($errors);
90
+
91
+ if($_SESSION['captcha_code'] != $_REQUEST['captcha_code']){
92
+ return $errors.'<label id="capt_err" for="captcha_code_error">'.__('Captcha confirmation error!', 'wpcaptchadomain').'</label>';
93
+ }
94
+ return $errors;
95
+ }
96
+
97
+ /* Hook to redirect after captcha confirmation */
98
+ function include_captcha_login_redirect($url){
99
+
100
+ /* Captcha mismatch */
101
+ if(isset($_SESSION['captcha_code']) && isset($_REQUEST['captcha_code']) && $_SESSION['captcha_code'] != $_REQUEST['captcha_code']){
102
+ $_SESSION['captcha_error'] = __('Incorrect captcha confirmation!', 'wpcaptchadomain');
103
+ wp_clear_auth_cookie();
104
+ return $_SERVER["REQUEST_URI"]."/?captcha='confirm_error'";
105
+ }
106
+ /* Captcha match: take to the admin panel */
107
+ else{
108
+ return home_url('/wp-admin/');
109
+ }
110
+ }
111
+
112
+ /* <!-- Captcha for login authentication ends here --> */
113
+
114
+ /* Captcha for Comments ends here */
115
+ $comment_captcha = get_option('wpcaptcha_comments');
116
+ if($comment_captcha == 'yes'){
117
+ global $wp_version;
118
+ if( version_compare($wp_version,'3','>=') ) { // wp 3.0 +
119
+ add_action( 'comment_form_after_fields', 'include_wp_captcha_comment_form_wp3', 1 );
120
+ add_action( 'comment_form_logged_in_after', 'include_wp_captcha_comment_form_wp3', 1 );
121
+ }
122
+ // for WP before WP 3.0
123
+ add_action( 'comment_form', 'include_captcha_comment_form' );
124
+ add_filter( 'preprocess_comment', 'include_captcha_comment_post' );
125
+ }
126
+
127
+ /* Function to include captcha for comments form */
128
+ function include_captcha_comment_form(){
129
+ $c_registered = get_option('wpcaptcha_registered');
130
+ if ( is_user_logged_in() && $c_registered == 'yes') {
131
+ return true;
132
+ }
133
+ echo '<p class="comment-form-captcha">
134
+ <label for="captcha"><b>'. __('Captcha', 'wpcaptchadomain').' </b></label>
135
+ <span class="required">*</span>
136
+ <div style="clear:both;"></div>
137
+ <img src="'.WP_CAPTCHA_DIR_URL.'captcha_code_file.php?rand='.rand().'" />
138
+ <div style="clear:both;"></div>
139
+ <label for="captcha_code">'.__('Type the text displayed above', 'wpcaptchadomain').':</label>
140
+ <input id="captcha_code" name="captcha_code" size="15" type="text" />
141
+ <div style="clear:both;"></div>
142
+ </p>';
143
+ return true;
144
+ }
145
+
146
+ /* Function to include captcha for comments form > wp3 */
147
+ function include_wp_captcha_comment_form_wp3(){
148
+ $c_registered = get_option('wpcaptcha_registered');
149
+ if ( is_user_logged_in() && $c_registered == 'yes') {
150
+ return true;
151
+ }
152
+
153
+ echo '<p class="comment-form-captcha">
154
+ <label for="captcha"><b>'. __('Captcha', 'wpcaptchadomain').' </b></label>
155
+ <span class="required">*</span>
156
+ <div style="clear:both;"></div>
157
+ <img src="'.WP_CAPTCHA_DIR_URL.'captcha_code_file.php?rand='.rand().'" />
158
+ <div style="clear:both;"></div>
159
+ <label for="captcha_code">'.__('Type the text displayed above', 'wpcaptchadomain').':</label>
160
+ <input id="captcha_code" name="captcha_code" size="15" type="text" />
161
+ <div style="clear:both;"></div>
162
+ </p>';
163
+
164
+ remove_action( 'comment_form', 'include_captcha_comment_form' );
165
+
166
+ return true;
167
+ }
168
+
169
+ // this function checks captcha posted with the comment
170
+ function include_captcha_comment_post($comment) {
171
+ $c_registered = get_option('wpcaptcha_registered');
172
+ if (is_user_logged_in() && $c_registered == 'yes') {
173
+ return $comment;
174
+ }
175
+
176
+ // skip captcha for comment replies from the admin menu
177
+ if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'replyto-comment' &&
178
+ ( check_ajax_referer( 'replyto-comment', '_ajax_nonce', false ) || check_ajax_referer( 'replyto-comment', '_ajax_nonce-replyto-comment', false ) ) ) {
179
+ // skip capthca
180
+ return $comment;
181
+ }
182
+
183
+ // Skip captcha for trackback or pingback
184
+ if ( $comment['comment_type'] != '' && $comment['comment_type'] != 'comment' ) {
185
+ // skip captcha
186
+ return $comment;
187
+ }
188
+
189
+ // If captcha is empty
190
+ if(empty($_REQUEST['captcha_code']))
191
+ wp_die( __('CAPTCHA cannot be empty.', 'wpcaptchadomain' ) );
192
+
193
+ // captcha was matched
194
+ if($_SESSION['captcha_code'] == $_REQUEST['captcha_code']) return($comment);
195
+ else wp_die( __('Error: Incorrect CAPTCHA. Press your browser\'s back button and try again.', 'wpcaptchadomain'));
196
+ }
197
+
198
+ /* <!-- Captcha for Comments authentication ends here --> */
199
+
200
+ // Add captcha in the register form
201
+ $register_captcha = get_option('wpcaptcha_register');
202
+ if($register_captcha == 'yes'){
203
+ add_action('register_form', 'include_wp_captcha_register');
204
+ add_action( 'register_post', 'include_captcha_register_post', 10, 3 );
205
+ add_action( 'signup_extra_fields', 'include_wp_captcha_register' );
206
+ add_filter( 'wpmu_validate_user_signup', 'include_captcha_register_validate' );
207
+ }
208
+
209
+ /* Function to include captcha for register form */
210
+ function include_wp_captcha_register($default){
211
+ echo '<p class="register-form-captcha">
212
+ <label for="captcha"><b>'. __('Captcha', 'wpcaptchadomain').' </b></label>
213
+ <span class="required">*</span>
214
+ <div style="clear:both;"></div>
215
+ <img src="'.WP_CAPTCHA_DIR_URL.'captcha_code_file.php?rand='.rand().'" />
216
+ <div style="clear:both;"></div>
217
+ <label for="captcha_code">'.__('Type the text displayed above', 'wpcaptchadomain').':</label>
218
+ <input id="captcha_code" name="captcha_code" size="15" type="text" />
219
+ </p>';
220
+ return true;
221
+ }
222
+
223
+ /* This function checks captcha posted with registration */
224
+ function include_captcha_register_post($login,$email,$errors) {
225
+
226
+ // If captcha is blank - add error
227
+ if ( isset( $_REQUEST['captcha_code'] ) && "" == $_REQUEST['captcha_code'] ) {
228
+ $errors->add('captcha_blank', '<strong>'.__('ERROR', 'wpcaptchadomain').'</strong>: '.__('Please complete the CAPTCHA.', 'wpcaptchadomain'));
229
+ return $errors;
230
+ }
231
+
232
+ if ( isset( $_REQUEST['captcha_code'] ) && ($_SESSION['captcha_code'] == $_REQUEST['captcha_code'] )) {
233
+ // captcha was matched
234
+ } else {
235
+ $errors->add('captcha_wrong', '<strong>'.__('ERROR', 'wpcaptchadomain').'</strong>: '.__('That CAPTCHA was incorrect.', 'wpcaptchadomain'));
236
+ }
237
+ return($errors);
238
+ }
239
+ /* End of the function include_captcha_register_post */
240
+
241
+ function include_captcha_register_validate($results) {
242
+ if ( isset( $_REQUEST['captcha_code'] ) && "" == $_REQUEST['captcha_code'] ) {
243
+ $results['errors']->add('captcha_blank', '<strong>'.__('ERROR', 'wpcaptchadomain').'</strong>: '.__('Please complete the CAPTCHA.', 'wpcaptchadomain'));
244
+ return $results;
245
+ }
246
+
247
+ if ( isset( $_REQUEST['captcha_code'] ) && ($_SESSION['captcha_code'] == $_REQUEST['captcha_code'] )) {
248
+ // captcha was matched
249
+ } else {
250
+ $results['errors']->add('captcha_wrong', '<strong>'.__('ERROR', 'wpcaptchadomain').'</strong>: '.__('That CAPTCHA was incorrect.', 'wpcaptchadomain'));
251
+ }
252
+ return($results);
253
+ }
254
+ /* End of the function include_captcha_register_validate */
255
+
256
+ $lost_captcha = get_option('wpcaptcha_lost');
257
+ // Add captcha into lost password form
258
+ if($lost_captcha == 'yes'){
259
+ add_action( 'lostpassword_form', 'include_wp_captcha_lostpassword' );
260
+ add_action( 'lostpassword_post', 'include_wp_captcha_lostpassword_post', 10, 3 );
261
+ }
262
+
263
+ /* Function to include captcha for lost password form */
264
+ function include_wp_captcha_lostpassword($default){
265
+ echo '<p class="lost-form-captcha">
266
+ <label for="captcha"><b>'. __('Captcha', 'wpcaptchadomain').' </b></label>
267
+ <span class="required">*</span>
268
+ <div style="clear:both;"></div>
269
+ <img src="'.WP_CAPTCHA_DIR_URL.'captcha_code_file.php?rand='.rand().'" />
270
+ <div style="clear:both;"></div>
271
+ <label for="captcha_code">'.__('Type the text displayed above', 'wpcaptchadomain').':</label>
272
+ <input id="captcha_code" name="captcha_code" size="15" type="text" />
273
+ </p>';
274
+ }
275
+
276
+ function include_wp_captcha_lostpassword_post() {
277
+ if( isset( $_REQUEST['user_login'] ) && "" == $_REQUEST['user_login'] )
278
+ return;
279
+
280
+ // If captcha doesn't entered
281
+ if ( isset( $_REQUEST['captcha_code'] ) && "" == $_REQUEST['captcha_code'] ) {
282
+ wp_die( __( 'Please complete the CAPTCHA.', 'wpcaptchadomain' ) );
283
+ }
284
+
285
+ // Check entered captcha
286
+ if ( isset( $_REQUEST['captcha_code'] ) && ($_SESSION['captcha_code'] == $_REQUEST['captcha_code'] )) {
287
+ return;
288
+ } else {
289
+ wp_die( __( 'Error: Incorrect CAPTCHA. Press your browser\'s back button and try again.', 'wpcaptchadomain' ) );
290
+ }
291
+ }
292
+ ?>