Version Description
- 20.01.2015 =
- NEW : The Bulgarian language file is added.
- Update : We added the check of the "allow_url_fopen" option in PHP settings.
- Update : We added style for forms that use captcha v2.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Captcha (reCAPTCHA) by BestWebSoft |
Version | 1.12 |
Comparing to | |
See all releases |
Code changes from version 1.11 to 1.12
- google-captcha.php +114 -80
- js/script.js +1 -1
- languages/google_captcha-bg_BG.mo +0 -0
- languages/google_captcha-bg_BG.po +248 -0
- languages/google_captcha-es_ES.mo +0 -0
- languages/google_captcha-es_ES.po +66 -58
- languages/google_captcha-pl_PL.mo +0 -0
- languages/google_captcha-pl_PL.po +66 -58
- languages/google_captcha-pt_BR.mo +0 -0
- languages/google_captcha-pt_BR.po +67 -61
- languages/google_captcha-ru_RU.mo +0 -0
- languages/google_captcha-ru_RU.po +66 -58
- languages/google_captcha-uk.mo +0 -0
- languages/google_captcha-uk.po +66 -58
- languages/google_captcha-zh_TW.mo +0 -0
- languages/google_captcha-zh_TW.po +66 -58
- readme.txt +14 -4
- screenshot-1.png +0 -0
- screenshot-4.png +0 -0
- screenshot-5.png +0 -0
- screenshot-6.png +0 -0
- screenshot-7.png +0 -0
google-captcha.php
CHANGED
@@ -4,12 +4,12 @@ Plugin Name: Google Captcha (reCAPTCHA) by BestWebSoft
|
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin Google Captcha intended to prove that the visitor is a human being and not a spam robot.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 1.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv3 or later
|
10 |
*/
|
11 |
|
12 |
-
/* © Copyright
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License, version 2, as
|
@@ -72,8 +72,8 @@ if ( ! function_exists( 'google_capthca_admin_menu' ) ) {
|
|
72 |
if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' ) )
|
73 |
require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' );
|
74 |
else
|
75 |
-
require_once( dirname( __FILE__ ) . '/bws_menu/bws_menu.php' );
|
76 |
-
$bstwbsftwppdtplgns_added_menu = true;
|
77 |
}
|
78 |
|
79 |
add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( "images/px.png", __FILE__ ), 1001 );
|
@@ -102,7 +102,7 @@ if ( ! function_exists( 'google_capthca_admin_menu' ) ) {
|
|
102 |
|
103 |
if ( ! function_exists( 'gglcptch_init' ) ) {
|
104 |
function gglcptch_init() {
|
105 |
-
global $gglcptch_options;
|
106 |
|
107 |
load_plugin_textdomain( 'google_captcha', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
108 |
|
@@ -112,6 +112,10 @@ if ( ! function_exists( 'gglcptch_init' ) ) {
|
|
112 |
/* Get options from the database */
|
113 |
$gglcptch_options = get_option( 'gglcptch_options' );
|
114 |
|
|
|
|
|
|
|
|
|
115 |
/* Add hooks */
|
116 |
if ( '1' == $gglcptch_options['login_form'] ) {
|
117 |
add_action( 'login_form', 'gglcptch_login_display' );
|
@@ -136,14 +140,14 @@ if ( ! function_exists( 'gglcptch_init' ) ) {
|
|
136 |
}
|
137 |
if ( '1' == $gglcptch_options['contact_form'] ) {
|
138 |
add_filter( 'cntctfrm_display_captcha', 'gglcptch_cf_display' );
|
139 |
-
add_filter( 'cntctfrmpr_display_captcha', 'gglcptch_cf_display' );
|
140 |
}
|
141 |
}
|
142 |
}
|
143 |
|
144 |
if ( ! function_exists( 'gglcptch_admin_init' ) ) {
|
145 |
function gglcptch_admin_init() {
|
146 |
-
|
147 |
|
148 |
if ( ! $gglcptch_plugin_info )
|
149 |
$gglcptch_plugin_info = get_plugin_data( __FILE__, false );
|
@@ -214,7 +218,7 @@ if ( ! function_exists( 'register_gglcptch_settings' ) ) {
|
|
214 |
/* Display settings page */
|
215 |
if ( ! function_exists( 'gglcptch_settings_page' ) ) {
|
216 |
function gglcptch_settings_page() {
|
217 |
-
global $gglcptch_options, $gglcptch_plugin_info, $wp_version;
|
218 |
|
219 |
/* Private and public keys */
|
220 |
$gglcptch_keys = array(
|
@@ -268,7 +272,7 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
|
|
268 |
$gglcptch_options['reset_pwd_form'] = isset( $_POST['gglcptch_reset_pwd_form'] ) ? 1 : 0;
|
269 |
$gglcptch_options['comments_form'] = isset( $_POST['gglcptch_comments_form'] ) ? 1 : 0;
|
270 |
$gglcptch_options['contact_form'] = isset( $_POST['gglcptch_contact_form'] ) ? 1 : 0;
|
271 |
-
$gglcptch_options['recaptcha_version'] = $_POST['gglcptch_recaptcha_version'];
|
272 |
$gglcptch_options['theme'] = $_POST['gglcptch_theme'];
|
273 |
$gglcptch_options['theme_v2'] = $_POST['gglcptch_theme_v2'];
|
274 |
|
@@ -277,6 +281,9 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
|
|
277 |
}
|
278 |
|
279 |
update_option( 'gglcptch_options', $gglcptch_options );
|
|
|
|
|
|
|
280 |
} ?>
|
281 |
<div class="wrap">
|
282 |
<h2><?php _e( 'Google Captcha Settings', 'google_captcha' ); ?></h2>
|
@@ -287,6 +294,12 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
|
|
287 |
<div id="gglcptch_settings_notice" class="updated fade" style="display:none"><p><strong><?php _e( "Notice:", 'google_captcha' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'google_captcha' ); ?></p></div>
|
288 |
<div class="updated fade" <?php if ( ! isset( $_POST['gglcptch_save_changes'] ) || "" != $error ) echo 'style="display:none"'; ?>><p><strong><?php _e( 'Settings saved', 'google_captcha' ); ?></strong></p></div>
|
289 |
<div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
<p><?php _e( 'If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:', 'google_captcha' ); echo ' [bws_google_captcha]'; ?></p>
|
291 |
<form id="gglcptch_settings_form" method="post" action="admin.php?page=google-captcha.php">
|
292 |
<h3><?php _e( 'Authentication', 'google_captcha' ); ?></h3>
|
@@ -340,11 +353,11 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
|
|
340 |
<label><input type="checkbox" name="<?php echo 'gglcptch_' . $role; ?>" value=<?php echo $role; if ( '1' == $gglcptch_options[ $role ] ) echo ' checked'; ?>> <?php echo $fields['name']; ?></label><br/>
|
341 |
<?php endforeach; ?>
|
342 |
</td>
|
343 |
-
</tr>
|
344 |
<tr valign="top">
|
345 |
<th scope="row"><?php _e( 'reCAPTCHA version:', 'google_captcha' ); ?></th>
|
346 |
<td>
|
347 |
-
<label><input type="radio" name="gglcptch_recaptcha_version" value="v1"<?php if ( 'v1' == $gglcptch_options['recaptcha_version'] ) echo ' checked="checked"'; ?>> <?php _e( 'version', 'google_captcha' ); ?> 1</label><br/>
|
348 |
<label><input type="radio" name="gglcptch_recaptcha_version" value="v2"<?php if ( 'v2' == $gglcptch_options['recaptcha_version'] ) echo ' checked="checked"'; ?>> <?php _e( 'version', 'google_captcha' ); ?> 2</label>
|
349 |
</td>
|
350 |
</tr>
|
@@ -370,7 +383,7 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
|
|
370 |
<select name="gglcptch_theme_v2">
|
371 |
<option value="light" <?php if ( 'light' == $gglcptch_options['theme_v2'] ) echo ' selected'; ?>>light</option>
|
372 |
<option value="dark" <?php if ( 'dark' == $gglcptch_options['theme_v2'] ) echo ' selected'; ?>>dark</option>
|
373 |
-
</select>
|
374 |
</td>
|
375 |
</tr>
|
376 |
</table>
|
@@ -398,7 +411,7 @@ if ( ! function_exists( 'gglcptch_check_role' ) ) {
|
|
398 |
function gglcptch_check_role() {
|
399 |
global $current_user, $gglcptch_options;
|
400 |
if ( ! is_user_logged_in() )
|
401 |
-
return false;
|
402 |
if ( ! empty( $current_user->roles[0] ) ) {
|
403 |
$role = $current_user->roles[0];
|
404 |
if ( '1' == $gglcptch_options[ $role ] )
|
@@ -415,13 +428,18 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
415 |
function gglcptch_display( $content = false ) {
|
416 |
if ( gglcptch_check_role() )
|
417 |
return;
|
418 |
-
global $gglcptch_options, $gglcptch_count;
|
419 |
if ( empty( $gglcptch_count ) ) {
|
420 |
$gglcptch_count = 1;
|
421 |
}
|
422 |
if ( $gglcptch_count > 1 ) {
|
423 |
return $content;
|
424 |
}
|
|
|
|
|
|
|
|
|
|
|
425 |
$publickey = $gglcptch_options['public_key'];
|
426 |
$privatekey = $gglcptch_options['private_key'];
|
427 |
$content .= '<div class="gglcptch">';
|
@@ -440,34 +458,7 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
440 |
$gglcptch_count++;
|
441 |
return $content;
|
442 |
}
|
443 |
-
if ( '
|
444 |
-
require_once( 'lib/recaptchalib.php' );
|
445 |
-
$content .= sprintf(
|
446 |
-
'<style type="text/css" media="screen">
|
447 |
-
#recaptcha_response_field {
|
448 |
-
max-height: 35px;
|
449 |
-
}
|
450 |
-
#gglcptch_error {
|
451 |
-
color: #F00;
|
452 |
-
}
|
453 |
-
.gglcptch table#recaptcha_table {
|
454 |
-
table-layout: auto;
|
455 |
-
}
|
456 |
-
</style>
|
457 |
-
<script type="text/javascript">
|
458 |
-
var RecaptchaOptions = { theme : "%s" },
|
459 |
-
ajaxurl = "%s",
|
460 |
-
gglcptch_error_msg = "%s";
|
461 |
-
</script>',
|
462 |
-
$gglcptch_options['theme'],
|
463 |
-
admin_url( 'admin-ajax.php' ),
|
464 |
-
__( 'Error: You have entered an incorrect CAPTCHA value.', 'google_captcha' )
|
465 |
-
);
|
466 |
-
if ( is_ssl() )
|
467 |
-
$content .= recaptcha_get_html( $publickey, '', true );
|
468 |
-
else
|
469 |
-
$content .= recaptcha_get_html( $publickey );
|
470 |
-
} else {
|
471 |
require_once( 'lib_v2/recaptchalib.php' );
|
472 |
$reCaptcha = new ReCaptcha( $privatekey );
|
473 |
$content .= '<style type="text/css" media="screen">
|
@@ -493,6 +484,33 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
493 |
</div>
|
494 |
</div>
|
495 |
</noscript>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
}
|
497 |
$content .= '</div>';
|
498 |
$gglcptch_count++;
|
@@ -504,9 +522,13 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
504 |
if ( ! function_exists( 'gglcptch_login_display' ) ) {
|
505 |
function gglcptch_login_display() {
|
506 |
global $gglcptch_options;
|
507 |
-
$
|
508 |
-
|
509 |
-
|
|
|
|
|
|
|
|
|
510 |
<style type="text/css" media="screen">
|
511 |
#loginform,
|
512 |
#lostpasswordform,
|
@@ -524,26 +546,21 @@ if ( ! function_exists( 'gglcptch_login_display' ) ) {
|
|
524 |
|
525 |
/* Check google captcha in login form */
|
526 |
if ( ! function_exists( 'gglcptch_login_check' ) ) {
|
527 |
-
function gglcptch_login_check( $redirect_to, $request, $user ) {
|
528 |
if ( isset( $_POST['wp-submit'] ) ) {
|
529 |
-
global $gglcptch_options;
|
|
|
|
|
|
|
|
|
|
|
530 |
$publickey = $gglcptch_options['public_key'];
|
531 |
$privatekey = $gglcptch_options['private_key'];
|
532 |
|
533 |
if ( ! $privatekey || ! $publickey ) {
|
534 |
return $redirect_to;
|
535 |
}
|
536 |
-
if ( '
|
537 |
-
require_once( 'lib/recaptchalib.php' );
|
538 |
-
$resp = recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] );
|
539 |
-
|
540 |
-
if ( ! $resp->is_valid ) {
|
541 |
-
wp_clear_auth_cookie();
|
542 |
-
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
543 |
-
} else {
|
544 |
-
return $redirect_to;
|
545 |
-
}
|
546 |
-
} else {
|
547 |
require_once( 'lib_v2/recaptchalib.php' );
|
548 |
$reCaptcha = new ReCaptcha( $privatekey );
|
549 |
$resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $_POST["g-recaptcha-response"] );
|
@@ -554,6 +571,16 @@ if ( ! function_exists( 'gglcptch_login_check' ) ) {
|
|
554 |
wp_clear_auth_cookie();
|
555 |
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
556 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
}
|
558 |
} else {
|
559 |
return $redirect_to;
|
@@ -574,29 +601,36 @@ if ( ! function_exists( 'gglcptch_commentform_display' ) ) {
|
|
574 |
/* Check google captcha in lostpassword form */
|
575 |
if ( ! function_exists( 'gglcptch_lostpassword_check' ) ) {
|
576 |
function gglcptch_lostpassword_check() {
|
577 |
-
global $gglcptch_options;
|
|
|
|
|
|
|
|
|
|
|
578 |
$publickey = $gglcptch_options['public_key'];
|
579 |
$privatekey = $gglcptch_options['private_key'];
|
580 |
|
581 |
if ( ! $privatekey || ! $publickey )
|
582 |
return;
|
583 |
|
584 |
-
if ( '
|
585 |
-
require_once( 'lib/recaptchalib.php' );
|
586 |
-
$resp = recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] );
|
587 |
-
if ( ! $resp->is_valid ) {
|
588 |
-
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
589 |
-
} else
|
590 |
-
return;
|
591 |
-
} else {
|
592 |
require_once( 'lib_v2/recaptchalib.php' );
|
593 |
$reCaptcha = new ReCaptcha( $privatekey );
|
594 |
$resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $_POST["g-recaptcha-response"] );
|
595 |
if ( $resp != null && $resp->success )
|
596 |
return;
|
597 |
else
|
598 |
-
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
599 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
600 |
}
|
601 |
}
|
602 |
|
@@ -636,18 +670,11 @@ if ( ! function_exists( 'gglcptch_links' ) ) {
|
|
636 |
|
637 |
/* Check Google Captcha in shortcode and contact form */
|
638 |
if ( ! function_exists( 'gglcptch_captcha_check' ) ) {
|
639 |
-
function gglcptch_captcha_check() {
|
640 |
-
$gglcptch_options = get_option( 'gglcptch_options' );
|
641 |
$privatekey = $gglcptch_options['private_key'];
|
642 |
|
643 |
-
if ( '
|
644 |
-
require_once( 'lib/recaptchalib.php' );
|
645 |
-
$resp = recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] );
|
646 |
-
if ( ! $resp->is_valid )
|
647 |
-
echo "error";
|
648 |
-
else
|
649 |
-
echo "success";
|
650 |
-
} else {
|
651 |
require_once( 'lib_v2/recaptchalib.php' );
|
652 |
$reCaptcha = new ReCaptcha( $privatekey );
|
653 |
$resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $_POST["g-recaptcha-response"] );
|
@@ -655,7 +682,14 @@ if ( ! function_exists( 'gglcptch_captcha_check' ) ) {
|
|
655 |
echo "success";
|
656 |
else
|
657 |
echo "error";
|
658 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
659 |
die();
|
660 |
}
|
661 |
}
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin Google Captcha intended to prove that the visitor is a human being and not a spam robot.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 1.12
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv3 or later
|
10 |
*/
|
11 |
|
12 |
+
/* © Copyright 2015 BestWebSoft ( http://support.bestwebsoft.com )
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License, version 2, as
|
72 |
if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' ) )
|
73 |
require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' );
|
74 |
else
|
75 |
+
require_once( dirname( __FILE__ ) . '/bws_menu/bws_menu.php' );
|
76 |
+
$bstwbsftwppdtplgns_added_menu = true;
|
77 |
}
|
78 |
|
79 |
add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( "images/px.png", __FILE__ ), 1001 );
|
102 |
|
103 |
if ( ! function_exists( 'gglcptch_init' ) ) {
|
104 |
function gglcptch_init() {
|
105 |
+
global $gglcptch_options, $gglcptch_allow_url_fopen;
|
106 |
|
107 |
load_plugin_textdomain( 'google_captcha', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
108 |
|
112 |
/* Get options from the database */
|
113 |
$gglcptch_options = get_option( 'gglcptch_options' );
|
114 |
|
115 |
+
/* Get option from the php.ini */
|
116 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' )
|
117 |
+
$gglcptch_allow_url_fopen = ( ini_get( 'allow_url_fopen' ) != 1 ) ? false : true;
|
118 |
+
|
119 |
/* Add hooks */
|
120 |
if ( '1' == $gglcptch_options['login_form'] ) {
|
121 |
add_action( 'login_form', 'gglcptch_login_display' );
|
140 |
}
|
141 |
if ( '1' == $gglcptch_options['contact_form'] ) {
|
142 |
add_filter( 'cntctfrm_display_captcha', 'gglcptch_cf_display' );
|
143 |
+
add_filter( 'cntctfrmpr_display_captcha', 'gglcptch_cf_display' );
|
144 |
}
|
145 |
}
|
146 |
}
|
147 |
|
148 |
if ( ! function_exists( 'gglcptch_admin_init' ) ) {
|
149 |
function gglcptch_admin_init() {
|
150 |
+
global $bws_plugin_info, $gglcptch_plugin_info;
|
151 |
|
152 |
if ( ! $gglcptch_plugin_info )
|
153 |
$gglcptch_plugin_info = get_plugin_data( __FILE__, false );
|
218 |
/* Display settings page */
|
219 |
if ( ! function_exists( 'gglcptch_settings_page' ) ) {
|
220 |
function gglcptch_settings_page() {
|
221 |
+
global $gglcptch_options, $gglcptch_plugin_info, $wp_version, $gglcptch_allow_url_fopen;
|
222 |
|
223 |
/* Private and public keys */
|
224 |
$gglcptch_keys = array(
|
272 |
$gglcptch_options['reset_pwd_form'] = isset( $_POST['gglcptch_reset_pwd_form'] ) ? 1 : 0;
|
273 |
$gglcptch_options['comments_form'] = isset( $_POST['gglcptch_comments_form'] ) ? 1 : 0;
|
274 |
$gglcptch_options['contact_form'] = isset( $_POST['gglcptch_contact_form'] ) ? 1 : 0;
|
275 |
+
$gglcptch_options['recaptcha_version'] = $_POST['gglcptch_recaptcha_version'];
|
276 |
$gglcptch_options['theme'] = $_POST['gglcptch_theme'];
|
277 |
$gglcptch_options['theme_v2'] = $_POST['gglcptch_theme_v2'];
|
278 |
|
281 |
}
|
282 |
|
283 |
update_option( 'gglcptch_options', $gglcptch_options );
|
284 |
+
|
285 |
+
if ( ! $gglcptch_allow_url_fopen && $gglcptch_options['recaptcha_version'] == 'v2' )
|
286 |
+
$gglcptch_allow_url_fopen = ( ini_get( 'allow_url_fopen' ) != 1 ) ? false : true;
|
287 |
} ?>
|
288 |
<div class="wrap">
|
289 |
<h2><?php _e( 'Google Captcha Settings', 'google_captcha' ); ?></h2>
|
294 |
<div id="gglcptch_settings_notice" class="updated fade" style="display:none"><p><strong><?php _e( "Notice:", 'google_captcha' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'google_captcha' ); ?></p></div>
|
295 |
<div class="updated fade" <?php if ( ! isset( $_POST['gglcptch_save_changes'] ) || "" != $error ) echo 'style="display:none"'; ?>><p><strong><?php _e( 'Settings saved', 'google_captcha' ); ?></strong></p></div>
|
296 |
<div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
297 |
+
<?php if ( ! $gglcptch_allow_url_fopen && $gglcptch_options['recaptcha_version'] == 'v2' ) {
|
298 |
+
printf( '<div class="error"><p><strong>%s</strong> <a href="http://php.net/manual/en/filesystem.configuration.php" target="_blank">%s</a></p></div>',
|
299 |
+
__( 'Google Captcha version 2 will not work correctly, since the option "allow_url_fopen" is disabled in the PHP settings of your hosting.', 'google_captcha' ),
|
300 |
+
__( 'Read more.', 'google_captcha' )
|
301 |
+
);
|
302 |
+
} ?>
|
303 |
<p><?php _e( 'If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:', 'google_captcha' ); echo ' [bws_google_captcha]'; ?></p>
|
304 |
<form id="gglcptch_settings_form" method="post" action="admin.php?page=google-captcha.php">
|
305 |
<h3><?php _e( 'Authentication', 'google_captcha' ); ?></h3>
|
353 |
<label><input type="checkbox" name="<?php echo 'gglcptch_' . $role; ?>" value=<?php echo $role; if ( '1' == $gglcptch_options[ $role ] ) echo ' checked'; ?>> <?php echo $fields['name']; ?></label><br/>
|
354 |
<?php endforeach; ?>
|
355 |
</td>
|
356 |
+
</tr>
|
357 |
<tr valign="top">
|
358 |
<th scope="row"><?php _e( 'reCAPTCHA version:', 'google_captcha' ); ?></th>
|
359 |
<td>
|
360 |
+
<label><input type="radio" name="gglcptch_recaptcha_version" value="v1"<?php if ( 'v1' == $gglcptch_options['recaptcha_version'] ) echo ' checked="checked"'; ?>> <?php _e( 'version', 'google_captcha' ); ?> 1</label><br/>
|
361 |
<label><input type="radio" name="gglcptch_recaptcha_version" value="v2"<?php if ( 'v2' == $gglcptch_options['recaptcha_version'] ) echo ' checked="checked"'; ?>> <?php _e( 'version', 'google_captcha' ); ?> 2</label>
|
362 |
</td>
|
363 |
</tr>
|
383 |
<select name="gglcptch_theme_v2">
|
384 |
<option value="light" <?php if ( 'light' == $gglcptch_options['theme_v2'] ) echo ' selected'; ?>>light</option>
|
385 |
<option value="dark" <?php if ( 'dark' == $gglcptch_options['theme_v2'] ) echo ' selected'; ?>>dark</option>
|
386 |
+
</select>
|
387 |
</td>
|
388 |
</tr>
|
389 |
</table>
|
411 |
function gglcptch_check_role() {
|
412 |
global $current_user, $gglcptch_options;
|
413 |
if ( ! is_user_logged_in() )
|
414 |
+
return false;
|
415 |
if ( ! empty( $current_user->roles[0] ) ) {
|
416 |
$role = $current_user->roles[0];
|
417 |
if ( '1' == $gglcptch_options[ $role ] )
|
428 |
function gglcptch_display( $content = false ) {
|
429 |
if ( gglcptch_check_role() )
|
430 |
return;
|
431 |
+
global $gglcptch_options, $gglcptch_count, $gglcptch_allow_url_fopen;
|
432 |
if ( empty( $gglcptch_count ) ) {
|
433 |
$gglcptch_count = 1;
|
434 |
}
|
435 |
if ( $gglcptch_count > 1 ) {
|
436 |
return $content;
|
437 |
}
|
438 |
+
if ( ! $gglcptch_allow_url_fopen && isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' ) {
|
439 |
+
$content .= '<div class="gglcptch allow_url_fopen_off"></div>';
|
440 |
+
$gglcptch_count++;
|
441 |
+
return $content;
|
442 |
+
}
|
443 |
$publickey = $gglcptch_options['public_key'];
|
444 |
$privatekey = $gglcptch_options['private_key'];
|
445 |
$content .= '<div class="gglcptch">';
|
458 |
$gglcptch_count++;
|
459 |
return $content;
|
460 |
}
|
461 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
require_once( 'lib_v2/recaptchalib.php' );
|
463 |
$reCaptcha = new ReCaptcha( $privatekey );
|
464 |
$content .= '<style type="text/css" media="screen">
|
484 |
</div>
|
485 |
</div>
|
486 |
</noscript>';
|
487 |
+
} else {
|
488 |
+
require_once( 'lib/recaptchalib.php' );
|
489 |
+
$content .= sprintf(
|
490 |
+
'<style type="text/css" media="screen">
|
491 |
+
#recaptcha_response_field {
|
492 |
+
max-height: 35px;
|
493 |
+
}
|
494 |
+
#gglcptch_error {
|
495 |
+
color: #F00;
|
496 |
+
}
|
497 |
+
.gglcptch table#recaptcha_table {
|
498 |
+
table-layout: auto;
|
499 |
+
}
|
500 |
+
</style>
|
501 |
+
<script type="text/javascript">
|
502 |
+
var RecaptchaOptions = { theme : "%s" },
|
503 |
+
ajaxurl = "%s",
|
504 |
+
gglcptch_error_msg = "%s";
|
505 |
+
</script>',
|
506 |
+
$gglcptch_options['theme'],
|
507 |
+
admin_url( 'admin-ajax.php' ),
|
508 |
+
__( 'Error: You have entered an incorrect CAPTCHA value.', 'google_captcha' )
|
509 |
+
);
|
510 |
+
if ( is_ssl() )
|
511 |
+
$content .= recaptcha_get_html( $publickey, '', true );
|
512 |
+
else
|
513 |
+
$content .= recaptcha_get_html( $publickey );
|
514 |
}
|
515 |
$content .= '</div>';
|
516 |
$gglcptch_count++;
|
522 |
if ( ! function_exists( 'gglcptch_login_display' ) ) {
|
523 |
function gglcptch_login_display() {
|
524 |
global $gglcptch_options;
|
525 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
526 |
+
$from_width = 302;
|
527 |
+
} else {
|
528 |
+
$from_width = 320;
|
529 |
+
if ( 'clean' == $gglcptch_options['theme'] )
|
530 |
+
$from_width = 450;
|
531 |
+
} ?>
|
532 |
<style type="text/css" media="screen">
|
533 |
#loginform,
|
534 |
#lostpasswordform,
|
546 |
|
547 |
/* Check google captcha in login form */
|
548 |
if ( ! function_exists( 'gglcptch_login_check' ) ) {
|
549 |
+
function gglcptch_login_check( $redirect_to, $request, $user ) {
|
550 |
if ( isset( $_POST['wp-submit'] ) ) {
|
551 |
+
global $gglcptch_options, $gglcptch_allow_url_fopen;
|
552 |
+
|
553 |
+
if ( ! $gglcptch_allow_url_fopen && isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' ) {
|
554 |
+
return $redirect_to;
|
555 |
+
}
|
556 |
+
|
557 |
$publickey = $gglcptch_options['public_key'];
|
558 |
$privatekey = $gglcptch_options['private_key'];
|
559 |
|
560 |
if ( ! $privatekey || ! $publickey ) {
|
561 |
return $redirect_to;
|
562 |
}
|
563 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
require_once( 'lib_v2/recaptchalib.php' );
|
565 |
$reCaptcha = new ReCaptcha( $privatekey );
|
566 |
$resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $_POST["g-recaptcha-response"] );
|
571 |
wp_clear_auth_cookie();
|
572 |
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
573 |
}
|
574 |
+
} else {
|
575 |
+
require_once( 'lib/recaptchalib.php' );
|
576 |
+
$resp = recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] );
|
577 |
+
|
578 |
+
if ( ! $resp->is_valid ) {
|
579 |
+
wp_clear_auth_cookie();
|
580 |
+
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
581 |
+
} else {
|
582 |
+
return $redirect_to;
|
583 |
+
}
|
584 |
}
|
585 |
} else {
|
586 |
return $redirect_to;
|
601 |
/* Check google captcha in lostpassword form */
|
602 |
if ( ! function_exists( 'gglcptch_lostpassword_check' ) ) {
|
603 |
function gglcptch_lostpassword_check() {
|
604 |
+
global $gglcptch_options, $gglcptch_allow_url_fopen;
|
605 |
+
|
606 |
+
if ( ! $gglcptch_allow_url_fopen && isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' ) {
|
607 |
+
return;
|
608 |
+
}
|
609 |
+
|
610 |
$publickey = $gglcptch_options['public_key'];
|
611 |
$privatekey = $gglcptch_options['private_key'];
|
612 |
|
613 |
if ( ! $privatekey || ! $publickey )
|
614 |
return;
|
615 |
|
616 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
617 |
require_once( 'lib_v2/recaptchalib.php' );
|
618 |
$reCaptcha = new ReCaptcha( $privatekey );
|
619 |
$resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $_POST["g-recaptcha-response"] );
|
620 |
if ( $resp != null && $resp->success )
|
621 |
return;
|
622 |
else
|
623 |
+
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
624 |
+
} else {
|
625 |
+
require_once( 'lib/recaptchalib.php' );
|
626 |
+
$resp = recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] );
|
627 |
+
if ( ! $resp->is_valid ) {
|
628 |
+
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
629 |
+
} else
|
630 |
+
return;
|
631 |
+
|
632 |
+
|
633 |
+
}
|
634 |
}
|
635 |
}
|
636 |
|
670 |
|
671 |
/* Check Google Captcha in shortcode and contact form */
|
672 |
if ( ! function_exists( 'gglcptch_captcha_check' ) ) {
|
673 |
+
function gglcptch_captcha_check() {
|
674 |
+
$gglcptch_options = get_option( 'gglcptch_options' );
|
675 |
$privatekey = $gglcptch_options['private_key'];
|
676 |
|
677 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
678 |
require_once( 'lib_v2/recaptchalib.php' );
|
679 |
$reCaptcha = new ReCaptcha( $privatekey );
|
680 |
$resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $_POST["g-recaptcha-response"] );
|
682 |
echo "success";
|
683 |
else
|
684 |
echo "error";
|
685 |
+
} else {
|
686 |
+
require_once( 'lib/recaptchalib.php' );
|
687 |
+
$resp = recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] );
|
688 |
+
if ( ! $resp->is_valid )
|
689 |
+
echo "error";
|
690 |
+
else
|
691 |
+
echo "success";
|
692 |
+
}
|
693 |
die();
|
694 |
}
|
695 |
}
|
js/script.js
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
},
|
56 |
data : {
|
57 |
action: 'gglcptch_captcha_check',
|
58 |
-
'g-recaptcha-response' : $form.find( '
|
59 |
},
|
60 |
success : function( data ) {
|
61 |
if ( data == 'error' ) {
|
55 |
},
|
56 |
data : {
|
57 |
action: 'gglcptch_captcha_check',
|
58 |
+
'g-recaptcha-response' : $form.find( '.g-recaptcha-response' ).val()
|
59 |
},
|
60 |
success : function( data ) {
|
61 |
if ( data == 'error' ) {
|
languages/google_captcha-bg_BG.mo
ADDED
Binary file
|
languages/google_captcha-bg_BG.po
ADDED
@@ -0,0 +1,248 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: google_captcha\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-01-20 11:10+0300\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: Yasen Georgiev <me@ygeorgiev.com>\n"
|
9 |
+
"Language: ru_RU\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Generator: Poedit 1.6.6\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: google-captcha.php:80
|
20 |
+
#: google-captcha.php:289
|
21 |
+
msgid "Google Captcha Settings"
|
22 |
+
msgstr "Настройки на Google Captcha"
|
23 |
+
|
24 |
+
#: google-captcha.php:80
|
25 |
+
msgid "Google Captcha"
|
26 |
+
msgstr "Google Captcha"
|
27 |
+
|
28 |
+
#: google-captcha.php:97
|
29 |
+
msgid "requires"
|
30 |
+
msgstr "изисква"
|
31 |
+
|
32 |
+
#: google-captcha.php:97
|
33 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
34 |
+
msgstr "или по-висока. За това не беше деактивиран."
|
35 |
+
|
36 |
+
#: google-captcha.php:97
|
37 |
+
msgid "Back to the WordPress"
|
38 |
+
msgstr "Назад към WordPress"
|
39 |
+
|
40 |
+
#: google-captcha.php:97
|
41 |
+
msgid "Plugins page"
|
42 |
+
msgstr "Страница с плъгини"
|
43 |
+
|
44 |
+
#: google-captcha.php:226
|
45 |
+
msgid "Site key"
|
46 |
+
msgstr "Ключ"
|
47 |
+
|
48 |
+
#: google-captcha.php:231
|
49 |
+
msgid "Secret Key"
|
50 |
+
msgstr "Секретен ключ"
|
51 |
+
|
52 |
+
#: google-captcha.php:239
|
53 |
+
msgid "Login form"
|
54 |
+
msgstr "Форма за вход"
|
55 |
+
|
56 |
+
#: google-captcha.php:240
|
57 |
+
msgid "Registration form"
|
58 |
+
msgstr "Форма регистрация"
|
59 |
+
|
60 |
+
#: google-captcha.php:241
|
61 |
+
msgid "Reset password form"
|
62 |
+
msgstr "Форма за възстановяване на парола"
|
63 |
+
|
64 |
+
#: google-captcha.php:242
|
65 |
+
msgid "Comments form"
|
66 |
+
msgstr "Форма за коментиране"
|
67 |
+
|
68 |
+
#: google-captcha.php:257
|
69 |
+
msgid "Enter site key"
|
70 |
+
msgstr "Въведете ключ"
|
71 |
+
|
72 |
+
#: google-captcha.php:258
|
73 |
+
#: google-captcha.php:264
|
74 |
+
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
75 |
+
msgstr "ПРЕДУПРЕЖДЕНИЕ: Google Captcha няма да се покаже докато не въведете ключовите полета."
|
76 |
+
|
77 |
+
#: google-captcha.php:263
|
78 |
+
msgid "Enter secret key"
|
79 |
+
msgstr "Въведете секретен ключ"
|
80 |
+
|
81 |
+
#: google-captcha.php:291
|
82 |
+
#: google-captcha.php:652
|
83 |
+
#: google-captcha.php:663
|
84 |
+
msgid "Settings"
|
85 |
+
msgstr "Настройки"
|
86 |
+
|
87 |
+
#: google-captcha.php:292
|
88 |
+
#: google-captcha.php:664
|
89 |
+
msgid "FAQ"
|
90 |
+
msgstr "ЧЗВ"
|
91 |
+
|
92 |
+
#: google-captcha.php:294
|
93 |
+
msgid "Notice:"
|
94 |
+
msgstr "Внимание:"
|
95 |
+
|
96 |
+
#: google-captcha.php:294
|
97 |
+
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
98 |
+
msgstr "Настройките бяха успешно променени. В случай, че искате да ги запаметите, моля, не забравяйте да кликнете върху бутона \"Запази промените\"."
|
99 |
+
|
100 |
+
#: google-captcha.php:295
|
101 |
+
msgid "Settings saved"
|
102 |
+
msgstr "Настройките бяха запазени успешно."
|
103 |
+
|
104 |
+
#: google-captcha.php:299
|
105 |
+
msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: google-captcha.php:300
|
109 |
+
msgid "Read more."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: google-captcha.php:303
|
113 |
+
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
114 |
+
msgstr "Ако искате да добавите Google Captcha към Ваша собствена форма, проста копирайте и поставете този код на желаната публикация или страница:"
|
115 |
+
|
116 |
+
#: google-captcha.php:305
|
117 |
+
msgid "Authentication"
|
118 |
+
msgstr "Идентификация"
|
119 |
+
|
120 |
+
#: google-captcha.php:306
|
121 |
+
#, php-format
|
122 |
+
msgid "Before you are able to do something, you must to register %s here %s"
|
123 |
+
msgstr "Преди да можете да направите нещо, трябва да се %sрегистрирате%s."
|
124 |
+
|
125 |
+
#: google-captcha.php:307
|
126 |
+
msgid "Enter site key and secret key, that you get after registration."
|
127 |
+
msgstr "Въведете ключ и секретен ключ, който взимате след регистрация в Google Captcha."
|
128 |
+
|
129 |
+
#: google-captcha.php:319
|
130 |
+
msgid "Options"
|
131 |
+
msgstr "Опции"
|
132 |
+
|
133 |
+
#: google-captcha.php:322
|
134 |
+
msgid "Enable Google Captcha for:"
|
135 |
+
msgstr "Активирай Google Captcha за:"
|
136 |
+
|
137 |
+
#: google-captcha.php:337
|
138 |
+
#: google-captcha.php:340
|
139 |
+
#: google-captcha.php:344
|
140 |
+
msgid "Contact form"
|
141 |
+
msgstr "Contact form"
|
142 |
+
|
143 |
+
#: google-captcha.php:338
|
144 |
+
#: google-captcha.php:341
|
145 |
+
#: google-captcha.php:345
|
146 |
+
msgid "powered by"
|
147 |
+
msgstr "разработено от"
|
148 |
+
|
149 |
+
#: google-captcha.php:341
|
150 |
+
msgid "Activate contact form"
|
151 |
+
msgstr "Активирай Contact form"
|
152 |
+
|
153 |
+
#: google-captcha.php:345
|
154 |
+
msgid "Download contact form"
|
155 |
+
msgstr "Изтегли Contact form"
|
156 |
+
|
157 |
+
#: google-captcha.php:350
|
158 |
+
msgid "Hide captcha for:"
|
159 |
+
msgstr "Не показвай Google Captcha за:"
|
160 |
+
|
161 |
+
#: google-captcha.php:358
|
162 |
+
msgid "reCAPTCHA version:"
|
163 |
+
msgstr "Версия на reCAPTCHA:"
|
164 |
+
|
165 |
+
#: google-captcha.php:360
|
166 |
+
#: google-captcha.php:361
|
167 |
+
msgid "version"
|
168 |
+
msgstr "версия"
|
169 |
+
|
170 |
+
#: google-captcha.php:366
|
171 |
+
#: google-captcha.php:379
|
172 |
+
msgid "Theme:"
|
173 |
+
msgstr "Тема:"
|
174 |
+
|
175 |
+
#: google-captcha.php:367
|
176 |
+
#: google-captcha.php:380
|
177 |
+
msgid "for reCAPTCHA version"
|
178 |
+
msgstr "за reCAPTCHA версия"
|
179 |
+
|
180 |
+
#: google-captcha.php:391
|
181 |
+
msgid "Save Changes"
|
182 |
+
msgstr "Запази промените"
|
183 |
+
|
184 |
+
#: google-captcha.php:397
|
185 |
+
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
186 |
+
msgstr "Ако харесвате нашия плъгин, моля дайде му 5 звезди в WordPress"
|
187 |
+
|
188 |
+
#: google-captcha.php:398
|
189 |
+
msgid "Rate the plugin"
|
190 |
+
msgstr "Оцени"
|
191 |
+
|
192 |
+
#: google-captcha.php:401
|
193 |
+
msgid "If there is something wrong about it, please contact us"
|
194 |
+
msgstr "Ако има нещо нередно, моля, свържете се с нас."
|
195 |
+
|
196 |
+
#: google-captcha.php:450
|
197 |
+
msgid "To use Google Captcha you must get the keys from"
|
198 |
+
msgstr "За да използвате Google Captcha трябва да вземете ключовете от"
|
199 |
+
|
200 |
+
#: google-captcha.php:451
|
201 |
+
msgid "here"
|
202 |
+
msgstr "тук"
|
203 |
+
|
204 |
+
#: google-captcha.php:452
|
205 |
+
msgid "and enter them on the"
|
206 |
+
msgstr "и да ги въведете в"
|
207 |
+
|
208 |
+
#: google-captcha.php:454
|
209 |
+
msgid "plugin setting page"
|
210 |
+
msgstr "настройките на плъгина"
|
211 |
+
|
212 |
+
#: google-captcha.php:471
|
213 |
+
#: google-captcha.php:508
|
214 |
+
msgid "Error: You have entered an incorrect CAPTCHA value."
|
215 |
+
msgstr "Грешка: Въвели сте невалиден анти-спам код."
|
216 |
+
|
217 |
+
#: google-captcha.php:572
|
218 |
+
#: google-captcha.php:580
|
219 |
+
#: google-captcha.php:623
|
220 |
+
#: google-captcha.php:628
|
221 |
+
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
222 |
+
msgstr "Грешка: Въвели сте невалиден анти-спам код. Натиснете бутона НАЗАД в браузъра и опитайте отново."
|
223 |
+
|
224 |
+
#: google-captcha.php:665
|
225 |
+
msgid "Support"
|
226 |
+
msgstr "Поддръжка"
|
227 |
+
|
228 |
+
#~ msgid "Public Key"
|
229 |
+
#~ msgstr "Открытый ключ"
|
230 |
+
|
231 |
+
#~ msgid "Private Key"
|
232 |
+
#~ msgstr "Закрытый ключ"
|
233 |
+
|
234 |
+
#~ msgid "Enter public key"
|
235 |
+
#~ msgstr "Введите открытый ключ"
|
236 |
+
|
237 |
+
#, fuzzy
|
238 |
+
#~ msgid "Activated theme"
|
239 |
+
#~ msgstr "Активировать Contact form"
|
240 |
+
|
241 |
+
#, fuzzy
|
242 |
+
#~ msgid "Themes"
|
243 |
+
#~ msgstr "Тема:"
|
244 |
+
|
245 |
+
#~ msgid "WARNING: The captcha will not display while you not fill key fields."
|
246 |
+
#~ msgstr ""
|
247 |
+
#~ "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
|
248 |
+
#~ "ключевые поля."
|
languages/google_captcha-es_ES.mo
CHANGED
Binary file
|
languages/google_captcha-es_ES.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
|
9 |
"Language: es_419\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: google-captcha.php:80
|
21 |
-
#: google-captcha.php:
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Googe Captcha Ajustes"
|
24 |
|
@@ -42,182 +42,190 @@ msgstr "Volver a WordPress"
|
|
42 |
msgid "Plugins page"
|
43 |
msgstr "Página de Plugins"
|
44 |
|
45 |
-
#: google-captcha.php:
|
46 |
msgid "Site key"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: google-captcha.php:
|
50 |
msgid "Secret Key"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: google-captcha.php:
|
54 |
msgid "Login form"
|
55 |
msgstr "Formulario de acceso"
|
56 |
|
57 |
-
#: google-captcha.php:
|
58 |
msgid "Registration form"
|
59 |
msgstr "Formulario de registro"
|
60 |
|
61 |
-
#: google-captcha.php:
|
62 |
msgid "Reset password form"
|
63 |
msgstr "Formulario de restablecimiento de contraseña"
|
64 |
|
65 |
-
#: google-captcha.php:
|
66 |
msgid "Comments form"
|
67 |
msgstr "Formulario de comentarios"
|
68 |
|
69 |
-
#: google-captcha.php:
|
70 |
#, fuzzy
|
71 |
msgid "Enter site key"
|
72 |
msgstr "Introduce la clave privada"
|
73 |
|
74 |
-
#: google-captcha.php:
|
75 |
-
#: google-captcha.php:
|
76 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
77 |
msgstr "ADVERTENCIA: El Captcha no se mostrará mientras usted no llene los campos clave."
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
#, fuzzy
|
81 |
msgid "Enter secret key"
|
82 |
msgstr "Introduce la clave privada"
|
83 |
|
84 |
-
#: google-captcha.php:
|
85 |
-
#: google-captcha.php:
|
86 |
-
#: google-captcha.php:
|
87 |
msgid "Settings"
|
88 |
msgstr "Ajustes"
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "FAQ"
|
93 |
msgstr "Preguntas Frecuentes"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "Notice:"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Settings saved"
|
105 |
msgstr "Configuración guardada"
|
106 |
|
107 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
109 |
msgstr "Si quisiera añadir el Google Captcha para su formulario, simplemente copia y pega este código corto en tu post o página:"
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid "Authentication"
|
113 |
msgstr "Autentificación"
|
114 |
|
115 |
-
#: google-captcha.php:
|
116 |
#, php-format
|
117 |
msgid "Before you are able to do something, you must to register %s here %s"
|
118 |
msgstr "Antes de que pueda hacer algo, debe registrar %s aquí %s"
|
119 |
|
120 |
-
#: google-captcha.php:
|
121 |
#, fuzzy
|
122 |
msgid "Enter site key and secret key, that you get after registration."
|
123 |
msgstr "Introduzca las claves pública y privada, que se obtiene después de Registrarse."
|
124 |
|
125 |
-
#: google-captcha.php:
|
126 |
msgid "Options"
|
127 |
msgstr "Opciones"
|
128 |
|
129 |
-
#: google-captcha.php:
|
130 |
msgid "Enable Google Captcha for:"
|
131 |
msgstr "Habilitar Google Captcha para:"
|
132 |
|
133 |
-
#: google-captcha.php:
|
134 |
-
#: google-captcha.php:
|
135 |
-
#: google-captcha.php:
|
136 |
msgid "Contact form"
|
137 |
msgstr "Formulario de contacto"
|
138 |
|
139 |
-
#: google-captcha.php:
|
140 |
-
#: google-captcha.php:
|
141 |
-
#: google-captcha.php:
|
142 |
msgid "powered by"
|
143 |
msgstr "impulsado por"
|
144 |
|
145 |
-
#: google-captcha.php:
|
146 |
msgid "Activate contact form"
|
147 |
msgstr "Activar formulario de contacto"
|
148 |
|
149 |
-
#: google-captcha.php:
|
150 |
msgid "Download contact form"
|
151 |
msgstr "Descargar formulario de contacto"
|
152 |
|
153 |
-
#: google-captcha.php:
|
154 |
msgid "Hide captcha for:"
|
155 |
msgstr "Ocultar captcha para:"
|
156 |
|
157 |
-
#: google-captcha.php:
|
158 |
msgid "reCAPTCHA version:"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: google-captcha.php:
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "version"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: google-captcha.php:
|
167 |
-
#: google-captcha.php:
|
168 |
msgid "Theme:"
|
169 |
msgstr "Tema:"
|
170 |
|
171 |
-
#: google-captcha.php:
|
172 |
-
#: google-captcha.php:
|
173 |
msgid "for reCAPTCHA version"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: google-captcha.php:
|
177 |
msgid "Save Changes"
|
178 |
msgstr "Guardar Cambios"
|
179 |
|
180 |
-
#: google-captcha.php:
|
181 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
182 |
msgstr "Si te gusta nuestro plugin, por favor, dale 5 estrellas en WordPress"
|
183 |
|
184 |
-
#: google-captcha.php:
|
185 |
msgid "Rate the plugin"
|
186 |
msgstr "Valorar el plugin"
|
187 |
|
188 |
-
#: google-captcha.php:
|
189 |
msgid "If there is something wrong about it, please contact us"
|
190 |
msgstr "Si hay algo malo en ello, por favor ponte en contacto con nosotros"
|
191 |
|
192 |
-
#: google-captcha.php:
|
193 |
msgid "To use Google Captcha you must get the keys from"
|
194 |
msgstr "Para utilizar Google Captcha debe obtener las claves de"
|
195 |
|
196 |
-
#: google-captcha.php:
|
197 |
msgid "here"
|
198 |
msgstr "aquí"
|
199 |
|
200 |
-
#: google-captcha.php:
|
201 |
msgid "and enter them on the"
|
202 |
msgstr "e introducirlas en"
|
203 |
|
204 |
-
#: google-captcha.php:
|
205 |
msgid "plugin setting page"
|
206 |
msgstr "página de configuración de plugin"
|
207 |
|
208 |
-
#: google-captcha.php:
|
209 |
-
#: google-captcha.php:
|
210 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
211 |
msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
|
212 |
|
213 |
-
#: google-captcha.php:
|
214 |
-
#: google-captcha.php:
|
215 |
-
#: google-captcha.php:
|
216 |
-
#: google-captcha.php:
|
217 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
218 |
msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA. Haga clic en el botón Regresar de su navegador y vuelva a intentarlo."
|
219 |
|
220 |
-
#: google-captcha.php:
|
221 |
msgid "Support"
|
222 |
msgstr "Soporte"
|
223 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-01-19 16:57+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: BestWebSoft <support@bestwebsoft.com>\n"
|
8 |
"Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
|
9 |
"Language: es_419\n"
|
10 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: google-captcha.php:80
|
21 |
+
#: google-captcha.php:291
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Googe Captcha Ajustes"
|
24 |
|
42 |
msgid "Plugins page"
|
43 |
msgstr "Página de Plugins"
|
44 |
|
45 |
+
#: google-captcha.php:231
|
46 |
msgid "Site key"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: google-captcha.php:236
|
50 |
msgid "Secret Key"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: google-captcha.php:244
|
54 |
msgid "Login form"
|
55 |
msgstr "Formulario de acceso"
|
56 |
|
57 |
+
#: google-captcha.php:245
|
58 |
msgid "Registration form"
|
59 |
msgstr "Formulario de registro"
|
60 |
|
61 |
+
#: google-captcha.php:246
|
62 |
msgid "Reset password form"
|
63 |
msgstr "Formulario de restablecimiento de contraseña"
|
64 |
|
65 |
+
#: google-captcha.php:247
|
66 |
msgid "Comments form"
|
67 |
msgstr "Formulario de comentarios"
|
68 |
|
69 |
+
#: google-captcha.php:262
|
70 |
#, fuzzy
|
71 |
msgid "Enter site key"
|
72 |
msgstr "Introduce la clave privada"
|
73 |
|
74 |
+
#: google-captcha.php:263
|
75 |
+
#: google-captcha.php:269
|
76 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
77 |
msgstr "ADVERTENCIA: El Captcha no se mostrará mientras usted no llene los campos clave."
|
78 |
|
79 |
+
#: google-captcha.php:268
|
80 |
#, fuzzy
|
81 |
msgid "Enter secret key"
|
82 |
msgstr "Introduce la clave privada"
|
83 |
|
84 |
+
#: google-captcha.php:293
|
85 |
+
#: google-captcha.php:648
|
86 |
+
#: google-captcha.php:659
|
87 |
msgid "Settings"
|
88 |
msgstr "Ajustes"
|
89 |
|
90 |
+
#: google-captcha.php:294
|
91 |
+
#: google-captcha.php:660
|
92 |
msgid "FAQ"
|
93 |
msgstr "Preguntas Frecuentes"
|
94 |
|
95 |
+
#: google-captcha.php:296
|
96 |
msgid "Notice:"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: google-captcha.php:296
|
100 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: google-captcha.php:297
|
104 |
msgid "Settings saved"
|
105 |
msgstr "Configuración guardada"
|
106 |
|
107 |
+
#: google-captcha.php:301
|
108 |
+
msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: google-captcha.php:302
|
112 |
+
msgid "Read more."
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: google-captcha.php:305
|
116 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
117 |
msgstr "Si quisiera añadir el Google Captcha para su formulario, simplemente copia y pega este código corto en tu post o página:"
|
118 |
|
119 |
+
#: google-captcha.php:307
|
120 |
msgid "Authentication"
|
121 |
msgstr "Autentificación"
|
122 |
|
123 |
+
#: google-captcha.php:308
|
124 |
#, php-format
|
125 |
msgid "Before you are able to do something, you must to register %s here %s"
|
126 |
msgstr "Antes de que pueda hacer algo, debe registrar %s aquí %s"
|
127 |
|
128 |
+
#: google-captcha.php:309
|
129 |
#, fuzzy
|
130 |
msgid "Enter site key and secret key, that you get after registration."
|
131 |
msgstr "Introduzca las claves pública y privada, que se obtiene después de Registrarse."
|
132 |
|
133 |
+
#: google-captcha.php:321
|
134 |
msgid "Options"
|
135 |
msgstr "Opciones"
|
136 |
|
137 |
+
#: google-captcha.php:324
|
138 |
msgid "Enable Google Captcha for:"
|
139 |
msgstr "Habilitar Google Captcha para:"
|
140 |
|
141 |
+
#: google-captcha.php:339
|
142 |
+
#: google-captcha.php:342
|
143 |
+
#: google-captcha.php:346
|
144 |
msgid "Contact form"
|
145 |
msgstr "Formulario de contacto"
|
146 |
|
147 |
+
#: google-captcha.php:340
|
148 |
+
#: google-captcha.php:343
|
149 |
+
#: google-captcha.php:347
|
150 |
msgid "powered by"
|
151 |
msgstr "impulsado por"
|
152 |
|
153 |
+
#: google-captcha.php:343
|
154 |
msgid "Activate contact form"
|
155 |
msgstr "Activar formulario de contacto"
|
156 |
|
157 |
+
#: google-captcha.php:347
|
158 |
msgid "Download contact form"
|
159 |
msgstr "Descargar formulario de contacto"
|
160 |
|
161 |
+
#: google-captcha.php:352
|
162 |
msgid "Hide captcha for:"
|
163 |
msgstr "Ocultar captcha para:"
|
164 |
|
165 |
+
#: google-captcha.php:360
|
166 |
msgid "reCAPTCHA version:"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: google-captcha.php:362
|
170 |
+
#: google-captcha.php:363
|
171 |
msgid "version"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: google-captcha.php:368
|
175 |
+
#: google-captcha.php:381
|
176 |
msgid "Theme:"
|
177 |
msgstr "Tema:"
|
178 |
|
179 |
+
#: google-captcha.php:369
|
180 |
+
#: google-captcha.php:382
|
181 |
msgid "for reCAPTCHA version"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: google-captcha.php:393
|
185 |
msgid "Save Changes"
|
186 |
msgstr "Guardar Cambios"
|
187 |
|
188 |
+
#: google-captcha.php:399
|
189 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
190 |
msgstr "Si te gusta nuestro plugin, por favor, dale 5 estrellas en WordPress"
|
191 |
|
192 |
+
#: google-captcha.php:400
|
193 |
msgid "Rate the plugin"
|
194 |
msgstr "Valorar el plugin"
|
195 |
|
196 |
+
#: google-captcha.php:403
|
197 |
msgid "If there is something wrong about it, please contact us"
|
198 |
msgstr "Si hay algo malo en ello, por favor ponte en contacto con nosotros"
|
199 |
|
200 |
+
#: google-captcha.php:452
|
201 |
msgid "To use Google Captcha you must get the keys from"
|
202 |
msgstr "Para utilizar Google Captcha debe obtener las claves de"
|
203 |
|
204 |
+
#: google-captcha.php:453
|
205 |
msgid "here"
|
206 |
msgstr "aquí"
|
207 |
|
208 |
+
#: google-captcha.php:454
|
209 |
msgid "and enter them on the"
|
210 |
msgstr "e introducirlas en"
|
211 |
|
212 |
+
#: google-captcha.php:456
|
213 |
msgid "plugin setting page"
|
214 |
msgstr "página de configuración de plugin"
|
215 |
|
216 |
+
#: google-captcha.php:484
|
217 |
+
#: google-captcha.php:500
|
218 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
219 |
msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
|
220 |
|
221 |
+
#: google-captcha.php:567
|
222 |
+
#: google-captcha.php:580
|
223 |
+
#: google-captcha.php:618
|
224 |
+
#: google-captcha.php:628
|
225 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
226 |
msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA. Haga clic en el botón Regresar de su navegador y vuelva a intentarlo."
|
227 |
|
228 |
+
#: google-captcha.php:661
|
229 |
msgid "Support"
|
230 |
msgstr "Soporte"
|
231 |
|
languages/google_captcha-pl_PL.mo
CHANGED
Binary file
|
languages/google_captcha-pl_PL.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
9 |
"Language: pl_PL\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: google-captcha.php:80
|
21 |
-
#: google-captcha.php:
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Ustawienia Google Captcha"
|
24 |
|
@@ -42,182 +42,190 @@ msgstr "Wróć do WordPress"
|
|
42 |
msgid "Plugins page"
|
43 |
msgstr "Strona Wtyczki"
|
44 |
|
45 |
-
#: google-captcha.php:
|
46 |
msgid "Site key"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: google-captcha.php:
|
50 |
msgid "Secret Key"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: google-captcha.php:
|
54 |
msgid "Login form"
|
55 |
msgstr "Formularz logowania"
|
56 |
|
57 |
-
#: google-captcha.php:
|
58 |
msgid "Registration form"
|
59 |
msgstr "Formularz rejestracji"
|
60 |
|
61 |
-
#: google-captcha.php:
|
62 |
msgid "Reset password form"
|
63 |
msgstr "Formularz odzyskiwania hasła"
|
64 |
|
65 |
-
#: google-captcha.php:
|
66 |
msgid "Comments form"
|
67 |
msgstr "Formularz komentarza"
|
68 |
|
69 |
-
#: google-captcha.php:
|
70 |
#, fuzzy
|
71 |
msgid "Enter site key"
|
72 |
msgstr "Wprowadź klucz prywatny"
|
73 |
|
74 |
-
#: google-captcha.php:
|
75 |
-
#: google-captcha.php:
|
76 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
77 |
msgstr "OSTRZEŻENIE: Kod captcha nie będzie wyświetlany, jeżeli nie wprowadzisz kluczy."
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
#, fuzzy
|
81 |
msgid "Enter secret key"
|
82 |
msgstr "Wprowadź klucz prywatny"
|
83 |
|
84 |
-
#: google-captcha.php:
|
85 |
-
#: google-captcha.php:
|
86 |
-
#: google-captcha.php:
|
87 |
msgid "Settings"
|
88 |
msgstr "Ustawienia"
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "FAQ"
|
93 |
msgstr "FAQ"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "Notice:"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Settings saved"
|
105 |
msgstr "Ustawienia zapisane"
|
106 |
|
107 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
109 |
msgstr "Jeżeli chcesz umieścić wtyczkę Google Captcha we własnym formularzu, po prostu skopiuj i wklej ten kod w swoim poście lub na swojej stronie:"
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid "Authentication"
|
113 |
msgstr "Uwierzytelnianie"
|
114 |
|
115 |
-
#: google-captcha.php:
|
116 |
#, php-format
|
117 |
msgid "Before you are able to do something, you must to register %s here %s"
|
118 |
msgstr "Aby móc cokolwiek zrobić, musisz się zarejestrować %s tutaj %s"
|
119 |
|
120 |
-
#: google-captcha.php:
|
121 |
#, fuzzy
|
122 |
msgid "Enter site key and secret key, that you get after registration."
|
123 |
msgstr "Wprowadź swój klucz publiczny i prywatny, uzyskane po dokonaniu rejestracji."
|
124 |
|
125 |
-
#: google-captcha.php:
|
126 |
msgid "Options"
|
127 |
msgstr "Opcje"
|
128 |
|
129 |
-
#: google-captcha.php:
|
130 |
msgid "Enable Google Captcha for:"
|
131 |
msgstr "Włącz Google Captcha na stronach:"
|
132 |
|
133 |
-
#: google-captcha.php:
|
134 |
-
#: google-captcha.php:
|
135 |
-
#: google-captcha.php:
|
136 |
msgid "Contact form"
|
137 |
msgstr "Formularz kontaktowy"
|
138 |
|
139 |
-
#: google-captcha.php:
|
140 |
-
#: google-captcha.php:
|
141 |
-
#: google-captcha.php:
|
142 |
msgid "powered by"
|
143 |
msgstr "opracowany przez"
|
144 |
|
145 |
-
#: google-captcha.php:
|
146 |
msgid "Activate contact form"
|
147 |
msgstr "Włącz formularz kontaktowy"
|
148 |
|
149 |
-
#: google-captcha.php:
|
150 |
msgid "Download contact form"
|
151 |
msgstr "Pobierz formularz kontaktowy"
|
152 |
|
153 |
-
#: google-captcha.php:
|
154 |
msgid "Hide captcha for:"
|
155 |
msgstr "Ukryj kod captcha dla:"
|
156 |
|
157 |
-
#: google-captcha.php:
|
158 |
msgid "reCAPTCHA version:"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: google-captcha.php:
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "version"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: google-captcha.php:
|
167 |
-
#: google-captcha.php:
|
168 |
msgid "Theme:"
|
169 |
msgstr "Motyw:"
|
170 |
|
171 |
-
#: google-captcha.php:
|
172 |
-
#: google-captcha.php:
|
173 |
msgid "for reCAPTCHA version"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: google-captcha.php:
|
177 |
msgid "Save Changes"
|
178 |
msgstr "Zapisz zmiany"
|
179 |
|
180 |
-
#: google-captcha.php:
|
181 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
182 |
msgstr "Jeżeli podoba Ci się nasza wtyczka, oceń ją 5 gwiazdkami w witrynie WordPress"
|
183 |
|
184 |
-
#: google-captcha.php:
|
185 |
msgid "Rate the plugin"
|
186 |
msgstr "Oceń wtyczkę"
|
187 |
|
188 |
-
#: google-captcha.php:
|
189 |
msgid "If there is something wrong about it, please contact us"
|
190 |
msgstr "Jeżeli coś Ci się w niej nie podoba, skontaktuj się z nami"
|
191 |
|
192 |
-
#: google-captcha.php:
|
193 |
msgid "To use Google Captcha you must get the keys from"
|
194 |
msgstr "Aby korzystać z Google Captcha, musisz najpierw uzyskać klucze"
|
195 |
|
196 |
-
#: google-captcha.php:
|
197 |
msgid "here"
|
198 |
msgstr "stąd"
|
199 |
|
200 |
-
#: google-captcha.php:
|
201 |
msgid "and enter them on the"
|
202 |
msgstr "i wprowadzić je na"
|
203 |
|
204 |
-
#: google-captcha.php:
|
205 |
msgid "plugin setting page"
|
206 |
msgstr "stronie ustawień wtyczki"
|
207 |
|
208 |
-
#: google-captcha.php:
|
209 |
-
#: google-captcha.php:
|
210 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
211 |
msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
|
212 |
|
213 |
-
#: google-captcha.php:
|
214 |
-
#: google-captcha.php:
|
215 |
-
#: google-captcha.php:
|
216 |
-
#: google-captcha.php:
|
217 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
218 |
msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA. Kliknij przycisk WSTECZ na pasku przeglądarki i spróbuj ponownie."
|
219 |
|
220 |
-
#: google-captcha.php:
|
221 |
msgid "Support"
|
222 |
msgstr "Wsparcie"
|
223 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-01-19 16:58+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: BestWebSoft <support@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
9 |
"Language: pl_PL\n"
|
10 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: google-captcha.php:80
|
21 |
+
#: google-captcha.php:291
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Ustawienia Google Captcha"
|
24 |
|
42 |
msgid "Plugins page"
|
43 |
msgstr "Strona Wtyczki"
|
44 |
|
45 |
+
#: google-captcha.php:231
|
46 |
msgid "Site key"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: google-captcha.php:236
|
50 |
msgid "Secret Key"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: google-captcha.php:244
|
54 |
msgid "Login form"
|
55 |
msgstr "Formularz logowania"
|
56 |
|
57 |
+
#: google-captcha.php:245
|
58 |
msgid "Registration form"
|
59 |
msgstr "Formularz rejestracji"
|
60 |
|
61 |
+
#: google-captcha.php:246
|
62 |
msgid "Reset password form"
|
63 |
msgstr "Formularz odzyskiwania hasła"
|
64 |
|
65 |
+
#: google-captcha.php:247
|
66 |
msgid "Comments form"
|
67 |
msgstr "Formularz komentarza"
|
68 |
|
69 |
+
#: google-captcha.php:262
|
70 |
#, fuzzy
|
71 |
msgid "Enter site key"
|
72 |
msgstr "Wprowadź klucz prywatny"
|
73 |
|
74 |
+
#: google-captcha.php:263
|
75 |
+
#: google-captcha.php:269
|
76 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
77 |
msgstr "OSTRZEŻENIE: Kod captcha nie będzie wyświetlany, jeżeli nie wprowadzisz kluczy."
|
78 |
|
79 |
+
#: google-captcha.php:268
|
80 |
#, fuzzy
|
81 |
msgid "Enter secret key"
|
82 |
msgstr "Wprowadź klucz prywatny"
|
83 |
|
84 |
+
#: google-captcha.php:293
|
85 |
+
#: google-captcha.php:648
|
86 |
+
#: google-captcha.php:659
|
87 |
msgid "Settings"
|
88 |
msgstr "Ustawienia"
|
89 |
|
90 |
+
#: google-captcha.php:294
|
91 |
+
#: google-captcha.php:660
|
92 |
msgid "FAQ"
|
93 |
msgstr "FAQ"
|
94 |
|
95 |
+
#: google-captcha.php:296
|
96 |
msgid "Notice:"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: google-captcha.php:296
|
100 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: google-captcha.php:297
|
104 |
msgid "Settings saved"
|
105 |
msgstr "Ustawienia zapisane"
|
106 |
|
107 |
+
#: google-captcha.php:301
|
108 |
+
msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: google-captcha.php:302
|
112 |
+
msgid "Read more."
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: google-captcha.php:305
|
116 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
117 |
msgstr "Jeżeli chcesz umieścić wtyczkę Google Captcha we własnym formularzu, po prostu skopiuj i wklej ten kod w swoim poście lub na swojej stronie:"
|
118 |
|
119 |
+
#: google-captcha.php:307
|
120 |
msgid "Authentication"
|
121 |
msgstr "Uwierzytelnianie"
|
122 |
|
123 |
+
#: google-captcha.php:308
|
124 |
#, php-format
|
125 |
msgid "Before you are able to do something, you must to register %s here %s"
|
126 |
msgstr "Aby móc cokolwiek zrobić, musisz się zarejestrować %s tutaj %s"
|
127 |
|
128 |
+
#: google-captcha.php:309
|
129 |
#, fuzzy
|
130 |
msgid "Enter site key and secret key, that you get after registration."
|
131 |
msgstr "Wprowadź swój klucz publiczny i prywatny, uzyskane po dokonaniu rejestracji."
|
132 |
|
133 |
+
#: google-captcha.php:321
|
134 |
msgid "Options"
|
135 |
msgstr "Opcje"
|
136 |
|
137 |
+
#: google-captcha.php:324
|
138 |
msgid "Enable Google Captcha for:"
|
139 |
msgstr "Włącz Google Captcha na stronach:"
|
140 |
|
141 |
+
#: google-captcha.php:339
|
142 |
+
#: google-captcha.php:342
|
143 |
+
#: google-captcha.php:346
|
144 |
msgid "Contact form"
|
145 |
msgstr "Formularz kontaktowy"
|
146 |
|
147 |
+
#: google-captcha.php:340
|
148 |
+
#: google-captcha.php:343
|
149 |
+
#: google-captcha.php:347
|
150 |
msgid "powered by"
|
151 |
msgstr "opracowany przez"
|
152 |
|
153 |
+
#: google-captcha.php:343
|
154 |
msgid "Activate contact form"
|
155 |
msgstr "Włącz formularz kontaktowy"
|
156 |
|
157 |
+
#: google-captcha.php:347
|
158 |
msgid "Download contact form"
|
159 |
msgstr "Pobierz formularz kontaktowy"
|
160 |
|
161 |
+
#: google-captcha.php:352
|
162 |
msgid "Hide captcha for:"
|
163 |
msgstr "Ukryj kod captcha dla:"
|
164 |
|
165 |
+
#: google-captcha.php:360
|
166 |
msgid "reCAPTCHA version:"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: google-captcha.php:362
|
170 |
+
#: google-captcha.php:363
|
171 |
msgid "version"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: google-captcha.php:368
|
175 |
+
#: google-captcha.php:381
|
176 |
msgid "Theme:"
|
177 |
msgstr "Motyw:"
|
178 |
|
179 |
+
#: google-captcha.php:369
|
180 |
+
#: google-captcha.php:382
|
181 |
msgid "for reCAPTCHA version"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: google-captcha.php:393
|
185 |
msgid "Save Changes"
|
186 |
msgstr "Zapisz zmiany"
|
187 |
|
188 |
+
#: google-captcha.php:399
|
189 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
190 |
msgstr "Jeżeli podoba Ci się nasza wtyczka, oceń ją 5 gwiazdkami w witrynie WordPress"
|
191 |
|
192 |
+
#: google-captcha.php:400
|
193 |
msgid "Rate the plugin"
|
194 |
msgstr "Oceń wtyczkę"
|
195 |
|
196 |
+
#: google-captcha.php:403
|
197 |
msgid "If there is something wrong about it, please contact us"
|
198 |
msgstr "Jeżeli coś Ci się w niej nie podoba, skontaktuj się z nami"
|
199 |
|
200 |
+
#: google-captcha.php:452
|
201 |
msgid "To use Google Captcha you must get the keys from"
|
202 |
msgstr "Aby korzystać z Google Captcha, musisz najpierw uzyskać klucze"
|
203 |
|
204 |
+
#: google-captcha.php:453
|
205 |
msgid "here"
|
206 |
msgstr "stąd"
|
207 |
|
208 |
+
#: google-captcha.php:454
|
209 |
msgid "and enter them on the"
|
210 |
msgstr "i wprowadzić je na"
|
211 |
|
212 |
+
#: google-captcha.php:456
|
213 |
msgid "plugin setting page"
|
214 |
msgstr "stronie ustawień wtyczki"
|
215 |
|
216 |
+
#: google-captcha.php:484
|
217 |
+
#: google-captcha.php:500
|
218 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
219 |
msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
|
220 |
|
221 |
+
#: google-captcha.php:567
|
222 |
+
#: google-captcha.php:580
|
223 |
+
#: google-captcha.php:618
|
224 |
+
#: google-captcha.php:628
|
225 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
226 |
msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA. Kliknij przycisk WSTECZ na pasku przeglądarki i spróbuj ponownie."
|
227 |
|
228 |
+
#: google-captcha.php:661
|
229 |
msgid "Support"
|
230 |
msgstr "Wsparcie"
|
231 |
|
languages/google_captcha-pt_BR.mo
CHANGED
Binary file
|
languages/google_captcha-pt_BR.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Elton Peetz Prado <epeetz@gmail.com>\n"
|
9 |
"Language: pt_BR\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: google-captcha.php:80
|
21 |
-
#: google-captcha.php:
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Configurações Google Captcha"
|
24 |
|
@@ -42,185 +42,194 @@ msgstr "Voltar ao WordPress"
|
|
42 |
msgid "Plugins page"
|
43 |
msgstr "Página de plugins"
|
44 |
|
45 |
-
#: google-captcha.php:
|
46 |
#, fuzzy
|
47 |
msgid "Site key"
|
48 |
msgstr "URL do site"
|
49 |
|
50 |
-
#: google-captcha.php:
|
51 |
msgid "Secret Key"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: google-captcha.php:
|
55 |
msgid "Login form"
|
56 |
msgstr "Formulário de login"
|
57 |
|
58 |
-
#: google-captcha.php:
|
59 |
msgid "Registration form"
|
60 |
msgstr "Formulário de registro"
|
61 |
|
62 |
-
#: google-captcha.php:
|
63 |
msgid "Reset password form"
|
64 |
msgstr "Formulário de alterar senha"
|
65 |
|
66 |
-
#: google-captcha.php:
|
67 |
msgid "Comments form"
|
68 |
msgstr "Fomulário de comentários"
|
69 |
|
70 |
-
#: google-captcha.php:
|
71 |
#, fuzzy
|
72 |
msgid "Enter site key"
|
73 |
msgstr "Digite a chave privada"
|
74 |
|
75 |
-
#: google-captcha.php:
|
76 |
-
#: google-captcha.php:
|
77 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
78 |
msgstr "AVISO: O captcha não será exibido enquanto você não preencher os campos-chave."
|
79 |
|
80 |
-
#: google-captcha.php:
|
81 |
#, fuzzy
|
82 |
msgid "Enter secret key"
|
83 |
msgstr "Digite a chave privada"
|
84 |
|
85 |
-
#: google-captcha.php:
|
86 |
-
#: google-captcha.php:
|
87 |
-
#: google-captcha.php:
|
88 |
msgid "Settings"
|
89 |
msgstr "Configurações"
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
-
#: google-captcha.php:
|
93 |
msgid "FAQ"
|
94 |
msgstr "FAQ"
|
95 |
|
96 |
-
#: google-captcha.php:
|
97 |
msgid "Notice:"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: google-captcha.php:
|
101 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: google-captcha.php:
|
105 |
msgid "Settings saved"
|
106 |
msgstr "Configurações salvas"
|
107 |
|
108 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
110 |
msgstr "Se você quiser adicionar o Google Captcha para seu próprio formulário, basta copiar e colar este shortcode para o seu post ou página:"
|
111 |
|
112 |
-
#: google-captcha.php:
|
113 |
msgid "Authentication"
|
114 |
msgstr "Autenticação"
|
115 |
|
116 |
-
#: google-captcha.php:
|
117 |
#, php-format
|
118 |
msgid "Before you are able to do something, you must to register %s here %s"
|
119 |
msgstr "Antes de você fazer alguma coisa, deve se registrar %s aqui %s"
|
120 |
|
121 |
-
#: google-captcha.php:
|
122 |
#, fuzzy
|
123 |
msgid "Enter site key and secret key, that you get after registration."
|
124 |
msgstr "Digite as chaves públicas e privadas, que você recebe após o registro."
|
125 |
|
126 |
-
#: google-captcha.php:
|
127 |
msgid "Options"
|
128 |
msgstr "Opções"
|
129 |
|
130 |
-
#: google-captcha.php:
|
131 |
msgid "Enable Google Captcha for:"
|
132 |
msgstr "Ativar Google Captcha para:"
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
-
#: google-captcha.php:
|
136 |
-
#: google-captcha.php:
|
137 |
msgid "Contact form"
|
138 |
msgstr "Formulário de contato"
|
139 |
|
140 |
-
#: google-captcha.php:
|
141 |
-
#: google-captcha.php:
|
142 |
-
#: google-captcha.php:
|
143 |
msgid "powered by"
|
144 |
msgstr "distribuído por"
|
145 |
|
146 |
-
#: google-captcha.php:
|
147 |
msgid "Activate contact form"
|
148 |
msgstr "Ativar formulário de contato"
|
149 |
|
150 |
-
#: google-captcha.php:
|
151 |
msgid "Download contact form"
|
152 |
msgstr "Baixar formulário de contato"
|
153 |
|
154 |
-
#: google-captcha.php:
|
155 |
msgid "Hide captcha for:"
|
156 |
msgstr "Esconder captcha para:"
|
157 |
|
158 |
-
#: google-captcha.php:
|
159 |
#, fuzzy
|
160 |
msgid "reCAPTCHA version:"
|
161 |
msgstr "Versão do PHP"
|
162 |
|
163 |
-
#: google-captcha.php:
|
164 |
-
#: google-captcha.php:
|
165 |
#, fuzzy
|
166 |
msgid "version"
|
167 |
msgstr "Versão do PHP"
|
168 |
|
169 |
-
#: google-captcha.php:
|
170 |
-
#: google-captcha.php:
|
171 |
msgid "Theme:"
|
172 |
msgstr "Tema:"
|
173 |
|
174 |
-
#: google-captcha.php:
|
175 |
-
#: google-captcha.php:
|
176 |
msgid "for reCAPTCHA version"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: google-captcha.php:
|
180 |
msgid "Save Changes"
|
181 |
msgstr "Salvar alterações"
|
182 |
|
183 |
-
#: google-captcha.php:
|
184 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
185 |
msgstr "Se você gostar de nosso plugin, por favor, dê-lhe 5 estrelas em WordPress"
|
186 |
|
187 |
-
#: google-captcha.php:
|
188 |
msgid "Rate the plugin"
|
189 |
msgstr "Classifique o plugin"
|
190 |
|
191 |
-
#: google-captcha.php:
|
192 |
msgid "If there is something wrong about it, please contact us"
|
193 |
msgstr "Se há algo de errado com isso, por favor, entre em contato conosco"
|
194 |
|
195 |
-
#: google-captcha.php:
|
196 |
msgid "To use Google Captcha you must get the keys from"
|
197 |
msgstr "Para usar o Google Captcha é necessário obter as chaves de"
|
198 |
|
199 |
-
#: google-captcha.php:
|
200 |
msgid "here"
|
201 |
msgstr "aqui"
|
202 |
|
203 |
-
#: google-captcha.php:
|
204 |
msgid "and enter them on the"
|
205 |
msgstr "e inserí-los no"
|
206 |
|
207 |
-
#: google-captcha.php:
|
208 |
msgid "plugin setting page"
|
209 |
msgstr "página de configuração do plugin"
|
210 |
|
211 |
-
#: google-captcha.php:
|
212 |
-
#: google-captcha.php:
|
213 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
214 |
msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
|
215 |
|
216 |
-
#: google-captcha.php:
|
217 |
-
#: google-captcha.php:
|
218 |
-
#: google-captcha.php:
|
219 |
-
#: google-captcha.php:
|
220 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
221 |
msgstr "Erro: Você digitou um CAPTCHA com valor incorreto. Clique no botão Voltar do seu navegador e tente novamente."
|
222 |
|
223 |
-
#: google-captcha.php:
|
224 |
msgid "Support"
|
225 |
msgstr "Suporte"
|
226 |
|
@@ -344,9 +353,6 @@ msgstr "Suporte"
|
|
344 |
#~ msgid "Installed plugins"
|
345 |
#~ msgstr "Plugins instalados"
|
346 |
|
347 |
-
#~ msgid "Learn more"
|
348 |
-
#~ msgstr "Saber mais"
|
349 |
-
|
350 |
#~ msgid "Go"
|
351 |
#~ msgstr "Ir"
|
352 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-01-19 16:58+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: BestWebSoft <support@bestwebsoft.com>\n"
|
8 |
"Language-Team: Elton Peetz Prado <epeetz@gmail.com>\n"
|
9 |
"Language: pt_BR\n"
|
10 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: google-captcha.php:80
|
21 |
+
#: google-captcha.php:291
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Configurações Google Captcha"
|
24 |
|
42 |
msgid "Plugins page"
|
43 |
msgstr "Página de plugins"
|
44 |
|
45 |
+
#: google-captcha.php:231
|
46 |
#, fuzzy
|
47 |
msgid "Site key"
|
48 |
msgstr "URL do site"
|
49 |
|
50 |
+
#: google-captcha.php:236
|
51 |
msgid "Secret Key"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: google-captcha.php:244
|
55 |
msgid "Login form"
|
56 |
msgstr "Formulário de login"
|
57 |
|
58 |
+
#: google-captcha.php:245
|
59 |
msgid "Registration form"
|
60 |
msgstr "Formulário de registro"
|
61 |
|
62 |
+
#: google-captcha.php:246
|
63 |
msgid "Reset password form"
|
64 |
msgstr "Formulário de alterar senha"
|
65 |
|
66 |
+
#: google-captcha.php:247
|
67 |
msgid "Comments form"
|
68 |
msgstr "Fomulário de comentários"
|
69 |
|
70 |
+
#: google-captcha.php:262
|
71 |
#, fuzzy
|
72 |
msgid "Enter site key"
|
73 |
msgstr "Digite a chave privada"
|
74 |
|
75 |
+
#: google-captcha.php:263
|
76 |
+
#: google-captcha.php:269
|
77 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
78 |
msgstr "AVISO: O captcha não será exibido enquanto você não preencher os campos-chave."
|
79 |
|
80 |
+
#: google-captcha.php:268
|
81 |
#, fuzzy
|
82 |
msgid "Enter secret key"
|
83 |
msgstr "Digite a chave privada"
|
84 |
|
85 |
+
#: google-captcha.php:293
|
86 |
+
#: google-captcha.php:648
|
87 |
+
#: google-captcha.php:659
|
88 |
msgid "Settings"
|
89 |
msgstr "Configurações"
|
90 |
|
91 |
+
#: google-captcha.php:294
|
92 |
+
#: google-captcha.php:660
|
93 |
msgid "FAQ"
|
94 |
msgstr "FAQ"
|
95 |
|
96 |
+
#: google-captcha.php:296
|
97 |
msgid "Notice:"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: google-captcha.php:296
|
101 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: google-captcha.php:297
|
105 |
msgid "Settings saved"
|
106 |
msgstr "Configurações salvas"
|
107 |
|
108 |
+
#: google-captcha.php:301
|
109 |
+
msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: google-captcha.php:302
|
113 |
+
#, fuzzy
|
114 |
+
msgid "Read more."
|
115 |
+
msgstr "Saber mais"
|
116 |
+
|
117 |
+
#: google-captcha.php:305
|
118 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
119 |
msgstr "Se você quiser adicionar o Google Captcha para seu próprio formulário, basta copiar e colar este shortcode para o seu post ou página:"
|
120 |
|
121 |
+
#: google-captcha.php:307
|
122 |
msgid "Authentication"
|
123 |
msgstr "Autenticação"
|
124 |
|
125 |
+
#: google-captcha.php:308
|
126 |
#, php-format
|
127 |
msgid "Before you are able to do something, you must to register %s here %s"
|
128 |
msgstr "Antes de você fazer alguma coisa, deve se registrar %s aqui %s"
|
129 |
|
130 |
+
#: google-captcha.php:309
|
131 |
#, fuzzy
|
132 |
msgid "Enter site key and secret key, that you get after registration."
|
133 |
msgstr "Digite as chaves públicas e privadas, que você recebe após o registro."
|
134 |
|
135 |
+
#: google-captcha.php:321
|
136 |
msgid "Options"
|
137 |
msgstr "Opções"
|
138 |
|
139 |
+
#: google-captcha.php:324
|
140 |
msgid "Enable Google Captcha for:"
|
141 |
msgstr "Ativar Google Captcha para:"
|
142 |
|
143 |
+
#: google-captcha.php:339
|
144 |
+
#: google-captcha.php:342
|
145 |
+
#: google-captcha.php:346
|
146 |
msgid "Contact form"
|
147 |
msgstr "Formulário de contato"
|
148 |
|
149 |
+
#: google-captcha.php:340
|
150 |
+
#: google-captcha.php:343
|
151 |
+
#: google-captcha.php:347
|
152 |
msgid "powered by"
|
153 |
msgstr "distribuído por"
|
154 |
|
155 |
+
#: google-captcha.php:343
|
156 |
msgid "Activate contact form"
|
157 |
msgstr "Ativar formulário de contato"
|
158 |
|
159 |
+
#: google-captcha.php:347
|
160 |
msgid "Download contact form"
|
161 |
msgstr "Baixar formulário de contato"
|
162 |
|
163 |
+
#: google-captcha.php:352
|
164 |
msgid "Hide captcha for:"
|
165 |
msgstr "Esconder captcha para:"
|
166 |
|
167 |
+
#: google-captcha.php:360
|
168 |
#, fuzzy
|
169 |
msgid "reCAPTCHA version:"
|
170 |
msgstr "Versão do PHP"
|
171 |
|
172 |
+
#: google-captcha.php:362
|
173 |
+
#: google-captcha.php:363
|
174 |
#, fuzzy
|
175 |
msgid "version"
|
176 |
msgstr "Versão do PHP"
|
177 |
|
178 |
+
#: google-captcha.php:368
|
179 |
+
#: google-captcha.php:381
|
180 |
msgid "Theme:"
|
181 |
msgstr "Tema:"
|
182 |
|
183 |
+
#: google-captcha.php:369
|
184 |
+
#: google-captcha.php:382
|
185 |
msgid "for reCAPTCHA version"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: google-captcha.php:393
|
189 |
msgid "Save Changes"
|
190 |
msgstr "Salvar alterações"
|
191 |
|
192 |
+
#: google-captcha.php:399
|
193 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
194 |
msgstr "Se você gostar de nosso plugin, por favor, dê-lhe 5 estrelas em WordPress"
|
195 |
|
196 |
+
#: google-captcha.php:400
|
197 |
msgid "Rate the plugin"
|
198 |
msgstr "Classifique o plugin"
|
199 |
|
200 |
+
#: google-captcha.php:403
|
201 |
msgid "If there is something wrong about it, please contact us"
|
202 |
msgstr "Se há algo de errado com isso, por favor, entre em contato conosco"
|
203 |
|
204 |
+
#: google-captcha.php:452
|
205 |
msgid "To use Google Captcha you must get the keys from"
|
206 |
msgstr "Para usar o Google Captcha é necessário obter as chaves de"
|
207 |
|
208 |
+
#: google-captcha.php:453
|
209 |
msgid "here"
|
210 |
msgstr "aqui"
|
211 |
|
212 |
+
#: google-captcha.php:454
|
213 |
msgid "and enter them on the"
|
214 |
msgstr "e inserí-los no"
|
215 |
|
216 |
+
#: google-captcha.php:456
|
217 |
msgid "plugin setting page"
|
218 |
msgstr "página de configuração do plugin"
|
219 |
|
220 |
+
#: google-captcha.php:484
|
221 |
+
#: google-captcha.php:500
|
222 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
223 |
msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
|
224 |
|
225 |
+
#: google-captcha.php:567
|
226 |
+
#: google-captcha.php:580
|
227 |
+
#: google-captcha.php:618
|
228 |
+
#: google-captcha.php:628
|
229 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
230 |
msgstr "Erro: Você digitou um CAPTCHA com valor incorreto. Clique no botão Voltar do seu navegador e tente novamente."
|
231 |
|
232 |
+
#: google-captcha.php:661
|
233 |
msgid "Support"
|
234 |
msgstr "Suporte"
|
235 |
|
353 |
#~ msgid "Installed plugins"
|
354 |
#~ msgstr "Plugins instalados"
|
355 |
|
|
|
|
|
|
|
356 |
#~ msgid "Go"
|
357 |
#~ msgstr "Ir"
|
358 |
|
languages/google_captcha-ru_RU.mo
CHANGED
Binary file
|
languages/google_captcha-ru_RU.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: google-captcha.php:80
|
20 |
-
#: google-captcha.php:
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Настройки Google Captcha"
|
23 |
|
@@ -41,179 +41,187 @@ msgstr "Вернуться назад на WordPress"
|
|
41 |
msgid "Plugins page"
|
42 |
msgstr "Страницу плагинов"
|
43 |
|
44 |
-
#: google-captcha.php:
|
45 |
msgid "Site key"
|
46 |
msgstr "Ключ"
|
47 |
|
48 |
-
#: google-captcha.php:
|
49 |
msgid "Secret Key"
|
50 |
msgstr "Секретный ключ"
|
51 |
|
52 |
-
#: google-captcha.php:
|
53 |
msgid "Login form"
|
54 |
msgstr "Форма логина"
|
55 |
|
56 |
-
#: google-captcha.php:
|
57 |
msgid "Registration form"
|
58 |
msgstr "Форма регистрации"
|
59 |
|
60 |
-
#: google-captcha.php:
|
61 |
msgid "Reset password form"
|
62 |
msgstr "Форма восстановления пароля"
|
63 |
|
64 |
-
#: google-captcha.php:
|
65 |
msgid "Comments form"
|
66 |
msgstr "Форма комментариев"
|
67 |
|
68 |
-
#: google-captcha.php:
|
69 |
msgid "Enter site key"
|
70 |
msgstr "Введите ключ"
|
71 |
|
72 |
-
#: google-captcha.php:
|
73 |
-
#: google-captcha.php:
|
74 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
75 |
msgstr "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните ключевые поля."
|
76 |
|
77 |
-
#: google-captcha.php:
|
78 |
msgid "Enter secret key"
|
79 |
msgstr "Введите секретный ключ"
|
80 |
|
81 |
-
#: google-captcha.php:
|
82 |
-
#: google-captcha.php:
|
83 |
-
#: google-captcha.php:
|
84 |
msgid "Settings"
|
85 |
msgstr "Настройки"
|
86 |
|
87 |
-
#: google-captcha.php:
|
88 |
-
#: google-captcha.php:
|
89 |
msgid "FAQ"
|
90 |
msgstr "FAQ"
|
91 |
|
92 |
-
#: google-captcha.php:
|
93 |
msgid "Notice:"
|
94 |
msgstr "Обратите внимание:"
|
95 |
|
96 |
-
#: google-captcha.php:
|
97 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
98 |
msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку 'Сохранить изменения'."
|
99 |
|
100 |
-
#: google-captcha.php:
|
101 |
msgid "Settings saved"
|
102 |
msgstr "Настройки сохранены"
|
103 |
|
104 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
106 |
msgstr "Если вы хотите добавить Google Captcha в свою форму, просто скопируйте и вставьте в контент страницы или поста этот шорткод:"
|
107 |
|
108 |
-
#: google-captcha.php:
|
109 |
msgid "Authentication"
|
110 |
msgstr "Идентификация"
|
111 |
|
112 |
-
#: google-captcha.php:
|
113 |
#, php-format
|
114 |
msgid "Before you are able to do something, you must to register %s here %s"
|
115 |
msgstr "Прежде чем вы сможете сделать что-нибудь, вы должны зарегистрироваться %s здесь %s"
|
116 |
|
117 |
-
#: google-captcha.php:
|
118 |
msgid "Enter site key and secret key, that you get after registration."
|
119 |
msgstr "Введите ключ и секретный ключ, которые вы получили после регистрации."
|
120 |
|
121 |
-
#: google-captcha.php:
|
122 |
msgid "Options"
|
123 |
msgstr "Опции"
|
124 |
|
125 |
-
#: google-captcha.php:
|
126 |
msgid "Enable Google Captcha for:"
|
127 |
msgstr "Отображать Google Captcha для:"
|
128 |
|
129 |
-
#: google-captcha.php:
|
130 |
-
#: google-captcha.php:
|
131 |
-
#: google-captcha.php:
|
132 |
msgid "Contact form"
|
133 |
msgstr "Contact form"
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
-
#: google-captcha.php:
|
137 |
-
#: google-captcha.php:
|
138 |
msgid "powered by"
|
139 |
msgstr "разработано компанией"
|
140 |
|
141 |
-
#: google-captcha.php:
|
142 |
msgid "Activate contact form"
|
143 |
msgstr "Активировать Contact form"
|
144 |
|
145 |
-
#: google-captcha.php:
|
146 |
msgid "Download contact form"
|
147 |
msgstr "Скачать Contact form"
|
148 |
|
149 |
-
#: google-captcha.php:
|
150 |
msgid "Hide captcha for:"
|
151 |
msgstr "Не показывать Google Captcha для:"
|
152 |
|
153 |
-
#: google-captcha.php:
|
154 |
msgid "reCAPTCHA version:"
|
155 |
msgstr "Версия reCAPTCHA:"
|
156 |
|
157 |
-
#: google-captcha.php:
|
158 |
-
#: google-captcha.php:
|
159 |
msgid "version"
|
160 |
msgstr "версия"
|
161 |
|
162 |
-
#: google-captcha.php:
|
163 |
-
#: google-captcha.php:
|
164 |
msgid "Theme:"
|
165 |
msgstr "Тема:"
|
166 |
|
167 |
-
#: google-captcha.php:
|
168 |
-
#: google-captcha.php:
|
169 |
msgid "for reCAPTCHA version"
|
170 |
msgstr "для reCAPTCHA версии"
|
171 |
|
172 |
-
#: google-captcha.php:
|
173 |
msgid "Save Changes"
|
174 |
msgstr "Сохранить изменения"
|
175 |
|
176 |
-
#: google-captcha.php:
|
177 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
178 |
msgstr "Если вам понравился плагин, пожалуйста, поставте нам 5 звезд на WordPress"
|
179 |
|
180 |
-
#: google-captcha.php:
|
181 |
msgid "Rate the plugin"
|
182 |
msgstr "Оценить плагин"
|
183 |
|
184 |
-
#: google-captcha.php:
|
185 |
msgid "If there is something wrong about it, please contact us"
|
186 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
187 |
|
188 |
-
#: google-captcha.php:
|
189 |
msgid "To use Google Captcha you must get the keys from"
|
190 |
msgstr "Чтобы использовать Google Captcha вам необходимо получить ключи"
|
191 |
|
192 |
-
#: google-captcha.php:
|
193 |
msgid "here"
|
194 |
msgstr "здесь"
|
195 |
|
196 |
-
#: google-captcha.php:
|
197 |
msgid "and enter them on the"
|
198 |
msgstr "и вставить их на"
|
199 |
|
200 |
-
#: google-captcha.php:
|
201 |
msgid "plugin setting page"
|
202 |
msgstr "страницу настроек плагина"
|
203 |
|
204 |
-
#: google-captcha.php:
|
205 |
-
#: google-captcha.php:
|
206 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
207 |
msgstr "Ошибка: Вы ввели неверное значение Captcha."
|
208 |
|
209 |
-
#: google-captcha.php:
|
210 |
-
#: google-captcha.php:
|
211 |
-
#: google-captcha.php:
|
212 |
-
#: google-captcha.php:
|
213 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
214 |
msgstr "Ошибка: Вы ввели неверное значение Captcha. Нажмите копку НАЗАД в своем браузере и попытайтесь еще."
|
215 |
|
216 |
-
#: google-captcha.php:
|
217 |
msgid "Support"
|
218 |
msgstr "Поддержка"
|
219 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-01-19 16:31+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: BestWebSoft <support@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: google-captcha.php:80
|
20 |
+
#: google-captcha.php:291
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Настройки Google Captcha"
|
23 |
|
41 |
msgid "Plugins page"
|
42 |
msgstr "Страницу плагинов"
|
43 |
|
44 |
+
#: google-captcha.php:231
|
45 |
msgid "Site key"
|
46 |
msgstr "Ключ"
|
47 |
|
48 |
+
#: google-captcha.php:236
|
49 |
msgid "Secret Key"
|
50 |
msgstr "Секретный ключ"
|
51 |
|
52 |
+
#: google-captcha.php:244
|
53 |
msgid "Login form"
|
54 |
msgstr "Форма логина"
|
55 |
|
56 |
+
#: google-captcha.php:245
|
57 |
msgid "Registration form"
|
58 |
msgstr "Форма регистрации"
|
59 |
|
60 |
+
#: google-captcha.php:246
|
61 |
msgid "Reset password form"
|
62 |
msgstr "Форма восстановления пароля"
|
63 |
|
64 |
+
#: google-captcha.php:247
|
65 |
msgid "Comments form"
|
66 |
msgstr "Форма комментариев"
|
67 |
|
68 |
+
#: google-captcha.php:262
|
69 |
msgid "Enter site key"
|
70 |
msgstr "Введите ключ"
|
71 |
|
72 |
+
#: google-captcha.php:263
|
73 |
+
#: google-captcha.php:269
|
74 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
75 |
msgstr "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните ключевые поля."
|
76 |
|
77 |
+
#: google-captcha.php:268
|
78 |
msgid "Enter secret key"
|
79 |
msgstr "Введите секретный ключ"
|
80 |
|
81 |
+
#: google-captcha.php:293
|
82 |
+
#: google-captcha.php:648
|
83 |
+
#: google-captcha.php:659
|
84 |
msgid "Settings"
|
85 |
msgstr "Настройки"
|
86 |
|
87 |
+
#: google-captcha.php:294
|
88 |
+
#: google-captcha.php:660
|
89 |
msgid "FAQ"
|
90 |
msgstr "FAQ"
|
91 |
|
92 |
+
#: google-captcha.php:296
|
93 |
msgid "Notice:"
|
94 |
msgstr "Обратите внимание:"
|
95 |
|
96 |
+
#: google-captcha.php:296
|
97 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
98 |
msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку 'Сохранить изменения'."
|
99 |
|
100 |
+
#: google-captcha.php:297
|
101 |
msgid "Settings saved"
|
102 |
msgstr "Настройки сохранены"
|
103 |
|
104 |
+
#: google-captcha.php:301
|
105 |
+
msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
106 |
+
msgstr "Google Captcha версии 2 не будет работать корректно, потому что отключена опция \"allow_url_fopen\" в настройках PHP вашего хостинга."
|
107 |
+
|
108 |
+
#: google-captcha.php:302
|
109 |
+
msgid "Read more."
|
110 |
+
msgstr "Подробнее."
|
111 |
+
|
112 |
+
#: google-captcha.php:305
|
113 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
114 |
msgstr "Если вы хотите добавить Google Captcha в свою форму, просто скопируйте и вставьте в контент страницы или поста этот шорткод:"
|
115 |
|
116 |
+
#: google-captcha.php:307
|
117 |
msgid "Authentication"
|
118 |
msgstr "Идентификация"
|
119 |
|
120 |
+
#: google-captcha.php:308
|
121 |
#, php-format
|
122 |
msgid "Before you are able to do something, you must to register %s here %s"
|
123 |
msgstr "Прежде чем вы сможете сделать что-нибудь, вы должны зарегистрироваться %s здесь %s"
|
124 |
|
125 |
+
#: google-captcha.php:309
|
126 |
msgid "Enter site key and secret key, that you get after registration."
|
127 |
msgstr "Введите ключ и секретный ключ, которые вы получили после регистрации."
|
128 |
|
129 |
+
#: google-captcha.php:321
|
130 |
msgid "Options"
|
131 |
msgstr "Опции"
|
132 |
|
133 |
+
#: google-captcha.php:324
|
134 |
msgid "Enable Google Captcha for:"
|
135 |
msgstr "Отображать Google Captcha для:"
|
136 |
|
137 |
+
#: google-captcha.php:339
|
138 |
+
#: google-captcha.php:342
|
139 |
+
#: google-captcha.php:346
|
140 |
msgid "Contact form"
|
141 |
msgstr "Contact form"
|
142 |
|
143 |
+
#: google-captcha.php:340
|
144 |
+
#: google-captcha.php:343
|
145 |
+
#: google-captcha.php:347
|
146 |
msgid "powered by"
|
147 |
msgstr "разработано компанией"
|
148 |
|
149 |
+
#: google-captcha.php:343
|
150 |
msgid "Activate contact form"
|
151 |
msgstr "Активировать Contact form"
|
152 |
|
153 |
+
#: google-captcha.php:347
|
154 |
msgid "Download contact form"
|
155 |
msgstr "Скачать Contact form"
|
156 |
|
157 |
+
#: google-captcha.php:352
|
158 |
msgid "Hide captcha for:"
|
159 |
msgstr "Не показывать Google Captcha для:"
|
160 |
|
161 |
+
#: google-captcha.php:360
|
162 |
msgid "reCAPTCHA version:"
|
163 |
msgstr "Версия reCAPTCHA:"
|
164 |
|
165 |
+
#: google-captcha.php:362
|
166 |
+
#: google-captcha.php:363
|
167 |
msgid "version"
|
168 |
msgstr "версия"
|
169 |
|
170 |
+
#: google-captcha.php:368
|
171 |
+
#: google-captcha.php:381
|
172 |
msgid "Theme:"
|
173 |
msgstr "Тема:"
|
174 |
|
175 |
+
#: google-captcha.php:369
|
176 |
+
#: google-captcha.php:382
|
177 |
msgid "for reCAPTCHA version"
|
178 |
msgstr "для reCAPTCHA версии"
|
179 |
|
180 |
+
#: google-captcha.php:393
|
181 |
msgid "Save Changes"
|
182 |
msgstr "Сохранить изменения"
|
183 |
|
184 |
+
#: google-captcha.php:399
|
185 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
186 |
msgstr "Если вам понравился плагин, пожалуйста, поставте нам 5 звезд на WordPress"
|
187 |
|
188 |
+
#: google-captcha.php:400
|
189 |
msgid "Rate the plugin"
|
190 |
msgstr "Оценить плагин"
|
191 |
|
192 |
+
#: google-captcha.php:403
|
193 |
msgid "If there is something wrong about it, please contact us"
|
194 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
195 |
|
196 |
+
#: google-captcha.php:452
|
197 |
msgid "To use Google Captcha you must get the keys from"
|
198 |
msgstr "Чтобы использовать Google Captcha вам необходимо получить ключи"
|
199 |
|
200 |
+
#: google-captcha.php:453
|
201 |
msgid "here"
|
202 |
msgstr "здесь"
|
203 |
|
204 |
+
#: google-captcha.php:454
|
205 |
msgid "and enter them on the"
|
206 |
msgstr "и вставить их на"
|
207 |
|
208 |
+
#: google-captcha.php:456
|
209 |
msgid "plugin setting page"
|
210 |
msgstr "страницу настроек плагина"
|
211 |
|
212 |
+
#: google-captcha.php:484
|
213 |
+
#: google-captcha.php:500
|
214 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
215 |
msgstr "Ошибка: Вы ввели неверное значение Captcha."
|
216 |
|
217 |
+
#: google-captcha.php:567
|
218 |
+
#: google-captcha.php:580
|
219 |
+
#: google-captcha.php:618
|
220 |
+
#: google-captcha.php:628
|
221 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
222 |
msgstr "Ошибка: Вы ввели неверное значение Captcha. Нажмите копку НАЗАД в своем браузере и попытайтесь еще."
|
223 |
|
224 |
+
#: google-captcha.php:661
|
225 |
msgid "Support"
|
226 |
msgstr "Поддержка"
|
227 |
|
languages/google_captcha-uk.mo
CHANGED
Binary file
|
languages/google_captcha-uk.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
9 |
"Language: uk\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: google-captcha.php:80
|
20 |
-
#: google-captcha.php:
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Налаштування Google Captcha"
|
23 |
|
@@ -41,182 +41,190 @@ msgstr "Повернутися на WordPress"
|
|
41 |
msgid "Plugins page"
|
42 |
msgstr "Сторінка плагінів"
|
43 |
|
44 |
-
#: google-captcha.php:
|
45 |
msgid "Site key"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: google-captcha.php:
|
49 |
msgid "Secret Key"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: google-captcha.php:
|
53 |
msgid "Login form"
|
54 |
msgstr "Форма логіну"
|
55 |
|
56 |
-
#: google-captcha.php:
|
57 |
msgid "Registration form"
|
58 |
msgstr "Форма реєстрації"
|
59 |
|
60 |
-
#: google-captcha.php:
|
61 |
msgid "Reset password form"
|
62 |
msgstr "Форма відновлення паролю"
|
63 |
|
64 |
-
#: google-captcha.php:
|
65 |
msgid "Comments form"
|
66 |
msgstr "Форма коментарів"
|
67 |
|
68 |
-
#: google-captcha.php:
|
69 |
#, fuzzy
|
70 |
msgid "Enter site key"
|
71 |
msgstr "Введіть закритий ключ"
|
72 |
|
73 |
-
#: google-captcha.php:
|
74 |
-
#: google-captcha.php:
|
75 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
76 |
msgstr "УВАГА: Капча не буде відображатись поки ви не заповнете необхідні поля."
|
77 |
|
78 |
-
#: google-captcha.php:
|
79 |
#, fuzzy
|
80 |
msgid "Enter secret key"
|
81 |
msgstr "Введіть закритий ключ"
|
82 |
|
83 |
-
#: google-captcha.php:
|
84 |
-
#: google-captcha.php:
|
85 |
-
#: google-captcha.php:
|
86 |
msgid "Settings"
|
87 |
msgstr "Налаштування"
|
88 |
|
89 |
-
#: google-captcha.php:
|
90 |
-
#: google-captcha.php:
|
91 |
msgid "FAQ"
|
92 |
msgstr "FAQ"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "Notice:"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "Settings saved"
|
104 |
msgstr "Налаштування збережено"
|
105 |
|
106 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
108 |
msgstr "Якщо ви хочете додати Google Captcha в свою форму, просто вставте цей шорткод в контент сторінки чи посту"
|
109 |
|
110 |
-
#: google-captcha.php:
|
111 |
msgid "Authentication"
|
112 |
msgstr "Ідентифікація"
|
113 |
|
114 |
-
#: google-captcha.php:
|
115 |
#, php-format
|
116 |
msgid "Before you are able to do something, you must to register %s here %s"
|
117 |
msgstr "Щоб виконувати якісь дії, спершу ви повинні зареєструватись %s тут %s"
|
118 |
|
119 |
-
#: google-captcha.php:
|
120 |
#, fuzzy
|
121 |
msgid "Enter site key and secret key, that you get after registration."
|
122 |
msgstr "Введіть відкритий і закритий ключі, які ви отримали після реєстрації."
|
123 |
|
124 |
-
#: google-captcha.php:
|
125 |
msgid "Options"
|
126 |
msgstr "Опції"
|
127 |
|
128 |
-
#: google-captcha.php:
|
129 |
msgid "Enable Google Captcha for:"
|
130 |
msgstr "Відображати Google Captcha для:"
|
131 |
|
132 |
-
#: google-captcha.php:
|
133 |
-
#: google-captcha.php:
|
134 |
-
#: google-captcha.php:
|
135 |
msgid "Contact form"
|
136 |
msgstr "Контактна форма"
|
137 |
|
138 |
-
#: google-captcha.php:
|
139 |
-
#: google-captcha.php:
|
140 |
-
#: google-captcha.php:
|
141 |
msgid "powered by"
|
142 |
msgstr "розроблено компанією"
|
143 |
|
144 |
-
#: google-captcha.php:
|
145 |
msgid "Activate contact form"
|
146 |
msgstr "Активувати Контактну форму"
|
147 |
|
148 |
-
#: google-captcha.php:
|
149 |
msgid "Download contact form"
|
150 |
msgstr "Завантажити Контактну форму"
|
151 |
|
152 |
-
#: google-captcha.php:
|
153 |
msgid "Hide captcha for:"
|
154 |
msgstr "Не відображати Google Captcha для:"
|
155 |
|
156 |
-
#: google-captcha.php:
|
157 |
msgid "reCAPTCHA version:"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: google-captcha.php:
|
161 |
-
#: google-captcha.php:
|
162 |
msgid "version"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: google-captcha.php:
|
166 |
-
#: google-captcha.php:
|
167 |
msgid "Theme:"
|
168 |
msgstr "Тема:"
|
169 |
|
170 |
-
#: google-captcha.php:
|
171 |
-
#: google-captcha.php:
|
172 |
msgid "for reCAPTCHA version"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: google-captcha.php:
|
176 |
msgid "Save Changes"
|
177 |
msgstr "Зберегти зміни"
|
178 |
|
179 |
-
#: google-captcha.php:
|
180 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
181 |
msgstr "Якщо вам подобається наш плагін, будь ласка, поставте нам 5 зірочок на WordPress"
|
182 |
|
183 |
-
#: google-captcha.php:
|
184 |
msgid "Rate the plugin"
|
185 |
msgstr "Оцініть плагін"
|
186 |
|
187 |
-
#: google-captcha.php:
|
188 |
msgid "If there is something wrong about it, please contact us"
|
189 |
msgstr "Якщо у вас виникли проблеми, будь ласка, повідомте нам"
|
190 |
|
191 |
-
#: google-captcha.php:
|
192 |
msgid "To use Google Captcha you must get the keys from"
|
193 |
msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
|
194 |
|
195 |
-
#: google-captcha.php:
|
196 |
msgid "here"
|
197 |
msgstr "тут"
|
198 |
|
199 |
-
#: google-captcha.php:
|
200 |
msgid "and enter them on the"
|
201 |
msgstr "і вставити їх у"
|
202 |
|
203 |
-
#: google-captcha.php:
|
204 |
msgid "plugin setting page"
|
205 |
msgstr "сторінка налаштувань плагіну"
|
206 |
|
207 |
-
#: google-captcha.php:
|
208 |
-
#: google-captcha.php:
|
209 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
210 |
msgstr "Помилка: Ви ввели невірне значення Captcha."
|
211 |
|
212 |
-
#: google-captcha.php:
|
213 |
-
#: google-captcha.php:
|
214 |
-
#: google-captcha.php:
|
215 |
-
#: google-captcha.php:
|
216 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
217 |
msgstr "Помилка: Ви ввели невірне значення Captcha. Клікніть НАЗАД у своєму браузері та спробуйте ще раз."
|
218 |
|
219 |
-
#: google-captcha.php:
|
220 |
msgid "Support"
|
221 |
msgstr "Підтримка"
|
222 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-01-19 16:59+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: BestWebSoft <support@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
9 |
"Language: uk\n"
|
10 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: google-captcha.php:80
|
20 |
+
#: google-captcha.php:291
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Налаштування Google Captcha"
|
23 |
|
41 |
msgid "Plugins page"
|
42 |
msgstr "Сторінка плагінів"
|
43 |
|
44 |
+
#: google-captcha.php:231
|
45 |
msgid "Site key"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: google-captcha.php:236
|
49 |
msgid "Secret Key"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: google-captcha.php:244
|
53 |
msgid "Login form"
|
54 |
msgstr "Форма логіну"
|
55 |
|
56 |
+
#: google-captcha.php:245
|
57 |
msgid "Registration form"
|
58 |
msgstr "Форма реєстрації"
|
59 |
|
60 |
+
#: google-captcha.php:246
|
61 |
msgid "Reset password form"
|
62 |
msgstr "Форма відновлення паролю"
|
63 |
|
64 |
+
#: google-captcha.php:247
|
65 |
msgid "Comments form"
|
66 |
msgstr "Форма коментарів"
|
67 |
|
68 |
+
#: google-captcha.php:262
|
69 |
#, fuzzy
|
70 |
msgid "Enter site key"
|
71 |
msgstr "Введіть закритий ключ"
|
72 |
|
73 |
+
#: google-captcha.php:263
|
74 |
+
#: google-captcha.php:269
|
75 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
76 |
msgstr "УВАГА: Капча не буде відображатись поки ви не заповнете необхідні поля."
|
77 |
|
78 |
+
#: google-captcha.php:268
|
79 |
#, fuzzy
|
80 |
msgid "Enter secret key"
|
81 |
msgstr "Введіть закритий ключ"
|
82 |
|
83 |
+
#: google-captcha.php:293
|
84 |
+
#: google-captcha.php:648
|
85 |
+
#: google-captcha.php:659
|
86 |
msgid "Settings"
|
87 |
msgstr "Налаштування"
|
88 |
|
89 |
+
#: google-captcha.php:294
|
90 |
+
#: google-captcha.php:660
|
91 |
msgid "FAQ"
|
92 |
msgstr "FAQ"
|
93 |
|
94 |
+
#: google-captcha.php:296
|
95 |
msgid "Notice:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: google-captcha.php:296
|
99 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: google-captcha.php:297
|
103 |
msgid "Settings saved"
|
104 |
msgstr "Налаштування збережено"
|
105 |
|
106 |
+
#: google-captcha.php:301
|
107 |
+
msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: google-captcha.php:302
|
111 |
+
msgid "Read more."
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: google-captcha.php:305
|
115 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
116 |
msgstr "Якщо ви хочете додати Google Captcha в свою форму, просто вставте цей шорткод в контент сторінки чи посту"
|
117 |
|
118 |
+
#: google-captcha.php:307
|
119 |
msgid "Authentication"
|
120 |
msgstr "Ідентифікація"
|
121 |
|
122 |
+
#: google-captcha.php:308
|
123 |
#, php-format
|
124 |
msgid "Before you are able to do something, you must to register %s here %s"
|
125 |
msgstr "Щоб виконувати якісь дії, спершу ви повинні зареєструватись %s тут %s"
|
126 |
|
127 |
+
#: google-captcha.php:309
|
128 |
#, fuzzy
|
129 |
msgid "Enter site key and secret key, that you get after registration."
|
130 |
msgstr "Введіть відкритий і закритий ключі, які ви отримали після реєстрації."
|
131 |
|
132 |
+
#: google-captcha.php:321
|
133 |
msgid "Options"
|
134 |
msgstr "Опції"
|
135 |
|
136 |
+
#: google-captcha.php:324
|
137 |
msgid "Enable Google Captcha for:"
|
138 |
msgstr "Відображати Google Captcha для:"
|
139 |
|
140 |
+
#: google-captcha.php:339
|
141 |
+
#: google-captcha.php:342
|
142 |
+
#: google-captcha.php:346
|
143 |
msgid "Contact form"
|
144 |
msgstr "Контактна форма"
|
145 |
|
146 |
+
#: google-captcha.php:340
|
147 |
+
#: google-captcha.php:343
|
148 |
+
#: google-captcha.php:347
|
149 |
msgid "powered by"
|
150 |
msgstr "розроблено компанією"
|
151 |
|
152 |
+
#: google-captcha.php:343
|
153 |
msgid "Activate contact form"
|
154 |
msgstr "Активувати Контактну форму"
|
155 |
|
156 |
+
#: google-captcha.php:347
|
157 |
msgid "Download contact form"
|
158 |
msgstr "Завантажити Контактну форму"
|
159 |
|
160 |
+
#: google-captcha.php:352
|
161 |
msgid "Hide captcha for:"
|
162 |
msgstr "Не відображати Google Captcha для:"
|
163 |
|
164 |
+
#: google-captcha.php:360
|
165 |
msgid "reCAPTCHA version:"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: google-captcha.php:362
|
169 |
+
#: google-captcha.php:363
|
170 |
msgid "version"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: google-captcha.php:368
|
174 |
+
#: google-captcha.php:381
|
175 |
msgid "Theme:"
|
176 |
msgstr "Тема:"
|
177 |
|
178 |
+
#: google-captcha.php:369
|
179 |
+
#: google-captcha.php:382
|
180 |
msgid "for reCAPTCHA version"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: google-captcha.php:393
|
184 |
msgid "Save Changes"
|
185 |
msgstr "Зберегти зміни"
|
186 |
|
187 |
+
#: google-captcha.php:399
|
188 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
189 |
msgstr "Якщо вам подобається наш плагін, будь ласка, поставте нам 5 зірочок на WordPress"
|
190 |
|
191 |
+
#: google-captcha.php:400
|
192 |
msgid "Rate the plugin"
|
193 |
msgstr "Оцініть плагін"
|
194 |
|
195 |
+
#: google-captcha.php:403
|
196 |
msgid "If there is something wrong about it, please contact us"
|
197 |
msgstr "Якщо у вас виникли проблеми, будь ласка, повідомте нам"
|
198 |
|
199 |
+
#: google-captcha.php:452
|
200 |
msgid "To use Google Captcha you must get the keys from"
|
201 |
msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
|
202 |
|
203 |
+
#: google-captcha.php:453
|
204 |
msgid "here"
|
205 |
msgstr "тут"
|
206 |
|
207 |
+
#: google-captcha.php:454
|
208 |
msgid "and enter them on the"
|
209 |
msgstr "і вставити їх у"
|
210 |
|
211 |
+
#: google-captcha.php:456
|
212 |
msgid "plugin setting page"
|
213 |
msgstr "сторінка налаштувань плагіну"
|
214 |
|
215 |
+
#: google-captcha.php:484
|
216 |
+
#: google-captcha.php:500
|
217 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
218 |
msgstr "Помилка: Ви ввели невірне значення Captcha."
|
219 |
|
220 |
+
#: google-captcha.php:567
|
221 |
+
#: google-captcha.php:580
|
222 |
+
#: google-captcha.php:618
|
223 |
+
#: google-captcha.php:628
|
224 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
225 |
msgstr "Помилка: Ви ввели невірне значення Captcha. Клікніть НАЗАД у своєму браузері та спробуйте ще раз."
|
226 |
|
227 |
+
#: google-captcha.php:661
|
228 |
msgid "Support"
|
229 |
msgstr "Підтримка"
|
230 |
|
languages/google_captcha-zh_TW.mo
CHANGED
Binary file
|
languages/google_captcha-zh_TW.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Nick Lai <nick20080808@gmail.com>\n"
|
9 |
"Language: zh_TW\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: google-captcha.php:80
|
21 |
-
#: google-captcha.php:
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "reCAPTCHA 驗證碼設置"
|
24 |
|
@@ -42,182 +42,190 @@ msgstr "回到WordPress"
|
|
42 |
msgid "Plugins page"
|
43 |
msgstr "外掛頁面"
|
44 |
|
45 |
-
#: google-captcha.php:
|
46 |
msgid "Site key"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: google-captcha.php:
|
50 |
msgid "Secret Key"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: google-captcha.php:
|
54 |
msgid "Login form"
|
55 |
msgstr "登入頁"
|
56 |
|
57 |
-
#: google-captcha.php:
|
58 |
msgid "Registration form"
|
59 |
msgstr "用戶註冊頁"
|
60 |
|
61 |
-
#: google-captcha.php:
|
62 |
msgid "Reset password form"
|
63 |
msgstr "重設密碼頁"
|
64 |
|
65 |
-
#: google-captcha.php:
|
66 |
msgid "Comments form"
|
67 |
msgstr "發表迴響框"
|
68 |
|
69 |
-
#: google-captcha.php:
|
70 |
#, fuzzy
|
71 |
msgid "Enter site key"
|
72 |
msgstr "輸入私有密鑰"
|
73 |
|
74 |
-
#: google-captcha.php:
|
75 |
-
#: google-captcha.php:
|
76 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
77 |
msgstr "警告:如果你不填寫此欄,驗證碼將不會顯示。"
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
#, fuzzy
|
81 |
msgid "Enter secret key"
|
82 |
msgstr "輸入私有密鑰"
|
83 |
|
84 |
-
#: google-captcha.php:
|
85 |
-
#: google-captcha.php:
|
86 |
-
#: google-captcha.php:
|
87 |
msgid "Settings"
|
88 |
msgstr "設定"
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "FAQ"
|
93 |
msgstr "常見問題"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "Notice:"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Settings saved"
|
105 |
msgstr "設定已儲存"
|
106 |
|
107 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
109 |
msgstr "如果您想在自己的表格中加入reCAPTCHA驗證碼,只需貼上此代號到您的文章或頁面:"
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid "Authentication"
|
113 |
msgstr "身份驗證"
|
114 |
|
115 |
-
#: google-captcha.php:
|
116 |
#, php-format
|
117 |
msgid "Before you are able to do something, you must to register %s here %s"
|
118 |
msgstr "在開始使用本外掛之先,請到%s這裡%s註冊。"
|
119 |
|
120 |
-
#: google-captcha.php:
|
121 |
#, fuzzy
|
122 |
msgid "Enter site key and secret key, that you get after registration."
|
123 |
msgstr "然後複製公開金鑰(Public Key)和私有密鑰(Private Key)到到以下方框。"
|
124 |
|
125 |
-
#: google-captcha.php:
|
126 |
msgid "Options"
|
127 |
msgstr "選項"
|
128 |
|
129 |
-
#: google-captcha.php:
|
130 |
msgid "Enable Google Captcha for:"
|
131 |
msgstr "在下列畫面及表格使用reCAPTCHA:"
|
132 |
|
133 |
-
#: google-captcha.php:
|
134 |
-
#: google-captcha.php:
|
135 |
-
#: google-captcha.php:
|
136 |
msgid "Contact form"
|
137 |
msgstr "聯絡表格"
|
138 |
|
139 |
-
#: google-captcha.php:
|
140 |
-
#: google-captcha.php:
|
141 |
-
#: google-captcha.php:
|
142 |
msgid "powered by"
|
143 |
msgstr "服務提供者:"
|
144 |
|
145 |
-
#: google-captcha.php:
|
146 |
msgid "Activate contact form"
|
147 |
msgstr "啟用聯絡表格"
|
148 |
|
149 |
-
#: google-captcha.php:
|
150 |
msgid "Download contact form"
|
151 |
msgstr "下載聯絡表格"
|
152 |
|
153 |
-
#: google-captcha.php:
|
154 |
msgid "Hide captcha for:"
|
155 |
msgstr "為下列用戶隱藏驗證碼:"
|
156 |
|
157 |
-
#: google-captcha.php:
|
158 |
msgid "reCAPTCHA version:"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: google-captcha.php:
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "version"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: google-captcha.php:
|
167 |
-
#: google-captcha.php:
|
168 |
msgid "Theme:"
|
169 |
msgstr "風格:"
|
170 |
|
171 |
-
#: google-captcha.php:
|
172 |
-
#: google-captcha.php:
|
173 |
msgid "for reCAPTCHA version"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: google-captcha.php:
|
177 |
msgid "Save Changes"
|
178 |
msgstr "儲存變更"
|
179 |
|
180 |
-
#: google-captcha.php:
|
181 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
182 |
msgstr "如果你喜歡本外掛,請到WordPress給它五星評級!"
|
183 |
|
184 |
-
#: google-captcha.php:
|
185 |
msgid "Rate the plugin"
|
186 |
msgstr "為外掛評分"
|
187 |
|
188 |
-
#: google-captcha.php:
|
189 |
msgid "If there is something wrong about it, please contact us"
|
190 |
msgstr "如果對本外掛出現任何錯誤,歡迎與我們聯絡"
|
191 |
|
192 |
-
#: google-captcha.php:
|
193 |
msgid "To use Google Captcha you must get the keys from"
|
194 |
msgstr "如要用reCAPTCHA驗證碼,你必須輸入兩組金鑰。您可以在這裡領取:"
|
195 |
|
196 |
-
#: google-captcha.php:
|
197 |
msgid "here"
|
198 |
msgstr "點我"
|
199 |
|
200 |
-
#: google-captcha.php:
|
201 |
msgid "and enter them on the"
|
202 |
msgstr "然後將他們輸入到"
|
203 |
|
204 |
-
#: google-captcha.php:
|
205 |
msgid "plugin setting page"
|
206 |
msgstr "外掛設置頁"
|
207 |
|
208 |
-
#: google-captcha.php:
|
209 |
-
#: google-captcha.php:
|
210 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
211 |
msgstr "錯誤:您輸入的驗證碼不正確。"
|
212 |
|
213 |
-
#: google-captcha.php:
|
214 |
-
#: google-captcha.php:
|
215 |
-
#: google-captcha.php:
|
216 |
-
#: google-captcha.php:
|
217 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
218 |
msgstr "錯誤:您輸入的驗證碼不正確。請回到上一頁,然後重新輸入。"
|
219 |
|
220 |
-
#: google-captcha.php:
|
221 |
msgid "Support"
|
222 |
msgstr "支援"
|
223 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google_captcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-01-19 16:59+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: BestWebSoft <support@bestwebsoft.com>\n"
|
8 |
"Language-Team: Nick Lai <nick20080808@gmail.com>\n"
|
9 |
"Language: zh_TW\n"
|
10 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: google-captcha.php:80
|
21 |
+
#: google-captcha.php:291
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "reCAPTCHA 驗證碼設置"
|
24 |
|
42 |
msgid "Plugins page"
|
43 |
msgstr "外掛頁面"
|
44 |
|
45 |
+
#: google-captcha.php:231
|
46 |
msgid "Site key"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: google-captcha.php:236
|
50 |
msgid "Secret Key"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: google-captcha.php:244
|
54 |
msgid "Login form"
|
55 |
msgstr "登入頁"
|
56 |
|
57 |
+
#: google-captcha.php:245
|
58 |
msgid "Registration form"
|
59 |
msgstr "用戶註冊頁"
|
60 |
|
61 |
+
#: google-captcha.php:246
|
62 |
msgid "Reset password form"
|
63 |
msgstr "重設密碼頁"
|
64 |
|
65 |
+
#: google-captcha.php:247
|
66 |
msgid "Comments form"
|
67 |
msgstr "發表迴響框"
|
68 |
|
69 |
+
#: google-captcha.php:262
|
70 |
#, fuzzy
|
71 |
msgid "Enter site key"
|
72 |
msgstr "輸入私有密鑰"
|
73 |
|
74 |
+
#: google-captcha.php:263
|
75 |
+
#: google-captcha.php:269
|
76 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
77 |
msgstr "警告:如果你不填寫此欄,驗證碼將不會顯示。"
|
78 |
|
79 |
+
#: google-captcha.php:268
|
80 |
#, fuzzy
|
81 |
msgid "Enter secret key"
|
82 |
msgstr "輸入私有密鑰"
|
83 |
|
84 |
+
#: google-captcha.php:293
|
85 |
+
#: google-captcha.php:648
|
86 |
+
#: google-captcha.php:659
|
87 |
msgid "Settings"
|
88 |
msgstr "設定"
|
89 |
|
90 |
+
#: google-captcha.php:294
|
91 |
+
#: google-captcha.php:660
|
92 |
msgid "FAQ"
|
93 |
msgstr "常見問題"
|
94 |
|
95 |
+
#: google-captcha.php:296
|
96 |
msgid "Notice:"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: google-captcha.php:296
|
100 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: google-captcha.php:297
|
104 |
msgid "Settings saved"
|
105 |
msgstr "設定已儲存"
|
106 |
|
107 |
+
#: google-captcha.php:301
|
108 |
+
msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: google-captcha.php:302
|
112 |
+
msgid "Read more."
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: google-captcha.php:305
|
116 |
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
117 |
msgstr "如果您想在自己的表格中加入reCAPTCHA驗證碼,只需貼上此代號到您的文章或頁面:"
|
118 |
|
119 |
+
#: google-captcha.php:307
|
120 |
msgid "Authentication"
|
121 |
msgstr "身份驗證"
|
122 |
|
123 |
+
#: google-captcha.php:308
|
124 |
#, php-format
|
125 |
msgid "Before you are able to do something, you must to register %s here %s"
|
126 |
msgstr "在開始使用本外掛之先,請到%s這裡%s註冊。"
|
127 |
|
128 |
+
#: google-captcha.php:309
|
129 |
#, fuzzy
|
130 |
msgid "Enter site key and secret key, that you get after registration."
|
131 |
msgstr "然後複製公開金鑰(Public Key)和私有密鑰(Private Key)到到以下方框。"
|
132 |
|
133 |
+
#: google-captcha.php:321
|
134 |
msgid "Options"
|
135 |
msgstr "選項"
|
136 |
|
137 |
+
#: google-captcha.php:324
|
138 |
msgid "Enable Google Captcha for:"
|
139 |
msgstr "在下列畫面及表格使用reCAPTCHA:"
|
140 |
|
141 |
+
#: google-captcha.php:339
|
142 |
+
#: google-captcha.php:342
|
143 |
+
#: google-captcha.php:346
|
144 |
msgid "Contact form"
|
145 |
msgstr "聯絡表格"
|
146 |
|
147 |
+
#: google-captcha.php:340
|
148 |
+
#: google-captcha.php:343
|
149 |
+
#: google-captcha.php:347
|
150 |
msgid "powered by"
|
151 |
msgstr "服務提供者:"
|
152 |
|
153 |
+
#: google-captcha.php:343
|
154 |
msgid "Activate contact form"
|
155 |
msgstr "啟用聯絡表格"
|
156 |
|
157 |
+
#: google-captcha.php:347
|
158 |
msgid "Download contact form"
|
159 |
msgstr "下載聯絡表格"
|
160 |
|
161 |
+
#: google-captcha.php:352
|
162 |
msgid "Hide captcha for:"
|
163 |
msgstr "為下列用戶隱藏驗證碼:"
|
164 |
|
165 |
+
#: google-captcha.php:360
|
166 |
msgid "reCAPTCHA version:"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: google-captcha.php:362
|
170 |
+
#: google-captcha.php:363
|
171 |
msgid "version"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: google-captcha.php:368
|
175 |
+
#: google-captcha.php:381
|
176 |
msgid "Theme:"
|
177 |
msgstr "風格:"
|
178 |
|
179 |
+
#: google-captcha.php:369
|
180 |
+
#: google-captcha.php:382
|
181 |
msgid "for reCAPTCHA version"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: google-captcha.php:393
|
185 |
msgid "Save Changes"
|
186 |
msgstr "儲存變更"
|
187 |
|
188 |
+
#: google-captcha.php:399
|
189 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
190 |
msgstr "如果你喜歡本外掛,請到WordPress給它五星評級!"
|
191 |
|
192 |
+
#: google-captcha.php:400
|
193 |
msgid "Rate the plugin"
|
194 |
msgstr "為外掛評分"
|
195 |
|
196 |
+
#: google-captcha.php:403
|
197 |
msgid "If there is something wrong about it, please contact us"
|
198 |
msgstr "如果對本外掛出現任何錯誤,歡迎與我們聯絡"
|
199 |
|
200 |
+
#: google-captcha.php:452
|
201 |
msgid "To use Google Captcha you must get the keys from"
|
202 |
msgstr "如要用reCAPTCHA驗證碼,你必須輸入兩組金鑰。您可以在這裡領取:"
|
203 |
|
204 |
+
#: google-captcha.php:453
|
205 |
msgid "here"
|
206 |
msgstr "點我"
|
207 |
|
208 |
+
#: google-captcha.php:454
|
209 |
msgid "and enter them on the"
|
210 |
msgstr "然後將他們輸入到"
|
211 |
|
212 |
+
#: google-captcha.php:456
|
213 |
msgid "plugin setting page"
|
214 |
msgstr "外掛設置頁"
|
215 |
|
216 |
+
#: google-captcha.php:484
|
217 |
+
#: google-captcha.php:500
|
218 |
msgid "Error: You have entered an incorrect CAPTCHA value."
|
219 |
msgstr "錯誤:您輸入的驗證碼不正確。"
|
220 |
|
221 |
+
#: google-captcha.php:567
|
222 |
+
#: google-captcha.php:580
|
223 |
+
#: google-captcha.php:618
|
224 |
+
#: google-captcha.php:628
|
225 |
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
226 |
msgstr "錯誤:您輸入的驗證碼不正確。請回到上一頁,然後重新輸入。"
|
227 |
|
228 |
+
#: google-captcha.php:661
|
229 |
msgid "Support"
|
230 |
msgstr "支援"
|
231 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&
|
|
4 |
Tags: antispam, anti-spam, capcha, anti-spam security, arithmetic actions, captcha, captha, capcha, catcha, cpatcha, captcha theme, comment, digitize books, digitize newspapers, digitize radio shows, google, gogle, google captcha, login, lost password, re captcha, recaptcha, re-captcha, registration, shortcode, site keys, spam, text captcha.
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -42,6 +42,7 @@ There is also a premium version of the plugin <a href="http://bestwebsoft.com/pr
|
|
42 |
= Translation =
|
43 |
|
44 |
* Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:epeetz@gmail.com">Elton Fernandes Peetz Prado</a>)
|
|
|
45 |
* Chinese Traditional (zh_TW) (thanks to <a href="mailto:nick20080808@gmail.com">Nick Lai</a>)
|
46 |
* Polish (pl_PL) (thanks to <a href="mailto:ryszard.glegola@translanet.com">Ryszard Glegola</a>, www.translanet.com)
|
47 |
* Russian (ru_RU)
|
@@ -138,12 +139,18 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
138 |
1. Google Captcha Settings page.
|
139 |
2. Comments form with Google Captcha.
|
140 |
3. Login form with Google Captcha.
|
141 |
-
4.
|
142 |
-
5.
|
143 |
-
6.
|
|
|
144 |
|
145 |
== Changelog ==
|
146 |
|
|
|
|
|
|
|
|
|
|
|
147 |
= V1.11 - 30.12.2014 =
|
148 |
* Update : New Google Captcha version is added.
|
149 |
* Bugfix : We fixed the bug with displaying Google Captcha on the multisite register form.
|
@@ -200,6 +207,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
200 |
|
201 |
== Upgrade Notice ==
|
202 |
|
|
|
|
|
|
|
203 |
= V1.11 =
|
204 |
New Google Captcha version is added. We fixed the bug with displaying Google Captcha on the multisite register form. We fixed the bug with multilanguage plugin. We updated all functionality for wordpress 4.1.
|
205 |
|
4 |
Tags: antispam, anti-spam, capcha, anti-spam security, arithmetic actions, captcha, captha, capcha, catcha, cpatcha, captcha theme, comment, digitize books, digitize newspapers, digitize radio shows, google, gogle, google captcha, login, lost password, re captcha, recaptcha, re-captcha, registration, shortcode, site keys, spam, text captcha.
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 1.12
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
42 |
= Translation =
|
43 |
|
44 |
* Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:epeetz@gmail.com">Elton Fernandes Peetz Prado</a>)
|
45 |
+
* Bulgarian (bg_BG) (thanks to <a href="mailto:me@ygeorgiev.com">Yasen Georgiev</a>)
|
46 |
* Chinese Traditional (zh_TW) (thanks to <a href="mailto:nick20080808@gmail.com">Nick Lai</a>)
|
47 |
* Polish (pl_PL) (thanks to <a href="mailto:ryszard.glegola@translanet.com">Ryszard Glegola</a>, www.translanet.com)
|
48 |
* Russian (ru_RU)
|
139 |
1. Google Captcha Settings page.
|
140 |
2. Comments form with Google Captcha.
|
141 |
3. Login form with Google Captcha.
|
142 |
+
4. Login form with Google Captcha version 2.
|
143 |
+
5. Lost password form with Google Captcha.
|
144 |
+
6. Registration form with Google Captcha.
|
145 |
+
7. Contact form with Google Captcha.
|
146 |
|
147 |
== Changelog ==
|
148 |
|
149 |
+
= V1.12 - 20.01.2015 =
|
150 |
+
* NEW : The Bulgarian language file is added.
|
151 |
+
* Update : We added the check of the "allow_url_fopen" option in PHP settings.
|
152 |
+
* Update : We added style for forms that use captcha v2.
|
153 |
+
|
154 |
= V1.11 - 30.12.2014 =
|
155 |
* Update : New Google Captcha version is added.
|
156 |
* Bugfix : We fixed the bug with displaying Google Captcha on the multisite register form.
|
207 |
|
208 |
== Upgrade Notice ==
|
209 |
|
210 |
+
= V1.12 =
|
211 |
+
The Bulgarian language file is added. We added the check of the "allow_url_fopen" option in PHP settings. We added style for forms that use captcha v2.
|
212 |
+
|
213 |
= V1.11 =
|
214 |
New Google Captcha version is added. We fixed the bug with displaying Google Captcha on the multisite register form. We fixed the bug with multilanguage plugin. We updated all functionality for wordpress 4.1.
|
215 |
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-4.png
CHANGED
Binary file
|
screenshot-5.png
CHANGED
Binary file
|
screenshot-6.png
CHANGED
Binary file
|
screenshot-7.png
ADDED
Binary file
|