Version Description
- 07.08.2018 =
- PRO : The compatibility with Testimonials by BestWebSoft has been added.
- Update : The Czech language file has been updated.
- PRO : The bug related to WooCommerce Checkout form has been fixed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Captcha (reCAPTCHA) by BestWebSoft |
Version | 1.37 |
Comparing to | |
See all releases |
Code changes from version 1.36 to 1.37
- css/gglcptch.css +2 -13
- google-captcha.php +35 -30
- includes/class-gglcptch-settings-tabs.php +3 -23
- includes/forms.php +22 -4
- includes/pro_banners.php +2 -2
- includes/whitelist.php +11 -3
- js/script.js +6 -33
- languages/google-captcha-cs_CZ.mo +0 -0
- languages/google-captcha-cs_CZ.po +94 -93
- languages/google-captcha-es_ES.mo +0 -0
- languages/google-captcha-es_ES.po +89 -88
- languages/google-captcha-ru_RU.mo +0 -0
- languages/google-captcha-ru_RU.po +108 -88
- languages/google-captcha-sr_RS.mo +0 -0
- languages/google-captcha-sr_RS.po +89 -88
- languages/google-captcha-uk.mo +0 -0
- languages/google-captcha-uk.po +108 -88
- readme.txt +16 -6
- screenshot-4.png +0 -0
- screenshot-5.png +0 -0
- screenshot-6.png +0 -0
- screenshot-7.png +0 -0
- screenshot-8.png +0 -0
- screenshot-9.png +0 -0
css/gglcptch.css
CHANGED
@@ -20,22 +20,11 @@
|
|
20 |
display: block;
|
21 |
margin: 12px 0;
|
22 |
}
|
23 |
-
.gglcptch_v1,
|
24 |
.gglcptch_v2 {
|
25 |
min-width: 1px;
|
26 |
padding: 10px 0;
|
27 |
clear: both;
|
28 |
}
|
29 |
-
|
30 |
-
|
31 |
-
background: url('https://www.google.com/recaptcha/api/img/red/sprite.png') -27px 0 no-repeat !important;
|
32 |
-
}
|
33 |
-
.rtl .gglcptch_v1 .recaptcha_r2_c2 {
|
34 |
-
background: url('https://www.google.com/recaptcha/api/img/red/sprite.png') -18px 0 no-repeat !important;
|
35 |
-
}
|
36 |
-
.rtl .gglcptch_v1 .recaptcha_r3_c1 {
|
37 |
-
background: url('https://www.google.com/recaptcha/api/img/red/sprite.png') -9px 0 no-repeat !important;
|
38 |
-
}
|
39 |
-
.rtl .gglcptch_v1 .recaptcha_r3_c3 {
|
40 |
-
background: url('https://www.google.com/recaptcha/api/img/red/sprite.png') 0 0 no-repeat !important;
|
41 |
}
|
20 |
display: block;
|
21 |
margin: 12px 0;
|
22 |
}
|
|
|
23 |
.gglcptch_v2 {
|
24 |
min-width: 1px;
|
25 |
padding: 10px 0;
|
26 |
clear: both;
|
27 |
}
|
28 |
+
.gglcptch_recaptcha .grecaptcha-badge {
|
29 |
+
z-index: 100;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
}
|
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
|
@@ -34,23 +34,25 @@ if ( ! function_exists( 'gglcptch_admin_menu' ) ) {
|
|
34 |
function gglcptch_admin_menu() {
|
35 |
global $submenu, $wp_version, $gglcptch_plugin_info;
|
36 |
|
37 |
-
|
|
|
38 |
|
39 |
-
|
40 |
|
41 |
-
|
42 |
|
43 |
-
|
44 |
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
|
52 |
-
|
53 |
-
|
|
|
54 |
}
|
55 |
}
|
56 |
|
@@ -206,8 +208,9 @@ if ( ! function_exists( 'gglcptch_add_styles' ) ) {
|
|
206 |
'1' == $gglcptch_options['login_form'] ||
|
207 |
'1' == $gglcptch_options['reset_pwd_form'] ||
|
208 |
'1' == $gglcptch_options['registration_form']
|
209 |
-
)
|
210 |
-
add_action(
|
|
|
211 |
}
|
212 |
}
|
213 |
}
|
@@ -244,13 +247,13 @@ if ( ! function_exists( 'gglcptch_add_scripts' ) ) {
|
|
244 |
|
245 |
wp_localize_script( 'gglcptch_script', 'gglcptch', array(
|
246 |
'options' => array(
|
247 |
-
'version'
|
248 |
-
'sitekey'
|
249 |
-
'theme'
|
250 |
-
'error'
|
251 |
),
|
252 |
'vars' => array(
|
253 |
-
'visibility'
|
254 |
)
|
255 |
) );
|
256 |
}
|
@@ -317,8 +320,6 @@ if ( ! function_exists( 'register_gglcptch_settings' ) ) {
|
|
317 |
if ( ! isset( $gglcptch_options['plugin_option_version'] ) || $gglcptch_options['plugin_option_version'] != $gglcptch_plugin_info["Version"] ) {
|
318 |
$gglcptch_options = array_merge( gglcptch_get_default_options(), $gglcptch_options );
|
319 |
$gglcptch_options['plugin_option_version'] = $gglcptch_plugin_info["Version"];
|
320 |
-
/* show pro features */
|
321 |
-
$gglcptch_options['hide_premium_options'] = array();
|
322 |
|
323 |
if ( is_multisite() ) {
|
324 |
switch_to_blog( 1 );
|
@@ -351,11 +352,12 @@ if ( ! function_exists( 'gglcptch_get_default_options' ) ) {
|
|
351 |
'whitelist_message' => __( 'You are in the whitelist', 'google-captcha' ),
|
352 |
'public_key' => '',
|
353 |
'private_key' => '',
|
354 |
-
'login_form' =>
|
355 |
-
'registration_form' =>
|
356 |
-
'reset_pwd_form' =>
|
357 |
-
'comments_form' =>
|
358 |
-
'contact_form' =>
|
|
|
359 |
'theme' => 'red',
|
360 |
'theme_v2' => 'light',
|
361 |
'recaptcha_version' => 'v2',
|
@@ -577,8 +579,9 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
577 |
'1' == $gglcptch_options['login_form'] ||
|
578 |
'1' == $gglcptch_options['reset_pwd_form'] ||
|
579 |
'1' == $gglcptch_options['registration_form']
|
580 |
-
)
|
581 |
add_action( 'login_footer', 'gglcptch_add_scripts' );
|
|
|
582 |
}
|
583 |
} elseif ( ! empty( $gglcptch_options['whitelist_message'] ) ) {
|
584 |
$content .= '<label class="gglcptch_whitelist_message">' . $gglcptch_options['whitelist_message'] . '</label>';
|
@@ -913,6 +916,7 @@ if ( ! function_exists( 'gglcptch_get_ip' ) ) {
|
|
913 |
*/
|
914 |
if ( ! function_exists( 'gglcptch_get_message' ) ) {
|
915 |
function gglcptch_get_message( $message_code = 'incorrect', $echo = false ) {
|
|
|
916 |
$message = '';
|
917 |
|
918 |
$messages = array(
|
@@ -957,8 +961,9 @@ if ( ! function_exists( 'gglcptch_is_woocommerce_page' ) ) {
|
|
957 |
$traces = debug_backtrace();
|
958 |
|
959 |
foreach( $traces as $trace ) {
|
960 |
-
if ( isset( $trace['file'] ) && false !== strpos( $trace['file'], 'woocommerce' ) )
|
961 |
return true;
|
|
|
962 |
}
|
963 |
return false;
|
964 |
}
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-captcha
|
8 |
Domain Path: /languages
|
9 |
+
Version: 1.37
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv3 or later
|
12 |
*/
|
13 |
|
14 |
+
/* © Copyright 2018 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
|
34 |
function gglcptch_admin_menu() {
|
35 |
global $submenu, $wp_version, $gglcptch_plugin_info;
|
36 |
|
37 |
+
if ( ! is_plugin_active( 'google-captcha-pro/google-captcha-pro.php' ) ) {
|
38 |
+
$settings_page = add_menu_page( __( 'Google Captcha Settings', 'google-captcha' ), 'Google Captcha', 'manage_options', 'google-captcha.php', 'gglcptch_add_settings_page', 'none' );
|
39 |
|
40 |
+
add_submenu_page( 'google-captcha.php', __( 'Google Captcha Settings', 'google-captcha'), __( 'Settings', 'google-captcha' ), 'manage_options', 'google-captcha.php', 'gglcptch_add_settings_page' );
|
41 |
|
42 |
+
$whitelist_page = add_submenu_page( 'google-captcha.php', __( 'Google Captcha Whitelist', 'google-captcha' ), __( 'Whitelist', 'google-captcha' ), 'manage_options', 'google-captcha-whitelist.php', 'gglcptch_add_settings_page' );
|
43 |
|
44 |
+
add_submenu_page( 'google-captcha.php', 'BWS Panel', 'BWS Panel', 'manage_options', 'gglcptch-bws-panel', 'bws_add_menu_render' );
|
45 |
|
46 |
+
if ( isset($submenu['google-captcha.php'] ) ) {
|
47 |
+
$submenu['google-captcha.php'][] = array(
|
48 |
+
'<span style="color:#d86463"> ' . __('Upgrade to Pro', 'google-captcha' ) . '</span>',
|
49 |
+
'manage_options',
|
50 |
+
'https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=b850d949ccc1239cab0da315c3c822ab&pn=109&v=' . $gglcptch_plugin_info["Version"] . '&wp_v=' . $wp_version );
|
51 |
+
}
|
52 |
|
53 |
+
add_action( "load-{$settings_page}", 'gglcptch_add_tabs' );
|
54 |
+
add_action( "load-{$whitelist_page}", 'gglcptch_add_tabs' );
|
55 |
+
}
|
56 |
}
|
57 |
}
|
58 |
|
208 |
'1' == $gglcptch_options['login_form'] ||
|
209 |
'1' == $gglcptch_options['reset_pwd_form'] ||
|
210 |
'1' == $gglcptch_options['registration_form']
|
211 |
+
) {
|
212 |
+
add_action('login_footer', 'gglcptch_add_scripts');
|
213 |
+
}
|
214 |
}
|
215 |
}
|
216 |
}
|
247 |
|
248 |
wp_localize_script( 'gglcptch_script', 'gglcptch', array(
|
249 |
'options' => array(
|
250 |
+
'version' => $gglcptch_options['recaptcha_version'],
|
251 |
+
'sitekey' => $gglcptch_options['public_key'],
|
252 |
+
'theme' => $gglcptch_options[ 'theme' . $version ],
|
253 |
+
'error' => sprintf( '<strong>%s</strong>: %s', __( 'Warning', 'google-captcha' ), gglcptch_get_message( 'multiple_blocks' ) )
|
254 |
),
|
255 |
'vars' => array(
|
256 |
+
'visibility' => ( 'login_footer' == current_filter() )
|
257 |
)
|
258 |
) );
|
259 |
}
|
320 |
if ( ! isset( $gglcptch_options['plugin_option_version'] ) || $gglcptch_options['plugin_option_version'] != $gglcptch_plugin_info["Version"] ) {
|
321 |
$gglcptch_options = array_merge( gglcptch_get_default_options(), $gglcptch_options );
|
322 |
$gglcptch_options['plugin_option_version'] = $gglcptch_plugin_info["Version"];
|
|
|
|
|
323 |
|
324 |
if ( is_multisite() ) {
|
325 |
switch_to_blog( 1 );
|
352 |
'whitelist_message' => __( 'You are in the whitelist', 'google-captcha' ),
|
353 |
'public_key' => '',
|
354 |
'private_key' => '',
|
355 |
+
'login_form' => 1,
|
356 |
+
'registration_form' => 0,
|
357 |
+
'reset_pwd_form' => 1,
|
358 |
+
'comments_form' => 0,
|
359 |
+
'contact_form' => 0,
|
360 |
+
'testimonials' => 0,
|
361 |
'theme' => 'red',
|
362 |
'theme_v2' => 'light',
|
363 |
'recaptcha_version' => 'v2',
|
579 |
'1' == $gglcptch_options['login_form'] ||
|
580 |
'1' == $gglcptch_options['reset_pwd_form'] ||
|
581 |
'1' == $gglcptch_options['registration_form']
|
582 |
+
) {
|
583 |
add_action( 'login_footer', 'gglcptch_add_scripts' );
|
584 |
+
}
|
585 |
}
|
586 |
} elseif ( ! empty( $gglcptch_options['whitelist_message'] ) ) {
|
587 |
$content .= '<label class="gglcptch_whitelist_message">' . $gglcptch_options['whitelist_message'] . '</label>';
|
916 |
*/
|
917 |
if ( ! function_exists( 'gglcptch_get_message' ) ) {
|
918 |
function gglcptch_get_message( $message_code = 'incorrect', $echo = false ) {
|
919 |
+
|
920 |
$message = '';
|
921 |
|
922 |
$messages = array(
|
961 |
$traces = debug_backtrace();
|
962 |
|
963 |
foreach( $traces as $trace ) {
|
964 |
+
if ( isset( $trace['file'] ) && false !== strpos( $trace['file'], 'woocommerce' ) ) {
|
965 |
return true;
|
966 |
+
}
|
967 |
}
|
968 |
return false;
|
969 |
}
|
includes/class-gglcptch-settings-tabs.php
CHANGED
@@ -60,7 +60,6 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
|
|
60 |
);
|
61 |
|
62 |
$this->versions = array(
|
63 |
-
'v1' => sprintf( '%s 1', __( 'Version', 'google-captcha' ) ),
|
64 |
'v2' => sprintf( '%s 2', __( 'Version', 'google-captcha' ) ),
|
65 |
'invisible' => __( 'Invisible', 'google-captcha' )
|
66 |
);
|
@@ -116,8 +115,7 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
|
|
116 |
$this->options['whitelist_message'] = stripslashes( esc_html( $_POST['gglcptch_whitelist_message'] ) );
|
117 |
$this->options['public_key'] = trim( stripslashes( esc_html( $_POST['gglcptch_public_key'] ) ) );
|
118 |
$this->options['private_key'] = trim( stripslashes( esc_html( $_POST['gglcptch_private_key'] ) ) );
|
119 |
-
$this->options['recaptcha_version'] = in_array( $_POST['gglcptch_recaptcha_version'], array( '
|
120 |
-
$this->options['theme'] = stripslashes( esc_html( $_POST['gglcptch_theme'] ) );
|
121 |
$this->options['theme_v2'] = stripslashes( esc_html( $_POST['gglcptch_theme_v2'] ) );
|
122 |
|
123 |
$this->options['disable_submit'] = isset( $_POST['gglcptch_disable_submit'] ) ? 1 : 0;
|
@@ -144,9 +142,7 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
|
|
144 |
* @param void
|
145 |
* @return void
|
146 |
*/
|
147 |
-
public function tab_settings() {
|
148 |
-
global $wp_version;
|
149 |
-
$is_main_site = is_main_site( get_current_blog_id() ); ?>
|
150 |
<h3 class="bws_tab_label"><?php _e( 'Google Captcha Settings', 'google-captcha' ); ?></h3>
|
151 |
<?php $this->help_phrase(); ?>
|
152 |
<hr>
|
@@ -262,18 +258,6 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
|
|
262 |
</fieldset>
|
263 |
</td>
|
264 |
</tr>
|
265 |
-
<tr class="gglcptch_theme_v1" valign="top">
|
266 |
-
<th scope="row">
|
267 |
-
<?php _e( 'Theme', 'google-captcha' ); ?>
|
268 |
-
</th>
|
269 |
-
<td>
|
270 |
-
<select name="gglcptch_theme">
|
271 |
-
<?php foreach ( $this->themes as $theme ) { ?>
|
272 |
-
<option value="<?php echo $theme[0]; ?>" <?php selected( $theme[0], $this->options['theme'] ); ?>><?php echo $theme[1]; ?></option>
|
273 |
-
<?php } ?>
|
274 |
-
</select>
|
275 |
-
</td>
|
276 |
-
</tr>
|
277 |
<tr class="gglcptch_theme_v2" valign="top">
|
278 |
<th scope="row">
|
279 |
<?php _e( 'Theme', 'google-captcha' ); ?>
|
@@ -319,13 +303,9 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
|
|
319 |
/**
|
320 |
* Display custom error\message\notice
|
321 |
* @access public
|
322 |
-
* @param $save_results - array with error\message\notice
|
323 |
* @return void
|
324 |
*/
|
325 |
-
public function display_custom_messages(
|
326 |
-
if ( $this->options['recaptcha_version'] == 'v1' ) { ?>
|
327 |
-
<div class="updated inline bws-notice"><p><strong><?php _e( "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA version 1 features.", 'google-captcha' ); ?></strong></p></div>
|
328 |
-
<?php }
|
329 |
if ( ! empty( $this->options['need_keys_verified_check'] ) ) { ?>
|
330 |
<div class="updated inline bws-notice"><p><strong><?php _e( 'reCAPTCHA version was changed. Please submit "Test reCAPTCHA" and regenerate Site and Secret keys if necessary.', 'google-captcha' ); ?></strong></p></div>
|
331 |
<?php }
|
60 |
);
|
61 |
|
62 |
$this->versions = array(
|
|
|
63 |
'v2' => sprintf( '%s 2', __( 'Version', 'google-captcha' ) ),
|
64 |
'invisible' => __( 'Invisible', 'google-captcha' )
|
65 |
);
|
115 |
$this->options['whitelist_message'] = stripslashes( esc_html( $_POST['gglcptch_whitelist_message'] ) );
|
116 |
$this->options['public_key'] = trim( stripslashes( esc_html( $_POST['gglcptch_public_key'] ) ) );
|
117 |
$this->options['private_key'] = trim( stripslashes( esc_html( $_POST['gglcptch_private_key'] ) ) );
|
118 |
+
$this->options['recaptcha_version'] = in_array( $_POST['gglcptch_recaptcha_version'], array( 'v2', 'invisible' ) ) ? $_POST['gglcptch_recaptcha_version']: 'v2';
|
|
|
119 |
$this->options['theme_v2'] = stripslashes( esc_html( $_POST['gglcptch_theme_v2'] ) );
|
120 |
|
121 |
$this->options['disable_submit'] = isset( $_POST['gglcptch_disable_submit'] ) ? 1 : 0;
|
142 |
* @param void
|
143 |
* @return void
|
144 |
*/
|
145 |
+
public function tab_settings() { ?>
|
|
|
|
|
146 |
<h3 class="bws_tab_label"><?php _e( 'Google Captcha Settings', 'google-captcha' ); ?></h3>
|
147 |
<?php $this->help_phrase(); ?>
|
148 |
<hr>
|
258 |
</fieldset>
|
259 |
</td>
|
260 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
<tr class="gglcptch_theme_v2" valign="top">
|
262 |
<th scope="row">
|
263 |
<?php _e( 'Theme', 'google-captcha' ); ?>
|
303 |
/**
|
304 |
* Display custom error\message\notice
|
305 |
* @access public
|
|
|
306 |
* @return void
|
307 |
*/
|
308 |
+
public function display_custom_messages() {
|
|
|
|
|
|
|
309 |
if ( ! empty( $this->options['need_keys_verified_check'] ) ) { ?>
|
310 |
<div class="updated inline bws-notice"><p><strong><?php _e( 'reCAPTCHA version was changed. Please submit "Test reCAPTCHA" and regenerate Site and Secret keys if necessary.', 'google-captcha' ); ?></strong></p></div>
|
311 |
<?php }
|
includes/forms.php
CHANGED
@@ -12,7 +12,8 @@ if ( ! function_exists( 'gglcptch_get_forms' ) ) {
|
|
12 |
'registration_form' => array( 'form_name' => __( 'Registration form', 'google-captcha' ) ),
|
13 |
'reset_pwd_form' => array( 'form_name' => __( 'Reset password form', 'google-captcha' ) ),
|
14 |
'comments_form' => array( 'form_name' => __( 'Comments form', 'google-captcha' ) ),
|
15 |
-
'contact_form' => array( 'form_name' => 'Contact Form' )
|
|
|
16 |
);
|
17 |
|
18 |
$custom_forms = apply_filters( 'gglcptch_add_custom_form', array() );
|
@@ -45,7 +46,8 @@ if ( ! function_exists( 'gglcptch_get_sections' ) ) {
|
|
45 |
'external' => array(
|
46 |
'name' => __( 'External Plugins', 'google-captcha' ),
|
47 |
'forms' => array(
|
48 |
-
'contact_form'
|
|
|
49 |
)
|
50 |
)
|
51 |
);
|
@@ -129,7 +131,8 @@ if ( ! function_exists( 'gglcptch_get_form_notice' ) ) {
|
|
129 |
$form_notice = "";
|
130 |
|
131 |
$plugins = array(
|
132 |
-
'contact_form' => array( 'contact-form-plugin/contact_form.php', 'contact-form-pro/contact_form_pro.php' )
|
|
|
133 |
);
|
134 |
|
135 |
if ( isset( $plugins[ $form_slug ] ) ) {
|
@@ -225,7 +228,7 @@ if ( ! function_exists( 'gglcptch_login_display' ) ) {
|
|
225 |
|
226 |
global $gglcptch_options;
|
227 |
|
228 |
-
if ( isset( $gglcptch_options['recaptcha_version'] )
|
229 |
if ( 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
230 |
$from_width = 302;
|
231 |
} else {
|
@@ -381,4 +384,19 @@ if ( ! function_exists( 'gglcptch_contact_form_check' ) ) {
|
|
381 |
}
|
382 |
return $allow;
|
383 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
}
|
12 |
'registration_form' => array( 'form_name' => __( 'Registration form', 'google-captcha' ) ),
|
13 |
'reset_pwd_form' => array( 'form_name' => __( 'Reset password form', 'google-captcha' ) ),
|
14 |
'comments_form' => array( 'form_name' => __( 'Comments form', 'google-captcha' ) ),
|
15 |
+
'contact_form' => array( 'form_name' => 'Contact Form' ),
|
16 |
+
'testimonials' => array( 'form_name' => __( 'Testimonials', 'google-captcha' ) )
|
17 |
);
|
18 |
|
19 |
$custom_forms = apply_filters( 'gglcptch_add_custom_form', array() );
|
46 |
'external' => array(
|
47 |
'name' => __( 'External Plugins', 'google-captcha' ),
|
48 |
'forms' => array(
|
49 |
+
'contact_form',
|
50 |
+
'testimonials'
|
51 |
)
|
52 |
)
|
53 |
);
|
131 |
$form_notice = "";
|
132 |
|
133 |
$plugins = array(
|
134 |
+
'contact_form' => array( 'contact-form-plugin/contact_form.php', 'contact-form-pro/contact_form_pro.php' ),
|
135 |
+
'testimonials' => 'bws-testimonials/bws-testimonials.php',
|
136 |
);
|
137 |
|
138 |
if ( isset( $plugins[ $form_slug ] ) ) {
|
228 |
|
229 |
global $gglcptch_options;
|
230 |
|
231 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) ) {
|
232 |
if ( 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
233 |
$from_width = 302;
|
234 |
} else {
|
384 |
}
|
385 |
return $allow;
|
386 |
}
|
387 |
+
}
|
388 |
+
|
389 |
+
/* Check google captcha in BWS Testimonials */
|
390 |
+
if ( ! function_exists( 'gglcptch_testimonials_check' ) ) {
|
391 |
+
function gglcptch_testimonials_check( $allow = true ) {
|
392 |
+
global $gglcptch_check;
|
393 |
+
if ( ! $allow || is_string( $allow ) || is_wp_error( $allow ) ) {
|
394 |
+
return $allow;
|
395 |
+
}
|
396 |
+
$gglcptch_check = gglcptch_check( 'testimonials' );
|
397 |
+
if ( ! $gglcptch_check['response'] ) {
|
398 |
+
return $gglcptch_check['errors'];
|
399 |
+
}
|
400 |
+
return $allow;
|
401 |
+
}
|
402 |
}
|
includes/pro_banners.php
CHANGED
@@ -17,7 +17,7 @@ if ( ! function_exists( 'gglcptch_pro_block' ) ) {
|
|
17 |
<div class="bws_pro_version_bloc gglcptch_pro_block <?php echo $func;?>" title="<?php _e( 'This options is available in Pro version of plugin', 'google-captcha' ); ?>">
|
18 |
<div class="bws_pro_version_table_bloc">
|
19 |
<?php if ( $show_cross ) { ?>
|
20 |
-
<button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'google-captcha' ); ?>"></button>
|
21 |
<?php } ?>
|
22 |
<div class="bws_table_bg"></div>
|
23 |
<div class="bws_pro_version">
|
@@ -75,7 +75,7 @@ if ( ! function_exists( 'gglcptch_supported_plugins_banner' ) ) {
|
|
75 |
'si_contact_form',
|
76 |
'jetpack_contact_form',
|
77 |
'sbscrbr',
|
78 |
-
'mailchimp'
|
79 |
)
|
80 |
),
|
81 |
'bbpress' => array(
|
17 |
<div class="bws_pro_version_bloc gglcptch_pro_block <?php echo $func;?>" title="<?php _e( 'This options is available in Pro version of plugin', 'google-captcha' ); ?>">
|
18 |
<div class="bws_pro_version_table_bloc">
|
19 |
<?php if ( $show_cross ) { ?>
|
20 |
+
<button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'google-captcha' ); ?>" value="1"></button>
|
21 |
<?php } ?>
|
22 |
<div class="bws_table_bg"></div>
|
23 |
<div class="bws_pro_version">
|
75 |
'si_contact_form',
|
76 |
'jetpack_contact_form',
|
77 |
'sbscrbr',
|
78 |
+
'mailchimp',
|
79 |
)
|
80 |
),
|
81 |
'bbpress' => array(
|
includes/whitelist.php
CHANGED
@@ -87,9 +87,17 @@ if ( ! class_exists( 'Gglcptch_Whitelist' ) ) {
|
|
87 |
<br/>
|
88 |
<span class="bws_info" style="line-height: 2;"><?php _e( "Allowed diapason", 'google-captcha' ); ?>: <code>0.0.0.0 - 255.255.255.255</code></span>
|
89 |
</div>
|
90 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
<p>
|
92 |
-
<input type="submit" class="button-secondary" value="<?php _e( 'Add IP to whitelist', 'google-captcha' ) ?>" />
|
93 |
<?php wp_nonce_field( $this->basename, 'gglcptch_nonce_name' ); ?>
|
94 |
</p>
|
95 |
</form>
|
@@ -343,7 +351,7 @@ if ( ! class_exists( 'Gglcptch_Whitelist' ) ) {
|
|
343 |
} else {
|
344 |
$error = __( 'Some errors occurred.', 'google-captcha' );
|
345 |
}
|
346 |
-
} elseif ( isset( $_POST['
|
347 |
$error = __( 'You have not entered any IP.', 'google-captcha' );
|
348 |
} elseif ( isset( $_REQUEST['s'] ) ) {
|
349 |
if ( '' == $_REQUEST['s'] ) {
|
87 |
<br/>
|
88 |
<span class="bws_info" style="line-height: 2;"><?php _e( "Allowed diapason", 'google-captcha' ); ?>: <code>0.0.0.0 - 255.255.255.255</code></span>
|
89 |
</div>
|
90 |
+
<?php
|
91 |
+
if ( isset( $_POST['bws_hide_premium_options'] ) ) {
|
92 |
+
$gglcptch_options['hide_premium_options'][0] = 1;
|
93 |
+
update_option( 'gglcptch_options', $gglcptch_options );
|
94 |
+
}
|
95 |
+
$display_pro_options_for_whitelist = get_option( 'gglcptch_options' );
|
96 |
+
if( empty( $display_pro_options_for_whitelist['hide_premium_options'][0] ) ) {
|
97 |
+
gglcptch_pro_block( 'gglcptch_whitelist_banner' );
|
98 |
+
} ?>
|
99 |
<p>
|
100 |
+
<input type="submit" name="gglcptch_submit_add_to_whitelist" class="button-secondary" value="<?php _e( 'Add IP to whitelist', 'google-captcha' ) ?>" />
|
101 |
<?php wp_nonce_field( $this->basename, 'gglcptch_nonce_name' ); ?>
|
102 |
</p>
|
103 |
</form>
|
351 |
} else {
|
352 |
$error = __( 'Some errors occurred.', 'google-captcha' );
|
353 |
}
|
354 |
+
} elseif ( isset( $_POST['gglcptch_submit_add_to_whitelist'] ) && empty( $_POST['gglcptch_add_to_whitelist'] ) ) {
|
355 |
$error = __( 'You have not entered any IP.', 'google-captcha' );
|
356 |
} elseif ( isset( $_REQUEST['s'] ) ) {
|
357 |
if ( '' == $_REQUEST['s'] ) {
|
js/script.js
CHANGED
@@ -24,7 +24,6 @@
|
|
24 |
*/
|
25 |
if ( 'v2' == gglcptch.options.version || 'invisible' == gglcptch.options.version ) {
|
26 |
$( '.g-recaptcha' ).each( function() {
|
27 |
-
|
28 |
/* reCAPTCHA will be generated into the empty block only */
|
29 |
if ( $( this ).html() === '' && $( this ).text() === '' ) {
|
30 |
|
@@ -83,7 +82,7 @@
|
|
83 |
*/
|
84 |
$( 'form' ).each( function() {
|
85 |
if ( $( this ).contents().find( 'iframe[title="recaptcha widget"]' ).length > 1 && ! $( this ).children( '.gglcptch_dublicate_error' ).length ) {
|
86 |
-
$( this ).prepend( '<div class="gglcptch_dublicate_error error" style="color: red;">'+ gglcptch.options.error + '</div><br />\n' );
|
87 |
}
|
88 |
} );
|
89 |
}
|
@@ -96,7 +95,7 @@
|
|
96 |
|
97 |
function storeEvents( el ) {
|
98 |
var target = el,
|
99 |
-
events = $._data( el.get(0), 'events' );
|
100 |
/* restoring events */
|
101 |
if ( typeof events != 'undefined' ) {
|
102 |
var storedEvents = {};
|
@@ -105,9 +104,9 @@
|
|
105 |
target.data( 'storedEvents', storedEvents );
|
106 |
}
|
107 |
/* storing and removing onclick action */
|
108 |
-
if ( 'undefined' != typeof target.attr( 'onclick') ) {
|
109 |
target.attr( 'gglcptch-onclick', target.attr( 'onclick') );
|
110 |
-
target.removeAttr('onclick');
|
111 |
}
|
112 |
}
|
113 |
|
@@ -126,8 +125,8 @@
|
|
126 |
target.removeData( 'storedEvents' );
|
127 |
/* restoring onclick action */
|
128 |
if ( 'undefined' != typeof target.attr( 'gglcptch-onclick' ) ) {
|
129 |
-
target.attr('onclick', target.attr( 'gglcptch-onclick') );
|
130 |
-
target.removeAttr('gglcptch-onclick');
|
131 |
}
|
132 |
}
|
133 |
|
@@ -266,30 +265,4 @@
|
|
266 |
}
|
267 |
}
|
268 |
|
269 |
-
if ( gglcptch.options.version == 'v2' ) {
|
270 |
-
var width = $( window ).width();
|
271 |
-
$( window ).on( 'resize', function( ) {
|
272 |
-
if( $( window ).width() != width ) {
|
273 |
-
width = $( window ).width();
|
274 |
-
if ( typeof grecaptcha != "undefined" ) {
|
275 |
-
$( '.gglcptch_recaptcha' ).html( '' );
|
276 |
-
$('script[src^="https://www.google.com/recaptcha/api.js"], script[src^="https://www.gstatic.com/recaptcha/api2"]').remove();
|
277 |
-
var src = "https://www.google.com/recaptcha/api.js";
|
278 |
-
$.getScript( {
|
279 |
-
url : src,
|
280 |
-
success : function() {
|
281 |
-
setTimeout( function() {
|
282 |
-
try {
|
283 |
-
gglcptch.prepare();
|
284 |
-
} catch ( e ) {
|
285 |
-
console.log( e );
|
286 |
-
}
|
287 |
-
}, 500 );
|
288 |
-
}
|
289 |
-
} );
|
290 |
-
}
|
291 |
-
}
|
292 |
-
} );
|
293 |
-
}
|
294 |
-
|
295 |
} )( jQuery, gglcptch );
|
24 |
*/
|
25 |
if ( 'v2' == gglcptch.options.version || 'invisible' == gglcptch.options.version ) {
|
26 |
$( '.g-recaptcha' ).each( function() {
|
|
|
27 |
/* reCAPTCHA will be generated into the empty block only */
|
28 |
if ( $( this ).html() === '' && $( this ).text() === '' ) {
|
29 |
|
82 |
*/
|
83 |
$( 'form' ).each( function() {
|
84 |
if ( $( this ).contents().find( 'iframe[title="recaptcha widget"]' ).length > 1 && ! $( this ).children( '.gglcptch_dublicate_error' ).length ) {
|
85 |
+
$( this ).prepend( '<div class="gglcptch_dublicate_error error" style="color: red;">' + gglcptch.options.error + '</div><br />\n' );
|
86 |
}
|
87 |
} );
|
88 |
}
|
95 |
|
96 |
function storeEvents( el ) {
|
97 |
var target = el,
|
98 |
+
events = $._data( el.get( 0 ), 'events' );
|
99 |
/* restoring events */
|
100 |
if ( typeof events != 'undefined' ) {
|
101 |
var storedEvents = {};
|
104 |
target.data( 'storedEvents', storedEvents );
|
105 |
}
|
106 |
/* storing and removing onclick action */
|
107 |
+
if ( 'undefined' != typeof target.attr( 'onclick' ) ) {
|
108 |
target.attr( 'gglcptch-onclick', target.attr( 'onclick') );
|
109 |
+
target.removeAttr( 'onclick' );
|
110 |
}
|
111 |
}
|
112 |
|
125 |
target.removeData( 'storedEvents' );
|
126 |
/* restoring onclick action */
|
127 |
if ( 'undefined' != typeof target.attr( 'gglcptch-onclick' ) ) {
|
128 |
+
target.attr( 'onclick', target.attr( 'gglcptch-onclick' ) );
|
129 |
+
target.removeAttr( 'gglcptch-onclick' );
|
130 |
}
|
131 |
}
|
132 |
|
265 |
}
|
266 |
}
|
267 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
} )( jQuery, gglcptch );
|
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: 2018-
|
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:
|
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,63 +51,63 @@ 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,29 +115,29 @@ 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 "Please submit \"Test verification\""
|
120 |
msgstr "Odešlete „Test ověření“"
|
121 |
|
122 |
-
#: google-captcha.php:
|
123 |
msgid "Please complete the captcha and submit \"Test verification\""
|
124 |
msgstr "Doplňte captcha a odešlete „Test ověření“"
|
125 |
|
126 |
-
#: google-captcha.php:
|
127 |
msgid "Test verification"
|
128 |
msgstr "Test ověření"
|
129 |
|
130 |
-
#: google-captcha.php:
|
131 |
msgid "The verification is successfully completed."
|
132 |
msgstr "Ověření je úspěšně dokončeno."
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
msgid "FAQ"
|
136 |
msgstr ""
|
137 |
"Časté dotazy <acronym title=\\\"Frequently asked questions\\\">(FAQ)</"
|
138 |
"acronym>"
|
139 |
|
140 |
-
#: google-captcha.php:
|
141 |
msgid "Support"
|
142 |
msgstr "Podpora"
|
143 |
|
@@ -162,36 +162,35 @@ msgid "Secret Key"
|
|
162 |
msgstr "Tajný klíč"
|
163 |
|
164 |
#: includes/class-gglcptch-settings-tabs.php:63
|
165 |
-
#: includes/class-gglcptch-settings-tabs.php:64
|
166 |
msgid "Version"
|
167 |
msgstr "Verze"
|
168 |
|
169 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
170 |
msgid "Invisible"
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
174 |
msgid "Enter site key"
|
175 |
msgstr "Vložte webový klíč"
|
176 |
|
177 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
178 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
179 |
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
180 |
msgstr "VAROVÁNÍ: Captcha se nezobrazí, dokud nebudou vyplněna pole s klíči."
|
181 |
|
182 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
183 |
msgid "Enter secret key"
|
184 |
msgstr "Vložte tajný klíč"
|
185 |
|
186 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
187 |
msgid "Settings saved."
|
188 |
msgstr "Nastavení uloženo."
|
189 |
|
190 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
191 |
msgid "Authentication"
|
192 |
msgstr "Autentizace"
|
193 |
|
194 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
195 |
msgid ""
|
196 |
"Register your website with Google to get required API keys and enter them "
|
197 |
"below."
|
@@ -199,53 +198,52 @@ msgstr ""
|
|
199 |
"Zaregistrujte svůj web na Google, abyste získali požadované API klíče a "
|
200 |
"zadejte je níže."
|
201 |
|
202 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
203 |
msgid "Get the API Keys"
|
204 |
msgstr "Získat API klíče"
|
205 |
|
206 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
207 |
msgid "Test reCAPTCHA"
|
208 |
msgstr "Vyzkoušet reCAPTCHA"
|
209 |
|
210 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
211 |
msgid "General"
|
212 |
msgstr "Obecné"
|
213 |
|
214 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
215 |
msgid "Enable reCAPTCHA for"
|
216 |
msgstr "Povolit reCAPTCHA pro"
|
217 |
|
218 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
219 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
220 |
msgid "Close"
|
221 |
msgstr "Zavřít"
|
222 |
|
223 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
224 |
msgid "Hide reCAPTCHA for"
|
225 |
msgstr "Skrýt reCAPTCHA pro"
|
226 |
|
227 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
228 |
msgid "reCAPTCHA Version"
|
229 |
msgstr "reCAPTCHA verze"
|
230 |
|
231 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
232 |
-
#: includes/class-gglcptch-settings-tabs.php:279
|
233 |
msgid "Theme"
|
234 |
msgstr "Šablona"
|
235 |
|
236 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
237 |
msgid "Whitelist Notification"
|
238 |
msgstr "Upozornění na seznam povolených"
|
239 |
|
240 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
241 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
242 |
-
msgstr "Tato zpráva se
|
243 |
|
244 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
245 |
msgid "Disabled Submit Button"
|
246 |
msgstr "Neaktivní tlačitko odeslat"
|
247 |
|
248 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
249 |
msgid ""
|
250 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
251 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
@@ -254,15 +252,7 @@ msgstr ""
|
|
254 |
"možnost nepoužívejte, pokud se zobrazuje zpráva „Nepodařilo se načíst "
|
255 |
"Google reCAPTCHA“)."
|
256 |
|
257 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
258 |
-
msgid ""
|
259 |
-
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
260 |
-
"version 1 features."
|
261 |
-
msgstr ""
|
262 |
-
"Na stránce lze zobrazit pouze jednu reCAPTCHA, což souvisí s vlastnostmi "
|
263 |
-
"reCAPTCHA verze 1."
|
264 |
-
|
265 |
-
#: includes/class-gglcptch-settings-tabs.php:330
|
266 |
msgid ""
|
267 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
268 |
"regenerate Site and Secret keys if necessary."
|
@@ -270,16 +260,16 @@ msgstr ""
|
|
270 |
"Byla změněna verze reCAPTCHA. Klikněte na „Vyzkoušet reCAPTCHA“ "
|
271 |
"a znovu vygenerujte tajné a webové klíče, je-li to nezbytné."
|
272 |
|
273 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
274 |
msgid "Google Captcha Shortcode"
|
275 |
msgstr "Zkrácený kód Google Captcha"
|
276 |
|
277 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
278 |
msgid ""
|
279 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
280 |
msgstr ""
|
281 |
-
"
|
282 |
-
"zkráceného kódu:"
|
283 |
|
284 |
#: includes/forms.php:11
|
285 |
msgid "Login form"
|
@@ -297,35 +287,39 @@ msgstr "Formulář pro resetování hesla"
|
|
297 |
msgid "Comments form"
|
298 |
msgstr "Formulář komentářů"
|
299 |
|
300 |
-
#: includes/forms.php:
|
|
|
|
|
|
|
|
|
301 |
msgid "WordPress default"
|
302 |
msgstr "WordPress"
|
303 |
|
304 |
-
#: includes/forms.php:
|
305 |
msgid "External Plugins"
|
306 |
msgstr "Externí pluginy"
|
307 |
|
308 |
-
#: includes/forms.php:
|
309 |
msgid "Custom Forms"
|
310 |
msgstr "Vlastní formuláře"
|
311 |
|
312 |
-
#: includes/forms.php:
|
313 |
msgid "Google Captcha Plugin"
|
314 |
msgstr "Plugin Google Captcha"
|
315 |
|
316 |
-
#: includes/forms.php:
|
317 |
msgid "Activate"
|
318 |
msgstr "Aktivovat"
|
319 |
|
320 |
-
#: includes/forms.php:
|
321 |
msgid "Install Now"
|
322 |
msgstr "Instalovat nyní"
|
323 |
|
324 |
-
#: includes/forms.php:
|
325 |
msgid "Authentication failed."
|
326 |
msgstr "Ověření selhalo."
|
327 |
|
328 |
-
#: includes/forms.php:
|
329 |
msgid "Click the BACK button on your browser and try again."
|
330 |
msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu."
|
331 |
|
@@ -363,7 +357,7 @@ msgstr "tabelátor, nový řádek nebo návratu vozíku."
|
|
363 |
|
364 |
#: includes/pro_banners.php:53
|
365 |
msgid "Jetpack Contact Form"
|
366 |
-
msgstr "Jetpack
|
367 |
|
368 |
#: includes/pro_banners.php:56
|
369 |
msgid "bbPress New Topic form"
|
@@ -461,67 +455,74 @@ msgstr "Má IP adresa"
|
|
461 |
msgid "Allowed diapason"
|
462 |
msgstr "Povolený rozsah"
|
463 |
|
464 |
-
#: includes/whitelist.php:
|
465 |
msgid "Add IP to whitelist"
|
466 |
msgstr "Přidat IP adresu na seznam povolených"
|
467 |
|
468 |
-
#: includes/whitelist.php:
|
469 |
msgid "Search IP"
|
470 |
msgstr "Hledat IP adresu"
|
471 |
|
472 |
-
#: includes/whitelist.php:
|
473 |
msgid "Nothing found"
|
474 |
msgstr "Nic nenalezeno"
|
475 |
|
476 |
-
#: includes/whitelist.php:
|
477 |
msgid "No IP in the whitelist"
|
478 |
msgstr "Na seznamu povolených zatím není žádná IP adresa"
|
479 |
|
480 |
-
#: includes/whitelist.php:
|
481 |
msgid "IP Address"
|
482 |
msgstr "IP adresa"
|
483 |
|
484 |
-
#: includes/whitelist.php:
|
485 |
msgid "Date Added"
|
486 |
msgstr "Datum přidání"
|
487 |
|
488 |
-
#: includes/whitelist.php:
|
489 |
msgid "Delete"
|
490 |
msgstr "Smazat"
|
491 |
|
492 |
-
#: includes/whitelist.php:
|
493 |
msgid "IP added to the whitelist successfully."
|
494 |
msgstr "IP adresa byla úspěšně přidána na seznam povolených."
|
495 |
|
496 |
-
#: includes/whitelist.php:
|
497 |
-
#: includes/whitelist.php:
|
498 |
msgid "Some errors occurred."
|
499 |
msgstr "Došlo k chybám."
|
500 |
|
501 |
-
#: includes/whitelist.php:
|
502 |
msgid "IP is already in the whitelist."
|
503 |
msgstr "IP adresa již na seznamu povolených je."
|
504 |
|
505 |
-
#: includes/whitelist.php:
|
506 |
msgid "Invalid IP. See allowed formats."
|
507 |
msgstr "Neplatná IP adresa. Zkontrolujte Přípustné formáty."
|
508 |
|
509 |
-
#: includes/whitelist.php:
|
510 |
msgid "One IP was deleted successfully."
|
511 |
msgstr "Jedna IP adresa byla úspěšně odstraněna."
|
512 |
|
513 |
-
#: includes/whitelist.php:
|
514 |
msgid "You have not entered any IP."
|
515 |
msgstr "Nezadali jste žádnou IP adresu."
|
516 |
|
517 |
-
#: includes/whitelist.php:
|
518 |
msgid "You have not entered any IP in to the search form."
|
519 |
msgstr "Do vyhledávacího formuláře jste nezadali žádnou IP adresu."
|
520 |
|
521 |
-
#: includes/whitelist.php:
|
522 |
msgid "Search results for"
|
523 |
msgstr "Výsledky hledání pro"
|
524 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
#~ msgid "Test ReCaptcha"
|
526 |
#~ msgstr "Vyzkoušet reCAPTCHA"
|
527 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-08-03 14:52+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:38 google-captcha.php:40 google-captcha.php:447
|
21 |
+
#: includes/class-gglcptch-settings-tabs.php:146
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Nastavení Google Captcha"
|
24 |
|
25 |
+
#: google-captcha.php:40 google-captcha.php:1030 google-captcha.php:1043
|
26 |
#: includes/class-gglcptch-settings-tabs.php:25
|
27 |
msgid "Settings"
|
28 |
msgstr "Nastavení"
|
29 |
|
30 |
+
#: google-captcha.php:42 includes/whitelist.php:46
|
31 |
msgid "Google Captcha Whitelist"
|
32 |
msgstr "Google Captcha seznam povolených"
|
33 |
|
34 |
+
#: google-captcha.php:42
|
35 |
msgid "Whitelist"
|
36 |
msgstr "Seznam povolených"
|
37 |
|
38 |
+
#: google-captcha.php:48 includes/pro_banners.php:29
|
39 |
msgid "Upgrade to Pro"
|
40 |
msgstr "Aktualizovat na Pro"
|
41 |
|
42 |
+
#: google-captcha.php:236
|
43 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
44 |
msgstr "Počkejte, než se Google reCAPTCHA načte."
|
45 |
|
46 |
+
#: google-captcha.php:237
|
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:253
|
55 |
msgid "Warning"
|
56 |
msgstr "Upozornění"
|
57 |
|
58 |
+
#: google-captcha.php:352
|
59 |
msgid "You are in the whitelist"
|
60 |
msgstr "Jste na seznamu povolených"
|
61 |
|
62 |
+
#: google-captcha.php:534 google-captcha.php:1065
|
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:535 google-captcha.php:1066
|
67 |
msgid "here"
|
68 |
msgstr "zde"
|
69 |
|
70 |
+
#: google-captcha.php:536 google-captcha.php:1067
|
71 |
msgid "and enter them on the"
|
72 |
msgstr "a zadejte je na"
|
73 |
|
74 |
+
#: google-captcha.php:538 google-captcha.php:1069
|
75 |
msgid "plugin setting page"
|
76 |
msgstr "stránce nastavení pluginu"
|
77 |
|
78 |
+
#: google-captcha.php:799 includes/forms.php:365
|
79 |
msgid "Error"
|
80 |
msgstr "Chyba"
|
81 |
|
82 |
+
#: google-captcha.php:924
|
83 |
msgid "User response is missing."
|
84 |
msgstr "Chybí odezva uživatele."
|
85 |
|
86 |
+
#: google-captcha.php:928 google-captcha.php:936
|
87 |
msgid "Secret Key is invalid."
|
88 |
msgstr "Tajný klíč je neplatný."
|
89 |
|
90 |
+
#: google-captcha.php:929 google-captcha.php:937
|
91 |
msgid "Check your domain configurations"
|
92 |
msgstr "Zkontrolujte konfiguraci vaší domény"
|
93 |
|
94 |
+
#: google-captcha.php:930 google-captcha.php:938
|
95 |
msgid "and enter it again"
|
96 |
msgstr "a zadejte jej znovu"
|
97 |
|
98 |
+
#: google-captcha.php:933
|
99 |
msgid "Secret Key is missing."
|
100 |
msgstr "Tajný klíč chybí."
|
101 |
|
102 |
+
#: google-captcha.php:940
|
103 |
msgid "User response is invalid"
|
104 |
msgstr "Neplatná odezva uživatele"
|
105 |
|
106 |
+
#: google-captcha.php:941
|
107 |
msgid "You have entered an incorrect reCAPTCHA value."
|
108 |
msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
|
109 |
|
110 |
+
#: google-captcha.php:942
|
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 |
"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:980
|
119 |
msgid "Please submit \"Test verification\""
|
120 |
msgstr "Odešlete „Test ověření“"
|
121 |
|
122 |
+
#: google-captcha.php:982
|
123 |
msgid "Please complete the captcha and submit \"Test verification\""
|
124 |
msgstr "Doplňte captcha a odešlete „Test ověření“"
|
125 |
|
126 |
+
#: google-captcha.php:989
|
127 |
msgid "Test verification"
|
128 |
msgstr "Test ověření"
|
129 |
|
130 |
+
#: google-captcha.php:1010
|
131 |
msgid "The verification is successfully completed."
|
132 |
msgstr "Ověření je úspěšně dokončeno."
|
133 |
|
134 |
+
#: google-captcha.php:1045
|
135 |
msgid "FAQ"
|
136 |
msgstr ""
|
137 |
"Časté dotazy <acronym title=\\\"Frequently asked questions\\\">(FAQ)</"
|
138 |
"acronym>"
|
139 |
|
140 |
+
#: google-captcha.php:1046
|
141 |
msgid "Support"
|
142 |
msgstr "Podpora"
|
143 |
|
162 |
msgstr "Tajný klíč"
|
163 |
|
164 |
#: includes/class-gglcptch-settings-tabs.php:63
|
|
|
165 |
msgid "Version"
|
166 |
msgstr "Verze"
|
167 |
|
168 |
+
#: includes/class-gglcptch-settings-tabs.php:64
|
169 |
msgid "Invisible"
|
170 |
+
msgstr "Neviditelná"
|
171 |
|
172 |
+
#: includes/class-gglcptch-settings-tabs.php:93
|
173 |
msgid "Enter site key"
|
174 |
msgstr "Vložte webový klíč"
|
175 |
|
176 |
+
#: includes/class-gglcptch-settings-tabs.php:94
|
177 |
+
#: includes/class-gglcptch-settings-tabs.php:101
|
178 |
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
179 |
msgstr "VAROVÁNÍ: Captcha se nezobrazí, dokud nebudou vyplněna pole s klíči."
|
180 |
|
181 |
+
#: includes/class-gglcptch-settings-tabs.php:100
|
182 |
msgid "Enter secret key"
|
183 |
msgstr "Vložte tajný klíč"
|
184 |
|
185 |
+
#: includes/class-gglcptch-settings-tabs.php:134
|
186 |
msgid "Settings saved."
|
187 |
msgstr "Nastavení uloženo."
|
188 |
|
189 |
+
#: includes/class-gglcptch-settings-tabs.php:149
|
190 |
msgid "Authentication"
|
191 |
msgstr "Autentizace"
|
192 |
|
193 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
194 |
msgid ""
|
195 |
"Register your website with Google to get required API keys and enter them "
|
196 |
"below."
|
198 |
"Zaregistrujte svůj web na Google, abyste získali požadované API klíče a "
|
199 |
"zadejte je níže."
|
200 |
|
201 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
202 |
msgid "Get the API Keys"
|
203 |
msgstr "Získat API klíče"
|
204 |
|
205 |
+
#: includes/class-gglcptch-settings-tabs.php:167
|
206 |
msgid "Test reCAPTCHA"
|
207 |
msgstr "Vyzkoušet reCAPTCHA"
|
208 |
|
209 |
+
#: includes/class-gglcptch-settings-tabs.php:173
|
210 |
msgid "General"
|
211 |
msgstr "Obecné"
|
212 |
|
213 |
+
#: includes/class-gglcptch-settings-tabs.php:176
|
214 |
msgid "Enable reCAPTCHA for"
|
215 |
msgstr "Povolit reCAPTCHA pro"
|
216 |
|
217 |
+
#: includes/class-gglcptch-settings-tabs.php:222
|
218 |
+
#: includes/class-gglcptch-settings-tabs.php:276 includes/pro_banners.php:20
|
219 |
msgid "Close"
|
220 |
msgstr "Zavřít"
|
221 |
|
222 |
+
#: includes/class-gglcptch-settings-tabs.php:231
|
223 |
msgid "Hide reCAPTCHA for"
|
224 |
msgstr "Skrýt reCAPTCHA pro"
|
225 |
|
226 |
+
#: includes/class-gglcptch-settings-tabs.php:249
|
227 |
msgid "reCAPTCHA Version"
|
228 |
msgstr "reCAPTCHA verze"
|
229 |
|
230 |
+
#: includes/class-gglcptch-settings-tabs.php:263
|
|
|
231 |
msgid "Theme"
|
232 |
msgstr "Šablona"
|
233 |
|
234 |
+
#: includes/class-gglcptch-settings-tabs.php:285
|
235 |
msgid "Whitelist Notification"
|
236 |
msgstr "Upozornění na seznam povolených"
|
237 |
|
238 |
+
#: includes/class-gglcptch-settings-tabs.php:288
|
239 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
240 |
+
msgstr "Tato zpráva se bude zobrazovat namísto reCAPTCHA."
|
241 |
|
242 |
+
#: includes/class-gglcptch-settings-tabs.php:292
|
243 |
msgid "Disabled Submit Button"
|
244 |
msgstr "Neaktivní tlačitko odeslat"
|
245 |
|
246 |
+
#: includes/class-gglcptch-settings-tabs.php:296
|
247 |
msgid ""
|
248 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
249 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
252 |
"možnost nepoužívejte, pokud se zobrazuje zpráva „Nepodařilo se načíst "
|
253 |
"Google reCAPTCHA“)."
|
254 |
|
255 |
+
#: includes/class-gglcptch-settings-tabs.php:310
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
msgid ""
|
257 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
258 |
"regenerate Site and Secret keys if necessary."
|
260 |
"Byla změněna verze reCAPTCHA. Klikněte na „Vyzkoušet reCAPTCHA“ "
|
261 |
"a znovu vygenerujte tajné a webové klíče, je-li to nezbytné."
|
262 |
|
263 |
+
#: includes/class-gglcptch-settings-tabs.php:323
|
264 |
msgid "Google Captcha Shortcode"
|
265 |
msgstr "Zkrácený kód Google Captcha"
|
266 |
|
267 |
+
#: includes/class-gglcptch-settings-tabs.php:326
|
268 |
msgid ""
|
269 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
270 |
msgstr ""
|
271 |
+
"Přidávejte Google Captcha do vašich příspěvků nebo stránek pomocí "
|
272 |
+
"následujícího zkráceného kódu:"
|
273 |
|
274 |
#: includes/forms.php:11
|
275 |
msgid "Login form"
|
287 |
msgid "Comments form"
|
288 |
msgstr "Formulář komentářů"
|
289 |
|
290 |
+
#: includes/forms.php:16
|
291 |
+
msgid "Testimonials"
|
292 |
+
msgstr "Testimonials"
|
293 |
+
|
294 |
+
#: includes/forms.php:38
|
295 |
msgid "WordPress default"
|
296 |
msgstr "WordPress"
|
297 |
|
298 |
+
#: includes/forms.php:47 includes/pro_banners.php:72
|
299 |
msgid "External Plugins"
|
300 |
msgstr "Externí pluginy"
|
301 |
|
302 |
+
#: includes/forms.php:57
|
303 |
msgid "Custom Forms"
|
304 |
msgstr "Vlastní formuláře"
|
305 |
|
306 |
+
#: includes/forms.php:78
|
307 |
msgid "Google Captcha Plugin"
|
308 |
msgstr "Plugin Google Captcha"
|
309 |
|
310 |
+
#: includes/forms.php:118 includes/forms.php:144
|
311 |
msgid "Activate"
|
312 |
msgstr "Aktivovat"
|
313 |
|
314 |
+
#: includes/forms.php:120 includes/forms.php:147 includes/forms.php:151
|
315 |
msgid "Install Now"
|
316 |
msgstr "Instalovat nyní"
|
317 |
|
318 |
+
#: includes/forms.php:278
|
319 |
msgid "Authentication failed."
|
320 |
msgstr "Ověření selhalo."
|
321 |
|
322 |
+
#: includes/forms.php:367
|
323 |
msgid "Click the BACK button on your browser and try again."
|
324 |
msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu."
|
325 |
|
357 |
|
358 |
#: includes/pro_banners.php:53
|
359 |
msgid "Jetpack Contact Form"
|
360 |
+
msgstr "Jetpack Contact Form"
|
361 |
|
362 |
#: includes/pro_banners.php:56
|
363 |
msgid "bbPress New Topic form"
|
455 |
msgid "Allowed diapason"
|
456 |
msgstr "Povolený rozsah"
|
457 |
|
458 |
+
#: includes/whitelist.php:100
|
459 |
msgid "Add IP to whitelist"
|
460 |
msgstr "Přidat IP adresu na seznam povolených"
|
461 |
|
462 |
+
#: includes/whitelist.php:105
|
463 |
msgid "Search IP"
|
464 |
msgstr "Hledat IP adresu"
|
465 |
|
466 |
+
#: includes/whitelist.php:159
|
467 |
msgid "Nothing found"
|
468 |
msgstr "Nic nenalezeno"
|
469 |
|
470 |
+
#: includes/whitelist.php:159
|
471 |
msgid "No IP in the whitelist"
|
472 |
msgstr "Na seznamu povolených zatím není žádná IP adresa"
|
473 |
|
474 |
+
#: includes/whitelist.php:166
|
475 |
msgid "IP Address"
|
476 |
msgstr "IP adresa"
|
477 |
|
478 |
+
#: includes/whitelist.php:167
|
479 |
msgid "Date Added"
|
480 |
msgstr "Datum přidání"
|
481 |
|
482 |
+
#: includes/whitelist.php:221 includes/whitelist.php:231
|
483 |
msgid "Delete"
|
484 |
msgstr "Smazat"
|
485 |
|
486 |
+
#: includes/whitelist.php:318
|
487 |
msgid "IP added to the whitelist successfully."
|
488 |
msgstr "IP adresa byla úspěšně přidána na seznam povolených."
|
489 |
|
490 |
+
#: includes/whitelist.php:320 includes/whitelist.php:342
|
491 |
+
#: includes/whitelist.php:352
|
492 |
msgid "Some errors occurred."
|
493 |
msgstr "Došlo k chybám."
|
494 |
|
495 |
+
#: includes/whitelist.php:323
|
496 |
msgid "IP is already in the whitelist."
|
497 |
msgstr "IP adresa již na seznamu povolených je."
|
498 |
|
499 |
+
#: includes/whitelist.php:326
|
500 |
msgid "Invalid IP. See allowed formats."
|
501 |
msgstr "Neplatná IP adresa. Zkontrolujte Přípustné formáty."
|
502 |
|
503 |
+
#: includes/whitelist.php:348
|
504 |
msgid "One IP was deleted successfully."
|
505 |
msgstr "Jedna IP adresa byla úspěšně odstraněna."
|
506 |
|
507 |
+
#: includes/whitelist.php:355
|
508 |
msgid "You have not entered any IP."
|
509 |
msgstr "Nezadali jste žádnou IP adresu."
|
510 |
|
511 |
+
#: includes/whitelist.php:358
|
512 |
msgid "You have not entered any IP in to the search form."
|
513 |
msgstr "Do vyhledávacího formuláře jste nezadali žádnou IP adresu."
|
514 |
|
515 |
+
#: includes/whitelist.php:360
|
516 |
msgid "Search results for"
|
517 |
msgstr "Výsledky hledání pro"
|
518 |
|
519 |
+
#~ msgid ""
|
520 |
+
#~ "Only one reCAPTCHA can be displayed on the page, it's related to "
|
521 |
+
#~ "reCAPTCHA version 1 features."
|
522 |
+
#~ msgstr ""
|
523 |
+
#~ "Na stránce lze zobrazit pouze jednu reCAPTCHA, což souvisí s vlastnostmi "
|
524 |
+
#~ "reCAPTCHA verze 1."
|
525 |
+
|
526 |
#~ msgid "Test ReCaptcha"
|
527 |
#~ msgstr "Vyzkoušet reCAPTCHA"
|
528 |
|
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: 2018-
|
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:
|
21 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Googe 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,63 +51,63 @@ 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,27 +115,27 @@ 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 "Please submit \"Test verification\""
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: google-captcha.php:
|
123 |
msgid "Please complete the captcha and submit \"Test verification\""
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: google-captcha.php:
|
127 |
msgid "Test verification"
|
128 |
msgstr "Test de verificación"
|
129 |
|
130 |
-
#: google-captcha.php:
|
131 |
msgid "The verification is successfully completed."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
msgid "FAQ"
|
136 |
msgstr "Preguntas Frecuentes"
|
137 |
|
138 |
-
#: google-captcha.php:
|
139 |
msgid "Support"
|
140 |
msgstr "Soporte"
|
141 |
|
@@ -160,117 +160,107 @@ msgid "Secret Key"
|
|
160 |
msgstr "Clave Secreta"
|
161 |
|
162 |
#: includes/class-gglcptch-settings-tabs.php:63
|
163 |
-
#: includes/class-gglcptch-settings-tabs.php:64
|
164 |
msgid "Version"
|
165 |
msgstr "Versión"
|
166 |
|
167 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
168 |
msgid "Invisible"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
172 |
msgid "Enter site key"
|
173 |
msgstr "Introduce la clave de sitio"
|
174 |
|
175 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
176 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
177 |
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
181 |
msgid "Enter secret key"
|
182 |
msgstr "Introduce la clave secreta"
|
183 |
|
184 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
185 |
msgid "Settings saved."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
189 |
msgid "Authentication"
|
190 |
msgstr "Autentificación"
|
191 |
|
192 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
193 |
msgid ""
|
194 |
"Register your website with Google to get required API keys and enter them "
|
195 |
"below."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
199 |
msgid "Get the API Keys"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
203 |
#, fuzzy
|
204 |
msgid "Test reCAPTCHA"
|
205 |
msgstr "Invisible reCAPTCHA"
|
206 |
|
207 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
208 |
msgid "General"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
212 |
msgid "Enable reCAPTCHA for"
|
213 |
msgstr "Permite reCAPTCHA para"
|
214 |
|
215 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
216 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
217 |
msgid "Close"
|
218 |
msgstr "Сerrar"
|
219 |
|
220 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
221 |
#, fuzzy
|
222 |
msgid "Hide reCAPTCHA for"
|
223 |
msgstr "Permite reCAPTCHA para"
|
224 |
|
225 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
226 |
msgid "reCAPTCHA Version"
|
227 |
msgstr "reCAPTCHA Versión"
|
228 |
|
229 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
230 |
-
#: includes/class-gglcptch-settings-tabs.php:279
|
231 |
msgid "Theme"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
235 |
msgid "Whitelist Notification"
|
236 |
msgstr "Notificaciones de la Lista Blanca"
|
237 |
|
238 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
239 |
#, fuzzy
|
240 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
241 |
msgstr ""
|
242 |
"Este mensaje se visualizará en lugar del reCAPTCHA si la IP del usuario se "
|
243 |
"agrega a la lista blanca"
|
244 |
|
245 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
246 |
msgid "Disabled Submit Button"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
250 |
msgid ""
|
251 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
252 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
256 |
-
msgid ""
|
257 |
-
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
258 |
-
"version 1 features."
|
259 |
-
msgstr ""
|
260 |
-
"Sólo un reCAPTCHA puede visualizarse en la página, está relacionado con "
|
261 |
-
"características de la versión 1 de reCAPTCHA."
|
262 |
-
|
263 |
-
#: includes/class-gglcptch-settings-tabs.php:330
|
264 |
msgid ""
|
265 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
266 |
"regenerate Site and Secret keys if necessary."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
270 |
msgid "Google Captcha Shortcode"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
274 |
msgid ""
|
275 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
276 |
msgstr ""
|
@@ -291,36 +281,40 @@ msgstr "Formulario de restablecimiento de contraseña"
|
|
291 |
msgid "Comments form"
|
292 |
msgstr "Formulario de comentarios"
|
293 |
|
294 |
-
#: includes/forms.php:
|
|
|
|
|
|
|
|
|
295 |
msgid "WordPress default"
|
296 |
msgstr "WordPress por defecto"
|
297 |
|
298 |
-
#: includes/forms.php:
|
299 |
msgid "External Plugins"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/forms.php:
|
303 |
msgid "Custom Forms"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/forms.php:
|
307 |
msgid "Google Captcha Plugin"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/forms.php:
|
311 |
#, fuzzy
|
312 |
msgid "Activate"
|
313 |
msgstr "Activar"
|
314 |
|
315 |
-
#: includes/forms.php:
|
316 |
msgid "Install Now"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: includes/forms.php:
|
320 |
msgid "Authentication failed."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: includes/forms.php:
|
324 |
msgid "Click the BACK button on your browser and try again."
|
325 |
msgstr ""
|
326 |
|
@@ -455,70 +449,77 @@ msgstr "Mi IP"
|
|
455 |
msgid "Allowed diapason"
|
456 |
msgstr "Diapason permitido"
|
457 |
|
458 |
-
#: includes/whitelist.php:
|
459 |
msgid "Add IP to whitelist"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: includes/whitelist.php:
|
463 |
msgid "Search IP"
|
464 |
msgstr "Buscar IP"
|
465 |
|
466 |
-
#: includes/whitelist.php:
|
467 |
msgid "Nothing found"
|
468 |
msgstr "Nada encontrado"
|
469 |
|
470 |
-
#: includes/whitelist.php:
|
471 |
msgid "No IP in the whitelist"
|
472 |
msgstr "No IP en la lista blanca"
|
473 |
|
474 |
-
#: includes/whitelist.php:
|
475 |
msgid "IP Address"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: includes/whitelist.php:
|
479 |
msgid "Date Added"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: includes/whitelist.php:
|
483 |
#, fuzzy
|
484 |
msgid "Delete"
|
485 |
msgstr "Eliminar"
|
486 |
|
487 |
-
#: includes/whitelist.php:
|
488 |
msgid "IP added to the whitelist successfully."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: includes/whitelist.php:
|
492 |
-
#: includes/whitelist.php:
|
493 |
msgid "Some errors occurred."
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: includes/whitelist.php:
|
497 |
msgid "IP is already in the whitelist."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: includes/whitelist.php:
|
501 |
msgid "Invalid IP. See allowed formats."
|
502 |
msgstr "IP es no válido. Ver formatos permitidos."
|
503 |
|
504 |
-
#: includes/whitelist.php:
|
505 |
#, fuzzy
|
506 |
msgid "One IP was deleted successfully."
|
507 |
msgstr "Una dirección IP se ha eliminado correctamente"
|
508 |
|
509 |
-
#: includes/whitelist.php:
|
510 |
#, fuzzy
|
511 |
msgid "You have not entered any IP."
|
512 |
msgstr "No se ha introducido ningún IP"
|
513 |
|
514 |
-
#: includes/whitelist.php:
|
515 |
msgid "You have not entered any IP in to the search form."
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: includes/whitelist.php:
|
519 |
msgid "Search results for"
|
520 |
msgstr "Resultados de la búsqueda para"
|
521 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
522 |
#~ msgid "Check your domain configuration"
|
523 |
#~ msgstr "Compruebe su configuración de dominio"
|
524 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-08-03 14:53+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:38 google-captcha.php:40 google-captcha.php:447
|
21 |
+
#: includes/class-gglcptch-settings-tabs.php:146
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Googe Captcha Ajustes"
|
24 |
|
25 |
+
#: google-captcha.php:40 google-captcha.php:1030 google-captcha.php:1043
|
26 |
#: includes/class-gglcptch-settings-tabs.php:25
|
27 |
msgid "Settings"
|
28 |
msgstr "Configuraciónes"
|
29 |
|
30 |
+
#: google-captcha.php:42 includes/whitelist.php:46
|
31 |
msgid "Google Captcha Whitelist"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: google-captcha.php:42
|
35 |
msgid "Whitelist"
|
36 |
msgstr "Lista Blanca"
|
37 |
|
38 |
+
#: google-captcha.php:48 includes/pro_banners.php:29
|
39 |
msgid "Upgrade to Pro"
|
40 |
msgstr "Actualizar a Pro"
|
41 |
|
42 |
+
#: google-captcha.php:236
|
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:237
|
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:253
|
55 |
msgid "Warning"
|
56 |
msgstr "Atención"
|
57 |
|
58 |
+
#: google-captcha.php:352
|
59 |
msgid "You are in the whitelist"
|
60 |
msgstr "Estás en la lista blanca"
|
61 |
|
62 |
+
#: google-captcha.php:534 google-captcha.php:1065
|
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:535 google-captcha.php:1066
|
67 |
msgid "here"
|
68 |
msgstr "aquí"
|
69 |
|
70 |
+
#: google-captcha.php:536 google-captcha.php:1067
|
71 |
msgid "and enter them on the"
|
72 |
msgstr "e introducirlas en"
|
73 |
|
74 |
+
#: google-captcha.php:538 google-captcha.php:1069
|
75 |
msgid "plugin setting page"
|
76 |
msgstr "página de configuración de plugin"
|
77 |
|
78 |
+
#: google-captcha.php:799 includes/forms.php:365
|
79 |
msgid "Error"
|
80 |
msgstr "Error "
|
81 |
|
82 |
+
#: google-captcha.php:924
|
83 |
msgid "User response is missing."
|
84 |
msgstr "Respuesta del usuario está ausente."
|
85 |
|
86 |
+
#: google-captcha.php:928 google-captcha.php:936
|
87 |
msgid "Secret Key is invalid."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: google-captcha.php:929 google-captcha.php:937
|
91 |
msgid "Check your domain configurations"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: google-captcha.php:930 google-captcha.php:938
|
95 |
msgid "and enter it again"
|
96 |
msgstr "e introducirle otra vez"
|
97 |
|
98 |
+
#: google-captcha.php:933
|
99 |
msgid "Secret Key is missing."
|
100 |
msgstr "Clave Secreta está ausente."
|
101 |
|
102 |
+
#: google-captcha.php:940
|
103 |
msgid "User response is invalid"
|
104 |
msgstr "Respuesta del usuario no es válido"
|
105 |
|
106 |
+
#: google-captcha.php:941
|
107 |
msgid "You have entered an incorrect reCAPTCHA value."
|
108 |
msgstr "Ha introducido un valor incorrecto de reCAPTCHA."
|
109 |
|
110 |
+
#: google-captcha.php:942
|
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 |
"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:980
|
119 |
msgid "Please submit \"Test verification\""
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: google-captcha.php:982
|
123 |
msgid "Please complete the captcha and submit \"Test verification\""
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: google-captcha.php:989
|
127 |
msgid "Test verification"
|
128 |
msgstr "Test de verificación"
|
129 |
|
130 |
+
#: google-captcha.php:1010
|
131 |
msgid "The verification is successfully completed."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: google-captcha.php:1045
|
135 |
msgid "FAQ"
|
136 |
msgstr "Preguntas Frecuentes"
|
137 |
|
138 |
+
#: google-captcha.php:1046
|
139 |
msgid "Support"
|
140 |
msgstr "Soporte"
|
141 |
|
160 |
msgstr "Clave Secreta"
|
161 |
|
162 |
#: includes/class-gglcptch-settings-tabs.php:63
|
|
|
163 |
msgid "Version"
|
164 |
msgstr "Versión"
|
165 |
|
166 |
+
#: includes/class-gglcptch-settings-tabs.php:64
|
167 |
msgid "Invisible"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: includes/class-gglcptch-settings-tabs.php:93
|
171 |
msgid "Enter site key"
|
172 |
msgstr "Introduce la clave de sitio"
|
173 |
|
174 |
+
#: includes/class-gglcptch-settings-tabs.php:94
|
175 |
+
#: includes/class-gglcptch-settings-tabs.php:101
|
176 |
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: includes/class-gglcptch-settings-tabs.php:100
|
180 |
msgid "Enter secret key"
|
181 |
msgstr "Introduce la clave secreta"
|
182 |
|
183 |
+
#: includes/class-gglcptch-settings-tabs.php:134
|
184 |
msgid "Settings saved."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: includes/class-gglcptch-settings-tabs.php:149
|
188 |
msgid "Authentication"
|
189 |
msgstr "Autentificación"
|
190 |
|
191 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
192 |
msgid ""
|
193 |
"Register your website with Google to get required API keys and enter them "
|
194 |
"below."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
198 |
msgid "Get the API Keys"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/class-gglcptch-settings-tabs.php:167
|
202 |
#, fuzzy
|
203 |
msgid "Test reCAPTCHA"
|
204 |
msgstr "Invisible reCAPTCHA"
|
205 |
|
206 |
+
#: includes/class-gglcptch-settings-tabs.php:173
|
207 |
msgid "General"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/class-gglcptch-settings-tabs.php:176
|
211 |
msgid "Enable reCAPTCHA for"
|
212 |
msgstr "Permite reCAPTCHA para"
|
213 |
|
214 |
+
#: includes/class-gglcptch-settings-tabs.php:222
|
215 |
+
#: includes/class-gglcptch-settings-tabs.php:276 includes/pro_banners.php:20
|
216 |
msgid "Close"
|
217 |
msgstr "Сerrar"
|
218 |
|
219 |
+
#: includes/class-gglcptch-settings-tabs.php:231
|
220 |
#, fuzzy
|
221 |
msgid "Hide reCAPTCHA for"
|
222 |
msgstr "Permite reCAPTCHA para"
|
223 |
|
224 |
+
#: includes/class-gglcptch-settings-tabs.php:249
|
225 |
msgid "reCAPTCHA Version"
|
226 |
msgstr "reCAPTCHA Versión"
|
227 |
|
228 |
+
#: includes/class-gglcptch-settings-tabs.php:263
|
|
|
229 |
msgid "Theme"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/class-gglcptch-settings-tabs.php:285
|
233 |
msgid "Whitelist Notification"
|
234 |
msgstr "Notificaciones de la Lista Blanca"
|
235 |
|
236 |
+
#: includes/class-gglcptch-settings-tabs.php:288
|
237 |
#, fuzzy
|
238 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
239 |
msgstr ""
|
240 |
"Este mensaje se visualizará en lugar del reCAPTCHA si la IP del usuario se "
|
241 |
"agrega a la lista blanca"
|
242 |
|
243 |
+
#: includes/class-gglcptch-settings-tabs.php:292
|
244 |
msgid "Disabled Submit Button"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: includes/class-gglcptch-settings-tabs.php:296
|
248 |
msgid ""
|
249 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
250 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: includes/class-gglcptch-settings-tabs.php:310
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgid ""
|
255 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
256 |
"regenerate Site and Secret keys if necessary."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: includes/class-gglcptch-settings-tabs.php:323
|
260 |
msgid "Google Captcha Shortcode"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/class-gglcptch-settings-tabs.php:326
|
264 |
msgid ""
|
265 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
266 |
msgstr ""
|
281 |
msgid "Comments form"
|
282 |
msgstr "Formulario de comentarios"
|
283 |
|
284 |
+
#: includes/forms.php:16
|
285 |
+
msgid "Testimonials"
|
286 |
+
msgstr "Testimonials"
|
287 |
+
|
288 |
+
#: includes/forms.php:38
|
289 |
msgid "WordPress default"
|
290 |
msgstr "WordPress por defecto"
|
291 |
|
292 |
+
#: includes/forms.php:47 includes/pro_banners.php:72
|
293 |
msgid "External Plugins"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: includes/forms.php:57
|
297 |
msgid "Custom Forms"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/forms.php:78
|
301 |
msgid "Google Captcha Plugin"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: includes/forms.php:118 includes/forms.php:144
|
305 |
#, fuzzy
|
306 |
msgid "Activate"
|
307 |
msgstr "Activar"
|
308 |
|
309 |
+
#: includes/forms.php:120 includes/forms.php:147 includes/forms.php:151
|
310 |
msgid "Install Now"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: includes/forms.php:278
|
314 |
msgid "Authentication failed."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/forms.php:367
|
318 |
msgid "Click the BACK button on your browser and try again."
|
319 |
msgstr ""
|
320 |
|
449 |
msgid "Allowed diapason"
|
450 |
msgstr "Diapason permitido"
|
451 |
|
452 |
+
#: includes/whitelist.php:100
|
453 |
msgid "Add IP to whitelist"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/whitelist.php:105
|
457 |
msgid "Search IP"
|
458 |
msgstr "Buscar IP"
|
459 |
|
460 |
+
#: includes/whitelist.php:159
|
461 |
msgid "Nothing found"
|
462 |
msgstr "Nada encontrado"
|
463 |
|
464 |
+
#: includes/whitelist.php:159
|
465 |
msgid "No IP in the whitelist"
|
466 |
msgstr "No IP en la lista blanca"
|
467 |
|
468 |
+
#: includes/whitelist.php:166
|
469 |
msgid "IP Address"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: includes/whitelist.php:167
|
473 |
msgid "Date Added"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: includes/whitelist.php:221 includes/whitelist.php:231
|
477 |
#, fuzzy
|
478 |
msgid "Delete"
|
479 |
msgstr "Eliminar"
|
480 |
|
481 |
+
#: includes/whitelist.php:318
|
482 |
msgid "IP added to the whitelist successfully."
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: includes/whitelist.php:320 includes/whitelist.php:342
|
486 |
+
#: includes/whitelist.php:352
|
487 |
msgid "Some errors occurred."
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: includes/whitelist.php:323
|
491 |
msgid "IP is already in the whitelist."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: includes/whitelist.php:326
|
495 |
msgid "Invalid IP. See allowed formats."
|
496 |
msgstr "IP es no válido. Ver formatos permitidos."
|
497 |
|
498 |
+
#: includes/whitelist.php:348
|
499 |
#, fuzzy
|
500 |
msgid "One IP was deleted successfully."
|
501 |
msgstr "Una dirección IP se ha eliminado correctamente"
|
502 |
|
503 |
+
#: includes/whitelist.php:355
|
504 |
#, fuzzy
|
505 |
msgid "You have not entered any IP."
|
506 |
msgstr "No se ha introducido ningún IP"
|
507 |
|
508 |
+
#: includes/whitelist.php:358
|
509 |
msgid "You have not entered any IP in to the search form."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/whitelist.php:360
|
513 |
msgid "Search results for"
|
514 |
msgstr "Resultados de la búsqueda para"
|
515 |
|
516 |
+
#~ msgid ""
|
517 |
+
#~ "Only one reCAPTCHA can be displayed on the page, it's related to "
|
518 |
+
#~ "reCAPTCHA version 1 features."
|
519 |
+
#~ msgstr ""
|
520 |
+
#~ "Sólo un reCAPTCHA puede visualizarse en la página, está relacionado con "
|
521 |
+
#~ "características de la versión 1 de reCAPTCHA."
|
522 |
+
|
523 |
#~ msgid "Check your domain configuration"
|
524 |
#~ msgstr "Compruebe su configuración de dominio"
|
525 |
|
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: 2018-
|
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,33 +18,33 @@ msgstr ""
|
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-captcha.php:
|
22 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Настройки Google Captcha"
|
25 |
|
26 |
-
#: google-captcha.php:
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Настройки"
|
30 |
|
31 |
-
#: google-captcha.php:
|
32 |
msgid "Google Captcha Whitelist"
|
33 |
msgstr "Белый cписок Google Captcha"
|
34 |
|
35 |
-
#: google-captcha.php:
|
36 |
msgid "Whitelist"
|
37 |
msgstr "Белый список"
|
38 |
|
39 |
-
#: google-captcha.php:
|
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,63 @@ 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,28 +116,28 @@ msgstr ""
|
|
116 |
"В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
|
117 |
"все лишние блоки reCAPTCHA для дальнейшей корректной работы."
|
118 |
|
119 |
-
#: google-captcha.php:
|
120 |
msgid "Please submit \"Test verification\""
|
121 |
msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
|
122 |
|
123 |
-
#: google-captcha.php:
|
124 |
msgid "Please complete the captcha and submit \"Test verification\""
|
125 |
msgstr ""
|
126 |
"Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
|
127 |
|
128 |
-
#: google-captcha.php:
|
129 |
msgid "Test verification"
|
130 |
msgstr "Тестирование проверки"
|
131 |
|
132 |
-
#: google-captcha.php:
|
133 |
msgid "The verification is successfully completed."
|
134 |
msgstr "Тестирование проверки успешно завершено."
|
135 |
|
136 |
-
#: google-captcha.php:
|
137 |
msgid "FAQ"
|
138 |
msgstr "FAQ"
|
139 |
|
140 |
-
#: google-captcha.php:
|
141 |
msgid "Support"
|
142 |
msgstr "Поддержка"
|
143 |
|
@@ -162,38 +162,37 @@ msgid "Secret Key"
|
|
162 |
msgstr "Секретный ключ"
|
163 |
|
164 |
#: includes/class-gglcptch-settings-tabs.php:63
|
165 |
-
#: includes/class-gglcptch-settings-tabs.php:64
|
166 |
msgid "Version"
|
167 |
msgstr "Версия"
|
168 |
|
169 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
170 |
msgid "Invisible"
|
171 |
msgstr "Невидимая"
|
172 |
|
173 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
174 |
msgid "Enter site key"
|
175 |
msgstr "Введите ключ сайта"
|
176 |
|
177 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
178 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
179 |
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
180 |
msgstr ""
|
181 |
"ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
|
182 |
"поля с ключами."
|
183 |
|
184 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
185 |
msgid "Enter secret key"
|
186 |
msgstr "Введите секретный ключ"
|
187 |
|
188 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
189 |
msgid "Settings saved."
|
190 |
msgstr "Настройки сохранены."
|
191 |
|
192 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
193 |
msgid "Authentication"
|
194 |
msgstr "Идентификация"
|
195 |
|
196 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
197 |
msgid ""
|
198 |
"Register your website with Google to get required API keys and enter them "
|
199 |
"below."
|
@@ -201,53 +200,52 @@ msgstr ""
|
|
201 |
"Зарегистрируйте свой сайт с помощью Google, чтобы получить требуемые API "
|
202 |
"ключи и введите их ниже."
|
203 |
|
204 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
205 |
msgid "Get the API Keys"
|
206 |
msgstr "Получить API ключи"
|
207 |
|
208 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
209 |
msgid "Test reCAPTCHA"
|
210 |
msgstr "Тестирование reCAPTCHA"
|
211 |
|
212 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
213 |
msgid "General"
|
214 |
msgstr "Общее"
|
215 |
|
216 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
217 |
msgid "Enable reCAPTCHA for"
|
218 |
msgstr "Включить reCAPTCHA для"
|
219 |
|
220 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
221 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
222 |
msgid "Close"
|
223 |
msgstr "Закрыть"
|
224 |
|
225 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
226 |
msgid "Hide reCAPTCHA for"
|
227 |
msgstr "Спрятать reCAPTCHA для"
|
228 |
|
229 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
230 |
msgid "reCAPTCHA Version"
|
231 |
msgstr "Версия reCAPTCHA"
|
232 |
|
233 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
234 |
-
#: includes/class-gglcptch-settings-tabs.php:279
|
235 |
msgid "Theme"
|
236 |
msgstr "Тема"
|
237 |
|
238 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
239 |
msgid "Whitelist Notification"
|
240 |
msgstr "Уведомление о нахождении в белом списке"
|
241 |
|
242 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
243 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
244 |
msgstr "Это сообщение будет отображено вместо поля reCAPTCHA."
|
245 |
|
246 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
247 |
msgid "Disabled Submit Button"
|
248 |
msgstr "Отключенная кнопка подтверждения"
|
249 |
|
250 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
251 |
msgid ""
|
252 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
253 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
@@ -256,15 +254,7 @@ msgstr ""
|
|
256 |
"не будет загружена reCAPTCHA (Не используйте эту опцию, если вы видите "
|
257 |
"сообщение \"Не удалось загрузить Google reCAPTCHA\")."
|
258 |
|
259 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
260 |
-
msgid ""
|
261 |
-
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
262 |
-
"version 1 features."
|
263 |
-
msgstr ""
|
264 |
-
"В связи с особенностями работы reCAPTCHA версии 1 на странице может "
|
265 |
-
"отображаться только одна reCAPTCHA."
|
266 |
-
|
267 |
-
#: includes/class-gglcptch-settings-tabs.php:330
|
268 |
msgid ""
|
269 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
270 |
"regenerate Site and Secret keys if necessary."
|
@@ -272,11 +262,11 @@ msgstr ""
|
|
272 |
"Версия reCAPTCHA была изменена. Пожалуйста, нажмите \"Тестирование reCAPTCHA"
|
273 |
"\" и при необходимости обновите секретный ключ и ключ сайта."
|
274 |
|
275 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
276 |
msgid "Google Captcha Shortcode"
|
277 |
msgstr "Шорткод Google Captcha"
|
278 |
|
279 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
280 |
msgid ""
|
281 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
282 |
msgstr ""
|
@@ -299,35 +289,39 @@ msgstr "Форма восстановления пароля"
|
|
299 |
msgid "Comments form"
|
300 |
msgstr "Форма комментариев"
|
301 |
|
302 |
-
#: includes/forms.php:
|
|
|
|
|
|
|
|
|
303 |
msgid "WordPress default"
|
304 |
msgstr "Стандартных форм WordPress"
|
305 |
|
306 |
-
#: includes/forms.php:
|
307 |
msgid "External Plugins"
|
308 |
msgstr "Внешние плагины"
|
309 |
|
310 |
-
#: includes/forms.php:
|
311 |
msgid "Custom Forms"
|
312 |
msgstr "Пользовательские формы"
|
313 |
|
314 |
-
#: includes/forms.php:
|
315 |
msgid "Google Captcha Plugin"
|
316 |
msgstr "Плагин Google Captcha"
|
317 |
|
318 |
-
#: includes/forms.php:
|
319 |
msgid "Activate"
|
320 |
msgstr "Активировать"
|
321 |
|
322 |
-
#: includes/forms.php:
|
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 |
|
@@ -463,67 +457,93 @@ msgstr "Мой IP"
|
|
463 |
msgid "Allowed diapason"
|
464 |
msgstr "Доступные диапазоны"
|
465 |
|
466 |
-
#: includes/whitelist.php:
|
467 |
msgid "Add IP to whitelist"
|
468 |
msgstr "Добавить IP в белый список"
|
469 |
|
470 |
-
#: includes/whitelist.php:
|
471 |
msgid "Search IP"
|
472 |
msgstr "Искать IP"
|
473 |
|
474 |
-
#: includes/whitelist.php:
|
475 |
msgid "Nothing found"
|
476 |
msgstr "Ничего не найдено"
|
477 |
|
478 |
-
#: includes/whitelist.php:
|
479 |
msgid "No IP in the whitelist"
|
480 |
msgstr "Список IP пуст"
|
481 |
|
482 |
-
#: includes/whitelist.php:
|
483 |
msgid "IP Address"
|
484 |
msgstr "IP Адресс"
|
485 |
|
486 |
-
#: includes/whitelist.php:
|
487 |
msgid "Date Added"
|
488 |
msgstr "Дата добавления"
|
489 |
|
490 |
-
#: includes/whitelist.php:
|
491 |
msgid "Delete"
|
492 |
msgstr "Удалить"
|
493 |
|
494 |
-
#: includes/whitelist.php:
|
495 |
msgid "IP added to the whitelist successfully."
|
496 |
msgstr "IP адрес успешно добавлен в белый список."
|
497 |
|
498 |
-
#: includes/whitelist.php:
|
499 |
-
#: includes/whitelist.php:
|
500 |
msgid "Some errors occurred."
|
501 |
msgstr "Возникли некоторые ошибки."
|
502 |
|
503 |
-
#: includes/whitelist.php:
|
504 |
msgid "IP is already in the whitelist."
|
505 |
msgstr "IP адрес уже в белом списке."
|
506 |
|
507 |
-
#: includes/whitelist.php:
|
508 |
msgid "Invalid IP. See allowed formats."
|
509 |
msgstr "Неверный IP. Смотите доступные форматы."
|
510 |
|
511 |
-
#: includes/whitelist.php:
|
512 |
msgid "One IP was deleted successfully."
|
513 |
msgstr "Один IP адрес был успешно удален."
|
514 |
|
515 |
-
#: includes/whitelist.php:
|
516 |
msgid "You have not entered any IP."
|
517 |
msgstr "Вы не ввели ни одного IP адреса."
|
518 |
|
519 |
-
#: includes/whitelist.php:
|
520 |
msgid "You have not entered any IP in to the search form."
|
521 |
msgstr "Вы не ввели значения в форму поиска."
|
522 |
|
523 |
-
#: includes/whitelist.php:
|
524 |
msgid "Search results for"
|
525 |
msgstr "Результаты поиска для"
|
526 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
#~ msgid "Test ReCaptcha"
|
528 |
#~ msgstr "Тестирование ReCaptcha"
|
529 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-08-03 14:52+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:38 google-captcha.php:40 google-captcha.php:447
|
22 |
+
#: includes/class-gglcptch-settings-tabs.php:146
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Настройки Google Captcha"
|
25 |
|
26 |
+
#: google-captcha.php:40 google-captcha.php:1030 google-captcha.php:1043
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Настройки"
|
30 |
|
31 |
+
#: google-captcha.php:42 includes/whitelist.php:46
|
32 |
msgid "Google Captcha Whitelist"
|
33 |
msgstr "Белый cписок Google Captcha"
|
34 |
|
35 |
+
#: google-captcha.php:42
|
36 |
msgid "Whitelist"
|
37 |
msgstr "Белый список"
|
38 |
|
39 |
+
#: google-captcha.php:48 includes/pro_banners.php:29
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Обновить до Pro"
|
42 |
|
43 |
+
#: google-captcha.php:236
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
|
46 |
|
47 |
+
#: google-captcha.php:237
|
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:253
|
56 |
msgid "Warning"
|
57 |
msgstr "Внимание"
|
58 |
|
59 |
+
#: google-captcha.php:352
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Вы в белом списке"
|
62 |
|
63 |
+
#: google-captcha.php:534 google-captcha.php:1065
|
64 |
msgid "To use Google Captcha you must get the keys from"
|
65 |
msgstr "Чтобы использовать Google Captcha, вам необходимо получить ключи"
|
66 |
|
67 |
+
#: google-captcha.php:535 google-captcha.php:1066
|
68 |
msgid "here"
|
69 |
msgstr "здесь"
|
70 |
|
71 |
+
#: google-captcha.php:536 google-captcha.php:1067
|
72 |
msgid "and enter them on the"
|
73 |
msgstr "и вставить их на"
|
74 |
|
75 |
+
#: google-captcha.php:538 google-captcha.php:1069
|
76 |
msgid "plugin setting page"
|
77 |
msgstr "странице настроек плагина"
|
78 |
|
79 |
+
#: google-captcha.php:799 includes/forms.php:365
|
80 |
msgid "Error"
|
81 |
msgstr "Ошибка"
|
82 |
|
83 |
+
#: google-captcha.php:924
|
84 |
msgid "User response is missing."
|
85 |
msgstr "Ответ пользователя отсутствует."
|
86 |
|
87 |
+
#: google-captcha.php:928 google-captcha.php:936
|
88 |
msgid "Secret Key is invalid."
|
89 |
msgstr "Некорректный секретный ключ."
|
90 |
|
91 |
+
#: google-captcha.php:929 google-captcha.php:937
|
92 |
msgid "Check your domain configurations"
|
93 |
msgstr "Проверьте настройки вашего домена"
|
94 |
|
95 |
+
#: google-captcha.php:930 google-captcha.php:938
|
96 |
msgid "and enter it again"
|
97 |
msgstr "и введите его снова"
|
98 |
|
99 |
+
#: google-captcha.php:933
|
100 |
msgid "Secret Key is missing."
|
101 |
msgstr "Секретный ключ отсутствует."
|
102 |
|
103 |
+
#: google-captcha.php:940
|
104 |
msgid "User response is invalid"
|
105 |
msgstr "Некорректный ответ пользователя"
|
106 |
|
107 |
+
#: google-captcha.php:941
|
108 |
msgid "You have entered an incorrect reCAPTCHA value."
|
109 |
msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
|
110 |
|
111 |
+
#: google-captcha.php:942
|
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 |
"В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
|
117 |
"все лишние блоки reCAPTCHA для дальнейшей корректной работы."
|
118 |
|
119 |
+
#: google-captcha.php:980
|
120 |
msgid "Please submit \"Test verification\""
|
121 |
msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
|
122 |
|
123 |
+
#: google-captcha.php:982
|
124 |
msgid "Please complete the captcha and submit \"Test verification\""
|
125 |
msgstr ""
|
126 |
"Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
|
127 |
|
128 |
+
#: google-captcha.php:989
|
129 |
msgid "Test verification"
|
130 |
msgstr "Тестирование проверки"
|
131 |
|
132 |
+
#: google-captcha.php:1010
|
133 |
msgid "The verification is successfully completed."
|
134 |
msgstr "Тестирование проверки успешно завершено."
|
135 |
|
136 |
+
#: google-captcha.php:1045
|
137 |
msgid "FAQ"
|
138 |
msgstr "FAQ"
|
139 |
|
140 |
+
#: google-captcha.php:1046
|
141 |
msgid "Support"
|
142 |
msgstr "Поддержка"
|
143 |
|
162 |
msgstr "Секретный ключ"
|
163 |
|
164 |
#: includes/class-gglcptch-settings-tabs.php:63
|
|
|
165 |
msgid "Version"
|
166 |
msgstr "Версия"
|
167 |
|
168 |
+
#: includes/class-gglcptch-settings-tabs.php:64
|
169 |
msgid "Invisible"
|
170 |
msgstr "Невидимая"
|
171 |
|
172 |
+
#: includes/class-gglcptch-settings-tabs.php:93
|
173 |
msgid "Enter site key"
|
174 |
msgstr "Введите ключ сайта"
|
175 |
|
176 |
+
#: includes/class-gglcptch-settings-tabs.php:94
|
177 |
+
#: includes/class-gglcptch-settings-tabs.php:101
|
178 |
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
179 |
msgstr ""
|
180 |
"ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
|
181 |
"поля с ключами."
|
182 |
|
183 |
+
#: includes/class-gglcptch-settings-tabs.php:100
|
184 |
msgid "Enter secret key"
|
185 |
msgstr "Введите секретный ключ"
|
186 |
|
187 |
+
#: includes/class-gglcptch-settings-tabs.php:134
|
188 |
msgid "Settings saved."
|
189 |
msgstr "Настройки сохранены."
|
190 |
|
191 |
+
#: includes/class-gglcptch-settings-tabs.php:149
|
192 |
msgid "Authentication"
|
193 |
msgstr "Идентификация"
|
194 |
|
195 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
196 |
msgid ""
|
197 |
"Register your website with Google to get required API keys and enter them "
|
198 |
"below."
|
200 |
"Зарегистрируйте свой сайт с помощью Google, чтобы получить требуемые API "
|
201 |
"ключи и введите их ниже."
|
202 |
|
203 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
204 |
msgid "Get the API Keys"
|
205 |
msgstr "Получить API ключи"
|
206 |
|
207 |
+
#: includes/class-gglcptch-settings-tabs.php:167
|
208 |
msgid "Test reCAPTCHA"
|
209 |
msgstr "Тестирование reCAPTCHA"
|
210 |
|
211 |
+
#: includes/class-gglcptch-settings-tabs.php:173
|
212 |
msgid "General"
|
213 |
msgstr "Общее"
|
214 |
|
215 |
+
#: includes/class-gglcptch-settings-tabs.php:176
|
216 |
msgid "Enable reCAPTCHA for"
|
217 |
msgstr "Включить reCAPTCHA для"
|
218 |
|
219 |
+
#: includes/class-gglcptch-settings-tabs.php:222
|
220 |
+
#: includes/class-gglcptch-settings-tabs.php:276 includes/pro_banners.php:20
|
221 |
msgid "Close"
|
222 |
msgstr "Закрыть"
|
223 |
|
224 |
+
#: includes/class-gglcptch-settings-tabs.php:231
|
225 |
msgid "Hide reCAPTCHA for"
|
226 |
msgstr "Спрятать reCAPTCHA для"
|
227 |
|
228 |
+
#: includes/class-gglcptch-settings-tabs.php:249
|
229 |
msgid "reCAPTCHA Version"
|
230 |
msgstr "Версия reCAPTCHA"
|
231 |
|
232 |
+
#: includes/class-gglcptch-settings-tabs.php:263
|
|
|
233 |
msgid "Theme"
|
234 |
msgstr "Тема"
|
235 |
|
236 |
+
#: includes/class-gglcptch-settings-tabs.php:285
|
237 |
msgid "Whitelist Notification"
|
238 |
msgstr "Уведомление о нахождении в белом списке"
|
239 |
|
240 |
+
#: includes/class-gglcptch-settings-tabs.php:288
|
241 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
242 |
msgstr "Это сообщение будет отображено вместо поля reCAPTCHA."
|
243 |
|
244 |
+
#: includes/class-gglcptch-settings-tabs.php:292
|
245 |
msgid "Disabled Submit Button"
|
246 |
msgstr "Отключенная кнопка подтверждения"
|
247 |
|
248 |
+
#: includes/class-gglcptch-settings-tabs.php:296
|
249 |
msgid ""
|
250 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
251 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
254 |
"не будет загружена reCAPTCHA (Не используйте эту опцию, если вы видите "
|
255 |
"сообщение \"Не удалось загрузить Google reCAPTCHA\")."
|
256 |
|
257 |
+
#: includes/class-gglcptch-settings-tabs.php:310
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
msgid ""
|
259 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
260 |
"regenerate Site and Secret keys if necessary."
|
262 |
"Версия reCAPTCHA была изменена. Пожалуйста, нажмите \"Тестирование reCAPTCHA"
|
263 |
"\" и при необходимости обновите секретный ключ и ключ сайта."
|
264 |
|
265 |
+
#: includes/class-gglcptch-settings-tabs.php:323
|
266 |
msgid "Google Captcha Shortcode"
|
267 |
msgstr "Шорткод Google Captcha"
|
268 |
|
269 |
+
#: includes/class-gglcptch-settings-tabs.php:326
|
270 |
msgid ""
|
271 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
272 |
msgstr ""
|
289 |
msgid "Comments form"
|
290 |
msgstr "Форма комментариев"
|
291 |
|
292 |
+
#: includes/forms.php:16
|
293 |
+
msgid "Testimonials"
|
294 |
+
msgstr "Testimonials"
|
295 |
+
|
296 |
+
#: includes/forms.php:38
|
297 |
msgid "WordPress default"
|
298 |
msgstr "Стандартных форм WordPress"
|
299 |
|
300 |
+
#: includes/forms.php:47 includes/pro_banners.php:72
|
301 |
msgid "External Plugins"
|
302 |
msgstr "Внешние плагины"
|
303 |
|
304 |
+
#: includes/forms.php:57
|
305 |
msgid "Custom Forms"
|
306 |
msgstr "Пользовательские формы"
|
307 |
|
308 |
+
#: includes/forms.php:78
|
309 |
msgid "Google Captcha Plugin"
|
310 |
msgstr "Плагин Google Captcha"
|
311 |
|
312 |
+
#: includes/forms.php:118 includes/forms.php:144
|
313 |
msgid "Activate"
|
314 |
msgstr "Активировать"
|
315 |
|
316 |
+
#: includes/forms.php:120 includes/forms.php:147 includes/forms.php:151
|
317 |
msgid "Install Now"
|
318 |
msgstr "Установить сейчас"
|
319 |
|
320 |
+
#: includes/forms.php:278
|
321 |
msgid "Authentication failed."
|
322 |
msgstr "Ошибка аутентификации."
|
323 |
|
324 |
+
#: includes/forms.php:367
|
325 |
msgid "Click the BACK button on your browser and try again."
|
326 |
msgstr "Нажмите кнопку НАЗАД в вашем браузере и попытайтесь снова."
|
327 |
|
457 |
msgid "Allowed diapason"
|
458 |
msgstr "Доступные диапазоны"
|
459 |
|
460 |
+
#: includes/whitelist.php:100
|
461 |
msgid "Add IP to whitelist"
|
462 |
msgstr "Добавить IP в белый список"
|
463 |
|
464 |
+
#: includes/whitelist.php:105
|
465 |
msgid "Search IP"
|
466 |
msgstr "Искать IP"
|
467 |
|
468 |
+
#: includes/whitelist.php:159
|
469 |
msgid "Nothing found"
|
470 |
msgstr "Ничего не найдено"
|
471 |
|
472 |
+
#: includes/whitelist.php:159
|
473 |
msgid "No IP in the whitelist"
|
474 |
msgstr "Список IP пуст"
|
475 |
|
476 |
+
#: includes/whitelist.php:166
|
477 |
msgid "IP Address"
|
478 |
msgstr "IP Адресс"
|
479 |
|
480 |
+
#: includes/whitelist.php:167
|
481 |
msgid "Date Added"
|
482 |
msgstr "Дата добавления"
|
483 |
|
484 |
+
#: includes/whitelist.php:221 includes/whitelist.php:231
|
485 |
msgid "Delete"
|
486 |
msgstr "Удалить"
|
487 |
|
488 |
+
#: includes/whitelist.php:318
|
489 |
msgid "IP added to the whitelist successfully."
|
490 |
msgstr "IP адрес успешно добавлен в белый список."
|
491 |
|
492 |
+
#: includes/whitelist.php:320 includes/whitelist.php:342
|
493 |
+
#: includes/whitelist.php:352
|
494 |
msgid "Some errors occurred."
|
495 |
msgstr "Возникли некоторые ошибки."
|
496 |
|
497 |
+
#: includes/whitelist.php:323
|
498 |
msgid "IP is already in the whitelist."
|
499 |
msgstr "IP адрес уже в белом списке."
|
500 |
|
501 |
+
#: includes/whitelist.php:326
|
502 |
msgid "Invalid IP. See allowed formats."
|
503 |
msgstr "Неверный IP. Смотите доступные форматы."
|
504 |
|
505 |
+
#: includes/whitelist.php:348
|
506 |
msgid "One IP was deleted successfully."
|
507 |
msgstr "Один IP адрес был успешно удален."
|
508 |
|
509 |
+
#: includes/whitelist.php:355
|
510 |
msgid "You have not entered any IP."
|
511 |
msgstr "Вы не ввели ни одного IP адреса."
|
512 |
|
513 |
+
#: includes/whitelist.php:358
|
514 |
msgid "You have not entered any IP in to the search form."
|
515 |
msgstr "Вы не ввели значения в форму поиска."
|
516 |
|
517 |
+
#: includes/whitelist.php:360
|
518 |
msgid "Search results for"
|
519 |
msgstr "Результаты поиска для"
|
520 |
|
521 |
+
#~ msgid ""
|
522 |
+
#~ "Only one reCAPTCHA can be displayed on the page, it's related to "
|
523 |
+
#~ "reCAPTCHA version 1 features."
|
524 |
+
#~ msgstr ""
|
525 |
+
#~ "В связи с особенностями работы reCAPTCHA версии 1 на странице может "
|
526 |
+
#~ "отображаться только одна reCAPTCHA."
|
527 |
+
|
528 |
+
#~ msgid ""
|
529 |
+
#~ "Note: Google reCAPTCHA v1 API Shutdown in March 2018. It is not supported "
|
530 |
+
#~ "anymore and will be removed in the next plugin update. <a href='https://"
|
531 |
+
#~ "developers.google.com/recaptcha/docs/faq' target='_blank'>Learn More</a>"
|
532 |
+
#~ msgstr ""
|
533 |
+
#~ "Внимание: Google reCAPTCHA v1 API больше не поддерживается с марта 2018 "
|
534 |
+
#~ "года. Устаревшая версия будет удалена в следующем обновлении плагина. <a "
|
535 |
+
#~ "href='https://developers.google.com/recaptcha/docs/faq' "
|
536 |
+
#~ "target='_blank'>Подробнее</a>"
|
537 |
+
|
538 |
+
#~ msgid ""
|
539 |
+
#~ "Google reCAPTCHA v1 API Shutting Down in March 2018. <a href='https://www."
|
540 |
+
#~ "programmableweb.com/news/google-recaptcha-v1-api-shutting-down-march-2018/"
|
541 |
+
#~ "brief/2017/10/24' target='_blank'>Learn more</a>"
|
542 |
+
#~ msgstr ""
|
543 |
+
#~ "Google reCAPTCHA v1 API закрыт в марте 2018 года. <a href='https://www."
|
544 |
+
#~ "programmableweb.com/news/google-recaptcha-v1-api-shutting-down-march-2018/"
|
545 |
+
#~ "brief/2017/10/24' target='_blank'>Узнать больше</a>"
|
546 |
+
|
547 |
#~ msgid "Test ReCaptcha"
|
548 |
#~ msgstr "Тестирование ReCaptcha"
|
549 |
|
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: 2018-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Team Link <teamlink@gmx.us>\n"
|
@@ -18,33 +18,33 @@ msgstr ""
|
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-captcha.php:
|
22 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Google Captcha Подешавања"
|
25 |
|
26 |
-
#: google-captcha.php:
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Подешавања"
|
30 |
|
31 |
-
#: google-captcha.php:
|
32 |
msgid "Google Captcha Whitelist"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: google-captcha.php:
|
36 |
msgid "Whitelist"
|
37 |
msgstr "Бела листа"
|
38 |
|
39 |
-
#: google-captcha.php:
|
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,63 @@ 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,27 +116,27 @@ msgstr ""
|
|
116 |
"Више од једне reCAPTCHA је нађено у тренутној форми. Молим вас да уклоните "
|
117 |
"сва непотребна reCAPTCHA поља како би форма радила исправно."
|
118 |
|
119 |
-
#: google-captcha.php:
|
120 |
msgid "Please submit \"Test verification\""
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: google-captcha.php:
|
124 |
msgid "Please complete the captcha and submit \"Test verification\""
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: google-captcha.php:
|
128 |
msgid "Test verification"
|
129 |
msgstr "Тестирај верификацију"
|
130 |
|
131 |
-
#: google-captcha.php:
|
132 |
msgid "The verification is successfully completed."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
msgid "FAQ"
|
137 |
msgstr "ЧПП"
|
138 |
|
139 |
-
#: google-captcha.php:
|
140 |
msgid "Support"
|
141 |
msgstr "Подршка"
|
142 |
|
@@ -161,117 +161,107 @@ msgid "Secret Key"
|
|
161 |
msgstr "Тајни кључ"
|
162 |
|
163 |
#: includes/class-gglcptch-settings-tabs.php:63
|
164 |
-
#: includes/class-gglcptch-settings-tabs.php:64
|
165 |
msgid "Version"
|
166 |
msgstr "Верзија"
|
167 |
|
168 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
169 |
msgid "Invisible"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
173 |
msgid "Enter site key"
|
174 |
msgstr "Унесите кључ сајта"
|
175 |
|
176 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
177 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
178 |
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
182 |
msgid "Enter secret key"
|
183 |
msgstr "Унесите тајни кључ"
|
184 |
|
185 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
186 |
msgid "Settings saved."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
190 |
msgid "Authentication"
|
191 |
msgstr "Аутентикација"
|
192 |
|
193 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
194 |
msgid ""
|
195 |
"Register your website with Google to get required API keys and enter them "
|
196 |
"below."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
200 |
msgid "Get the API Keys"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
204 |
#, fuzzy
|
205 |
msgid "Test reCAPTCHA"
|
206 |
msgstr "Невидљиви reCAPTCHA"
|
207 |
|
208 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
209 |
msgid "General"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
213 |
msgid "Enable reCAPTCHA for"
|
214 |
msgstr "Омогући reCAPTCHA за"
|
215 |
|
216 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
217 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
218 |
msgid "Close"
|
219 |
msgstr "Затвори"
|
220 |
|
221 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
222 |
#, fuzzy
|
223 |
msgid "Hide reCAPTCHA for"
|
224 |
msgstr "Омогући reCAPTCHA за"
|
225 |
|
226 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
227 |
msgid "reCAPTCHA Version"
|
228 |
msgstr "reCAPTCHA верзија"
|
229 |
|
230 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
231 |
-
#: includes/class-gglcptch-settings-tabs.php:279
|
232 |
msgid "Theme"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
236 |
msgid "Whitelist Notification"
|
237 |
msgstr "Нотификација за белу листу"
|
238 |
|
239 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
240 |
#, fuzzy
|
241 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
242 |
msgstr ""
|
243 |
"Ова порука ће бити приказана уместо reCAPTCHA уколико је кориснички IP додат "
|
244 |
"у белу листу"
|
245 |
|
246 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
247 |
msgid "Disabled Submit Button"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
251 |
msgid ""
|
252 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
253 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
257 |
-
msgid ""
|
258 |
-
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
259 |
-
"version 1 features."
|
260 |
-
msgstr ""
|
261 |
-
"Само један reCAPTCHA може бити приказан на страни, у вези је са могућностима "
|
262 |
-
"reCAPTCHA верзије 1."
|
263 |
-
|
264 |
-
#: includes/class-gglcptch-settings-tabs.php:330
|
265 |
msgid ""
|
266 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
267 |
"regenerate Site and Secret keys if necessary."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
271 |
msgid "Google Captcha Shortcode"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
275 |
msgid ""
|
276 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
277 |
msgstr ""
|
@@ -292,35 +282,39 @@ msgstr "Форма за ресетовање шифре"
|
|
292 |
msgid "Comments form"
|
293 |
msgstr "Форма за коментаре"
|
294 |
|
295 |
-
#: includes/forms.php:
|
|
|
|
|
|
|
|
|
296 |
msgid "WordPress default"
|
297 |
msgstr "WordPress подразумевано"
|
298 |
|
299 |
-
#: includes/forms.php:
|
300 |
msgid "External Plugins"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/forms.php:
|
304 |
msgid "Custom Forms"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/forms.php:
|
308 |
msgid "Google Captcha Plugin"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/forms.php:
|
312 |
msgid "Activate"
|
313 |
msgstr "Активирај"
|
314 |
|
315 |
-
#: includes/forms.php:
|
316 |
msgid "Install Now"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: includes/forms.php:
|
320 |
msgid "Authentication failed."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: includes/forms.php:
|
324 |
msgid "Click the BACK button on your browser and try again."
|
325 |
msgstr ""
|
326 |
|
@@ -454,69 +448,76 @@ msgstr "Мој IP"
|
|
454 |
msgid "Allowed diapason"
|
455 |
msgstr "Дозвољени дијапазони"
|
456 |
|
457 |
-
#: includes/whitelist.php:
|
458 |
msgid "Add IP to whitelist"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/whitelist.php:
|
462 |
msgid "Search IP"
|
463 |
msgstr "Тражи IP"
|
464 |
|
465 |
-
#: includes/whitelist.php:
|
466 |
msgid "Nothing found"
|
467 |
msgstr "Ништа није нађено"
|
468 |
|
469 |
-
#: includes/whitelist.php:
|
470 |
msgid "No IP in the whitelist"
|
471 |
msgstr "Нема IP у белој листи"
|
472 |
|
473 |
-
#: includes/whitelist.php:
|
474 |
msgid "IP Address"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: includes/whitelist.php:
|
478 |
msgid "Date Added"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: includes/whitelist.php:
|
482 |
msgid "Delete"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: includes/whitelist.php:
|
486 |
msgid "IP added to the whitelist successfully."
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: includes/whitelist.php:
|
490 |
-
#: includes/whitelist.php:
|
491 |
#, fuzzy
|
492 |
msgid "Some errors occurred."
|
493 |
msgstr "Неке грешке су се десиле"
|
494 |
|
495 |
-
#: includes/whitelist.php:
|
496 |
msgid "IP is already in the whitelist."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/whitelist.php:
|
500 |
msgid "Invalid IP. See allowed formats."
|
501 |
msgstr "Неисправан IP. Погледајте дозвољене формате."
|
502 |
|
503 |
-
#: includes/whitelist.php:
|
504 |
#, fuzzy
|
505 |
msgid "One IP was deleted successfully."
|
506 |
msgstr "Један IP је успешно обрисан"
|
507 |
|
508 |
-
#: includes/whitelist.php:
|
509 |
msgid "You have not entered any IP."
|
510 |
msgstr "Нисте унели ни један IP."
|
511 |
|
512 |
-
#: includes/whitelist.php:
|
513 |
msgid "You have not entered any IP in to the search form."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: includes/whitelist.php:
|
517 |
msgid "Search results for"
|
518 |
msgstr "Резултати претраге за"
|
519 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
520 |
#~ msgid ""
|
521 |
#~ "WARNING: The captcha will not display while you don't fill key fields."
|
522 |
#~ msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-08-03 14:53+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:38 google-captcha.php:40 google-captcha.php:447
|
22 |
+
#: includes/class-gglcptch-settings-tabs.php:146
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Google Captcha Подешавања"
|
25 |
|
26 |
+
#: google-captcha.php:40 google-captcha.php:1030 google-captcha.php:1043
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Подешавања"
|
30 |
|
31 |
+
#: google-captcha.php:42 includes/whitelist.php:46
|
32 |
msgid "Google Captcha Whitelist"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: google-captcha.php:42
|
36 |
msgid "Whitelist"
|
37 |
msgstr "Бела листа"
|
38 |
|
39 |
+
#: google-captcha.php:48 includes/pro_banners.php:29
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Пређи на Про"
|
42 |
|
43 |
+
#: google-captcha.php:236
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Молимо сачекајте док се Google reCAPTCHA учита."
|
46 |
|
47 |
+
#: google-captcha.php:237
|
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:253
|
56 |
msgid "Warning"
|
57 |
msgstr "Упозорење"
|
58 |
|
59 |
+
#: google-captcha.php:352
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Ви сте на белој листи"
|
62 |
|
63 |
+
#: google-captcha.php:534 google-captcha.php:1065
|
64 |
msgid "To use Google Captcha you must get the keys from"
|
65 |
msgstr "Да бисте користили Google Captcha морате узети кључеве од"
|
66 |
|
67 |
+
#: google-captcha.php:535 google-captcha.php:1066
|
68 |
msgid "here"
|
69 |
msgstr "овде"
|
70 |
|
71 |
+
#: google-captcha.php:536 google-captcha.php:1067
|
72 |
msgid "and enter them on the"
|
73 |
msgstr "и унесите их на"
|
74 |
|
75 |
+
#: google-captcha.php:538 google-captcha.php:1069
|
76 |
msgid "plugin setting page"
|
77 |
msgstr "страна подешавања додатка"
|
78 |
|
79 |
+
#: google-captcha.php:799 includes/forms.php:365
|
80 |
msgid "Error"
|
81 |
msgstr "Грешка"
|
82 |
|
83 |
+
#: google-captcha.php:924
|
84 |
msgid "User response is missing."
|
85 |
msgstr "Одговор корисника недостаје."
|
86 |
|
87 |
+
#: google-captcha.php:928 google-captcha.php:936
|
88 |
msgid "Secret Key is invalid."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: google-captcha.php:929 google-captcha.php:937
|
92 |
msgid "Check your domain configurations"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: google-captcha.php:930 google-captcha.php:938
|
96 |
msgid "and enter it again"
|
97 |
msgstr "и унесите поново"
|
98 |
|
99 |
+
#: google-captcha.php:933
|
100 |
msgid "Secret Key is missing."
|
101 |
msgstr "Тајни кључ недостаје."
|
102 |
|
103 |
+
#: google-captcha.php:940
|
104 |
msgid "User response is invalid"
|
105 |
msgstr "Одговор корисника није исправан"
|
106 |
|
107 |
+
#: google-captcha.php:941
|
108 |
msgid "You have entered an incorrect reCAPTCHA value."
|
109 |
msgstr "Унели сте нетачну reCAPTCHA вредност."
|
110 |
|
111 |
+
#: google-captcha.php:942
|
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 |
"Више од једне reCAPTCHA је нађено у тренутној форми. Молим вас да уклоните "
|
117 |
"сва непотребна reCAPTCHA поља како би форма радила исправно."
|
118 |
|
119 |
+
#: google-captcha.php:980
|
120 |
msgid "Please submit \"Test verification\""
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: google-captcha.php:982
|
124 |
msgid "Please complete the captcha and submit \"Test verification\""
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: google-captcha.php:989
|
128 |
msgid "Test verification"
|
129 |
msgstr "Тестирај верификацију"
|
130 |
|
131 |
+
#: google-captcha.php:1010
|
132 |
msgid "The verification is successfully completed."
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: google-captcha.php:1045
|
136 |
msgid "FAQ"
|
137 |
msgstr "ЧПП"
|
138 |
|
139 |
+
#: google-captcha.php:1046
|
140 |
msgid "Support"
|
141 |
msgstr "Подршка"
|
142 |
|
161 |
msgstr "Тајни кључ"
|
162 |
|
163 |
#: includes/class-gglcptch-settings-tabs.php:63
|
|
|
164 |
msgid "Version"
|
165 |
msgstr "Верзија"
|
166 |
|
167 |
+
#: includes/class-gglcptch-settings-tabs.php:64
|
168 |
msgid "Invisible"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: includes/class-gglcptch-settings-tabs.php:93
|
172 |
msgid "Enter site key"
|
173 |
msgstr "Унесите кључ сајта"
|
174 |
|
175 |
+
#: includes/class-gglcptch-settings-tabs.php:94
|
176 |
+
#: includes/class-gglcptch-settings-tabs.php:101
|
177 |
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: includes/class-gglcptch-settings-tabs.php:100
|
181 |
msgid "Enter secret key"
|
182 |
msgstr "Унесите тајни кључ"
|
183 |
|
184 |
+
#: includes/class-gglcptch-settings-tabs.php:134
|
185 |
msgid "Settings saved."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: includes/class-gglcptch-settings-tabs.php:149
|
189 |
msgid "Authentication"
|
190 |
msgstr "Аутентикација"
|
191 |
|
192 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
193 |
msgid ""
|
194 |
"Register your website with Google to get required API keys and enter them "
|
195 |
"below."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
199 |
msgid "Get the API Keys"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: includes/class-gglcptch-settings-tabs.php:167
|
203 |
#, fuzzy
|
204 |
msgid "Test reCAPTCHA"
|
205 |
msgstr "Невидљиви reCAPTCHA"
|
206 |
|
207 |
+
#: includes/class-gglcptch-settings-tabs.php:173
|
208 |
msgid "General"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: includes/class-gglcptch-settings-tabs.php:176
|
212 |
msgid "Enable reCAPTCHA for"
|
213 |
msgstr "Омогући reCAPTCHA за"
|
214 |
|
215 |
+
#: includes/class-gglcptch-settings-tabs.php:222
|
216 |
+
#: includes/class-gglcptch-settings-tabs.php:276 includes/pro_banners.php:20
|
217 |
msgid "Close"
|
218 |
msgstr "Затвори"
|
219 |
|
220 |
+
#: includes/class-gglcptch-settings-tabs.php:231
|
221 |
#, fuzzy
|
222 |
msgid "Hide reCAPTCHA for"
|
223 |
msgstr "Омогући reCAPTCHA за"
|
224 |
|
225 |
+
#: includes/class-gglcptch-settings-tabs.php:249
|
226 |
msgid "reCAPTCHA Version"
|
227 |
msgstr "reCAPTCHA верзија"
|
228 |
|
229 |
+
#: includes/class-gglcptch-settings-tabs.php:263
|
|
|
230 |
msgid "Theme"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/class-gglcptch-settings-tabs.php:285
|
234 |
msgid "Whitelist Notification"
|
235 |
msgstr "Нотификација за белу листу"
|
236 |
|
237 |
+
#: includes/class-gglcptch-settings-tabs.php:288
|
238 |
#, fuzzy
|
239 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
240 |
msgstr ""
|
241 |
"Ова порука ће бити приказана уместо reCAPTCHA уколико је кориснички IP додат "
|
242 |
"у белу листу"
|
243 |
|
244 |
+
#: includes/class-gglcptch-settings-tabs.php:292
|
245 |
msgid "Disabled Submit Button"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/class-gglcptch-settings-tabs.php:296
|
249 |
msgid ""
|
250 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
251 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: includes/class-gglcptch-settings-tabs.php:310
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
msgid ""
|
256 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
257 |
"regenerate Site and Secret keys if necessary."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/class-gglcptch-settings-tabs.php:323
|
261 |
msgid "Google Captcha Shortcode"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: includes/class-gglcptch-settings-tabs.php:326
|
265 |
msgid ""
|
266 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
267 |
msgstr ""
|
282 |
msgid "Comments form"
|
283 |
msgstr "Форма за коментаре"
|
284 |
|
285 |
+
#: includes/forms.php:16
|
286 |
+
msgid "Testimonials"
|
287 |
+
msgstr "Testimonials"
|
288 |
+
|
289 |
+
#: includes/forms.php:38
|
290 |
msgid "WordPress default"
|
291 |
msgstr "WordPress подразумевано"
|
292 |
|
293 |
+
#: includes/forms.php:47 includes/pro_banners.php:72
|
294 |
msgid "External Plugins"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/forms.php:57
|
298 |
msgid "Custom Forms"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/forms.php:78
|
302 |
msgid "Google Captcha Plugin"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/forms.php:118 includes/forms.php:144
|
306 |
msgid "Activate"
|
307 |
msgstr "Активирај"
|
308 |
|
309 |
+
#: includes/forms.php:120 includes/forms.php:147 includes/forms.php:151
|
310 |
msgid "Install Now"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: includes/forms.php:278
|
314 |
msgid "Authentication failed."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/forms.php:367
|
318 |
msgid "Click the BACK button on your browser and try again."
|
319 |
msgstr ""
|
320 |
|
448 |
msgid "Allowed diapason"
|
449 |
msgstr "Дозвољени дијапазони"
|
450 |
|
451 |
+
#: includes/whitelist.php:100
|
452 |
msgid "Add IP to whitelist"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/whitelist.php:105
|
456 |
msgid "Search IP"
|
457 |
msgstr "Тражи IP"
|
458 |
|
459 |
+
#: includes/whitelist.php:159
|
460 |
msgid "Nothing found"
|
461 |
msgstr "Ништа није нађено"
|
462 |
|
463 |
+
#: includes/whitelist.php:159
|
464 |
msgid "No IP in the whitelist"
|
465 |
msgstr "Нема IP у белој листи"
|
466 |
|
467 |
+
#: includes/whitelist.php:166
|
468 |
msgid "IP Address"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/whitelist.php:167
|
472 |
msgid "Date Added"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/whitelist.php:221 includes/whitelist.php:231
|
476 |
msgid "Delete"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: includes/whitelist.php:318
|
480 |
msgid "IP added to the whitelist successfully."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/whitelist.php:320 includes/whitelist.php:342
|
484 |
+
#: includes/whitelist.php:352
|
485 |
#, fuzzy
|
486 |
msgid "Some errors occurred."
|
487 |
msgstr "Неке грешке су се десиле"
|
488 |
|
489 |
+
#: includes/whitelist.php:323
|
490 |
msgid "IP is already in the whitelist."
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: includes/whitelist.php:326
|
494 |
msgid "Invalid IP. See allowed formats."
|
495 |
msgstr "Неисправан IP. Погледајте дозвољене формате."
|
496 |
|
497 |
+
#: includes/whitelist.php:348
|
498 |
#, fuzzy
|
499 |
msgid "One IP was deleted successfully."
|
500 |
msgstr "Један IP је успешно обрисан"
|
501 |
|
502 |
+
#: includes/whitelist.php:355
|
503 |
msgid "You have not entered any IP."
|
504 |
msgstr "Нисте унели ни један IP."
|
505 |
|
506 |
+
#: includes/whitelist.php:358
|
507 |
msgid "You have not entered any IP in to the search form."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: includes/whitelist.php:360
|
511 |
msgid "Search results for"
|
512 |
msgstr "Резултати претраге за"
|
513 |
|
514 |
+
#~ msgid ""
|
515 |
+
#~ "Only one reCAPTCHA can be displayed on the page, it's related to "
|
516 |
+
#~ "reCAPTCHA version 1 features."
|
517 |
+
#~ msgstr ""
|
518 |
+
#~ "Само један reCAPTCHA може бити приказан на страни, у вези је са "
|
519 |
+
#~ "могућностима reCAPTCHA верзије 1."
|
520 |
+
|
521 |
#~ msgid ""
|
522 |
#~ "WARNING: The captcha will not display while you don't fill key fields."
|
523 |
#~ msgstr ""
|
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: 2018-
|
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,33 +18,33 @@ msgstr ""
|
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-captcha.php:
|
22 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Налаштування Google Captcha"
|
25 |
|
26 |
-
#: google-captcha.php:
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Налаштування"
|
30 |
|
31 |
-
#: google-captcha.php:
|
32 |
msgid "Google Captcha Whitelist"
|
33 |
msgstr "Білий список Google Captcha"
|
34 |
|
35 |
-
#: google-captcha.php:
|
36 |
msgid "Whitelist"
|
37 |
msgstr "Білий список"
|
38 |
|
39 |
-
#: google-captcha.php:
|
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,63 @@ 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,28 +116,28 @@ msgstr ""
|
|
116 |
"В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
|
117 |
"усі зайві блоки reCAPTCHA для коректної подальшої роботи."
|
118 |
|
119 |
-
#: google-captcha.php:
|
120 |
msgid "Please submit \"Test verification\""
|
121 |
msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
|
122 |
|
123 |
-
#: google-captcha.php:
|
124 |
msgid "Please complete the captcha and submit \"Test verification\""
|
125 |
msgstr ""
|
126 |
"Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
|
127 |
|
128 |
-
#: google-captcha.php:
|
129 |
msgid "Test verification"
|
130 |
msgstr "Тестування перевірки"
|
131 |
|
132 |
-
#: google-captcha.php:
|
133 |
msgid "The verification is successfully completed."
|
134 |
msgstr "Перевірка завершена успішно."
|
135 |
|
136 |
-
#: google-captcha.php:
|
137 |
msgid "FAQ"
|
138 |
msgstr "FAQ"
|
139 |
|
140 |
-
#: google-captcha.php:
|
141 |
msgid "Support"
|
142 |
msgstr "Техпідтримка"
|
143 |
|
@@ -162,37 +162,36 @@ msgid "Secret Key"
|
|
162 |
msgstr "Секретний ключ"
|
163 |
|
164 |
#: includes/class-gglcptch-settings-tabs.php:63
|
165 |
-
#: includes/class-gglcptch-settings-tabs.php:64
|
166 |
msgid "Version"
|
167 |
msgstr "Версія"
|
168 |
|
169 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
170 |
msgid "Invisible"
|
171 |
msgstr "Невидима"
|
172 |
|
173 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
174 |
msgid "Enter site key"
|
175 |
msgstr "Введіть ключ сайту"
|
176 |
|
177 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
178 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
179 |
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
180 |
msgstr ""
|
181 |
"УВАГА: Капча не буде відображатись, поки ви не заповните поля з ключами."
|
182 |
|
183 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
184 |
msgid "Enter secret key"
|
185 |
msgstr "Введіть секретний ключ"
|
186 |
|
187 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
188 |
msgid "Settings saved."
|
189 |
msgstr "Налаштування збережені."
|
190 |
|
191 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
192 |
msgid "Authentication"
|
193 |
msgstr "Ідентифікація"
|
194 |
|
195 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
196 |
msgid ""
|
197 |
"Register your website with Google to get required API keys and enter them "
|
198 |
"below."
|
@@ -200,53 +199,52 @@ msgstr ""
|
|
200 |
"Зареєструйте свій веб-сайт за допомогою Google, щоб отримати необхідні API "
|
201 |
"ключі та введіть їх нижче."
|
202 |
|
203 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
204 |
msgid "Get the API Keys"
|
205 |
msgstr "Отримати API ключі"
|
206 |
|
207 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
208 |
msgid "Test reCAPTCHA"
|
209 |
msgstr "Тестування reCAPTCHA"
|
210 |
|
211 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
212 |
msgid "General"
|
213 |
msgstr "Загальне"
|
214 |
|
215 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
216 |
msgid "Enable reCAPTCHA for"
|
217 |
msgstr "Включити reCAPTCHA для"
|
218 |
|
219 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
220 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
221 |
msgid "Close"
|
222 |
msgstr "Закрити"
|
223 |
|
224 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
225 |
msgid "Hide reCAPTCHA for"
|
226 |
msgstr "Сховати reCAPTCHA для"
|
227 |
|
228 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
229 |
msgid "reCAPTCHA Version"
|
230 |
msgstr "Версія reCAPTCHA"
|
231 |
|
232 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
233 |
-
#: includes/class-gglcptch-settings-tabs.php:279
|
234 |
msgid "Theme"
|
235 |
msgstr "Тема"
|
236 |
|
237 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
238 |
msgid "Whitelist Notification"
|
239 |
msgstr "Повідомлення про знаходження у білому списку"
|
240 |
|
241 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
242 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
243 |
msgstr "Це повідомлення буде відображатися замість reCAPTCHA."
|
244 |
|
245 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
246 |
msgid "Disabled Submit Button"
|
247 |
msgstr "Відключена кнопка підтвердження"
|
248 |
|
249 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
250 |
msgid ""
|
251 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
252 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
@@ -255,15 +253,7 @@ msgstr ""
|
|
255 |
"не буде завантажена reCAPTCHA (Не використовуйте цю опцію, якщо ви бачите "
|
256 |
"повідомлення \"Не вдалося завантажити Google reCAPTCHA\")."
|
257 |
|
258 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
259 |
-
msgid ""
|
260 |
-
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
261 |
-
"version 1 features."
|
262 |
-
msgstr ""
|
263 |
-
"У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
|
264 |
-
"відображатися тільки одна reCAPTCHA."
|
265 |
-
|
266 |
-
#: includes/class-gglcptch-settings-tabs.php:330
|
267 |
msgid ""
|
268 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
269 |
"regenerate Site and Secret keys if necessary."
|
@@ -271,11 +261,11 @@ msgstr ""
|
|
271 |
"Версію reCAPTCHA було змінено. Будь ласка, натисніть \"Тестування reCAPTCHA"
|
272 |
"\" та оновіть секретний ключ та ключ сайту, якщо це необхідно."
|
273 |
|
274 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
275 |
msgid "Google Captcha Shortcode"
|
276 |
msgstr "Шорткод Google Captcha"
|
277 |
|
278 |
-
#: includes/class-gglcptch-settings-tabs.php:
|
279 |
msgid ""
|
280 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
281 |
msgstr ""
|
@@ -298,35 +288,39 @@ msgstr "Форма відновлення паролю"
|
|
298 |
msgid "Comments form"
|
299 |
msgstr "Форма коментарів"
|
300 |
|
301 |
-
#: includes/forms.php:
|
|
|
|
|
|
|
|
|
302 |
msgid "WordPress default"
|
303 |
msgstr "Стандартних форм WordPress"
|
304 |
|
305 |
-
#: includes/forms.php:
|
306 |
msgid "External Plugins"
|
307 |
msgstr "Зовнішні плагіни"
|
308 |
|
309 |
-
#: includes/forms.php:
|
310 |
msgid "Custom Forms"
|
311 |
msgstr "Користувацькі форми"
|
312 |
|
313 |
-
#: includes/forms.php:
|
314 |
msgid "Google Captcha Plugin"
|
315 |
msgstr "Плагін Google Captcha"
|
316 |
|
317 |
-
#: includes/forms.php:
|
318 |
msgid "Activate"
|
319 |
msgstr "Активувати"
|
320 |
|
321 |
-
#: includes/forms.php:
|
322 |
msgid "Install Now"
|
323 |
msgstr "Встановити зараз"
|
324 |
|
325 |
-
#: includes/forms.php:
|
326 |
msgid "Authentication failed."
|
327 |
msgstr "Помилка аутентифікації."
|
328 |
|
329 |
-
#: includes/forms.php:
|
330 |
msgid "Click the BACK button on your browser and try again."
|
331 |
msgstr "Натисніть кнопку НАЗАД у браузері та спробуйте ще раз."
|
332 |
|
@@ -462,67 +456,93 @@ msgstr "Мій IP"
|
|
462 |
msgid "Allowed diapason"
|
463 |
msgstr "Доступні діапазони"
|
464 |
|
465 |
-
#: includes/whitelist.php:
|
466 |
msgid "Add IP to whitelist"
|
467 |
msgstr "Додати IP до білого списку"
|
468 |
|
469 |
-
#: includes/whitelist.php:
|
470 |
msgid "Search IP"
|
471 |
msgstr "Шукати IP"
|
472 |
|
473 |
-
#: includes/whitelist.php:
|
474 |
msgid "Nothing found"
|
475 |
msgstr "Нічого не знайдено"
|
476 |
|
477 |
-
#: includes/whitelist.php:
|
478 |
msgid "No IP in the whitelist"
|
479 |
msgstr "Список IP порожній"
|
480 |
|
481 |
-
#: includes/whitelist.php:
|
482 |
msgid "IP Address"
|
483 |
msgstr "IP адреса"
|
484 |
|
485 |
-
#: includes/whitelist.php:
|
486 |
msgid "Date Added"
|
487 |
msgstr "Дата додавання"
|
488 |
|
489 |
-
#: includes/whitelist.php:
|
490 |
msgid "Delete"
|
491 |
msgstr "Видалити"
|
492 |
|
493 |
-
#: includes/whitelist.php:
|
494 |
msgid "IP added to the whitelist successfully."
|
495 |
msgstr "IP успішно додано до білого списку."
|
496 |
|
497 |
-
#: includes/whitelist.php:
|
498 |
-
#: includes/whitelist.php:
|
499 |
msgid "Some errors occurred."
|
500 |
msgstr "Відбулися деякі помилки."
|
501 |
|
502 |
-
#: includes/whitelist.php:
|
503 |
msgid "IP is already in the whitelist."
|
504 |
msgstr "IP вже знаходиться в білому списку."
|
505 |
|
506 |
-
#: includes/whitelist.php:
|
507 |
msgid "Invalid IP. See allowed formats."
|
508 |
msgstr "Невірний IP. Дивіться доступні формати."
|
509 |
|
510 |
-
#: includes/whitelist.php:
|
511 |
msgid "One IP was deleted successfully."
|
512 |
msgstr "Одну IP було видалено успішно."
|
513 |
|
514 |
-
#: includes/whitelist.php:
|
515 |
msgid "You have not entered any IP."
|
516 |
msgstr "Ви не ввели жодного IP."
|
517 |
|
518 |
-
#: includes/whitelist.php:
|
519 |
msgid "You have not entered any IP in to the search form."
|
520 |
msgstr "Ви не ввели ніякого значення у форму пошуку."
|
521 |
|
522 |
-
#: includes/whitelist.php:
|
523 |
msgid "Search results for"
|
524 |
msgstr "Результати пошуку для"
|
525 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
#~ msgid "Test ReCaptcha"
|
527 |
#~ msgstr "Тестування ReCaptcha"
|
528 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-08-03 14:53+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:38 google-captcha.php:40 google-captcha.php:447
|
22 |
+
#: includes/class-gglcptch-settings-tabs.php:146
|
23 |
msgid "Google Captcha Settings"
|
24 |
msgstr "Налаштування Google Captcha"
|
25 |
|
26 |
+
#: google-captcha.php:40 google-captcha.php:1030 google-captcha.php:1043
|
27 |
#: includes/class-gglcptch-settings-tabs.php:25
|
28 |
msgid "Settings"
|
29 |
msgstr "Налаштування"
|
30 |
|
31 |
+
#: google-captcha.php:42 includes/whitelist.php:46
|
32 |
msgid "Google Captcha Whitelist"
|
33 |
msgstr "Білий список Google Captcha"
|
34 |
|
35 |
+
#: google-captcha.php:42
|
36 |
msgid "Whitelist"
|
37 |
msgstr "Білий список"
|
38 |
|
39 |
+
#: google-captcha.php:48 includes/pro_banners.php:29
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Оновити до Pro"
|
42 |
|
43 |
+
#: google-captcha.php:236
|
44 |
msgid "Please wait until Google reCAPTCHA is loaded."
|
45 |
msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
|
46 |
|
47 |
+
#: google-captcha.php:237
|
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:253
|
56 |
msgid "Warning"
|
57 |
msgstr "Увага"
|
58 |
|
59 |
+
#: google-captcha.php:352
|
60 |
msgid "You are in the whitelist"
|
61 |
msgstr "Ви знаходитесь в білому списку"
|
62 |
|
63 |
+
#: google-captcha.php:534 google-captcha.php:1065
|
64 |
msgid "To use Google Captcha you must get the keys from"
|
65 |
msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
|
66 |
|
67 |
+
#: google-captcha.php:535 google-captcha.php:1066
|
68 |
msgid "here"
|
69 |
msgstr "тут"
|
70 |
|
71 |
+
#: google-captcha.php:536 google-captcha.php:1067
|
72 |
msgid "and enter them on the"
|
73 |
msgstr "і вставте їх у"
|
74 |
|
75 |
+
#: google-captcha.php:538 google-captcha.php:1069
|
76 |
msgid "plugin setting page"
|
77 |
msgstr "сторінку налаштувань плагіну"
|
78 |
|
79 |
+
#: google-captcha.php:799 includes/forms.php:365
|
80 |
msgid "Error"
|
81 |
msgstr "Помилка"
|
82 |
|
83 |
+
#: google-captcha.php:924
|
84 |
msgid "User response is missing."
|
85 |
msgstr "Відповідь користувача відсутня."
|
86 |
|
87 |
+
#: google-captcha.php:928 google-captcha.php:936
|
88 |
msgid "Secret Key is invalid."
|
89 |
msgstr "Секретний ключ некоректний."
|
90 |
|
91 |
+
#: google-captcha.php:929 google-captcha.php:937
|
92 |
msgid "Check your domain configurations"
|
93 |
msgstr "Перевірте конфігурацію вашого домену"
|
94 |
|
95 |
+
#: google-captcha.php:930 google-captcha.php:938
|
96 |
msgid "and enter it again"
|
97 |
msgstr "і введіть його знову"
|
98 |
|
99 |
+
#: google-captcha.php:933
|
100 |
msgid "Secret Key is missing."
|
101 |
msgstr "Секретний ключ відсутній."
|
102 |
|
103 |
+
#: google-captcha.php:940
|
104 |
msgid "User response is invalid"
|
105 |
msgstr "Некоректна відповідь користувача"
|
106 |
|
107 |
+
#: google-captcha.php:941
|
108 |
msgid "You have entered an incorrect reCAPTCHA value."
|
109 |
msgstr "Ви ввели невірне значення reCAPTCHA."
|
110 |
|
111 |
+
#: google-captcha.php:942
|
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 |
"В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
|
117 |
"усі зайві блоки reCAPTCHA для коректної подальшої роботи."
|
118 |
|
119 |
+
#: google-captcha.php:980
|
120 |
msgid "Please submit \"Test verification\""
|
121 |
msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
|
122 |
|
123 |
+
#: google-captcha.php:982
|
124 |
msgid "Please complete the captcha and submit \"Test verification\""
|
125 |
msgstr ""
|
126 |
"Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
|
127 |
|
128 |
+
#: google-captcha.php:989
|
129 |
msgid "Test verification"
|
130 |
msgstr "Тестування перевірки"
|
131 |
|
132 |
+
#: google-captcha.php:1010
|
133 |
msgid "The verification is successfully completed."
|
134 |
msgstr "Перевірка завершена успішно."
|
135 |
|
136 |
+
#: google-captcha.php:1045
|
137 |
msgid "FAQ"
|
138 |
msgstr "FAQ"
|
139 |
|
140 |
+
#: google-captcha.php:1046
|
141 |
msgid "Support"
|
142 |
msgstr "Техпідтримка"
|
143 |
|
162 |
msgstr "Секретний ключ"
|
163 |
|
164 |
#: includes/class-gglcptch-settings-tabs.php:63
|
|
|
165 |
msgid "Version"
|
166 |
msgstr "Версія"
|
167 |
|
168 |
+
#: includes/class-gglcptch-settings-tabs.php:64
|
169 |
msgid "Invisible"
|
170 |
msgstr "Невидима"
|
171 |
|
172 |
+
#: includes/class-gglcptch-settings-tabs.php:93
|
173 |
msgid "Enter site key"
|
174 |
msgstr "Введіть ключ сайту"
|
175 |
|
176 |
+
#: includes/class-gglcptch-settings-tabs.php:94
|
177 |
+
#: includes/class-gglcptch-settings-tabs.php:101
|
178 |
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
179 |
msgstr ""
|
180 |
"УВАГА: Капча не буде відображатись, поки ви не заповните поля з ключами."
|
181 |
|
182 |
+
#: includes/class-gglcptch-settings-tabs.php:100
|
183 |
msgid "Enter secret key"
|
184 |
msgstr "Введіть секретний ключ"
|
185 |
|
186 |
+
#: includes/class-gglcptch-settings-tabs.php:134
|
187 |
msgid "Settings saved."
|
188 |
msgstr "Налаштування збережені."
|
189 |
|
190 |
+
#: includes/class-gglcptch-settings-tabs.php:149
|
191 |
msgid "Authentication"
|
192 |
msgstr "Ідентифікація"
|
193 |
|
194 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
195 |
msgid ""
|
196 |
"Register your website with Google to get required API keys and enter them "
|
197 |
"below."
|
199 |
"Зареєструйте свій веб-сайт за допомогою Google, щоб отримати необхідні API "
|
200 |
"ключі та введіть їх нижче."
|
201 |
|
202 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
203 |
msgid "Get the API Keys"
|
204 |
msgstr "Отримати API ключі"
|
205 |
|
206 |
+
#: includes/class-gglcptch-settings-tabs.php:167
|
207 |
msgid "Test reCAPTCHA"
|
208 |
msgstr "Тестування reCAPTCHA"
|
209 |
|
210 |
+
#: includes/class-gglcptch-settings-tabs.php:173
|
211 |
msgid "General"
|
212 |
msgstr "Загальне"
|
213 |
|
214 |
+
#: includes/class-gglcptch-settings-tabs.php:176
|
215 |
msgid "Enable reCAPTCHA for"
|
216 |
msgstr "Включити reCAPTCHA для"
|
217 |
|
218 |
+
#: includes/class-gglcptch-settings-tabs.php:222
|
219 |
+
#: includes/class-gglcptch-settings-tabs.php:276 includes/pro_banners.php:20
|
220 |
msgid "Close"
|
221 |
msgstr "Закрити"
|
222 |
|
223 |
+
#: includes/class-gglcptch-settings-tabs.php:231
|
224 |
msgid "Hide reCAPTCHA for"
|
225 |
msgstr "Сховати reCAPTCHA для"
|
226 |
|
227 |
+
#: includes/class-gglcptch-settings-tabs.php:249
|
228 |
msgid "reCAPTCHA Version"
|
229 |
msgstr "Версія reCAPTCHA"
|
230 |
|
231 |
+
#: includes/class-gglcptch-settings-tabs.php:263
|
|
|
232 |
msgid "Theme"
|
233 |
msgstr "Тема"
|
234 |
|
235 |
+
#: includes/class-gglcptch-settings-tabs.php:285
|
236 |
msgid "Whitelist Notification"
|
237 |
msgstr "Повідомлення про знаходження у білому списку"
|
238 |
|
239 |
+
#: includes/class-gglcptch-settings-tabs.php:288
|
240 |
msgid "This message will be displayed instead of the reCAPTCHA."
|
241 |
msgstr "Це повідомлення буде відображатися замість reCAPTCHA."
|
242 |
|
243 |
+
#: includes/class-gglcptch-settings-tabs.php:292
|
244 |
msgid "Disabled Submit Button"
|
245 |
msgstr "Відключена кнопка підтвердження"
|
246 |
|
247 |
+
#: includes/class-gglcptch-settings-tabs.php:296
|
248 |
msgid ""
|
249 |
"Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
|
250 |
"this option if you see \"Failed to load Google reCAPTCHA\" message)."
|
253 |
"не буде завантажена reCAPTCHA (Не використовуйте цю опцію, якщо ви бачите "
|
254 |
"повідомлення \"Не вдалося завантажити Google reCAPTCHA\")."
|
255 |
|
256 |
+
#: includes/class-gglcptch-settings-tabs.php:310
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
msgid ""
|
258 |
"reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
|
259 |
"regenerate Site and Secret keys if necessary."
|
261 |
"Версію reCAPTCHA було змінено. Будь ласка, натисніть \"Тестування reCAPTCHA"
|
262 |
"\" та оновіть секретний ключ та ключ сайту, якщо це необхідно."
|
263 |
|
264 |
+
#: includes/class-gglcptch-settings-tabs.php:323
|
265 |
msgid "Google Captcha Shortcode"
|
266 |
msgstr "Шорткод Google Captcha"
|
267 |
|
268 |
+
#: includes/class-gglcptch-settings-tabs.php:326
|
269 |
msgid ""
|
270 |
"Add Google Captcha to your posts or pages using the following shortcode:"
|
271 |
msgstr ""
|
288 |
msgid "Comments form"
|
289 |
msgstr "Форма коментарів"
|
290 |
|
291 |
+
#: includes/forms.php:16
|
292 |
+
msgid "Testimonials"
|
293 |
+
msgstr "Testimonials"
|
294 |
+
|
295 |
+
#: includes/forms.php:38
|
296 |
msgid "WordPress default"
|
297 |
msgstr "Стандартних форм WordPress"
|
298 |
|
299 |
+
#: includes/forms.php:47 includes/pro_banners.php:72
|
300 |
msgid "External Plugins"
|
301 |
msgstr "Зовнішні плагіни"
|
302 |
|
303 |
+
#: includes/forms.php:57
|
304 |
msgid "Custom Forms"
|
305 |
msgstr "Користувацькі форми"
|
306 |
|
307 |
+
#: includes/forms.php:78
|
308 |
msgid "Google Captcha Plugin"
|
309 |
msgstr "Плагін Google Captcha"
|
310 |
|
311 |
+
#: includes/forms.php:118 includes/forms.php:144
|
312 |
msgid "Activate"
|
313 |
msgstr "Активувати"
|
314 |
|
315 |
+
#: includes/forms.php:120 includes/forms.php:147 includes/forms.php:151
|
316 |
msgid "Install Now"
|
317 |
msgstr "Встановити зараз"
|
318 |
|
319 |
+
#: includes/forms.php:278
|
320 |
msgid "Authentication failed."
|
321 |
msgstr "Помилка аутентифікації."
|
322 |
|
323 |
+
#: includes/forms.php:367
|
324 |
msgid "Click the BACK button on your browser and try again."
|
325 |
msgstr "Натисніть кнопку НАЗАД у браузері та спробуйте ще раз."
|
326 |
|
456 |
msgid "Allowed diapason"
|
457 |
msgstr "Доступні діапазони"
|
458 |
|
459 |
+
#: includes/whitelist.php:100
|
460 |
msgid "Add IP to whitelist"
|
461 |
msgstr "Додати IP до білого списку"
|
462 |
|
463 |
+
#: includes/whitelist.php:105
|
464 |
msgid "Search IP"
|
465 |
msgstr "Шукати IP"
|
466 |
|
467 |
+
#: includes/whitelist.php:159
|
468 |
msgid "Nothing found"
|
469 |
msgstr "Нічого не знайдено"
|
470 |
|
471 |
+
#: includes/whitelist.php:159
|
472 |
msgid "No IP in the whitelist"
|
473 |
msgstr "Список IP порожній"
|
474 |
|
475 |
+
#: includes/whitelist.php:166
|
476 |
msgid "IP Address"
|
477 |
msgstr "IP адреса"
|
478 |
|
479 |
+
#: includes/whitelist.php:167
|
480 |
msgid "Date Added"
|
481 |
msgstr "Дата додавання"
|
482 |
|
483 |
+
#: includes/whitelist.php:221 includes/whitelist.php:231
|
484 |
msgid "Delete"
|
485 |
msgstr "Видалити"
|
486 |
|
487 |
+
#: includes/whitelist.php:318
|
488 |
msgid "IP added to the whitelist successfully."
|
489 |
msgstr "IP успішно додано до білого списку."
|
490 |
|
491 |
+
#: includes/whitelist.php:320 includes/whitelist.php:342
|
492 |
+
#: includes/whitelist.php:352
|
493 |
msgid "Some errors occurred."
|
494 |
msgstr "Відбулися деякі помилки."
|
495 |
|
496 |
+
#: includes/whitelist.php:323
|
497 |
msgid "IP is already in the whitelist."
|
498 |
msgstr "IP вже знаходиться в білому списку."
|
499 |
|
500 |
+
#: includes/whitelist.php:326
|
501 |
msgid "Invalid IP. See allowed formats."
|
502 |
msgstr "Невірний IP. Дивіться доступні формати."
|
503 |
|
504 |
+
#: includes/whitelist.php:348
|
505 |
msgid "One IP was deleted successfully."
|
506 |
msgstr "Одну IP було видалено успішно."
|
507 |
|
508 |
+
#: includes/whitelist.php:355
|
509 |
msgid "You have not entered any IP."
|
510 |
msgstr "Ви не ввели жодного IP."
|
511 |
|
512 |
+
#: includes/whitelist.php:358
|
513 |
msgid "You have not entered any IP in to the search form."
|
514 |
msgstr "Ви не ввели ніякого значення у форму пошуку."
|
515 |
|
516 |
+
#: includes/whitelist.php:360
|
517 |
msgid "Search results for"
|
518 |
msgstr "Результати пошуку для"
|
519 |
|
520 |
+
#~ msgid ""
|
521 |
+
#~ "Only one reCAPTCHA can be displayed on the page, it's related to "
|
522 |
+
#~ "reCAPTCHA version 1 features."
|
523 |
+
#~ msgstr ""
|
524 |
+
#~ "У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
|
525 |
+
#~ "відображатися тільки одна reCAPTCHA."
|
526 |
+
|
527 |
+
#~ msgid ""
|
528 |
+
#~ "Note: Google reCAPTCHA v1 API Shutdown in March 2018. It is not supported "
|
529 |
+
#~ "anymore and will be removed in the next plugin update. <a href='https://"
|
530 |
+
#~ "developers.google.com/recaptcha/docs/faq' target='_blank'>Learn More</a>"
|
531 |
+
#~ msgstr ""
|
532 |
+
#~ "Увага: Google reCAPTCHA v1 API більше не підтримується з березня 2018 "
|
533 |
+
#~ "року. Застаріла версія буде видалена в наступному оновленні плагіна. <a "
|
534 |
+
#~ "href='https://developers.google.com/recaptcha/docs/faq' "
|
535 |
+
#~ "target='_blank'>Детальніше</a>"
|
536 |
+
|
537 |
+
#~ msgid ""
|
538 |
+
#~ "Google reCAPTCHA v1 API Shutting Down in March 2018. <a href='https://www."
|
539 |
+
#~ "programmableweb.com/news/google-recaptcha-v1-api-shutting-down-march-2018/"
|
540 |
+
#~ "brief/2017/10/24' target='_blank'>Learn more</a>"
|
541 |
+
#~ msgstr ""
|
542 |
+
#~ "Google reCAPTCHA v1 API був закритий у марті 2018 року. <a href='https://"
|
543 |
+
#~ "www.programmableweb.com/news/google-recaptcha-v1-api-shutting-down-"
|
544 |
+
#~ "march-2018/brief/2017/10/24' target='_blank'>Дізнатися більше</a>"
|
545 |
+
|
546 |
#~ msgid "Test ReCaptcha"
|
547 |
#~ msgstr "Тестування ReCaptcha"
|
548 |
|
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
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -28,6 +28,7 @@ http://www.youtube.com/watch?v=qwHsW3IJ7gQ
|
|
28 |
* Reset password form
|
29 |
* Comments form
|
30 |
* [Contact Form](https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=56575444122cff9ab3ee3e640efb001a)
|
|
|
31 |
* Custom form
|
32 |
* Hide Google Captcha (reCAPTCHA) for the whitelisted IP addresses
|
33 |
* Validity check of keys in admin panel
|
@@ -252,13 +253,17 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
252 |
3. Lost password form with Google Captcha (reCAPTCHA).
|
253 |
4. Comments form with Google Captcha (reCAPTCHA).
|
254 |
5. Contact Form with Google Captcha (reCAPTCHA).
|
255 |
-
6. The form with Google Captcha (reCAPTCHA)
|
256 |
-
7.
|
257 |
-
8. Google Captcha (reCAPTCHA)
|
258 |
-
9. Google Captcha (reCAPTCHA) Whitelist page.
|
259 |
|
260 |
== Changelog ==
|
261 |
|
|
|
|
|
|
|
|
|
|
|
262 |
= V1.36 - 19.03.2018 =
|
263 |
* PRO : The bug related to BuddyPress registration form has been fixed.
|
264 |
|
@@ -423,6 +428,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
423 |
|
424 |
== Upgrade Notice ==
|
425 |
|
|
|
|
|
|
|
|
|
|
|
426 |
= V1.36 =
|
427 |
* Bugs fixed.
|
428 |
|
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
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 4.9.8
|
7 |
+
Stable tag: 1.37
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
28 |
* Reset password form
|
29 |
* Comments form
|
30 |
* [Contact Form](https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=56575444122cff9ab3ee3e640efb001a)
|
31 |
+
* Testimonials [NEW]
|
32 |
* Custom form
|
33 |
* Hide Google Captcha (reCAPTCHA) for the whitelisted IP addresses
|
34 |
* Validity check of keys in admin panel
|
253 |
3. Lost password form with Google Captcha (reCAPTCHA).
|
254 |
4. Comments form with Google Captcha (reCAPTCHA).
|
255 |
5. Contact Form with Google Captcha (reCAPTCHA).
|
256 |
+
6. The form with Google Captcha (reCAPTCHA) dark theme.
|
257 |
+
7. Google Captcha (reCAPTCHA) Settings page.
|
258 |
+
8. Google Captcha (reCAPTCHA) Whitelist page.
|
|
|
259 |
|
260 |
== Changelog ==
|
261 |
|
262 |
+
= V1.37 - 07.08.2018 =
|
263 |
+
* PRO : The compatibility with Testimonials by BestWebSoft has been added.
|
264 |
+
* Update : The Czech language file has been updated.
|
265 |
+
* PRO : The bug related to WooCommerce Checkout form has been fixed.
|
266 |
+
|
267 |
= V1.36 - 19.03.2018 =
|
268 |
* PRO : The bug related to BuddyPress registration form has been fixed.
|
269 |
|
428 |
|
429 |
== Upgrade Notice ==
|
430 |
|
431 |
+
= V1.37 =
|
432 |
+
* New features added.
|
433 |
+
* Languages updated.
|
434 |
+
* Bugs fixed.
|
435 |
+
|
436 |
= V1.36 =
|
437 |
* Bugs fixed.
|
438 |
|
screenshot-4.png
CHANGED
Binary file
|
screenshot-5.png
CHANGED
Binary file
|
screenshot-6.png
CHANGED
Binary file
|
screenshot-7.png
CHANGED
Binary file
|
screenshot-8.png
CHANGED
Binary file
|
screenshot-9.png
DELETED
Binary file
|