Version Description
- 16.07.2019 =
- Bugfix : The bug with "Disabled Submit Button" option in several forms on the page has been fixed.
- Bugfix : The bug with custom forms has been fixed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Captcha (reCAPTCHA) by BestWebSoft |
Version | 1.45 |
Comparing to | |
See all releases |
Code changes from version 1.44 to 1.45
- google-captcha.php +14 -8
- includes/pro_banners.php +1 -1
- js/admin_script.js +29 -6
- js/script.js +2 -2
- languages/google-captcha-cs_CZ.po +88 -71
- languages/google-captcha-es_ES.po +80 -70
- languages/google-captcha-ru_RU.mo +0 -0
- languages/google-captcha-ru_RU.po +36 -36
- languages/google-captcha-sr_RS.po +33 -33
- languages/google-captcha-uk.mo +0 -0
- languages/google-captcha-uk.po +36 -42
- readme.txt +9 -2
google-captcha.php
CHANGED
@@ -6,7 +6,7 @@ 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 |
*/
|
@@ -162,6 +162,10 @@ if ( ! function_exists( 'gglcptch_add_admin_script_styles' ) ) {
|
|
162 |
if ( isset( $_REQUEST['page'] ) && ( 'google-captcha.php' == $_REQUEST['page'] || 'google-captcha-whitelist.php' == $_REQUEST['page'] ) ) {
|
163 |
wp_enqueue_style( 'gglcptch_stylesheet', plugins_url( 'css/style.css', __FILE__ ), array(), $gglcptch_plugin_info['Version'] );
|
164 |
wp_enqueue_script( 'gglcptch_admin_script', plugins_url( 'js/admin_script.js', __FILE__ ), array( 'jquery', 'jquery-ui-accordion' ), $gglcptch_plugin_info['Version'] );
|
|
|
|
|
|
|
|
|
165 |
|
166 |
bws_enqueue_settings_scripts();
|
167 |
bws_plugins_include_codemirror();
|
@@ -513,10 +517,12 @@ if ( ! function_exists( 'gglcptch_is_recaptcha_required' ) ) {
|
|
513 |
}
|
514 |
}
|
515 |
|
516 |
-
$result =
|
517 |
-
|
518 |
-
(
|
519 |
-
|
|
|
|
|
520 |
|
521 |
return $result;
|
522 |
}
|
@@ -554,9 +560,9 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
554 |
|
555 |
$content .= '<div class="gglcptch gglcptch_' . $gglcptch_options['recaptcha_version'] . '">';
|
556 |
|
557 |
-
if ( $gglcptch_options['hide_badge'] ) {
|
558 |
$content .= sprintf(
|
559 |
-
'<div>%s<a href="https://policies.google.com/privacy">%s</a>%s<a href="https://policies.google.com/terms">%s</a>%s</div>',
|
560 |
__( 'This site is protected by reCAPTCHA and the Google ', 'google-captcha' ),
|
561 |
__( 'Privacy Policy', 'google-captcha' ),
|
562 |
__( ' and ', 'google-captcha' ),
|
@@ -1196,4 +1202,4 @@ add_filter( 'plugin_row_meta', 'gglcptch_links', 10, 2 );
|
|
1196 |
add_action( 'admin_notices', 'gglcptch_plugin_banner' );
|
1197 |
|
1198 |
add_action( 'wp_ajax_gglcptch-test-keys', 'gglcptch_test_keys' );
|
1199 |
-
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.45
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv3 or later
|
12 |
*/
|
162 |
if ( isset( $_REQUEST['page'] ) && ( 'google-captcha.php' == $_REQUEST['page'] || 'google-captcha-whitelist.php' == $_REQUEST['page'] ) ) {
|
163 |
wp_enqueue_style( 'gglcptch_stylesheet', plugins_url( 'css/style.css', __FILE__ ), array(), $gglcptch_plugin_info['Version'] );
|
164 |
wp_enqueue_script( 'gglcptch_admin_script', plugins_url( 'js/admin_script.js', __FILE__ ), array( 'jquery', 'jquery-ui-accordion' ), $gglcptch_plugin_info['Version'] );
|
165 |
+
wp_localize_script( 'gglcptch_admin_script', 'gglcptchScriptVars', array(
|
166 |
+
'version' => $gglcptch_options['recaptcha_version'],
|
167 |
+
'disable' => $gglcptch_options['disable_submit_button']
|
168 |
+
) );
|
169 |
|
170 |
bws_enqueue_settings_scripts();
|
171 |
bws_plugins_include_codemirror();
|
517 |
}
|
518 |
}
|
519 |
|
520 |
+
$result =
|
521 |
+
! isset( $gglcptch_options[ $form_slug ] ) ||
|
522 |
+
(
|
523 |
+
! empty( $gglcptch_options[ $form_slug ] ) &&
|
524 |
+
( ! $is_user_logged_in || ! gglcptch_is_hidden_for_role() )
|
525 |
+
);
|
526 |
|
527 |
return $result;
|
528 |
}
|
560 |
|
561 |
$content .= '<div class="gglcptch gglcptch_' . $gglcptch_options['recaptcha_version'] . '">';
|
562 |
|
563 |
+
if ( $gglcptch_options['hide_badge'] && 'v2' != $gglcptch_options['recaptcha_version'] ) {
|
564 |
$content .= sprintf(
|
565 |
+
'<div>%s<a href="https://policies.google.com/privacy" target="_blank">%s</a>%s<a href="https://policies.google.com/terms" target="_blank">%s</a>%s</div>',
|
566 |
__( 'This site is protected by reCAPTCHA and the Google ', 'google-captcha' ),
|
567 |
__( 'Privacy Policy', 'google-captcha' ),
|
568 |
__( ' and ', 'google-captcha' ),
|
1202 |
add_action( 'admin_notices', 'gglcptch_plugin_banner' );
|
1203 |
|
1204 |
add_action( 'wp_ajax_gglcptch-test-keys', 'gglcptch_test_keys' );
|
1205 |
+
add_action( 'wp_ajax_gglcptch_test_keys_verification', 'gglcptch_test_keys_verification' );
|
includes/pro_banners.php
CHANGED
@@ -197,4 +197,4 @@ if ( ! function_exists( 'gglcptch_additional_settings_banner' ) ) {
|
|
197 |
</tr>
|
198 |
</table>
|
199 |
<?php }
|
200 |
-
}
|
197 |
</tr>
|
198 |
</table>
|
199 |
<?php }
|
200 |
+
}
|
js/admin_script.js
CHANGED
@@ -70,7 +70,14 @@
|
|
70 |
$( '.gglcptch-test-results' ).remove();
|
71 |
$( '#gglcptch-test-block' ).load( $( this ).prop( 'href' ), function() {
|
72 |
$( '.gglcptch_v1, .gglcptch_v2, .gglcptch_invisible' ).each( function() {
|
73 |
-
var container = $( this ).find( '.gglcptch_recaptcha' ).attr( 'id' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
if ( $( this ).is( ':visible' ) ) {
|
75 |
gglcptch.display( container );
|
76 |
if ( $( this ).hasClass( 'gglcptch_invisible' ) ) {
|
@@ -83,11 +90,27 @@
|
|
83 |
|
84 |
e.stopPropagation();
|
85 |
$( '#gglcptch-test-keys' ).hide();
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
return false;
|
92 |
} );
|
93 |
|
70 |
$( '.gglcptch-test-results' ).remove();
|
71 |
$( '#gglcptch-test-block' ).load( $( this ).prop( 'href' ), function() {
|
72 |
$( '.gglcptch_v1, .gglcptch_v2, .gglcptch_invisible' ).each( function() {
|
73 |
+
var container = $( this ).find( '.gglcptch_recaptcha' ).attr( 'id' ),
|
74 |
+
containerData = $( this ).find( '.gglcptch_recaptcha' );
|
75 |
+
|
76 |
+
// add data-callback to disable submit
|
77 |
+
if ( 'v2' === gglcptchScriptVars.version && '1' === gglcptchScriptVars.disable ) {
|
78 |
+
containerData.attr( 'data-callback', 'recaptchaCallback' );
|
79 |
+
}
|
80 |
+
|
81 |
if ( $( this ).is( ':visible' ) ) {
|
82 |
gglcptch.display( container );
|
83 |
if ( $( this ).hasClass( 'gglcptch_invisible' ) ) {
|
90 |
|
91 |
e.stopPropagation();
|
92 |
$( '#gglcptch-test-keys' ).hide();
|
93 |
+
|
94 |
+
// get callback for option disabled submit
|
95 |
+
function recaptchaCallback() {
|
96 |
+
$( 'form input:submit, form button' ).prop( 'disabled', false );
|
97 |
+
}
|
98 |
+
|
99 |
+
// remove disabled attr
|
100 |
+
function removeDisabled() {
|
101 |
+
if ( $( '#gglcptch_test_keys_verification' ).length > 0 ) {
|
102 |
+
$( '#gglcptch_test_keys_verification' ).removeAttr( 'disabled' );
|
103 |
+
}
|
104 |
+
}
|
105 |
+
|
106 |
+
if ( 'v2' === gglcptchScriptVars.version ) {
|
107 |
+
if ( '1' === gglcptchScriptVars.disable ) {
|
108 |
+
window.recaptchaCallback = recaptchaCallback;
|
109 |
+
} else {
|
110 |
+
setTimeout( removeDisabled, 8000 );
|
111 |
+
}
|
112 |
+
}
|
113 |
+
|
114 |
return false;
|
115 |
} );
|
116 |
|
js/script.js
CHANGED
@@ -101,8 +101,8 @@
|
|
101 |
}
|
102 |
|
103 |
// add attribute disable to the submit
|
104 |
-
if ( 'v2' === gglcptch.options.version && gglcptch.options.disable ) {
|
105 |
-
|
106 |
}
|
107 |
|
108 |
function storeEvents( el ) {
|
101 |
}
|
102 |
|
103 |
// add attribute disable to the submit
|
104 |
+
if ( 'v2' === gglcptch.options.version && '1' === gglcptch.options.disable ) {
|
105 |
+
$( '#' + container ).closest( 'form' ).find( 'input:submit, button' ).prop( 'disabled', true );
|
106 |
}
|
107 |
|
108 |
function storeEvents( el ) {
|
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: 2019-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
@@ -17,33 +17,33 @@ 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:39 google-captcha.php:
|
21 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Nastavení Google Captcha"
|
24 |
|
25 |
-
#: google-captcha.php:
|
26 |
#: includes/class-gglcptch-settings-tabs.php:25
|
27 |
msgid "Settings"
|
28 |
msgstr "Nastavení"
|
29 |
|
30 |
-
#: google-captcha.php:
|
31 |
msgid "Google Captcha Whitelist"
|
32 |
msgstr "Google Captcha seznam povolených"
|
33 |
|
34 |
-
#: google-captcha.php:
|
35 |
msgid "Whitelist"
|
36 |
msgstr "Seznam povolených"
|
37 |
|
38 |
-
#: google-captcha.php:
|
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,87 +51,87 @@ 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 "Please enable JavaScript in your browser."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: google-captcha.php:
|
67 |
msgid "This site is protected by reCAPTCHA and the Google "
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: google-captcha.php:
|
71 |
msgid "Privacy Policy"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: google-captcha.php:
|
75 |
msgid " and "
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: google-captcha.php:
|
79 |
msgid "Terms of Service"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: google-captcha.php:
|
83 |
msgid " apply."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: google-captcha.php:
|
87 |
msgid "To use Google Captcha you must get the keys from"
|
88 |
msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
msgid "here"
|
92 |
msgstr "zde"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "and enter them on the"
|
96 |
msgstr "a zadejte je na"
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
msgid "plugin setting page"
|
100 |
msgstr "stránce nastavení pluginu"
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "Error"
|
104 |
msgstr "Chyba"
|
105 |
|
106 |
-
#: google-captcha.php:
|
107 |
msgid "User response is missing."
|
108 |
msgstr "Chybí odezva uživatele."
|
109 |
|
110 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
111 |
msgid "Secret Key is invalid."
|
112 |
msgstr "Tajný klíč je neplatný."
|
113 |
|
114 |
-
#: google-captcha.php:
|
115 |
msgid "Check your domain configurations"
|
116 |
msgstr "Zkontrolujte konfiguraci vaší domény"
|
117 |
|
118 |
-
#: google-captcha.php:
|
119 |
msgid "and enter it again"
|
120 |
msgstr "a zadejte jej znovu"
|
121 |
|
122 |
-
#: google-captcha.php:
|
123 |
-
msgid "Secret Key is missing."
|
124 |
-
msgstr "Tajný klíč chybí."
|
125 |
-
|
126 |
-
#: google-captcha.php:984
|
127 |
msgid "User response is invalid"
|
128 |
msgstr "Neplatná odezva uživatele"
|
129 |
|
130 |
-
#: google-captcha.php:
|
131 |
msgid "You have entered an incorrect reCAPTCHA value."
|
132 |
msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
msgid ""
|
136 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
137 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
@@ -139,33 +139,33 @@ msgstr ""
|
|
139 |
"V aktuálním formuláři byla zjištěna více než jedna reCAPTCHA. Pro správnou "
|
140 |
"funkcionalitu, odstraňte všechny nepotřebné reCAPTCHA pole."
|
141 |
|
142 |
-
#: google-captcha.php:
|
143 |
msgid "reCAPTCHA v3 test failed"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: google-captcha.php:
|
147 |
msgid "Please submit \"Test verification\""
|
148 |
msgstr "Odešlete „Test ověření“"
|
149 |
|
150 |
-
#: google-captcha.php:
|
151 |
msgid "Please complete the captcha and submit \"Test verification\""
|
152 |
msgstr "Doplňte captcha a odešlete „Test ověření“"
|
153 |
|
154 |
-
#: google-captcha.php:
|
155 |
msgid "Test verification"
|
156 |
msgstr "Test ověření"
|
157 |
|
158 |
-
#: google-captcha.php:
|
159 |
msgid "The verification is successfully completed."
|
160 |
msgstr "Ověření je úspěšně dokončeno."
|
161 |
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "FAQ"
|
164 |
msgstr ""
|
165 |
"Časté dotazy <acronym title=\\\"Frequently asked questions\\\">(FAQ)</"
|
166 |
"acronym>"
|
167 |
|
168 |
-
#: google-captcha.php:
|
169 |
msgid "Support"
|
170 |
msgstr "Podpora"
|
171 |
|
@@ -211,15 +211,15 @@ msgstr "VAROVÁNÍ: Captcha se nezobrazí, dokud nebudou vyplněna pole s klíč
|
|
211 |
msgid "Enter secret key"
|
212 |
msgstr "Vložte tajný klíč"
|
213 |
|
214 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
215 |
msgid "Settings saved."
|
216 |
msgstr "Nastavení uloženo."
|
217 |
|
218 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
219 |
msgid "Authentication"
|
220 |
msgstr "Autentizace"
|
221 |
|
222 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
223 |
msgid ""
|
224 |
"Register your website with Google to get required API keys and enter them "
|
225 |
"below."
|
@@ -227,78 +227,78 @@ msgstr ""
|
|
227 |
"Zaregistrujte svůj web na Google, abyste získali požadované API klíče a "
|
228 |
"zadejte je níže."
|
229 |
|
230 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
231 |
msgid "Get the API Keys"
|
232 |
msgstr "Získat API klíče"
|
233 |
|
234 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
235 |
msgid "Test reCAPTCHA"
|
236 |
msgstr "Vyzkoušet reCAPTCHA"
|
237 |
|
238 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
239 |
msgid "General"
|
240 |
msgstr "Obecné"
|
241 |
|
242 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
243 |
msgid "reCAPTCHA Version"
|
244 |
msgstr "reCAPTCHA verze"
|
245 |
|
246 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
247 |
msgid "Enable reCAPTCHA for"
|
248 |
msgstr "Povolit reCAPTCHA pro"
|
249 |
|
250 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
251 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
252 |
msgid "Close"
|
253 |
msgstr "Zavřít"
|
254 |
|
255 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
256 |
msgid "Hide reCAPTCHA for"
|
257 |
msgstr "Skrýt reCAPTCHA pro"
|
258 |
|
259 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
260 |
#, fuzzy
|
261 |
#| msgid "Hide reCAPTCHA for"
|
262 |
msgid "Hide reCAPTCHA Badge"
|
263 |
msgstr "Skrýt reCAPTCHA pro"
|
264 |
|
265 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
266 |
msgid "Enable to hide reCAPTCHA Badge for Version 3 and Invisble reCAPTCHA."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
270 |
msgid "Theme"
|
271 |
msgstr "Šablona"
|
272 |
|
273 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
274 |
msgid "Light"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
278 |
msgid "Dark"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
282 |
msgid "Score"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
286 |
msgid "Set the minimum verification score from 0 to 1"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
290 |
msgid "Whitelist Notification"
|
291 |
msgstr "Upozornění na seznam povolených"
|
292 |
|
293 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
294 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
295 |
msgstr "Tato zpráva se bude zobrazovat namísto reCAPTCHA."
|
296 |
|
297 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
298 |
-
msgid "
|
299 |
-
msgstr "
|
300 |
|
301 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
302 |
msgid ""
|
303 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
304 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
@@ -307,7 +307,24 @@ msgstr ""
|
|
307 |
"možnost nepoužívejte, pokud se zobrazuje zpráva „Nepodařilo se načíst "
|
308 |
"Google reCAPTCHA“)."
|
309 |
|
310 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
msgid ""
|
312 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
313 |
"regenerate Site and Secret keys if necessary."
|
@@ -315,11 +332,11 @@ msgstr ""
|
|
315 |
"Byla změněna verze reCAPTCHA. Klikněte na „Vyzkoušet reCAPTCHA“ "
|
316 |
"a znovu vygenerujte tajné a webové klíče, je-li to nezbytné."
|
317 |
|
318 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
319 |
msgid "Google Captcha Shortcode"
|
320 |
msgstr "Zkrácený kód Google Captcha"
|
321 |
|
322 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
323 |
msgid ""
|
324 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
325 |
msgstr ""
|
@@ -362,19 +379,19 @@ msgstr "Vlastní formuláře"
|
|
362 |
msgid "Google Captcha Plugin"
|
363 |
msgstr "Plugin Google Captcha"
|
364 |
|
365 |
-
#: includes/forms.php:
|
366 |
msgid "Activate"
|
367 |
msgstr "Aktivovat"
|
368 |
|
369 |
-
#: includes/forms.php:
|
370 |
msgid "Install Now"
|
371 |
msgstr "Instalovat nyní"
|
372 |
|
373 |
-
#: includes/forms.php:
|
374 |
msgid "Authentication failed."
|
375 |
msgstr "Ověření selhalo."
|
376 |
|
377 |
-
#: includes/forms.php:
|
378 |
msgid "Click the BACK button on your browser and try again."
|
379 |
msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu."
|
380 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-07-15 14:38+0300\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:39 google-captcha.php:49 google-captcha.php:489
|
21 |
+
#: includes/class-gglcptch-settings-tabs.php:149
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Nastavení Google Captcha"
|
24 |
|
25 |
+
#: google-captcha.php:50 google-captcha.php:1074 google-captcha.php:1087
|
26 |
#: includes/class-gglcptch-settings-tabs.php:25
|
27 |
msgid "Settings"
|
28 |
msgstr "Nastavení"
|
29 |
|
30 |
+
#: google-captcha.php:58 includes/whitelist.php:46
|
31 |
msgid "Google Captcha Whitelist"
|
32 |
msgstr "Google Captcha seznam povolených"
|
33 |
|
34 |
+
#: google-captcha.php:59
|
35 |
msgid "Whitelist"
|
36 |
msgstr "Seznam povolených"
|
37 |
|
38 |
+
#: google-captcha.php:76 includes/pro_banners.php:29
|
39 |
msgid "Upgrade to Pro"
|
40 |
msgstr "Aktualizovat na Pro"
|
41 |
|
42 |
+
#: google-captcha.php:268
|
43 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
44 |
msgstr "Počkejte, než se Google reCAPTCHA načte."
|
45 |
|
46 |
+
#: google-captcha.php:269
|
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:285
|
55 |
msgid "Warning"
|
56 |
msgstr "Upozornění"
|
57 |
|
58 |
+
#: google-captcha.php:393
|
59 |
msgid "You are in the whitelist"
|
60 |
msgstr "Jste na seznamu povolených"
|
61 |
|
62 |
+
#: google-captcha.php:490
|
63 |
msgid "Please enable JavaScript in your browser."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: google-captcha.php:566
|
67 |
msgid "This site is protected by reCAPTCHA and the Google "
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: google-captcha.php:567
|
71 |
msgid "Privacy Policy"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: google-captcha.php:568
|
75 |
msgid " and "
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: google-captcha.php:569
|
79 |
msgid "Terms of Service"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: google-captcha.php:570
|
83 |
msgid " apply."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: google-captcha.php:577 google-captcha.php:1109
|
87 |
msgid "To use Google Captcha you must get the keys from"
|
88 |
msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
|
89 |
|
90 |
+
#: google-captcha.php:578 google-captcha.php:1110
|
91 |
msgid "here"
|
92 |
msgstr "zde"
|
93 |
|
94 |
+
#: google-captcha.php:579 google-captcha.php:1111
|
95 |
msgid "and enter them on the"
|
96 |
msgstr "a zadejte je na"
|
97 |
|
98 |
+
#: google-captcha.php:581 google-captcha.php:1113
|
99 |
msgid "plugin setting page"
|
100 |
msgstr "stránce nastavení pluginu"
|
101 |
|
102 |
+
#: google-captcha.php:852 includes/forms.php:352
|
103 |
msgid "Error"
|
104 |
msgstr "Chyba"
|
105 |
|
106 |
+
#: google-captcha.php:974
|
107 |
msgid "User response is missing."
|
108 |
msgstr "Chybí odezva uživatele."
|
109 |
|
110 |
+
#: google-captcha.php:976
|
111 |
+
msgid "Secret Key is missing."
|
112 |
+
msgstr "Tajný klíč chybí."
|
113 |
+
|
114 |
+
#: google-captcha.php:979
|
115 |
msgid "Secret Key is invalid."
|
116 |
msgstr "Tajný klíč je neplatný."
|
117 |
|
118 |
+
#: google-captcha.php:980
|
119 |
msgid "Check your domain configurations"
|
120 |
msgstr "Zkontrolujte konfiguraci vaší domény"
|
121 |
|
122 |
+
#: google-captcha.php:981
|
123 |
msgid "and enter it again"
|
124 |
msgstr "a zadejte jej znovu"
|
125 |
|
126 |
+
#: google-captcha.php:983
|
|
|
|
|
|
|
|
|
127 |
msgid "User response is invalid"
|
128 |
msgstr "Neplatná odezva uživatele"
|
129 |
|
130 |
+
#: google-captcha.php:984
|
131 |
msgid "You have entered an incorrect reCAPTCHA value."
|
132 |
msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
|
133 |
|
134 |
+
#: google-captcha.php:985
|
135 |
msgid ""
|
136 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
137 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
139 |
"V aktuálním formuláři byla zjištěna více než jedna reCAPTCHA. Pro správnou "
|
140 |
"funkcionalitu, odstraňte všechny nepotřebné reCAPTCHA pole."
|
141 |
|
142 |
+
#: google-captcha.php:987
|
143 |
msgid "reCAPTCHA v3 test failed"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: google-captcha.php:1025
|
147 |
msgid "Please submit \"Test verification\""
|
148 |
msgstr "Odešlete „Test ověření“"
|
149 |
|
150 |
+
#: google-captcha.php:1027
|
151 |
msgid "Please complete the captcha and submit \"Test verification\""
|
152 |
msgstr "Doplňte captcha a odešlete „Test ověření“"
|
153 |
|
154 |
+
#: google-captcha.php:1033
|
155 |
msgid "Test verification"
|
156 |
msgstr "Test ověření"
|
157 |
|
158 |
+
#: google-captcha.php:1054
|
159 |
msgid "The verification is successfully completed."
|
160 |
msgstr "Ověření je úspěšně dokončeno."
|
161 |
|
162 |
+
#: google-captcha.php:1089
|
163 |
msgid "FAQ"
|
164 |
msgstr ""
|
165 |
"Časté dotazy <acronym title=\\\"Frequently asked questions\\\">(FAQ)</"
|
166 |
"acronym>"
|
167 |
|
168 |
+
#: google-captcha.php:1090
|
169 |
msgid "Support"
|
170 |
msgstr "Podpora"
|
171 |
|
211 |
msgid "Enter secret key"
|
212 |
msgstr "Vložte tajný klíč"
|
213 |
|
214 |
+
#: includes/class-gglcptch-settings-tabs.php:137
|
215 |
msgid "Settings saved."
|
216 |
msgstr "Nastavení uloženo."
|
217 |
|
218 |
+
#: includes/class-gglcptch-settings-tabs.php:152
|
219 |
msgid "Authentication"
|
220 |
msgstr "Autentizace"
|
221 |
|
222 |
+
#: includes/class-gglcptch-settings-tabs.php:153
|
223 |
msgid ""
|
224 |
"Register your website with Google to get required API keys and enter them "
|
225 |
"below."
|
227 |
"Zaregistrujte svůj web na Google, abyste získali požadované API klíče a "
|
228 |
"zadejte je níže."
|
229 |
|
230 |
+
#: includes/class-gglcptch-settings-tabs.php:153
|
231 |
msgid "Get the API Keys"
|
232 |
msgstr "Získat API klíče"
|
233 |
|
234 |
+
#: includes/class-gglcptch-settings-tabs.php:170
|
235 |
msgid "Test reCAPTCHA"
|
236 |
msgstr "Vyzkoušet reCAPTCHA"
|
237 |
|
238 |
+
#: includes/class-gglcptch-settings-tabs.php:176
|
239 |
msgid "General"
|
240 |
msgstr "Obecné"
|
241 |
|
242 |
+
#: includes/class-gglcptch-settings-tabs.php:179
|
243 |
msgid "reCAPTCHA Version"
|
244 |
msgstr "reCAPTCHA verze"
|
245 |
|
246 |
+
#: includes/class-gglcptch-settings-tabs.php:192
|
247 |
msgid "Enable reCAPTCHA for"
|
248 |
msgstr "Povolit reCAPTCHA pro"
|
249 |
|
250 |
+
#: includes/class-gglcptch-settings-tabs.php:238
|
251 |
+
#: includes/class-gglcptch-settings-tabs.php:300 includes/pro_banners.php:20
|
252 |
msgid "Close"
|
253 |
msgstr "Zavřít"
|
254 |
|
255 |
+
#: includes/class-gglcptch-settings-tabs.php:247
|
256 |
msgid "Hide reCAPTCHA for"
|
257 |
msgstr "Skrýt reCAPTCHA pro"
|
258 |
|
259 |
+
#: includes/class-gglcptch-settings-tabs.php:266
|
260 |
#, fuzzy
|
261 |
#| msgid "Hide reCAPTCHA for"
|
262 |
msgid "Hide reCAPTCHA Badge"
|
263 |
msgstr "Skrýt reCAPTCHA pro"
|
264 |
|
265 |
+
#: includes/class-gglcptch-settings-tabs.php:271
|
266 |
msgid "Enable to hide reCAPTCHA Badge for Version 3 and Invisble reCAPTCHA."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/class-gglcptch-settings-tabs.php:277
|
270 |
msgid "Theme"
|
271 |
msgstr "Šablona"
|
272 |
|
273 |
+
#: includes/class-gglcptch-settings-tabs.php:281
|
274 |
msgid "Light"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/class-gglcptch-settings-tabs.php:282
|
278 |
msgid "Dark"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/class-gglcptch-settings-tabs.php:288
|
282 |
msgid "Score"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/class-gglcptch-settings-tabs.php:293
|
286 |
msgid "Set the minimum verification score from 0 to 1"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/class-gglcptch-settings-tabs.php:309
|
290 |
msgid "Whitelist Notification"
|
291 |
msgstr "Upozornění na seznam povolených"
|
292 |
|
293 |
+
#: includes/class-gglcptch-settings-tabs.php:312
|
294 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
295 |
msgstr "Tato zpráva se bude zobrazovat namísto reCAPTCHA."
|
296 |
|
297 |
+
#: includes/class-gglcptch-settings-tabs.php:316
|
298 |
+
msgid "Advanced Protection"
|
299 |
+
msgstr ""
|
300 |
|
301 |
+
#: includes/class-gglcptch-settings-tabs.php:320
|
302 |
msgid ""
|
303 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
304 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
307 |
"možnost nepoužívejte, pokud se zobrazuje zpráva „Nepodařilo se načíst "
|
308 |
"Google reCAPTCHA“)."
|
309 |
|
310 |
+
#: includes/class-gglcptch-settings-tabs.php:326
|
311 |
+
msgid "Disabled Submit Button"
|
312 |
+
msgstr "Neaktivní tlačitko odeslat"
|
313 |
+
|
314 |
+
#: includes/class-gglcptch-settings-tabs.php:331
|
315 |
+
#, fuzzy
|
316 |
+
#| msgid ""
|
317 |
+
#| "Enable to keep submit button disabled until reCAPTCHA is loaded (do not "
|
318 |
+
#| "use this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
319 |
+
msgid ""
|
320 |
+
"Enable to keep submit button disabled until user passes the reCAPTCHA test "
|
321 |
+
"(for Version 2)."
|
322 |
+
msgstr ""
|
323 |
+
"Nastaví tlačítko odeslat neaktivní, dokud nebude reCAPTCHA načtena (tuto "
|
324 |
+
"možnost nepoužívejte, pokud se zobrazuje zpráva „Nepodařilo se načíst "
|
325 |
+
"Google reCAPTCHA“)."
|
326 |
+
|
327 |
+
#: includes/class-gglcptch-settings-tabs.php:345
|
328 |
msgid ""
|
329 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
330 |
"regenerate Site and Secret keys if necessary."
|
332 |
"Byla změněna verze reCAPTCHA. Klikněte na „Vyzkoušet reCAPTCHA“ "
|
333 |
"a znovu vygenerujte tajné a webové klíče, je-li to nezbytné."
|
334 |
|
335 |
+
#: includes/class-gglcptch-settings-tabs.php:358
|
336 |
msgid "Google Captcha Shortcode"
|
337 |
msgstr "Zkrácený kód Google Captcha"
|
338 |
|
339 |
+
#: includes/class-gglcptch-settings-tabs.php:361
|
340 |
msgid ""
|
341 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
342 |
msgstr ""
|
379 |
msgid "Google Captcha Plugin"
|
380 |
msgstr "Plugin Google Captcha"
|
381 |
|
382 |
+
#: includes/forms.php:116 includes/forms.php:140
|
383 |
msgid "Activate"
|
384 |
msgstr "Aktivovat"
|
385 |
|
386 |
+
#: includes/forms.php:118 includes/forms.php:143 includes/forms.php:147
|
387 |
msgid "Install Now"
|
388 |
msgstr "Instalovat nyní"
|
389 |
|
390 |
+
#: includes/forms.php:265
|
391 |
msgid "Authentication failed."
|
392 |
msgstr "Ověření selhalo."
|
393 |
|
394 |
+
#: includes/forms.php:354
|
395 |
msgid "Click the BACK button on your browser and try again."
|
396 |
msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu."
|
397 |
|
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: 2019-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
|
@@ -17,33 +17,33 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-captcha.php:39 google-captcha.php:
|
21 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Google Captcha Ajustes"
|
24 |
|
25 |
-
#: google-captcha.php:
|
26 |
#: includes/class-gglcptch-settings-tabs.php:25
|
27 |
msgid "Settings"
|
28 |
msgstr "Configuraciónes"
|
29 |
|
30 |
-
#: google-captcha.php:
|
31 |
msgid "Google Captcha Whitelist"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: google-captcha.php:
|
35 |
msgid "Whitelist"
|
36 |
msgstr "Lista Blanca"
|
37 |
|
38 |
-
#: google-captcha.php:
|
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,87 +51,87 @@ 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 "Please enable JavaScript in your browser."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: google-captcha.php:
|
67 |
msgid "This site is protected by reCAPTCHA and the Google "
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: google-captcha.php:
|
71 |
msgid "Privacy Policy"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: google-captcha.php:
|
75 |
msgid " and "
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: google-captcha.php:
|
79 |
msgid "Terms of Service"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: google-captcha.php:
|
83 |
msgid " apply."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: google-captcha.php:
|
87 |
msgid "To use Google Captcha you must get the keys from"
|
88 |
msgstr "Para utilizar Google Captcha debe obtener las claves de"
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
msgid "here"
|
92 |
msgstr "aquí"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "and enter them on the"
|
96 |
msgstr "e introducirlas en"
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
msgid "plugin setting page"
|
100 |
msgstr "página de configuración de plugin"
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "Error"
|
104 |
msgstr "Error "
|
105 |
|
106 |
-
#: google-captcha.php:
|
107 |
msgid "User response is missing."
|
108 |
msgstr "Respuesta del usuario está ausente."
|
109 |
|
110 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
111 |
msgid "Secret Key is invalid."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: google-captcha.php:
|
115 |
msgid "Check your domain configurations"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: google-captcha.php:
|
119 |
msgid "and enter it again"
|
120 |
msgstr "e introducirle otra vez"
|
121 |
|
122 |
-
#: google-captcha.php:
|
123 |
-
msgid "Secret Key is missing."
|
124 |
-
msgstr "Clave Secreta está ausente."
|
125 |
-
|
126 |
-
#: google-captcha.php:984
|
127 |
msgid "User response is invalid"
|
128 |
msgstr "Respuesta del usuario no es válido"
|
129 |
|
130 |
-
#: google-captcha.php:
|
131 |
msgid "You have entered an incorrect reCAPTCHA value."
|
132 |
msgstr "Ha introducido un valor incorrecto de reCAPTCHA."
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
msgid ""
|
136 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
137 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
@@ -139,31 +139,31 @@ msgstr ""
|
|
139 |
"Más de un reCAPTCHA se ha encontrado en la forma actual. Por favor, elimine "
|
140 |
"todos los campos de reCAPTCHA innecesarios para que funcione correctamente."
|
141 |
|
142 |
-
#: google-captcha.php:
|
143 |
msgid "reCAPTCHA v3 test failed"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: google-captcha.php:
|
147 |
msgid "Please submit \"Test verification\""
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: google-captcha.php:
|
151 |
msgid "Please complete the captcha and submit \"Test verification\""
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: google-captcha.php:
|
155 |
msgid "Test verification"
|
156 |
msgstr "Test de verificación"
|
157 |
|
158 |
-
#: google-captcha.php:
|
159 |
msgid "The verification is successfully completed."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "FAQ"
|
164 |
msgstr "Preguntas Frecuentes"
|
165 |
|
166 |
-
#: google-captcha.php:
|
167 |
msgid "Support"
|
168 |
msgstr "Soporte"
|
169 |
|
@@ -209,112 +209,122 @@ msgstr ""
|
|
209 |
msgid "Enter secret key"
|
210 |
msgstr "Introduce la clave secreta"
|
211 |
|
212 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
213 |
msgid "Settings saved."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
217 |
msgid "Authentication"
|
218 |
msgstr "Autentificación"
|
219 |
|
220 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
221 |
msgid ""
|
222 |
"Register your website with Google to get required API keys and enter them "
|
223 |
"below."
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
227 |
msgid "Get the API Keys"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
231 |
#, fuzzy
|
232 |
msgid "Test reCAPTCHA"
|
233 |
msgstr "Invisible reCAPTCHA"
|
234 |
|
235 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
236 |
msgid "General"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
240 |
msgid "reCAPTCHA Version"
|
241 |
msgstr "reCAPTCHA Versión"
|
242 |
|
243 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
244 |
msgid "Enable reCAPTCHA for"
|
245 |
msgstr "Permite reCAPTCHA para"
|
246 |
|
247 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
248 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
249 |
msgid "Close"
|
250 |
msgstr "Сerrar"
|
251 |
|
252 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
253 |
#, fuzzy
|
254 |
msgid "Hide reCAPTCHA for"
|
255 |
msgstr "Permite reCAPTCHA para"
|
256 |
|
257 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
258 |
#, fuzzy
|
259 |
msgid "Hide reCAPTCHA Badge"
|
260 |
msgstr "Permite reCAPTCHA para"
|
261 |
|
262 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
263 |
msgid "Enable to hide reCAPTCHA Badge for Version 3 and Invisble reCAPTCHA."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
267 |
msgid "Theme"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
271 |
msgid "Light"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
275 |
msgid "Dark"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
279 |
msgid "Score"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
283 |
msgid "Set the minimum verification score from 0 to 1"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
287 |
msgid "Whitelist Notification"
|
288 |
msgstr "Notificaciones de la Lista Blanca"
|
289 |
|
290 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
291 |
#, fuzzy
|
292 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
293 |
msgstr ""
|
294 |
"Este mensaje se visualizará en lugar del reCAPTCHA si la IP del usuario se "
|
295 |
"agrega a la lista blanca"
|
296 |
|
297 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
298 |
-
msgid "
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
302 |
msgid ""
|
303 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
304 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
msgid ""
|
309 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
310 |
"regenerate Site and Secret keys if necessary."
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
314 |
msgid "Google Captcha Shortcode"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
318 |
msgid ""
|
319 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
320 |
msgstr ""
|
@@ -355,20 +365,20 @@ msgstr ""
|
|
355 |
msgid "Google Captcha Plugin"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/forms.php:
|
359 |
#, fuzzy
|
360 |
msgid "Activate"
|
361 |
msgstr "Activar"
|
362 |
|
363 |
-
#: includes/forms.php:
|
364 |
msgid "Install Now"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: includes/forms.php:
|
368 |
msgid "Authentication failed."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: includes/forms.php:
|
372 |
msgid "Click the BACK button on your browser and try again."
|
373 |
msgstr ""
|
374 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-07-15 14:38+0300\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:39 google-captcha.php:49 google-captcha.php:489
|
21 |
+
#: includes/class-gglcptch-settings-tabs.php:149
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Google Captcha Ajustes"
|
24 |
|
25 |
+
#: google-captcha.php:50 google-captcha.php:1074 google-captcha.php:1087
|
26 |
#: includes/class-gglcptch-settings-tabs.php:25
|
27 |
msgid "Settings"
|
28 |
msgstr "Configuraciónes"
|
29 |
|
30 |
+
#: google-captcha.php:58 includes/whitelist.php:46
|
31 |
msgid "Google Captcha Whitelist"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: google-captcha.php:59
|
35 |
msgid "Whitelist"
|
36 |
msgstr "Lista Blanca"
|
37 |
|
38 |
+
#: google-captcha.php:76 includes/pro_banners.php:29
|
39 |
msgid "Upgrade to Pro"
|
40 |
msgstr "Actualizar a Pro"
|
41 |
|
42 |
+
#: google-captcha.php:268
|
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:269
|
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:285
|
55 |
msgid "Warning"
|
56 |
msgstr "Atención"
|
57 |
|
58 |
+
#: google-captcha.php:393
|
59 |
msgid "You are in the whitelist"
|
60 |
msgstr "Estás en la lista blanca"
|
61 |
|
62 |
+
#: google-captcha.php:490
|
63 |
msgid "Please enable JavaScript in your browser."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: google-captcha.php:566
|
67 |
msgid "This site is protected by reCAPTCHA and the Google "
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: google-captcha.php:567
|
71 |
msgid "Privacy Policy"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: google-captcha.php:568
|
75 |
msgid " and "
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: google-captcha.php:569
|
79 |
msgid "Terms of Service"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: google-captcha.php:570
|
83 |
msgid " apply."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: google-captcha.php:577 google-captcha.php:1109
|
87 |
msgid "To use Google Captcha you must get the keys from"
|
88 |
msgstr "Para utilizar Google Captcha debe obtener las claves de"
|
89 |
|
90 |
+
#: google-captcha.php:578 google-captcha.php:1110
|
91 |
msgid "here"
|
92 |
msgstr "aquí"
|
93 |
|
94 |
+
#: google-captcha.php:579 google-captcha.php:1111
|
95 |
msgid "and enter them on the"
|
96 |
msgstr "e introducirlas en"
|
97 |
|
98 |
+
#: google-captcha.php:581 google-captcha.php:1113
|
99 |
msgid "plugin setting page"
|
100 |
msgstr "página de configuración de plugin"
|
101 |
|
102 |
+
#: google-captcha.php:852 includes/forms.php:352
|
103 |
msgid "Error"
|
104 |
msgstr "Error "
|
105 |
|
106 |
+
#: google-captcha.php:974
|
107 |
msgid "User response is missing."
|
108 |
msgstr "Respuesta del usuario está ausente."
|
109 |
|
110 |
+
#: google-captcha.php:976
|
111 |
+
msgid "Secret Key is missing."
|
112 |
+
msgstr "Clave Secreta está ausente."
|
113 |
+
|
114 |
+
#: google-captcha.php:979
|
115 |
msgid "Secret Key is invalid."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: google-captcha.php:980
|
119 |
msgid "Check your domain configurations"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: google-captcha.php:981
|
123 |
msgid "and enter it again"
|
124 |
msgstr "e introducirle otra vez"
|
125 |
|
126 |
+
#: google-captcha.php:983
|
|
|
|
|
|
|
|
|
127 |
msgid "User response is invalid"
|
128 |
msgstr "Respuesta del usuario no es válido"
|
129 |
|
130 |
+
#: google-captcha.php:984
|
131 |
msgid "You have entered an incorrect reCAPTCHA value."
|
132 |
msgstr "Ha introducido un valor incorrecto de reCAPTCHA."
|
133 |
|
134 |
+
#: google-captcha.php:985
|
135 |
msgid ""
|
136 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
137 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
139 |
"Más de un reCAPTCHA se ha encontrado en la forma actual. Por favor, elimine "
|
140 |
"todos los campos de reCAPTCHA innecesarios para que funcione correctamente."
|
141 |
|
142 |
+
#: google-captcha.php:987
|
143 |
msgid "reCAPTCHA v3 test failed"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: google-captcha.php:1025
|
147 |
msgid "Please submit \"Test verification\""
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: google-captcha.php:1027
|
151 |
msgid "Please complete the captcha and submit \"Test verification\""
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: google-captcha.php:1033
|
155 |
msgid "Test verification"
|
156 |
msgstr "Test de verificación"
|
157 |
|
158 |
+
#: google-captcha.php:1054
|
159 |
msgid "The verification is successfully completed."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: google-captcha.php:1089
|
163 |
msgid "FAQ"
|
164 |
msgstr "Preguntas Frecuentes"
|
165 |
|
166 |
+
#: google-captcha.php:1090
|
167 |
msgid "Support"
|
168 |
msgstr "Soporte"
|
169 |
|
209 |
msgid "Enter secret key"
|
210 |
msgstr "Introduce la clave secreta"
|
211 |
|
212 |
+
#: includes/class-gglcptch-settings-tabs.php:137
|
213 |
msgid "Settings saved."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/class-gglcptch-settings-tabs.php:152
|
217 |
msgid "Authentication"
|
218 |
msgstr "Autentificación"
|
219 |
|
220 |
+
#: includes/class-gglcptch-settings-tabs.php:153
|
221 |
msgid ""
|
222 |
"Register your website with Google to get required API keys and enter them "
|
223 |
"below."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/class-gglcptch-settings-tabs.php:153
|
227 |
msgid "Get the API Keys"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: includes/class-gglcptch-settings-tabs.php:170
|
231 |
#, fuzzy
|
232 |
msgid "Test reCAPTCHA"
|
233 |
msgstr "Invisible reCAPTCHA"
|
234 |
|
235 |
+
#: includes/class-gglcptch-settings-tabs.php:176
|
236 |
msgid "General"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: includes/class-gglcptch-settings-tabs.php:179
|
240 |
msgid "reCAPTCHA Version"
|
241 |
msgstr "reCAPTCHA Versión"
|
242 |
|
243 |
+
#: includes/class-gglcptch-settings-tabs.php:192
|
244 |
msgid "Enable reCAPTCHA for"
|
245 |
msgstr "Permite reCAPTCHA para"
|
246 |
|
247 |
+
#: includes/class-gglcptch-settings-tabs.php:238
|
248 |
+
#: includes/class-gglcptch-settings-tabs.php:300 includes/pro_banners.php:20
|
249 |
msgid "Close"
|
250 |
msgstr "Сerrar"
|
251 |
|
252 |
+
#: includes/class-gglcptch-settings-tabs.php:247
|
253 |
#, fuzzy
|
254 |
msgid "Hide reCAPTCHA for"
|
255 |
msgstr "Permite reCAPTCHA para"
|
256 |
|
257 |
+
#: includes/class-gglcptch-settings-tabs.php:266
|
258 |
#, fuzzy
|
259 |
msgid "Hide reCAPTCHA Badge"
|
260 |
msgstr "Permite reCAPTCHA para"
|
261 |
|
262 |
+
#: includes/class-gglcptch-settings-tabs.php:271
|
263 |
msgid "Enable to hide reCAPTCHA Badge for Version 3 and Invisble reCAPTCHA."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/class-gglcptch-settings-tabs.php:277
|
267 |
msgid "Theme"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/class-gglcptch-settings-tabs.php:281
|
271 |
msgid "Light"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/class-gglcptch-settings-tabs.php:282
|
275 |
msgid "Dark"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: includes/class-gglcptch-settings-tabs.php:288
|
279 |
msgid "Score"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: includes/class-gglcptch-settings-tabs.php:293
|
283 |
msgid "Set the minimum verification score from 0 to 1"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: includes/class-gglcptch-settings-tabs.php:309
|
287 |
msgid "Whitelist Notification"
|
288 |
msgstr "Notificaciones de la Lista Blanca"
|
289 |
|
290 |
+
#: includes/class-gglcptch-settings-tabs.php:312
|
291 |
#, fuzzy
|
292 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
293 |
msgstr ""
|
294 |
"Este mensaje se visualizará en lugar del reCAPTCHA si la IP del usuario se "
|
295 |
"agrega a la lista blanca"
|
296 |
|
297 |
+
#: includes/class-gglcptch-settings-tabs.php:316
|
298 |
+
msgid "Advanced Protection"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/class-gglcptch-settings-tabs.php:320
|
302 |
msgid ""
|
303 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
304 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: includes/class-gglcptch-settings-tabs.php:326
|
308 |
+
msgid "Disabled Submit Button"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: includes/class-gglcptch-settings-tabs.php:331
|
312 |
+
msgid ""
|
313 |
+
"Enable to keep submit button disabled until user passes the reCAPTCHA test "
|
314 |
+
"(for Version 2)."
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: includes/class-gglcptch-settings-tabs.php:345
|
318 |
msgid ""
|
319 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
320 |
"regenerate Site and Secret keys if necessary."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: includes/class-gglcptch-settings-tabs.php:358
|
324 |
msgid "Google Captcha Shortcode"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: includes/class-gglcptch-settings-tabs.php:361
|
328 |
msgid ""
|
329 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
330 |
msgstr ""
|
365 |
msgid "Google Captcha Plugin"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: includes/forms.php:116 includes/forms.php:140
|
369 |
#, fuzzy
|
370 |
msgid "Activate"
|
371 |
msgstr "Activar"
|
372 |
|
373 |
+
#: includes/forms.php:118 includes/forms.php:143 includes/forms.php:147
|
374 |
msgid "Install Now"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: includes/forms.php:265
|
378 |
msgid "Authentication failed."
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: includes/forms.php:354
|
382 |
msgid "Click the BACK button on your browser and try again."
|
383 |
msgstr ""
|
384 |
|
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: 2019-
|
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:39 google-captcha.php:49 google-captcha.php:
|
22 |
#: includes/class-gglcptch-settings-tabs.php:149
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Настройки Google Captcha"
|
25 |
|
26 |
-
#: google-captcha.php:50 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,87 +52,87 @@ 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 "Please enable JavaScript in your browser."
|
65 |
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
66 |
|
67 |
-
#: google-captcha.php:
|
68 |
msgid "This site is protected by reCAPTCHA and the Google "
|
69 |
msgstr "Этот сайт защищен reCAPTCHA и применяются "
|
70 |
|
71 |
-
#: google-captcha.php:
|
72 |
msgid "Privacy Policy"
|
73 |
msgstr "Политика конфиденциальности"
|
74 |
|
75 |
-
#: google-captcha.php:
|
76 |
msgid " and "
|
77 |
msgstr " и "
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
msgid "Terms of Service"
|
81 |
msgstr "Условия обслуживания"
|
82 |
|
83 |
-
#: google-captcha.php:
|
84 |
msgid " apply."
|
85 |
msgstr " Google."
|
86 |
|
87 |
-
#: google-captcha.php:
|
88 |
msgid "To use Google Captcha you must get the keys from"
|
89 |
msgstr "Чтобы использовать Google Captcha, вам необходимо получить ключи"
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "here"
|
93 |
msgstr "здесь"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "and enter them on the"
|
97 |
msgstr "и вставить их на"
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "plugin setting page"
|
101 |
msgstr "странице настроек плагина"
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Error"
|
105 |
msgstr "Ошибка"
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid "User response is missing."
|
109 |
msgstr "Ответ пользователя отсутствует."
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid "Secret Key is missing."
|
113 |
msgstr "Секретный ключ отсутствует."
|
114 |
|
115 |
-
#: google-captcha.php:
|
116 |
msgid "Secret Key is invalid."
|
117 |
msgstr "Некорректный секретный ключ."
|
118 |
|
119 |
-
#: google-captcha.php:
|
120 |
msgid "Check your domain configurations"
|
121 |
msgstr "Проверьте настройки вашего домена"
|
122 |
|
123 |
-
#: google-captcha.php:
|
124 |
msgid "and enter it again"
|
125 |
msgstr "и введите его снова"
|
126 |
|
127 |
-
#: google-captcha.php:
|
128 |
msgid "User response is invalid"
|
129 |
msgstr "Некорректный ответ пользователя"
|
130 |
|
131 |
-
#: google-captcha.php:
|
132 |
msgid "You have entered an incorrect reCAPTCHA value."
|
133 |
msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
msgid ""
|
137 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
138 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
@@ -140,32 +140,32 @@ msgstr ""
|
|
140 |
"В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
|
141 |
"все лишние блоки reCAPTCHA для дальнейшей корректной работы."
|
142 |
|
143 |
-
#: google-captcha.php:
|
144 |
msgid "reCAPTCHA v3 test failed"
|
145 |
msgstr "Тест reCAPTCHA v3 не пройден"
|
146 |
|
147 |
-
#: google-captcha.php:
|
148 |
msgid "Please submit \"Test verification\""
|
149 |
msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
|
150 |
|
151 |
-
#: google-captcha.php:
|
152 |
msgid "Please complete the captcha and submit \"Test verification\""
|
153 |
msgstr ""
|
154 |
"Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
|
155 |
|
156 |
-
#: google-captcha.php:
|
157 |
msgid "Test verification"
|
158 |
msgstr "Тестирование проверки"
|
159 |
|
160 |
-
#: google-captcha.php:
|
161 |
msgid "The verification is successfully completed."
|
162 |
msgstr "Тестирование проверки успешно завершено."
|
163 |
|
164 |
-
#: google-captcha.php:
|
165 |
msgid "FAQ"
|
166 |
msgstr "FAQ"
|
167 |
|
168 |
-
#: google-captcha.php:
|
169 |
msgid "Support"
|
170 |
msgstr "Поддержка"
|
171 |
|
@@ -486,15 +486,15 @@ msgstr "Ninja Forms"
|
|
486 |
|
487 |
#: includes/pro_banners.php:70
|
488 |
msgid "Divi Contact Form"
|
489 |
-
msgstr "
|
490 |
|
491 |
#: includes/pro_banners.php:71
|
492 |
msgid "Divi Login Forms"
|
493 |
-
msgstr "
|
494 |
|
495 |
#: includes/pro_banners.php:72
|
496 |
msgid "Divi Theme Contact Form"
|
497 |
-
msgstr "Divi Theme
|
498 |
|
499 |
#: includes/pro_banners.php:174
|
500 |
msgid "Size"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-07-15 14:36+0300\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:39 google-captcha.php:49 google-captcha.php:489
|
22 |
#: includes/class-gglcptch-settings-tabs.php:149
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Настройки Google Captcha"
|
25 |
|
26 |
+
#: google-captcha.php:50 google-captcha.php:1074 google-captcha.php:1087
|
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:268
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
|
46 |
|
47 |
+
#: google-captcha.php:269
|
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:285
|
56 |
msgid "Warning"
|
57 |
msgstr "Внимание"
|
58 |
|
59 |
+
#: google-captcha.php:393
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Вы в белом списке"
|
62 |
|
63 |
+
#: google-captcha.php:490
|
64 |
msgid "Please enable JavaScript in your browser."
|
65 |
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
66 |
|
67 |
+
#: google-captcha.php:566
|
68 |
msgid "This site is protected by reCAPTCHA and the Google "
|
69 |
msgstr "Этот сайт защищен reCAPTCHA и применяются "
|
70 |
|
71 |
+
#: google-captcha.php:567
|
72 |
msgid "Privacy Policy"
|
73 |
msgstr "Политика конфиденциальности"
|
74 |
|
75 |
+
#: google-captcha.php:568
|
76 |
msgid " and "
|
77 |
msgstr " и "
|
78 |
|
79 |
+
#: google-captcha.php:569
|
80 |
msgid "Terms of Service"
|
81 |
msgstr "Условия обслуживания"
|
82 |
|
83 |
+
#: google-captcha.php:570
|
84 |
msgid " apply."
|
85 |
msgstr " Google."
|
86 |
|
87 |
+
#: google-captcha.php:577 google-captcha.php:1109
|
88 |
msgid "To use Google Captcha you must get the keys from"
|
89 |
msgstr "Чтобы использовать Google Captcha, вам необходимо получить ключи"
|
90 |
|
91 |
+
#: google-captcha.php:578 google-captcha.php:1110
|
92 |
msgid "here"
|
93 |
msgstr "здесь"
|
94 |
|
95 |
+
#: google-captcha.php:579 google-captcha.php:1111
|
96 |
msgid "and enter them on the"
|
97 |
msgstr "и вставить их на"
|
98 |
|
99 |
+
#: google-captcha.php:581 google-captcha.php:1113
|
100 |
msgid "plugin setting page"
|
101 |
msgstr "странице настроек плагина"
|
102 |
|
103 |
+
#: google-captcha.php:852 includes/forms.php:352
|
104 |
msgid "Error"
|
105 |
msgstr "Ошибка"
|
106 |
|
107 |
+
#: google-captcha.php:974
|
108 |
msgid "User response is missing."
|
109 |
msgstr "Ответ пользователя отсутствует."
|
110 |
|
111 |
+
#: google-captcha.php:976
|
112 |
msgid "Secret Key is missing."
|
113 |
msgstr "Секретный ключ отсутствует."
|
114 |
|
115 |
+
#: google-captcha.php:979
|
116 |
msgid "Secret Key is invalid."
|
117 |
msgstr "Некорректный секретный ключ."
|
118 |
|
119 |
+
#: google-captcha.php:980
|
120 |
msgid "Check your domain configurations"
|
121 |
msgstr "Проверьте настройки вашего домена"
|
122 |
|
123 |
+
#: google-captcha.php:981
|
124 |
msgid "and enter it again"
|
125 |
msgstr "и введите его снова"
|
126 |
|
127 |
+
#: google-captcha.php:983
|
128 |
msgid "User response is invalid"
|
129 |
msgstr "Некорректный ответ пользователя"
|
130 |
|
131 |
+
#: google-captcha.php:984
|
132 |
msgid "You have entered an incorrect reCAPTCHA value."
|
133 |
msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
|
134 |
|
135 |
+
#: google-captcha.php:985
|
136 |
msgid ""
|
137 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
138 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
140 |
"В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
|
141 |
"все лишние блоки reCAPTCHA для дальнейшей корректной работы."
|
142 |
|
143 |
+
#: google-captcha.php:987
|
144 |
msgid "reCAPTCHA v3 test failed"
|
145 |
msgstr "Тест reCAPTCHA v3 не пройден"
|
146 |
|
147 |
+
#: google-captcha.php:1025
|
148 |
msgid "Please submit \"Test verification\""
|
149 |
msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
|
150 |
|
151 |
+
#: google-captcha.php:1027
|
152 |
msgid "Please complete the captcha and submit \"Test verification\""
|
153 |
msgstr ""
|
154 |
"Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
|
155 |
|
156 |
+
#: google-captcha.php:1033
|
157 |
msgid "Test verification"
|
158 |
msgstr "Тестирование проверки"
|
159 |
|
160 |
+
#: google-captcha.php:1054
|
161 |
msgid "The verification is successfully completed."
|
162 |
msgstr "Тестирование проверки успешно завершено."
|
163 |
|
164 |
+
#: google-captcha.php:1089
|
165 |
msgid "FAQ"
|
166 |
msgstr "FAQ"
|
167 |
|
168 |
+
#: google-captcha.php:1090
|
169 |
msgid "Support"
|
170 |
msgstr "Поддержка"
|
171 |
|
486 |
|
487 |
#: includes/pro_banners.php:70
|
488 |
msgid "Divi Contact Form"
|
489 |
+
msgstr "Контактная форма плагина Divi"
|
490 |
|
491 |
#: includes/pro_banners.php:71
|
492 |
msgid "Divi Login Forms"
|
493 |
+
msgstr "Формы входа плагина Divi"
|
494 |
|
495 |
#: includes/pro_banners.php:72
|
496 |
msgid "Divi Theme Contact Form"
|
497 |
+
msgstr "Контактная форма темы Divi Theme"
|
498 |
|
499 |
#: includes/pro_banners.php:174
|
500 |
msgid "Size"
|
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: 2019-
|
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:39 google-captcha.php:49 google-captcha.php:
|
22 |
#: includes/class-gglcptch-settings-tabs.php:149
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Google Captcha Подешавања"
|
25 |
|
26 |
-
#: google-captcha.php:50 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,87 +52,87 @@ 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 "Please enable JavaScript in your browser."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: google-captcha.php:
|
68 |
msgid "This site is protected by reCAPTCHA and the Google "
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: google-captcha.php:
|
72 |
msgid "Privacy Policy"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: google-captcha.php:
|
76 |
msgid " and "
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
msgid "Terms of Service"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: google-captcha.php:
|
84 |
msgid " apply."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: google-captcha.php:
|
88 |
msgid "To use Google Captcha you must get the keys from"
|
89 |
msgstr "Да бисте користили Google Captcha морате узети кључеве од"
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "here"
|
93 |
msgstr "овде"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "and enter them on the"
|
97 |
msgstr "и унесите их на"
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "plugin setting page"
|
101 |
msgstr "страна подешавања додатка"
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Error"
|
105 |
msgstr "Грешка"
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid "User response is missing."
|
109 |
msgstr "Одговор корисника недостаје."
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid "Secret Key is missing."
|
113 |
msgstr "Тајни кључ недостаје."
|
114 |
|
115 |
-
#: google-captcha.php:
|
116 |
msgid "Secret Key is invalid."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: google-captcha.php:
|
120 |
msgid "Check your domain configurations"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: google-captcha.php:
|
124 |
msgid "and enter it again"
|
125 |
msgstr "и унесите поново"
|
126 |
|
127 |
-
#: google-captcha.php:
|
128 |
msgid "User response is invalid"
|
129 |
msgstr "Одговор корисника није исправан"
|
130 |
|
131 |
-
#: google-captcha.php:
|
132 |
msgid "You have entered an incorrect reCAPTCHA value."
|
133 |
msgstr "Унели сте нетачну reCAPTCHA вредност."
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
msgid ""
|
137 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
138 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
@@ -140,31 +140,31 @@ msgstr ""
|
|
140 |
"Више од једне reCAPTCHA је нађено у тренутној форми. Молим вас да уклоните "
|
141 |
"сва непотребна reCAPTCHA поља како би форма радила исправно."
|
142 |
|
143 |
-
#: google-captcha.php:
|
144 |
msgid "reCAPTCHA v3 test failed"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: google-captcha.php:
|
148 |
msgid "Please submit \"Test verification\""
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: google-captcha.php:
|
152 |
msgid "Please complete the captcha and submit \"Test verification\""
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: google-captcha.php:
|
156 |
msgid "Test verification"
|
157 |
msgstr "Тестирај верификацију"
|
158 |
|
159 |
-
#: google-captcha.php:
|
160 |
msgid "The verification is successfully completed."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: google-captcha.php:
|
164 |
msgid "FAQ"
|
165 |
msgstr "ЧПП"
|
166 |
|
167 |
-
#: google-captcha.php:
|
168 |
msgid "Support"
|
169 |
msgstr "Подршка"
|
170 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-07-15 14:38+0300\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:39 google-captcha.php:49 google-captcha.php:489
|
22 |
#: includes/class-gglcptch-settings-tabs.php:149
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Google Captcha Подешавања"
|
25 |
|
26 |
+
#: google-captcha.php:50 google-captcha.php:1074 google-captcha.php:1087
|
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:268
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Молимо сачекајте док се Google reCAPTCHA учита."
|
46 |
|
47 |
+
#: google-captcha.php:269
|
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:285
|
56 |
msgid "Warning"
|
57 |
msgstr "Упозорење"
|
58 |
|
59 |
+
#: google-captcha.php:393
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Ви сте на белој листи"
|
62 |
|
63 |
+
#: google-captcha.php:490
|
64 |
msgid "Please enable JavaScript in your browser."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: google-captcha.php:566
|
68 |
msgid "This site is protected by reCAPTCHA and the Google "
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: google-captcha.php:567
|
72 |
msgid "Privacy Policy"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: google-captcha.php:568
|
76 |
msgid " and "
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: google-captcha.php:569
|
80 |
msgid "Terms of Service"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: google-captcha.php:570
|
84 |
msgid " apply."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: google-captcha.php:577 google-captcha.php:1109
|
88 |
msgid "To use Google Captcha you must get the keys from"
|
89 |
msgstr "Да бисте користили Google Captcha морате узети кључеве од"
|
90 |
|
91 |
+
#: google-captcha.php:578 google-captcha.php:1110
|
92 |
msgid "here"
|
93 |
msgstr "овде"
|
94 |
|
95 |
+
#: google-captcha.php:579 google-captcha.php:1111
|
96 |
msgid "and enter them on the"
|
97 |
msgstr "и унесите их на"
|
98 |
|
99 |
+
#: google-captcha.php:581 google-captcha.php:1113
|
100 |
msgid "plugin setting page"
|
101 |
msgstr "страна подешавања додатка"
|
102 |
|
103 |
+
#: google-captcha.php:852 includes/forms.php:352
|
104 |
msgid "Error"
|
105 |
msgstr "Грешка"
|
106 |
|
107 |
+
#: google-captcha.php:974
|
108 |
msgid "User response is missing."
|
109 |
msgstr "Одговор корисника недостаје."
|
110 |
|
111 |
+
#: google-captcha.php:976
|
112 |
msgid "Secret Key is missing."
|
113 |
msgstr "Тајни кључ недостаје."
|
114 |
|
115 |
+
#: google-captcha.php:979
|
116 |
msgid "Secret Key is invalid."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: google-captcha.php:980
|
120 |
msgid "Check your domain configurations"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: google-captcha.php:981
|
124 |
msgid "and enter it again"
|
125 |
msgstr "и унесите поново"
|
126 |
|
127 |
+
#: google-captcha.php:983
|
128 |
msgid "User response is invalid"
|
129 |
msgstr "Одговор корисника није исправан"
|
130 |
|
131 |
+
#: google-captcha.php:984
|
132 |
msgid "You have entered an incorrect reCAPTCHA value."
|
133 |
msgstr "Унели сте нетачну reCAPTCHA вредност."
|
134 |
|
135 |
+
#: google-captcha.php:985
|
136 |
msgid ""
|
137 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
138 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
140 |
"Више од једне reCAPTCHA је нађено у тренутној форми. Молим вас да уклоните "
|
141 |
"сва непотребна reCAPTCHA поља како би форма радила исправно."
|
142 |
|
143 |
+
#: google-captcha.php:987
|
144 |
msgid "reCAPTCHA v3 test failed"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: google-captcha.php:1025
|
148 |
msgid "Please submit \"Test verification\""
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: google-captcha.php:1027
|
152 |
msgid "Please complete the captcha and submit \"Test verification\""
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: google-captcha.php:1033
|
156 |
msgid "Test verification"
|
157 |
msgstr "Тестирај верификацију"
|
158 |
|
159 |
+
#: google-captcha.php:1054
|
160 |
msgid "The verification is successfully completed."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: google-captcha.php:1089
|
164 |
msgid "FAQ"
|
165 |
msgstr "ЧПП"
|
166 |
|
167 |
+
#: google-captcha.php:1090
|
168 |
msgid "Support"
|
169 |
msgstr "Подршка"
|
170 |
|
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: 2019-
|
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:39 google-captcha.php:49 google-captcha.php:
|
22 |
#: includes/class-gglcptch-settings-tabs.php:149
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Налаштування Google Captcha"
|
25 |
|
26 |
-
#: google-captcha.php:50 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,87 +52,87 @@ 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 "Please enable JavaScript in your browser."
|
65 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
66 |
|
67 |
-
#: google-captcha.php:
|
68 |
msgid "This site is protected by reCAPTCHA and the Google "
|
69 |
msgstr "Цей сайт захищений reCAPTCHA і застосовуються "
|
70 |
|
71 |
-
#: google-captcha.php:
|
72 |
msgid "Privacy Policy"
|
73 |
msgstr "Політика конфіденційності"
|
74 |
|
75 |
-
#: google-captcha.php:
|
76 |
msgid " and "
|
77 |
msgstr " та "
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
msgid "Terms of Service"
|
81 |
msgstr "Умови обслуговування"
|
82 |
|
83 |
-
#: google-captcha.php:
|
84 |
msgid " apply."
|
85 |
msgstr " Google."
|
86 |
|
87 |
-
#: google-captcha.php:
|
88 |
msgid "To use Google Captcha you must get the keys from"
|
89 |
msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "here"
|
93 |
msgstr "тут"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "and enter them on the"
|
97 |
msgstr "і вставте їх у"
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "plugin setting page"
|
101 |
msgstr "сторінку налаштувань плагіну"
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Error"
|
105 |
msgstr "Помилка"
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid "User response is missing."
|
109 |
msgstr "Відповідь користувача відсутня."
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid "Secret Key is missing."
|
113 |
msgstr "Секретний ключ відсутній."
|
114 |
|
115 |
-
#: google-captcha.php:
|
116 |
msgid "Secret Key is invalid."
|
117 |
msgstr "Секретний ключ некоректний."
|
118 |
|
119 |
-
#: google-captcha.php:
|
120 |
msgid "Check your domain configurations"
|
121 |
msgstr "Перевірте конфігурацію вашого домену"
|
122 |
|
123 |
-
#: google-captcha.php:
|
124 |
msgid "and enter it again"
|
125 |
msgstr "і введіть його знову"
|
126 |
|
127 |
-
#: google-captcha.php:
|
128 |
msgid "User response is invalid"
|
129 |
msgstr "Некоректна відповідь користувача"
|
130 |
|
131 |
-
#: google-captcha.php:
|
132 |
msgid "You have entered an incorrect reCAPTCHA value."
|
133 |
msgstr "Ви ввели невірне значення reCAPTCHA."
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
msgid ""
|
137 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
138 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
@@ -140,32 +140,32 @@ msgstr ""
|
|
140 |
"В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
|
141 |
"усі зайві блоки reCAPTCHA для коректної подальшої роботи."
|
142 |
|
143 |
-
#: google-captcha.php:
|
144 |
msgid "reCAPTCHA v3 test failed"
|
145 |
msgstr "Тест reCAPTCHA v3 не пройдений"
|
146 |
|
147 |
-
#: google-captcha.php:
|
148 |
msgid "Please submit \"Test verification\""
|
149 |
msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
|
150 |
|
151 |
-
#: google-captcha.php:
|
152 |
msgid "Please complete the captcha and submit \"Test verification\""
|
153 |
msgstr ""
|
154 |
"Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
|
155 |
|
156 |
-
#: google-captcha.php:
|
157 |
msgid "Test verification"
|
158 |
msgstr "Тестування перевірки"
|
159 |
|
160 |
-
#: google-captcha.php:
|
161 |
msgid "The verification is successfully completed."
|
162 |
msgstr "Перевірка завершена успішно."
|
163 |
|
164 |
-
#: google-captcha.php:
|
165 |
msgid "FAQ"
|
166 |
msgstr "FAQ"
|
167 |
|
168 |
-
#: google-captcha.php:
|
169 |
msgid "Support"
|
170 |
msgstr "Техпідтримка"
|
171 |
|
@@ -484,22 +484,16 @@ msgid "Ninja Forms"
|
|
484 |
msgstr "Ninja Forms"
|
485 |
|
486 |
#: includes/pro_banners.php:70
|
487 |
-
#, fuzzy
|
488 |
-
#| msgid "Contact form"
|
489 |
msgid "Divi Contact Form"
|
490 |
-
msgstr "Контактна форма"
|
491 |
|
492 |
#: includes/pro_banners.php:71
|
493 |
-
#, fuzzy
|
494 |
-
#| msgid "Login form"
|
495 |
msgid "Divi Login Forms"
|
496 |
-
msgstr "
|
497 |
|
498 |
#: includes/pro_banners.php:72
|
499 |
-
#, fuzzy
|
500 |
-
#| msgid "Contact form"
|
501 |
msgid "Divi Theme Contact Form"
|
502 |
-
msgstr "Контактна форма"
|
503 |
|
504 |
#: includes/pro_banners.php:174
|
505 |
msgid "Size"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-07-15 14:37+0300\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:39 google-captcha.php:49 google-captcha.php:489
|
22 |
#: includes/class-gglcptch-settings-tabs.php:149
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Налаштування Google Captcha"
|
25 |
|
26 |
+
#: google-captcha.php:50 google-captcha.php:1074 google-captcha.php:1087
|
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:268
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
|
46 |
|
47 |
+
#: google-captcha.php:269
|
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:285
|
56 |
msgid "Warning"
|
57 |
msgstr "Увага"
|
58 |
|
59 |
+
#: google-captcha.php:393
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Ви знаходитесь в білому списку"
|
62 |
|
63 |
+
#: google-captcha.php:490
|
64 |
msgid "Please enable JavaScript in your browser."
|
65 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
66 |
|
67 |
+
#: google-captcha.php:566
|
68 |
msgid "This site is protected by reCAPTCHA and the Google "
|
69 |
msgstr "Цей сайт захищений reCAPTCHA і застосовуються "
|
70 |
|
71 |
+
#: google-captcha.php:567
|
72 |
msgid "Privacy Policy"
|
73 |
msgstr "Політика конфіденційності"
|
74 |
|
75 |
+
#: google-captcha.php:568
|
76 |
msgid " and "
|
77 |
msgstr " та "
|
78 |
|
79 |
+
#: google-captcha.php:569
|
80 |
msgid "Terms of Service"
|
81 |
msgstr "Умови обслуговування"
|
82 |
|
83 |
+
#: google-captcha.php:570
|
84 |
msgid " apply."
|
85 |
msgstr " Google."
|
86 |
|
87 |
+
#: google-captcha.php:577 google-captcha.php:1109
|
88 |
msgid "To use Google Captcha you must get the keys from"
|
89 |
msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
|
90 |
|
91 |
+
#: google-captcha.php:578 google-captcha.php:1110
|
92 |
msgid "here"
|
93 |
msgstr "тут"
|
94 |
|
95 |
+
#: google-captcha.php:579 google-captcha.php:1111
|
96 |
msgid "and enter them on the"
|
97 |
msgstr "і вставте їх у"
|
98 |
|
99 |
+
#: google-captcha.php:581 google-captcha.php:1113
|
100 |
msgid "plugin setting page"
|
101 |
msgstr "сторінку налаштувань плагіну"
|
102 |
|
103 |
+
#: google-captcha.php:852 includes/forms.php:352
|
104 |
msgid "Error"
|
105 |
msgstr "Помилка"
|
106 |
|
107 |
+
#: google-captcha.php:974
|
108 |
msgid "User response is missing."
|
109 |
msgstr "Відповідь користувача відсутня."
|
110 |
|
111 |
+
#: google-captcha.php:976
|
112 |
msgid "Secret Key is missing."
|
113 |
msgstr "Секретний ключ відсутній."
|
114 |
|
115 |
+
#: google-captcha.php:979
|
116 |
msgid "Secret Key is invalid."
|
117 |
msgstr "Секретний ключ некоректний."
|
118 |
|
119 |
+
#: google-captcha.php:980
|
120 |
msgid "Check your domain configurations"
|
121 |
msgstr "Перевірте конфігурацію вашого домену"
|
122 |
|
123 |
+
#: google-captcha.php:981
|
124 |
msgid "and enter it again"
|
125 |
msgstr "і введіть його знову"
|
126 |
|
127 |
+
#: google-captcha.php:983
|
128 |
msgid "User response is invalid"
|
129 |
msgstr "Некоректна відповідь користувача"
|
130 |
|
131 |
+
#: google-captcha.php:984
|
132 |
msgid "You have entered an incorrect reCAPTCHA value."
|
133 |
msgstr "Ви ввели невірне значення reCAPTCHA."
|
134 |
|
135 |
+
#: google-captcha.php:985
|
136 |
msgid ""
|
137 |
"More than one reCAPTCHA has been found in the current form. Please remove "
|
138 |
"all unnecessary reCAPTCHA fields to make it work properly."
|
140 |
"В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
|
141 |
"усі зайві блоки reCAPTCHA для коректної подальшої роботи."
|
142 |
|
143 |
+
#: google-captcha.php:987
|
144 |
msgid "reCAPTCHA v3 test failed"
|
145 |
msgstr "Тест reCAPTCHA v3 не пройдений"
|
146 |
|
147 |
+
#: google-captcha.php:1025
|
148 |
msgid "Please submit \"Test verification\""
|
149 |
msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
|
150 |
|
151 |
+
#: google-captcha.php:1027
|
152 |
msgid "Please complete the captcha and submit \"Test verification\""
|
153 |
msgstr ""
|
154 |
"Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
|
155 |
|
156 |
+
#: google-captcha.php:1033
|
157 |
msgid "Test verification"
|
158 |
msgstr "Тестування перевірки"
|
159 |
|
160 |
+
#: google-captcha.php:1054
|
161 |
msgid "The verification is successfully completed."
|
162 |
msgstr "Перевірка завершена успішно."
|
163 |
|
164 |
+
#: google-captcha.php:1089
|
165 |
msgid "FAQ"
|
166 |
msgstr "FAQ"
|
167 |
|
168 |
+
#: google-captcha.php:1090
|
169 |
msgid "Support"
|
170 |
msgstr "Техпідтримка"
|
171 |
|
484 |
msgstr "Ninja Forms"
|
485 |
|
486 |
#: includes/pro_banners.php:70
|
|
|
|
|
487 |
msgid "Divi Contact Form"
|
488 |
+
msgstr "Контактна форма плагіна Divi"
|
489 |
|
490 |
#: includes/pro_banners.php:71
|
|
|
|
|
491 |
msgid "Divi Login Forms"
|
492 |
+
msgstr "Форми входу плагіна Divi"
|
493 |
|
494 |
#: includes/pro_banners.php:72
|
|
|
|
|
495 |
msgid "Divi Theme Contact Form"
|
496 |
+
msgstr "Контактна форма теми Divi Theme"
|
497 |
|
498 |
#: includes/pro_banners.php:174
|
499 |
msgid "Size"
|
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.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -266,6 +266,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
266 |
|
267 |
== Changelog ==
|
268 |
|
|
|
|
|
|
|
|
|
269 |
= V1.44 - 09.05.2019 =
|
270 |
* NEW : The ability to keep submit button disabled until user passes the reCAPTCHA test has been added.
|
271 |
* Bugfix : The bug with "Advanced Protection" option has been fixed.
|
@@ -463,6 +467,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
463 |
|
464 |
== Upgrade Notice ==
|
465 |
|
|
|
|
|
|
|
466 |
= V1.44 =
|
467 |
* New features added.
|
468 |
* Bugs fixed.
|
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.2.2
|
7 |
+
Stable tag: 1.45
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
266 |
|
267 |
== Changelog ==
|
268 |
|
269 |
+
= V1.45 - 16.07.2019 =
|
270 |
+
* Bugfix : The bug with "Disabled Submit Button" option in several forms on the page has been fixed.
|
271 |
+
* Bugfix : The bug with custom forms has been fixed.
|
272 |
+
|
273 |
= V1.44 - 09.05.2019 =
|
274 |
* NEW : The ability to keep submit button disabled until user passes the reCAPTCHA test has been added.
|
275 |
* Bugfix : The bug with "Advanced Protection" option has been fixed.
|
467 |
|
468 |
== Upgrade Notice ==
|
469 |
|
470 |
+
= V1.45 =
|
471 |
+
* Bugs fixed.
|
472 |
+
|
473 |
= V1.44 =
|
474 |
* New features added.
|
475 |
* Bugs fixed.
|