Version Description
[03/08/2022] = * Fixed iPhone bug where icon would not show focus state when touched * Removed some unused styling to help reduce the stylesheet file size
Download this release
Release Info
Developer | KTC_88 |
Plugin | Contact Form 7 Image Captcha |
Version | 3.2.5 |
Comparing to | |
See all releases |
Code changes from version 3.2.6 to 3.2.5
- cf7-image-captcha.php +19 -8
- lang/contact-form-7-image-captcha-bg_BG.mo +0 -0
- lang/contact-form-7-image-captcha-bg_BG.po +87 -0
- lang/contact-form-7-image-captcha-de_DE.mo +0 -0
- lang/contact-form-7-image-captcha-de_DE.po +79 -0
- lang/contact-form-7-image-captcha-es_ES.mo +0 -0
- lang/contact-form-7-image-captcha-es_ES.po +58 -0
- lang/contact-form-7-image-captcha-es_MX.mo +0 -0
- lang/contact-form-7-image-captcha-es_MX.po +79 -0
- lang/contact-form-7-image-captcha-fa_IR.mo +0 -0
- lang/contact-form-7-image-captcha-fa_IR.po +79 -0
- lang/contact-form-7-image-captcha-fr_FR.mo +0 -0
- lang/contact-form-7-image-captcha-fr_FR.po +79 -0
- lang/contact-form-7-image-captcha-hr.mo +0 -0
- lang/contact-form-7-image-captcha-hr.po +100 -0
- lang/contact-form-7-image-captcha-it_IT.mo +0 -0
- lang/contact-form-7-image-captcha-it_IT.po +98 -0
- lang/contact-form-7-image-captcha-nl_NL.mo +0 -0
- lang/contact-form-7-image-captcha-nl_NL.po +98 -0
- lang/contact-form-7-image-captcha-pt_PT.mo +0 -0
- lang/contact-form-7-image-captcha-pt_PT.po +99 -0
- lang/contact-form-7-image-captcha-ru_RU.mo +0 -0
- lang/contact-form-7-image-captcha-ru_RU.po +98 -0
- readme.txt +1 -5
cf7-image-captcha.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Contact Form 7 Image Captcha
|
4 |
* Plugin URI: https://wordpress.org/plugins/contact-form-7-image-captcha/
|
5 |
* Description: Add a simple image captcha and Honeypot to contact form 7
|
6 |
-
* Version: 3.2.
|
7 |
* Author: KC Computing
|
8 |
* Author URI: https://profiles.wordpress.org/ktc_88
|
9 |
* License: GNU General Public License v2
|
@@ -11,7 +11,12 @@
|
|
11 |
* Text Domain: contact-form-7-image-captcha
|
12 |
*/
|
13 |
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
|
17 |
/**
|
@@ -28,6 +33,15 @@ function cf7ic_plugin_action_links( $links ) {
|
|
28 |
}
|
29 |
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
/**
|
32 |
* Register/Enqueue CSS on initialization
|
33 |
*/
|
@@ -105,7 +119,7 @@ function call_cf7ic( $tag ) {
|
|
105 |
<input type="text" name="kc_honeypot">
|
106 |
</span>';
|
107 |
|
108 |
-
return '<span class="wpcf7-form-control-wrap kc_captcha"
|
109 |
}
|
110 |
|
111 |
|
@@ -126,13 +140,11 @@ function cf7ic_check_if_spam( $result, $tag ) {
|
|
126 |
|
127 |
if(!empty($kc_val1) && $kc_val1 != 'kc_human' ) {
|
128 |
$tag->name = "kc_captcha";
|
129 |
-
$
|
130 |
-
$result->invalidate( $tag, $error );
|
131 |
}
|
132 |
if(empty($kc_val1) ) {
|
133 |
$tag->name = "kc_captcha";
|
134 |
-
$
|
135 |
-
$result->invalidate( $tag, $error );
|
136 |
}
|
137 |
if(!empty($kc_val2) ) {
|
138 |
$tag->name = "kc_captcha";
|
@@ -144,7 +156,6 @@ function cf7ic_check_if_spam( $result, $tag ) {
|
|
144 |
add_filter('wpcf7_validate','cf7ic_check_if_spam', 99, 2); // If "Contact Form 7 – Conditional Fields" plugin is installed and active
|
145 |
|
146 |
|
147 |
-
|
148 |
// Add Contact Form Tag Generator Button
|
149 |
add_action( 'wpcf7_admin_init', 'cf7ic_add_tag_generator', 55 );
|
150 |
|
3 |
* Plugin Name: Contact Form 7 Image Captcha
|
4 |
* Plugin URI: https://wordpress.org/plugins/contact-form-7-image-captcha/
|
5 |
* Description: Add a simple image captcha and Honeypot to contact form 7
|
6 |
+
* Version: 3.2.5
|
7 |
* Author: KC Computing
|
8 |
* Author URI: https://profiles.wordpress.org/ktc_88
|
9 |
* License: GNU General Public License v2
|
11 |
* Text Domain: contact-form-7-image-captcha
|
12 |
*/
|
13 |
|
14 |
+
/*
|
15 |
+
* RESOURCE HELP
|
16 |
+
* https://stackoverflow.com/questions/17541614/use-thumbnail-image-instead-of-radio-button
|
17 |
+
* https://jsbin.com/pafifi/1/edit?html,css,output
|
18 |
+
* https://jsbin.com/nenarugiwe/1/edit?html,css,output
|
19 |
+
*/
|
20 |
|
21 |
|
22 |
/**
|
33 |
}
|
34 |
|
35 |
|
36 |
+
/**
|
37 |
+
* Load Textdomains
|
38 |
+
*/
|
39 |
+
add_action('plugins_loaded', 'cf7ic_load_textdomain');
|
40 |
+
function cf7ic_load_textdomain() {
|
41 |
+
load_plugin_textdomain( 'contact-form-7-image-captcha', false, dirname( plugin_basename(__FILE__) ) . '/lang' );
|
42 |
+
}
|
43 |
+
|
44 |
+
|
45 |
/**
|
46 |
* Register/Enqueue CSS on initialization
|
47 |
*/
|
119 |
<input type="text" name="kc_honeypot">
|
120 |
</span>';
|
121 |
|
122 |
+
return '<span class="wpcf7-form-control-wrap kc_captcha"><span class="wpcf7-form-control wpcf7-radio">'.$output.'</span></span>';
|
123 |
}
|
124 |
|
125 |
|
140 |
|
141 |
if(!empty($kc_val1) && $kc_val1 != 'kc_human' ) {
|
142 |
$tag->name = "kc_captcha";
|
143 |
+
$result->invalidate( $tag, __('Please select the correct icon.', 'contact-form-7-image-captcha') );
|
|
|
144 |
}
|
145 |
if(empty($kc_val1) ) {
|
146 |
$tag->name = "kc_captcha";
|
147 |
+
$result->invalidate( $tag, __('Please select an icon.', 'contact-form-7-image-captcha') );
|
|
|
148 |
}
|
149 |
if(!empty($kc_val2) ) {
|
150 |
$tag->name = "kc_captcha";
|
156 |
add_filter('wpcf7_validate','cf7ic_check_if_spam', 99, 2); // If "Contact Form 7 – Conditional Fields" plugin is installed and active
|
157 |
|
158 |
|
|
|
159 |
// Add Contact Form Tag Generator Button
|
160 |
add_action( 'wpcf7_admin_init', 'cf7ic_add_tag_generator', 55 );
|
161 |
|
lang/contact-form-7-image-captcha-bg_BG.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-bg_BG.po
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form 7 Image Captcha 1.1\n"
|
4 |
+
"POT-Creation-Date: 2018-01-09 13:23-0800\n"
|
5 |
+
"PO-Revision-Date: 2018-01-09 13:23-0800\n"
|
6 |
+
"Last-Translator: Phoenix.bg <phoenix.bg@gmail.com>\n"
|
7 |
+
"Language-Team: Kyle Charlton <kyle@kccomputing.net>\n"
|
8 |
+
"Language: bg\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 2.0.5\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: cf7-image-captcha.php:28
|
19 |
+
msgid "Go Pro"
|
20 |
+
msgstr "Купете премия версия"
|
21 |
+
|
22 |
+
#: cf7-image-captcha.php:68
|
23 |
+
msgid "Heart"
|
24 |
+
msgstr "Сърце"
|
25 |
+
|
26 |
+
#: cf7-image-captcha.php:69
|
27 |
+
msgid "House"
|
28 |
+
msgstr "Къща"
|
29 |
+
|
30 |
+
#: cf7-image-captcha.php:70
|
31 |
+
msgid "Star"
|
32 |
+
msgstr "Звезда"
|
33 |
+
|
34 |
+
#: cf7-image-captcha.php:71
|
35 |
+
msgid "Car"
|
36 |
+
msgstr "Кола"
|
37 |
+
|
38 |
+
#: cf7-image-captcha.php:72
|
39 |
+
msgid "Cup"
|
40 |
+
msgstr "Чаша"
|
41 |
+
|
42 |
+
#: cf7-image-captcha.php:73
|
43 |
+
msgid "Flag"
|
44 |
+
msgstr "Знаме"
|
45 |
+
|
46 |
+
#: cf7-image-captcha.php:74
|
47 |
+
msgid "Key"
|
48 |
+
msgstr "Ключ"
|
49 |
+
|
50 |
+
#: cf7-image-captcha.php:75
|
51 |
+
msgid "Truck"
|
52 |
+
msgstr "Камион"
|
53 |
+
|
54 |
+
#: cf7-image-captcha.php:76
|
55 |
+
msgid "Tree"
|
56 |
+
msgstr "Дърво"
|
57 |
+
|
58 |
+
#: cf7-image-captcha.php:77
|
59 |
+
msgid "Plane"
|
60 |
+
msgstr "Самолет"
|
61 |
+
|
62 |
+
#: cf7-image-captcha.php:91
|
63 |
+
msgid "Please prove you are human by selecting the "
|
64 |
+
msgstr "Моля кликнете с мишката върху "
|
65 |
+
|
66 |
+
#: cf7-image-captcha.php:93
|
67 |
+
msgid "."
|
68 |
+
msgstr "."
|
69 |
+
|
70 |
+
#: cf7-image-captcha.php:121
|
71 |
+
msgid "Please select the correct icon."
|
72 |
+
msgstr "Моля изберете правилния иконата."
|
73 |
+
|
74 |
+
#: cf7-image-captcha.php:125
|
75 |
+
msgid "Please select an icon."
|
76 |
+
msgstr "Моля изберете икона."
|
77 |
+
|
78 |
+
#: cf7-image-captcha.php:140
|
79 |
+
msgid "Image Captcha"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: cf7-image-captcha.php:154
|
83 |
+
msgid "Insert Tag"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#~ msgid "Please prove you are human by selecting the"
|
87 |
+
#~ msgstr "Моля кликнете с мишката върху "
|
lang/contact-form-7-image-captcha-de_DE.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-de_DE.po
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form 7 Image Captcha 1.1\n"
|
4 |
+
"POT-Creation-Date: 2016-10-08 12:52-0700\n"
|
5 |
+
"PO-Revision-Date: 2020-04-22 16:23-0700\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: Kyle Charlton <kyle@kccomputing.net>\n"
|
8 |
+
"Language: de\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 2.3\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: cf7-image-captcha.php:28
|
19 |
+
msgid "Go Pro"
|
20 |
+
msgstr "Go Pro"
|
21 |
+
|
22 |
+
#: cf7-image-captcha.php:68
|
23 |
+
msgid "Heart"
|
24 |
+
msgstr "das Herz"
|
25 |
+
|
26 |
+
#: cf7-image-captcha.php:69
|
27 |
+
msgid "House"
|
28 |
+
msgstr "das Haus"
|
29 |
+
|
30 |
+
#: cf7-image-captcha.php:70
|
31 |
+
msgid "Star"
|
32 |
+
msgstr "den Stern"
|
33 |
+
|
34 |
+
#: cf7-image-captcha.php:71
|
35 |
+
msgid "Car"
|
36 |
+
msgstr "das Auto"
|
37 |
+
|
38 |
+
#: cf7-image-captcha.php:72
|
39 |
+
msgid "Cup"
|
40 |
+
msgstr "die Tasse"
|
41 |
+
|
42 |
+
#: cf7-image-captcha.php:73
|
43 |
+
msgid "Flag"
|
44 |
+
msgstr "die Flagge"
|
45 |
+
|
46 |
+
#: cf7-image-captcha.php:74
|
47 |
+
msgid "Key"
|
48 |
+
msgstr "den Schlüssel"
|
49 |
+
|
50 |
+
#: cf7-image-captcha.php:75
|
51 |
+
msgid "Truck"
|
52 |
+
msgstr "den LKW"
|
53 |
+
|
54 |
+
#: cf7-image-captcha.php:76
|
55 |
+
msgid "Tree"
|
56 |
+
msgstr "den Baum"
|
57 |
+
|
58 |
+
#: cf7-image-captcha.php:77
|
59 |
+
msgid "Plane"
|
60 |
+
msgstr "das Flugzeug"
|
61 |
+
|
62 |
+
#: cf7-image-captcha.php:91
|
63 |
+
msgid "Please prove you are human by selecting the "
|
64 |
+
msgstr "Bitte beweisen Sie, dass Sie ein Mensch sind und wählen Sie"
|
65 |
+
|
66 |
+
#: cf7-image-captcha.php:93
|
67 |
+
msgid "."
|
68 |
+
msgstr " aus."
|
69 |
+
|
70 |
+
#: cf7-image-captcha.php:121
|
71 |
+
msgid "Please select the correct icon."
|
72 |
+
msgstr "Bitte wählen Sie das richtige Symbol."
|
73 |
+
|
74 |
+
#: cf7-image-captcha.php:125
|
75 |
+
msgid "Please select an icon."
|
76 |
+
msgstr "Bitte wählen Sie ein Symbol."
|
77 |
+
|
78 |
+
#~ msgid "Please prove you are human by selecting the"
|
79 |
+
#~ msgstr "Bitte beweisen Sie ein Mensch zu sein und wählen Sie"
|
lang/contact-form-7-image-captcha-es_ES.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-es_ES.po
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-08-03 07:55-0700\n"
|
5 |
+
"PO-Revision-Date: 2020-02-11 12:48-0800\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: fr\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 2.2.1\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
15 |
+
|
16 |
+
#: cf7-image-captcha.php:65
|
17 |
+
msgid "Heart"
|
18 |
+
msgstr " el corazón"
|
19 |
+
|
20 |
+
#: cf7-image-captcha.php:66
|
21 |
+
msgid "House"
|
22 |
+
msgstr " la casa"
|
23 |
+
|
24 |
+
#: cf7-image-captcha.php:67
|
25 |
+
msgid "Star"
|
26 |
+
msgstr " la estrella"
|
27 |
+
|
28 |
+
#: cf7-image-captcha.php:68
|
29 |
+
msgid "Car"
|
30 |
+
msgstr " el coche"
|
31 |
+
|
32 |
+
#: cf7-image-captcha.php:69
|
33 |
+
msgid "Cup"
|
34 |
+
msgstr " la copa"
|
35 |
+
|
36 |
+
#: cf7-image-captcha.php:70
|
37 |
+
msgid "Flag"
|
38 |
+
msgstr " la bandera"
|
39 |
+
|
40 |
+
#: cf7-image-captcha.php:71
|
41 |
+
msgid "Key"
|
42 |
+
msgstr " la tecla"
|
43 |
+
|
44 |
+
#: cf7-image-captcha.php:72
|
45 |
+
msgid "Truck"
|
46 |
+
msgstr " el camión"
|
47 |
+
|
48 |
+
#: cf7-image-captcha.php:73
|
49 |
+
msgid "Tree"
|
50 |
+
msgstr " el árbol"
|
51 |
+
|
52 |
+
#: cf7-image-captcha.php:74
|
53 |
+
msgid "Plane"
|
54 |
+
msgstr " el avión"
|
55 |
+
|
56 |
+
#: cf7-image-captcha.php:89
|
57 |
+
msgid "Please prove you are human by selecting the"
|
58 |
+
msgstr "Por favor demuestra que eres humano, selecciona "
|
lang/contact-form-7-image-captcha-es_MX.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-es_MX.po
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2016-10-08 12:57-0700\n"
|
5 |
+
"PO-Revision-Date: 2016-10-08 12:58-0700\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: fr\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.8.9\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
15 |
+
"X-Poedit-KeywordsList: __\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: cf7-image-captcha.php:28
|
19 |
+
msgid "Go Pro"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: cf7-image-captcha.php:68
|
23 |
+
msgid "Heart"
|
24 |
+
msgstr "el corazón"
|
25 |
+
|
26 |
+
#: cf7-image-captcha.php:69
|
27 |
+
msgid "House"
|
28 |
+
msgstr "de la casa"
|
29 |
+
|
30 |
+
#: cf7-image-captcha.php:70
|
31 |
+
msgid "Star"
|
32 |
+
msgstr "de la estrella"
|
33 |
+
|
34 |
+
#: cf7-image-captcha.php:71
|
35 |
+
msgid "Car"
|
36 |
+
msgstr "de los coches"
|
37 |
+
|
38 |
+
#: cf7-image-captcha.php:72
|
39 |
+
msgid "Cup"
|
40 |
+
msgstr "de la copa"
|
41 |
+
|
42 |
+
#: cf7-image-captcha.php:73
|
43 |
+
msgid "Flag"
|
44 |
+
msgstr "de la bandera"
|
45 |
+
|
46 |
+
#: cf7-image-captcha.php:74
|
47 |
+
msgid "Key"
|
48 |
+
msgstr "de la tecla"
|
49 |
+
|
50 |
+
#: cf7-image-captcha.php:75
|
51 |
+
msgid "Truck"
|
52 |
+
msgstr "de la camioneta"
|
53 |
+
|
54 |
+
#: cf7-image-captcha.php:76
|
55 |
+
msgid "Tree"
|
56 |
+
msgstr "del árbol"
|
57 |
+
|
58 |
+
#: cf7-image-captcha.php:77
|
59 |
+
msgid "Plane"
|
60 |
+
msgstr "del avión"
|
61 |
+
|
62 |
+
#: cf7-image-captcha.php:91
|
63 |
+
msgid "Please prove you are human by selecting the "
|
64 |
+
msgstr "Por favor, demuestra que eres humano mediante la selección"
|
65 |
+
|
66 |
+
#: cf7-image-captcha.php:93
|
67 |
+
msgid "."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: cf7-image-captcha.php:121
|
71 |
+
msgid "Please select the correct icon."
|
72 |
+
msgstr "Por favor, seleccione el icono correcto."
|
73 |
+
|
74 |
+
#: cf7-image-captcha.php:125
|
75 |
+
msgid "Please select an icon."
|
76 |
+
msgstr "Por favor, seleccione un icono."
|
77 |
+
|
78 |
+
#~ msgid "Please prove you are human by selecting the"
|
79 |
+
#~ msgstr "Por favor, demuestra que eres humano mediante la selección"
|
lang/contact-form-7-image-captcha-fa_IR.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-fa_IR.po
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form 7 Image Captcha 1.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-08 12:46-0700\n"
|
6 |
+
"PO-Revision-Date: 2016-11-11 14:20+0000\n"
|
7 |
+
"Last-Translator: Phoenix.bg <phoenix.bg@gmail.com>\n"
|
8 |
+
"Language-Team: Kyle Charlton\n"
|
9 |
+
"Language: bg\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Loco-Source-Locale: en_GB\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: ..\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
"X-Loco-Parser: loco_parse_po"
|
20 |
+
|
21 |
+
#: cf7-image-captcha.php:28
|
22 |
+
msgid "Go Pro"
|
23 |
+
msgstr "پیشرفته سازی"
|
24 |
+
|
25 |
+
#: cf7-image-captcha.php:68
|
26 |
+
msgid "Heart"
|
27 |
+
msgstr "قلب"
|
28 |
+
|
29 |
+
#: cf7-image-captcha.php:69
|
30 |
+
msgid "House"
|
31 |
+
msgstr "خانه"
|
32 |
+
|
33 |
+
#: cf7-image-captcha.php:70
|
34 |
+
msgid "Star"
|
35 |
+
msgstr "ستاره"
|
36 |
+
|
37 |
+
#: cf7-image-captcha.php:71
|
38 |
+
msgid "Car"
|
39 |
+
msgstr "ماشین"
|
40 |
+
|
41 |
+
#: cf7-image-captcha.php:72
|
42 |
+
msgid "Cup"
|
43 |
+
msgstr "فنجان"
|
44 |
+
|
45 |
+
#: cf7-image-captcha.php:73
|
46 |
+
msgid "Flag"
|
47 |
+
msgstr "پرچم"
|
48 |
+
|
49 |
+
#: cf7-image-captcha.php:74
|
50 |
+
msgid "Key"
|
51 |
+
msgstr "کلید"
|
52 |
+
|
53 |
+
#: cf7-image-captcha.php:75
|
54 |
+
msgid "Truck"
|
55 |
+
msgstr "کامیون"
|
56 |
+
|
57 |
+
#: cf7-image-captcha.php:76
|
58 |
+
msgid "Tree"
|
59 |
+
msgstr "درخت"
|
60 |
+
|
61 |
+
#: cf7-image-captcha.php:77
|
62 |
+
msgid "Plane"
|
63 |
+
msgstr "هواپیما"
|
64 |
+
|
65 |
+
#: cf7-image-captcha.php:91
|
66 |
+
msgid "Please prove you are human by selecting the "
|
67 |
+
msgstr "تایید کنید که ربات نیستید با انتخاب "
|
68 |
+
|
69 |
+
#: cf7-image-captcha.php:93
|
70 |
+
msgid "."
|
71 |
+
msgstr "."
|
72 |
+
|
73 |
+
#: cf7-image-captcha.php:121
|
74 |
+
msgid "Please select the correct icon."
|
75 |
+
msgstr "لطفا نماد درست را انتخاب کنید"
|
76 |
+
|
77 |
+
#: cf7-image-captcha.php:125
|
78 |
+
msgid "Please select an icon."
|
79 |
+
msgstr "یک نماد انتخاب کنید"
|
lang/contact-form-7-image-captcha-fr_FR.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-fr_FR.po
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2016-10-08 12:59-0700\n"
|
5 |
+
"PO-Revision-Date: 2016-10-08 13:01-0700\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: fr\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.8.9\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
15 |
+
"X-Poedit-KeywordsList: __\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: cf7-image-captcha.php:28
|
19 |
+
msgid "Go Pro"
|
20 |
+
msgstr "Acheter la version premium"
|
21 |
+
|
22 |
+
#: cf7-image-captcha.php:68
|
23 |
+
msgid "Heart"
|
24 |
+
msgstr "Le Coeur"
|
25 |
+
|
26 |
+
#: cf7-image-captcha.php:69
|
27 |
+
msgid "House"
|
28 |
+
msgstr "La Maison"
|
29 |
+
|
30 |
+
#: cf7-image-captcha.php:70
|
31 |
+
msgid "Star"
|
32 |
+
msgstr "L'Etoile"
|
33 |
+
|
34 |
+
#: cf7-image-captcha.php:71
|
35 |
+
msgid "Car"
|
36 |
+
msgstr "La Voiture"
|
37 |
+
|
38 |
+
#: cf7-image-captcha.php:72
|
39 |
+
msgid "Cup"
|
40 |
+
msgstr "La Tasse"
|
41 |
+
|
42 |
+
#: cf7-image-captcha.php:73
|
43 |
+
msgid "Flag"
|
44 |
+
msgstr "Le Drapeau"
|
45 |
+
|
46 |
+
#: cf7-image-captcha.php:74
|
47 |
+
msgid "Key"
|
48 |
+
msgstr "La Clé"
|
49 |
+
|
50 |
+
#: cf7-image-captcha.php:75
|
51 |
+
msgid "Truck"
|
52 |
+
msgstr "Le Camion"
|
53 |
+
|
54 |
+
#: cf7-image-captcha.php:76
|
55 |
+
msgid "Tree"
|
56 |
+
msgstr "L'Arbre"
|
57 |
+
|
58 |
+
#: cf7-image-captcha.php:77
|
59 |
+
msgid "Plane"
|
60 |
+
msgstr "L'Avion"
|
61 |
+
|
62 |
+
#: cf7-image-captcha.php:91
|
63 |
+
msgid "Please prove you are human by selecting the "
|
64 |
+
msgstr "Svp prouvez que vous êtes un humain en sélectionnant"
|
65 |
+
|
66 |
+
#: cf7-image-captcha.php:93
|
67 |
+
msgid "."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: cf7-image-captcha.php:121
|
71 |
+
msgid "Please select the correct icon."
|
72 |
+
msgstr "S'il vous plaît sélectionnez l'icône correcte."
|
73 |
+
|
74 |
+
#: cf7-image-captcha.php:125
|
75 |
+
msgid "Please select an icon."
|
76 |
+
msgstr "S'il vous plaît sélectionner une icône."
|
77 |
+
|
78 |
+
#~ msgid "Please prove you are human by selecting the"
|
79 |
+
#~ msgstr "Svp prouvez que vous êtes un humain en sélectionnant"
|
lang/contact-form-7-image-captcha-hr.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-hr.po
ADDED
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form 7 Image Captcha\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-10-12 07:33+0000\n"
|
6 |
+
"PO-Revision-Date: 2020-10-12 07:06-0700\n"
|
7 |
+
"Last-Translator: Ivan\n"
|
8 |
+
"Language-Team: Hrvatski\n"
|
9 |
+
"Language: hr\n"
|
10 |
+
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
11 |
+
"n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2;\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 2.4.1\n"
|
16 |
+
"X-Loco-Version: 2.4.3; wp-5.5.1\n"
|
17 |
+
|
18 |
+
#: cf7-image-captcha.php:109
|
19 |
+
msgid "."
|
20 |
+
msgstr "."
|
21 |
+
|
22 |
+
#. Description of the plugin
|
23 |
+
msgid "Add a simple image captcha and Honeypot to contact form 7"
|
24 |
+
msgstr "U obrazac za kontakt dodajte jednostavnu captcha slike i Honeypot"
|
25 |
+
|
26 |
+
#: cf7-image-captcha.php:80
|
27 |
+
msgid "Car"
|
28 |
+
msgstr "Auto"
|
29 |
+
|
30 |
+
#. Name of the plugin
|
31 |
+
msgid "Contact Form 7 Image Captcha"
|
32 |
+
msgstr "Contact Form 7 Image Captcha"
|
33 |
+
|
34 |
+
#: cf7-image-captcha.php:81
|
35 |
+
msgid "Cup"
|
36 |
+
msgstr "Šalica"
|
37 |
+
|
38 |
+
#: cf7-image-captcha.php:82
|
39 |
+
msgid "Flag"
|
40 |
+
msgstr "Zastava"
|
41 |
+
|
42 |
+
#: cf7-image-captcha.php:29
|
43 |
+
msgid "Go Pro"
|
44 |
+
msgstr "tKupi cijelu verziju"
|
45 |
+
|
46 |
+
#: cf7-image-captcha.php:77
|
47 |
+
msgid "Heart"
|
48 |
+
msgstr "Srce"
|
49 |
+
|
50 |
+
#: cf7-image-captcha.php:78
|
51 |
+
msgid "House"
|
52 |
+
msgstr "Kuća"
|
53 |
+
|
54 |
+
#. Author URI of the plugin
|
55 |
+
msgid "https://profiles.wordpress.org/ktc_88"
|
56 |
+
msgstr "https://profiles.wordpress.org/ktc_88"
|
57 |
+
|
58 |
+
#. URI of the plugin
|
59 |
+
msgid "https://wordpress.org/plugins/contact-form-7-image-captcha/"
|
60 |
+
msgstr "https://wordpress.org/plugins/contact-form-7-image-captcha/"
|
61 |
+
|
62 |
+
#: cf7-image-captcha.php:164
|
63 |
+
msgid "Image Captcha"
|
64 |
+
msgstr "Slika Captcha"
|
65 |
+
|
66 |
+
#. Author of the plugin
|
67 |
+
msgid "KC Computing"
|
68 |
+
msgstr "KC Computing"
|
69 |
+
|
70 |
+
#: cf7-image-captcha.php:83
|
71 |
+
msgid "Key"
|
72 |
+
msgstr "Ključ"
|
73 |
+
|
74 |
+
#: cf7-image-captcha.php:86
|
75 |
+
msgid "Plane"
|
76 |
+
msgstr "Avion"
|
77 |
+
|
78 |
+
#: cf7-image-captcha.php:107
|
79 |
+
msgid "Please prove you are human by selecting the "
|
80 |
+
msgstr "Molimo označite "
|
81 |
+
|
82 |
+
#: cf7-image-captcha.php:147
|
83 |
+
msgid "Please select an icon."
|
84 |
+
msgstr "Odaberite ikonu."
|
85 |
+
|
86 |
+
#: cf7-image-captcha.php:143
|
87 |
+
msgid "Please select the correct icon."
|
88 |
+
msgstr "Odaberite ispravnu ikonu."
|
89 |
+
|
90 |
+
#: cf7-image-captcha.php:79
|
91 |
+
msgid "Star"
|
92 |
+
msgstr "Zvijezda"
|
93 |
+
|
94 |
+
#: cf7-image-captcha.php:85
|
95 |
+
msgid "Tree"
|
96 |
+
msgstr "Drvo"
|
97 |
+
|
98 |
+
#: cf7-image-captcha.php:84
|
99 |
+
msgid "Truck"
|
100 |
+
msgstr "Kamion"
|
lang/contact-form-7-image-captcha-it_IT.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-it_IT.po
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form 7 Image Captcha\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-01-09 12:05+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-07-10 12:57-0700\n"
|
7 |
+
"Last-Translator: giulian <manuel.kama@gmail.com>\n"
|
8 |
+
"Language-Team: Italian\n"
|
9 |
+
"Language: it_IT\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 2.2.1\n"
|
15 |
+
|
16 |
+
#: cf7-image-captcha.php:28
|
17 |
+
msgid "Go Pro"
|
18 |
+
msgstr "Passa a PRO"
|
19 |
+
|
20 |
+
#: cf7-image-captcha.php:68
|
21 |
+
msgid "Heart"
|
22 |
+
msgstr "Cuore"
|
23 |
+
|
24 |
+
#: cf7-image-captcha.php:69
|
25 |
+
msgid "House"
|
26 |
+
msgstr "Casa"
|
27 |
+
|
28 |
+
#: cf7-image-captcha.php:70
|
29 |
+
msgid "Star"
|
30 |
+
msgstr "Stella"
|
31 |
+
|
32 |
+
#: cf7-image-captcha.php:71
|
33 |
+
msgid "Car"
|
34 |
+
msgstr "Automobile"
|
35 |
+
|
36 |
+
#: cf7-image-captcha.php:72
|
37 |
+
msgid "Cup"
|
38 |
+
msgstr "Tazza"
|
39 |
+
|
40 |
+
#: cf7-image-captcha.php:73
|
41 |
+
msgid "Flag"
|
42 |
+
msgstr "Bandiera"
|
43 |
+
|
44 |
+
#: cf7-image-captcha.php:74
|
45 |
+
msgid "Key"
|
46 |
+
msgstr "Chiave"
|
47 |
+
|
48 |
+
#: cf7-image-captcha.php:75
|
49 |
+
msgid "Truck"
|
50 |
+
msgstr "Camion"
|
51 |
+
|
52 |
+
#: cf7-image-captcha.php:76
|
53 |
+
msgid "Tree"
|
54 |
+
msgstr "Albero"
|
55 |
+
|
56 |
+
#: cf7-image-captcha.php:77
|
57 |
+
msgid "Plane"
|
58 |
+
msgstr "Aeroplano"
|
59 |
+
|
60 |
+
#: cf7-image-captcha.php:91
|
61 |
+
msgid "Please prove you are human by selecting the "
|
62 |
+
msgstr "Si prega di selezionare sotto l'icona della parola "
|
63 |
+
|
64 |
+
#: cf7-image-captcha.php:93
|
65 |
+
msgid "."
|
66 |
+
msgstr "."
|
67 |
+
|
68 |
+
#: cf7-image-captcha.php:121
|
69 |
+
msgid "Please select the correct icon."
|
70 |
+
msgstr "Si prega di selezionare l'icona corretta."
|
71 |
+
|
72 |
+
#: cf7-image-captcha.php:125
|
73 |
+
msgid "Please select an icon."
|
74 |
+
msgstr "Si prega di selezionare un'icona."
|
75 |
+
|
76 |
+
#: cf7-image-captcha.php:147
|
77 |
+
msgid "Image Captcha"
|
78 |
+
msgstr "Image Captcha"
|
79 |
+
|
80 |
+
#. Name of the plugin
|
81 |
+
msgid "Contact Form 7 Image Captcha"
|
82 |
+
msgstr "Contact Form 7 Image Captcha"
|
83 |
+
|
84 |
+
#. Description of the plugin
|
85 |
+
msgid "Add a simple image captcha and Honeypot to contact form 7"
|
86 |
+
msgstr "Aggiungere un semplice immagine captcha e Honeypot a Contact form 7"
|
87 |
+
|
88 |
+
#. URI of the plugin
|
89 |
+
msgid "https://wordpress.org/plugins/contact-form-7-image-captcha/"
|
90 |
+
msgstr "https://wordpress.org/plugins/contact-form-7-image-captcha/"
|
91 |
+
|
92 |
+
#. Author of the plugin
|
93 |
+
msgid "KC Computing"
|
94 |
+
msgstr "KC Computing"
|
95 |
+
|
96 |
+
#. Author URI of the plugin
|
97 |
+
msgid "https://profiles.wordpress.org/ktc_88"
|
98 |
+
msgstr "https://profiles.wordpress.org/ktc_88"
|
lang/contact-form-7-image-captcha-nl_NL.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-nl_NL.po
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form 7 Image Captcha\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-01-09 12:05+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-09-23 21:52-0700\n"
|
7 |
+
"Language-Team: Italian\n"
|
8 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\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 2.2.3\n"
|
13 |
+
"Last-Translator: \n"
|
14 |
+
"Language: nl\n"
|
15 |
+
|
16 |
+
#: cf7-image-captcha.php:28
|
17 |
+
msgid "Go Pro"
|
18 |
+
msgstr "Go Pro"
|
19 |
+
|
20 |
+
#: cf7-image-captcha.php:68
|
21 |
+
msgid "Heart"
|
22 |
+
msgstr "het hart"
|
23 |
+
|
24 |
+
#: cf7-image-captcha.php:69
|
25 |
+
msgid "House"
|
26 |
+
msgstr "het huis"
|
27 |
+
|
28 |
+
#: cf7-image-captcha.php:70
|
29 |
+
msgid "Star"
|
30 |
+
msgstr "de ster"
|
31 |
+
|
32 |
+
#: cf7-image-captcha.php:71
|
33 |
+
msgid "Car"
|
34 |
+
msgstr "de auto"
|
35 |
+
|
36 |
+
#: cf7-image-captcha.php:72
|
37 |
+
msgid "Cup"
|
38 |
+
msgstr "het Kopje"
|
39 |
+
|
40 |
+
#: cf7-image-captcha.php:73
|
41 |
+
msgid "Flag"
|
42 |
+
msgstr "de vlag"
|
43 |
+
|
44 |
+
#: cf7-image-captcha.php:74
|
45 |
+
msgid "Key"
|
46 |
+
msgstr "de sleutel"
|
47 |
+
|
48 |
+
#: cf7-image-captcha.php:75
|
49 |
+
msgid "Truck"
|
50 |
+
msgstr "de vrachtwagen"
|
51 |
+
|
52 |
+
#: cf7-image-captcha.php:76
|
53 |
+
msgid "Tree"
|
54 |
+
msgstr "de boom"
|
55 |
+
|
56 |
+
#: cf7-image-captcha.php:77
|
57 |
+
msgid "Plane"
|
58 |
+
msgstr "het vliegtuig"
|
59 |
+
|
60 |
+
#: cf7-image-captcha.php:91
|
61 |
+
msgid "Please prove you are human by selecting the "
|
62 |
+
msgstr "Toon a.u.b. dat u menselijk bent door de selectie van"
|
63 |
+
|
64 |
+
#: cf7-image-captcha.php:93
|
65 |
+
msgid "."
|
66 |
+
msgstr "."
|
67 |
+
|
68 |
+
#: cf7-image-captcha.php:121
|
69 |
+
msgid "Please select the correct icon."
|
70 |
+
msgstr "Selecteer a.u.b. het juiste symbool."
|
71 |
+
|
72 |
+
#: cf7-image-captcha.php:125
|
73 |
+
msgid "Please select an icon."
|
74 |
+
msgstr "Selecteer a.u.b. een symbool."
|
75 |
+
|
76 |
+
#: cf7-image-captcha.php:147
|
77 |
+
msgid "Image Captcha"
|
78 |
+
msgstr "Afbeelding Captcha"
|
79 |
+
|
80 |
+
#. Name of the plugin
|
81 |
+
msgid "Contact Form 7 Image Captcha"
|
82 |
+
msgstr "Contact Form 7 Afbeelding captcha"
|
83 |
+
|
84 |
+
#. Description of the plugin
|
85 |
+
msgid "Add a simple image captcha and Honeypot to contact form 7"
|
86 |
+
msgstr "Voeg eenvoudig een afbeelding captcha en \"honeypot\" toe in het contact 7 formulier"
|
87 |
+
|
88 |
+
#. URI of the plugin
|
89 |
+
msgid "https://wordpress.org/plugins/contact-form-7-image-captcha/"
|
90 |
+
msgstr "https://wordpress.org/plugins/contact-form-7-image-captcha/"
|
91 |
+
|
92 |
+
#. Author of the plugin
|
93 |
+
msgid "KC Computing"
|
94 |
+
msgstr "KC Computing"
|
95 |
+
|
96 |
+
#. Author URI of the plugin
|
97 |
+
msgid "https://profiles.wordpress.org/ktc_88"
|
98 |
+
msgstr "https://profiles.wordpress.org/ktc_88"
|
lang/contact-form-7-image-captcha-pt_PT.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-pt_PT.po
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: \n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-01-09 12:05+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-09-23 22:01-0700\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: pt_PT\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 2.2.3\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
|
17 |
+
#: cf7-image-captcha.php:28
|
18 |
+
msgid "Go Pro"
|
19 |
+
msgstr "Ir para Pro"
|
20 |
+
|
21 |
+
#: cf7-image-captcha.php:68
|
22 |
+
msgid "Heart"
|
23 |
+
msgstr "Coração"
|
24 |
+
|
25 |
+
#: cf7-image-captcha.php:69
|
26 |
+
msgid "House"
|
27 |
+
msgstr "Casa"
|
28 |
+
|
29 |
+
#: cf7-image-captcha.php:70
|
30 |
+
msgid "Star"
|
31 |
+
msgstr "Estrela"
|
32 |
+
|
33 |
+
#: cf7-image-captcha.php:71
|
34 |
+
msgid "Car"
|
35 |
+
msgstr "Carro"
|
36 |
+
|
37 |
+
#: cf7-image-captcha.php:72
|
38 |
+
msgid "Cup"
|
39 |
+
msgstr "Chávena"
|
40 |
+
|
41 |
+
#: cf7-image-captcha.php:73
|
42 |
+
msgid "Flag"
|
43 |
+
msgstr "Bandeira"
|
44 |
+
|
45 |
+
#: cf7-image-captcha.php:74
|
46 |
+
msgid "Key"
|
47 |
+
msgstr "Chave"
|
48 |
+
|
49 |
+
#: cf7-image-captcha.php:75
|
50 |
+
msgid "Truck"
|
51 |
+
msgstr "Camião"
|
52 |
+
|
53 |
+
#: cf7-image-captcha.php:76
|
54 |
+
msgid "Tree"
|
55 |
+
msgstr "Árvore"
|
56 |
+
|
57 |
+
#: cf7-image-captcha.php:77
|
58 |
+
msgid "Plane"
|
59 |
+
msgstr "Avião"
|
60 |
+
|
61 |
+
#: cf7-image-captcha.php:91
|
62 |
+
msgid "Please prove you are human by selecting the "
|
63 |
+
msgstr "Por favor prove que é humano ao seleccionar"
|
64 |
+
|
65 |
+
#: cf7-image-captcha.php:93
|
66 |
+
msgid "."
|
67 |
+
msgstr "."
|
68 |
+
|
69 |
+
#: cf7-image-captcha.php:121
|
70 |
+
msgid "Please select the correct icon."
|
71 |
+
msgstr "Por favor seleccione o ícone correcto."
|
72 |
+
|
73 |
+
#: cf7-image-captcha.php:125
|
74 |
+
msgid "Please select an icon."
|
75 |
+
msgstr "Por favor seleccione um ícone."
|
76 |
+
|
77 |
+
#: cf7-image-captcha.php:147
|
78 |
+
msgid "Image Captcha"
|
79 |
+
msgstr "Image Captcha"
|
80 |
+
|
81 |
+
#. Name of the plugin
|
82 |
+
msgid "Contact Form 7 Image Captcha"
|
83 |
+
msgstr "Contact Form 7 Image Captcha"
|
84 |
+
|
85 |
+
#. Description of the plugin
|
86 |
+
msgid "Add a simple image captcha and Honeypot to contact form 7"
|
87 |
+
msgstr "Adicionar um captcha image simples e Honeypot ao contact form 7"
|
88 |
+
|
89 |
+
#. URI of the plugin
|
90 |
+
msgid "https://wordpress.org/plugins/contact-form-7-image-captcha/"
|
91 |
+
msgstr "https://wordpress.org/plugins/contact-form-7-image-captcha/"
|
92 |
+
|
93 |
+
#. Author of the plugin
|
94 |
+
msgid "KC Computing"
|
95 |
+
msgstr "KC Computing"
|
96 |
+
|
97 |
+
#. Author URI of the plugin
|
98 |
+
msgid "https://profiles.wordpress.org/ktc_88"
|
99 |
+
msgstr "https://profiles.wordpress.org/ktc_88"
|
lang/contact-form-7-image-captcha-ru_RU.mo
ADDED
Binary file
|
lang/contact-form-7-image-captcha-ru_RU.po
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form 7 Image Captcha\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-01-09 12:05+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-04-19 12:20-0700\n"
|
7 |
+
"Language-Team: Italian\n"
|
8 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\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 2.2.1\n"
|
13 |
+
"Last-Translator: \n"
|
14 |
+
"Language: ru\n"
|
15 |
+
|
16 |
+
#: cf7-image-captcha.php:28
|
17 |
+
msgid "Go Pro"
|
18 |
+
msgstr "Go Pro"
|
19 |
+
|
20 |
+
#: cf7-image-captcha.php:68
|
21 |
+
msgid "Heart"
|
22 |
+
msgstr " сердце"
|
23 |
+
|
24 |
+
#: cf7-image-captcha.php:69
|
25 |
+
msgid "House"
|
26 |
+
msgstr " дом"
|
27 |
+
|
28 |
+
#: cf7-image-captcha.php:70
|
29 |
+
msgid "Star"
|
30 |
+
msgstr " звезду"
|
31 |
+
|
32 |
+
#: cf7-image-captcha.php:71
|
33 |
+
msgid "Car"
|
34 |
+
msgstr " автомобиль"
|
35 |
+
|
36 |
+
#: cf7-image-captcha.php:72
|
37 |
+
msgid "Cup"
|
38 |
+
msgstr " чашку"
|
39 |
+
|
40 |
+
#: cf7-image-captcha.php:73
|
41 |
+
msgid "Flag"
|
42 |
+
msgstr " флаг"
|
43 |
+
|
44 |
+
#: cf7-image-captcha.php:74
|
45 |
+
msgid "Key"
|
46 |
+
msgstr " ключ"
|
47 |
+
|
48 |
+
#: cf7-image-captcha.php:75
|
49 |
+
msgid "Truck"
|
50 |
+
msgstr " грузовик"
|
51 |
+
|
52 |
+
#: cf7-image-captcha.php:76
|
53 |
+
msgid "Tree"
|
54 |
+
msgstr " дерево"
|
55 |
+
|
56 |
+
#: cf7-image-captcha.php:77
|
57 |
+
msgid "Plane"
|
58 |
+
msgstr " самолет"
|
59 |
+
|
60 |
+
#: cf7-image-captcha.php:91
|
61 |
+
msgid "Please prove you are human by selecting the "
|
62 |
+
msgstr "Пожалуйста, докажите, что вы человек, выбрав "
|
63 |
+
|
64 |
+
#: cf7-image-captcha.php:93
|
65 |
+
msgid "."
|
66 |
+
msgstr "."
|
67 |
+
|
68 |
+
#: cf7-image-captcha.php:121
|
69 |
+
msgid "Please select the correct icon."
|
70 |
+
msgstr "Пожалуйста, выберите правильный значок."
|
71 |
+
|
72 |
+
#: cf7-image-captcha.php:125
|
73 |
+
msgid "Please select an icon."
|
74 |
+
msgstr "Пожалуйста, выберите значок."
|
75 |
+
|
76 |
+
#: cf7-image-captcha.php:147
|
77 |
+
msgid "Image Captcha"
|
78 |
+
msgstr "Изображение Captcha"
|
79 |
+
|
80 |
+
#. Name of the plugin
|
81 |
+
msgid "Contact Form 7 Image Captcha"
|
82 |
+
msgstr "Contact Form 7 Image Captcha"
|
83 |
+
|
84 |
+
#. Description of the plugin
|
85 |
+
msgid "Add a simple image captcha and Honeypot to contact form 7"
|
86 |
+
msgstr "Добавить простое изображение капчи и Honeypot в контактную форму 7"
|
87 |
+
|
88 |
+
#. URI of the plugin
|
89 |
+
msgid "https://wordpress.org/plugins/contact-form-7-image-captcha/"
|
90 |
+
msgstr "https://wordpress.org/plugins/contact-form-7-image-captcha/"
|
91 |
+
|
92 |
+
#. Author of the plugin
|
93 |
+
msgid "KC Computing"
|
94 |
+
msgstr "KC Computing"
|
95 |
+
|
96 |
+
#. Author URI of the plugin
|
97 |
+
msgid "https://profiles.wordpress.org/ktc_88"
|
98 |
+
msgstr "https://profiles.wordpress.org/ktc_88"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: contact form 7, spam, captcha
|
5 |
Requires at least: 4.7
|
6 |
Requires PHP: 7.0
|
7 |
-
Tested up to:
|
8 |
Stable tag: trunk
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -101,10 +101,6 @@ If the styling does not look right, you may need to clear your browser cache. If
|
|
101 |
3. Pro version settings page
|
102 |
|
103 |
== Changelog ==
|
104 |
-
= 3.2.6 [09/01/2022] =
|
105 |
-
* Fixed issue where validation errors were not showing due to the Contact Form 7 version 5.6 update
|
106 |
-
* Removed localized language files in favor of using translate.wordpress.org
|
107 |
-
|
108 |
= 3.2.5 [03/08/2022] =
|
109 |
* Fixed iPhone bug where icon would not show focus state when touched
|
110 |
* Removed some unused styling to help reduce the stylesheet file size
|
4 |
Tags: contact form 7, spam, captcha
|
5 |
Requires at least: 4.7
|
6 |
Requires PHP: 7.0
|
7 |
+
Tested up to: 6.0
|
8 |
Stable tag: trunk
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
101 |
3. Pro version settings page
|
102 |
|
103 |
== Changelog ==
|
|
|
|
|
|
|
|
|
104 |
= 3.2.5 [03/08/2022] =
|
105 |
* Fixed iPhone bug where icon would not show focus state when touched
|
106 |
* Removed some unused styling to help reduce the stylesheet file size
|