Version Description
- 18.01.2019 =
- Update : All functionality was updated for WordPress 5.0.3.
- Update : The enqueueing of styles and scripts has been improved.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Captcha (reCAPTCHA) by BestWebSoft |
Version | 1.40 |
Comparing to | |
See all releases |
Code changes from version 1.39 to 1.40
- google-captcha.php +15 -5
- includes/forms.php +5 -1
- languages/google-captcha-cs_CZ.mo +0 -0
- languages/google-captcha-cs_CZ.po +33 -29
- languages/google-captcha-es_ES.mo +0 -0
- languages/google-captcha-es_ES.po +33 -29
- languages/google-captcha-ru_RU.mo +0 -0
- languages/google-captcha-ru_RU.po +33 -29
- languages/google-captcha-sr_RS.mo +0 -0
- languages/google-captcha-sr_RS.po +33 -29
- languages/google-captcha-uk.mo +0 -0
- languages/google-captcha-uk.po +33 -29
- readme.txt +10 -2
- screenshot-7.png +0 -0
- screenshot-8.png +0 -0
google-captcha.php
CHANGED
@@ -6,12 +6,12 @@ Description: Protect WordPress website forms from spam entries with Google Captc
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-captcha
|
8 |
Domain Path: /languages
|
9 |
-
Version: 1.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv3 or later
|
12 |
*/
|
13 |
|
14 |
-
/* © Copyright
|
15 |
|
16 |
This program is free software; you can redistribute it and/or modify
|
17 |
it under the terms of the GNU General Public License, version 2, as
|
@@ -447,6 +447,7 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
|
|
447 |
require_once( dirname( __FILE__ ) . '/includes/class-gglcptch-settings-tabs.php' );
|
448 |
$page = new Gglcptch_Settings_Tabs( plugin_basename( __FILE__ ) ); ?>
|
449 |
<h1><?php _e( 'Google Captcha Settings', 'google-captcha' ); ?></h1>
|
|
|
450 |
<?php $page->display_content();
|
451 |
} else {
|
452 |
require_once( dirname( __FILE__ ) . '/includes/whitelist.php' );
|
@@ -595,7 +596,7 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
595 |
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v3' == $gglcptch_options['recaptcha_version'] ) {
|
596 |
wp_register_script( 'gglcptch_api', $api_url,false, null, false );
|
597 |
} else {
|
598 |
-
wp_register_script( 'gglcptch_api', $api_url
|
599 |
}
|
600 |
add_action( 'wp_footer', 'gglcptch_add_scripts' );
|
601 |
if (
|
@@ -606,6 +607,16 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
606 |
add_action( 'login_footer', 'gglcptch_add_scripts' );
|
607 |
}
|
608 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
609 |
} elseif ( ! empty( $gglcptch_options['whitelist_message'] ) ) {
|
610 |
$content .= '<label class="gglcptch_whitelist_message">' . $gglcptch_options['whitelist_message'] . '</label>';
|
611 |
}
|
@@ -1177,7 +1188,6 @@ add_action( 'admin_init', 'gglcptch_admin_init' );
|
|
1177 |
add_action( 'plugins_loaded', 'gglcptch_plugins_loaded' );
|
1178 |
|
1179 |
add_action( 'admin_enqueue_scripts', 'gglcptch_add_admin_script_styles' );
|
1180 |
-
add_action( 'wp_enqueue_scripts', 'gglcptch_add_styles' );
|
1181 |
add_filter( 'script_loader_tag', 'gglcptch_add_async_attribute', 10, 2 );
|
1182 |
add_action( 'admin_footer', 'gglcptch_admin_footer' );
|
1183 |
add_filter( 'pgntn_callback', 'gglcptch_pagination_callback' );
|
@@ -1198,4 +1208,4 @@ add_filter( 'plugin_row_meta', 'gglcptch_links', 10, 2 );
|
|
1198 |
add_action( 'admin_notices', 'gglcptch_plugin_banner' );
|
1199 |
|
1200 |
add_action( 'wp_ajax_gglcptch-test-keys', 'gglcptch_test_keys' );
|
1201 |
-
add_action( 'wp_ajax_gglcptch_test_keys_verification', 'gglcptch_test_keys_verification' );
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-captcha
|
8 |
Domain Path: /languages
|
9 |
+
Version: 1.40
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv3 or later
|
12 |
*/
|
13 |
|
14 |
+
/* © Copyright 2019 BestWebSoft ( https://support.bestwebsoft.com )
|
15 |
|
16 |
This program is free software; you can redistribute it and/or modify
|
17 |
it under the terms of the GNU General Public License, version 2, as
|
447 |
require_once( dirname( __FILE__ ) . '/includes/class-gglcptch-settings-tabs.php' );
|
448 |
$page = new Gglcptch_Settings_Tabs( plugin_basename( __FILE__ ) ); ?>
|
449 |
<h1><?php _e( 'Google Captcha Settings', 'google-captcha' ); ?></h1>
|
450 |
+
<noscript><div class="error below-h2"><p><strong><?php _e( "Please enable JavaScript in your browser.", 'google-captcha' ); ?></strong></p></div></noscript>
|
451 |
<?php $page->display_content();
|
452 |
} else {
|
453 |
require_once( dirname( __FILE__ ) . '/includes/whitelist.php' );
|
596 |
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v3' == $gglcptch_options['recaptcha_version'] ) {
|
597 |
wp_register_script( 'gglcptch_api', $api_url,false, null, false );
|
598 |
} else {
|
599 |
+
wp_register_script( 'gglcptch_api', $api_url, $deps, $gglcptch_plugin_info['Version'], true );
|
600 |
}
|
601 |
add_action( 'wp_footer', 'gglcptch_add_scripts' );
|
602 |
if (
|
607 |
add_action( 'login_footer', 'gglcptch_add_scripts' );
|
608 |
}
|
609 |
}
|
610 |
+
if (
|
611 |
+
( ! isset( $_SERVER['REQUEST_URI'] ) ) ||
|
612 |
+
( ! strstr( $_SERVER['REQUEST_URI'], '/wp-login.php' ) ) ||
|
613 |
+
( '/wp-login.php?action=register' == $_SERVER['REQUEST_URI'] && $gglcptch_options['registration_form'] ) ||
|
614 |
+
( '/wp-login.php?action=lostpassword' == $_SERVER['REQUEST_URI'] && $gglcptch_options['reset_pwd_form'] ) ||
|
615 |
+
( '/wp-login.php' == $_SERVER['REQUEST_URI'] && $gglcptch_options['login_form'] ) ||
|
616 |
+
( strstr( $_SERVER['REQUEST_URI'], '/wp-login.php' ) && strstr( $_SERVER['REQUEST_URI'], 'loggedout' ) && $gglcptch_options['login_form'] )
|
617 |
+
) {
|
618 |
+
gglcptch_add_styles();
|
619 |
+
}
|
620 |
} elseif ( ! empty( $gglcptch_options['whitelist_message'] ) ) {
|
621 |
$content .= '<label class="gglcptch_whitelist_message">' . $gglcptch_options['whitelist_message'] . '</label>';
|
622 |
}
|
1188 |
add_action( 'plugins_loaded', 'gglcptch_plugins_loaded' );
|
1189 |
|
1190 |
add_action( 'admin_enqueue_scripts', 'gglcptch_add_admin_script_styles' );
|
|
|
1191 |
add_filter( 'script_loader_tag', 'gglcptch_add_async_attribute', 10, 2 );
|
1192 |
add_action( 'admin_footer', 'gglcptch_admin_footer' );
|
1193 |
add_filter( 'pgntn_callback', 'gglcptch_pagination_callback' );
|
1208 |
add_action( 'admin_notices', 'gglcptch_plugin_banner' );
|
1209 |
|
1210 |
add_action( 'wp_ajax_gglcptch-test-keys', 'gglcptch_test_keys' );
|
1211 |
+
add_action( 'wp_ajax_gglcptch_test_keys_verification', 'gglcptch_test_keys_verification' );
|
includes/forms.php
CHANGED
@@ -163,7 +163,6 @@ if ( ! function_exists( 'gglcptch_add_actions' ) ) {
|
|
163 |
$is_user_logged_in = is_user_logged_in();
|
164 |
|
165 |
if ( ! empty( $gglcptch_options['login_form'] ) || ! empty( $gglcptch_options['reset_pwd_form'] ) || ! empty( $gglcptch_options['registration_form'] ) ) {
|
166 |
-
add_action( 'login_enqueue_scripts', 'gglcptch_add_styles' );
|
167 |
|
168 |
if ( gglcptch_is_recaptcha_required( 'login_form', $is_user_logged_in ) ) {
|
169 |
add_action( 'login_form', 'gglcptch_login_display' );
|
@@ -212,6 +211,11 @@ if ( ! function_exists( 'gglcptch_add_actions' ) ) {
|
|
212 |
add_filter( 'cntctfrm_check_form', 'gglcptch_contact_form_check' );
|
213 |
}
|
214 |
}
|
|
|
|
|
|
|
|
|
|
|
215 |
}
|
216 |
}
|
217 |
|
163 |
$is_user_logged_in = is_user_logged_in();
|
164 |
|
165 |
if ( ! empty( $gglcptch_options['login_form'] ) || ! empty( $gglcptch_options['reset_pwd_form'] ) || ! empty( $gglcptch_options['registration_form'] ) ) {
|
|
|
166 |
|
167 |
if ( gglcptch_is_recaptcha_required( 'login_form', $is_user_logged_in ) ) {
|
168 |
add_action( 'login_form', 'gglcptch_login_display' );
|
211 |
add_filter( 'cntctfrm_check_form', 'gglcptch_contact_form_check' );
|
212 |
}
|
213 |
}
|
214 |
+
|
215 |
+
/* Add Google Captcha to Testimonials by BestWebSoft */
|
216 |
+
if ( gglcptch_is_recaptcha_required( 'testimonials', $is_user_logged_in ) ) {
|
217 |
+
add_filter( 'tstmnls_display_recaptcha', 'gglcptch_display', 10, 0 );
|
218 |
+
}
|
219 |
}
|
220 |
}
|
221 |
|
languages/google-captcha-cs_CZ.mo
CHANGED
Binary file
|
languages/google-captcha-cs_CZ.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
@@ -17,12 +17,12 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-captcha.php:38 google-captcha.php:40 google-captcha.php:
|
21 |
#: includes/class-gglcptch-settings-tabs.php:147
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Nastavení Google Captcha"
|
24 |
|
25 |
-
#: google-captcha.php:40 google-captcha.php:
|
26 |
#: includes/class-gglcptch-settings-tabs.php:25
|
27 |
msgid "Settings"
|
28 |
msgstr "Nastavení"
|
@@ -39,11 +39,11 @@ msgstr "Seznam povolených"
|
|
39 |
msgid "Upgrade to Pro"
|
40 |
msgstr "Aktualizovat na Pro"
|
41 |
|
42 |
-
#: google-captcha.php:
|
43 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
44 |
msgstr "Počkejte, než se Google reCAPTCHA načte."
|
45 |
|
46 |
-
#: google-captcha.php:
|
47 |
msgid ""
|
48 |
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
49 |
"reload this page."
|
@@ -51,63 +51,67 @@ msgstr ""
|
|
51 |
"Nepodařilo se načíst Google reCAPTCHA. Zkontrolujte připojení k Internetu a "
|
52 |
"znovu načtěte tuto stránku."
|
53 |
|
54 |
-
#: google-captcha.php:
|
55 |
msgid "Warning"
|
56 |
msgstr "Upozornění"
|
57 |
|
58 |
-
#: google-captcha.php:
|
59 |
msgid "You are in the whitelist"
|
60 |
msgstr "Jste na seznamu povolených"
|
61 |
|
62 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
63 |
msgid "To use Google Captcha you must get the keys from"
|
64 |
msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
|
65 |
|
66 |
-
#: google-captcha.php:
|
67 |
msgid "here"
|
68 |
msgstr "zde"
|
69 |
|
70 |
-
#: google-captcha.php:
|
71 |
msgid "and enter them on the"
|
72 |
msgstr "a zadejte je na"
|
73 |
|
74 |
-
#: google-captcha.php:
|
75 |
msgid "plugin setting page"
|
76 |
msgstr "stránce nastavení pluginu"
|
77 |
|
78 |
-
#: google-captcha.php:
|
79 |
msgid "Error"
|
80 |
msgstr "Chyba"
|
81 |
|
82 |
-
#: google-captcha.php:
|
83 |
msgid "User response is missing."
|
84 |
msgstr "Chybí odezva uživatele."
|
85 |
|
86 |
-
#: google-captcha.php:
|
87 |
msgid "Secret Key is invalid."
|
88 |
msgstr "Tajný klíč je neplatný."
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
msgid "Check your domain configurations"
|
92 |
msgstr "Zkontrolujte konfiguraci vaší domény"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "and enter it again"
|
96 |
msgstr "a zadejte jej znovu"
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
msgid "Secret Key is missing."
|
100 |
msgstr "Tajný klíč chybí."
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "User response is invalid"
|
104 |
msgstr "Neplatná odezva uživatele"
|
105 |
|
106 |
-
#: google-captcha.php:
|
107 |
msgid "You have entered an incorrect reCAPTCHA value."
|
108 |
msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
|
109 |
|
110 |
-
#: google-captcha.php:
|
111 |
msgid ""
|
112 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
113 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
@@ -115,33 +119,33 @@ msgstr ""
|
|
115 |
"V aktuálním formuláři byla zjištěna více než jedna reCAPTCHA. Pro správnou "
|
116 |
"funkcionalitu, odstraňte všechny nepotřebné reCAPTCHA pole."
|
117 |
|
118 |
-
#: google-captcha.php:
|
119 |
msgid "reCAPTCHA v3 test failed"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: google-captcha.php:
|
123 |
msgid "Please submit \"Test verification\""
|
124 |
msgstr "Odešlete „Test ověření“"
|
125 |
|
126 |
-
#: google-captcha.php:
|
127 |
msgid "Please complete the captcha and submit \"Test verification\""
|
128 |
msgstr "Doplňte captcha a odešlete „Test ověření“"
|
129 |
|
130 |
-
#: google-captcha.php:
|
131 |
msgid "Test verification"
|
132 |
msgstr "Test ověření"
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
msgid "The verification is successfully completed."
|
136 |
msgstr "Ověření je úspěšně dokončeno."
|
137 |
|
138 |
-
#: google-captcha.php:
|
139 |
msgid "FAQ"
|
140 |
msgstr ""
|
141 |
"Časté dotazy <acronym title=\\\"Frequently asked questions\\\">(FAQ)</"
|
142 |
"acronym>"
|
143 |
|
144 |
-
#: google-captcha.php:
|
145 |
msgid "Support"
|
146 |
msgstr "Podpora"
|
147 |
|
@@ -328,11 +332,11 @@ msgstr "Aktivovat"
|
|
328 |
msgid "Install Now"
|
329 |
msgstr "Instalovat nyní"
|
330 |
|
331 |
-
#: includes/forms.php:
|
332 |
msgid "Authentication failed."
|
333 |
msgstr "Ověření selhalo."
|
334 |
|
335 |
-
#: includes/forms.php:
|
336 |
msgid "Click the BACK button on your browser and try again."
|
337 |
msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu."
|
338 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-01-08 13:07+0200\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-captcha.php:38 google-captcha.php:40 google-captcha.php:449
|
21 |
#: includes/class-gglcptch-settings-tabs.php:147
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Nastavení Google Captcha"
|
24 |
|
25 |
+
#: google-captcha.php:40 google-captcha.php:1080 google-captcha.php:1093
|
26 |
#: includes/class-gglcptch-settings-tabs.php:25
|
27 |
msgid "Settings"
|
28 |
msgstr "Nastavení"
|
39 |
msgid "Upgrade to Pro"
|
40 |
msgstr "Aktualizovat na Pro"
|
41 |
|
42 |
+
#: google-captcha.php:237
|
43 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
44 |
msgstr "Počkejte, než se Google reCAPTCHA načte."
|
45 |
|
46 |
+
#: google-captcha.php:238
|
47 |
msgid ""
|
48 |
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
49 |
"reload this page."
|
51 |
"Nepodařilo se načíst Google reCAPTCHA. Zkontrolujte připojení k Internetu a "
|
52 |
"znovu načtěte tuto stránku."
|
53 |
|
54 |
+
#: google-captcha.php:254
|
55 |
msgid "Warning"
|
56 |
msgstr "Upozornění"
|
57 |
|
58 |
+
#: google-captcha.php:353
|
59 |
msgid "You are in the whitelist"
|
60 |
msgstr "Jste na seznamu povolených"
|
61 |
|
62 |
+
#: google-captcha.php:450
|
63 |
+
msgid "Please enable JavaScript in your browser."
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: google-captcha.php:537 google-captcha.php:1115
|
67 |
msgid "To use Google Captcha you must get the keys from"
|
68 |
msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
|
69 |
|
70 |
+
#: google-captcha.php:538 google-captcha.php:1116
|
71 |
msgid "here"
|
72 |
msgstr "zde"
|
73 |
|
74 |
+
#: google-captcha.php:539 google-captcha.php:1117
|
75 |
msgid "and enter them on the"
|
76 |
msgstr "a zadejte je na"
|
77 |
|
78 |
+
#: google-captcha.php:541 google-captcha.php:1119
|
79 |
msgid "plugin setting page"
|
80 |
msgstr "stránce nastavení pluginu"
|
81 |
|
82 |
+
#: google-captcha.php:847 includes/forms.php:369
|
83 |
msgid "Error"
|
84 |
msgstr "Chyba"
|
85 |
|
86 |
+
#: google-captcha.php:972
|
87 |
msgid "User response is missing."
|
88 |
msgstr "Chybí odezva uživatele."
|
89 |
|
90 |
+
#: google-captcha.php:976 google-captcha.php:984
|
91 |
msgid "Secret Key is invalid."
|
92 |
msgstr "Tajný klíč je neplatný."
|
93 |
|
94 |
+
#: google-captcha.php:977 google-captcha.php:985
|
95 |
msgid "Check your domain configurations"
|
96 |
msgstr "Zkontrolujte konfiguraci vaší domény"
|
97 |
|
98 |
+
#: google-captcha.php:978 google-captcha.php:986
|
99 |
msgid "and enter it again"
|
100 |
msgstr "a zadejte jej znovu"
|
101 |
|
102 |
+
#: google-captcha.php:981
|
103 |
msgid "Secret Key is missing."
|
104 |
msgstr "Tajný klíč chybí."
|
105 |
|
106 |
+
#: google-captcha.php:988
|
107 |
msgid "User response is invalid"
|
108 |
msgstr "Neplatná odezva uživatele"
|
109 |
|
110 |
+
#: google-captcha.php:989
|
111 |
msgid "You have entered an incorrect reCAPTCHA value."
|
112 |
msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
|
113 |
|
114 |
+
#: google-captcha.php:990
|
115 |
msgid ""
|
116 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
117 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
119 |
"V aktuálním formuláři byla zjištěna více než jedna reCAPTCHA. Pro správnou "
|
120 |
"funkcionalitu, odstraňte všechny nepotřebné reCAPTCHA pole."
|
121 |
|
122 |
+
#: google-captcha.php:992
|
123 |
msgid "reCAPTCHA v3 test failed"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: google-captcha.php:1030
|
127 |
msgid "Please submit \"Test verification\""
|
128 |
msgstr "Odešlete „Test ověření“"
|
129 |
|
130 |
+
#: google-captcha.php:1032
|
131 |
msgid "Please complete the captcha and submit \"Test verification\""
|
132 |
msgstr "Doplňte captcha a odešlete „Test ověření“"
|
133 |
|
134 |
+
#: google-captcha.php:1039
|
135 |
msgid "Test verification"
|
136 |
msgstr "Test ověření"
|
137 |
|
138 |
+
#: google-captcha.php:1060
|
139 |
msgid "The verification is successfully completed."
|
140 |
msgstr "Ověření je úspěšně dokončeno."
|
141 |
|
142 |
+
#: google-captcha.php:1095
|
143 |
msgid "FAQ"
|
144 |
msgstr ""
|
145 |
"Časté dotazy <acronym title=\\\"Frequently asked questions\\\">(FAQ)</"
|
146 |
"acronym>"
|
147 |
|
148 |
+
#: google-captcha.php:1096
|
149 |
msgid "Support"
|
150 |
msgstr "Podpora"
|
151 |
|
332 |
msgid "Install Now"
|
333 |
msgstr "Instalovat nyní"
|
334 |
|
335 |
+
#: includes/forms.php:282
|
336 |
msgid "Authentication failed."
|
337 |
msgstr "Ověření selhalo."
|
338 |
|
339 |
+
#: includes/forms.php:371
|
340 |
msgid "Click the BACK button on your browser and try again."
|
341 |
msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu."
|
342 |
|
languages/google-captcha-es_ES.mo
CHANGED
Binary file
|
languages/google-captcha-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
|
@@ -17,12 +17,12 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-captcha.php:38 google-captcha.php:40 google-captcha.php:
|
21 |
#: includes/class-gglcptch-settings-tabs.php:147
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Google Captcha Ajustes"
|
24 |
|
25 |
-
#: google-captcha.php:40 google-captcha.php:
|
26 |
#: includes/class-gglcptch-settings-tabs.php:25
|
27 |
msgid "Settings"
|
28 |
msgstr "Configuraciónes"
|
@@ -39,11 +39,11 @@ msgstr "Lista Blanca"
|
|
39 |
msgid "Upgrade to Pro"
|
40 |
msgstr "Actualizar a Pro"
|
41 |
|
42 |
-
#: google-captcha.php:
|
43 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
44 |
msgstr "Por favor espere hasta que se carga Google reCAPTCHA."
|
45 |
|
46 |
-
#: google-captcha.php:
|
47 |
msgid ""
|
48 |
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
49 |
"reload this page."
|
@@ -51,63 +51,67 @@ msgstr ""
|
|
51 |
"Error al cargar Google reCAPTCHA. Por favor, compruebe su conexión a "
|
52 |
"internet y vuelva a cargar esta página."
|
53 |
|
54 |
-
#: google-captcha.php:
|
55 |
msgid "Warning"
|
56 |
msgstr "Atención"
|
57 |
|
58 |
-
#: google-captcha.php:
|
59 |
msgid "You are in the whitelist"
|
60 |
msgstr "Estás en la lista blanca"
|
61 |
|
62 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
63 |
msgid "To use Google Captcha you must get the keys from"
|
64 |
msgstr "Para utilizar Google Captcha debe obtener las claves de"
|
65 |
|
66 |
-
#: google-captcha.php:
|
67 |
msgid "here"
|
68 |
msgstr "aquí"
|
69 |
|
70 |
-
#: google-captcha.php:
|
71 |
msgid "and enter them on the"
|
72 |
msgstr "e introducirlas en"
|
73 |
|
74 |
-
#: google-captcha.php:
|
75 |
msgid "plugin setting page"
|
76 |
msgstr "página de configuración de plugin"
|
77 |
|
78 |
-
#: google-captcha.php:
|
79 |
msgid "Error"
|
80 |
msgstr "Error "
|
81 |
|
82 |
-
#: google-captcha.php:
|
83 |
msgid "User response is missing."
|
84 |
msgstr "Respuesta del usuario está ausente."
|
85 |
|
86 |
-
#: google-captcha.php:
|
87 |
msgid "Secret Key is invalid."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
msgid "Check your domain configurations"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "and enter it again"
|
96 |
msgstr "e introducirle otra vez"
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
msgid "Secret Key is missing."
|
100 |
msgstr "Clave Secreta está ausente."
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "User response is invalid"
|
104 |
msgstr "Respuesta del usuario no es válido"
|
105 |
|
106 |
-
#: google-captcha.php:
|
107 |
msgid "You have entered an incorrect reCAPTCHA value."
|
108 |
msgstr "Ha introducido un valor incorrecto de reCAPTCHA."
|
109 |
|
110 |
-
#: google-captcha.php:
|
111 |
msgid ""
|
112 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
113 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
@@ -115,31 +119,31 @@ msgstr ""
|
|
115 |
"Más de un reCAPTCHA se ha encontrado en la forma actual. Por favor, elimine "
|
116 |
"todos los campos de reCAPTCHA innecesarios para que funcione correctamente."
|
117 |
|
118 |
-
#: google-captcha.php:
|
119 |
msgid "reCAPTCHA v3 test failed"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: google-captcha.php:
|
123 |
msgid "Please submit \"Test verification\""
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: google-captcha.php:
|
127 |
msgid "Please complete the captcha and submit \"Test verification\""
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: google-captcha.php:
|
131 |
msgid "Test verification"
|
132 |
msgstr "Test de verificación"
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
msgid "The verification is successfully completed."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: google-captcha.php:
|
139 |
msgid "FAQ"
|
140 |
msgstr "Preguntas Frecuentes"
|
141 |
|
142 |
-
#: google-captcha.php:
|
143 |
msgid "Support"
|
144 |
msgstr "Soporte"
|
145 |
|
@@ -323,11 +327,11 @@ msgstr "Activar"
|
|
323 |
msgid "Install Now"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: includes/forms.php:
|
327 |
msgid "Authentication failed."
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/forms.php:
|
331 |
msgid "Click the BACK button on your browser and try again."
|
332 |
msgstr ""
|
333 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-01-08 13:07+0200\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-captcha.php:38 google-captcha.php:40 google-captcha.php:449
|
21 |
#: includes/class-gglcptch-settings-tabs.php:147
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Google Captcha Ajustes"
|
24 |
|
25 |
+
#: google-captcha.php:40 google-captcha.php:1080 google-captcha.php:1093
|
26 |
#: includes/class-gglcptch-settings-tabs.php:25
|
27 |
msgid "Settings"
|
28 |
msgstr "Configuraciónes"
|
39 |
msgid "Upgrade to Pro"
|
40 |
msgstr "Actualizar a Pro"
|
41 |
|
42 |
+
#: google-captcha.php:237
|
43 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
44 |
msgstr "Por favor espere hasta que se carga Google reCAPTCHA."
|
45 |
|
46 |
+
#: google-captcha.php:238
|
47 |
msgid ""
|
48 |
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
49 |
"reload this page."
|
51 |
"Error al cargar Google reCAPTCHA. Por favor, compruebe su conexión a "
|
52 |
"internet y vuelva a cargar esta página."
|
53 |
|
54 |
+
#: google-captcha.php:254
|
55 |
msgid "Warning"
|
56 |
msgstr "Atención"
|
57 |
|
58 |
+
#: google-captcha.php:353
|
59 |
msgid "You are in the whitelist"
|
60 |
msgstr "Estás en la lista blanca"
|
61 |
|
62 |
+
#: google-captcha.php:450
|
63 |
+
msgid "Please enable JavaScript in your browser."
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: google-captcha.php:537 google-captcha.php:1115
|
67 |
msgid "To use Google Captcha you must get the keys from"
|
68 |
msgstr "Para utilizar Google Captcha debe obtener las claves de"
|
69 |
|
70 |
+
#: google-captcha.php:538 google-captcha.php:1116
|
71 |
msgid "here"
|
72 |
msgstr "aquí"
|
73 |
|
74 |
+
#: google-captcha.php:539 google-captcha.php:1117
|
75 |
msgid "and enter them on the"
|
76 |
msgstr "e introducirlas en"
|
77 |
|
78 |
+
#: google-captcha.php:541 google-captcha.php:1119
|
79 |
msgid "plugin setting page"
|
80 |
msgstr "página de configuración de plugin"
|
81 |
|
82 |
+
#: google-captcha.php:847 includes/forms.php:369
|
83 |
msgid "Error"
|
84 |
msgstr "Error "
|
85 |
|
86 |
+
#: google-captcha.php:972
|
87 |
msgid "User response is missing."
|
88 |
msgstr "Respuesta del usuario está ausente."
|
89 |
|
90 |
+
#: google-captcha.php:976 google-captcha.php:984
|
91 |
msgid "Secret Key is invalid."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: google-captcha.php:977 google-captcha.php:985
|
95 |
msgid "Check your domain configurations"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: google-captcha.php:978 google-captcha.php:986
|
99 |
msgid "and enter it again"
|
100 |
msgstr "e introducirle otra vez"
|
101 |
|
102 |
+
#: google-captcha.php:981
|
103 |
msgid "Secret Key is missing."
|
104 |
msgstr "Clave Secreta está ausente."
|
105 |
|
106 |
+
#: google-captcha.php:988
|
107 |
msgid "User response is invalid"
|
108 |
msgstr "Respuesta del usuario no es válido"
|
109 |
|
110 |
+
#: google-captcha.php:989
|
111 |
msgid "You have entered an incorrect reCAPTCHA value."
|
112 |
msgstr "Ha introducido un valor incorrecto de reCAPTCHA."
|
113 |
|
114 |
+
#: google-captcha.php:990
|
115 |
msgid ""
|
116 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
117 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
119 |
"Más de un reCAPTCHA se ha encontrado en la forma actual. Por favor, elimine "
|
120 |
"todos los campos de reCAPTCHA innecesarios para que funcione correctamente."
|
121 |
|
122 |
+
#: google-captcha.php:992
|
123 |
msgid "reCAPTCHA v3 test failed"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: google-captcha.php:1030
|
127 |
msgid "Please submit \"Test verification\""
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: google-captcha.php:1032
|
131 |
msgid "Please complete the captcha and submit \"Test verification\""
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: google-captcha.php:1039
|
135 |
msgid "Test verification"
|
136 |
msgstr "Test de verificación"
|
137 |
|
138 |
+
#: google-captcha.php:1060
|
139 |
msgid "The verification is successfully completed."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: google-captcha.php:1095
|
143 |
msgid "FAQ"
|
144 |
msgstr "Preguntas Frecuentes"
|
145 |
|
146 |
+
#: google-captcha.php:1096
|
147 |
msgid "Support"
|
148 |
msgstr "Soporte"
|
149 |
|
327 |
msgid "Install Now"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: includes/forms.php:282
|
331 |
msgid "Authentication failed."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/forms.php:371
|
335 |
msgid "Click the BACK button on your browser and try again."
|
336 |
msgstr ""
|
337 |
|
languages/google-captcha-ru_RU.mo
CHANGED
Binary file
|
languages/google-captcha-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
@@ -18,12 +18,12 @@ msgstr ""
|
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-captcha.php:38 google-captcha.php:40 google-captcha.php:
|
22 |
#: includes/class-gglcptch-settings-tabs.php:147
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Настройки Google Captcha"
|
25 |
|
26 |
-
#: google-captcha.php:40 google-captcha.php:
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Настройки"
|
@@ -40,11 +40,11 @@ msgstr "Белый список"
|
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Обновить до Pro"
|
42 |
|
43 |
-
#: google-captcha.php:
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
|
46 |
|
47 |
-
#: google-captcha.php:
|
48 |
msgid ""
|
49 |
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
50 |
"reload this page."
|
@@ -52,63 +52,67 @@ msgstr ""
|
|
52 |
"Не удалось загрузить Google reCAPTCHA. Пожалуйста, проверьте ваше "
|
53 |
"подключение к сети Интернет и перезагрузите эту страницу."
|
54 |
|
55 |
-
#: google-captcha.php:
|
56 |
msgid "Warning"
|
57 |
msgstr "Внимание"
|
58 |
|
59 |
-
#: google-captcha.php:
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Вы в белом списке"
|
62 |
|
63 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
64 |
msgid "To use Google Captcha you must get the keys from"
|
65 |
msgstr "Чтобы использовать Google Captcha, вам необходимо получить ключи"
|
66 |
|
67 |
-
#: google-captcha.php:
|
68 |
msgid "here"
|
69 |
msgstr "здесь"
|
70 |
|
71 |
-
#: google-captcha.php:
|
72 |
msgid "and enter them on the"
|
73 |
msgstr "и вставить их на"
|
74 |
|
75 |
-
#: google-captcha.php:
|
76 |
msgid "plugin setting page"
|
77 |
msgstr "странице настроек плагина"
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
msgid "Error"
|
81 |
msgstr "Ошибка"
|
82 |
|
83 |
-
#: google-captcha.php:
|
84 |
msgid "User response is missing."
|
85 |
msgstr "Ответ пользователя отсутствует."
|
86 |
|
87 |
-
#: google-captcha.php:
|
88 |
msgid "Secret Key is invalid."
|
89 |
msgstr "Некорректный секретный ключ."
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "Check your domain configurations"
|
93 |
msgstr "Проверьте настройки вашего домена"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "and enter it again"
|
97 |
msgstr "и введите его снова"
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "Secret Key is missing."
|
101 |
msgstr "Секретный ключ отсутствует."
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "User response is invalid"
|
105 |
msgstr "Некорректный ответ пользователя"
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid "You have entered an incorrect reCAPTCHA value."
|
109 |
msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid ""
|
113 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
114 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
@@ -116,32 +120,32 @@ msgstr ""
|
|
116 |
"В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
|
117 |
"все лишние блоки reCAPTCHA для дальнейшей корректной работы."
|
118 |
|
119 |
-
#: google-captcha.php:
|
120 |
msgid "reCAPTCHA v3 test failed"
|
121 |
msgstr "Тест reCAPTCHA v3 не пройден"
|
122 |
|
123 |
-
#: google-captcha.php:
|
124 |
msgid "Please submit \"Test verification\""
|
125 |
msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
|
126 |
|
127 |
-
#: google-captcha.php:
|
128 |
msgid "Please complete the captcha and submit \"Test verification\""
|
129 |
msgstr ""
|
130 |
"Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
|
131 |
|
132 |
-
#: google-captcha.php:
|
133 |
msgid "Test verification"
|
134 |
msgstr "Тестирование проверки"
|
135 |
|
136 |
-
#: google-captcha.php:
|
137 |
msgid "The verification is successfully completed."
|
138 |
msgstr "Тестирование проверки успешно завершено."
|
139 |
|
140 |
-
#: google-captcha.php:
|
141 |
msgid "FAQ"
|
142 |
msgstr "FAQ"
|
143 |
|
144 |
-
#: google-captcha.php:
|
145 |
msgid "Support"
|
146 |
msgstr "Поддержка"
|
147 |
|
@@ -331,11 +335,11 @@ msgstr "Активировать"
|
|
331 |
msgid "Install Now"
|
332 |
msgstr "Установить сейчас"
|
333 |
|
334 |
-
#: includes/forms.php:
|
335 |
msgid "Authentication failed."
|
336 |
msgstr "Ошибка аутентификации."
|
337 |
|
338 |
-
#: includes/forms.php:
|
339 |
msgid "Click the BACK button on your browser and try again."
|
340 |
msgstr "Нажмите кнопку НАЗАД в вашем браузере и попытайтесь снова."
|
341 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-01-08 13:07+0200\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: google-captcha.php:38 google-captcha.php:40 google-captcha.php:449
|
22 |
#: includes/class-gglcptch-settings-tabs.php:147
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Настройки Google Captcha"
|
25 |
|
26 |
+
#: google-captcha.php:40 google-captcha.php:1080 google-captcha.php:1093
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Настройки"
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Обновить до Pro"
|
42 |
|
43 |
+
#: google-captcha.php:237
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
|
46 |
|
47 |
+
#: google-captcha.php:238
|
48 |
msgid ""
|
49 |
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
50 |
"reload this page."
|
52 |
"Не удалось загрузить Google reCAPTCHA. Пожалуйста, проверьте ваше "
|
53 |
"подключение к сети Интернет и перезагрузите эту страницу."
|
54 |
|
55 |
+
#: google-captcha.php:254
|
56 |
msgid "Warning"
|
57 |
msgstr "Внимание"
|
58 |
|
59 |
+
#: google-captcha.php:353
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Вы в белом списке"
|
62 |
|
63 |
+
#: google-captcha.php:450
|
64 |
+
msgid "Please enable JavaScript in your browser."
|
65 |
+
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
66 |
+
|
67 |
+
#: google-captcha.php:537 google-captcha.php:1115
|
68 |
msgid "To use Google Captcha you must get the keys from"
|
69 |
msgstr "Чтобы использовать Google Captcha, вам необходимо получить ключи"
|
70 |
|
71 |
+
#: google-captcha.php:538 google-captcha.php:1116
|
72 |
msgid "here"
|
73 |
msgstr "здесь"
|
74 |
|
75 |
+
#: google-captcha.php:539 google-captcha.php:1117
|
76 |
msgid "and enter them on the"
|
77 |
msgstr "и вставить их на"
|
78 |
|
79 |
+
#: google-captcha.php:541 google-captcha.php:1119
|
80 |
msgid "plugin setting page"
|
81 |
msgstr "странице настроек плагина"
|
82 |
|
83 |
+
#: google-captcha.php:847 includes/forms.php:369
|
84 |
msgid "Error"
|
85 |
msgstr "Ошибка"
|
86 |
|
87 |
+
#: google-captcha.php:972
|
88 |
msgid "User response is missing."
|
89 |
msgstr "Ответ пользователя отсутствует."
|
90 |
|
91 |
+
#: google-captcha.php:976 google-captcha.php:984
|
92 |
msgid "Secret Key is invalid."
|
93 |
msgstr "Некорректный секретный ключ."
|
94 |
|
95 |
+
#: google-captcha.php:977 google-captcha.php:985
|
96 |
msgid "Check your domain configurations"
|
97 |
msgstr "Проверьте настройки вашего домена"
|
98 |
|
99 |
+
#: google-captcha.php:978 google-captcha.php:986
|
100 |
msgid "and enter it again"
|
101 |
msgstr "и введите его снова"
|
102 |
|
103 |
+
#: google-captcha.php:981
|
104 |
msgid "Secret Key is missing."
|
105 |
msgstr "Секретный ключ отсутствует."
|
106 |
|
107 |
+
#: google-captcha.php:988
|
108 |
msgid "User response is invalid"
|
109 |
msgstr "Некорректный ответ пользователя"
|
110 |
|
111 |
+
#: google-captcha.php:989
|
112 |
msgid "You have entered an incorrect reCAPTCHA value."
|
113 |
msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
|
114 |
|
115 |
+
#: google-captcha.php:990
|
116 |
msgid ""
|
117 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
118 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
120 |
"В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
|
121 |
"все лишние блоки reCAPTCHA для дальнейшей корректной работы."
|
122 |
|
123 |
+
#: google-captcha.php:992
|
124 |
msgid "reCAPTCHA v3 test failed"
|
125 |
msgstr "Тест reCAPTCHA v3 не пройден"
|
126 |
|
127 |
+
#: google-captcha.php:1030
|
128 |
msgid "Please submit \"Test verification\""
|
129 |
msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
|
130 |
|
131 |
+
#: google-captcha.php:1032
|
132 |
msgid "Please complete the captcha and submit \"Test verification\""
|
133 |
msgstr ""
|
134 |
"Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
|
135 |
|
136 |
+
#: google-captcha.php:1039
|
137 |
msgid "Test verification"
|
138 |
msgstr "Тестирование проверки"
|
139 |
|
140 |
+
#: google-captcha.php:1060
|
141 |
msgid "The verification is successfully completed."
|
142 |
msgstr "Тестирование проверки успешно завершено."
|
143 |
|
144 |
+
#: google-captcha.php:1095
|
145 |
msgid "FAQ"
|
146 |
msgstr "FAQ"
|
147 |
|
148 |
+
#: google-captcha.php:1096
|
149 |
msgid "Support"
|
150 |
msgstr "Поддержка"
|
151 |
|
335 |
msgid "Install Now"
|
336 |
msgstr "Установить сейчас"
|
337 |
|
338 |
+
#: includes/forms.php:282
|
339 |
msgid "Authentication failed."
|
340 |
msgstr "Ошибка аутентификации."
|
341 |
|
342 |
+
#: includes/forms.php:371
|
343 |
msgid "Click the BACK button on your browser and try again."
|
344 |
msgstr "Нажмите кнопку НАЗАД в вашем браузере и попытайтесь снова."
|
345 |
|
languages/google-captcha-sr_RS.mo
CHANGED
Binary file
|
languages/google-captcha-sr_RS.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Team Link <teamlink@gmx.us>\n"
|
@@ -18,12 +18,12 @@ msgstr ""
|
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-captcha.php:38 google-captcha.php:40 google-captcha.php:
|
22 |
#: includes/class-gglcptch-settings-tabs.php:147
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Google Captcha Подешавања"
|
25 |
|
26 |
-
#: google-captcha.php:40 google-captcha.php:
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Подешавања"
|
@@ -40,11 +40,11 @@ msgstr "Бела листа"
|
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Пређи на Про"
|
42 |
|
43 |
-
#: google-captcha.php:
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Молимо сачекајте док се Google reCAPTCHA учита."
|
46 |
|
47 |
-
#: google-captcha.php:
|
48 |
msgid ""
|
49 |
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
50 |
"reload this page."
|
@@ -52,63 +52,67 @@ msgstr ""
|
|
52 |
"Није успело учитавање Google reCAPTCHA-e Молимо проверите Вашу интернет "
|
53 |
"конекцију и освежите страну."
|
54 |
|
55 |
-
#: google-captcha.php:
|
56 |
msgid "Warning"
|
57 |
msgstr "Упозорење"
|
58 |
|
59 |
-
#: google-captcha.php:
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Ви сте на белој листи"
|
62 |
|
63 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
64 |
msgid "To use Google Captcha you must get the keys from"
|
65 |
msgstr "Да бисте користили Google Captcha морате узети кључеве од"
|
66 |
|
67 |
-
#: google-captcha.php:
|
68 |
msgid "here"
|
69 |
msgstr "овде"
|
70 |
|
71 |
-
#: google-captcha.php:
|
72 |
msgid "and enter them on the"
|
73 |
msgstr "и унесите их на"
|
74 |
|
75 |
-
#: google-captcha.php:
|
76 |
msgid "plugin setting page"
|
77 |
msgstr "страна подешавања додатка"
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
msgid "Error"
|
81 |
msgstr "Грешка"
|
82 |
|
83 |
-
#: google-captcha.php:
|
84 |
msgid "User response is missing."
|
85 |
msgstr "Одговор корисника недостаје."
|
86 |
|
87 |
-
#: google-captcha.php:
|
88 |
msgid "Secret Key is invalid."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "Check your domain configurations"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "and enter it again"
|
97 |
msgstr "и унесите поново"
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "Secret Key is missing."
|
101 |
msgstr "Тајни кључ недостаје."
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "User response is invalid"
|
105 |
msgstr "Одговор корисника није исправан"
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid "You have entered an incorrect reCAPTCHA value."
|
109 |
msgstr "Унели сте нетачну reCAPTCHA вредност."
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid ""
|
113 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
114 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
@@ -116,31 +120,31 @@ msgstr ""
|
|
116 |
"Више од једне reCAPTCHA је нађено у тренутној форми. Молим вас да уклоните "
|
117 |
"сва непотребна reCAPTCHA поља како би форма радила исправно."
|
118 |
|
119 |
-
#: google-captcha.php:
|
120 |
msgid "reCAPTCHA v3 test failed"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: google-captcha.php:
|
124 |
msgid "Please submit \"Test verification\""
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: google-captcha.php:
|
128 |
msgid "Please complete the captcha and submit \"Test verification\""
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: google-captcha.php:
|
132 |
msgid "Test verification"
|
133 |
msgstr "Тестирај верификацију"
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
msgid "The verification is successfully completed."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: google-captcha.php:
|
140 |
msgid "FAQ"
|
141 |
msgstr "ЧПП"
|
142 |
|
143 |
-
#: google-captcha.php:
|
144 |
msgid "Support"
|
145 |
msgstr "Подршка"
|
146 |
|
@@ -323,11 +327,11 @@ msgstr "Активирај"
|
|
323 |
msgid "Install Now"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: includes/forms.php:
|
327 |
msgid "Authentication failed."
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/forms.php:
|
331 |
msgid "Click the BACK button on your browser and try again."
|
332 |
msgstr ""
|
333 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-01-08 13:07+0200\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Team Link <teamlink@gmx.us>\n"
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: google-captcha.php:38 google-captcha.php:40 google-captcha.php:449
|
22 |
#: includes/class-gglcptch-settings-tabs.php:147
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Google Captcha Подешавања"
|
25 |
|
26 |
+
#: google-captcha.php:40 google-captcha.php:1080 google-captcha.php:1093
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Подешавања"
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Пређи на Про"
|
42 |
|
43 |
+
#: google-captcha.php:237
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Молимо сачекајте док се Google reCAPTCHA учита."
|
46 |
|
47 |
+
#: google-captcha.php:238
|
48 |
msgid ""
|
49 |
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
50 |
"reload this page."
|
52 |
"Није успело учитавање Google reCAPTCHA-e Молимо проверите Вашу интернет "
|
53 |
"конекцију и освежите страну."
|
54 |
|
55 |
+
#: google-captcha.php:254
|
56 |
msgid "Warning"
|
57 |
msgstr "Упозорење"
|
58 |
|
59 |
+
#: google-captcha.php:353
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Ви сте на белој листи"
|
62 |
|
63 |
+
#: google-captcha.php:450
|
64 |
+
msgid "Please enable JavaScript in your browser."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: google-captcha.php:537 google-captcha.php:1115
|
68 |
msgid "To use Google Captcha you must get the keys from"
|
69 |
msgstr "Да бисте користили Google Captcha морате узети кључеве од"
|
70 |
|
71 |
+
#: google-captcha.php:538 google-captcha.php:1116
|
72 |
msgid "here"
|
73 |
msgstr "овде"
|
74 |
|
75 |
+
#: google-captcha.php:539 google-captcha.php:1117
|
76 |
msgid "and enter them on the"
|
77 |
msgstr "и унесите их на"
|
78 |
|
79 |
+
#: google-captcha.php:541 google-captcha.php:1119
|
80 |
msgid "plugin setting page"
|
81 |
msgstr "страна подешавања додатка"
|
82 |
|
83 |
+
#: google-captcha.php:847 includes/forms.php:369
|
84 |
msgid "Error"
|
85 |
msgstr "Грешка"
|
86 |
|
87 |
+
#: google-captcha.php:972
|
88 |
msgid "User response is missing."
|
89 |
msgstr "Одговор корисника недостаје."
|
90 |
|
91 |
+
#: google-captcha.php:976 google-captcha.php:984
|
92 |
msgid "Secret Key is invalid."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: google-captcha.php:977 google-captcha.php:985
|
96 |
msgid "Check your domain configurations"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: google-captcha.php:978 google-captcha.php:986
|
100 |
msgid "and enter it again"
|
101 |
msgstr "и унесите поново"
|
102 |
|
103 |
+
#: google-captcha.php:981
|
104 |
msgid "Secret Key is missing."
|
105 |
msgstr "Тајни кључ недостаје."
|
106 |
|
107 |
+
#: google-captcha.php:988
|
108 |
msgid "User response is invalid"
|
109 |
msgstr "Одговор корисника није исправан"
|
110 |
|
111 |
+
#: google-captcha.php:989
|
112 |
msgid "You have entered an incorrect reCAPTCHA value."
|
113 |
msgstr "Унели сте нетачну reCAPTCHA вредност."
|
114 |
|
115 |
+
#: google-captcha.php:990
|
116 |
msgid ""
|
117 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
118 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
120 |
"Више од једне reCAPTCHA је нађено у тренутној форми. Молим вас да уклоните "
|
121 |
"сва непотребна reCAPTCHA поља како би форма радила исправно."
|
122 |
|
123 |
+
#: google-captcha.php:992
|
124 |
msgid "reCAPTCHA v3 test failed"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: google-captcha.php:1030
|
128 |
msgid "Please submit \"Test verification\""
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: google-captcha.php:1032
|
132 |
msgid "Please complete the captcha and submit \"Test verification\""
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: google-captcha.php:1039
|
136 |
msgid "Test verification"
|
137 |
msgstr "Тестирај верификацију"
|
138 |
|
139 |
+
#: google-captcha.php:1060
|
140 |
msgid "The verification is successfully completed."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: google-captcha.php:1095
|
144 |
msgid "FAQ"
|
145 |
msgstr "ЧПП"
|
146 |
|
147 |
+
#: google-captcha.php:1096
|
148 |
msgid "Support"
|
149 |
msgstr "Подршка"
|
150 |
|
327 |
msgid "Install Now"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: includes/forms.php:282
|
331 |
msgid "Authentication failed."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/forms.php:371
|
335 |
msgid "Click the BACK button on your browser and try again."
|
336 |
msgstr ""
|
337 |
|
languages/google-captcha-uk.mo
CHANGED
Binary file
|
languages/google-captcha-uk.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
@@ -18,12 +18,12 @@ msgstr ""
|
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-captcha.php:38 google-captcha.php:40 google-captcha.php:
|
22 |
#: includes/class-gglcptch-settings-tabs.php:147
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Налаштування Google Captcha"
|
25 |
|
26 |
-
#: google-captcha.php:40 google-captcha.php:
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Налаштування"
|
@@ -40,11 +40,11 @@ msgstr "Білий список"
|
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Оновити до Pro"
|
42 |
|
43 |
-
#: google-captcha.php:
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
|
46 |
|
47 |
-
#: google-captcha.php:
|
48 |
msgid ""
|
49 |
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
50 |
"reload this page."
|
@@ -52,63 +52,67 @@ msgstr ""
|
|
52 |
"Не вдалося завантажити Google reCAPTCHA. Будь ласка, перевірте підключення "
|
53 |
"до Інтернету та оновіть цю сторінку."
|
54 |
|
55 |
-
#: google-captcha.php:
|
56 |
msgid "Warning"
|
57 |
msgstr "Увага"
|
58 |
|
59 |
-
#: google-captcha.php:
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Ви знаходитесь в білому списку"
|
62 |
|
63 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
64 |
msgid "To use Google Captcha you must get the keys from"
|
65 |
msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
|
66 |
|
67 |
-
#: google-captcha.php:
|
68 |
msgid "here"
|
69 |
msgstr "тут"
|
70 |
|
71 |
-
#: google-captcha.php:
|
72 |
msgid "and enter them on the"
|
73 |
msgstr "і вставте їх у"
|
74 |
|
75 |
-
#: google-captcha.php:
|
76 |
msgid "plugin setting page"
|
77 |
msgstr "сторінку налаштувань плагіну"
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
msgid "Error"
|
81 |
msgstr "Помилка"
|
82 |
|
83 |
-
#: google-captcha.php:
|
84 |
msgid "User response is missing."
|
85 |
msgstr "Відповідь користувача відсутня."
|
86 |
|
87 |
-
#: google-captcha.php:
|
88 |
msgid "Secret Key is invalid."
|
89 |
msgstr "Секретний ключ некоректний."
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "Check your domain configurations"
|
93 |
msgstr "Перевірте конфігурацію вашого домену"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "and enter it again"
|
97 |
msgstr "і введіть його знову"
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "Secret Key is missing."
|
101 |
msgstr "Секретний ключ відсутній."
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "User response is invalid"
|
105 |
msgstr "Некоректна відповідь користувача"
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid "You have entered an incorrect reCAPTCHA value."
|
109 |
msgstr "Ви ввели невірне значення reCAPTCHA."
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid ""
|
113 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
114 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
@@ -116,32 +120,32 @@ msgstr ""
|
|
116 |
"В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
|
117 |
"усі зайві блоки reCAPTCHA для коректної подальшої роботи."
|
118 |
|
119 |
-
#: google-captcha.php:
|
120 |
msgid "reCAPTCHA v3 test failed"
|
121 |
msgstr "Тест reCAPTCHA v3 не пройдений"
|
122 |
|
123 |
-
#: google-captcha.php:
|
124 |
msgid "Please submit \"Test verification\""
|
125 |
msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
|
126 |
|
127 |
-
#: google-captcha.php:
|
128 |
msgid "Please complete the captcha and submit \"Test verification\""
|
129 |
msgstr ""
|
130 |
"Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
|
131 |
|
132 |
-
#: google-captcha.php:
|
133 |
msgid "Test verification"
|
134 |
msgstr "Тестування перевірки"
|
135 |
|
136 |
-
#: google-captcha.php:
|
137 |
msgid "The verification is successfully completed."
|
138 |
msgstr "Перевірка завершена успішно."
|
139 |
|
140 |
-
#: google-captcha.php:
|
141 |
msgid "FAQ"
|
142 |
msgstr "FAQ"
|
143 |
|
144 |
-
#: google-captcha.php:
|
145 |
msgid "Support"
|
146 |
msgstr "Техпідтримка"
|
147 |
|
@@ -330,11 +334,11 @@ msgstr "Активувати"
|
|
330 |
msgid "Install Now"
|
331 |
msgstr "Встановити зараз"
|
332 |
|
333 |
-
#: includes/forms.php:
|
334 |
msgid "Authentication failed."
|
335 |
msgstr "Помилка аутентифікації."
|
336 |
|
337 |
-
#: includes/forms.php:
|
338 |
msgid "Click the BACK button on your browser and try again."
|
339 |
msgstr "Натисніть кнопку НАЗАД у браузері та спробуйте ще раз."
|
340 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-01-08 13:08+0200\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: google-captcha.php:38 google-captcha.php:40 google-captcha.php:449
|
22 |
#: includes/class-gglcptch-settings-tabs.php:147
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Налаштування Google Captcha"
|
25 |
|
26 |
+
#: google-captcha.php:40 google-captcha.php:1080 google-captcha.php:1093
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Налаштування"
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Оновити до Pro"
|
42 |
|
43 |
+
#: google-captcha.php:237
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
|
46 |
|
47 |
+
#: google-captcha.php:238
|
48 |
msgid ""
|
49 |
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
50 |
"reload this page."
|
52 |
"Не вдалося завантажити Google reCAPTCHA. Будь ласка, перевірте підключення "
|
53 |
"до Інтернету та оновіть цю сторінку."
|
54 |
|
55 |
+
#: google-captcha.php:254
|
56 |
msgid "Warning"
|
57 |
msgstr "Увага"
|
58 |
|
59 |
+
#: google-captcha.php:353
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Ви знаходитесь в білому списку"
|
62 |
|
63 |
+
#: google-captcha.php:450
|
64 |
+
msgid "Please enable JavaScript in your browser."
|
65 |
+
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
66 |
+
|
67 |
+
#: google-captcha.php:537 google-captcha.php:1115
|
68 |
msgid "To use Google Captcha you must get the keys from"
|
69 |
msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
|
70 |
|
71 |
+
#: google-captcha.php:538 google-captcha.php:1116
|
72 |
msgid "here"
|
73 |
msgstr "тут"
|
74 |
|
75 |
+
#: google-captcha.php:539 google-captcha.php:1117
|
76 |
msgid "and enter them on the"
|
77 |
msgstr "і вставте їх у"
|
78 |
|
79 |
+
#: google-captcha.php:541 google-captcha.php:1119
|
80 |
msgid "plugin setting page"
|
81 |
msgstr "сторінку налаштувань плагіну"
|
82 |
|
83 |
+
#: google-captcha.php:847 includes/forms.php:369
|
84 |
msgid "Error"
|
85 |
msgstr "Помилка"
|
86 |
|
87 |
+
#: google-captcha.php:972
|
88 |
msgid "User response is missing."
|
89 |
msgstr "Відповідь користувача відсутня."
|
90 |
|
91 |
+
#: google-captcha.php:976 google-captcha.php:984
|
92 |
msgid "Secret Key is invalid."
|
93 |
msgstr "Секретний ключ некоректний."
|
94 |
|
95 |
+
#: google-captcha.php:977 google-captcha.php:985
|
96 |
msgid "Check your domain configurations"
|
97 |
msgstr "Перевірте конфігурацію вашого домену"
|
98 |
|
99 |
+
#: google-captcha.php:978 google-captcha.php:986
|
100 |
msgid "and enter it again"
|
101 |
msgstr "і введіть його знову"
|
102 |
|
103 |
+
#: google-captcha.php:981
|
104 |
msgid "Secret Key is missing."
|
105 |
msgstr "Секретний ключ відсутній."
|
106 |
|
107 |
+
#: google-captcha.php:988
|
108 |
msgid "User response is invalid"
|
109 |
msgstr "Некоректна відповідь користувача"
|
110 |
|
111 |
+
#: google-captcha.php:989
|
112 |
msgid "You have entered an incorrect reCAPTCHA value."
|
113 |
msgstr "Ви ввели невірне значення reCAPTCHA."
|
114 |
|
115 |
+
#: google-captcha.php:990
|
116 |
msgid ""
|
117 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
118 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
120 |
"В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
|
121 |
"усі зайві блоки reCAPTCHA для коректної подальшої роботи."
|
122 |
|
123 |
+
#: google-captcha.php:992
|
124 |
msgid "reCAPTCHA v3 test failed"
|
125 |
msgstr "Тест reCAPTCHA v3 не пройдений"
|
126 |
|
127 |
+
#: google-captcha.php:1030
|
128 |
msgid "Please submit \"Test verification\""
|
129 |
msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
|
130 |
|
131 |
+
#: google-captcha.php:1032
|
132 |
msgid "Please complete the captcha and submit \"Test verification\""
|
133 |
msgstr ""
|
134 |
"Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
|
135 |
|
136 |
+
#: google-captcha.php:1039
|
137 |
msgid "Test verification"
|
138 |
msgstr "Тестування перевірки"
|
139 |
|
140 |
+
#: google-captcha.php:1060
|
141 |
msgid "The verification is successfully completed."
|
142 |
msgstr "Перевірка завершена успішно."
|
143 |
|
144 |
+
#: google-captcha.php:1095
|
145 |
msgid "FAQ"
|
146 |
msgstr "FAQ"
|
147 |
|
148 |
+
#: google-captcha.php:1096
|
149 |
msgid "Support"
|
150 |
msgstr "Техпідтримка"
|
151 |
|
334 |
msgid "Install Now"
|
335 |
msgstr "Встановити зараз"
|
336 |
|
337 |
+
#: includes/forms.php:282
|
338 |
msgid "Authentication failed."
|
339 |
msgstr "Помилка аутентифікації."
|
340 |
|
341 |
+
#: includes/forms.php:371
|
342 |
msgid "Click the BACK button on your browser and try again."
|
343 |
msgstr "Натисніть кнопку НАЗАД у браузері та спробуйте ще раз."
|
344 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: https://bestwebsoft.com/donate/
|
4 |
Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha, recaptcha version3
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to: 5.0.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -259,6 +259,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
259 |
|
260 |
== Changelog ==
|
261 |
|
|
|
|
|
|
|
|
|
262 |
= V1.39 - 20.12.2018 =
|
263 |
* Update : All functionality was updated for WordPress 5.0.1.
|
264 |
|
@@ -434,6 +438,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
434 |
|
435 |
== Upgrade Notice ==
|
436 |
|
|
|
|
|
|
|
|
|
437 |
= V1.39 =
|
438 |
* The compatibility with new WordPress version updated.
|
439 |
|
3 |
Donate link: https://bestwebsoft.com/donate/
|
4 |
Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha, recaptcha version3
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 5.0.3
|
7 |
+
Stable tag: 1.40
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
259 |
|
260 |
== Changelog ==
|
261 |
|
262 |
+
= V1.40 - 18.01.2019 =
|
263 |
+
* Update : All functionality was updated for WordPress 5.0.3.
|
264 |
+
* Update : The enqueueing of styles and scripts has been improved.
|
265 |
+
|
266 |
= V1.39 - 20.12.2018 =
|
267 |
* Update : All functionality was updated for WordPress 5.0.1.
|
268 |
|
438 |
|
439 |
== Upgrade Notice ==
|
440 |
|
441 |
+
= V1.40 =
|
442 |
+
* The compatibility with new WordPress version updated.
|
443 |
+
* Functionality improved.
|
444 |
+
|
445 |
= V1.39 =
|
446 |
* The compatibility with new WordPress version updated.
|
447 |
|
screenshot-7.png
CHANGED
Binary file
|
screenshot-8.png
CHANGED
Binary file
|