Version Description
- 27.04.2017 =
- NEW : Invisible reCAPTCHA version has been added.
- Update : The Czech language file has been updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Captcha (reCAPTCHA) by BestWebSoft |
Version | 1.29 |
Comparing to | |
See all releases |
Code changes from version 1.28 to 1.29
- google-captcha.php +193 -160
- includes/pro_banners.php +3 -4
- js/admin_script.js +19 -10
- js/pre-api-script.js +61 -0
- js/script.js +171 -10
- languages/google-captcha-ar.mo +0 -0
- languages/google-captcha-ar.po +175 -140
- languages/google-captcha-bg_BG.mo +0 -0
- languages/google-captcha-bg_BG.po +153 -136
- languages/google-captcha-cs_CZ.mo +0 -0
- languages/google-captcha-cs_CZ.po +230 -311
- languages/google-captcha-de_DE.mo +0 -0
- languages/google-captcha-de_DE.po +154 -137
- languages/google-captcha-el.mo +0 -0
- languages/google-captcha-el.po +154 -137
- languages/google-captcha-es_ES.mo +0 -0
- languages/google-captcha-es_ES.po +150 -139
- languages/google-captcha-fa_IR.mo +0 -0
- languages/google-captcha-fa_IR.po +167 -141
- languages/google-captcha-fr_FR.mo +0 -0
- languages/google-captcha-fr_FR.po +170 -143
- languages/google-captcha-hi.mo +0 -0
- languages/google-captcha-hi.po +153 -136
- languages/google-captcha-it_IT.mo +0 -0
- languages/google-captcha-it_IT.po +153 -136
- languages/google-captcha-pl_PL.mo +0 -0
- languages/google-captcha-pl_PL.po +150 -138
- languages/google-captcha-pt_BR.mo +0 -0
- languages/google-captcha-pt_BR.po +150 -136
- languages/google-captcha-ru_RU.mo +0 -0
- languages/google-captcha-ru_RU.po +172 -149
- languages/google-captcha-uk.mo +0 -0
- languages/google-captcha-uk.po +169 -147
- languages/google-captcha-zh_TW.mo +0 -0
- languages/google-captcha-zh_TW.po +148 -137
- readme.txt +13 -4
- screenshot-8.png +0 -0
google-captcha.php
CHANGED
@@ -6,7 +6,7 @@ Description: Protect WordPress website forms from spam entries with Google Captc
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-captcha
|
8 |
Domain Path: /languages
|
9 |
-
Version: 1.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv3 or later
|
12 |
*/
|
@@ -64,11 +64,11 @@ if ( ! function_exists( 'gglcptch_init' ) ) {
|
|
64 |
if ( ! $is_admin || ( isset( $_GET['page'] ) && 'google-captcha.php' == $_GET['page'] ) )
|
65 |
register_gglcptch_settings();
|
66 |
|
67 |
-
if (
|
68 |
$gglcptch_ip_in_whitelist = gglcptch_whitelisted_ip();
|
69 |
|
70 |
/* Add hooks */
|
71 |
-
if ( ! $is_admin ) {
|
72 |
/* Add hooks */
|
73 |
if ( '1' == $gglcptch_options['login_form'] || '1' == $gglcptch_options['reset_pwd_form'] || '1' == $gglcptch_options['registration_form'] ) {
|
74 |
add_action( 'login_enqueue_scripts', 'gglcptch_add_styles' );
|
@@ -110,15 +110,6 @@ if ( ! function_exists( 'gglcptch_init' ) ) {
|
|
110 |
add_filter( 'cntctfrm_display_captcha', 'gglcptch_cf_display', 10, 2 );
|
111 |
if ( ! $gglcptch_ip_in_whitelist )
|
112 |
add_filter( 'cntctfrm_check_form', 'gglcptch_recaptcha_check' );
|
113 |
-
/**
|
114 |
-
* this filters are necessary for compatibility
|
115 |
-
* with old Contact Form Pro by BestWebsoft versions
|
116 |
-
* @deprecated since 1.0.4
|
117 |
-
* @todo remove after 25.02.2017
|
118 |
-
*/
|
119 |
-
add_filter( 'cntctfrmpr_display_captcha', 'gglcptch_cf_display', 10, 2 );
|
120 |
-
if ( ! $gglcptch_ip_in_whitelist )
|
121 |
-
add_filter( 'cntctfrmpr_check_form', 'gglcptch_recaptcha_check' );
|
122 |
}
|
123 |
}
|
124 |
}
|
@@ -156,12 +147,16 @@ if ( ! function_exists( 'gglcptch_admin_init' ) ) {
|
|
156 |
/* Add google captcha styles */
|
157 |
if ( ! function_exists( 'gglcptch_add_admin_script_styles' ) ) {
|
158 |
function gglcptch_add_admin_script_styles() {
|
|
|
159 |
if ( isset( $_REQUEST['page'] ) && 'google-captcha.php' == $_REQUEST['page'] ) {
|
160 |
-
wp_enqueue_style( 'gglcptch_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
161 |
-
wp_enqueue_script( 'gglcptch_admin_script', plugins_url( 'js/admin_script.js', __FILE__ ), array( 'jquery' ) );
|
|
|
|
|
162 |
|
163 |
-
if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] )
|
164 |
bws_plugins_include_codemirror();
|
|
|
165 |
}
|
166 |
}
|
167 |
}
|
@@ -169,15 +164,18 @@ if ( ! function_exists( 'gglcptch_add_admin_script_styles' ) ) {
|
|
169 |
/* Add google captcha admin styles for test key */
|
170 |
if ( ! function_exists( 'gglcptch_admin_footer' ) ) {
|
171 |
function gglcptch_admin_footer() {
|
|
|
172 |
if ( isset( $_REQUEST['page'] ) && 'google-captcha.php' == $_REQUEST['page'] ) {
|
173 |
/* for gglcptch test key */
|
174 |
global $gglcptch_options;
|
175 |
-
|
176 |
-
|
|
|
|
|
177 |
} else {
|
178 |
$api_url = "https://www.google.com/recaptcha/api/js/recaptcha_ajax.js";
|
179 |
}
|
180 |
-
wp_register_script( 'gglcptch_api', $api_url,
|
181 |
gglcptch_add_scripts();
|
182 |
}
|
183 |
}
|
@@ -207,16 +205,19 @@ if ( ! function_exists( 'gglcptch_remove_dublicate_scripts' ) ) {
|
|
207 |
if ( ! function_exists( 'gglcptch_add_styles' ) ) {
|
208 |
function gglcptch_add_styles() {
|
209 |
global $gglcptch_plugin_info, $gglcptch_options;
|
210 |
-
wp_enqueue_style( 'gglcptch', plugins_url( 'css/gglcptch.css', __FILE__ ),
|
211 |
|
212 |
if ( defined( 'BWS_ENQUEUE_ALL_SCRIPTS' ) && BWS_ENQUEUE_ALL_SCRIPTS ) {
|
213 |
if ( ! wp_script_is( 'gglcptch_api', 'registered' ) ) {
|
214 |
-
if ( isset( $gglcptch_options['recaptcha_version'] ) &&
|
215 |
-
$api_url = "https://www.google.com/recaptcha/api.js";
|
|
|
216 |
} else {
|
217 |
$api_url = "https://www.google.com/recaptcha/api/js/recaptcha_ajax.js";
|
|
|
218 |
}
|
219 |
-
|
|
|
220 |
add_action( 'wp_footer', 'gglcptch_add_scripts' );
|
221 |
if (
|
222 |
'1' == $gglcptch_options['login_form'] ||
|
@@ -234,30 +235,45 @@ if ( ! function_exists( 'gglcptch_add_styles' ) ) {
|
|
234 |
*/
|
235 |
if ( ! function_exists( 'gglcptch_add_scripts' ) ) {
|
236 |
function gglcptch_add_scripts() {
|
237 |
-
global $gglcptch_options;
|
238 |
|
239 |
if ( empty( $gglcptch_options ) )
|
240 |
register_gglcptch_settings();
|
241 |
|
242 |
-
if ( isset( $gglcptch_options['recaptcha_version'] ) && '
|
243 |
gglcptch_remove_dublicate_scripts();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
|
245 |
-
wp_enqueue_script( 'gglcptch_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'gglcptch_api' ),
|
246 |
|
247 |
$version = $gglcptch_options['recaptcha_version'] == 'v2' ? '_v2' : '';
|
248 |
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
wp_localize_script( 'gglcptch_script', 'gglcptch', array(
|
250 |
'options' => array(
|
251 |
-
'version'
|
252 |
-
'sitekey'
|
253 |
-
'theme'
|
254 |
-
'error'
|
255 |
),
|
256 |
'vars' => array(
|
257 |
-
'ajaxurl'
|
258 |
-
'error_msg'
|
259 |
-
'nonce'
|
260 |
-
'visibility'
|
|
|
261 |
)
|
262 |
) );
|
263 |
}
|
@@ -461,11 +477,11 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
|
|
461 |
$plugin_basename = plugin_basename( __FILE__ );
|
462 |
$message = $error = '';
|
463 |
|
464 |
-
$all_plugins
|
465 |
-
$is_network
|
466 |
-
$is_main_site
|
467 |
-
$admin_url
|
468 |
-
$bws_contact_form
|
469 |
|
470 |
if ( isset( $_POST['bws_hide_premium_options'] ) && check_admin_referer( $plugin_basename, 'gglcptch_nonce_name' ) ) {
|
471 |
$result = bws_hide_premium_options( $gglcptch_options );
|
@@ -479,7 +495,7 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
|
|
479 |
/* Private and public keys */
|
480 |
$gglcptch_keys = array(
|
481 |
'public' => array(
|
482 |
-
'display_name' => __( 'Site
|
483 |
'form_name' => 'gglcptch_public_key',
|
484 |
'error_msg' => '',
|
485 |
),
|
@@ -490,6 +506,12 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
|
|
490 |
),
|
491 |
);
|
492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
/* Checked forms */
|
494 |
$gglcptch_forms = array(
|
495 |
array( 'login_form', __( 'Login form', 'google-captcha' ) ),
|
@@ -536,7 +558,7 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
|
|
536 |
$gglcptch_options['reset_pwd_form'] = isset( $_POST['gglcptch_reset_pwd_form'] ) ? 1 : 0;
|
537 |
$gglcptch_options['comments_form'] = isset( $_POST['gglcptch_comments_form'] ) ? 1 : 0;
|
538 |
$gglcptch_options['contact_form'] = isset( $_POST['gglcptch_contact_form'] ) ? 1 : 0;
|
539 |
-
$gglcptch_options['recaptcha_version'] =
|
540 |
$gglcptch_options['theme'] = stripslashes( esc_html( $_POST['gglcptch_theme'] ) );
|
541 |
$gglcptch_options['theme_v2'] = stripslashes( esc_html( $_POST['gglcptch_theme_v2'] ) );
|
542 |
|
@@ -570,7 +592,7 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
|
|
570 |
<div class="wrap gglcptch_settings_page">
|
571 |
<h1 style="line-height: normal;"><?php _e( 'Google Captcha Settings', 'google-captcha' ); ?></h1>
|
572 |
<h2 class="nav-tab-wrapper">
|
573 |
-
<a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-captcha.php"><?php _e( 'Settings', 'google-captcha' ); ?></a>
|
574 |
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'whitelist' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-captcha.php&action=whitelist"><?php _e( 'Whitelist', 'google-captcha' ); ?></a>
|
575 |
<a class="nav-tab <?php if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-captcha.php&action=custom_code"><?php _e( 'Custom code', 'google-captcha' ); ?></a>
|
576 |
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?> bws_go_pro_tab" href="admin.php?page=google-captcha.php&action=go_pro"><?php _e( 'Go PRO', 'google-captcha' ); ?></a>
|
@@ -604,8 +626,7 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
|
|
604 |
</div>
|
605 |
<form id="gglcptch_admin_settings_page" class="bws_form" method="post" action="admin.php?page=google-captcha.php">
|
606 |
<h3><?php _e( 'Authentication', 'google-captcha' ); ?></h3>
|
607 |
-
<p><?php printf( __( '
|
608 |
-
<p><?php _e( 'Enter site key and secret key, that you get after registration', 'google-captcha' ); ?></p>
|
609 |
<table id="gglcptch-keys" class="form-table">
|
610 |
<?php foreach ( $gglcptch_keys as $key => $fields ) { ?>
|
611 |
<tr valign="top">
|
@@ -675,12 +696,12 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
|
|
675 |
<?php echo bws_add_help_box( '<img src="' . plugins_url( 'google-captcha/images/contact_form.jpg') . '">', 'bws-auto-width' ); ?>
|
676 |
<span class="bws_info"><?php echo $gglcptch_plugin_notice; ?></span><br />
|
677 |
<?php gglcptch_pro_block( 'gglcptch_supported_plugins_banner' ); ?>
|
678 |
-
<span class="bws_info"><?php printf( __( 'If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s', 'google-captcha' ), sprintf( '<a href="
|
679 |
</fieldset>
|
680 |
</td>
|
681 |
</tr>
|
682 |
<tr valign="top">
|
683 |
-
<th scope="row"><?php _e( 'Hide reCAPTCHA in Comments
|
684 |
<td>
|
685 |
<fieldset>
|
686 |
<?php if ( function_exists( 'get_editable_roles' ) ) {
|
@@ -692,29 +713,35 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
|
|
692 |
</td>
|
693 |
</tr>
|
694 |
<tr valign="top">
|
695 |
-
<th scope="row"><?php _e( 'Whitelist
|
696 |
<td>
|
697 |
<label>
|
698 |
<input type="text" id="gglcptch_whitelist_message" name="gglcptch_whitelist_message" value="<?php echo $gglcptch_options['whitelist_message']; ?>">
|
699 |
-
<?php echo bws_add_help_box( __( 'This message will be displayed instead of the reCAPTCHA
|
700 |
<div class="clear"></div>
|
701 |
</label>
|
702 |
</td>
|
703 |
</tr>
|
704 |
<tr valign="top">
|
705 |
-
<th scope="row"><?php _e( 'reCAPTCHA
|
706 |
<td>
|
707 |
<fieldset>
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
712 |
</fieldset>
|
713 |
</td>
|
714 |
</tr>
|
715 |
<tr class="gglcptch_theme_v1" valign="top">
|
716 |
<th scope="row">
|
717 |
-
<?php _e( 'reCAPTCHA
|
718 |
<br/><span class="bws_info">(<?php _e( 'for version', 'google-captcha' ); ?> 1)</span>
|
719 |
</th>
|
720 |
<td>
|
@@ -727,13 +754,13 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
|
|
727 |
</tr>
|
728 |
<tr class="gglcptch_theme_v2" valign="top">
|
729 |
<th scope="row">
|
730 |
-
<?php _e( 'reCAPTCHA
|
731 |
<br/><span class="bws_info">(<?php _e( 'for version', 'google-captcha' ); ?> 2)</span>
|
732 |
</th>
|
733 |
<td>
|
734 |
<select name="gglcptch_theme_v2">
|
735 |
-
<option value="light" <?php if ( 'light' == $gglcptch_options['theme_v2'] ) echo ' selected'; ?>>
|
736 |
-
<option value="dark" <?php if ( 'dark' == $gglcptch_options['theme_v2'] ) echo ' selected'; ?>>
|
737 |
</select>
|
738 |
</td>
|
739 |
</tr>
|
@@ -788,7 +815,7 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
788 |
if ( empty( $gglcptch_options ) )
|
789 |
register_gglcptch_settings();
|
790 |
|
791 |
-
if (
|
792 |
$gglcptch_ip_in_whitelist = gglcptch_whitelisted_ip();
|
793 |
|
794 |
if ( ! $gglcptch_ip_in_whitelist ) {
|
@@ -818,7 +845,7 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
818 |
|
819 |
/* generating random id value in case of getting content with pagination plugin for not getting duplicate id values */
|
820 |
$id = mt_rand();
|
821 |
-
if ( isset( $gglcptch_options['recaptcha_version'] ) &&
|
822 |
$content .= '<div id="gglcptch_recaptcha_' . $id . '" class="gglcptch_recaptcha"></div>
|
823 |
<noscript>
|
824 |
<div style="width: 302px;">
|
@@ -832,19 +859,21 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
|
|
832 |
</div>
|
833 |
</div>
|
834 |
</noscript>';
|
835 |
-
$api_url = "https://www.google.com/recaptcha/api.js";
|
|
|
836 |
} else {
|
837 |
require_once( 'lib/recaptchalib.php' );
|
838 |
$content .= '<div id="gglcptch_recaptcha_' . $id . '" class="gglcptch_recaptcha"></div>';
|
839 |
$content .= gglcptch_recaptcha_get_html( $publickey, null, is_ssl() );
|
840 |
$api_url = "https://www.google.com/recaptcha/api/js/recaptcha_ajax.js";
|
|
|
841 |
}
|
842 |
$content .= '</div>';
|
843 |
$gglcptch_count++;
|
844 |
|
845 |
/* register reCAPTCHA script */
|
846 |
if ( ! wp_script_is( 'gglcptch_api', 'registered' ) ) {
|
847 |
-
wp_register_script( 'gglcptch_api', $api_url,
|
848 |
add_action( 'wp_footer', 'gglcptch_add_scripts' );
|
849 |
if (
|
850 |
'1' == $gglcptch_options['login_form'] ||
|
@@ -897,8 +926,10 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
|
|
897 |
|
898 |
$gglcptch_remote_addr = filter_var( $_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP );
|
899 |
|
900 |
-
if (
|
901 |
-
|
|
|
|
|
902 |
if ( ! isset( $_POST["g-recaptcha-response"] ) ) {
|
903 |
return array(
|
904 |
'response' => false,
|
@@ -964,34 +995,83 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
|
|
964 |
if ( ! function_exists( 'gglcptch_login_display' ) ) {
|
965 |
function gglcptch_login_display() {
|
966 |
global $gglcptch_options;
|
967 |
-
if ( isset( $gglcptch_options['recaptcha_version'] ) &&
|
968 |
-
$
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
$
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
|
|
|
|
991 |
return true;
|
992 |
}
|
993 |
}
|
994 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
995 |
/* Check google captcha in login form */
|
996 |
if ( ! function_exists( 'gglcptch_login_check' ) ) {
|
997 |
function gglcptch_login_check( $user ) {
|
@@ -1003,7 +1083,7 @@ if ( ! function_exists( 'gglcptch_login_check' ) ) {
|
|
1003 |
return $user;
|
1004 |
}
|
1005 |
|
1006 |
-
$error_message = sprintf( '<strong>%s</strong
|
1007 |
|
1008 |
if ( $result['reason'] == 'VERIFICATION_FAILED' ) {
|
1009 |
wp_clear_auth_cookie();
|
@@ -1024,18 +1104,8 @@ if ( ! function_exists( 'gglcptch_login_check' ) ) {
|
|
1024 |
/* Check google captcha in BWS Contact Form */
|
1025 |
if ( ! function_exists( 'gglcptch_recaptcha_check' ) ) {
|
1026 |
function gglcptch_recaptcha_check( $allow = true ) {
|
1027 |
-
|
1028 |
-
|
1029 |
-
* with Contact Form ( Free and Pro ) by BestWebsoft plugins versions
|
1030 |
-
* that use $_POST as parameter for hook ( old versions )
|
1031 |
-
* apply_filters( 'cntctfrmpr_check_form', $_POST );
|
1032 |
-
* @deprecated since 1.22
|
1033 |
-
* @todo remove after 25.02.2017
|
1034 |
-
*/
|
1035 |
-
if ( is_array( $allow ) ) {
|
1036 |
-
$allow = false;
|
1037 |
-
$old_cf_version = true;
|
1038 |
-
} else /* end @todo */ if ( ! $allow || is_string( $allow ) || is_wp_error( $allow ) ) {
|
1039 |
return $allow;
|
1040 |
}
|
1041 |
|
@@ -1044,26 +1114,18 @@ if ( ! function_exists( 'gglcptch_recaptcha_check' ) ) {
|
|
1044 |
if ( $result['response'] || $result['reason'] == 'ERROR_NO_KEYS' )
|
1045 |
return true;
|
1046 |
|
|
|
1047 |
/**
|
1048 |
-
*
|
1049 |
-
*
|
|
|
|
|
1050 |
*/
|
1051 |
-
if (
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
* Function 'cntctfrm_handle_captcha_filters' was added in Contact Form 4.0.2 (Free and Pro)
|
1057 |
-
* remove this condition. WP_Error is correct object for return.
|
1058 |
-
* @deprecated since 1.26
|
1059 |
-
* @todo remove after 01.08.2017
|
1060 |
-
*/
|
1061 |
-
if ( function_exists( 'cntctfrm_handle_captcha_filters' ) ) {
|
1062 |
-
$allow = new WP_Error();
|
1063 |
-
$allow->add( 'gglcptch_error', $error_message );
|
1064 |
-
} else {
|
1065 |
-
$allow = $error_message;
|
1066 |
-
}
|
1067 |
}
|
1068 |
return $allow;
|
1069 |
}
|
@@ -1081,7 +1143,9 @@ if ( ! function_exists( 'gglcptch_lostpassword_check' ) ) {
|
|
1081 |
if ( ! is_wp_error( $allow ) )
|
1082 |
$allow = new WP_Error();
|
1083 |
|
1084 |
-
$
|
|
|
|
|
1085 |
return $allow;
|
1086 |
}
|
1087 |
}
|
@@ -1109,8 +1173,10 @@ if ( ! function_exists( 'gglcptch_signup_check' ) ) {
|
|
1109 |
if ( $check_result['response'] || $check_result['reason'] == 'ERROR_NO_KEYS' )
|
1110 |
return $result;
|
1111 |
|
|
|
|
|
1112 |
$error = $result['errors'];
|
1113 |
-
$error->add( 'gglcptch_error',
|
1114 |
return $result;
|
1115 |
}
|
1116 |
}
|
@@ -1136,28 +1202,14 @@ if ( ! function_exists( 'gglcptch_commentform_check' ) ) {
|
|
1136 |
if ( $result['response'] || $result['reason'] == 'ERROR_NO_KEYS' )
|
1137 |
return;
|
1138 |
|
1139 |
-
wp_die( '<strong
|
1140 |
}
|
1141 |
}
|
1142 |
|
1143 |
/* display google captcha in Contact form */
|
1144 |
if ( ! function_exists( 'gglcptch_cf_display' ) ) {
|
1145 |
function gglcptch_cf_display( $content, $form_slug = "" ) {
|
1146 |
-
|
1147 |
-
* this are necessary for compatibility
|
1148 |
-
* with old Contact Form Free and Pro by BestWebsoft versions.
|
1149 |
-
* correct return - $content = $content . gglcptch_display();
|
1150 |
-
* @since 1.26
|
1151 |
-
* @todo remove after 1.03.2017
|
1152 |
-
*/
|
1153 |
-
if ( is_string( $content ) )
|
1154 |
-
$content = $content . gglcptch_display();
|
1155 |
-
elseif ( is_array( $content ) )
|
1156 |
-
$content = gglcptch_display();
|
1157 |
-
else
|
1158 |
-
$content = $form_slug . gglcptch_display();
|
1159 |
-
|
1160 |
-
return $content;
|
1161 |
}
|
1162 |
}
|
1163 |
|
@@ -1172,10 +1224,12 @@ if ( ! function_exists( 'gglcptch_captcha_check' ) ) {
|
|
1172 |
|
1173 |
if ( ! function_exists( 'gglcptch_test_keys' ) ) {
|
1174 |
function gglcptch_test_keys() {
|
|
|
1175 |
if ( isset( $_REQUEST['_wpnonce'] ) && wp_verify_nonce( $_REQUEST['_wpnonce'] , $_REQUEST['action'] ) ) {
|
1176 |
header( 'Content-Type: text/html' ); ?>
|
1177 |
<p><?php _e( 'Please, complete the captcha and submit "Test verification"', 'google-captcha' ); ?></p>
|
1178 |
-
<?php
|
|
|
1179 |
<p>
|
1180 |
<input type="hidden" name="gglcptch_test_keys_verification-nonce" value="<?php echo wp_create_nonce( 'gglcptch_test_keys_verification' ); ?>" />
|
1181 |
<button id="gglcptch_test_keys_verification" name="action" class="button-primary" value="gglcptch_test_keys_verification"><?php _e( 'Test verification', 'google-captcha' ); ?></button>
|
@@ -1191,32 +1245,11 @@ if ( ! function_exists( 'gglcptch_test_keys_verification' ) ) {
|
|
1191 |
$result = gglcptch_check( true );
|
1192 |
|
1193 |
if ( ! $result['response'] ) {
|
1194 |
-
$errors = array(
|
1195 |
-
/* custom error */
|
1196 |
-
'RECAPTCHA_EMPTY_RESPONSE' => __( 'The user response was missing', 'google-captcha' ),
|
1197 |
-
/* v2 error */
|
1198 |
-
'missing-input-secret' => __( 'The Secret Key is missing', 'google-captcha' ),
|
1199 |
-
'invalid-input-secret' => sprintf(
|
1200 |
-
'<strong>%s</strong>. <a target="_blank" href="https://www.google.com/recaptcha/admin#list">%s</a> %s.',
|
1201 |
-
__( 'The Secret Key is invalid', 'google-captcha' ),
|
1202 |
-
__( 'Check your domain configuration', 'google-captcha' ),
|
1203 |
-
__( 'and enter it again', 'google-captcha' )
|
1204 |
-
),
|
1205 |
-
'missing-input-response' => __( 'The user response was missing', 'google-captcha' ),
|
1206 |
-
'invalid-input-response' => __( 'The user response is invalid', 'google-captcha' ),
|
1207 |
-
/* v1 error */
|
1208 |
-
'invalid-site-private-key' => sprintf(
|
1209 |
-
'<strong>%s</strong>. <a target="_blank" href="https://www.google.com/recaptcha/admin#list">%s</a> %s.',
|
1210 |
-
__( 'The Secret Key is invalid', 'google-captcha' ),
|
1211 |
-
__( 'Check your domain configuration', 'google-captcha' ),
|
1212 |
-
__( 'and enter it again', 'google-captcha' )
|
1213 |
-
),
|
1214 |
-
'incorrect-captcha-sol' => __( 'The user response is invalid', 'google-captcha' ),
|
1215 |
-
);
|
1216 |
-
|
1217 |
if ( isset( $result['reason'] ) ) {
|
1218 |
foreach ( (array)$result['reason'] as $error ) { ?>
|
1219 |
-
<div class="error gglcptch-test-results"><p
|
|
|
|
|
1220 |
<?php }
|
1221 |
}
|
1222 |
} else { ?>
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-captcha
|
8 |
Domain Path: /languages
|
9 |
+
Version: 1.29
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv3 or later
|
12 |
*/
|
64 |
if ( ! $is_admin || ( isset( $_GET['page'] ) && 'google-captcha.php' == $_GET['page'] ) )
|
65 |
register_gglcptch_settings();
|
66 |
|
67 |
+
if ( ! isset( $gglcptch_ip_in_whitelist ) )
|
68 |
$gglcptch_ip_in_whitelist = gglcptch_whitelisted_ip();
|
69 |
|
70 |
/* Add hooks */
|
71 |
+
if ( ! $is_admin && ! empty( $gglcptch_options['public_key'] ) && ! empty( $gglcptch_options['private_key'] ) ) {
|
72 |
/* Add hooks */
|
73 |
if ( '1' == $gglcptch_options['login_form'] || '1' == $gglcptch_options['reset_pwd_form'] || '1' == $gglcptch_options['registration_form'] ) {
|
74 |
add_action( 'login_enqueue_scripts', 'gglcptch_add_styles' );
|
110 |
add_filter( 'cntctfrm_display_captcha', 'gglcptch_cf_display', 10, 2 );
|
111 |
if ( ! $gglcptch_ip_in_whitelist )
|
112 |
add_filter( 'cntctfrm_check_form', 'gglcptch_recaptcha_check' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
}
|
114 |
}
|
115 |
}
|
147 |
/* Add google captcha styles */
|
148 |
if ( ! function_exists( 'gglcptch_add_admin_script_styles' ) ) {
|
149 |
function gglcptch_add_admin_script_styles() {
|
150 |
+
global $gglcptch_plugin_info;
|
151 |
if ( isset( $_REQUEST['page'] ) && 'google-captcha.php' == $_REQUEST['page'] ) {
|
152 |
+
wp_enqueue_style( 'gglcptch_stylesheet', plugins_url( 'css/style.css', __FILE__ ), array(), $gglcptch_plugin_info['Version'] );
|
153 |
+
wp_enqueue_script( 'gglcptch_admin_script', plugins_url( 'js/admin_script.js', __FILE__ ), array( 'jquery' ), $gglcptch_plugin_info['Version'] );
|
154 |
+
|
155 |
+
bws_enqueue_settings_scripts();
|
156 |
|
157 |
+
if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] ) {
|
158 |
bws_plugins_include_codemirror();
|
159 |
+
}
|
160 |
}
|
161 |
}
|
162 |
}
|
164 |
/* Add google captcha admin styles for test key */
|
165 |
if ( ! function_exists( 'gglcptch_admin_footer' ) ) {
|
166 |
function gglcptch_admin_footer() {
|
167 |
+
global $gglcptch_plugin_info;
|
168 |
if ( isset( $_REQUEST['page'] ) && 'google-captcha.php' == $_REQUEST['page'] ) {
|
169 |
/* for gglcptch test key */
|
170 |
global $gglcptch_options;
|
171 |
+
$deps = array();
|
172 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && in_array( $gglcptch_options['recaptcha_version'], array( 'v2', 'invisible' ) ) ) {
|
173 |
+
$api_url = "https://www.google.com/recaptcha/api.js?onload=gglcptch_onload_callback&render=explicit";
|
174 |
+
$deps = array( 'gglcptch_pre_api' );
|
175 |
} else {
|
176 |
$api_url = "https://www.google.com/recaptcha/api/js/recaptcha_ajax.js";
|
177 |
}
|
178 |
+
wp_register_script( 'gglcptch_api', $api_url, $deps, $gglcptch_plugin_info['Version'], true );
|
179 |
gglcptch_add_scripts();
|
180 |
}
|
181 |
}
|
205 |
if ( ! function_exists( 'gglcptch_add_styles' ) ) {
|
206 |
function gglcptch_add_styles() {
|
207 |
global $gglcptch_plugin_info, $gglcptch_options;
|
208 |
+
wp_enqueue_style( 'gglcptch', plugins_url( 'css/gglcptch.css', __FILE__ ), array(), $gglcptch_plugin_info["Version"] );
|
209 |
|
210 |
if ( defined( 'BWS_ENQUEUE_ALL_SCRIPTS' ) && BWS_ENQUEUE_ALL_SCRIPTS ) {
|
211 |
if ( ! wp_script_is( 'gglcptch_api', 'registered' ) ) {
|
212 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && in_array( $gglcptch_options['recaptcha_version'], array( 'v2', 'invisible' ) ) ) {
|
213 |
+
$api_url = "https://www.google.com/recaptcha/api.js?onload=gglcptch_onload_callback&render=explicit";
|
214 |
+
$deps = array( 'gglcptch_pre_api' );
|
215 |
} else {
|
216 |
$api_url = "https://www.google.com/recaptcha/api/js/recaptcha_ajax.js";
|
217 |
+
$deps = array();
|
218 |
}
|
219 |
+
|
220 |
+
wp_register_script( 'gglcptch_api', $api_url, $deps, $gglcptch_plugin_info["Version"], true );
|
221 |
add_action( 'wp_footer', 'gglcptch_add_scripts' );
|
222 |
if (
|
223 |
'1' == $gglcptch_options['login_form'] ||
|
235 |
*/
|
236 |
if ( ! function_exists( 'gglcptch_add_scripts' ) ) {
|
237 |
function gglcptch_add_scripts() {
|
238 |
+
global $gglcptch_options, $gglcptch_plugin_info;
|
239 |
|
240 |
if ( empty( $gglcptch_options ) )
|
241 |
register_gglcptch_settings();
|
242 |
|
243 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v1' != $gglcptch_options['recaptcha_version'] ) {
|
244 |
gglcptch_remove_dublicate_scripts();
|
245 |
+
wp_enqueue_script( 'gglcptch_pre_api', plugins_url( 'js/pre-api-script.js', __FILE__ ), array( 'jquery'), $gglcptch_plugin_info['Version'], true );
|
246 |
+
wp_localize_script( 'gglcptch_pre_api', 'gglcptch_pre', array(
|
247 |
+
'messages' => array(
|
248 |
+
'in_progress' => __( 'Please wait until Google reCAPTCHA is loaded.', 'google-captcha' ),
|
249 |
+
'timeout' => __( 'Failed to load Google reCAPTCHA. Please check your internet connection and reload this page.', 'google-captcha' )
|
250 |
+
)
|
251 |
+
) );
|
252 |
+
}
|
253 |
|
254 |
+
wp_enqueue_script( 'gglcptch_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'gglcptch_api' ), $gglcptch_plugin_info["Version"], true );
|
255 |
|
256 |
$version = $gglcptch_options['recaptcha_version'] == 'v2' ? '_v2' : '';
|
257 |
|
258 |
+
/* forms to exclude from ajax check */
|
259 |
+
$excluded_forms = apply_filters( 'gglcptch_exclude_forms', '' );
|
260 |
+
if ( ! empty( $excluded_forms ) && is_array( $excluded_forms ) ) {
|
261 |
+
$excluded_forms = implode( ', ', $excluded_forms );
|
262 |
+
}
|
263 |
+
|
264 |
wp_localize_script( 'gglcptch_script', 'gglcptch', array(
|
265 |
'options' => array(
|
266 |
+
'version' => $gglcptch_options['recaptcha_version'],
|
267 |
+
'sitekey' => $gglcptch_options['public_key'],
|
268 |
+
'theme' => $gglcptch_options[ 'theme' . $version ],
|
269 |
+
'error' => sprintf( '<strong>%s</strong>: %s', __( 'Warning', 'google-captcha' ), gglcptch_get_message( 'multiple_blocks' ) )
|
270 |
),
|
271 |
'vars' => array(
|
272 |
+
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
273 |
+
'error_msg' => sprintf( '%s: %s', __( 'Error', 'google-captcha' ), gglcptch_get_message() ),
|
274 |
+
'nonce' => wp_create_nonce( 'gglcptch_recaptcha_nonce' ),
|
275 |
+
'visibility' => ( 'login_footer' == current_filter() ) ? true : false,
|
276 |
+
'excluded_forms' => ! empty( $excluded_forms ) ? ', ' . $excluded_forms : ''
|
277 |
)
|
278 |
) );
|
279 |
}
|
477 |
$plugin_basename = plugin_basename( __FILE__ );
|
478 |
$message = $error = '';
|
479 |
|
480 |
+
$all_plugins = get_plugins();
|
481 |
+
$is_network = is_multisite() && is_network_admin();
|
482 |
+
$is_main_site = is_main_site( get_current_blog_id() );
|
483 |
+
$admin_url = $is_network ? network_admin_url( '/' ) : admin_url( '/' );
|
484 |
+
$bws_contact_form = gglcptch_plugin_status( array( 'contact-form-plugin/contact_form.php', 'contact-form-pro/contact_form_pro.php' ), $all_plugins, $is_network );
|
485 |
|
486 |
if ( isset( $_POST['bws_hide_premium_options'] ) && check_admin_referer( $plugin_basename, 'gglcptch_nonce_name' ) ) {
|
487 |
$result = bws_hide_premium_options( $gglcptch_options );
|
495 |
/* Private and public keys */
|
496 |
$gglcptch_keys = array(
|
497 |
'public' => array(
|
498 |
+
'display_name' => __( 'Site Key', 'google-captcha' ),
|
499 |
'form_name' => 'gglcptch_public_key',
|
500 |
'error_msg' => '',
|
501 |
),
|
506 |
),
|
507 |
);
|
508 |
|
509 |
+
$versions = array(
|
510 |
+
'v1' => sprintf( '%s 1', __( 'Version', 'google-captcha' ) ),
|
511 |
+
'v2' => sprintf( '%s 2', __( 'Version', 'google-captcha' ) ),
|
512 |
+
'invisible' => __( 'Invisible reCAPTCHA', 'google-captcha' )
|
513 |
+
);
|
514 |
+
|
515 |
/* Checked forms */
|
516 |
$gglcptch_forms = array(
|
517 |
array( 'login_form', __( 'Login form', 'google-captcha' ) ),
|
558 |
$gglcptch_options['reset_pwd_form'] = isset( $_POST['gglcptch_reset_pwd_form'] ) ? 1 : 0;
|
559 |
$gglcptch_options['comments_form'] = isset( $_POST['gglcptch_comments_form'] ) ? 1 : 0;
|
560 |
$gglcptch_options['contact_form'] = isset( $_POST['gglcptch_contact_form'] ) ? 1 : 0;
|
561 |
+
$gglcptch_options['recaptcha_version'] = in_array( $_POST['gglcptch_recaptcha_version'], array( 'v1', 'v2', 'invisible' ) ) ? $_POST['gglcptch_recaptcha_version']: 'v2';
|
562 |
$gglcptch_options['theme'] = stripslashes( esc_html( $_POST['gglcptch_theme'] ) );
|
563 |
$gglcptch_options['theme_v2'] = stripslashes( esc_html( $_POST['gglcptch_theme_v2'] ) );
|
564 |
|
592 |
<div class="wrap gglcptch_settings_page">
|
593 |
<h1 style="line-height: normal;"><?php _e( 'Google Captcha Settings', 'google-captcha' ); ?></h1>
|
594 |
<h2 class="nav-tab-wrapper">
|
595 |
+
<a class="nav-tab<?php if ( ! isset( $_GET['action'] ) || ( isset( $_GET['action'] ) && ! in_array( $_GET['action'], array( 'whitelist', 'custom_code', 'go_pro' ) ) ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-captcha.php"><?php _e( 'Settings', 'google-captcha' ); ?></a>
|
596 |
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'whitelist' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-captcha.php&action=whitelist"><?php _e( 'Whitelist', 'google-captcha' ); ?></a>
|
597 |
<a class="nav-tab <?php if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-captcha.php&action=custom_code"><?php _e( 'Custom code', 'google-captcha' ); ?></a>
|
598 |
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?> bws_go_pro_tab" href="admin.php?page=google-captcha.php&action=go_pro"><?php _e( 'Go PRO', 'google-captcha' ); ?></a>
|
626 |
</div>
|
627 |
<form id="gglcptch_admin_settings_page" class="bws_form" method="post" action="admin.php?page=google-captcha.php">
|
628 |
<h3><?php _e( 'Authentication', 'google-captcha' ); ?></h3>
|
629 |
+
<p><?php printf( __( 'In order to use reCAPTCHA, please enter site and secret keys. You can manage your API keys %shere%s', 'google-captcha' ), '<a target="_blank" href="https://www.google.com/recaptcha/admin#list">', '</a>.' ); ?></p>
|
|
|
630 |
<table id="gglcptch-keys" class="form-table">
|
631 |
<?php foreach ( $gglcptch_keys as $key => $fields ) { ?>
|
632 |
<tr valign="top">
|
696 |
<?php echo bws_add_help_box( '<img src="' . plugins_url( 'google-captcha/images/contact_form.jpg') . '">', 'bws-auto-width' ); ?>
|
697 |
<span class="bws_info"><?php echo $gglcptch_plugin_notice; ?></span><br />
|
698 |
<?php gglcptch_pro_block( 'gglcptch_supported_plugins_banner' ); ?>
|
699 |
+
<span class="bws_info"><?php printf( __( 'If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s', 'google-captcha' ), sprintf( '<a href="https://support.bestwebsoft.com/hc/en-us/articles/202352499" target="_blank">%s</a>', __( 'FAQ', 'google-captcha' ) ) ); ?></span>
|
700 |
</fieldset>
|
701 |
</td>
|
702 |
</tr>
|
703 |
<tr valign="top">
|
704 |
+
<th scope="row"><?php _e( 'Hide reCAPTCHA in Comments Form for', 'google-captcha' ); ?></th>
|
705 |
<td>
|
706 |
<fieldset>
|
707 |
<?php if ( function_exists( 'get_editable_roles' ) ) {
|
713 |
</td>
|
714 |
</tr>
|
715 |
<tr valign="top">
|
716 |
+
<th scope="row"><?php _e( 'Whitelist Notification', 'google-captcha' ); ?></th>
|
717 |
<td>
|
718 |
<label>
|
719 |
<input type="text" id="gglcptch_whitelist_message" name="gglcptch_whitelist_message" value="<?php echo $gglcptch_options['whitelist_message']; ?>">
|
720 |
+
<?php echo bws_add_help_box( __( 'This message will be displayed instead of the reCAPTCHA if the user IP is added to the whitelist', 'google-captcha' ) ); ?>
|
721 |
<div class="clear"></div>
|
722 |
</label>
|
723 |
</td>
|
724 |
</tr>
|
725 |
<tr valign="top">
|
726 |
+
<th scope="row"><?php _e( 'reCAPTCHA Version', 'google-captcha' ); ?></th>
|
727 |
<td>
|
728 |
<fieldset>
|
729 |
+
<?php foreach ( $versions as $version => $version_name ) { ?>
|
730 |
+
<label>
|
731 |
+
<input type="radio" name="gglcptch_recaptcha_version" value="<?php echo $version; ?>" <?php checked( $version == $gglcptch_options['recaptcha_version'] ); ?>> <?php echo $version_name; ?>
|
732 |
+
</label>
|
733 |
+
<?php if ( 'invisible' != $version ) {
|
734 |
+
echo bws_add_help_box( '<img src="' . plugins_url( 'google-captcha/images/recaptcha_' . $version . '.png' ) . '">', 'bws-auto-width' ) . '<br/>';
|
735 |
+
} else {
|
736 |
+
echo bws_add_help_box( __( "reCAPTCHA block won't be visible for non-suspicious users while suspicious ones will have to pass the captcha", 'google-captcha' ) );
|
737 |
+
}
|
738 |
+
} ?>
|
739 |
</fieldset>
|
740 |
</td>
|
741 |
</tr>
|
742 |
<tr class="gglcptch_theme_v1" valign="top">
|
743 |
<th scope="row">
|
744 |
+
<?php _e( 'reCAPTCHA Theme', 'google-captcha' ); ?>
|
745 |
<br/><span class="bws_info">(<?php _e( 'for version', 'google-captcha' ); ?> 1)</span>
|
746 |
</th>
|
747 |
<td>
|
754 |
</tr>
|
755 |
<tr class="gglcptch_theme_v2" valign="top">
|
756 |
<th scope="row">
|
757 |
+
<?php _e( 'reCAPTCHA Theme', 'google-captcha' ); ?>
|
758 |
<br/><span class="bws_info">(<?php _e( 'for version', 'google-captcha' ); ?> 2)</span>
|
759 |
</th>
|
760 |
<td>
|
761 |
<select name="gglcptch_theme_v2">
|
762 |
+
<option value="light" <?php if ( 'light' == $gglcptch_options['theme_v2'] ) echo ' selected'; ?>>Light</option>
|
763 |
+
<option value="dark" <?php if ( 'dark' == $gglcptch_options['theme_v2'] ) echo ' selected'; ?>>Dark</option>
|
764 |
</select>
|
765 |
</td>
|
766 |
</tr>
|
815 |
if ( empty( $gglcptch_options ) )
|
816 |
register_gglcptch_settings();
|
817 |
|
818 |
+
if ( ! isset( $gglcptch_ip_in_whitelist ) )
|
819 |
$gglcptch_ip_in_whitelist = gglcptch_whitelisted_ip();
|
820 |
|
821 |
if ( ! $gglcptch_ip_in_whitelist ) {
|
845 |
|
846 |
/* generating random id value in case of getting content with pagination plugin for not getting duplicate id values */
|
847 |
$id = mt_rand();
|
848 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && in_array( $gglcptch_options['recaptcha_version'], array( 'v2', 'invisible' ) ) ) {
|
849 |
$content .= '<div id="gglcptch_recaptcha_' . $id . '" class="gglcptch_recaptcha"></div>
|
850 |
<noscript>
|
851 |
<div style="width: 302px;">
|
859 |
</div>
|
860 |
</div>
|
861 |
</noscript>';
|
862 |
+
$api_url = "https://www.google.com/recaptcha/api.js?onload=gglcptch_onload_callback&render=explicit";
|
863 |
+
$deps = array( 'gglcptch_pre_api' );
|
864 |
} else {
|
865 |
require_once( 'lib/recaptchalib.php' );
|
866 |
$content .= '<div id="gglcptch_recaptcha_' . $id . '" class="gglcptch_recaptcha"></div>';
|
867 |
$content .= gglcptch_recaptcha_get_html( $publickey, null, is_ssl() );
|
868 |
$api_url = "https://www.google.com/recaptcha/api/js/recaptcha_ajax.js";
|
869 |
+
$deps = array();
|
870 |
}
|
871 |
$content .= '</div>';
|
872 |
$gglcptch_count++;
|
873 |
|
874 |
/* register reCAPTCHA script */
|
875 |
if ( ! wp_script_is( 'gglcptch_api', 'registered' ) ) {
|
876 |
+
wp_register_script( 'gglcptch_api', $api_url, $deps, $gglcptch_plugin_info['Version'], true );
|
877 |
add_action( 'wp_footer', 'gglcptch_add_scripts' );
|
878 |
if (
|
879 |
'1' == $gglcptch_options['login_form'] ||
|
926 |
|
927 |
$gglcptch_remote_addr = filter_var( $_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP );
|
928 |
|
929 |
+
if (
|
930 |
+
isset( $gglcptch_options['recaptcha_version'] ) &&
|
931 |
+
in_array( $gglcptch_options['recaptcha_version'], array( 'v2', 'invisible' ) )
|
932 |
+
) {
|
933 |
if ( ! isset( $_POST["g-recaptcha-response"] ) ) {
|
934 |
return array(
|
935 |
'response' => false,
|
995 |
if ( ! function_exists( 'gglcptch_login_display' ) ) {
|
996 |
function gglcptch_login_display() {
|
997 |
global $gglcptch_options;
|
998 |
+
if ( isset( $gglcptch_options['recaptcha_version'] ) && in_array( $gglcptch_options['recaptcha_version'], array( 'v1', 'v2' ) ) ) {
|
999 |
+
if ( 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
1000 |
+
$from_width = 302;
|
1001 |
+
} else {
|
1002 |
+
$from_width = 320;
|
1003 |
+
if ( 'clean' == $gglcptch_options['theme'] )
|
1004 |
+
$from_width = 450;
|
1005 |
+
} ?>
|
1006 |
+
<style type="text/css" media="screen">
|
1007 |
+
.login-action-login #loginform,
|
1008 |
+
.login-action-lostpassword #lostpasswordform,
|
1009 |
+
.login-action-register #registerform {
|
1010 |
+
width: <?php echo $from_width; ?>px !important;
|
1011 |
+
}
|
1012 |
+
#login_error,
|
1013 |
+
.message {
|
1014 |
+
width: <?php echo $from_width + 20; ?>px !important;
|
1015 |
+
}
|
1016 |
+
.login-action-login #loginform .gglcptch,
|
1017 |
+
.login-action-lostpassword #lostpasswordform .gglcptch,
|
1018 |
+
.login-action-register #registerform .gglcptch {
|
1019 |
+
margin-bottom: 10px;
|
1020 |
+
}
|
1021 |
+
</style>
|
1022 |
+
<?php }
|
1023 |
+
echo gglcptch_display();
|
1024 |
return true;
|
1025 |
}
|
1026 |
}
|
1027 |
|
1028 |
+
/**
|
1029 |
+
* Retrieve the message that corresponds to its message code
|
1030 |
+
* @since 1.29
|
1031 |
+
* @param string $message_code used to switch the corresponding message
|
1032 |
+
* @param boolean $echo 'false' is default. If 'false' - returns a message, if 'true' - first, echo a message and then return it.
|
1033 |
+
* @return string $message Returned message.
|
1034 |
+
*/
|
1035 |
+
if ( ! function_exists( 'gglcptch_get_message' ) ) {
|
1036 |
+
function gglcptch_get_message( $message_code = 'incorrect', $echo = false ) {
|
1037 |
+
$message = '';
|
1038 |
+
|
1039 |
+
$messages = array(
|
1040 |
+
/* custom error */
|
1041 |
+
'RECAPTCHA_EMPTY_RESPONSE' => __( 'User response is missing.', 'google-captcha' ),
|
1042 |
+
/* v1 error */
|
1043 |
+
'invalid-site-private-key' => sprintf(
|
1044 |
+
'<strong>%s</strong>. <a target="_blank" href="https://www.google.com/recaptcha/admin#list">%s</a> %s.',
|
1045 |
+
__( 'Secret Key is invalid', 'google-captcha' ),
|
1046 |
+
__( 'Check your domain configuration', 'google-captcha' ),
|
1047 |
+
__( 'and enter it again', 'google-captcha' )
|
1048 |
+
),
|
1049 |
+
/* v2 error */
|
1050 |
+
'missing-input-secret' => __( 'Secret Key is missing.', 'google-captcha' ),
|
1051 |
+
'invalid-input-secret' => sprintf(
|
1052 |
+
'<strong>%s</strong>. <a target="_blank" href="https://www.google.com/recaptcha/admin#list">%s</a> %s.',
|
1053 |
+
__( 'Secret Key is invalid', 'google-captcha' ),
|
1054 |
+
__( 'Check your domain configuration', 'google-captcha' ),
|
1055 |
+
__( 'and enter it again', 'google-captcha' )
|
1056 |
+
),
|
1057 |
+
'incorrect-captcha-sol' => __( 'User response is invalid', 'google-captcha' ),
|
1058 |
+
'incorrect' => __( 'You have entered an incorrect reCAPTCHA value.', 'google-captcha' ),
|
1059 |
+
'multiple_blocks' => __( 'More than one reCAPTCHA has been found in the current form. Please remove all unnecessary reCAPTCHA fields to make it work properly.', 'google-captcha' )
|
1060 |
+
);
|
1061 |
+
|
1062 |
+
if ( isset( $messages[ $message_code ] ) ) {
|
1063 |
+
$message = $messages[ $message_code ];
|
1064 |
+
} else {
|
1065 |
+
$message = $messages[ 'incorrect' ];
|
1066 |
+
}
|
1067 |
+
|
1068 |
+
if ( $echo )
|
1069 |
+
echo $message;
|
1070 |
+
|
1071 |
+
return $message;
|
1072 |
+
}
|
1073 |
+
}
|
1074 |
+
|
1075 |
/* Check google captcha in login form */
|
1076 |
if ( ! function_exists( 'gglcptch_login_check' ) ) {
|
1077 |
function gglcptch_login_check( $user ) {
|
1083 |
return $user;
|
1084 |
}
|
1085 |
|
1086 |
+
$error_message = sprintf( '<strong>%s</strong>: %s', __( 'Error', 'google-captcha' ), gglcptch_get_message() );
|
1087 |
|
1088 |
if ( $result['reason'] == 'VERIFICATION_FAILED' ) {
|
1089 |
wp_clear_auth_cookie();
|
1104 |
/* Check google captcha in BWS Contact Form */
|
1105 |
if ( ! function_exists( 'gglcptch_recaptcha_check' ) ) {
|
1106 |
function gglcptch_recaptcha_check( $allow = true ) {
|
1107 |
+
|
1108 |
+
if ( ! $allow || is_string( $allow ) || is_wp_error( $allow ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1109 |
return $allow;
|
1110 |
}
|
1111 |
|
1114 |
if ( $result['response'] || $result['reason'] == 'ERROR_NO_KEYS' )
|
1115 |
return true;
|
1116 |
|
1117 |
+
$error_message = sprintf( '<strong>%s</strong>: %s', __( 'Error', 'google-captcha' ), gglcptch_get_message() );
|
1118 |
/**
|
1119 |
+
* Function 'cntctfrm_handle_captcha_filters' was added in Contact Form 4.0.2 (Free and Pro)
|
1120 |
+
* remove this condition. WP_Error is correct object for return.
|
1121 |
+
* @deprecated since 1.26
|
1122 |
+
* @todo remove after 01.08.2017
|
1123 |
*/
|
1124 |
+
if ( function_exists( 'cntctfrm_handle_captcha_filters' ) ) {
|
1125 |
+
$allow = new WP_Error();
|
1126 |
+
$allow->add( 'gglcptch_error', $error_message );
|
1127 |
+
} else {
|
1128 |
+
$allow = $error_message;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1129 |
}
|
1130 |
return $allow;
|
1131 |
}
|
1143 |
if ( ! is_wp_error( $allow ) )
|
1144 |
$allow = new WP_Error();
|
1145 |
|
1146 |
+
$error_message = sprintf( '<strong>%s</strong>: %s', __( 'Error', 'google-captcha' ), gglcptch_get_message() );
|
1147 |
+
|
1148 |
+
$allow->add( 'gglcptch_error', $error_message );
|
1149 |
return $allow;
|
1150 |
}
|
1151 |
}
|
1173 |
if ( $check_result['response'] || $check_result['reason'] == 'ERROR_NO_KEYS' )
|
1174 |
return $result;
|
1175 |
|
1176 |
+
$error_message = sprintf( '<strong>%s</strong>: %s', __( 'Error', 'google-captcha' ), gglcptch_get_message() );
|
1177 |
+
|
1178 |
$error = $result['errors'];
|
1179 |
+
$error->add( 'gglcptch_error', $error_message );
|
1180 |
return $result;
|
1181 |
}
|
1182 |
}
|
1202 |
if ( $result['response'] || $result['reason'] == 'ERROR_NO_KEYS' )
|
1203 |
return;
|
1204 |
|
1205 |
+
wp_die( sprintf( '<strong>%s</strong>: %s %s', __( 'Error', 'google-captcha' ), gglcptch_get_message(), __( 'Click the BACK button on your browser, and try again.', 'google-captcha' ) ) );
|
1206 |
}
|
1207 |
}
|
1208 |
|
1209 |
/* display google captcha in Contact form */
|
1210 |
if ( ! function_exists( 'gglcptch_cf_display' ) ) {
|
1211 |
function gglcptch_cf_display( $content, $form_slug = "" ) {
|
1212 |
+
return $content . gglcptch_display();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1213 |
}
|
1214 |
}
|
1215 |
|
1224 |
|
1225 |
if ( ! function_exists( 'gglcptch_test_keys' ) ) {
|
1226 |
function gglcptch_test_keys() {
|
1227 |
+
global $gglcptch_ip_in_whitelist;
|
1228 |
if ( isset( $_REQUEST['_wpnonce'] ) && wp_verify_nonce( $_REQUEST['_wpnonce'] , $_REQUEST['action'] ) ) {
|
1229 |
header( 'Content-Type: text/html' ); ?>
|
1230 |
<p><?php _e( 'Please, complete the captcha and submit "Test verification"', 'google-captcha' ); ?></p>
|
1231 |
+
<?php $gglcptch_ip_in_whitelist = false;
|
1232 |
+
echo gglcptch_display(); ?>
|
1233 |
<p>
|
1234 |
<input type="hidden" name="gglcptch_test_keys_verification-nonce" value="<?php echo wp_create_nonce( 'gglcptch_test_keys_verification' ); ?>" />
|
1235 |
<button id="gglcptch_test_keys_verification" name="action" class="button-primary" value="gglcptch_test_keys_verification"><?php _e( 'Test verification', 'google-captcha' ); ?></button>
|
1245 |
$result = gglcptch_check( true );
|
1246 |
|
1247 |
if ( ! $result['response'] ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1248 |
if ( isset( $result['reason'] ) ) {
|
1249 |
foreach ( (array)$result['reason'] as $error ) { ?>
|
1250 |
+
<div class="error gglcptch-test-results"><p>
|
1251 |
+
<?php gglcptch_get_message( $error, true ); ?>
|
1252 |
+
</p></div>
|
1253 |
<?php }
|
1254 |
}
|
1255 |
} else { ?>
|
includes/pro_banners.php
CHANGED
@@ -25,9 +25,8 @@ if ( ! function_exists( 'gglcptch_pro_block' ) ) {
|
|
25 |
</div>
|
26 |
</div>
|
27 |
<div class="bws_pro_version_tooltip">
|
28 |
-
<div class="bws_info"><?php _e( 'Unlock premium options by upgrading to Pro version', 'google-captcha' ); ?></div>
|
29 |
<a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=b850d949ccc1239cab0da315c3c822ab&pn=109&v=<?php echo $gglcptch_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Captcha Pro (reCAPTCHA)">
|
30 |
-
<?php _e( '
|
31 |
</a>
|
32 |
<div class="clear"></div>
|
33 |
</div>
|
@@ -74,7 +73,7 @@ if ( ! function_exists( 'gglcptch_additional_settings_banner' ) ) {
|
|
74 |
); ?>
|
75 |
<table class="form-table bws_pro_version">
|
76 |
<tr valign="top">
|
77 |
-
<th scope="row"><?php _e( 'reCAPTCHA
|
78 |
<td>
|
79 |
<select disabled="disabled">
|
80 |
<option selected="selected">English (US)</option>
|
@@ -87,7 +86,7 @@ if ( ! function_exists( 'gglcptch_additional_settings_banner' ) ) {
|
|
87 |
</tr>
|
88 |
<tr valign="top">
|
89 |
<th scope="row">
|
90 |
-
<?php _e( 'reCAPTCHA
|
91 |
<br/><span class="bws_info">(<?php _e( 'for version', 'google-captcha' ); ?> 2)</span>
|
92 |
</th>
|
93 |
<td><fieldset>
|
25 |
</div>
|
26 |
</div>
|
27 |
<div class="bws_pro_version_tooltip">
|
|
|
28 |
<a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=b850d949ccc1239cab0da315c3c822ab&pn=109&v=<?php echo $gglcptch_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Captcha Pro (reCAPTCHA)">
|
29 |
+
<?php _e( 'Upgrade to Pro', 'google-captcha' ); ?>
|
30 |
</a>
|
31 |
<div class="clear"></div>
|
32 |
</div>
|
73 |
); ?>
|
74 |
<table class="form-table bws_pro_version">
|
75 |
<tr valign="top">
|
76 |
+
<th scope="row"><?php _e( 'reCAPTCHA Language', 'google-captcha' ); ?></th>
|
77 |
<td>
|
78 |
<select disabled="disabled">
|
79 |
<option selected="selected">English (US)</option>
|
86 |
</tr>
|
87 |
<tr valign="top">
|
88 |
<th scope="row">
|
89 |
+
<?php _e( 'reCAPTCHA Size', 'google-captcha' ); ?>
|
90 |
<br/><span class="bws_info">(<?php _e( 'for version', 'google-captcha' ); ?> 2)</span>
|
91 |
</th>
|
92 |
<td><fieldset>
|
js/admin_script.js
CHANGED
@@ -1,14 +1,16 @@
|
|
1 |
( function( $ ) {
|
2 |
$( document ).ready( function() {
|
3 |
-
var gglcptch_version_not_selected = $( 'input[name="gglcptch_recaptcha_version"]:not(:checked)' ).val();
|
4 |
-
$( '.gglcptch_theme_' + gglcptch_version_not_selected ).hide();
|
5 |
|
6 |
$( 'input[name="gglcptch_recaptcha_version"]' ).change( function() {
|
7 |
-
var
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
|
12 |
|
13 |
$( 'input[name="gglcptch_private_key"], input[name="gglcptch_public_key"]' ).change( function() {
|
14 |
$( '.gglcptch_verified, #gglcptch-test-keys, #gglcptch-test-block' ).hide();
|
@@ -29,6 +31,7 @@
|
|
29 |
return false;
|
30 |
} );
|
31 |
|
|
|
32 |
$( 'input[name="gglcptch_add_to_whitelist_my_ip"]' ).change( function() {
|
33 |
if ( $( this ).is( ':checked' ) ) {
|
34 |
var my_ip = $( 'input[name="gglcptch_add_to_whitelist_my_ip_value"]' ).val();
|
@@ -46,12 +49,15 @@
|
|
46 |
$( this ).closest( 'p' ).after( '<div id="gglcptch-test-block" />' );
|
47 |
|
48 |
$( '.gglcptch-test-results' ).remove();
|
49 |
-
|
50 |
$( '#gglcptch-test-block' ).load( $( this ).prop( 'href' ), function() {
|
51 |
-
$( '.gglcptch_v1, .gglcptch_v2' ).each( function() {
|
52 |
var container = $( this ).find( '.gglcptch_recaptcha' ).attr( 'id' );
|
53 |
if ( $( this ).is( ':visible' ) ) {
|
54 |
gglcptch.display( container );
|
|
|
|
|
|
|
|
|
55 |
}
|
56 |
} );
|
57 |
} );
|
@@ -85,7 +91,10 @@
|
|
85 |
$( '.gglcptch_verified' ).show();
|
86 |
} else {
|
87 |
$( '.gglcptch_verified' ).hide();
|
88 |
-
if (
|
|
|
|
|
|
|
89 |
$( '#gglcptch-test-keys' ).show();
|
90 |
}
|
91 |
}
|
1 |
( function( $ ) {
|
2 |
$( document ).ready( function() {
|
|
|
|
|
3 |
|
4 |
$( 'input[name="gglcptch_recaptcha_version"]' ).change( function() {
|
5 |
+
var versions = $( 'input[name="gglcptch_recaptcha_version"]' );
|
6 |
+
versions.each( function() {
|
7 |
+
if ( $( this ).is( ':checked' ) ) {
|
8 |
+
$( '.gglcptch_theme_' + $( this ).val() ).show();
|
9 |
+
} else {
|
10 |
+
$( '.gglcptch_theme_' + $( this ).val() ).hide();
|
11 |
+
}
|
12 |
+
} );
|
13 |
+
} ).trigger( 'change' );
|
14 |
|
15 |
$( 'input[name="gglcptch_private_key"], input[name="gglcptch_public_key"]' ).change( function() {
|
16 |
$( '.gglcptch_verified, #gglcptch-test-keys, #gglcptch-test-block' ).hide();
|
31 |
return false;
|
32 |
} );
|
33 |
|
34 |
+
/* add my ip to the whitelist */
|
35 |
$( 'input[name="gglcptch_add_to_whitelist_my_ip"]' ).change( function() {
|
36 |
if ( $( this ).is( ':checked' ) ) {
|
37 |
var my_ip = $( 'input[name="gglcptch_add_to_whitelist_my_ip_value"]' ).val();
|
49 |
$( this ).closest( 'p' ).after( '<div id="gglcptch-test-block" />' );
|
50 |
|
51 |
$( '.gglcptch-test-results' ).remove();
|
|
|
52 |
$( '#gglcptch-test-block' ).load( $( this ).prop( 'href' ), function() {
|
53 |
+
$( '.gglcptch_v1, .gglcptch_v2, .gglcptch_invisible' ).each( function() {
|
54 |
var container = $( this ).find( '.gglcptch_recaptcha' ).attr( 'id' );
|
55 |
if ( $( this ).is( ':visible' ) ) {
|
56 |
gglcptch.display( container );
|
57 |
+
if ( $( this ).hasClass( 'gglcptch_invisible' ) ) {
|
58 |
+
var gglcptch_index = $( this ).find( '.gglcptch_recaptcha' ).data( 'gglcptch_index' );
|
59 |
+
grecaptcha.execute( gglcptch_index );
|
60 |
+
}
|
61 |
}
|
62 |
} );
|
63 |
} );
|
91 |
$( '.gglcptch_verified' ).show();
|
92 |
} else {
|
93 |
$( '.gglcptch_verified' ).hide();
|
94 |
+
if (
|
95 |
+
'v2' == $( 'input[name="gglcptch_recaptcha_version"]:checked' ).val() ||
|
96 |
+
'invisible' == $( 'input[name="gglcptch_recaptcha_version"]:checked' ).val()
|
97 |
+
) {
|
98 |
$( '#gglcptch-test-keys' ).show();
|
99 |
}
|
100 |
}
|
js/pre-api-script.js
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
;var gglcptch_pre = gglcptch_pre || {};
|
2 |
+
gglcptch_pre.is_loaded = false;
|
3 |
+
|
4 |
+
function gglcptch_alert_fail_message( e ) {
|
5 |
+
if ( ! gglcptch_pre.is_loaded ) {
|
6 |
+
e.preventDefault();
|
7 |
+
e.stopImmediatePropagation();
|
8 |
+
alert( gglcptch_pre.messages.timeout );
|
9 |
+
}
|
10 |
+
}
|
11 |
+
|
12 |
+
function gglcptch_onload_callback() {
|
13 |
+
( function( $ ) {
|
14 |
+
gglcptch_pre.is_loaded = true;
|
15 |
+
$( document ).ready( function() {
|
16 |
+
$( 'form' ).find( 'input:submit, button' ).filter('[data-gglcptch_disabled]')
|
17 |
+
.removeAttr( 'disabled' )
|
18 |
+
.removeAttr( 'data-gglcptch_disabled' )
|
19 |
+
.each( function() {
|
20 |
+
$( this ).restoreTitle();
|
21 |
+
} );
|
22 |
+
} );
|
23 |
+
} )( jQuery );
|
24 |
+
}
|
25 |
+
|
26 |
+
( function( $ ) {
|
27 |
+
$.fn.storeTitle = function() {
|
28 |
+
var title = ( typeof $( this ).attr( 'title' ) != 'undefined' ) ? $( this ).attr( 'title' ) : '';
|
29 |
+
this.attr( 'data-storedTitle', title );
|
30 |
+
}
|
31 |
+
|
32 |
+
$.fn.restoreTitle = function() {
|
33 |
+
var title = this.attr( 'data-storedTitle' );
|
34 |
+
if ( '' != title ) {
|
35 |
+
this.attr( 'title' ) = title;
|
36 |
+
} else {
|
37 |
+
this.removeAttr( 'title' );
|
38 |
+
}
|
39 |
+
this.removeAttr( 'data-storedTitle' );
|
40 |
+
}
|
41 |
+
|
42 |
+
$( document ).ready( function() {
|
43 |
+
if ( ! gglcptch_pre.is_loaded ) {
|
44 |
+
$( '.gglcptch_v2, .gglcptch_invisible' ).each( function() {
|
45 |
+
$( this ).closest( 'form' )
|
46 |
+
.find( 'input:submit, button' ).filter( ':not(:disabled)' )
|
47 |
+
.attr( 'disabled', 'disabled' ).attr( 'data-gglcptch_disabled', 'true' )
|
48 |
+
.each( function() {
|
49 |
+
$( this ).storeTitle();
|
50 |
+
$( this ).attr( 'title', gglcptch_pre.messages.in_progress );
|
51 |
+
} );
|
52 |
+
} );
|
53 |
+
}
|
54 |
+
} );
|
55 |
+
|
56 |
+
$( window ).on( 'load', function() {
|
57 |
+
if ( ! gglcptch_pre.is_loaded ) {
|
58 |
+
$( '[data-gglcptch_disabled]' ).removeAttr( 'disabled' ).one( 'click', gglcptch_alert_fail_message );
|
59 |
+
}
|
60 |
+
} );
|
61 |
+
} )( jQuery );
|
js/script.js
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
/*
|
6 |
* display reCaptcha for plugin`s block
|
7 |
*/
|
8 |
-
$( '.gglcptch_v1, .gglcptch_v2' ).each( function() {
|
9 |
var container = $( this ).find( '.gglcptch_recaptcha' );
|
10 |
if (
|
11 |
container.is( ':empty' ) &&
|
@@ -22,7 +22,7 @@
|
|
22 |
* we have disabled the connection to Google reCaptcha API from other plugins
|
23 |
* via plugin`s php-functionality
|
24 |
*/
|
25 |
-
if ( gglcptch.options.version
|
26 |
$( '.g-recaptcha' ).each( function() {
|
27 |
/* reCAPTCHA will be generated into the empty block only */
|
28 |
if ( $( this ).html() === '' && $( this ).text() === '' ) {
|
@@ -93,6 +93,53 @@
|
|
93 |
return;
|
94 |
}
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
var gglcptch_version = gglcptch.options.version;
|
97 |
v1_add_to_last_element = v1_add_to_last_element || false;
|
98 |
|
@@ -101,24 +148,97 @@
|
|
101 |
Recaptcha.create( gglcptch.options.sitekey, container, { 'theme' : gglcptch.options.theme } );
|
102 |
}
|
103 |
}
|
|
|
104 |
if ( 'v2' == gglcptch_version ) {
|
105 |
var parameters = params ? params : { 'sitekey' : gglcptch.options.sitekey, 'theme' : gglcptch.options.theme },
|
106 |
gglcptch_index = grecaptcha.render( container, parameters );
|
107 |
$( '#' + container ).data( 'gglcptch_index', gglcptch_index );
|
108 |
}
|
109 |
-
};
|
110 |
|
111 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
|
113 |
$( document ).ready( function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
|
115 |
$( '#recaptcha_widget_div' ).on( 'input paste change', '#recaptcha_response_field', cleanError );
|
116 |
|
117 |
-
$( 'form' ).not( '[name="loginform"], [name="registerform"], [name="lostpasswordform"], #setupform, .cntctfrmpr_contact_form, .cntctfrm_contact_form, #commentform, #gglcptch_admin_settings_page' ).submit( function( e ) {
|
118 |
var $form = $( this ),
|
119 |
$gglcptch = $form.find( '.gglcptch' ),
|
120 |
$captcha = $gglcptch.filter( '.gglcptch_v1' ).find( '.gglcptch_recaptcha:visible' ),
|
121 |
$captcha_v2 = $gglcptch.filter( '.gglcptch_v2' ).find( '.gglcptch_recaptcha:visible' );
|
|
|
122 |
if ( $captcha.length ) {
|
123 |
if ( $gglcptch.find( 'input[name="gglcptch_test_enable_js_field"]:hidden' ).length == 0 ) {
|
124 |
$gglcptch.append( '<input type="hidden" value="' + gglcptch.vars.nonce + '" name="gglcptch_test_enable_js_field" />' );
|
@@ -151,7 +271,7 @@
|
|
151 |
$captcha.after( '<label id="gglcptch_error">' + request.status + ' ' + error + '</label>' );
|
152 |
}
|
153 |
$( '#recaptcha_reload' ).trigger( 'click' );
|
154 |
-
e.preventDefault ? e.preventDefault() : (e.returnValue = false);
|
155 |
return false;
|
156 |
}
|
157 |
} );
|
@@ -176,12 +296,13 @@
|
|
176 |
if ( data == 'error' ) {
|
177 |
if ( $captcha_v2.next( '#gglcptch_error' ).length == 0 ) {
|
178 |
$captcha_v2.after( '<label id="gglcptch_error">' + gglcptch.vars.error_msg + '</label>' );
|
179 |
-
$( "#gglcptch_error" ).fadeOut(
|
180 |
$( "#gglcptch_error" ).remove();
|
181 |
} );
|
182 |
-
$( 'html, body' ).animate({ scrollTop: $captcha_v2.offset().top - 50 }, 500);
|
183 |
}
|
184 |
-
|
|
|
185 |
return false;
|
186 |
}
|
187 |
},
|
@@ -189,7 +310,47 @@
|
|
189 |
if ( $captcha_v2.next( '#gglcptch_error' ).length == 0 ) {
|
190 |
$captcha_v2.after( '<label id="gglcptch_error">' + request.status + ' ' + error + '</label>' );
|
191 |
}
|
192 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
return false;
|
194 |
}
|
195 |
} );
|
5 |
/*
|
6 |
* display reCaptcha for plugin`s block
|
7 |
*/
|
8 |
+
$( '.gglcptch_v1, .gglcptch_v2, .gglcptch_invisible' ).each( function() {
|
9 |
var container = $( this ).find( '.gglcptch_recaptcha' );
|
10 |
if (
|
11 |
container.is( ':empty' ) &&
|
22 |
* we have disabled the connection to Google reCaptcha API from other plugins
|
23 |
* via plugin`s php-functionality
|
24 |
*/
|
25 |
+
if ( 'v2' == gglcptch.options.version || 'invisible' == gglcptch.options.version ) {
|
26 |
$( '.g-recaptcha' ).each( function() {
|
27 |
/* reCAPTCHA will be generated into the empty block only */
|
28 |
if ( $( this ).html() === '' && $( this ).text() === '' ) {
|
93 |
return;
|
94 |
}
|
95 |
|
96 |
+
function storeEvents( el ) {
|
97 |
+
var target = el,
|
98 |
+
events = $._data( el.get(0), 'events' );
|
99 |
+
/* restoring events */
|
100 |
+
if ( typeof events != 'undefined' ) {
|
101 |
+
var storedEvents = {};
|
102 |
+
$.extend( true, storedEvents, events );
|
103 |
+
target.off();
|
104 |
+
target.data('storedEvents', storedEvents );
|
105 |
+
}
|
106 |
+
}
|
107 |
+
|
108 |
+
function restoreEvents( el ) {
|
109 |
+
var target = el,
|
110 |
+
events = target.data('storedEvents');
|
111 |
+
/* restoring events */
|
112 |
+
if ( typeof events != 'undefined' ) {
|
113 |
+
for ( var event in events ) {
|
114 |
+
for ( var i = 0; i < events[event].length; i++ ) {
|
115 |
+
target.on( event, events[event][i] );
|
116 |
+
}
|
117 |
+
}
|
118 |
+
}
|
119 |
+
/* reset stored events */
|
120 |
+
target.removeData( 'storedEvents' );
|
121 |
+
}
|
122 |
+
|
123 |
+
function storeOnSubmit( form, gglcptch_index ) {
|
124 |
+
form.on( 'submit', function( e ) {
|
125 |
+
if ( '' == form.find('.g-recaptcha-response').val() ) {
|
126 |
+
e.preventDefault();
|
127 |
+
e.stopImmediatePropagation();
|
128 |
+
targetObject = $( e.target || e.srcElement || e.targetObject );
|
129 |
+
targetEvent = e.type;
|
130 |
+
grecaptcha.execute( gglcptch_index );
|
131 |
+
}
|
132 |
+
} ).find( 'input:submit, button' ).on( 'click', function( e ) {
|
133 |
+
if ( '' == form.find('.g-recaptcha-response').val() ) {
|
134 |
+
e.preventDefault();
|
135 |
+
e.stopImmediatePropagation();
|
136 |
+
targetObject = $( e.target || e.srcElement || e.targetObject );
|
137 |
+
targetEvent = e.type;
|
138 |
+
grecaptcha.execute( gglcptch_index );
|
139 |
+
}
|
140 |
+
} );
|
141 |
+
}
|
142 |
+
|
143 |
var gglcptch_version = gglcptch.options.version;
|
144 |
v1_add_to_last_element = v1_add_to_last_element || false;
|
145 |
|
148 |
Recaptcha.create( gglcptch.options.sitekey, container, { 'theme' : gglcptch.options.theme } );
|
149 |
}
|
150 |
}
|
151 |
+
|
152 |
if ( 'v2' == gglcptch_version ) {
|
153 |
var parameters = params ? params : { 'sitekey' : gglcptch.options.sitekey, 'theme' : gglcptch.options.theme },
|
154 |
gglcptch_index = grecaptcha.render( container, parameters );
|
155 |
$( '#' + container ).data( 'gglcptch_index', gglcptch_index );
|
156 |
}
|
|
|
157 |
|
158 |
+
if ( 'invisible' == gglcptch_version ) {
|
159 |
+
var block = $( '#' + container ),
|
160 |
+
form = block.closest( 'form' ),
|
161 |
+
parameters = params ? params : { 'sitekey' : gglcptch.options.sitekey, 'size' : 'invisible' },
|
162 |
+
targetObject = false,
|
163 |
+
targetEvent = false;
|
164 |
+
|
165 |
+
if ( form.length ) {
|
166 |
+
storeEvents( form );
|
167 |
+
form.find( 'button, input:submit' ).each( function() {
|
168 |
+
storeEvents( $( this ) );
|
169 |
+
} );
|
170 |
+
|
171 |
+
/* Callback function works only in frontend */
|
172 |
+
if ( 'gglcptch_admin_settings_page' != form.attr( 'id' ) ) {
|
173 |
+
parameters['callback'] = function( token ) {
|
174 |
+
form.off();
|
175 |
+
restoreEvents( form );
|
176 |
+
form.find( 'button, input:submit' ).off().each( function() {
|
177 |
+
restoreEvents( $( this ) );
|
178 |
+
} );
|
179 |
+
if ( targetObject && targetEvent ) {
|
180 |
+
targetObject.trigger( targetEvent );
|
181 |
+
}
|
182 |
+
form.find( 'button, input:submit' ).each( function() {
|
183 |
+
storeEvents( $( this ) );
|
184 |
+
} );
|
185 |
+
storeEvents( form );
|
186 |
+
storeOnSubmit( form, gglcptch_index );
|
187 |
+
grecaptcha.reset( gglcptch_index );
|
188 |
+
};
|
189 |
+
}
|
190 |
+
|
191 |
+
var gglcptch_index = grecaptcha.render( container, parameters );
|
192 |
+
block.data( { 'gglcptch_index' : gglcptch_index } );
|
193 |
+
|
194 |
+
if ( 'gglcptch_admin_settings_page' != form.attr( 'id' ) ) {
|
195 |
+
storeOnSubmit( form, gglcptch_index );
|
196 |
+
}
|
197 |
+
}
|
198 |
+
}
|
199 |
+
};
|
200 |
|
201 |
$( document ).ready( function() {
|
202 |
+
var tryCounter = 0,
|
203 |
+
/* launching timer so that the function keeps trying to display the reCAPTCHA again and again until google js api is loaded */
|
204 |
+
gglcptch_timer = setInterval( function() {
|
205 |
+
if ( typeof Recaptcha != "undefined" || typeof grecaptcha != "undefined" ) {
|
206 |
+
try {
|
207 |
+
gglcptch.prepare();
|
208 |
+
} catch ( e ) {
|
209 |
+
console.log( 'Unexpected error occurred: ', e );
|
210 |
+
}
|
211 |
+
clearInterval( gglcptch_timer );
|
212 |
+
}
|
213 |
+
tryCounter++;
|
214 |
+
/* Stop trying after 10 times */
|
215 |
+
if ( tryCounter >= 10 ) {
|
216 |
+
clearInterval( gglcptch_timer );
|
217 |
+
}
|
218 |
+
}, 1000 );
|
219 |
+
|
220 |
+
function gglcptch_prepare() {
|
221 |
+
if ( typeof Recaptcha != "undefined" || typeof grecaptcha != "undefined" ) {
|
222 |
+
try {
|
223 |
+
gglcptch.prepare();
|
224 |
+
} catch ( err ) {
|
225 |
+
console.log( err );
|
226 |
+
}
|
227 |
+
}
|
228 |
+
}
|
229 |
+
|
230 |
+
$( window ).on( 'load', gglcptch_prepare );
|
231 |
+
|
232 |
+
$( '.woocommerce' ).on( 'click', '.woocommerce-tabs', gglcptch_prepare );
|
233 |
|
234 |
$( '#recaptcha_widget_div' ).on( 'input paste change', '#recaptcha_response_field', cleanError );
|
235 |
|
236 |
+
$( 'form' ).not( '[name="loginform"], [name="registerform"], [name="lostpasswordform"], #setupform, .cntctfrmpr_contact_form, .cntctfrm_contact_form, #commentform, #gglcptch_admin_settings_page, #crrntl-user-info' + gglcptch.vars.excluded_forms ).submit( function( e ) {
|
237 |
var $form = $( this ),
|
238 |
$gglcptch = $form.find( '.gglcptch' ),
|
239 |
$captcha = $gglcptch.filter( '.gglcptch_v1' ).find( '.gglcptch_recaptcha:visible' ),
|
240 |
$captcha_v2 = $gglcptch.filter( '.gglcptch_v2' ).find( '.gglcptch_recaptcha:visible' );
|
241 |
+
$captcha_invisible = $gglcptch.filter( '.gglcptch_invisible' ).find( '.gglcptch_recaptcha:visible' );
|
242 |
if ( $captcha.length ) {
|
243 |
if ( $gglcptch.find( 'input[name="gglcptch_test_enable_js_field"]:hidden' ).length == 0 ) {
|
244 |
$gglcptch.append( '<input type="hidden" value="' + gglcptch.vars.nonce + '" name="gglcptch_test_enable_js_field" />' );
|
271 |
$captcha.after( '<label id="gglcptch_error">' + request.status + ' ' + error + '</label>' );
|
272 |
}
|
273 |
$( '#recaptcha_reload' ).trigger( 'click' );
|
274 |
+
e.preventDefault ? e.preventDefault() : ( e.returnValue = false );
|
275 |
return false;
|
276 |
}
|
277 |
} );
|
296 |
if ( data == 'error' ) {
|
297 |
if ( $captcha_v2.next( '#gglcptch_error' ).length == 0 ) {
|
298 |
$captcha_v2.after( '<label id="gglcptch_error">' + gglcptch.vars.error_msg + '</label>' );
|
299 |
+
$( "#gglcptch_error" ).fadeOut( 15000, function() {
|
300 |
$( "#gglcptch_error" ).remove();
|
301 |
} );
|
302 |
+
$( 'html, body' ).animate( { scrollTop: $captcha_v2.offset().top - 50 }, 500);
|
303 |
}
|
304 |
+
grecaptcha.reset( $captcha_v2.data( 'gglcptch_index' ) );
|
305 |
+
e.preventDefault ? e.preventDefault() : ( e.returnValue = false );
|
306 |
return false;
|
307 |
}
|
308 |
},
|
310 |
if ( $captcha_v2.next( '#gglcptch_error' ).length == 0 ) {
|
311 |
$captcha_v2.after( '<label id="gglcptch_error">' + request.status + ' ' + error + '</label>' );
|
312 |
}
|
313 |
+
grecaptcha.reset( $captcha_v2.data( 'gglcptch_index' ) );
|
314 |
+
e.preventDefault ? e.preventDefault() : ( e.returnValue = false );
|
315 |
+
return false;
|
316 |
+
}
|
317 |
+
} );
|
318 |
+
} else if ( $captcha_invisible.length ) {
|
319 |
+
if ( $gglcptch.find( 'input[name="gglcptch_test_enable_js_field"]:hidden' ).length == 0 ) {
|
320 |
+
$gglcptch.append( '<input type="hidden" value="' + gglcptch.vars.nonce + '" name="gglcptch_test_enable_js_field" />' );
|
321 |
+
}
|
322 |
+
$.ajax( {
|
323 |
+
async : false,
|
324 |
+
cache : false,
|
325 |
+
type : 'POST',
|
326 |
+
url : gglcptch.vars.ajaxurl,
|
327 |
+
headers : {
|
328 |
+
'Content-Type' : 'application/x-www-form-urlencoded'
|
329 |
+
},
|
330 |
+
data : {
|
331 |
+
action: 'gglcptch_captcha_check',
|
332 |
+
'g-recaptcha-response' : $form.find( '.g-recaptcha-response' ).val()
|
333 |
+
},
|
334 |
+
success: function( data ) {
|
335 |
+
if ( data == 'error' ) {
|
336 |
+
if ( $captcha_invisible.next( '#gglcptch_error' ).length == 0 ) {
|
337 |
+
$captcha_invisible.after( '<label id="gglcptch_error">' + gglcptch.vars.error_msg + '</label>' );
|
338 |
+
$( "#gglcptch_error" ).fadeOut( 15000, function() {
|
339 |
+
$( "#gglcptch_error" ).remove();
|
340 |
+
} );
|
341 |
+
$( 'html, body' ).animate( { scrollTop: $captcha_invisible.offset().top - 50 }, 500);
|
342 |
+
}
|
343 |
+
grecaptcha.reset( $captcha_invisible.data( 'gglcptch_index' ) );
|
344 |
+
e.preventDefault ? e.preventDefault() : ( e.returnValue = false );
|
345 |
+
return false;
|
346 |
+
}
|
347 |
+
},
|
348 |
+
error: function( request, status, error ) {
|
349 |
+
if ( $captcha_invisible.next( '#gglcptch_error' ).length == 0 ) {
|
350 |
+
$captcha_invisible.after( '<label id="gglcptch_error">' + request.status + ' ' + error + '</label>' );
|
351 |
+
}
|
352 |
+
grecaptcha.reset( $captcha_invisible.data( 'gglcptch_index' ) );
|
353 |
+
e.preventDefault ? e.preventDefault() : ( e.returnValue = false );
|
354 |
return false;
|
355 |
}
|
356 |
} );
|
languages/google-captcha-ar.mo
CHANGED
Binary file
|
languages/google-captcha-ar.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: SAID MOULLA\n"
|
9 |
"Language: uk-UA\n"
|
@@ -21,92 +21,105 @@ msgstr ""
|
|
21 |
"X-Loco-Target-Locale: uk_UA\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
-
#: google-captcha.php:34 google-captcha.php:
|
25 |
msgid "Google Captcha Settings"
|
26 |
msgstr "إعدادات Google Captcha"
|
27 |
|
28 |
-
#: google-captcha.php:
|
29 |
-
msgid "
|
30 |
-
msgstr "
|
31 |
|
32 |
-
#: google-captcha.php:
|
33 |
msgid ""
|
34 |
-
"
|
35 |
-
"
|
36 |
-
"blocks."
|
37 |
msgstr ""
|
38 |
-
"لقد تم اكتشاف أكثر من (كابتشا) في النموذج الحالي، وهذا ما سيتسبب في عدم "
|
39 |
-
"عملها بشكل صحيح، لذا قم بإزالة كافة (الكابتشا) التي لا حاجة لها."
|
40 |
|
41 |
-
#: google-captcha.php:
|
42 |
-
msgid "
|
43 |
-
msgstr "
|
44 |
|
45 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
46 |
msgid "You are in the whitelist"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: google-captcha.php:
|
50 |
-
|
|
|
51 |
msgstr "مفتاح الموقع"
|
52 |
|
53 |
-
#: google-captcha.php:
|
54 |
msgid "Secret Key"
|
55 |
msgstr "المفتاح السري"
|
56 |
|
57 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
msgid "Login form"
|
59 |
msgstr "فورم تسجيل الدخول"
|
60 |
|
61 |
-
#: google-captcha.php:
|
62 |
msgid "Registration form"
|
63 |
msgstr "فورم التسجيل"
|
64 |
|
65 |
-
#: google-captcha.php:
|
66 |
msgid "Reset password form"
|
67 |
msgstr "فورم إعادة تعيين كلمة السر"
|
68 |
|
69 |
-
#: google-captcha.php:
|
70 |
msgid "Comments form"
|
71 |
msgstr "فورم التعليقات"
|
72 |
|
73 |
-
#: google-captcha.php:
|
74 |
msgid "Enter site key"
|
75 |
msgstr "أدخل مفتاح الموقع"
|
76 |
|
77 |
-
#: google-captcha.php:
|
78 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
79 |
msgstr "تحذير: الكابتشا لن تعمل في حالة عدم إدخال المفاتيح."
|
80 |
|
81 |
-
#: google-captcha.php:
|
82 |
msgid "Enter secret key"
|
83 |
msgstr "أدخل المفتاح السري"
|
84 |
|
85 |
-
#: google-captcha.php:
|
86 |
msgid "Settings saved"
|
87 |
msgstr "تم حفظ الإعدادات"
|
88 |
|
89 |
-
#: google-captcha.php:
|
90 |
msgid "All plugin settings were restored"
|
91 |
msgstr "لقد تم استعادة كافة إعدادات الإضافة"
|
92 |
|
93 |
-
#: google-captcha.php:
|
94 |
msgid "Settings"
|
95 |
msgstr "إعدادات"
|
96 |
|
97 |
-
#: google-captcha.php:
|
98 |
msgid "Whitelist"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: google-captcha.php:
|
102 |
msgid "Custom code"
|
103 |
msgstr "شفرة مخصصة"
|
104 |
|
105 |
-
#: google-captcha.php:
|
106 |
msgid "Go PRO"
|
107 |
msgstr "الترقية إلى النسخة المتقدمة"
|
108 |
|
109 |
-
#: google-captcha.php:
|
110 |
msgid ""
|
111 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
112 |
"version 1 features."
|
@@ -114,7 +127,7 @@ msgstr ""
|
|
114 |
"يمكن استعراض (كابتشا) واحدة فقط في هذه الصفحة، وهي مرتبطة بمميزات النسخة "
|
115 |
"الأولى منها"
|
116 |
|
117 |
-
#: google-captcha.php:
|
118 |
#, php-format
|
119 |
msgid ""
|
120 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -123,7 +136,7 @@ msgstr ""
|
|
123 |
"إذا كنت ترغب في تفعيل خاصية التحقق بالصورة (الكابتشا) في الصفحة أو التدوينة، "
|
124 |
"الرجاء استخدام الزر %s"
|
125 |
|
126 |
-
#: google-captcha.php:
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -136,182 +149,188 @@ msgstr ""
|
|
136 |
"الزر يمكنك إضافة (الكابتشا) في النموذج الخاص بك، عن طريق استخدام الشفرة "
|
137 |
"التالية %s"
|
138 |
|
139 |
-
#: google-captcha.php:
|
140 |
msgid "Authentication"
|
141 |
msgstr "المصادقة"
|
142 |
|
143 |
-
#: google-captcha.php:
|
144 |
#, php-format
|
145 |
-
msgid "
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
msgid "Enter site key and secret key, that you get after registration"
|
150 |
-
msgstr "أدخل مفتاح الموقع والمفتاح السري، الذي حصلت عليه بعد التسجيل."
|
151 |
|
152 |
-
#: google-captcha.php:
|
153 |
msgid "Test Keys"
|
154 |
msgstr "اختبار المفاتيح"
|
155 |
|
156 |
-
#: google-captcha.php:
|
157 |
msgid "Options"
|
158 |
msgstr "خيارات"
|
159 |
|
160 |
-
#: google-captcha.php:
|
161 |
msgid "Enable reCAPTCHA for"
|
162 |
msgstr "تفعيل التحقق بالصورة ل"
|
163 |
|
164 |
-
#: google-captcha.php:
|
165 |
msgid "WordPress default"
|
166 |
msgstr "الافتراضي في الووردبريس"
|
167 |
|
168 |
-
#: google-captcha.php:
|
169 |
msgid "This option is available only for network or for main blog"
|
170 |
msgstr "هذا الخيار متوفر فقط للشبكات أو للمدونة الرئيسية"
|
171 |
|
172 |
-
#: google-captcha.php:
|
173 |
msgid "Plugins"
|
174 |
msgstr "الإضافات"
|
175 |
|
176 |
-
#: google-captcha.php:
|
|
|
177 |
#, php-format
|
178 |
msgid "You should %s to use this functionality"
|
179 |
msgstr "يتوجب عليك %s لاستخدام هذه الخصائص"
|
180 |
|
181 |
-
#: google-captcha.php:
|
182 |
msgid "activate"
|
183 |
msgstr "تفعيل"
|
184 |
|
185 |
-
#: google-captcha.php:
|
186 |
msgid "for network"
|
187 |
msgstr "للشبكة"
|
188 |
|
189 |
-
#: google-captcha.php:
|
190 |
msgid "download"
|
191 |
msgstr "تحميل"
|
192 |
|
193 |
-
#: google-captcha.php:
|
194 |
msgid "Check off for adding captcha to forms on their settings pages"
|
195 |
msgstr "اختر \"تعطيل\" لإضافة \"الكابتشا\" إلى النماذج في صفحات إعداداتها"
|
196 |
|
197 |
-
#: google-captcha.php:
|
198 |
#, php-format
|
199 |
msgid ""
|
200 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
201 |
msgstr "إذا كنت تود استخدام (الكابتشا) في نموذج مخصص يرجى الإطلاع على %s"
|
202 |
|
203 |
-
#: google-captcha.php:
|
204 |
msgid "FAQ"
|
205 |
msgstr "أسئلة شائعة"
|
206 |
|
207 |
-
#: google-captcha.php:
|
208 |
-
|
|
|
209 |
msgstr "إخفاء (الكابتشا) في التعليقات ل"
|
210 |
|
211 |
-
#: google-captcha.php:
|
212 |
#, fuzzy
|
213 |
-
msgid "Whitelist
|
214 |
msgstr "اختبار التحقق"
|
215 |
|
216 |
-
#: google-captcha.php:
|
217 |
msgid ""
|
218 |
-
"This message will be displayed instead of the reCAPTCHA
|
219 |
"added to the whitelist"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: google-captcha.php:
|
223 |
-
|
|
|
224 |
msgstr "نسخة الكابتشا"
|
225 |
|
226 |
-
#: google-captcha.php:
|
227 |
-
|
228 |
-
|
229 |
-
|
|
|
230 |
|
231 |
-
#: google-captcha.php:
|
232 |
-
|
|
|
233 |
msgstr "استايل الكابتشا:"
|
234 |
|
235 |
-
#: google-captcha.php:
|
236 |
msgid "for version"
|
237 |
msgstr "للنسخة"
|
238 |
|
239 |
-
#: google-captcha.php:
|
240 |
msgid "Save Changes"
|
241 |
msgstr "حفظ التغييرات"
|
242 |
|
243 |
-
#: google-captcha.php:
|
244 |
msgid "To use Google Captcha you must get the keys from"
|
245 |
msgstr "لتتمكن من استخدام Google Captcha لابد من الحصول على المفاتيح من"
|
246 |
|
247 |
-
#: google-captcha.php:
|
248 |
msgid "here"
|
249 |
msgstr "هنا"
|
250 |
|
251 |
-
#: google-captcha.php:
|
252 |
msgid "and enter them on the"
|
253 |
msgstr "ثم أدخلهم في"
|
254 |
|
255 |
-
#: google-captcha.php:
|
256 |
msgid "plugin setting page"
|
257 |
msgstr "صفحة إعدادات الإضافة"
|
258 |
|
259 |
-
#: google-captcha.php:
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
#: google-captcha.php:1000 google-captcha.php:1048 google-captcha.php:1078
|
264 |
-
#: google-captcha.php:1107
|
265 |
-
msgid "You have entered an incorrect reCAPTCHA value"
|
266 |
-
msgstr "لقد أدخلت الرمز بشكل خاطئ"
|
267 |
-
|
268 |
-
#: google-captcha.php:1078 google-captcha.php:1107 google-captcha.php:1133
|
269 |
-
msgid "ERROR"
|
270 |
-
msgstr "خطأ"
|
271 |
-
|
272 |
-
#: google-captcha.php:1133
|
273 |
-
msgid ""
|
274 |
-
"You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
|
275 |
-
"browser, and try again."
|
276 |
-
msgstr "خطأ: لقد أدخلت الرمز بشكل خاطئ. اضغط زر الرجوع في المتصفح وحاول مجددا."
|
277 |
-
|
278 |
-
#: google-captcha.php:1171
|
279 |
-
msgid "Please, complete the captcha and submit \"Test verification\""
|
280 |
-
msgstr "الرجاء اتمام الرمز واعتماد \"اختبار التحقق\""
|
281 |
-
|
282 |
-
#: google-captcha.php:1175
|
283 |
-
msgid "Test verification"
|
284 |
-
msgstr "اختبار التحقق"
|
285 |
-
|
286 |
-
#: google-captcha.php:1190 google-captcha.php:1199
|
287 |
-
msgid "The user response was missing"
|
288 |
msgstr "إجابة المستخدم غير موجودة"
|
289 |
|
290 |
-
#: google-captcha.php:
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
#: google-captcha.php:1195 google-captcha.php:1204
|
295 |
-
msgid "The Secret Key is invalid"
|
296 |
msgstr "المفتاح السري غير صحيح"
|
297 |
|
298 |
-
#: google-captcha.php:
|
299 |
msgid "Check your domain configuration"
|
300 |
msgstr "تحقق من إعدادات النطاق الخاص بك"
|
301 |
|
302 |
-
#: google-captcha.php:
|
303 |
msgid "and enter it again"
|
304 |
msgstr "تم أدخله من جديد"
|
305 |
|
306 |
-
#: google-captcha.php:
|
307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
msgstr "إجابة المستخدم خاطئة"
|
309 |
|
310 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
msgid "The verification is successfully completed"
|
312 |
msgstr "عملية التحقق تمت بنجاح"
|
313 |
|
314 |
-
#: google-captcha.php:
|
315 |
msgid "Support"
|
316 |
msgstr "الدعم الفني"
|
317 |
|
@@ -336,7 +355,7 @@ msgstr ""
|
|
336 |
msgid "Save IP to the whitelist"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
340 |
msgid "Allowed formats"
|
341 |
msgstr ""
|
342 |
|
@@ -410,61 +429,77 @@ msgstr "هذا الخيار متوفر فقط للشبكات أو للمدونة
|
|
410 |
msgid "Close"
|
411 |
msgstr "إغلاق"
|
412 |
|
413 |
-
#: includes/pro_banners.php:
|
414 |
-
msgid "
|
415 |
-
msgstr "
|
416 |
-
|
417 |
-
#: includes/pro_banners.php:30
|
418 |
-
msgid "Learn More"
|
419 |
-
msgstr "إقرأ المزيد"
|
420 |
|
421 |
-
#: includes/pro_banners.php:
|
422 |
msgid "Reason"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/pro_banners.php:
|
426 |
msgid "Allowed separators for IPs: a comma"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/pro_banners.php:
|
430 |
msgid "semicolon"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/pro_banners.php:
|
434 |
msgid "ordinary space, tab, new line or carriage return"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/pro_banners.php:
|
438 |
msgid "Allowed separators for reasons: a comma"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/pro_banners.php:
|
442 |
msgid "tab, new line or carriage return"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/pro_banners.php:
|
446 |
msgid "Normal"
|
447 |
msgstr "العادي"
|
448 |
|
449 |
-
#: includes/pro_banners.php:
|
450 |
msgid "Compact"
|
451 |
msgstr "موجز"
|
452 |
|
453 |
-
#: includes/pro_banners.php:
|
454 |
-
|
|
|
455 |
msgstr "لغة الكابتشا:"
|
456 |
|
457 |
-
#: includes/pro_banners.php:
|
458 |
msgid "Use the current site language"
|
459 |
msgstr "استخدام لغة الموقع الحالية"
|
460 |
|
461 |
-
#: includes/pro_banners.php:
|
462 |
msgid "Using"
|
463 |
msgstr "استخدام"
|
464 |
|
465 |
-
#: includes/pro_banners.php:
|
466 |
-
|
|
|
467 |
msgstr "حجم الكابتشا:"
|
468 |
|
469 |
-
#~ msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
#~ msgstr "لقد أدخلت الرمز بشكل خاطئ"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 17:59+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-04-18 17:59+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: SAID MOULLA\n"
|
9 |
"Language: uk-UA\n"
|
21 |
"X-Loco-Target-Locale: uk_UA\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
+
#: google-captcha.php:34 google-captcha.php:602
|
25 |
msgid "Google Captcha Settings"
|
26 |
msgstr "إعدادات Google Captcha"
|
27 |
|
28 |
+
#: google-captcha.php:254
|
29 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
30 |
+
msgstr ""
|
31 |
|
32 |
+
#: google-captcha.php:255
|
33 |
msgid ""
|
34 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
35 |
+
"reload this page."
|
|
|
36 |
msgstr ""
|
|
|
|
|
37 |
|
38 |
+
#: google-captcha.php:275
|
39 |
+
msgid "Warning"
|
40 |
+
msgstr "تحذير"
|
41 |
|
42 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
43 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
44 |
+
msgid "Error"
|
45 |
+
msgstr "خطأ"
|
46 |
+
|
47 |
+
#: google-captcha.php:377
|
48 |
msgid "You are in the whitelist"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: google-captcha.php:506
|
52 |
+
#, fuzzy
|
53 |
+
msgid "Site Key"
|
54 |
msgstr "مفتاح الموقع"
|
55 |
|
56 |
+
#: google-captcha.php:511
|
57 |
msgid "Secret Key"
|
58 |
msgstr "المفتاح السري"
|
59 |
|
60 |
+
#: google-captcha.php:518 google-captcha.php:519
|
61 |
+
#, fuzzy
|
62 |
+
msgid "Version"
|
63 |
+
msgstr "النسخة"
|
64 |
+
|
65 |
+
#: google-captcha.php:520
|
66 |
+
#, fuzzy
|
67 |
+
msgid "Invisible reCAPTCHA"
|
68 |
+
msgstr "تفعيل التحقق بالصورة ل"
|
69 |
+
|
70 |
+
#: google-captcha.php:525
|
71 |
msgid "Login form"
|
72 |
msgstr "فورم تسجيل الدخول"
|
73 |
|
74 |
+
#: google-captcha.php:526
|
75 |
msgid "Registration form"
|
76 |
msgstr "فورم التسجيل"
|
77 |
|
78 |
+
#: google-captcha.php:527
|
79 |
msgid "Reset password form"
|
80 |
msgstr "فورم إعادة تعيين كلمة السر"
|
81 |
|
82 |
+
#: google-captcha.php:528
|
83 |
msgid "Comments form"
|
84 |
msgstr "فورم التعليقات"
|
85 |
|
86 |
+
#: google-captcha.php:547
|
87 |
msgid "Enter site key"
|
88 |
msgstr "أدخل مفتاح الموقع"
|
89 |
|
90 |
+
#: google-captcha.php:548 google-captcha.php:554
|
91 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
92 |
msgstr "تحذير: الكابتشا لن تعمل في حالة عدم إدخال المفاتيح."
|
93 |
|
94 |
+
#: google-captcha.php:553
|
95 |
msgid "Enter secret key"
|
96 |
msgstr "أدخل المفتاح السري"
|
97 |
|
98 |
+
#: google-captcha.php:581
|
99 |
msgid "Settings saved"
|
100 |
msgstr "تم حفظ الإعدادات"
|
101 |
|
102 |
+
#: google-captcha.php:587
|
103 |
msgid "All plugin settings were restored"
|
104 |
msgstr "لقد تم استعادة كافة إعدادات الإضافة"
|
105 |
|
106 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
107 |
msgid "Settings"
|
108 |
msgstr "إعدادات"
|
109 |
|
110 |
+
#: google-captcha.php:605
|
111 |
msgid "Whitelist"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: google-captcha.php:606
|
115 |
msgid "Custom code"
|
116 |
msgstr "شفرة مخصصة"
|
117 |
|
118 |
+
#: google-captcha.php:607
|
119 |
msgid "Go PRO"
|
120 |
msgstr "الترقية إلى النسخة المتقدمة"
|
121 |
|
122 |
+
#: google-captcha.php:612
|
123 |
msgid ""
|
124 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
125 |
"version 1 features."
|
127 |
"يمكن استعراض (كابتشا) واحدة فقط في هذه الصفحة، وهي مرتبطة بمميزات النسخة "
|
128 |
"الأولى منها"
|
129 |
|
130 |
+
#: google-captcha.php:627
|
131 |
#, php-format
|
132 |
msgid ""
|
133 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
136 |
"إذا كنت ترغب في تفعيل خاصية التحقق بالصورة (الكابتشا) في الصفحة أو التدوينة، "
|
137 |
"الرجاء استخدام الزر %s"
|
138 |
|
139 |
+
#: google-captcha.php:631
|
140 |
#, php-format
|
141 |
msgid ""
|
142 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
149 |
"الزر يمكنك إضافة (الكابتشا) في النموذج الخاص بك، عن طريق استخدام الشفرة "
|
150 |
"التالية %s"
|
151 |
|
152 |
+
#: google-captcha.php:637
|
153 |
msgid "Authentication"
|
154 |
msgstr "المصادقة"
|
155 |
|
156 |
+
#: google-captcha.php:638
|
157 |
#, php-format
|
158 |
+
msgid ""
|
159 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
160 |
+
"your API keys %shere%s"
|
161 |
+
msgstr ""
|
|
|
|
|
162 |
|
163 |
+
#: google-captcha.php:653
|
164 |
msgid "Test Keys"
|
165 |
msgstr "اختبار المفاتيح"
|
166 |
|
167 |
+
#: google-captcha.php:656
|
168 |
msgid "Options"
|
169 |
msgstr "خيارات"
|
170 |
|
171 |
+
#: google-captcha.php:659
|
172 |
msgid "Enable reCAPTCHA for"
|
173 |
msgstr "تفعيل التحقق بالصورة ل"
|
174 |
|
175 |
+
#: google-captcha.php:663
|
176 |
msgid "WordPress default"
|
177 |
msgstr "الافتراضي في الووردبريس"
|
178 |
|
179 |
+
#: google-captcha.php:672
|
180 |
msgid "This option is available only for network or for main blog"
|
181 |
msgstr "هذا الخيار متوفر فقط للشبكات أو للمدونة الرئيسية"
|
182 |
|
183 |
+
#: google-captcha.php:681
|
184 |
msgid "Plugins"
|
185 |
msgstr "الإضافات"
|
186 |
|
187 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
188 |
+
#: google-captcha.php:729
|
189 |
#, php-format
|
190 |
msgid "You should %s to use this functionality"
|
191 |
msgstr "يتوجب عليك %s لاستخدام هذه الخصائص"
|
192 |
|
193 |
+
#: google-captcha.php:690 google-captcha.php:725
|
194 |
msgid "activate"
|
195 |
msgstr "تفعيل"
|
196 |
|
197 |
+
#: google-captcha.php:690 google-captcha.php:725
|
198 |
msgid "for network"
|
199 |
msgstr "للشبكة"
|
200 |
|
201 |
+
#: google-captcha.php:695 google-captcha.php:730
|
202 |
msgid "download"
|
203 |
msgstr "تحميل"
|
204 |
|
205 |
+
#: google-captcha.php:699
|
206 |
msgid "Check off for adding captcha to forms on their settings pages"
|
207 |
msgstr "اختر \"تعطيل\" لإضافة \"الكابتشا\" إلى النماذج في صفحات إعداداتها"
|
208 |
|
209 |
+
#: google-captcha.php:742
|
210 |
#, php-format
|
211 |
msgid ""
|
212 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
213 |
msgstr "إذا كنت تود استخدام (الكابتشا) في نموذج مخصص يرجى الإطلاع على %s"
|
214 |
|
215 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
216 |
msgid "FAQ"
|
217 |
msgstr "أسئلة شائعة"
|
218 |
|
219 |
+
#: google-captcha.php:747
|
220 |
+
#, fuzzy
|
221 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
222 |
msgstr "إخفاء (الكابتشا) في التعليقات ل"
|
223 |
|
224 |
+
#: google-captcha.php:759
|
225 |
#, fuzzy
|
226 |
+
msgid "Whitelist Notification"
|
227 |
msgstr "اختبار التحقق"
|
228 |
|
229 |
+
#: google-captcha.php:763
|
230 |
msgid ""
|
231 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
232 |
"added to the whitelist"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: google-captcha.php:769
|
236 |
+
#, fuzzy
|
237 |
+
msgid "reCAPTCHA Version"
|
238 |
msgstr "نسخة الكابتشا"
|
239 |
|
240 |
+
#: google-captcha.php:779
|
241 |
+
msgid ""
|
242 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
243 |
+
"ones will have to pass the captcha"
|
244 |
+
msgstr ""
|
245 |
|
246 |
+
#: google-captcha.php:787 google-captcha.php:800
|
247 |
+
#, fuzzy
|
248 |
+
msgid "reCAPTCHA Theme"
|
249 |
msgstr "استايل الكابتشا:"
|
250 |
|
251 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
252 |
msgid "for version"
|
253 |
msgstr "للنسخة"
|
254 |
|
255 |
+
#: google-captcha.php:813
|
256 |
msgid "Save Changes"
|
257 |
msgstr "حفظ التغييرات"
|
258 |
|
259 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
260 |
msgid "To use Google Captcha you must get the keys from"
|
261 |
msgstr "لتتمكن من استخدام Google Captcha لابد من الحصول على المفاتيح من"
|
262 |
|
263 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
264 |
msgid "here"
|
265 |
msgstr "هنا"
|
266 |
|
267 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
268 |
msgid "and enter them on the"
|
269 |
msgstr "ثم أدخلهم في"
|
270 |
|
271 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
272 |
msgid "plugin setting page"
|
273 |
msgstr "صفحة إعدادات الإضافة"
|
274 |
|
275 |
+
#: google-captcha.php:1082
|
276 |
+
#, fuzzy
|
277 |
+
msgid "User response is missing."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
msgstr "إجابة المستخدم غير موجودة"
|
279 |
|
280 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
281 |
+
#, fuzzy
|
282 |
+
msgid "Secret Key is invalid"
|
|
|
|
|
|
|
283 |
msgstr "المفتاح السري غير صحيح"
|
284 |
|
285 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
286 |
msgid "Check your domain configuration"
|
287 |
msgstr "تحقق من إعدادات النطاق الخاص بك"
|
288 |
|
289 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
290 |
msgid "and enter it again"
|
291 |
msgstr "تم أدخله من جديد"
|
292 |
|
293 |
+
#: google-captcha.php:1091
|
294 |
+
#, fuzzy
|
295 |
+
msgid "Secret Key is missing."
|
296 |
+
msgstr "المفتاح السري غير موجود"
|
297 |
+
|
298 |
+
#: google-captcha.php:1098
|
299 |
+
#, fuzzy
|
300 |
+
msgid "User response is invalid"
|
301 |
msgstr "إجابة المستخدم خاطئة"
|
302 |
|
303 |
+
#: google-captcha.php:1099
|
304 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
305 |
+
msgstr "لقد أدخلت الرمز بشكل خاطئ"
|
306 |
+
|
307 |
+
#: google-captcha.php:1100
|
308 |
+
#, fuzzy
|
309 |
+
msgid ""
|
310 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
311 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
312 |
+
msgstr ""
|
313 |
+
"لقد تم اكتشاف أكثر من (كابتشا) في النموذج الحالي، وهذا ما سيتسبب في عدم "
|
314 |
+
"عملها بشكل صحيح، لذا قم بإزالة كافة (الكابتشا) التي لا حاجة لها."
|
315 |
+
|
316 |
+
#: google-captcha.php:1246
|
317 |
+
#, fuzzy
|
318 |
+
msgid "Click the BACK button on your browser, and try again."
|
319 |
+
msgstr "خطأ: لقد أدخلت الرمز بشكل خاطئ. اضغط زر الرجوع في المتصفح وحاول مجددا."
|
320 |
+
|
321 |
+
#: google-captcha.php:1291
|
322 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
323 |
+
msgstr "الرجاء اتمام الرمز واعتماد \"اختبار التحقق\""
|
324 |
+
|
325 |
+
#: google-captcha.php:1295
|
326 |
+
msgid "Test verification"
|
327 |
+
msgstr "اختبار التحقق"
|
328 |
+
|
329 |
+
#: google-captcha.php:1316
|
330 |
msgid "The verification is successfully completed"
|
331 |
msgstr "عملية التحقق تمت بنجاح"
|
332 |
|
333 |
+
#: google-captcha.php:1357
|
334 |
msgid "Support"
|
335 |
msgstr "الدعم الفني"
|
336 |
|
355 |
msgid "Save IP to the whitelist"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
359 |
msgid "Allowed formats"
|
360 |
msgstr ""
|
361 |
|
429 |
msgid "Close"
|
430 |
msgstr "إغلاق"
|
431 |
|
432 |
+
#: includes/pro_banners.php:29
|
433 |
+
msgid "Upgrade to Pro"
|
434 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
435 |
|
436 |
+
#: includes/pro_banners.php:42
|
437 |
msgid "Reason"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: includes/pro_banners.php:45
|
441 |
msgid "Allowed separators for IPs: a comma"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
445 |
msgid "semicolon"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: includes/pro_banners.php:45
|
449 |
msgid "ordinary space, tab, new line or carriage return"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/pro_banners.php:46
|
453 |
msgid "Allowed separators for reasons: a comma"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/pro_banners.php:46
|
457 |
msgid "tab, new line or carriage return"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/pro_banners.php:71
|
461 |
msgid "Normal"
|
462 |
msgstr "العادي"
|
463 |
|
464 |
+
#: includes/pro_banners.php:72
|
465 |
msgid "Compact"
|
466 |
msgstr "موجز"
|
467 |
|
468 |
+
#: includes/pro_banners.php:76
|
469 |
+
#, fuzzy
|
470 |
+
msgid "reCAPTCHA Language"
|
471 |
msgstr "لغة الكابتشا:"
|
472 |
|
473 |
+
#: includes/pro_banners.php:83
|
474 |
msgid "Use the current site language"
|
475 |
msgstr "استخدام لغة الموقع الحالية"
|
476 |
|
477 |
+
#: includes/pro_banners.php:83
|
478 |
msgid "Using"
|
479 |
msgstr "استخدام"
|
480 |
|
481 |
+
#: includes/pro_banners.php:89
|
482 |
+
#, fuzzy
|
483 |
+
msgid "reCAPTCHA Size"
|
484 |
msgstr "حجم الكابتشا:"
|
485 |
|
486 |
+
#~ msgid "Unlock premium options by upgrading to Pro version"
|
487 |
+
#~ msgstr "فتح الخصائص المتقدمة عن طريق الترقية إلى نسخة البرو"
|
488 |
+
|
489 |
+
#~ msgid "Learn More"
|
490 |
+
#~ msgstr "إقرأ المزيد"
|
491 |
+
|
492 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
493 |
+
#~ msgstr "خطأ: لقد أدخلت الرمز بشكل خاطئ."
|
494 |
+
|
495 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
496 |
#~ msgstr "لقد أدخلت الرمز بشكل خاطئ"
|
497 |
+
|
498 |
+
#~ msgid "ERROR"
|
499 |
+
#~ msgstr "خطأ"
|
500 |
+
|
501 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
502 |
+
#~ msgstr "قبل التفكير في عمل أي شيء، لابد من التسجيل %s من هنا %s"
|
503 |
+
|
504 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
505 |
+
#~ msgstr "أدخل مفتاح الموقع والمفتاح السري، الذي حصلت عليه بعد التسجيل."
|
languages/google-captcha-bg_BG.mo
CHANGED
Binary file
|
languages/google-captcha-bg_BG.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Yasen Georgiev <me@ygeorgiev.com>\n"
|
@@ -16,100 +16,113 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-captcha.php:34 google-captcha.php:
|
20 |
msgid "Google Captcha Settings"
|
21 |
msgstr "Настройки на Google Captcha"
|
22 |
|
23 |
-
#: google-captcha.php:
|
24 |
-
msgid "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: google-captcha.php:
|
28 |
msgid ""
|
29 |
-
"
|
30 |
-
"
|
31 |
-
"blocks."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: google-captcha.php:
|
35 |
-
|
36 |
-
|
37 |
-
msgstr "Грешка: Въвели сте невалиден анти-спам код."
|
38 |
|
39 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
40 |
msgid "You are in the whitelist"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: google-captcha.php:
|
44 |
-
|
|
|
45 |
msgstr "Ключ"
|
46 |
|
47 |
-
#: google-captcha.php:
|
48 |
msgid "Secret Key"
|
49 |
msgstr "Секретен ключ"
|
50 |
|
51 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
msgid "Login form"
|
53 |
msgstr "Форма за вход"
|
54 |
|
55 |
-
#: google-captcha.php:
|
56 |
msgid "Registration form"
|
57 |
msgstr "Форма регистрация"
|
58 |
|
59 |
-
#: google-captcha.php:
|
60 |
msgid "Reset password form"
|
61 |
msgstr "Форма за възстановяване на парола"
|
62 |
|
63 |
-
#: google-captcha.php:
|
64 |
msgid "Comments form"
|
65 |
msgstr "Форма за коментиране"
|
66 |
|
67 |
-
#: google-captcha.php:
|
68 |
msgid "Enter site key"
|
69 |
msgstr "Въведете ключ"
|
70 |
|
71 |
-
#: google-captcha.php:
|
72 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
73 |
msgstr ""
|
74 |
"ПРЕДУПРЕЖДЕНИЕ: Google Captcha няма да се покаже докато не въведете "
|
75 |
"ключовите полета."
|
76 |
|
77 |
-
#: google-captcha.php:
|
78 |
msgid "Enter secret key"
|
79 |
msgstr "Въведете секретен ключ"
|
80 |
|
81 |
-
#: google-captcha.php:
|
82 |
msgid "Settings saved"
|
83 |
msgstr "Настройките бяха запазени успешно."
|
84 |
|
85 |
-
#: google-captcha.php:
|
86 |
#, fuzzy
|
87 |
msgid "All plugin settings were restored"
|
88 |
msgstr "настройките на плъгина"
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
msgid "Settings"
|
92 |
msgstr "Настройки"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "Whitelist"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
msgid "Custom code"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "Go PRO"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: google-captcha.php:
|
107 |
msgid ""
|
108 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
109 |
"version 1 features."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: google-captcha.php:
|
113 |
#, fuzzy, php-format
|
114 |
msgid ""
|
115 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -118,7 +131,7 @@ msgstr ""
|
|
118 |
"Ако искате да добавите Google Captcha към Ваша собствена форма, проста "
|
119 |
"копирайте и поставете този код на желаната публикация или страница:"
|
120 |
|
121 |
-
#: google-captcha.php:
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -127,197 +140,191 @@ msgid ""
|
|
127 |
"your own form , please use the shortcode %s"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: google-captcha.php:
|
131 |
msgid "Authentication"
|
132 |
msgstr "Идентификация"
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
-
#,
|
136 |
-
msgid "
|
137 |
-
|
138 |
-
|
139 |
-
#: google-captcha.php:602
|
140 |
-
#, fuzzy
|
141 |
-
msgid "Enter site key and secret key, that you get after registration"
|
142 |
msgstr ""
|
143 |
-
"Въведете ключ и секретен ключ, който взимате след регистрация в Google "
|
144 |
-
"Captcha."
|
145 |
|
146 |
-
#: google-captcha.php:
|
147 |
#, fuzzy
|
148 |
msgid "Test Keys"
|
149 |
msgstr "Секретен ключ"
|
150 |
|
151 |
-
#: google-captcha.php:
|
152 |
msgid "Options"
|
153 |
msgstr "Опции"
|
154 |
|
155 |
-
#: google-captcha.php:
|
156 |
msgid "Enable reCAPTCHA for"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: google-captcha.php:
|
160 |
msgid "WordPress default"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: google-captcha.php:
|
164 |
msgid "This option is available only for network or for main blog"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: google-captcha.php:
|
168 |
#, fuzzy
|
169 |
msgid "Plugins"
|
170 |
msgstr "Страница с плъгини"
|
171 |
|
172 |
-
#: google-captcha.php:
|
|
|
173 |
#, php-format
|
174 |
msgid "You should %s to use this functionality"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: google-captcha.php:
|
178 |
#, fuzzy
|
179 |
msgid "activate"
|
180 |
msgstr "Активировать Contact form"
|
181 |
|
182 |
-
#: google-captcha.php:
|
183 |
msgid "for network"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: google-captcha.php:
|
187 |
msgid "download"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: google-captcha.php:
|
191 |
msgid "Check off for adding captcha to forms on their settings pages"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: google-captcha.php:
|
195 |
#, php-format
|
196 |
msgid ""
|
197 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: google-captcha.php:
|
201 |
msgid "FAQ"
|
202 |
msgstr "ЧЗВ"
|
203 |
|
204 |
-
#: google-captcha.php:
|
205 |
#, fuzzy
|
206 |
-
msgid "Hide reCAPTCHA in Comments
|
207 |
msgstr "за reCAPTCHA версия"
|
208 |
|
209 |
-
#: google-captcha.php:
|
210 |
#, fuzzy
|
211 |
-
msgid "Whitelist
|
212 |
msgstr "Идентификация"
|
213 |
|
214 |
-
#: google-captcha.php:
|
215 |
msgid ""
|
216 |
-
"This message will be displayed instead of the reCAPTCHA
|
217 |
"added to the whitelist"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: google-captcha.php:
|
221 |
#, fuzzy
|
222 |
-
msgid "reCAPTCHA
|
223 |
msgstr "Версия на reCAPTCHA:"
|
224 |
|
225 |
-
#: google-captcha.php:
|
226 |
-
|
227 |
-
|
228 |
-
|
|
|
229 |
|
230 |
-
#: google-captcha.php:
|
231 |
#, fuzzy
|
232 |
-
msgid "reCAPTCHA
|
233 |
msgstr "Версия на reCAPTCHA:"
|
234 |
|
235 |
-
#: google-captcha.php:
|
236 |
#, fuzzy
|
237 |
msgid "for version"
|
238 |
msgstr "версия"
|
239 |
|
240 |
-
#: google-captcha.php:
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Запази промените"
|
243 |
|
244 |
-
#: google-captcha.php:
|
245 |
msgid "To use Google Captcha you must get the keys from"
|
246 |
msgstr "За да използвате Google Captcha трябва да вземете ключовете от"
|
247 |
|
248 |
-
#: google-captcha.php:
|
249 |
msgid "here"
|
250 |
msgstr "тук"
|
251 |
|
252 |
-
#: google-captcha.php:
|
253 |
msgid "and enter them on the"
|
254 |
msgstr "и да ги въведете в"
|
255 |
|
256 |
-
#: google-captcha.php:
|
257 |
msgid "plugin setting page"
|
258 |
msgstr "настройките на плъгина"
|
259 |
|
260 |
-
#: google-captcha.php:
|
261 |
-
msgid "
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: google-captcha.php:
|
265 |
-
#: google-captcha.php:1107
|
266 |
#, fuzzy
|
267 |
-
msgid "
|
268 |
-
msgstr "
|
269 |
|
270 |
-
#: google-captcha.php:
|
271 |
-
msgid "
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: google-captcha.php:
|
275 |
#, fuzzy
|
276 |
-
msgid ""
|
277 |
-
"
|
278 |
-
"browser, and try again."
|
279 |
-
msgstr ""
|
280 |
-
"Грешка: Въвели сте невалиден анти-спам код. Натиснете бутона НАЗАД в "
|
281 |
-
"браузъра и опитайте отново."
|
282 |
|
283 |
-
#: google-captcha.php:
|
284 |
-
|
285 |
-
|
|
|
286 |
|
287 |
-
#: google-captcha.php:
|
288 |
-
msgid "
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: google-captcha.php:
|
292 |
-
|
293 |
-
|
|
|
294 |
|
295 |
-
#: google-captcha.php:
|
296 |
-
msgid "
|
|
|
|
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: google-captcha.php:
|
300 |
-
|
|
|
301 |
msgstr ""
|
|
|
|
|
302 |
|
303 |
-
#: google-captcha.php:
|
304 |
-
msgid "
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: google-captcha.php:
|
308 |
-
|
309 |
-
msgid "and enter it again"
|
310 |
-
msgstr "и да ги въведете в"
|
311 |
-
|
312 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
313 |
-
msgid "The user response is invalid"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: google-captcha.php:
|
317 |
msgid "The verification is successfully completed"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: google-captcha.php:
|
321 |
msgid "Support"
|
322 |
msgstr "Поддръжка"
|
323 |
|
@@ -342,7 +349,7 @@ msgstr ""
|
|
342 |
msgid "Save IP to the whitelist"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
346 |
msgid "Allowed formats"
|
347 |
msgstr ""
|
348 |
|
@@ -415,68 +422,78 @@ msgstr ""
|
|
415 |
msgid "Close"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: includes/pro_banners.php:
|
419 |
-
msgid "
|
420 |
-
msgstr ""
|
421 |
-
|
422 |
-
#: includes/pro_banners.php:30
|
423 |
-
msgid "Learn More"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: includes/pro_banners.php:
|
427 |
msgid "Reason"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: includes/pro_banners.php:
|
431 |
msgid "Allowed separators for IPs: a comma"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: includes/pro_banners.php:
|
435 |
msgid "semicolon"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: includes/pro_banners.php:
|
439 |
msgid "ordinary space, tab, new line or carriage return"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: includes/pro_banners.php:
|
443 |
msgid "Allowed separators for reasons: a comma"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: includes/pro_banners.php:
|
447 |
msgid "tab, new line or carriage return"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: includes/pro_banners.php:
|
451 |
msgid "Normal"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: includes/pro_banners.php:
|
455 |
msgid "Compact"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: includes/pro_banners.php:
|
459 |
#, fuzzy
|
460 |
-
msgid "reCAPTCHA
|
461 |
msgstr "Версия на reCAPTCHA:"
|
462 |
|
463 |
-
#: includes/pro_banners.php:
|
464 |
msgid "Use the current site language"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: includes/pro_banners.php:
|
468 |
msgid "Using"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: includes/pro_banners.php:
|
472 |
#, fuzzy
|
473 |
-
msgid "reCAPTCHA
|
474 |
msgstr "Версия на reCAPTCHA:"
|
475 |
|
476 |
#, fuzzy
|
477 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
478 |
#~ msgstr "Грешка: Въвели сте невалиден анти-спам код."
|
479 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
#~ msgid "powered by"
|
481 |
#~ msgstr "разработено от"
|
482 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:01+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Yasen Georgiev <me@ygeorgiev.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-captcha.php:34 google-captcha.php:602
|
20 |
msgid "Google Captcha Settings"
|
21 |
msgstr "Настройки на Google Captcha"
|
22 |
|
23 |
+
#: google-captcha.php:254
|
24 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: google-captcha.php:255
|
28 |
msgid ""
|
29 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
30 |
+
"reload this page."
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: google-captcha.php:275
|
34 |
+
msgid "Warning"
|
35 |
+
msgstr ""
|
|
|
36 |
|
37 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
38 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
39 |
+
msgid "Error"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: google-captcha.php:377
|
43 |
msgid "You are in the whitelist"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: google-captcha.php:506
|
47 |
+
#, fuzzy
|
48 |
+
msgid "Site Key"
|
49 |
msgstr "Ключ"
|
50 |
|
51 |
+
#: google-captcha.php:511
|
52 |
msgid "Secret Key"
|
53 |
msgstr "Секретен ключ"
|
54 |
|
55 |
+
#: google-captcha.php:518 google-captcha.php:519
|
56 |
+
#, fuzzy
|
57 |
+
msgid "Version"
|
58 |
+
msgstr "версия"
|
59 |
+
|
60 |
+
#: google-captcha.php:520
|
61 |
+
msgid "Invisible reCAPTCHA"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: google-captcha.php:525
|
65 |
msgid "Login form"
|
66 |
msgstr "Форма за вход"
|
67 |
|
68 |
+
#: google-captcha.php:526
|
69 |
msgid "Registration form"
|
70 |
msgstr "Форма регистрация"
|
71 |
|
72 |
+
#: google-captcha.php:527
|
73 |
msgid "Reset password form"
|
74 |
msgstr "Форма за възстановяване на парола"
|
75 |
|
76 |
+
#: google-captcha.php:528
|
77 |
msgid "Comments form"
|
78 |
msgstr "Форма за коментиране"
|
79 |
|
80 |
+
#: google-captcha.php:547
|
81 |
msgid "Enter site key"
|
82 |
msgstr "Въведете ключ"
|
83 |
|
84 |
+
#: google-captcha.php:548 google-captcha.php:554
|
85 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
86 |
msgstr ""
|
87 |
"ПРЕДУПРЕЖДЕНИЕ: Google Captcha няма да се покаже докато не въведете "
|
88 |
"ключовите полета."
|
89 |
|
90 |
+
#: google-captcha.php:553
|
91 |
msgid "Enter secret key"
|
92 |
msgstr "Въведете секретен ключ"
|
93 |
|
94 |
+
#: google-captcha.php:581
|
95 |
msgid "Settings saved"
|
96 |
msgstr "Настройките бяха запазени успешно."
|
97 |
|
98 |
+
#: google-captcha.php:587
|
99 |
#, fuzzy
|
100 |
msgid "All plugin settings were restored"
|
101 |
msgstr "настройките на плъгина"
|
102 |
|
103 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
104 |
msgid "Settings"
|
105 |
msgstr "Настройки"
|
106 |
|
107 |
+
#: google-captcha.php:605
|
108 |
msgid "Whitelist"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: google-captcha.php:606
|
112 |
msgid "Custom code"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: google-captcha.php:607
|
116 |
msgid "Go PRO"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: google-captcha.php:612
|
120 |
msgid ""
|
121 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
122 |
"version 1 features."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: google-captcha.php:627
|
126 |
#, fuzzy, php-format
|
127 |
msgid ""
|
128 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
131 |
"Ако искате да добавите Google Captcha към Ваша собствена форма, проста "
|
132 |
"копирайте и поставете този код на желаната публикация или страница:"
|
133 |
|
134 |
+
#: google-captcha.php:631
|
135 |
#, php-format
|
136 |
msgid ""
|
137 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
140 |
"your own form , please use the shortcode %s"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: google-captcha.php:637
|
144 |
msgid "Authentication"
|
145 |
msgstr "Идентификация"
|
146 |
|
147 |
+
#: google-captcha.php:638
|
148 |
+
#, php-format
|
149 |
+
msgid ""
|
150 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
151 |
+
"your API keys %shere%s"
|
|
|
|
|
|
|
152 |
msgstr ""
|
|
|
|
|
153 |
|
154 |
+
#: google-captcha.php:653
|
155 |
#, fuzzy
|
156 |
msgid "Test Keys"
|
157 |
msgstr "Секретен ключ"
|
158 |
|
159 |
+
#: google-captcha.php:656
|
160 |
msgid "Options"
|
161 |
msgstr "Опции"
|
162 |
|
163 |
+
#: google-captcha.php:659
|
164 |
msgid "Enable reCAPTCHA for"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: google-captcha.php:663
|
168 |
msgid "WordPress default"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: google-captcha.php:672
|
172 |
msgid "This option is available only for network or for main blog"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: google-captcha.php:681
|
176 |
#, fuzzy
|
177 |
msgid "Plugins"
|
178 |
msgstr "Страница с плъгини"
|
179 |
|
180 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
181 |
+
#: google-captcha.php:729
|
182 |
#, php-format
|
183 |
msgid "You should %s to use this functionality"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: google-captcha.php:690 google-captcha.php:725
|
187 |
#, fuzzy
|
188 |
msgid "activate"
|
189 |
msgstr "Активировать Contact form"
|
190 |
|
191 |
+
#: google-captcha.php:690 google-captcha.php:725
|
192 |
msgid "for network"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: google-captcha.php:695 google-captcha.php:730
|
196 |
msgid "download"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: google-captcha.php:699
|
200 |
msgid "Check off for adding captcha to forms on their settings pages"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: google-captcha.php:742
|
204 |
#, php-format
|
205 |
msgid ""
|
206 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
210 |
msgid "FAQ"
|
211 |
msgstr "ЧЗВ"
|
212 |
|
213 |
+
#: google-captcha.php:747
|
214 |
#, fuzzy
|
215 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
216 |
msgstr "за reCAPTCHA версия"
|
217 |
|
218 |
+
#: google-captcha.php:759
|
219 |
#, fuzzy
|
220 |
+
msgid "Whitelist Notification"
|
221 |
msgstr "Идентификация"
|
222 |
|
223 |
+
#: google-captcha.php:763
|
224 |
msgid ""
|
225 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
226 |
"added to the whitelist"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: google-captcha.php:769
|
230 |
#, fuzzy
|
231 |
+
msgid "reCAPTCHA Version"
|
232 |
msgstr "Версия на reCAPTCHA:"
|
233 |
|
234 |
+
#: google-captcha.php:779
|
235 |
+
msgid ""
|
236 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
237 |
+
"ones will have to pass the captcha"
|
238 |
+
msgstr ""
|
239 |
|
240 |
+
#: google-captcha.php:787 google-captcha.php:800
|
241 |
#, fuzzy
|
242 |
+
msgid "reCAPTCHA Theme"
|
243 |
msgstr "Версия на reCAPTCHA:"
|
244 |
|
245 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
246 |
#, fuzzy
|
247 |
msgid "for version"
|
248 |
msgstr "версия"
|
249 |
|
250 |
+
#: google-captcha.php:813
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Запази промените"
|
253 |
|
254 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
255 |
msgid "To use Google Captcha you must get the keys from"
|
256 |
msgstr "За да използвате Google Captcha трябва да вземете ключовете от"
|
257 |
|
258 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
259 |
msgid "here"
|
260 |
msgstr "тук"
|
261 |
|
262 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
263 |
msgid "and enter them on the"
|
264 |
msgstr "и да ги въведете в"
|
265 |
|
266 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
267 |
msgid "plugin setting page"
|
268 |
msgstr "настройките на плъгина"
|
269 |
|
270 |
+
#: google-captcha.php:1082
|
271 |
+
msgid "User response is missing."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
|
|
275 |
#, fuzzy
|
276 |
+
msgid "Secret Key is invalid"
|
277 |
+
msgstr "Секретен ключ"
|
278 |
|
279 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
280 |
+
msgid "Check your domain configuration"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
284 |
#, fuzzy
|
285 |
+
msgid "and enter it again"
|
286 |
+
msgstr "и да ги въведете в"
|
|
|
|
|
|
|
|
|
287 |
|
288 |
+
#: google-captcha.php:1091
|
289 |
+
#, fuzzy
|
290 |
+
msgid "Secret Key is missing."
|
291 |
+
msgstr "Секретен ключ"
|
292 |
|
293 |
+
#: google-captcha.php:1098
|
294 |
+
msgid "User response is invalid"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: google-captcha.php:1099
|
298 |
+
#, fuzzy
|
299 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
300 |
+
msgstr "Грешка: Въвели сте невалиден анти-спам код."
|
301 |
|
302 |
+
#: google-captcha.php:1100
|
303 |
+
msgid ""
|
304 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
305 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: google-captcha.php:1246
|
309 |
+
#, fuzzy
|
310 |
+
msgid "Click the BACK button on your browser, and try again."
|
311 |
msgstr ""
|
312 |
+
"Грешка: Въвели сте невалиден анти-спам код. Натиснете бутона НАЗАД в "
|
313 |
+
"браузъра и опитайте отново."
|
314 |
|
315 |
+
#: google-captcha.php:1291
|
316 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: google-captcha.php:1295
|
320 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: google-captcha.php:1316
|
324 |
msgid "The verification is successfully completed"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: google-captcha.php:1357
|
328 |
msgid "Support"
|
329 |
msgstr "Поддръжка"
|
330 |
|
349 |
msgid "Save IP to the whitelist"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
353 |
msgid "Allowed formats"
|
354 |
msgstr ""
|
355 |
|
422 |
msgid "Close"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/pro_banners.php:29
|
426 |
+
msgid "Upgrade to Pro"
|
|
|
|
|
|
|
|
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/pro_banners.php:42
|
430 |
msgid "Reason"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/pro_banners.php:45
|
434 |
msgid "Allowed separators for IPs: a comma"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
438 |
msgid "semicolon"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/pro_banners.php:45
|
442 |
msgid "ordinary space, tab, new line or carriage return"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/pro_banners.php:46
|
446 |
msgid "Allowed separators for reasons: a comma"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/pro_banners.php:46
|
450 |
msgid "tab, new line or carriage return"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: includes/pro_banners.php:71
|
454 |
msgid "Normal"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/pro_banners.php:72
|
458 |
msgid "Compact"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/pro_banners.php:76
|
462 |
#, fuzzy
|
463 |
+
msgid "reCAPTCHA Language"
|
464 |
msgstr "Версия на reCAPTCHA:"
|
465 |
|
466 |
+
#: includes/pro_banners.php:83
|
467 |
msgid "Use the current site language"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/pro_banners.php:83
|
471 |
msgid "Using"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: includes/pro_banners.php:89
|
475 |
#, fuzzy
|
476 |
+
msgid "reCAPTCHA Size"
|
477 |
msgstr "Версия на reCAPTCHA:"
|
478 |
|
479 |
#, fuzzy
|
480 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
481 |
#~ msgstr "Грешка: Въвели сте невалиден анти-спам код."
|
482 |
|
483 |
+
#, fuzzy
|
484 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
485 |
+
#~ msgstr "Грешка: Въвели сте невалиден анти-спам код."
|
486 |
+
|
487 |
+
#, fuzzy
|
488 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
489 |
+
#~ msgstr "Преди да можете да направите нещо, трябва да се %sрегистрирате%s."
|
490 |
+
|
491 |
+
#, fuzzy
|
492 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
493 |
+
#~ msgstr ""
|
494 |
+
#~ "Въведете ключ и секретен ключ, който взимате след регистрация в Google "
|
495 |
+
#~ "Captcha."
|
496 |
+
|
497 |
#~ msgid "powered by"
|
498 |
#~ msgstr "разработено от"
|
499 |
|
languages/google-captcha-cs_CZ.mo
CHANGED
Binary file
|
languages/google-captcha-cs_CZ.po
CHANGED
@@ -2,10 +2,10 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"Language: cs_CZ\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -14,102 +14,116 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-captcha.php:34 google-captcha.php:
|
20 |
msgid "Google Captcha Settings"
|
21 |
msgstr "Nastavení Google Captcha"
|
22 |
|
23 |
-
#: google-captcha.php:
|
24 |
-
msgid "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: google-captcha.php:
|
28 |
msgid ""
|
29 |
-
"
|
30 |
-
"
|
31 |
-
"blocks."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: google-captcha.php:
|
35 |
-
|
36 |
-
|
37 |
-
|
|
|
|
|
|
|
|
|
38 |
|
39 |
-
#: google-captcha.php:
|
40 |
msgid "You are in the whitelist"
|
41 |
-
msgstr ""
|
42 |
|
43 |
-
#: google-captcha.php:
|
44 |
-
|
45 |
-
|
|
|
46 |
|
47 |
-
#: google-captcha.php:
|
48 |
msgid "Secret Key"
|
49 |
-
msgstr "Tajný
|
50 |
|
51 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
msgid "Login form"
|
53 |
msgstr "Přihlašovací formulář"
|
54 |
|
55 |
-
#: google-captcha.php:
|
56 |
msgid "Registration form"
|
57 |
msgstr "Registrační formulář"
|
58 |
|
59 |
-
#: google-captcha.php:
|
60 |
msgid "Reset password form"
|
61 |
msgstr "Formulář pro resetování hesla "
|
62 |
|
63 |
-
#: google-captcha.php:
|
64 |
msgid "Comments form"
|
65 |
msgstr "Formulář komentářů"
|
66 |
|
67 |
-
#: google-captcha.php:
|
68 |
msgid "Enter site key"
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: google-captcha.php:
|
72 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
73 |
-
msgstr "VAROVÁNÍ: Captcha se nezobrazí,
|
74 |
|
75 |
-
#: google-captcha.php:
|
76 |
msgid "Enter secret key"
|
77 |
-
msgstr "
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
msgid "Settings saved"
|
81 |
msgstr "Nastavení uloženo"
|
82 |
|
83 |
-
#: google-captcha.php:
|
84 |
-
#, fuzzy
|
85 |
msgid "All plugin settings were restored"
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#: google-captcha.php:
|
89 |
msgid "Settings"
|
90 |
msgstr "Nastavení"
|
91 |
|
92 |
-
#: google-captcha.php:
|
93 |
msgid "Whitelist"
|
94 |
-
msgstr ""
|
95 |
|
96 |
-
#: google-captcha.php:
|
97 |
msgid "Custom code"
|
98 |
-
msgstr ""
|
99 |
|
100 |
-
#: google-captcha.php:
|
101 |
msgid "Go PRO"
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: google-captcha.php:
|
105 |
msgid ""
|
106 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
107 |
"version 1 features."
|
108 |
msgstr ""
|
109 |
-
"
|
110 |
-
"reCAPTCHA."
|
111 |
|
112 |
-
#: google-captcha.php:
|
113 |
#, php-format
|
114 |
msgid ""
|
115 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -118,7 +132,7 @@ msgstr ""
|
|
118 |
"Pokud byste chtěli přidat Google Captcha (reCAPTCHA) na vaše stránky nebo "
|
119 |
"příspěvku, použijte tlačítko %s"
|
120 |
|
121 |
-
#: google-captcha.php:
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -126,73 +140,70 @@ msgid ""
|
|
126 |
"isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
|
127 |
"your own form , please use the shortcode %s"
|
128 |
msgstr ""
|
129 |
-
"
|
130 |
-
"na tlačítko %s v
|
131 |
-
"
|
132 |
-
"
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
msgid "Authentication"
|
136 |
msgstr "Autentizace"
|
137 |
|
138 |
-
#: google-captcha.php:
|
139 |
#, php-format
|
140 |
-
msgid "
|
|
|
|
|
141 |
msgstr ""
|
142 |
-
"Nejdříve, než budete schopni něco udělat, musíte se zaregistrovat % szde %s"
|
143 |
-
|
144 |
-
#: google-captcha.php:602
|
145 |
-
#, fuzzy
|
146 |
-
msgid "Enter site key and secret key, that you get after registration"
|
147 |
-
msgstr "Zadejte klíč serveru a tajný klíč, které obdržíte po registraci."
|
148 |
|
149 |
-
#: google-captcha.php:
|
150 |
-
#, fuzzy
|
151 |
msgid "Test Keys"
|
152 |
-
msgstr "
|
153 |
|
154 |
-
#: google-captcha.php:
|
155 |
msgid "Options"
|
156 |
msgstr "Možnosti"
|
157 |
|
158 |
-
#: google-captcha.php:
|
159 |
msgid "Enable reCAPTCHA for"
|
160 |
msgstr "Povolit reCAPTCHA pro"
|
161 |
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "WordPress default"
|
164 |
-
msgstr "
|
165 |
|
166 |
-
#: google-captcha.php:
|
167 |
msgid "This option is available only for network or for main blog"
|
168 |
msgstr "Tato možnost je k dispozici pouze pro síť nebo pro hlavní blog"
|
169 |
|
170 |
-
#: google-captcha.php:
|
171 |
msgid "Plugins"
|
172 |
msgstr "Pluginy"
|
173 |
|
174 |
-
#: google-captcha.php:
|
|
|
175 |
#, php-format
|
176 |
msgid "You should %s to use this functionality"
|
177 |
-
msgstr "Měli byste
|
178 |
|
179 |
-
#: google-captcha.php:
|
180 |
msgid "activate"
|
181 |
-
msgstr "
|
182 |
|
183 |
-
#: google-captcha.php:
|
184 |
msgid "for network"
|
185 |
msgstr "pro síť"
|
186 |
|
187 |
-
#: google-captcha.php:
|
188 |
msgid "download"
|
189 |
msgstr "stáhnout"
|
190 |
|
191 |
-
#: google-captcha.php:
|
192 |
msgid "Check off for adding captcha to forms on their settings pages"
|
193 |
msgstr ""
|
|
|
194 |
|
195 |
-
#: google-captcha.php:
|
196 |
#, php-format
|
197 |
msgid ""
|
198 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
@@ -200,388 +211,296 @@ msgstr ""
|
|
200 |
"Pokud byste chtěli přidat Google Captcha (reCAPTCHA) do vlastního formuláře "
|
201 |
"viz %s"
|
202 |
|
203 |
-
#: google-captcha.php:
|
204 |
msgid "FAQ"
|
205 |
-
msgstr "Často kladené otázky"
|
206 |
|
207 |
-
#: google-captcha.php:
|
208 |
-
|
|
|
209 |
msgstr "Skrýt reCAPTCHA ve formuláři komentářů pro"
|
210 |
|
211 |
-
#: google-captcha.php:
|
212 |
#, fuzzy
|
213 |
-
msgid "Whitelist
|
214 |
-
msgstr "
|
215 |
|
216 |
-
#: google-captcha.php:
|
|
|
217 |
msgid ""
|
218 |
-
"This message will be displayed instead of the reCAPTCHA
|
219 |
"added to the whitelist"
|
220 |
msgstr ""
|
|
|
|
|
221 |
|
222 |
-
#: google-captcha.php:
|
223 |
-
|
224 |
-
|
|
|
225 |
|
226 |
-
#: google-captcha.php:
|
227 |
-
|
228 |
-
|
229 |
-
|
|
|
230 |
|
231 |
-
#: google-captcha.php:
|
232 |
-
|
233 |
-
|
|
|
234 |
|
235 |
-
#: google-captcha.php:
|
236 |
msgid "for version"
|
237 |
msgstr "pro verzi"
|
238 |
|
239 |
-
#: google-captcha.php:
|
240 |
msgid "Save Changes"
|
241 |
msgstr "Uložit změny"
|
242 |
|
243 |
-
#: google-captcha.php:
|
244 |
msgid "To use Google Captcha you must get the keys from"
|
245 |
-
msgstr "Chcete-li použít Google Captcha musíte získat klíče
|
246 |
|
247 |
-
#: google-captcha.php:
|
248 |
msgid "here"
|
249 |
msgstr "zde"
|
250 |
|
251 |
-
#: google-captcha.php:
|
252 |
msgid "and enter them on the"
|
253 |
-
msgstr "a zadejte je
|
254 |
|
255 |
-
#: google-captcha.php:
|
256 |
msgid "plugin setting page"
|
257 |
-
msgstr "
|
258 |
-
|
259 |
-
#: google-captcha.php:1000 google-captcha.php:1048
|
260 |
-
msgid "Error"
|
261 |
-
msgstr "Chyba"
|
262 |
|
263 |
-
#: google-captcha.php:
|
264 |
-
#: google-captcha.php:1107
|
265 |
#, fuzzy
|
266 |
-
msgid "
|
267 |
-
msgstr "
|
268 |
|
269 |
-
#: google-captcha.php:
|
270 |
-
|
271 |
-
|
|
|
272 |
|
273 |
-
#: google-captcha.php:
|
274 |
-
msgid ""
|
275 |
-
"
|
276 |
-
"browser, and try again."
|
277 |
-
msgstr ""
|
278 |
-
"Zadali jste nesprávnou hodnotu reCAPTCHA . Klepněte na tlačítko zpět ve "
|
279 |
-
"vašem prohlížeči a opakujte akci."
|
280 |
|
281 |
-
#: google-captcha.php:
|
282 |
-
msgid "
|
283 |
-
msgstr ""
|
284 |
|
285 |
-
#: google-captcha.php:
|
286 |
-
|
287 |
-
|
|
|
288 |
|
289 |
-
#: google-captcha.php:
|
290 |
-
|
291 |
-
|
|
|
292 |
|
293 |
-
#: google-captcha.php:
|
294 |
-
|
295 |
-
|
|
|
296 |
|
297 |
-
#: google-captcha.php:
|
298 |
-
|
|
|
|
|
|
|
299 |
msgstr ""
|
|
|
|
|
|
|
300 |
|
301 |
-
#: google-captcha.php:
|
302 |
-
|
|
|
303 |
msgstr ""
|
|
|
|
|
304 |
|
305 |
-
#: google-captcha.php:
|
306 |
-
|
307 |
-
|
308 |
-
msgstr "a zadejte je v"
|
309 |
|
310 |
-
#: google-captcha.php:
|
311 |
-
msgid "
|
312 |
-
msgstr ""
|
313 |
|
314 |
-
#: google-captcha.php:
|
315 |
msgid "The verification is successfully completed"
|
316 |
-
msgstr ""
|
317 |
|
318 |
-
#: google-captcha.php:
|
319 |
msgid "Support"
|
320 |
msgstr "Podpora"
|
321 |
|
322 |
#: includes/whitelist.php:64
|
323 |
msgid "For IP addresses from the whitelist reCAPTCHA will not be displayed"
|
324 |
-
msgstr ""
|
325 |
|
326 |
#: includes/whitelist.php:71
|
327 |
msgid "Add IP to the whitelist"
|
328 |
-
msgstr ""
|
329 |
|
330 |
#: includes/whitelist.php:75
|
331 |
-
#, fuzzy
|
332 |
msgid "Save changes"
|
333 |
msgstr "Uložit změny"
|
334 |
|
335 |
#: includes/whitelist.php:92
|
336 |
msgid "My IP"
|
337 |
-
msgstr ""
|
338 |
|
339 |
#: includes/whitelist.php:96
|
340 |
msgid "Save IP to the whitelist"
|
341 |
-
msgstr ""
|
342 |
|
343 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
344 |
msgid "Allowed formats"
|
345 |
-
msgstr ""
|
346 |
|
347 |
#: includes/whitelist.php:101
|
348 |
msgid "Allowed diapason"
|
349 |
-
msgstr ""
|
350 |
|
351 |
#: includes/whitelist.php:106
|
352 |
msgid "Search IP"
|
353 |
-
msgstr ""
|
354 |
|
355 |
#: includes/whitelist.php:160
|
356 |
msgid "Nothing found"
|
357 |
-
msgstr ""
|
358 |
|
359 |
#: includes/whitelist.php:160
|
360 |
msgid "No IP in the whitelist"
|
361 |
-
msgstr ""
|
362 |
|
363 |
#: includes/whitelist.php:167
|
364 |
msgid "IP address"
|
365 |
-
msgstr ""
|
366 |
|
367 |
#: includes/whitelist.php:168
|
368 |
msgid "Date added"
|
369 |
-
msgstr ""
|
370 |
|
371 |
#: includes/whitelist.php:222 includes/whitelist.php:232
|
372 |
msgid "Remove from the whitelist"
|
373 |
-
msgstr ""
|
374 |
|
375 |
#: includes/whitelist.php:318
|
376 |
msgid "IP added to the whitelist successfully"
|
377 |
-
msgstr ""
|
378 |
|
379 |
#: includes/whitelist.php:320 includes/whitelist.php:341
|
380 |
#: includes/whitelist.php:351
|
381 |
msgid "Some errors occured"
|
382 |
-
msgstr ""
|
383 |
|
384 |
#: includes/whitelist.php:322
|
385 |
msgid "IP is already in the whitelist"
|
386 |
-
msgstr ""
|
387 |
|
388 |
#: includes/whitelist.php:325
|
389 |
msgid "Invalid IP. See allowed formats."
|
390 |
-
msgstr ""
|
391 |
|
392 |
#: includes/whitelist.php:347
|
393 |
msgid "One IP was deleted successfully"
|
394 |
-
msgstr ""
|
395 |
|
396 |
#: includes/whitelist.php:354
|
397 |
msgid "You have not entered any IP"
|
398 |
-
msgstr ""
|
399 |
|
400 |
#: includes/whitelist.php:357
|
401 |
msgid "You have not entered any IP in to the search form"
|
402 |
-
msgstr ""
|
403 |
|
404 |
#: includes/whitelist.php:359
|
405 |
msgid "Search results for"
|
406 |
-
msgstr ""
|
407 |
|
408 |
#: includes/pro_banners.php:17
|
409 |
-
#, fuzzy
|
410 |
msgid "This options is available in Pro version of plugin"
|
411 |
-
msgstr "
|
412 |
|
413 |
#: includes/pro_banners.php:20
|
414 |
msgid "Close"
|
415 |
msgstr "Zavřít"
|
416 |
|
417 |
-
#: includes/pro_banners.php:
|
418 |
-
msgid "
|
419 |
-
msgstr "
|
420 |
-
|
421 |
-
#: includes/pro_banners.php:30
|
422 |
-
msgid "Learn More"
|
423 |
-
msgstr "Více informací"
|
424 |
|
425 |
-
#: includes/pro_banners.php:
|
426 |
msgid "Reason"
|
427 |
-
msgstr ""
|
428 |
|
429 |
-
#: includes/pro_banners.php:
|
430 |
msgid "Allowed separators for IPs: a comma"
|
431 |
-
msgstr ""
|
432 |
|
433 |
-
#: includes/pro_banners.php:
|
434 |
msgid "semicolon"
|
435 |
-
msgstr ""
|
436 |
|
437 |
-
#: includes/pro_banners.php:
|
438 |
msgid "ordinary space, tab, new line or carriage return"
|
439 |
-
msgstr ""
|
440 |
|
441 |
-
#: includes/pro_banners.php:
|
442 |
msgid "Allowed separators for reasons: a comma"
|
443 |
-
msgstr ""
|
444 |
|
445 |
-
#: includes/pro_banners.php:
|
446 |
msgid "tab, new line or carriage return"
|
447 |
-
msgstr ""
|
448 |
|
449 |
-
#: includes/pro_banners.php:
|
450 |
msgid "Normal"
|
451 |
msgstr "Normální"
|
452 |
|
453 |
-
#: includes/pro_banners.php:
|
454 |
msgid "Compact"
|
455 |
msgstr "Kompaktní"
|
456 |
|
457 |
-
#: includes/pro_banners.php:
|
458 |
-
|
|
|
459 |
msgstr "reCAPTCHA jazyk"
|
460 |
|
461 |
-
#: includes/pro_banners.php:
|
462 |
msgid "Use the current site language"
|
463 |
msgstr "Použít aktuální jazyk webu"
|
464 |
|
465 |
-
#: includes/pro_banners.php:
|
466 |
msgid "Using"
|
467 |
-
msgstr "
|
468 |
-
|
469 |
-
#: includes/pro_banners.php:86
|
470 |
-
msgid "reCAPTCHA size"
|
471 |
-
msgstr "Velikost reCAPTCHA "
|
472 |
-
|
473 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value."
|
474 |
-
#~ msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
|
475 |
-
|
476 |
-
#~ msgid ""
|
477 |
-
#~ "Google Captcha version 2 will not work correctly, since the option "
|
478 |
-
#~ "\"allow_url_fopen\" is disabled. Please contact your hosting support "
|
479 |
-
#~ "service."
|
480 |
-
#~ msgstr ""
|
481 |
-
#~ "Google Captcha verze 2 nebude fungovat správně, protože je zakázána "
|
482 |
-
#~ "možnost \"allow_url_fopen\". Obraťte se na podporu vašeho poskytovatele "
|
483 |
-
#~ "hostingové služby."
|
484 |
-
|
485 |
-
#~ msgid ""
|
486 |
-
#~ "Google Captcha version 2 will not work correctly, since the option "
|
487 |
-
#~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
488 |
-
#~ msgstr ""
|
489 |
-
#~ "Google Captcha версии 2 не будет работать корректно, потому что отключена "
|
490 |
-
#~ "опция \"allow_url_fopen\" в настройках PHP вашего хостинга."
|
491 |
-
|
492 |
-
#~ msgid "Read more."
|
493 |
-
#~ msgstr "Подробнее."
|
494 |
-
|
495 |
-
#~ msgid "powered by"
|
496 |
-
#~ msgstr "разработано компанией"
|
497 |
-
|
498 |
-
#~ msgid "Activate"
|
499 |
-
#~ msgstr "Активировать"
|
500 |
-
|
501 |
-
#~ msgid "Download"
|
502 |
-
#~ msgstr "Скачать"
|
503 |
-
|
504 |
-
#~ msgid "Enable CAPTCHA"
|
505 |
-
#~ msgstr "Включить CAPTCHA"
|
506 |
-
|
507 |
-
#~ msgid "You should"
|
508 |
-
#~ msgstr "Вам нужно"
|
509 |
-
|
510 |
-
#~ msgid "Notice:"
|
511 |
-
#~ msgstr "Обратите внимание:"
|
512 |
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
#~ "Настройки плагина были изменены. Для того, чтобы сохранить их, "
|
518 |
-
#~ "пожалуйста, не забудьте нажать кнопку 'Сохранить изменения'."
|
519 |
-
|
520 |
-
#~ msgid "Contact form"
|
521 |
-
#~ msgstr "Contact form"
|
522 |
-
|
523 |
-
#~ msgid "Activate contact form"
|
524 |
-
#~ msgstr "Активировать Contact form"
|
525 |
-
|
526 |
-
#~ msgid "Download contact form"
|
527 |
-
#~ msgstr "Скачать Contact form"
|
528 |
-
|
529 |
-
#~ msgid "Google Captcha"
|
530 |
-
#~ msgstr "Google Captcha"
|
531 |
-
|
532 |
-
#~ msgid "Enable Google Captcha for:"
|
533 |
-
#~ msgstr "Отображать Google Captcha для:"
|
534 |
-
|
535 |
-
#~ msgid "Hide captcha for:"
|
536 |
-
#~ msgstr "Не показывать Google Captcha для:"
|
537 |
-
|
538 |
-
#~ msgid "Theme:"
|
539 |
-
#~ msgstr "Тема:"
|
540 |
-
|
541 |
-
#~ msgid ""
|
542 |
-
#~ "An unexpected error has occurred. If this message appears again, please "
|
543 |
-
#~ "contact the Administrator."
|
544 |
-
#~ msgstr ""
|
545 |
-
#~ "Произошла непредвиденная ошибка, если вы постоянно видите это сообщение "
|
546 |
-
#~ "свяжитесь с Администратором."
|
547 |
-
|
548 |
-
#~ msgid "requires"
|
549 |
-
#~ msgstr "требует"
|
550 |
-
|
551 |
-
#~ msgid ""
|
552 |
-
#~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
|
553 |
-
#~ "and try again."
|
554 |
-
#~ msgstr ""
|
555 |
-
#~ "или выше, поэтому плагин был деактивирован! Обновите WordPress и "
|
556 |
-
#~ "повторите попытку."
|
557 |
-
|
558 |
-
#~ msgid "Back to the WordPress"
|
559 |
-
#~ msgstr "Вернуться назад на WordPress"
|
560 |
-
|
561 |
-
#~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
562 |
-
#~ msgstr ""
|
563 |
-
#~ "Если вам понравился плагин, пожалуйста, поставте нам 5 звезд на WordPress"
|
564 |
-
|
565 |
-
#~ msgid "Rate the plugin"
|
566 |
-
#~ msgstr "Оценить плагин"
|
567 |
|
568 |
-
#~ msgid "
|
569 |
-
#~ msgstr "
|
570 |
|
571 |
-
#~ msgid "
|
572 |
-
#~ msgstr "
|
573 |
|
574 |
-
#~ msgid "
|
575 |
-
#~ msgstr "
|
576 |
|
577 |
-
#~ msgid "
|
578 |
-
#~ msgstr "
|
579 |
|
580 |
-
|
581 |
-
#~
|
582 |
-
#~ msgstr "Тема:"
|
583 |
|
584 |
-
#~ msgid "
|
585 |
-
#~ msgstr ""
|
586 |
-
#~ "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
|
587 |
-
#~ "ключевые поля."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:00+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-captcha.php:34 google-captcha.php:602
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Nastavení Google Captcha"
|
23 |
|
24 |
+
#: google-captcha.php:254
|
25 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: google-captcha.php:255
|
29 |
msgid ""
|
30 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
31 |
+
"reload this page."
|
|
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: google-captcha.php:275
|
35 |
+
msgid "Warning"
|
36 |
+
msgstr "Upozornění"
|
37 |
+
|
38 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
39 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
40 |
+
msgid "Error"
|
41 |
+
msgstr "Chyba"
|
42 |
|
43 |
+
#: google-captcha.php:377
|
44 |
msgid "You are in the whitelist"
|
45 |
+
msgstr "Jste na seznamu povolených"
|
46 |
|
47 |
+
#: google-captcha.php:506
|
48 |
+
#, fuzzy
|
49 |
+
msgid "Site Key"
|
50 |
+
msgstr "Webový klíč"
|
51 |
|
52 |
+
#: google-captcha.php:511
|
53 |
msgid "Secret Key"
|
54 |
+
msgstr "Tajný klíč"
|
55 |
|
56 |
+
#: google-captcha.php:518 google-captcha.php:519
|
57 |
+
#, fuzzy
|
58 |
+
msgid "Version"
|
59 |
+
msgstr "verze"
|
60 |
+
|
61 |
+
#: google-captcha.php:520
|
62 |
+
#, fuzzy
|
63 |
+
msgid "Invisible reCAPTCHA"
|
64 |
+
msgstr "Povolit reCAPTCHA pro"
|
65 |
+
|
66 |
+
#: google-captcha.php:525
|
67 |
msgid "Login form"
|
68 |
msgstr "Přihlašovací formulář"
|
69 |
|
70 |
+
#: google-captcha.php:526
|
71 |
msgid "Registration form"
|
72 |
msgstr "Registrační formulář"
|
73 |
|
74 |
+
#: google-captcha.php:527
|
75 |
msgid "Reset password form"
|
76 |
msgstr "Formulář pro resetování hesla "
|
77 |
|
78 |
+
#: google-captcha.php:528
|
79 |
msgid "Comments form"
|
80 |
msgstr "Formulář komentářů"
|
81 |
|
82 |
+
#: google-captcha.php:547
|
83 |
msgid "Enter site key"
|
84 |
+
msgstr "Vložte webový klíč"
|
85 |
|
86 |
+
#: google-captcha.php:548 google-captcha.php:554
|
87 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
88 |
+
msgstr "VAROVÁNÍ: Captcha se nezobrazí, dokud nejsou vyplněná pole s klíči."
|
89 |
|
90 |
+
#: google-captcha.php:553
|
91 |
msgid "Enter secret key"
|
92 |
+
msgstr "Vložte tajný klíč"
|
93 |
|
94 |
+
#: google-captcha.php:581
|
95 |
msgid "Settings saved"
|
96 |
msgstr "Nastavení uloženo"
|
97 |
|
98 |
+
#: google-captcha.php:587
|
|
|
99 |
msgid "All plugin settings were restored"
|
100 |
+
msgstr "Všechna výchozí nastavení pluginu byla obnovena"
|
101 |
|
102 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
103 |
msgid "Settings"
|
104 |
msgstr "Nastavení"
|
105 |
|
106 |
+
#: google-captcha.php:605
|
107 |
msgid "Whitelist"
|
108 |
+
msgstr "Seznam povolených"
|
109 |
|
110 |
+
#: google-captcha.php:606
|
111 |
msgid "Custom code"
|
112 |
+
msgstr "Vlastní kód"
|
113 |
|
114 |
+
#: google-captcha.php:607
|
115 |
msgid "Go PRO"
|
116 |
+
msgstr "Přejít na PRO"
|
117 |
|
118 |
+
#: google-captcha.php:612
|
119 |
msgid ""
|
120 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
121 |
"version 1 features."
|
122 |
msgstr ""
|
123 |
+
"Na stránce lze zobrazit pouze jednu reCAPTCHA, což souvisí s vlastnostmi "
|
124 |
+
"reCAPTCHA verze 1."
|
125 |
|
126 |
+
#: google-captcha.php:627
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
132 |
"Pokud byste chtěli přidat Google Captcha (reCAPTCHA) na vaše stránky nebo "
|
133 |
"příspěvku, použijte tlačítko %s"
|
134 |
|
135 |
+
#: google-captcha.php:631
|
136 |
#, php-format
|
137 |
msgid ""
|
138 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
140 |
"isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
|
141 |
"your own form , please use the shortcode %s"
|
142 |
msgstr ""
|
143 |
+
"Google Captcha (reCAPTCHA) můžete přidat do příspěvku, nebo stránky "
|
144 |
+
"klepnutím na tlačítko %s v bloku úprav obsahu ve vizuálním módu. Pokud "
|
145 |
+
"tlačítko není zobrazeno, nebo chcete přidat Google Captcha (reCAPTCHA) na "
|
146 |
+
"vlastním formuláři, použijte Zkrácený kód %s"
|
147 |
|
148 |
+
#: google-captcha.php:637
|
149 |
msgid "Authentication"
|
150 |
msgstr "Autentizace"
|
151 |
|
152 |
+
#: google-captcha.php:638
|
153 |
#, php-format
|
154 |
+
msgid ""
|
155 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
156 |
+
"your API keys %shere%s"
|
157 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
+
#: google-captcha.php:653
|
|
|
160 |
msgid "Test Keys"
|
161 |
+
msgstr "Testovací klíč"
|
162 |
|
163 |
+
#: google-captcha.php:656
|
164 |
msgid "Options"
|
165 |
msgstr "Možnosti"
|
166 |
|
167 |
+
#: google-captcha.php:659
|
168 |
msgid "Enable reCAPTCHA for"
|
169 |
msgstr "Povolit reCAPTCHA pro"
|
170 |
|
171 |
+
#: google-captcha.php:663
|
172 |
msgid "WordPress default"
|
173 |
+
msgstr "WordPress"
|
174 |
|
175 |
+
#: google-captcha.php:672
|
176 |
msgid "This option is available only for network or for main blog"
|
177 |
msgstr "Tato možnost je k dispozici pouze pro síť nebo pro hlavní blog"
|
178 |
|
179 |
+
#: google-captcha.php:681
|
180 |
msgid "Plugins"
|
181 |
msgstr "Pluginy"
|
182 |
|
183 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
184 |
+
#: google-captcha.php:729
|
185 |
#, php-format
|
186 |
msgid "You should %s to use this functionality"
|
187 |
+
msgstr "Měli byste %s chcete-li tuto funkci využívat"
|
188 |
|
189 |
+
#: google-captcha.php:690 google-captcha.php:725
|
190 |
msgid "activate"
|
191 |
+
msgstr "aktivovat"
|
192 |
|
193 |
+
#: google-captcha.php:690 google-captcha.php:725
|
194 |
msgid "for network"
|
195 |
msgstr "pro síť"
|
196 |
|
197 |
+
#: google-captcha.php:695 google-captcha.php:730
|
198 |
msgid "download"
|
199 |
msgstr "stáhnout"
|
200 |
|
201 |
+
#: google-captcha.php:699
|
202 |
msgid "Check off for adding captcha to forms on their settings pages"
|
203 |
msgstr ""
|
204 |
+
"Odškrtnout pro přidání captcha do formulářů na jejich stránkách nastavení"
|
205 |
|
206 |
+
#: google-captcha.php:742
|
207 |
#, php-format
|
208 |
msgid ""
|
209 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
211 |
"Pokud byste chtěli přidat Google Captcha (reCAPTCHA) do vlastního formuláře "
|
212 |
"viz %s"
|
213 |
|
214 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
215 |
msgid "FAQ"
|
216 |
+
msgstr "Často kladené otázky (FAQ)"
|
217 |
|
218 |
+
#: google-captcha.php:747
|
219 |
+
#, fuzzy
|
220 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
221 |
msgstr "Skrýt reCAPTCHA ve formuláři komentářů pro"
|
222 |
|
223 |
+
#: google-captcha.php:759
|
224 |
#, fuzzy
|
225 |
+
msgid "Whitelist Notification"
|
226 |
+
msgstr "Upozornění na seznam povolených"
|
227 |
|
228 |
+
#: google-captcha.php:763
|
229 |
+
#, fuzzy
|
230 |
msgid ""
|
231 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
232 |
"added to the whitelist"
|
233 |
msgstr ""
|
234 |
+
"Tato zpráva se zobrazí namísto reCAPTCHA pokud je uživatelova IP adresa "
|
235 |
+
"přidána na seznam povolených"
|
236 |
|
237 |
+
#: google-captcha.php:769
|
238 |
+
#, fuzzy
|
239 |
+
msgid "reCAPTCHA Version"
|
240 |
+
msgstr "reCAPTCHA verze"
|
241 |
|
242 |
+
#: google-captcha.php:779
|
243 |
+
msgid ""
|
244 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
245 |
+
"ones will have to pass the captcha"
|
246 |
+
msgstr ""
|
247 |
|
248 |
+
#: google-captcha.php:787 google-captcha.php:800
|
249 |
+
#, fuzzy
|
250 |
+
msgid "reCAPTCHA Theme"
|
251 |
+
msgstr "reCAPTCHA šablona"
|
252 |
|
253 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
254 |
msgid "for version"
|
255 |
msgstr "pro verzi"
|
256 |
|
257 |
+
#: google-captcha.php:813
|
258 |
msgid "Save Changes"
|
259 |
msgstr "Uložit změny"
|
260 |
|
261 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
262 |
msgid "To use Google Captcha you must get the keys from"
|
263 |
+
msgstr "Chcete-li použít Google Captcha musíte získat klíče "
|
264 |
|
265 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
266 |
msgid "here"
|
267 |
msgstr "zde"
|
268 |
|
269 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
270 |
msgid "and enter them on the"
|
271 |
+
msgstr "a zadejte je na"
|
272 |
|
273 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
274 |
msgid "plugin setting page"
|
275 |
+
msgstr "stránce nastavení pluginu"
|
|
|
|
|
|
|
|
|
276 |
|
277 |
+
#: google-captcha.php:1082
|
|
|
278 |
#, fuzzy
|
279 |
+
msgid "User response is missing."
|
280 |
+
msgstr "Chyběla odezva uživatele"
|
281 |
|
282 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
283 |
+
#, fuzzy
|
284 |
+
msgid "Secret Key is invalid"
|
285 |
+
msgstr "Tajný klíč je neplatný"
|
286 |
|
287 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
288 |
+
msgid "Check your domain configuration"
|
289 |
+
msgstr "Zkontrolujte konfiguraci vaší domény"
|
|
|
|
|
|
|
|
|
290 |
|
291 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
292 |
+
msgid "and enter it again"
|
293 |
+
msgstr "a zadejte jej znovu"
|
294 |
|
295 |
+
#: google-captcha.php:1091
|
296 |
+
#, fuzzy
|
297 |
+
msgid "Secret Key is missing."
|
298 |
+
msgstr "Tajný klíč není vyplněn"
|
299 |
|
300 |
+
#: google-captcha.php:1098
|
301 |
+
#, fuzzy
|
302 |
+
msgid "User response is invalid"
|
303 |
+
msgstr "Neplatná odezva uživatele"
|
304 |
|
305 |
+
#: google-captcha.php:1099
|
306 |
+
#, fuzzy
|
307 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
308 |
+
msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA"
|
309 |
|
310 |
+
#: google-captcha.php:1100
|
311 |
+
#, fuzzy
|
312 |
+
msgid ""
|
313 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
314 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
315 |
msgstr ""
|
316 |
+
"V aktuálním formuláři byla zjištěna více než jedna reCAPTCHA. V tomto "
|
317 |
+
"případě reCAPTCHA nebude pracovat správně. Prosím, odstraňte všechny "
|
318 |
+
"nepotřebné reCAPTCHA bloky."
|
319 |
|
320 |
+
#: google-captcha.php:1246
|
321 |
+
#, fuzzy
|
322 |
+
msgid "Click the BACK button on your browser, and try again."
|
323 |
msgstr ""
|
324 |
+
"Zadali jste nesprávnou hodnotu reCAPTCHA . Klepněte na tlačítko zpět ve "
|
325 |
+
"vašem prohlížeči a zkuste to znovu."
|
326 |
|
327 |
+
#: google-captcha.php:1291
|
328 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
329 |
+
msgstr "Prosím, doplňte captcha a odešlete \"Test ověření\""
|
|
|
330 |
|
331 |
+
#: google-captcha.php:1295
|
332 |
+
msgid "Test verification"
|
333 |
+
msgstr "Test ověření"
|
334 |
|
335 |
+
#: google-captcha.php:1316
|
336 |
msgid "The verification is successfully completed"
|
337 |
+
msgstr "Ověření je úspěšně dokončeno"
|
338 |
|
339 |
+
#: google-captcha.php:1357
|
340 |
msgid "Support"
|
341 |
msgstr "Podpora"
|
342 |
|
343 |
#: includes/whitelist.php:64
|
344 |
msgid "For IP addresses from the whitelist reCAPTCHA will not be displayed"
|
345 |
+
msgstr "Pro IP adresy ze seznamu povolených nebude reCAPTCHA zobrazena"
|
346 |
|
347 |
#: includes/whitelist.php:71
|
348 |
msgid "Add IP to the whitelist"
|
349 |
+
msgstr "Přidat IP adresu na seznam povolených"
|
350 |
|
351 |
#: includes/whitelist.php:75
|
|
|
352 |
msgid "Save changes"
|
353 |
msgstr "Uložit změny"
|
354 |
|
355 |
#: includes/whitelist.php:92
|
356 |
msgid "My IP"
|
357 |
+
msgstr "Má IP adresa"
|
358 |
|
359 |
#: includes/whitelist.php:96
|
360 |
msgid "Save IP to the whitelist"
|
361 |
+
msgstr "Uložit IP adresu na seznam povolených"
|
362 |
|
363 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
364 |
msgid "Allowed formats"
|
365 |
+
msgstr "Přípustné formáty"
|
366 |
|
367 |
#: includes/whitelist.php:101
|
368 |
msgid "Allowed diapason"
|
369 |
+
msgstr "Povolený rozsah"
|
370 |
|
371 |
#: includes/whitelist.php:106
|
372 |
msgid "Search IP"
|
373 |
+
msgstr "Hledat IP adresu"
|
374 |
|
375 |
#: includes/whitelist.php:160
|
376 |
msgid "Nothing found"
|
377 |
+
msgstr "Nic nenalezeno"
|
378 |
|
379 |
#: includes/whitelist.php:160
|
380 |
msgid "No IP in the whitelist"
|
381 |
+
msgstr "Na seznamu povolených zatím není žádná IP adresa"
|
382 |
|
383 |
#: includes/whitelist.php:167
|
384 |
msgid "IP address"
|
385 |
+
msgstr "IP adresy"
|
386 |
|
387 |
#: includes/whitelist.php:168
|
388 |
msgid "Date added"
|
389 |
+
msgstr "Datum přidání"
|
390 |
|
391 |
#: includes/whitelist.php:222 includes/whitelist.php:232
|
392 |
msgid "Remove from the whitelist"
|
393 |
+
msgstr "Odebrat ze seznamu povolených"
|
394 |
|
395 |
#: includes/whitelist.php:318
|
396 |
msgid "IP added to the whitelist successfully"
|
397 |
+
msgstr "IP adresa byla úspěšně přidána na seznam povolených"
|
398 |
|
399 |
#: includes/whitelist.php:320 includes/whitelist.php:341
|
400 |
#: includes/whitelist.php:351
|
401 |
msgid "Some errors occured"
|
402 |
+
msgstr "Vyskytly se nějaké chyby"
|
403 |
|
404 |
#: includes/whitelist.php:322
|
405 |
msgid "IP is already in the whitelist"
|
406 |
+
msgstr "IP adresa již na seznamu povolených je"
|
407 |
|
408 |
#: includes/whitelist.php:325
|
409 |
msgid "Invalid IP. See allowed formats."
|
410 |
+
msgstr "Neplatná IP adresa. Zkontrolujte Přípustné formáty"
|
411 |
|
412 |
#: includes/whitelist.php:347
|
413 |
msgid "One IP was deleted successfully"
|
414 |
+
msgstr "Jedna IP adresa byla úspěšně odstraněna"
|
415 |
|
416 |
#: includes/whitelist.php:354
|
417 |
msgid "You have not entered any IP"
|
418 |
+
msgstr "Nezadali jste žádnou IP adresu"
|
419 |
|
420 |
#: includes/whitelist.php:357
|
421 |
msgid "You have not entered any IP in to the search form"
|
422 |
+
msgstr "Do vyhledávacího formuláře jste nezadali žádnou IP adresu"
|
423 |
|
424 |
#: includes/whitelist.php:359
|
425 |
msgid "Search results for"
|
426 |
+
msgstr "Výsledky hledání pro"
|
427 |
|
428 |
#: includes/pro_banners.php:17
|
|
|
429 |
msgid "This options is available in Pro version of plugin"
|
430 |
+
msgstr "Toto nastavení je k dispozici v Pro verzi pluginu"
|
431 |
|
432 |
#: includes/pro_banners.php:20
|
433 |
msgid "Close"
|
434 |
msgstr "Zavřít"
|
435 |
|
436 |
+
#: includes/pro_banners.php:29
|
437 |
+
msgid "Upgrade to Pro"
|
438 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
439 |
|
440 |
+
#: includes/pro_banners.php:42
|
441 |
msgid "Reason"
|
442 |
+
msgstr "Důvod"
|
443 |
|
444 |
+
#: includes/pro_banners.php:45
|
445 |
msgid "Allowed separators for IPs: a comma"
|
446 |
+
msgstr "Povolený oddělovač pro IP adresu: čárka"
|
447 |
|
448 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
449 |
msgid "semicolon"
|
450 |
+
msgstr "středník"
|
451 |
|
452 |
+
#: includes/pro_banners.php:45
|
453 |
msgid "ordinary space, tab, new line or carriage return"
|
454 |
+
msgstr "obyčejná mezera, tabelátor, nový řádek nebo návratu vozíku"
|
455 |
|
456 |
+
#: includes/pro_banners.php:46
|
457 |
msgid "Allowed separators for reasons: a comma"
|
458 |
+
msgstr "Povolený oddělovač pro Důvod: čárka"
|
459 |
|
460 |
+
#: includes/pro_banners.php:46
|
461 |
msgid "tab, new line or carriage return"
|
462 |
+
msgstr "tabelátor, nový řádek nebo návratu vozíku"
|
463 |
|
464 |
+
#: includes/pro_banners.php:71
|
465 |
msgid "Normal"
|
466 |
msgstr "Normální"
|
467 |
|
468 |
+
#: includes/pro_banners.php:72
|
469 |
msgid "Compact"
|
470 |
msgstr "Kompaktní"
|
471 |
|
472 |
+
#: includes/pro_banners.php:76
|
473 |
+
#, fuzzy
|
474 |
+
msgid "reCAPTCHA Language"
|
475 |
msgstr "reCAPTCHA jazyk"
|
476 |
|
477 |
+
#: includes/pro_banners.php:83
|
478 |
msgid "Use the current site language"
|
479 |
msgstr "Použít aktuální jazyk webu"
|
480 |
|
481 |
+
#: includes/pro_banners.php:83
|
482 |
msgid "Using"
|
483 |
+
msgstr "Využívá"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
484 |
|
485 |
+
#: includes/pro_banners.php:89
|
486 |
+
#, fuzzy
|
487 |
+
msgid "reCAPTCHA Size"
|
488 |
+
msgstr "reCAPTCHA velikost "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
489 |
|
490 |
+
#~ msgid "Unlock premium options by upgrading to Pro version"
|
491 |
+
#~ msgstr "Odemknout prémiové možnosti po aktualizaci na verzi Pro"
|
492 |
|
493 |
+
#~ msgid "Learn More"
|
494 |
+
#~ msgstr "Více informací"
|
495 |
|
496 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
497 |
+
#~ msgstr "Chyba: Zadali jste nesprávnou hodnotu reCAPTCHA"
|
498 |
|
499 |
+
#~ msgid "ERROR"
|
500 |
+
#~ msgstr "CHYBA"
|
501 |
|
502 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
503 |
+
#~ msgstr "Dříve než budete moci pokračovat, musíte se zaregistrovat %szde %s"
|
|
|
504 |
|
505 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
506 |
+
#~ msgstr "Zadejte webový a tajný klíč, které jste obdrželi při registraci"
|
|
|
|
languages/google-captcha-de_DE.mo
CHANGED
Binary file
|
languages/google-captcha-de_DE.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Fred Zimmer <fred.zimmer@medienconsulting.at>\n"
|
@@ -17,100 +17,113 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-captcha.php:34 google-captcha.php:
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Google Captcha-Einstellungen"
|
23 |
|
24 |
-
#: google-captcha.php:
|
25 |
-
msgid "
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: google-captcha.php:
|
29 |
msgid ""
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"blocks."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: google-captcha.php:
|
36 |
-
|
37 |
-
|
38 |
-
msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben."
|
39 |
|
40 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
41 |
msgid "You are in the whitelist"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: google-captcha.php:
|
45 |
-
|
|
|
46 |
msgstr "Site-Schlüssel"
|
47 |
|
48 |
-
#: google-captcha.php:
|
49 |
msgid "Secret Key"
|
50 |
msgstr "Geheimer Schlüssel"
|
51 |
|
52 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
msgid "Login form"
|
54 |
msgstr "Login Formular"
|
55 |
|
56 |
-
#: google-captcha.php:
|
57 |
msgid "Registration form"
|
58 |
msgstr "Registrierungsformular"
|
59 |
|
60 |
-
#: google-captcha.php:
|
61 |
msgid "Reset password form"
|
62 |
msgstr "Passwort Forumlar zurücksetzen"
|
63 |
|
64 |
-
#: google-captcha.php:
|
65 |
msgid "Comments form"
|
66 |
msgstr "Kommentarformular"
|
67 |
|
68 |
-
#: google-captcha.php:
|
69 |
msgid "Enter site key"
|
70 |
msgstr "Geben Sie den Site-Schlüssel ein"
|
71 |
|
72 |
-
#: google-captcha.php:
|
73 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
74 |
msgstr ""
|
75 |
"WARNUNG: das CAPTCHA wird nicht angezeigt wenn die Schlüsselfelder nicht "
|
76 |
"ausgefüllt sind!"
|
77 |
|
78 |
-
#: google-captcha.php:
|
79 |
msgid "Enter secret key"
|
80 |
msgstr "Geben Sie den geheimen Schlüssel ein"
|
81 |
|
82 |
-
#: google-captcha.php:
|
83 |
msgid "Settings saved"
|
84 |
msgstr "Einstellungen gespeichert"
|
85 |
|
86 |
-
#: google-captcha.php:
|
87 |
#, fuzzy
|
88 |
msgid "All plugin settings were restored"
|
89 |
msgstr "Plugin Einstellungsseite"
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "Settings"
|
93 |
msgstr "Einstellungen"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "Whitelist"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "Custom code"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Go PRO"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid ""
|
109 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
110 |
"version 1 features."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: google-captcha.php:
|
114 |
#, fuzzy, php-format
|
115 |
msgid ""
|
116 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -119,7 +132,7 @@ msgstr ""
|
|
119 |
"Wenn Sie Ihrem eigenen Formular Google CAPTCHA hinzufügen wollen, dann "
|
120 |
"kopieren Sie diesen Shortcode in Ihren Beitrag oder Seite"
|
121 |
|
122 |
-
#: google-captcha.php:
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -128,199 +141,193 @@ msgid ""
|
|
128 |
"your own form , please use the shortcode %s"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: google-captcha.php:
|
132 |
msgid "Authentication"
|
133 |
msgstr "Authentifizierung"
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
-
#,
|
137 |
-
msgid "
|
138 |
-
|
139 |
-
|
140 |
-
#: google-captcha.php:602
|
141 |
-
#, fuzzy
|
142 |
-
msgid "Enter site key and secret key, that you get after registration"
|
143 |
msgstr ""
|
144 |
-
"Geben Sie den Site- und Geheimen Schlüssel ein, den Sie nach der "
|
145 |
-
"Registrierung erhalten werden."
|
146 |
|
147 |
-
#: google-captcha.php:
|
148 |
#, fuzzy
|
149 |
msgid "Test Keys"
|
150 |
msgstr "Geheimer Schlüssel"
|
151 |
|
152 |
-
#: google-captcha.php:
|
153 |
msgid "Options"
|
154 |
msgstr "Optionen"
|
155 |
|
156 |
-
#: google-captcha.php:
|
157 |
msgid "Enable reCAPTCHA for"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: google-captcha.php:
|
161 |
msgid "WordPress default"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: google-captcha.php:
|
165 |
msgid "This option is available only for network or for main blog"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: google-captcha.php:
|
169 |
#, fuzzy
|
170 |
msgid "Plugins"
|
171 |
msgstr "Plugins Seite"
|
172 |
|
173 |
-
#: google-captcha.php:
|
|
|
174 |
#, php-format
|
175 |
msgid "You should %s to use this functionality"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: google-captcha.php:
|
179 |
#, fuzzy
|
180 |
msgid "activate"
|
181 |
msgstr "Oberfläche aktivieren"
|
182 |
|
183 |
-
#: google-captcha.php:
|
184 |
msgid "for network"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: google-captcha.php:
|
188 |
msgid "download"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: google-captcha.php:
|
192 |
msgid "Check off for adding captcha to forms on their settings pages"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: google-captcha.php:
|
196 |
#, php-format
|
197 |
msgid ""
|
198 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: google-captcha.php:
|
202 |
msgid "FAQ"
|
203 |
msgstr "FAQ"
|
204 |
|
205 |
-
#: google-captcha.php:
|
206 |
#, fuzzy
|
207 |
-
msgid "Hide reCAPTCHA in Comments
|
208 |
msgstr "für ReCAPTCHA-version"
|
209 |
|
210 |
-
#: google-captcha.php:
|
211 |
#, fuzzy
|
212 |
-
msgid "Whitelist
|
213 |
msgstr "Authentifizierung"
|
214 |
|
215 |
-
#: google-captcha.php:
|
216 |
msgid ""
|
217 |
-
"This message will be displayed instead of the reCAPTCHA
|
218 |
"added to the whitelist"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: google-captcha.php:
|
222 |
#, fuzzy
|
223 |
-
msgid "reCAPTCHA
|
224 |
msgstr "ReCAPTCHA Version:"
|
225 |
|
226 |
-
#: google-captcha.php:
|
227 |
-
|
228 |
-
|
229 |
-
|
|
|
230 |
|
231 |
-
#: google-captcha.php:
|
232 |
#, fuzzy
|
233 |
-
msgid "reCAPTCHA
|
234 |
msgstr "ReCAPTCHA Version:"
|
235 |
|
236 |
-
#: google-captcha.php:
|
237 |
#, fuzzy
|
238 |
msgid "for version"
|
239 |
msgstr "Version"
|
240 |
|
241 |
-
#: google-captcha.php:
|
242 |
msgid "Save Changes"
|
243 |
msgstr "Änderungen speichern"
|
244 |
|
245 |
-
#: google-captcha.php:
|
246 |
msgid "To use Google Captcha you must get the keys from"
|
247 |
msgstr ""
|
248 |
"Um Google Catpcha verwenden zu können, müssen Sie sich die Schlüssel holen "
|
249 |
"bei"
|
250 |
|
251 |
-
#: google-captcha.php:
|
252 |
msgid "here"
|
253 |
msgstr "hier"
|
254 |
|
255 |
-
#: google-captcha.php:
|
256 |
msgid "and enter them on the"
|
257 |
msgstr "und geben Sie sie ein auf"
|
258 |
|
259 |
-
#: google-captcha.php:
|
260 |
msgid "plugin setting page"
|
261 |
msgstr "Plugin Einstellungsseite"
|
262 |
|
263 |
-
#: google-captcha.php:
|
264 |
-
msgid "
|
265 |
-
msgstr "
|
266 |
|
267 |
-
#: google-captcha.php:
|
268 |
-
#: google-captcha.php:1107
|
269 |
#, fuzzy
|
270 |
-
msgid "
|
271 |
-
msgstr "
|
272 |
|
273 |
-
#: google-captcha.php:
|
274 |
-
msgid "
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: google-captcha.php:
|
278 |
#, fuzzy
|
279 |
-
msgid ""
|
280 |
-
"
|
281 |
-
"browser, and try again."
|
282 |
-
msgstr ""
|
283 |
-
"Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben. Klicken Sie auf den "
|
284 |
-
"\"zurück\" Knopf im Browser und versuchen Sie es nochmal."
|
285 |
|
286 |
-
#: google-captcha.php:
|
287 |
-
|
288 |
-
|
|
|
289 |
|
290 |
-
#: google-captcha.php:
|
291 |
-
msgid "
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: google-captcha.php:
|
295 |
-
|
296 |
-
|
|
|
297 |
|
298 |
-
#: google-captcha.php:
|
299 |
-
msgid "
|
|
|
|
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: google-captcha.php:
|
303 |
-
|
|
|
304 |
msgstr ""
|
|
|
|
|
305 |
|
306 |
-
#: google-captcha.php:
|
307 |
-
msgid "
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: google-captcha.php:
|
311 |
-
|
312 |
-
msgid "and enter it again"
|
313 |
-
msgstr "und geben Sie sie ein auf"
|
314 |
-
|
315 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
316 |
-
msgid "The user response is invalid"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: google-captcha.php:
|
320 |
msgid "The verification is successfully completed"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: google-captcha.php:
|
324 |
msgid "Support"
|
325 |
msgstr "Support"
|
326 |
|
@@ -345,7 +352,7 @@ msgstr ""
|
|
345 |
msgid "Save IP to the whitelist"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
349 |
msgid "Allowed formats"
|
350 |
msgstr ""
|
351 |
|
@@ -418,68 +425,78 @@ msgstr ""
|
|
418 |
msgid "Close"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: includes/pro_banners.php:
|
422 |
-
msgid "
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/pro_banners.php:
|
426 |
-
msgid "Learn More"
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: includes/pro_banners.php:43
|
430 |
msgid "Reason"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/pro_banners.php:
|
434 |
msgid "Allowed separators for IPs: a comma"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/pro_banners.php:
|
438 |
msgid "semicolon"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/pro_banners.php:
|
442 |
msgid "ordinary space, tab, new line or carriage return"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/pro_banners.php:
|
446 |
msgid "Allowed separators for reasons: a comma"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: includes/pro_banners.php:
|
450 |
msgid "tab, new line or carriage return"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: includes/pro_banners.php:
|
454 |
msgid "Normal"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: includes/pro_banners.php:
|
458 |
msgid "Compact"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/pro_banners.php:
|
462 |
#, fuzzy
|
463 |
-
msgid "reCAPTCHA
|
464 |
msgstr "ReCAPTCHA Version:"
|
465 |
|
466 |
-
#: includes/pro_banners.php:
|
467 |
msgid "Use the current site language"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: includes/pro_banners.php:
|
471 |
msgid "Using"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: includes/pro_banners.php:
|
475 |
#, fuzzy
|
476 |
-
msgid "reCAPTCHA
|
477 |
msgstr "ReCAPTCHA Version:"
|
478 |
|
479 |
#, fuzzy
|
480 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
|
|
|
|
|
|
|
|
481 |
#~ msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#, fuzzy
|
484 |
#~ msgid ""
|
485 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:01+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Fred Zimmer <fred.zimmer@medienconsulting.at>\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-captcha.php:34 google-captcha.php:602
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Google Captcha-Einstellungen"
|
23 |
|
24 |
+
#: google-captcha.php:254
|
25 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: google-captcha.php:255
|
29 |
msgid ""
|
30 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
31 |
+
"reload this page."
|
|
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: google-captcha.php:275
|
35 |
+
msgid "Warning"
|
36 |
+
msgstr ""
|
|
|
37 |
|
38 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
39 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
40 |
+
msgid "Error"
|
41 |
+
msgstr "Fehler"
|
42 |
+
|
43 |
+
#: google-captcha.php:377
|
44 |
msgid "You are in the whitelist"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: google-captcha.php:506
|
48 |
+
#, fuzzy
|
49 |
+
msgid "Site Key"
|
50 |
msgstr "Site-Schlüssel"
|
51 |
|
52 |
+
#: google-captcha.php:511
|
53 |
msgid "Secret Key"
|
54 |
msgstr "Geheimer Schlüssel"
|
55 |
|
56 |
+
#: google-captcha.php:518 google-captcha.php:519
|
57 |
+
#, fuzzy
|
58 |
+
msgid "Version"
|
59 |
+
msgstr "Version"
|
60 |
+
|
61 |
+
#: google-captcha.php:520
|
62 |
+
msgid "Invisible reCAPTCHA"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: google-captcha.php:525
|
66 |
msgid "Login form"
|
67 |
msgstr "Login Formular"
|
68 |
|
69 |
+
#: google-captcha.php:526
|
70 |
msgid "Registration form"
|
71 |
msgstr "Registrierungsformular"
|
72 |
|
73 |
+
#: google-captcha.php:527
|
74 |
msgid "Reset password form"
|
75 |
msgstr "Passwort Forumlar zurücksetzen"
|
76 |
|
77 |
+
#: google-captcha.php:528
|
78 |
msgid "Comments form"
|
79 |
msgstr "Kommentarformular"
|
80 |
|
81 |
+
#: google-captcha.php:547
|
82 |
msgid "Enter site key"
|
83 |
msgstr "Geben Sie den Site-Schlüssel ein"
|
84 |
|
85 |
+
#: google-captcha.php:548 google-captcha.php:554
|
86 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
87 |
msgstr ""
|
88 |
"WARNUNG: das CAPTCHA wird nicht angezeigt wenn die Schlüsselfelder nicht "
|
89 |
"ausgefüllt sind!"
|
90 |
|
91 |
+
#: google-captcha.php:553
|
92 |
msgid "Enter secret key"
|
93 |
msgstr "Geben Sie den geheimen Schlüssel ein"
|
94 |
|
95 |
+
#: google-captcha.php:581
|
96 |
msgid "Settings saved"
|
97 |
msgstr "Einstellungen gespeichert"
|
98 |
|
99 |
+
#: google-captcha.php:587
|
100 |
#, fuzzy
|
101 |
msgid "All plugin settings were restored"
|
102 |
msgstr "Plugin Einstellungsseite"
|
103 |
|
104 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
105 |
msgid "Settings"
|
106 |
msgstr "Einstellungen"
|
107 |
|
108 |
+
#: google-captcha.php:605
|
109 |
msgid "Whitelist"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: google-captcha.php:606
|
113 |
msgid "Custom code"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: google-captcha.php:607
|
117 |
msgid "Go PRO"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: google-captcha.php:612
|
121 |
msgid ""
|
122 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
123 |
"version 1 features."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: google-captcha.php:627
|
127 |
#, fuzzy, php-format
|
128 |
msgid ""
|
129 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
132 |
"Wenn Sie Ihrem eigenen Formular Google CAPTCHA hinzufügen wollen, dann "
|
133 |
"kopieren Sie diesen Shortcode in Ihren Beitrag oder Seite"
|
134 |
|
135 |
+
#: google-captcha.php:631
|
136 |
#, php-format
|
137 |
msgid ""
|
138 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
141 |
"your own form , please use the shortcode %s"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: google-captcha.php:637
|
145 |
msgid "Authentication"
|
146 |
msgstr "Authentifizierung"
|
147 |
|
148 |
+
#: google-captcha.php:638
|
149 |
+
#, php-format
|
150 |
+
msgid ""
|
151 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
152 |
+
"your API keys %shere%s"
|
|
|
|
|
|
|
153 |
msgstr ""
|
|
|
|
|
154 |
|
155 |
+
#: google-captcha.php:653
|
156 |
#, fuzzy
|
157 |
msgid "Test Keys"
|
158 |
msgstr "Geheimer Schlüssel"
|
159 |
|
160 |
+
#: google-captcha.php:656
|
161 |
msgid "Options"
|
162 |
msgstr "Optionen"
|
163 |
|
164 |
+
#: google-captcha.php:659
|
165 |
msgid "Enable reCAPTCHA for"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: google-captcha.php:663
|
169 |
msgid "WordPress default"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: google-captcha.php:672
|
173 |
msgid "This option is available only for network or for main blog"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: google-captcha.php:681
|
177 |
#, fuzzy
|
178 |
msgid "Plugins"
|
179 |
msgstr "Plugins Seite"
|
180 |
|
181 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
182 |
+
#: google-captcha.php:729
|
183 |
#, php-format
|
184 |
msgid "You should %s to use this functionality"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: google-captcha.php:690 google-captcha.php:725
|
188 |
#, fuzzy
|
189 |
msgid "activate"
|
190 |
msgstr "Oberfläche aktivieren"
|
191 |
|
192 |
+
#: google-captcha.php:690 google-captcha.php:725
|
193 |
msgid "for network"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: google-captcha.php:695 google-captcha.php:730
|
197 |
msgid "download"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: google-captcha.php:699
|
201 |
msgid "Check off for adding captcha to forms on their settings pages"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: google-captcha.php:742
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
211 |
msgid "FAQ"
|
212 |
msgstr "FAQ"
|
213 |
|
214 |
+
#: google-captcha.php:747
|
215 |
#, fuzzy
|
216 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
217 |
msgstr "für ReCAPTCHA-version"
|
218 |
|
219 |
+
#: google-captcha.php:759
|
220 |
#, fuzzy
|
221 |
+
msgid "Whitelist Notification"
|
222 |
msgstr "Authentifizierung"
|
223 |
|
224 |
+
#: google-captcha.php:763
|
225 |
msgid ""
|
226 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
227 |
"added to the whitelist"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: google-captcha.php:769
|
231 |
#, fuzzy
|
232 |
+
msgid "reCAPTCHA Version"
|
233 |
msgstr "ReCAPTCHA Version:"
|
234 |
|
235 |
+
#: google-captcha.php:779
|
236 |
+
msgid ""
|
237 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
238 |
+
"ones will have to pass the captcha"
|
239 |
+
msgstr ""
|
240 |
|
241 |
+
#: google-captcha.php:787 google-captcha.php:800
|
242 |
#, fuzzy
|
243 |
+
msgid "reCAPTCHA Theme"
|
244 |
msgstr "ReCAPTCHA Version:"
|
245 |
|
246 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
247 |
#, fuzzy
|
248 |
msgid "for version"
|
249 |
msgstr "Version"
|
250 |
|
251 |
+
#: google-captcha.php:813
|
252 |
msgid "Save Changes"
|
253 |
msgstr "Änderungen speichern"
|
254 |
|
255 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
256 |
msgid "To use Google Captcha you must get the keys from"
|
257 |
msgstr ""
|
258 |
"Um Google Catpcha verwenden zu können, müssen Sie sich die Schlüssel holen "
|
259 |
"bei"
|
260 |
|
261 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
262 |
msgid "here"
|
263 |
msgstr "hier"
|
264 |
|
265 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
266 |
msgid "and enter them on the"
|
267 |
msgstr "und geben Sie sie ein auf"
|
268 |
|
269 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
270 |
msgid "plugin setting page"
|
271 |
msgstr "Plugin Einstellungsseite"
|
272 |
|
273 |
+
#: google-captcha.php:1082
|
274 |
+
msgid "User response is missing."
|
275 |
+
msgstr ""
|
276 |
|
277 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
|
|
278 |
#, fuzzy
|
279 |
+
msgid "Secret Key is invalid"
|
280 |
+
msgstr "Geheimer Schlüssel"
|
281 |
|
282 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
283 |
+
msgid "Check your domain configuration"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
287 |
#, fuzzy
|
288 |
+
msgid "and enter it again"
|
289 |
+
msgstr "und geben Sie sie ein auf"
|
|
|
|
|
|
|
|
|
290 |
|
291 |
+
#: google-captcha.php:1091
|
292 |
+
#, fuzzy
|
293 |
+
msgid "Secret Key is missing."
|
294 |
+
msgstr "Geheimer Schlüssel"
|
295 |
|
296 |
+
#: google-captcha.php:1098
|
297 |
+
msgid "User response is invalid"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: google-captcha.php:1099
|
301 |
+
#, fuzzy
|
302 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
303 |
+
msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
|
304 |
|
305 |
+
#: google-captcha.php:1100
|
306 |
+
msgid ""
|
307 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
308 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: google-captcha.php:1246
|
312 |
+
#, fuzzy
|
313 |
+
msgid "Click the BACK button on your browser, and try again."
|
314 |
msgstr ""
|
315 |
+
"Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben. Klicken Sie auf den "
|
316 |
+
"\"zurück\" Knopf im Browser und versuchen Sie es nochmal."
|
317 |
|
318 |
+
#: google-captcha.php:1291
|
319 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: google-captcha.php:1295
|
323 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: google-captcha.php:1316
|
327 |
msgid "The verification is successfully completed"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: google-captcha.php:1357
|
331 |
msgid "Support"
|
332 |
msgstr "Support"
|
333 |
|
352 |
msgid "Save IP to the whitelist"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
356 |
msgid "Allowed formats"
|
357 |
msgstr ""
|
358 |
|
425 |
msgid "Close"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: includes/pro_banners.php:29
|
429 |
+
msgid "Upgrade to Pro"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/pro_banners.php:42
|
|
|
|
|
|
|
|
|
433 |
msgid "Reason"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: includes/pro_banners.php:45
|
437 |
msgid "Allowed separators for IPs: a comma"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
441 |
msgid "semicolon"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/pro_banners.php:45
|
445 |
msgid "ordinary space, tab, new line or carriage return"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: includes/pro_banners.php:46
|
449 |
msgid "Allowed separators for reasons: a comma"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/pro_banners.php:46
|
453 |
msgid "tab, new line or carriage return"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/pro_banners.php:71
|
457 |
msgid "Normal"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/pro_banners.php:72
|
461 |
msgid "Compact"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: includes/pro_banners.php:76
|
465 |
#, fuzzy
|
466 |
+
msgid "reCAPTCHA Language"
|
467 |
msgstr "ReCAPTCHA Version:"
|
468 |
|
469 |
+
#: includes/pro_banners.php:83
|
470 |
msgid "Use the current site language"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/pro_banners.php:83
|
474 |
msgid "Using"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/pro_banners.php:89
|
478 |
#, fuzzy
|
479 |
+
msgid "reCAPTCHA Size"
|
480 |
msgstr "ReCAPTCHA Version:"
|
481 |
|
482 |
#, fuzzy
|
483 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
484 |
+
#~ msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben."
|
485 |
+
|
486 |
+
#, fuzzy
|
487 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
488 |
#~ msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
|
489 |
|
490 |
+
#, fuzzy
|
491 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
492 |
+
#~ msgstr "Bevor Sie etwas tun können, müssen Sie %s hier %s registrieren"
|
493 |
+
|
494 |
+
#, fuzzy
|
495 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
496 |
+
#~ msgstr ""
|
497 |
+
#~ "Geben Sie den Site- und Geheimen Schlüssel ein, den Sie nach der "
|
498 |
+
#~ "Registrierung erhalten werden."
|
499 |
+
|
500 |
#, fuzzy
|
501 |
#~ msgid ""
|
502 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
languages/google-captcha-el.mo
CHANGED
Binary file
|
languages/google-captcha-el.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Dimitris Karantonis\n"
|
@@ -16,100 +16,113 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-captcha.php:34 google-captcha.php:
|
20 |
msgid "Google Captcha Settings"
|
21 |
msgstr "Ρυθμίσεις Google Captcha"
|
22 |
|
23 |
-
#: google-captcha.php:
|
24 |
-
msgid "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: google-captcha.php:
|
28 |
msgid ""
|
29 |
-
"
|
30 |
-
"
|
31 |
-
"blocks."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: google-captcha.php:
|
35 |
-
|
36 |
-
|
37 |
-
msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
|
38 |
|
39 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
40 |
msgid "You are in the whitelist"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: google-captcha.php:
|
44 |
-
|
|
|
45 |
msgstr "Κλειδί ιστοσελίδας"
|
46 |
|
47 |
-
#: google-captcha.php:
|
48 |
msgid "Secret Key"
|
49 |
msgstr "Μυστικό κλειδί"
|
50 |
|
51 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
msgid "Login form"
|
53 |
msgstr "Φόρμα εισόδου"
|
54 |
|
55 |
-
#: google-captcha.php:
|
56 |
msgid "Registration form"
|
57 |
msgstr "Φόρμα εγγραφής"
|
58 |
|
59 |
-
#: google-captcha.php:
|
60 |
msgid "Reset password form"
|
61 |
msgstr "Φόρμα ανάκτησης κωδικού πρόσβασης"
|
62 |
|
63 |
-
#: google-captcha.php:
|
64 |
msgid "Comments form"
|
65 |
msgstr "Φόρμα για σχόλια"
|
66 |
|
67 |
-
#: google-captcha.php:
|
68 |
msgid "Enter site key"
|
69 |
msgstr "Εισάγετε το κλειδί της ιστοσελίδας"
|
70 |
|
71 |
-
#: google-captcha.php:
|
72 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
73 |
msgstr ""
|
74 |
"ΠΡΟΣΟΧΗ: Το captcha δεν θα εμφανιστεί εάν δεν συμπληρώσετε τα κλειδιά στα "
|
75 |
"πεδία."
|
76 |
|
77 |
-
#: google-captcha.php:
|
78 |
msgid "Enter secret key"
|
79 |
msgstr "Εισάγετε το μυστικό κλειδί"
|
80 |
|
81 |
-
#: google-captcha.php:
|
82 |
msgid "Settings saved"
|
83 |
msgstr "Οι ρυμθίσεις αποθηκεύτηκαν"
|
84 |
|
85 |
-
#: google-captcha.php:
|
86 |
#, fuzzy
|
87 |
msgid "All plugin settings were restored"
|
88 |
msgstr "σελίδα ρυθμίσεων της επέκτασης"
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
msgid "Settings"
|
92 |
msgstr "Ρυθμίσεις"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "Whitelist"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
msgid "Custom code"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "Go PRO"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: google-captcha.php:
|
107 |
msgid ""
|
108 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
109 |
"version 1 features."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: google-captcha.php:
|
113 |
#, fuzzy, php-format
|
114 |
msgid ""
|
115 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -119,7 +132,7 @@ msgstr ""
|
|
119 |
"αντιγράψτε και επικολλήστε αυτό το σύντομο κωδικό στη δημοσίευση ή στη "
|
120 |
"σελίδα σας:"
|
121 |
|
122 |
-
#: google-captcha.php:
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -128,199 +141,192 @@ msgid ""
|
|
128 |
"your own form , please use the shortcode %s"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: google-captcha.php:
|
132 |
msgid "Authentication"
|
133 |
msgstr "Πιστοποίηση"
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
-
#,
|
137 |
-
msgid "
|
138 |
-
|
139 |
-
"
|
140 |
-
|
141 |
-
#: google-captcha.php:602
|
142 |
-
#, fuzzy
|
143 |
-
msgid "Enter site key and secret key, that you get after registration"
|
144 |
msgstr ""
|
145 |
-
"Πληκτρολογήστε το κλειδί της ιστοσελίδας και το μυστικό κλειδί, τα οποία "
|
146 |
-
"παραλάβατε μετά την εγγραφή."
|
147 |
|
148 |
-
#: google-captcha.php:
|
149 |
#, fuzzy
|
150 |
msgid "Test Keys"
|
151 |
msgstr "Μυστικό κλειδί"
|
152 |
|
153 |
-
#: google-captcha.php:
|
154 |
msgid "Options"
|
155 |
msgstr "Επιλογές"
|
156 |
|
157 |
-
#: google-captcha.php:
|
158 |
msgid "Enable reCAPTCHA for"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: google-captcha.php:
|
162 |
msgid "WordPress default"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: google-captcha.php:
|
166 |
msgid "This option is available only for network or for main blog"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: google-captcha.php:
|
170 |
#, fuzzy
|
171 |
msgid "Plugins"
|
172 |
msgstr "Σελίδα επεκτάσεων"
|
173 |
|
174 |
-
#: google-captcha.php:
|
|
|
175 |
#, php-format
|
176 |
msgid "You should %s to use this functionality"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: google-captcha.php:
|
180 |
#, fuzzy
|
181 |
msgid "activate"
|
182 |
msgstr "Активировать Contact form"
|
183 |
|
184 |
-
#: google-captcha.php:
|
185 |
msgid "for network"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: google-captcha.php:
|
189 |
msgid "download"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: google-captcha.php:
|
193 |
msgid "Check off for adding captcha to forms on their settings pages"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: google-captcha.php:
|
197 |
#, php-format
|
198 |
msgid ""
|
199 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: google-captcha.php:
|
203 |
msgid "FAQ"
|
204 |
msgstr "Συχνές Ερωτήσεις"
|
205 |
|
206 |
-
#: google-captcha.php:
|
207 |
#, fuzzy
|
208 |
-
msgid "Hide reCAPTCHA in Comments
|
209 |
msgstr "για την έκδοση reCAPTCHA"
|
210 |
|
211 |
-
#: google-captcha.php:
|
212 |
#, fuzzy
|
213 |
-
msgid "Whitelist
|
214 |
msgstr "Πιστοποίηση"
|
215 |
|
216 |
-
#: google-captcha.php:
|
217 |
msgid ""
|
218 |
-
"This message will be displayed instead of the reCAPTCHA
|
219 |
"added to the whitelist"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: google-captcha.php:
|
223 |
#, fuzzy
|
224 |
-
msgid "reCAPTCHA
|
225 |
msgstr "Έκδοση reCAPTCHA:"
|
226 |
|
227 |
-
#: google-captcha.php:
|
228 |
-
|
229 |
-
|
230 |
-
|
|
|
231 |
|
232 |
-
#: google-captcha.php:
|
233 |
#, fuzzy
|
234 |
-
msgid "reCAPTCHA
|
235 |
msgstr "Έκδοση reCAPTCHA:"
|
236 |
|
237 |
-
#: google-captcha.php:
|
238 |
#, fuzzy
|
239 |
msgid "for version"
|
240 |
msgstr "έκδοση"
|
241 |
|
242 |
-
#: google-captcha.php:
|
243 |
msgid "Save Changes"
|
244 |
msgstr "Αποθήκευση αλλαγών"
|
245 |
|
246 |
-
#: google-captcha.php:
|
247 |
msgid "To use Google Captcha you must get the keys from"
|
248 |
msgstr ""
|
249 |
"Για να χρησιμοποιήσετε το Google Captcha θα πρέπει να πάρετε τα κλειδιά από"
|
250 |
|
251 |
-
#: google-captcha.php:
|
252 |
msgid "here"
|
253 |
msgstr "εδώ"
|
254 |
|
255 |
-
#: google-captcha.php:
|
256 |
msgid "and enter them on the"
|
257 |
msgstr "και να τα εισάγετε στη"
|
258 |
|
259 |
-
#: google-captcha.php:
|
260 |
msgid "plugin setting page"
|
261 |
msgstr "σελίδα ρυθμίσεων της επέκτασης"
|
262 |
|
263 |
-
#: google-captcha.php:
|
264 |
-
msgid "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: google-captcha.php:
|
268 |
-
#: google-captcha.php:1107
|
269 |
#, fuzzy
|
270 |
-
msgid "
|
271 |
-
msgstr "
|
272 |
|
273 |
-
#: google-captcha.php:
|
274 |
-
msgid "
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: google-captcha.php:
|
278 |
#, fuzzy
|
279 |
-
msgid ""
|
280 |
-
"
|
281 |
-
"browser, and try again."
|
282 |
-
msgstr ""
|
283 |
-
"Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA. Κάντε κλικ στο κουμπί Πίσω "
|
284 |
-
"στον περιηγητή σας, και δοκιμάστε ξανά."
|
285 |
|
286 |
-
#: google-captcha.php:
|
287 |
-
|
288 |
-
|
|
|
289 |
|
290 |
-
#: google-captcha.php:
|
291 |
-
msgid "
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: google-captcha.php:
|
295 |
-
|
296 |
-
|
|
|
297 |
|
298 |
-
#: google-captcha.php:
|
299 |
-
msgid "
|
|
|
|
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: google-captcha.php:
|
303 |
-
|
|
|
304 |
msgstr ""
|
|
|
|
|
305 |
|
306 |
-
#: google-captcha.php:
|
307 |
-
msgid "
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: google-captcha.php:
|
311 |
-
|
312 |
-
msgid "and enter it again"
|
313 |
-
msgstr "και να τα εισάγετε στη"
|
314 |
-
|
315 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
316 |
-
msgid "The user response is invalid"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: google-captcha.php:
|
320 |
msgid "The verification is successfully completed"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: google-captcha.php:
|
324 |
msgid "Support"
|
325 |
msgstr "Υποστήριξη"
|
326 |
|
@@ -345,7 +351,7 @@ msgstr ""
|
|
345 |
msgid "Save IP to the whitelist"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
349 |
msgid "Allowed formats"
|
350 |
msgstr ""
|
351 |
|
@@ -418,68 +424,79 @@ msgstr ""
|
|
418 |
msgid "Close"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: includes/pro_banners.php:
|
422 |
-
msgid "
|
423 |
-
msgstr ""
|
424 |
-
|
425 |
-
#: includes/pro_banners.php:30
|
426 |
-
msgid "Learn More"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/pro_banners.php:
|
430 |
msgid "Reason"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/pro_banners.php:
|
434 |
msgid "Allowed separators for IPs: a comma"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/pro_banners.php:
|
438 |
msgid "semicolon"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/pro_banners.php:
|
442 |
msgid "ordinary space, tab, new line or carriage return"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/pro_banners.php:
|
446 |
msgid "Allowed separators for reasons: a comma"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: includes/pro_banners.php:
|
450 |
msgid "tab, new line or carriage return"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: includes/pro_banners.php:
|
454 |
msgid "Normal"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: includes/pro_banners.php:
|
458 |
msgid "Compact"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/pro_banners.php:
|
462 |
#, fuzzy
|
463 |
-
msgid "reCAPTCHA
|
464 |
msgstr "Έκδοση reCAPTCHA:"
|
465 |
|
466 |
-
#: includes/pro_banners.php:
|
467 |
msgid "Use the current site language"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: includes/pro_banners.php:
|
471 |
msgid "Using"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: includes/pro_banners.php:
|
475 |
#, fuzzy
|
476 |
-
msgid "reCAPTCHA
|
477 |
msgstr "Έκδοση reCAPTCHA:"
|
478 |
|
479 |
#, fuzzy
|
480 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
481 |
#~ msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#, fuzzy
|
484 |
#~ msgid ""
|
485 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:00+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Dimitris Karantonis\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-captcha.php:34 google-captcha.php:602
|
20 |
msgid "Google Captcha Settings"
|
21 |
msgstr "Ρυθμίσεις Google Captcha"
|
22 |
|
23 |
+
#: google-captcha.php:254
|
24 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: google-captcha.php:255
|
28 |
msgid ""
|
29 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
30 |
+
"reload this page."
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: google-captcha.php:275
|
34 |
+
msgid "Warning"
|
35 |
+
msgstr ""
|
|
|
36 |
|
37 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
38 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
39 |
+
msgid "Error"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: google-captcha.php:377
|
43 |
msgid "You are in the whitelist"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: google-captcha.php:506
|
47 |
+
#, fuzzy
|
48 |
+
msgid "Site Key"
|
49 |
msgstr "Κλειδί ιστοσελίδας"
|
50 |
|
51 |
+
#: google-captcha.php:511
|
52 |
msgid "Secret Key"
|
53 |
msgstr "Μυστικό κλειδί"
|
54 |
|
55 |
+
#: google-captcha.php:518 google-captcha.php:519
|
56 |
+
#, fuzzy
|
57 |
+
msgid "Version"
|
58 |
+
msgstr "έκδοση"
|
59 |
+
|
60 |
+
#: google-captcha.php:520
|
61 |
+
msgid "Invisible reCAPTCHA"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: google-captcha.php:525
|
65 |
msgid "Login form"
|
66 |
msgstr "Φόρμα εισόδου"
|
67 |
|
68 |
+
#: google-captcha.php:526
|
69 |
msgid "Registration form"
|
70 |
msgstr "Φόρμα εγγραφής"
|
71 |
|
72 |
+
#: google-captcha.php:527
|
73 |
msgid "Reset password form"
|
74 |
msgstr "Φόρμα ανάκτησης κωδικού πρόσβασης"
|
75 |
|
76 |
+
#: google-captcha.php:528
|
77 |
msgid "Comments form"
|
78 |
msgstr "Φόρμα για σχόλια"
|
79 |
|
80 |
+
#: google-captcha.php:547
|
81 |
msgid "Enter site key"
|
82 |
msgstr "Εισάγετε το κλειδί της ιστοσελίδας"
|
83 |
|
84 |
+
#: google-captcha.php:548 google-captcha.php:554
|
85 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
86 |
msgstr ""
|
87 |
"ΠΡΟΣΟΧΗ: Το captcha δεν θα εμφανιστεί εάν δεν συμπληρώσετε τα κλειδιά στα "
|
88 |
"πεδία."
|
89 |
|
90 |
+
#: google-captcha.php:553
|
91 |
msgid "Enter secret key"
|
92 |
msgstr "Εισάγετε το μυστικό κλειδί"
|
93 |
|
94 |
+
#: google-captcha.php:581
|
95 |
msgid "Settings saved"
|
96 |
msgstr "Οι ρυμθίσεις αποθηκεύτηκαν"
|
97 |
|
98 |
+
#: google-captcha.php:587
|
99 |
#, fuzzy
|
100 |
msgid "All plugin settings were restored"
|
101 |
msgstr "σελίδα ρυθμίσεων της επέκτασης"
|
102 |
|
103 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
104 |
msgid "Settings"
|
105 |
msgstr "Ρυθμίσεις"
|
106 |
|
107 |
+
#: google-captcha.php:605
|
108 |
msgid "Whitelist"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: google-captcha.php:606
|
112 |
msgid "Custom code"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: google-captcha.php:607
|
116 |
msgid "Go PRO"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: google-captcha.php:612
|
120 |
msgid ""
|
121 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
122 |
"version 1 features."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: google-captcha.php:627
|
126 |
#, fuzzy, php-format
|
127 |
msgid ""
|
128 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
132 |
"αντιγράψτε και επικολλήστε αυτό το σύντομο κωδικό στη δημοσίευση ή στη "
|
133 |
"σελίδα σας:"
|
134 |
|
135 |
+
#: google-captcha.php:631
|
136 |
#, php-format
|
137 |
msgid ""
|
138 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
141 |
"your own form , please use the shortcode %s"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: google-captcha.php:637
|
145 |
msgid "Authentication"
|
146 |
msgstr "Πιστοποίηση"
|
147 |
|
148 |
+
#: google-captcha.php:638
|
149 |
+
#, php-format
|
150 |
+
msgid ""
|
151 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
152 |
+
"your API keys %shere%s"
|
|
|
|
|
|
|
|
|
153 |
msgstr ""
|
|
|
|
|
154 |
|
155 |
+
#: google-captcha.php:653
|
156 |
#, fuzzy
|
157 |
msgid "Test Keys"
|
158 |
msgstr "Μυστικό κλειδί"
|
159 |
|
160 |
+
#: google-captcha.php:656
|
161 |
msgid "Options"
|
162 |
msgstr "Επιλογές"
|
163 |
|
164 |
+
#: google-captcha.php:659
|
165 |
msgid "Enable reCAPTCHA for"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: google-captcha.php:663
|
169 |
msgid "WordPress default"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: google-captcha.php:672
|
173 |
msgid "This option is available only for network or for main blog"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: google-captcha.php:681
|
177 |
#, fuzzy
|
178 |
msgid "Plugins"
|
179 |
msgstr "Σελίδα επεκτάσεων"
|
180 |
|
181 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
182 |
+
#: google-captcha.php:729
|
183 |
#, php-format
|
184 |
msgid "You should %s to use this functionality"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: google-captcha.php:690 google-captcha.php:725
|
188 |
#, fuzzy
|
189 |
msgid "activate"
|
190 |
msgstr "Активировать Contact form"
|
191 |
|
192 |
+
#: google-captcha.php:690 google-captcha.php:725
|
193 |
msgid "for network"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: google-captcha.php:695 google-captcha.php:730
|
197 |
msgid "download"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: google-captcha.php:699
|
201 |
msgid "Check off for adding captcha to forms on their settings pages"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: google-captcha.php:742
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
211 |
msgid "FAQ"
|
212 |
msgstr "Συχνές Ερωτήσεις"
|
213 |
|
214 |
+
#: google-captcha.php:747
|
215 |
#, fuzzy
|
216 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
217 |
msgstr "για την έκδοση reCAPTCHA"
|
218 |
|
219 |
+
#: google-captcha.php:759
|
220 |
#, fuzzy
|
221 |
+
msgid "Whitelist Notification"
|
222 |
msgstr "Πιστοποίηση"
|
223 |
|
224 |
+
#: google-captcha.php:763
|
225 |
msgid ""
|
226 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
227 |
"added to the whitelist"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: google-captcha.php:769
|
231 |
#, fuzzy
|
232 |
+
msgid "reCAPTCHA Version"
|
233 |
msgstr "Έκδοση reCAPTCHA:"
|
234 |
|
235 |
+
#: google-captcha.php:779
|
236 |
+
msgid ""
|
237 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
238 |
+
"ones will have to pass the captcha"
|
239 |
+
msgstr ""
|
240 |
|
241 |
+
#: google-captcha.php:787 google-captcha.php:800
|
242 |
#, fuzzy
|
243 |
+
msgid "reCAPTCHA Theme"
|
244 |
msgstr "Έκδοση reCAPTCHA:"
|
245 |
|
246 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
247 |
#, fuzzy
|
248 |
msgid "for version"
|
249 |
msgstr "έκδοση"
|
250 |
|
251 |
+
#: google-captcha.php:813
|
252 |
msgid "Save Changes"
|
253 |
msgstr "Αποθήκευση αλλαγών"
|
254 |
|
255 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
256 |
msgid "To use Google Captcha you must get the keys from"
|
257 |
msgstr ""
|
258 |
"Για να χρησιμοποιήσετε το Google Captcha θα πρέπει να πάρετε τα κλειδιά από"
|
259 |
|
260 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
261 |
msgid "here"
|
262 |
msgstr "εδώ"
|
263 |
|
264 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
265 |
msgid "and enter them on the"
|
266 |
msgstr "και να τα εισάγετε στη"
|
267 |
|
268 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
269 |
msgid "plugin setting page"
|
270 |
msgstr "σελίδα ρυθμίσεων της επέκτασης"
|
271 |
|
272 |
+
#: google-captcha.php:1082
|
273 |
+
msgid "User response is missing."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
|
|
277 |
#, fuzzy
|
278 |
+
msgid "Secret Key is invalid"
|
279 |
+
msgstr "Μυστικό κλειδί"
|
280 |
|
281 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
282 |
+
msgid "Check your domain configuration"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
286 |
#, fuzzy
|
287 |
+
msgid "and enter it again"
|
288 |
+
msgstr "και να τα εισάγετε στη"
|
|
|
|
|
|
|
|
|
289 |
|
290 |
+
#: google-captcha.php:1091
|
291 |
+
#, fuzzy
|
292 |
+
msgid "Secret Key is missing."
|
293 |
+
msgstr "Μυστικό κλειδί"
|
294 |
|
295 |
+
#: google-captcha.php:1098
|
296 |
+
msgid "User response is invalid"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: google-captcha.php:1099
|
300 |
+
#, fuzzy
|
301 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
302 |
+
msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
|
303 |
|
304 |
+
#: google-captcha.php:1100
|
305 |
+
msgid ""
|
306 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
307 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: google-captcha.php:1246
|
311 |
+
#, fuzzy
|
312 |
+
msgid "Click the BACK button on your browser, and try again."
|
313 |
msgstr ""
|
314 |
+
"Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA. Κάντε κλικ στο κουμπί Πίσω "
|
315 |
+
"στον περιηγητή σας, και δοκιμάστε ξανά."
|
316 |
|
317 |
+
#: google-captcha.php:1291
|
318 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: google-captcha.php:1295
|
322 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: google-captcha.php:1316
|
326 |
msgid "The verification is successfully completed"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: google-captcha.php:1357
|
330 |
msgid "Support"
|
331 |
msgstr "Υποστήριξη"
|
332 |
|
351 |
msgid "Save IP to the whitelist"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
355 |
msgid "Allowed formats"
|
356 |
msgstr ""
|
357 |
|
424 |
msgid "Close"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: includes/pro_banners.php:29
|
428 |
+
msgid "Upgrade to Pro"
|
|
|
|
|
|
|
|
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: includes/pro_banners.php:42
|
432 |
msgid "Reason"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: includes/pro_banners.php:45
|
436 |
msgid "Allowed separators for IPs: a comma"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
440 |
msgid "semicolon"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: includes/pro_banners.php:45
|
444 |
msgid "ordinary space, tab, new line or carriage return"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: includes/pro_banners.php:46
|
448 |
msgid "Allowed separators for reasons: a comma"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/pro_banners.php:46
|
452 |
msgid "tab, new line or carriage return"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/pro_banners.php:71
|
456 |
msgid "Normal"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: includes/pro_banners.php:72
|
460 |
msgid "Compact"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: includes/pro_banners.php:76
|
464 |
#, fuzzy
|
465 |
+
msgid "reCAPTCHA Language"
|
466 |
msgstr "Έκδοση reCAPTCHA:"
|
467 |
|
468 |
+
#: includes/pro_banners.php:83
|
469 |
msgid "Use the current site language"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: includes/pro_banners.php:83
|
473 |
msgid "Using"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: includes/pro_banners.php:89
|
477 |
#, fuzzy
|
478 |
+
msgid "reCAPTCHA Size"
|
479 |
msgstr "Έκδοση reCAPTCHA:"
|
480 |
|
481 |
#, fuzzy
|
482 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
483 |
#~ msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
|
484 |
|
485 |
+
#, fuzzy
|
486 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
487 |
+
#~ msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
|
488 |
+
|
489 |
+
#, fuzzy
|
490 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
491 |
+
#~ msgstr ""
|
492 |
+
#~ "Πριν να είστε σε θέση να κάνετε κάτι, θα πρέπει να εγγραφείτε %s εδώ %s"
|
493 |
+
|
494 |
+
#, fuzzy
|
495 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
496 |
+
#~ msgstr ""
|
497 |
+
#~ "Πληκτρολογήστε το κλειδί της ιστοσελίδας και το μυστικό κλειδί, τα οποία "
|
498 |
+
#~ "παραλάβατε μετά την εγγραφή."
|
499 |
+
|
500 |
#, fuzzy
|
501 |
#~ msgid ""
|
502 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
languages/google-captcha-es_ES.mo
CHANGED
Binary file
|
languages/google-captcha-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
|
@@ -17,103 +17,115 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-captcha.php:34 google-captcha.php:
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Googe Captcha Ajustes"
|
23 |
|
24 |
-
#: google-captcha.php:
|
25 |
-
msgid "
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: google-captcha.php:
|
29 |
msgid ""
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"blocks."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: google-captcha.php:
|
36 |
-
|
37 |
-
|
38 |
-
msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
|
39 |
|
40 |
-
#: google-captcha.php:
|
41 |
-
|
|
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: google-captcha.php:
|
45 |
-
msgid "
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
49 |
msgid "Secret Key"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
msgid "Login form"
|
54 |
msgstr "Formulario de acceso"
|
55 |
|
56 |
-
#: google-captcha.php:
|
57 |
msgid "Registration form"
|
58 |
msgstr "Formulario de registro"
|
59 |
|
60 |
-
#: google-captcha.php:
|
61 |
msgid "Reset password form"
|
62 |
msgstr "Formulario de restablecimiento de contraseña"
|
63 |
|
64 |
-
#: google-captcha.php:
|
65 |
msgid "Comments form"
|
66 |
msgstr "Formulario de comentarios"
|
67 |
|
68 |
-
#: google-captcha.php:
|
69 |
#, fuzzy
|
70 |
msgid "Enter site key"
|
71 |
msgstr "Introduce la clave privada"
|
72 |
|
73 |
-
#: google-captcha.php:
|
74 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
75 |
msgstr ""
|
76 |
"ADVERTENCIA: El Captcha no se mostrará mientras usted no llene los campos "
|
77 |
"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 |
msgid "Settings saved"
|
86 |
msgstr "Configuración guardada"
|
87 |
|
88 |
-
#: google-captcha.php:
|
89 |
#, fuzzy
|
90 |
msgid "All plugin settings were restored"
|
91 |
msgstr "página de configuración de plugin"
|
92 |
|
93 |
-
#: google-captcha.php:
|
94 |
msgid "Settings"
|
95 |
msgstr "Ajustes"
|
96 |
|
97 |
-
#: google-captcha.php:
|
98 |
#, fuzzy
|
99 |
msgid "Whitelist"
|
100 |
msgstr "Blanco"
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "Custom code"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: google-captcha.php:
|
107 |
msgid "Go PRO"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: google-captcha.php:
|
111 |
msgid ""
|
112 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
113 |
"version 1 features."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: google-captcha.php:
|
117 |
#, fuzzy, php-format
|
118 |
msgid ""
|
119 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -122,7 +134,7 @@ msgstr ""
|
|
122 |
"Si quisiera añadir el Google Captcha para su formulario, simplemente copia y "
|
123 |
"pega este código corto en tu post o página:"
|
124 |
|
125 |
-
#: google-captcha.php:
|
126 |
#, php-format
|
127 |
msgid ""
|
128 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -131,192 +143,184 @@ msgid ""
|
|
131 |
"your own form , please use the shortcode %s"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
msgid "Authentication"
|
136 |
msgstr "Autentificación"
|
137 |
|
138 |
-
#: google-captcha.php:
|
139 |
-
#,
|
140 |
-
msgid "
|
141 |
-
|
142 |
-
|
143 |
-
#: google-captcha.php:602
|
144 |
-
#, fuzzy
|
145 |
-
msgid "Enter site key and secret key, that you get after registration"
|
146 |
msgstr ""
|
147 |
-
"Introduzca las claves pública y privada, que se obtiene después de "
|
148 |
-
"Registrarse."
|
149 |
|
150 |
-
#: google-captcha.php:
|
151 |
msgid "Test Keys"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: google-captcha.php:
|
155 |
msgid "Options"
|
156 |
msgstr "Opciones"
|
157 |
|
158 |
-
#: google-captcha.php:
|
159 |
msgid "Enable reCAPTCHA for"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "WordPress default"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: google-captcha.php:
|
167 |
msgid "This option is available only for network or for main blog"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: google-captcha.php:
|
171 |
#, fuzzy
|
172 |
msgid "Plugins"
|
173 |
msgstr "Página de Plugins"
|
174 |
|
175 |
-
#: google-captcha.php:
|
|
|
176 |
#, php-format
|
177 |
msgid "You should %s to use this functionality"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: google-captcha.php:
|
181 |
#, fuzzy
|
182 |
msgid "activate"
|
183 |
msgstr "Tema Activado"
|
184 |
|
185 |
-
#: google-captcha.php:
|
186 |
msgid "for network"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: google-captcha.php:
|
190 |
msgid "download"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: google-captcha.php:
|
194 |
msgid "Check off for adding captcha to forms on their settings pages"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: google-captcha.php:
|
198 |
#, php-format
|
199 |
msgid ""
|
200 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: google-captcha.php:
|
204 |
msgid "FAQ"
|
205 |
msgstr "Preguntas Frecuentes"
|
206 |
|
207 |
-
#: google-captcha.php:
|
208 |
-
msgid "Hide reCAPTCHA in Comments
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: google-captcha.php:
|
212 |
#, fuzzy
|
213 |
-
msgid "Whitelist
|
214 |
msgstr "Autentificación"
|
215 |
|
216 |
-
#: google-captcha.php:
|
217 |
msgid ""
|
218 |
-
"This message will be displayed instead of the reCAPTCHA
|
219 |
"added to the whitelist"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: google-captcha.php:
|
223 |
-
msgid "reCAPTCHA
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: google-captcha.php:
|
227 |
-
|
228 |
-
|
|
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: google-captcha.php:
|
232 |
-
msgid "reCAPTCHA
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: google-captcha.php:
|
236 |
msgid "for version"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: google-captcha.php:
|
240 |
msgid "Save Changes"
|
241 |
msgstr "Guardar Cambios"
|
242 |
|
243 |
-
#: google-captcha.php:
|
244 |
msgid "To use Google Captcha you must get the keys from"
|
245 |
msgstr "Para utilizar Google Captcha debe obtener las claves de"
|
246 |
|
247 |
-
#: google-captcha.php:
|
248 |
msgid "here"
|
249 |
msgstr "aquí"
|
250 |
|
251 |
-
#: google-captcha.php:
|
252 |
msgid "and enter them on the"
|
253 |
msgstr "e introducirlas en"
|
254 |
|
255 |
-
#: google-captcha.php:
|
256 |
msgid "plugin setting page"
|
257 |
msgstr "página de configuración de plugin"
|
258 |
|
259 |
-
#: google-captcha.php:
|
260 |
-
msgid "
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: google-captcha.php:
|
264 |
-
|
265 |
-
|
266 |
-
msgid "You have entered an incorrect reCAPTCHA value"
|
267 |
-
msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
|
268 |
|
269 |
-
#: google-captcha.php:
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: google-captcha.php:
|
274 |
#, fuzzy
|
275 |
-
msgid ""
|
276 |
-
"
|
277 |
-
"browser, and try again."
|
278 |
-
msgstr ""
|
279 |
-
"Error: Ha introducido un valor incorrecto de CAPTCHA. Haga clic en el botón "
|
280 |
-
"Regresar de su navegador y vuelva a intentarlo."
|
281 |
|
282 |
-
#: google-captcha.php:
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: google-captcha.php:
|
287 |
-
msgid "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: google-captcha.php:
|
291 |
-
|
292 |
-
|
|
|
293 |
|
294 |
-
#: google-captcha.php:
|
295 |
-
msgid "
|
|
|
|
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: google-captcha.php:
|
299 |
-
|
|
|
300 |
msgstr ""
|
|
|
|
|
301 |
|
302 |
-
#: google-captcha.php:
|
303 |
-
msgid "
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: google-captcha.php:
|
307 |
-
|
308 |
-
msgid "and enter it again"
|
309 |
-
msgstr "e introducirlas en"
|
310 |
-
|
311 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
312 |
-
msgid "The user response is invalid"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: google-captcha.php:
|
316 |
msgid "The verification is successfully completed"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: google-captcha.php:
|
320 |
msgid "Support"
|
321 |
msgstr "Soporte"
|
322 |
|
@@ -341,7 +345,7 @@ msgstr ""
|
|
341 |
msgid "Save IP to the whitelist"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
345 |
msgid "Allowed formats"
|
346 |
msgstr ""
|
347 |
|
@@ -414,66 +418,76 @@ msgstr ""
|
|
414 |
msgid "Close"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: includes/pro_banners.php:
|
418 |
-
msgid "
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: includes/pro_banners.php:30
|
422 |
-
msgid "Learn More"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/pro_banners.php:
|
426 |
msgid "Reason"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/pro_banners.php:
|
430 |
msgid "Allowed separators for IPs: a comma"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/pro_banners.php:
|
434 |
msgid "semicolon"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/pro_banners.php:
|
438 |
msgid "ordinary space, tab, new line or carriage return"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/pro_banners.php:
|
442 |
msgid "Allowed separators for reasons: a comma"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/pro_banners.php:
|
446 |
msgid "tab, new line or carriage return"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: includes/pro_banners.php:
|
450 |
msgid "Normal"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: includes/pro_banners.php:
|
454 |
msgid "Compact"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: includes/pro_banners.php:
|
458 |
-
msgid "reCAPTCHA
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/pro_banners.php:
|
462 |
msgid "Use the current site language"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: includes/pro_banners.php:
|
466 |
msgid "Using"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: includes/pro_banners.php:
|
470 |
-
msgid "reCAPTCHA
|
471 |
msgstr ""
|
472 |
|
473 |
#, fuzzy
|
474 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
|
|
|
|
|
|
|
|
475 |
#~ msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
|
476 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
#~ msgid "powered by"
|
478 |
#~ msgstr "impulsado por"
|
479 |
|
@@ -528,9 +542,6 @@ msgstr ""
|
|
528 |
#~ msgid "Public Key"
|
529 |
#~ msgstr "Clave Pública"
|
530 |
|
531 |
-
#~ msgid "Private Key"
|
532 |
-
#~ msgstr "Clave Privada"
|
533 |
-
|
534 |
#~ msgid "Enter public key"
|
535 |
#~ msgstr "Introduce la clave pública"
|
536 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:01+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-captcha.php:34 google-captcha.php:602
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Googe Captcha Ajustes"
|
23 |
|
24 |
+
#: google-captcha.php:254
|
25 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: google-captcha.php:255
|
29 |
msgid ""
|
30 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
31 |
+
"reload this page."
|
|
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: google-captcha.php:275
|
35 |
+
msgid "Warning"
|
36 |
+
msgstr ""
|
|
|
37 |
|
38 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
39 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
40 |
+
msgid "Error"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: google-captcha.php:377
|
44 |
+
msgid "You are in the whitelist"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: google-captcha.php:506
|
48 |
+
#, fuzzy
|
49 |
+
msgid "Site Key"
|
50 |
+
msgstr "Clave Privada"
|
51 |
+
|
52 |
+
#: google-captcha.php:511
|
53 |
msgid "Secret Key"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: google-captcha.php:518 google-captcha.php:519
|
57 |
+
msgid "Version"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: google-captcha.php:520
|
61 |
+
msgid "Invisible reCAPTCHA"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: google-captcha.php:525
|
65 |
msgid "Login form"
|
66 |
msgstr "Formulario de acceso"
|
67 |
|
68 |
+
#: google-captcha.php:526
|
69 |
msgid "Registration form"
|
70 |
msgstr "Formulario de registro"
|
71 |
|
72 |
+
#: google-captcha.php:527
|
73 |
msgid "Reset password form"
|
74 |
msgstr "Formulario de restablecimiento de contraseña"
|
75 |
|
76 |
+
#: google-captcha.php:528
|
77 |
msgid "Comments form"
|
78 |
msgstr "Formulario de comentarios"
|
79 |
|
80 |
+
#: google-captcha.php:547
|
81 |
#, fuzzy
|
82 |
msgid "Enter site key"
|
83 |
msgstr "Introduce la clave privada"
|
84 |
|
85 |
+
#: google-captcha.php:548 google-captcha.php:554
|
86 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
87 |
msgstr ""
|
88 |
"ADVERTENCIA: El Captcha no se mostrará mientras usted no llene los campos "
|
89 |
"clave."
|
90 |
|
91 |
+
#: google-captcha.php:553
|
92 |
#, fuzzy
|
93 |
msgid "Enter secret key"
|
94 |
msgstr "Introduce la clave privada"
|
95 |
|
96 |
+
#: google-captcha.php:581
|
97 |
msgid "Settings saved"
|
98 |
msgstr "Configuración guardada"
|
99 |
|
100 |
+
#: google-captcha.php:587
|
101 |
#, fuzzy
|
102 |
msgid "All plugin settings were restored"
|
103 |
msgstr "página de configuración de plugin"
|
104 |
|
105 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
106 |
msgid "Settings"
|
107 |
msgstr "Ajustes"
|
108 |
|
109 |
+
#: google-captcha.php:605
|
110 |
#, fuzzy
|
111 |
msgid "Whitelist"
|
112 |
msgstr "Blanco"
|
113 |
|
114 |
+
#: google-captcha.php:606
|
115 |
msgid "Custom code"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: google-captcha.php:607
|
119 |
msgid "Go PRO"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: google-captcha.php:612
|
123 |
msgid ""
|
124 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
125 |
"version 1 features."
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: google-captcha.php:627
|
129 |
#, fuzzy, php-format
|
130 |
msgid ""
|
131 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
134 |
"Si quisiera añadir el Google Captcha para su formulario, simplemente copia y "
|
135 |
"pega este código corto en tu post o página:"
|
136 |
|
137 |
+
#: google-captcha.php:631
|
138 |
#, php-format
|
139 |
msgid ""
|
140 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
143 |
"your own form , please use the shortcode %s"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: google-captcha.php:637
|
147 |
msgid "Authentication"
|
148 |
msgstr "Autentificación"
|
149 |
|
150 |
+
#: google-captcha.php:638
|
151 |
+
#, php-format
|
152 |
+
msgid ""
|
153 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
154 |
+
"your API keys %shere%s"
|
|
|
|
|
|
|
155 |
msgstr ""
|
|
|
|
|
156 |
|
157 |
+
#: google-captcha.php:653
|
158 |
msgid "Test Keys"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: google-captcha.php:656
|
162 |
msgid "Options"
|
163 |
msgstr "Opciones"
|
164 |
|
165 |
+
#: google-captcha.php:659
|
166 |
msgid "Enable reCAPTCHA for"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: google-captcha.php:663
|
170 |
msgid "WordPress default"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: google-captcha.php:672
|
174 |
msgid "This option is available only for network or for main blog"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: google-captcha.php:681
|
178 |
#, fuzzy
|
179 |
msgid "Plugins"
|
180 |
msgstr "Página de Plugins"
|
181 |
|
182 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
183 |
+
#: google-captcha.php:729
|
184 |
#, php-format
|
185 |
msgid "You should %s to use this functionality"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: google-captcha.php:690 google-captcha.php:725
|
189 |
#, fuzzy
|
190 |
msgid "activate"
|
191 |
msgstr "Tema Activado"
|
192 |
|
193 |
+
#: google-captcha.php:690 google-captcha.php:725
|
194 |
msgid "for network"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: google-captcha.php:695 google-captcha.php:730
|
198 |
msgid "download"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: google-captcha.php:699
|
202 |
msgid "Check off for adding captcha to forms on their settings pages"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: google-captcha.php:742
|
206 |
#, php-format
|
207 |
msgid ""
|
208 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
212 |
msgid "FAQ"
|
213 |
msgstr "Preguntas Frecuentes"
|
214 |
|
215 |
+
#: google-captcha.php:747
|
216 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: google-captcha.php:759
|
220 |
#, fuzzy
|
221 |
+
msgid "Whitelist Notification"
|
222 |
msgstr "Autentificación"
|
223 |
|
224 |
+
#: google-captcha.php:763
|
225 |
msgid ""
|
226 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
227 |
"added to the whitelist"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: google-captcha.php:769
|
231 |
+
msgid "reCAPTCHA Version"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: google-captcha.php:779
|
235 |
+
msgid ""
|
236 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
237 |
+
"ones will have to pass the captcha"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: google-captcha.php:787 google-captcha.php:800
|
241 |
+
msgid "reCAPTCHA Theme"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
245 |
msgid "for version"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: google-captcha.php:813
|
249 |
msgid "Save Changes"
|
250 |
msgstr "Guardar Cambios"
|
251 |
|
252 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
253 |
msgid "To use Google Captcha you must get the keys from"
|
254 |
msgstr "Para utilizar Google Captcha debe obtener las claves de"
|
255 |
|
256 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
257 |
msgid "here"
|
258 |
msgstr "aquí"
|
259 |
|
260 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
261 |
msgid "and enter them on the"
|
262 |
msgstr "e introducirlas en"
|
263 |
|
264 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
265 |
msgid "plugin setting page"
|
266 |
msgstr "página de configuración de plugin"
|
267 |
|
268 |
+
#: google-captcha.php:1082
|
269 |
+
msgid "User response is missing."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
273 |
+
msgid "Secret Key is invalid"
|
274 |
+
msgstr ""
|
|
|
|
|
275 |
|
276 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
277 |
+
msgid "Check your domain configuration"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
281 |
#, fuzzy
|
282 |
+
msgid "and enter it again"
|
283 |
+
msgstr "e introducirlas en"
|
|
|
|
|
|
|
|
|
284 |
|
285 |
+
#: google-captcha.php:1091
|
286 |
+
msgid "Secret Key is missing."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: google-captcha.php:1098
|
290 |
+
msgid "User response is invalid"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: google-captcha.php:1099
|
294 |
+
#, fuzzy
|
295 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
296 |
+
msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
|
297 |
|
298 |
+
#: google-captcha.php:1100
|
299 |
+
msgid ""
|
300 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
301 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: google-captcha.php:1246
|
305 |
+
#, fuzzy
|
306 |
+
msgid "Click the BACK button on your browser, and try again."
|
307 |
msgstr ""
|
308 |
+
"Error: Ha introducido un valor incorrecto de CAPTCHA. Haga clic en el botón "
|
309 |
+
"Regresar de su navegador y vuelva a intentarlo."
|
310 |
|
311 |
+
#: google-captcha.php:1291
|
312 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: google-captcha.php:1295
|
316 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: google-captcha.php:1316
|
320 |
msgid "The verification is successfully completed"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: google-captcha.php:1357
|
324 |
msgid "Support"
|
325 |
msgstr "Soporte"
|
326 |
|
345 |
msgid "Save IP to the whitelist"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
349 |
msgid "Allowed formats"
|
350 |
msgstr ""
|
351 |
|
418 |
msgid "Close"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: includes/pro_banners.php:29
|
422 |
+
msgid "Upgrade to Pro"
|
|
|
|
|
|
|
|
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/pro_banners.php:42
|
426 |
msgid "Reason"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/pro_banners.php:45
|
430 |
msgid "Allowed separators for IPs: a comma"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
434 |
msgid "semicolon"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/pro_banners.php:45
|
438 |
msgid "ordinary space, tab, new line or carriage return"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/pro_banners.php:46
|
442 |
msgid "Allowed separators for reasons: a comma"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/pro_banners.php:46
|
446 |
msgid "tab, new line or carriage return"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/pro_banners.php:71
|
450 |
msgid "Normal"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: includes/pro_banners.php:72
|
454 |
msgid "Compact"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/pro_banners.php:76
|
458 |
+
msgid "reCAPTCHA Language"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/pro_banners.php:83
|
462 |
msgid "Use the current site language"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/pro_banners.php:83
|
466 |
msgid "Using"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/pro_banners.php:89
|
470 |
+
msgid "reCAPTCHA Size"
|
471 |
msgstr ""
|
472 |
|
473 |
#, fuzzy
|
474 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
475 |
+
#~ msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
|
476 |
+
|
477 |
+
#, fuzzy
|
478 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
479 |
#~ msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
|
480 |
|
481 |
+
#, fuzzy
|
482 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
483 |
+
#~ msgstr "Antes de que pueda hacer algo, debe registrar %s aquí %s"
|
484 |
+
|
485 |
+
#, fuzzy
|
486 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
487 |
+
#~ msgstr ""
|
488 |
+
#~ "Introduzca las claves pública y privada, que se obtiene después de "
|
489 |
+
#~ "Registrarse."
|
490 |
+
|
491 |
#~ msgid "powered by"
|
492 |
#~ msgstr "impulsado por"
|
493 |
|
542 |
#~ msgid "Public Key"
|
543 |
#~ msgstr "Clave Pública"
|
544 |
|
|
|
|
|
|
|
545 |
#~ msgid "Enter public key"
|
546 |
#~ msgstr "Introduce la clave pública"
|
547 |
|
languages/google-captcha-fa_IR.mo
CHANGED
Binary file
|
languages/google-captcha-fa_IR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Amirreza Nasiri <nasiri.amirreza.96@gmail.com>\n"
|
9 |
"Language: fa_IR\n"
|
@@ -21,100 +21,114 @@ msgstr ""
|
|
21 |
"X-Loco-Target-Locale: uk_UA\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
-
#: google-captcha.php:34 google-captcha.php:
|
25 |
msgid "Google Captcha Settings"
|
26 |
msgstr "تنظیمات Google Captcha"
|
27 |
|
28 |
-
#: google-captcha.php:
|
29 |
-
msgid "
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: google-captcha.php:
|
33 |
msgid ""
|
34 |
-
"
|
35 |
-
"
|
36 |
-
"blocks."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: google-captcha.php:
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
43 |
|
44 |
-
#: google-captcha.php:
|
45 |
msgid "You are in the whitelist"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: google-captcha.php:
|
49 |
-
|
|
|
50 |
msgstr "کلید سایت (site key در تنظیمات گوگل)"
|
51 |
|
52 |
-
#: google-captcha.php:
|
53 |
msgid "Secret Key"
|
54 |
msgstr "کلید سری (secret key در تنظیمات گوگل)"
|
55 |
|
56 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
msgid "Login form"
|
58 |
msgstr "فرم ورود"
|
59 |
|
60 |
-
#: google-captcha.php:
|
61 |
msgid "Registration form"
|
62 |
msgstr "فرم ثبت نام"
|
63 |
|
64 |
-
#: google-captcha.php:
|
65 |
msgid "Reset password form"
|
66 |
msgstr "فرم فراموش رمز عبور"
|
67 |
|
68 |
-
#: google-captcha.php:
|
69 |
msgid "Comments form"
|
70 |
msgstr "فرم دیدگاه ها"
|
71 |
|
72 |
-
#: google-captcha.php:
|
73 |
msgid "Enter site key"
|
74 |
msgstr "کلید سایت را وارد کنید"
|
75 |
|
76 |
-
#: google-captcha.php:
|
77 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
78 |
msgstr ""
|
79 |
"تذکر: Captcha تا زمانی که فیلد مربوط به کلیدها را وارد نکنید، نشان داده "
|
80 |
"نخواهد شد."
|
81 |
|
82 |
-
#: google-captcha.php:
|
83 |
msgid "Enter secret key"
|
84 |
msgstr "کلید سری را وارد کنید"
|
85 |
|
86 |
-
#: google-captcha.php:
|
87 |
msgid "Settings saved"
|
88 |
msgstr "تنظیمات ذخیره شدند"
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
#, fuzzy
|
92 |
msgid "All plugin settings were restored"
|
93 |
msgstr "تمام تنظیمات پلاگین بازگردانده شدند."
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "Settings"
|
97 |
msgstr "تنظیمات"
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "Whitelist"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Custom code"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid "Go PRO"
|
109 |
msgstr "ارتقاء به نسخه حرفه ای"
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid ""
|
113 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
114 |
"version 1 features."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: google-captcha.php:
|
118 |
#, fuzzy, php-format
|
119 |
msgid ""
|
120 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -123,7 +137,7 @@ msgstr ""
|
|
123 |
"اگر می خواهید که Google Captcha را به فرم دلخواه خود اضافه کنید، کافیست شورت "
|
124 |
"کد زیر را کپی کرده و درون فرم مورد نظر بچسبانید:"
|
125 |
|
126 |
-
#: google-captcha.php:
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -132,189 +146,188 @@ msgid ""
|
|
132 |
"your own form , please use the shortcode %s"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
msgid "Authentication"
|
137 |
msgstr "تایید هویت"
|
138 |
|
139 |
-
#: google-captcha.php:
|
140 |
-
#,
|
141 |
-
msgid "
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
#, fuzzy
|
146 |
-
msgid "Enter site key and secret key, that you get after registration"
|
147 |
-
msgstr "کلید سایت و کلید سری را که بعد از ثبت نام دریافت کردید، وارد کنید."
|
148 |
|
149 |
-
#: google-captcha.php:
|
150 |
#, fuzzy
|
151 |
msgid "Test Keys"
|
152 |
msgstr "کلید سری (secret key در تنظیمات گوگل)"
|
153 |
|
154 |
-
#: google-captcha.php:
|
155 |
msgid "Options"
|
156 |
msgstr "تنظیمات"
|
157 |
|
158 |
-
#: google-captcha.php:
|
159 |
msgid "Enable reCAPTCHA for"
|
160 |
msgstr "فعال کردن reCAPTCHA برای"
|
161 |
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "WordPress default"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: google-captcha.php:
|
167 |
msgid "This option is available only for network or for main blog"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: google-captcha.php:
|
171 |
msgid "Plugins"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: google-captcha.php:
|
|
|
175 |
#, fuzzy, php-format
|
176 |
msgid "You should %s to use this functionality"
|
177 |
msgstr "تا از این قابلیت استفاده کنید"
|
178 |
|
179 |
-
#: google-captcha.php:
|
180 |
msgid "activate"
|
181 |
msgstr "فعال کنید"
|
182 |
|
183 |
-
#: google-captcha.php:
|
184 |
msgid "for network"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: google-captcha.php:
|
188 |
msgid "download"
|
189 |
msgstr "دانلود"
|
190 |
|
191 |
-
#: google-captcha.php:
|
192 |
msgid "Check off for adding captcha to forms on their settings pages"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: google-captcha.php:
|
196 |
#, php-format
|
197 |
msgid ""
|
198 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: google-captcha.php:
|
202 |
msgid "FAQ"
|
203 |
msgstr "سوالات متداول"
|
204 |
|
205 |
-
#: google-captcha.php:
|
206 |
-
|
|
|
207 |
msgstr "reCAPTCHA را در فرم دیدگاه ها مخفی کن در"
|
208 |
|
209 |
-
#: google-captcha.php:
|
210 |
#, fuzzy
|
211 |
-
msgid "Whitelist
|
212 |
msgstr "تایید هویت"
|
213 |
|
214 |
-
#: google-captcha.php:
|
215 |
msgid ""
|
216 |
-
"This message will be displayed instead of the reCAPTCHA
|
217 |
"added to the whitelist"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: google-captcha.php:
|
221 |
-
|
|
|
222 |
msgstr "نسخه reCAPTCHA"
|
223 |
|
224 |
-
#: google-captcha.php:
|
225 |
-
|
226 |
-
|
227 |
-
|
|
|
228 |
|
229 |
-
#: google-captcha.php:
|
230 |
-
|
|
|
231 |
msgstr "پوسته reCAPTCHA"
|
232 |
|
233 |
-
#: google-captcha.php:
|
234 |
msgid "for version"
|
235 |
msgstr "برای نسخه"
|
236 |
|
237 |
-
#: google-captcha.php:
|
238 |
msgid "Save Changes"
|
239 |
msgstr "ذخیره کردن تنظیمات"
|
240 |
|
241 |
-
#: google-captcha.php:
|
242 |
msgid "To use Google Captcha you must get the keys from"
|
243 |
msgstr "برای استفاده از Google Captcha باید کلید ها را تهیه کنید از"
|
244 |
|
245 |
-
#: google-captcha.php:
|
246 |
msgid "here"
|
247 |
msgstr "اینجا"
|
248 |
|
249 |
-
#: google-captcha.php:
|
250 |
msgid "and enter them on the"
|
251 |
msgstr "و آنها را وارد کنید در"
|
252 |
|
253 |
-
#: google-captcha.php:
|
254 |
msgid "plugin setting page"
|
255 |
msgstr "صفحه تنظیمات افزونه"
|
256 |
|
257 |
-
#: google-captcha.php:
|
258 |
-
msgid "
|
259 |
-
msgstr "
|
260 |
|
261 |
-
#: google-captcha.php:
|
262 |
-
#: google-captcha.php:1107
|
263 |
#, fuzzy
|
264 |
-
msgid "
|
265 |
-
msgstr "
|
266 |
|
267 |
-
#: google-captcha.php:
|
268 |
-
msgid "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: google-captcha.php:
|
272 |
#, fuzzy
|
273 |
-
msgid ""
|
274 |
-
"
|
275 |
-
"browser, and try again."
|
276 |
-
msgstr ""
|
277 |
-
"خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید. به صفحه قبلی بازگشته و "
|
278 |
-
"دوباره تلاش کنید."
|
279 |
|
280 |
-
#: google-captcha.php:
|
281 |
-
|
282 |
-
|
|
|
283 |
|
284 |
-
#: google-captcha.php:
|
285 |
-
msgid "
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: google-captcha.php:
|
289 |
-
|
290 |
-
|
|
|
291 |
|
292 |
-
#: google-captcha.php:
|
293 |
-
msgid "
|
|
|
|
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: google-captcha.php:
|
297 |
-
|
|
|
298 |
msgstr ""
|
|
|
|
|
299 |
|
300 |
-
#: google-captcha.php:
|
301 |
-
msgid "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: google-captcha.php:
|
305 |
-
|
306 |
-
msgid "and enter it again"
|
307 |
-
msgstr "و آنها را وارد کنید در"
|
308 |
-
|
309 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
310 |
-
msgid "The user response is invalid"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: google-captcha.php:
|
314 |
msgid "The verification is successfully completed"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: google-captcha.php:
|
318 |
msgid "Support"
|
319 |
msgstr "پشتیبانی"
|
320 |
|
@@ -339,7 +352,7 @@ msgstr ""
|
|
339 |
msgid "Save IP to the whitelist"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
343 |
msgid "Allowed formats"
|
344 |
msgstr ""
|
345 |
|
@@ -412,66 +425,82 @@ msgstr ""
|
|
412 |
msgid "Close"
|
413 |
msgstr "بستن"
|
414 |
|
415 |
-
#: includes/pro_banners.php:
|
416 |
-
msgid "
|
417 |
-
msgstr "
|
418 |
-
|
419 |
-
#: includes/pro_banners.php:30
|
420 |
-
msgid "Learn More"
|
421 |
-
msgstr "بیشتر بدانید"
|
422 |
|
423 |
-
#: includes/pro_banners.php:
|
424 |
msgid "Reason"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/pro_banners.php:
|
428 |
msgid "Allowed separators for IPs: a comma"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/pro_banners.php:
|
432 |
msgid "semicolon"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/pro_banners.php:
|
436 |
msgid "ordinary space, tab, new line or carriage return"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/pro_banners.php:
|
440 |
msgid "Allowed separators for reasons: a comma"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/pro_banners.php:
|
444 |
msgid "tab, new line or carriage return"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/pro_banners.php:
|
448 |
msgid "Normal"
|
449 |
msgstr "عادی"
|
450 |
|
451 |
-
#: includes/pro_banners.php:
|
452 |
msgid "Compact"
|
453 |
msgstr "فشرده"
|
454 |
|
455 |
-
#: includes/pro_banners.php:
|
456 |
-
|
|
|
457 |
msgstr "زبان reCAPTCHA "
|
458 |
|
459 |
-
#: includes/pro_banners.php:
|
460 |
msgid "Use the current site language"
|
461 |
msgstr "از زبان کنونی سایت استفاده کن"
|
462 |
|
463 |
-
#: includes/pro_banners.php:
|
464 |
msgid "Using"
|
465 |
msgstr "استفاده کردن"
|
466 |
|
467 |
-
#: includes/pro_banners.php:
|
468 |
-
|
|
|
469 |
msgstr "اندازه reCAPTCHA"
|
470 |
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
#, fuzzy
|
472 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
|
|
|
|
|
|
|
|
473 |
#~ msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
|
474 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
475 |
#, fuzzy
|
476 |
#~ msgid ""
|
477 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
@@ -500,9 +529,6 @@ msgstr "اندازه reCAPTCHA"
|
|
500 |
#~ msgid "Download"
|
501 |
#~ msgstr "دانلود"
|
502 |
|
503 |
-
#~ msgid "Enable CAPTCHA"
|
504 |
-
#~ msgstr "فعال کردن CAPTCHA"
|
505 |
-
|
506 |
#~ msgid "You should"
|
507 |
#~ msgstr "شما باید"
|
508 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-04-18 18:00+0300\n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Amirreza Nasiri <nasiri.amirreza.96@gmail.com>\n"
|
9 |
"Language: fa_IR\n"
|
21 |
"X-Loco-Target-Locale: uk_UA\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
+
#: google-captcha.php:34 google-captcha.php:602
|
25 |
msgid "Google Captcha Settings"
|
26 |
msgstr "تنظیمات Google Captcha"
|
27 |
|
28 |
+
#: google-captcha.php:254
|
29 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: google-captcha.php:255
|
33 |
msgid ""
|
34 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
35 |
+
"reload this page."
|
|
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: google-captcha.php:275
|
39 |
+
msgid "Warning"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
43 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
44 |
+
msgid "Error"
|
45 |
+
msgstr "خطا"
|
46 |
|
47 |
+
#: google-captcha.php:377
|
48 |
msgid "You are in the whitelist"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: google-captcha.php:506
|
52 |
+
#, fuzzy
|
53 |
+
msgid "Site Key"
|
54 |
msgstr "کلید سایت (site key در تنظیمات گوگل)"
|
55 |
|
56 |
+
#: google-captcha.php:511
|
57 |
msgid "Secret Key"
|
58 |
msgstr "کلید سری (secret key در تنظیمات گوگل)"
|
59 |
|
60 |
+
#: google-captcha.php:518 google-captcha.php:519
|
61 |
+
#, fuzzy
|
62 |
+
msgid "Version"
|
63 |
+
msgstr "نسخه"
|
64 |
+
|
65 |
+
#: google-captcha.php:520
|
66 |
+
#, fuzzy
|
67 |
+
msgid "Invisible reCAPTCHA"
|
68 |
+
msgstr "فعال کردن CAPTCHA"
|
69 |
+
|
70 |
+
#: google-captcha.php:525
|
71 |
msgid "Login form"
|
72 |
msgstr "فرم ورود"
|
73 |
|
74 |
+
#: google-captcha.php:526
|
75 |
msgid "Registration form"
|
76 |
msgstr "فرم ثبت نام"
|
77 |
|
78 |
+
#: google-captcha.php:527
|
79 |
msgid "Reset password form"
|
80 |
msgstr "فرم فراموش رمز عبور"
|
81 |
|
82 |
+
#: google-captcha.php:528
|
83 |
msgid "Comments form"
|
84 |
msgstr "فرم دیدگاه ها"
|
85 |
|
86 |
+
#: google-captcha.php:547
|
87 |
msgid "Enter site key"
|
88 |
msgstr "کلید سایت را وارد کنید"
|
89 |
|
90 |
+
#: google-captcha.php:548 google-captcha.php:554
|
91 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
92 |
msgstr ""
|
93 |
"تذکر: Captcha تا زمانی که فیلد مربوط به کلیدها را وارد نکنید، نشان داده "
|
94 |
"نخواهد شد."
|
95 |
|
96 |
+
#: google-captcha.php:553
|
97 |
msgid "Enter secret key"
|
98 |
msgstr "کلید سری را وارد کنید"
|
99 |
|
100 |
+
#: google-captcha.php:581
|
101 |
msgid "Settings saved"
|
102 |
msgstr "تنظیمات ذخیره شدند"
|
103 |
|
104 |
+
#: google-captcha.php:587
|
105 |
#, fuzzy
|
106 |
msgid "All plugin settings were restored"
|
107 |
msgstr "تمام تنظیمات پلاگین بازگردانده شدند."
|
108 |
|
109 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
110 |
msgid "Settings"
|
111 |
msgstr "تنظیمات"
|
112 |
|
113 |
+
#: google-captcha.php:605
|
114 |
msgid "Whitelist"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: google-captcha.php:606
|
118 |
msgid "Custom code"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: google-captcha.php:607
|
122 |
msgid "Go PRO"
|
123 |
msgstr "ارتقاء به نسخه حرفه ای"
|
124 |
|
125 |
+
#: google-captcha.php:612
|
126 |
msgid ""
|
127 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
128 |
"version 1 features."
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: google-captcha.php:627
|
132 |
#, fuzzy, php-format
|
133 |
msgid ""
|
134 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
137 |
"اگر می خواهید که Google Captcha را به فرم دلخواه خود اضافه کنید، کافیست شورت "
|
138 |
"کد زیر را کپی کرده و درون فرم مورد نظر بچسبانید:"
|
139 |
|
140 |
+
#: google-captcha.php:631
|
141 |
#, php-format
|
142 |
msgid ""
|
143 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
146 |
"your own form , please use the shortcode %s"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: google-captcha.php:637
|
150 |
msgid "Authentication"
|
151 |
msgstr "تایید هویت"
|
152 |
|
153 |
+
#: google-captcha.php:638
|
154 |
+
#, php-format
|
155 |
+
msgid ""
|
156 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
157 |
+
"your API keys %shere%s"
|
158 |
+
msgstr ""
|
|
|
|
|
|
|
159 |
|
160 |
+
#: google-captcha.php:653
|
161 |
#, fuzzy
|
162 |
msgid "Test Keys"
|
163 |
msgstr "کلید سری (secret key در تنظیمات گوگل)"
|
164 |
|
165 |
+
#: google-captcha.php:656
|
166 |
msgid "Options"
|
167 |
msgstr "تنظیمات"
|
168 |
|
169 |
+
#: google-captcha.php:659
|
170 |
msgid "Enable reCAPTCHA for"
|
171 |
msgstr "فعال کردن reCAPTCHA برای"
|
172 |
|
173 |
+
#: google-captcha.php:663
|
174 |
msgid "WordPress default"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: google-captcha.php:672
|
178 |
msgid "This option is available only for network or for main blog"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: google-captcha.php:681
|
182 |
msgid "Plugins"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
186 |
+
#: google-captcha.php:729
|
187 |
#, fuzzy, php-format
|
188 |
msgid "You should %s to use this functionality"
|
189 |
msgstr "تا از این قابلیت استفاده کنید"
|
190 |
|
191 |
+
#: google-captcha.php:690 google-captcha.php:725
|
192 |
msgid "activate"
|
193 |
msgstr "فعال کنید"
|
194 |
|
195 |
+
#: google-captcha.php:690 google-captcha.php:725
|
196 |
msgid "for network"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: google-captcha.php:695 google-captcha.php:730
|
200 |
msgid "download"
|
201 |
msgstr "دانلود"
|
202 |
|
203 |
+
#: google-captcha.php:699
|
204 |
msgid "Check off for adding captcha to forms on their settings pages"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: google-captcha.php:742
|
208 |
#, php-format
|
209 |
msgid ""
|
210 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
214 |
msgid "FAQ"
|
215 |
msgstr "سوالات متداول"
|
216 |
|
217 |
+
#: google-captcha.php:747
|
218 |
+
#, fuzzy
|
219 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
220 |
msgstr "reCAPTCHA را در فرم دیدگاه ها مخفی کن در"
|
221 |
|
222 |
+
#: google-captcha.php:759
|
223 |
#, fuzzy
|
224 |
+
msgid "Whitelist Notification"
|
225 |
msgstr "تایید هویت"
|
226 |
|
227 |
+
#: google-captcha.php:763
|
228 |
msgid ""
|
229 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
230 |
"added to the whitelist"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: google-captcha.php:769
|
234 |
+
#, fuzzy
|
235 |
+
msgid "reCAPTCHA Version"
|
236 |
msgstr "نسخه reCAPTCHA"
|
237 |
|
238 |
+
#: google-captcha.php:779
|
239 |
+
msgid ""
|
240 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
241 |
+
"ones will have to pass the captcha"
|
242 |
+
msgstr ""
|
243 |
|
244 |
+
#: google-captcha.php:787 google-captcha.php:800
|
245 |
+
#, fuzzy
|
246 |
+
msgid "reCAPTCHA Theme"
|
247 |
msgstr "پوسته reCAPTCHA"
|
248 |
|
249 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
250 |
msgid "for version"
|
251 |
msgstr "برای نسخه"
|
252 |
|
253 |
+
#: google-captcha.php:813
|
254 |
msgid "Save Changes"
|
255 |
msgstr "ذخیره کردن تنظیمات"
|
256 |
|
257 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
258 |
msgid "To use Google Captcha you must get the keys from"
|
259 |
msgstr "برای استفاده از Google Captcha باید کلید ها را تهیه کنید از"
|
260 |
|
261 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
262 |
msgid "here"
|
263 |
msgstr "اینجا"
|
264 |
|
265 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
266 |
msgid "and enter them on the"
|
267 |
msgstr "و آنها را وارد کنید در"
|
268 |
|
269 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
270 |
msgid "plugin setting page"
|
271 |
msgstr "صفحه تنظیمات افزونه"
|
272 |
|
273 |
+
#: google-captcha.php:1082
|
274 |
+
msgid "User response is missing."
|
275 |
+
msgstr ""
|
276 |
|
277 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
|
|
278 |
#, fuzzy
|
279 |
+
msgid "Secret Key is invalid"
|
280 |
+
msgstr "کلید سری (secret key در تنظیمات گوگل)"
|
281 |
|
282 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
283 |
+
msgid "Check your domain configuration"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
287 |
#, fuzzy
|
288 |
+
msgid "and enter it again"
|
289 |
+
msgstr "و آنها را وارد کنید در"
|
|
|
|
|
|
|
|
|
290 |
|
291 |
+
#: google-captcha.php:1091
|
292 |
+
#, fuzzy
|
293 |
+
msgid "Secret Key is missing."
|
294 |
+
msgstr "کلید سری (secret key در تنظیمات گوگل)"
|
295 |
|
296 |
+
#: google-captcha.php:1098
|
297 |
+
msgid "User response is invalid"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: google-captcha.php:1099
|
301 |
+
#, fuzzy
|
302 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
303 |
+
msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
|
304 |
|
305 |
+
#: google-captcha.php:1100
|
306 |
+
msgid ""
|
307 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
308 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: google-captcha.php:1246
|
312 |
+
#, fuzzy
|
313 |
+
msgid "Click the BACK button on your browser, and try again."
|
314 |
msgstr ""
|
315 |
+
"خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید. به صفحه قبلی بازگشته و "
|
316 |
+
"دوباره تلاش کنید."
|
317 |
|
318 |
+
#: google-captcha.php:1291
|
319 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: google-captcha.php:1295
|
323 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: google-captcha.php:1316
|
327 |
msgid "The verification is successfully completed"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: google-captcha.php:1357
|
331 |
msgid "Support"
|
332 |
msgstr "پشتیبانی"
|
333 |
|
352 |
msgid "Save IP to the whitelist"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
356 |
msgid "Allowed formats"
|
357 |
msgstr ""
|
358 |
|
425 |
msgid "Close"
|
426 |
msgstr "بستن"
|
427 |
|
428 |
+
#: includes/pro_banners.php:29
|
429 |
+
msgid "Upgrade to Pro"
|
430 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
431 |
|
432 |
+
#: includes/pro_banners.php:42
|
433 |
msgid "Reason"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: includes/pro_banners.php:45
|
437 |
msgid "Allowed separators for IPs: a comma"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
441 |
msgid "semicolon"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/pro_banners.php:45
|
445 |
msgid "ordinary space, tab, new line or carriage return"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: includes/pro_banners.php:46
|
449 |
msgid "Allowed separators for reasons: a comma"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/pro_banners.php:46
|
453 |
msgid "tab, new line or carriage return"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/pro_banners.php:71
|
457 |
msgid "Normal"
|
458 |
msgstr "عادی"
|
459 |
|
460 |
+
#: includes/pro_banners.php:72
|
461 |
msgid "Compact"
|
462 |
msgstr "فشرده"
|
463 |
|
464 |
+
#: includes/pro_banners.php:76
|
465 |
+
#, fuzzy
|
466 |
+
msgid "reCAPTCHA Language"
|
467 |
msgstr "زبان reCAPTCHA "
|
468 |
|
469 |
+
#: includes/pro_banners.php:83
|
470 |
msgid "Use the current site language"
|
471 |
msgstr "از زبان کنونی سایت استفاده کن"
|
472 |
|
473 |
+
#: includes/pro_banners.php:83
|
474 |
msgid "Using"
|
475 |
msgstr "استفاده کردن"
|
476 |
|
477 |
+
#: includes/pro_banners.php:89
|
478 |
+
#, fuzzy
|
479 |
+
msgid "reCAPTCHA Size"
|
480 |
msgstr "اندازه reCAPTCHA"
|
481 |
|
482 |
+
#~ msgid "Unlock premium options by upgrading to Pro version"
|
483 |
+
#~ msgstr "گزینه های اضافی را با آپگرید کردن به نسخه حرفه ای باز کنید"
|
484 |
+
|
485 |
+
#~ msgid "Learn More"
|
486 |
+
#~ msgstr "بیشتر بدانید"
|
487 |
+
|
488 |
#, fuzzy
|
489 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
490 |
+
#~ msgstr "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
|
491 |
+
|
492 |
+
#, fuzzy
|
493 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
494 |
#~ msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
|
495 |
|
496 |
+
#, fuzzy
|
497 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
498 |
+
#~ msgstr "قبل از این که قادر به انجام کاری باشید، باید ثبت نام کنید %s در %s"
|
499 |
+
|
500 |
+
#, fuzzy
|
501 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
502 |
+
#~ msgstr "کلید سایت و کلید سری را که بعد از ثبت نام دریافت کردید، وارد کنید."
|
503 |
+
|
504 |
#, fuzzy
|
505 |
#~ msgid ""
|
506 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
529 |
#~ msgid "Download"
|
530 |
#~ msgstr "دانلود"
|
531 |
|
|
|
|
|
|
|
532 |
#~ msgid "You should"
|
533 |
#~ msgstr "شما باید"
|
534 |
|
languages/google-captcha-fr_FR.mo
CHANGED
Binary file
|
languages/google-captcha-fr_FR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Denis Bodorr <lefinnois@lefinnois.net>\n"
|
@@ -17,100 +17,114 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-captcha.php:34 google-captcha.php:
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Configuration Google Captcha"
|
23 |
|
24 |
-
#: google-captcha.php:
|
25 |
-
msgid "
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: google-captcha.php:
|
29 |
msgid ""
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"blocks."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: google-captcha.php:
|
36 |
-
|
37 |
-
|
38 |
-
msgstr "ERREUR: Vous avez saisi une valeur de CAPTCHA incorrecte"
|
39 |
|
40 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
41 |
msgid "You are in the whitelist"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: google-captcha.php:
|
45 |
-
|
|
|
46 |
msgstr "Clé du site"
|
47 |
|
48 |
-
#: google-captcha.php:
|
49 |
msgid "Secret Key"
|
50 |
msgstr "Clé secrète"
|
51 |
|
52 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
msgid "Login form"
|
54 |
msgstr "Formulaire de connexion"
|
55 |
|
56 |
-
#: google-captcha.php:
|
57 |
msgid "Registration form"
|
58 |
msgstr "Formulaire d'enregistrement"
|
59 |
|
60 |
-
#: google-captcha.php:
|
61 |
msgid "Reset password form"
|
62 |
msgstr "Formulaire de réinitialisation de mot de passe"
|
63 |
|
64 |
-
#: google-captcha.php:
|
65 |
msgid "Comments form"
|
66 |
msgstr "Formulaire de commentaire"
|
67 |
|
68 |
-
#: google-captcha.php:
|
69 |
msgid "Enter site key"
|
70 |
msgstr "Saisissez la clé du site"
|
71 |
|
72 |
-
#: google-captcha.php:
|
73 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
74 |
msgstr ""
|
75 |
"ATTENTION: Le captcha ne s'affichera pas tant que vous n'avez pas spécifié "
|
76 |
"les clés"
|
77 |
|
78 |
-
#: google-captcha.php:
|
79 |
msgid "Enter secret key"
|
80 |
msgstr "Saisissez la clé secrète"
|
81 |
|
82 |
-
#: google-captcha.php:
|
83 |
msgid "Settings saved"
|
84 |
msgstr "Configuration enregistrée"
|
85 |
|
86 |
-
#: google-captcha.php:
|
87 |
#, fuzzy
|
88 |
msgid "All plugin settings were restored"
|
89 |
msgstr "Tous les paramètre sont restaurés"
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "Settings"
|
93 |
msgstr "Configuration"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "Whitelist"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "Custom code"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Go PRO"
|
105 |
msgstr "Version PRO"
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid ""
|
109 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
110 |
"version 1 features."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: google-captcha.php:
|
114 |
#, fuzzy, php-format
|
115 |
msgid ""
|
116 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -119,7 +133,7 @@ msgstr ""
|
|
119 |
"Si vous voulez ajouter Google Captcha à vos propres formulaires, copiez/"
|
120 |
"collez simplement ce code:"
|
121 |
|
122 |
-
#: google-captcha.php:
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -128,194 +142,190 @@ msgid ""
|
|
128 |
"your own form , please use the shortcode %s"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: google-captcha.php:
|
132 |
msgid "Authentication"
|
133 |
msgstr "Authentification"
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
-
#,
|
137 |
-
msgid "
|
138 |
-
|
139 |
-
"
|
140 |
-
"%s"
|
141 |
-
|
142 |
-
#: google-captcha.php:602
|
143 |
-
#, fuzzy
|
144 |
-
msgid "Enter site key and secret key, that you get after registration"
|
145 |
msgstr ""
|
146 |
-
"Saisissez la clé du site et la clé secrète que vous avez obtenues après "
|
147 |
-
"enregistrement"
|
148 |
|
149 |
-
#: google-captcha.php:
|
150 |
#, fuzzy
|
151 |
msgid "Test Keys"
|
152 |
msgstr "Clé secrète"
|
153 |
|
154 |
-
#: google-captcha.php:
|
155 |
msgid "Options"
|
156 |
msgstr "Options"
|
157 |
|
158 |
-
#: google-captcha.php:
|
159 |
msgid "Enable reCAPTCHA for"
|
160 |
msgstr "Activer reCAPTCHA pour"
|
161 |
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "WordPress default"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: google-captcha.php:
|
167 |
msgid "This option is available only for network or for main blog"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: google-captcha.php:
|
171 |
#, fuzzy
|
172 |
msgid "Plugins"
|
173 |
msgstr "Plugins Seite"
|
174 |
|
175 |
-
#: google-captcha.php:
|
|
|
176 |
#, fuzzy, php-format
|
177 |
msgid "You should %s to use this functionality"
|
178 |
msgstr "pour utiliser cette fonctionnalité"
|
179 |
|
180 |
-
#: google-captcha.php:
|
181 |
#, fuzzy
|
182 |
msgid "activate"
|
183 |
msgstr "activer"
|
184 |
|
185 |
-
#: google-captcha.php:
|
186 |
msgid "for network"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: google-captcha.php:
|
190 |
msgid "download"
|
191 |
msgstr "télécharger"
|
192 |
|
193 |
-
#: google-captcha.php:
|
194 |
msgid "Check off for adding captcha to forms on their settings pages"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: google-captcha.php:
|
198 |
#, php-format
|
199 |
msgid ""
|
200 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: google-captcha.php:
|
204 |
msgid "FAQ"
|
205 |
msgstr "FAQ"
|
206 |
|
207 |
-
#: google-captcha.php:
|
208 |
-
|
|
|
209 |
msgstr "Cacher reCAPTCHA dans le formulaire de commentaires pour"
|
210 |
|
211 |
-
#: google-captcha.php:
|
212 |
#, fuzzy
|
213 |
-
msgid "Whitelist
|
214 |
msgstr "Authentification"
|
215 |
|
216 |
-
#: google-captcha.php:
|
217 |
msgid ""
|
218 |
-
"This message will be displayed instead of the reCAPTCHA
|
219 |
"added to the whitelist"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: google-captcha.php:
|
223 |
-
|
|
|
224 |
msgstr "Version reCAPTCHA"
|
225 |
|
226 |
-
#: google-captcha.php:
|
227 |
-
|
228 |
-
|
229 |
-
|
|
|
230 |
|
231 |
-
#: google-captcha.php:
|
232 |
-
|
|
|
233 |
msgstr "Thème reCAPTCHA"
|
234 |
|
235 |
-
#: google-captcha.php:
|
236 |
msgid "for version"
|
237 |
msgstr "pour la version"
|
238 |
|
239 |
-
#: google-captcha.php:
|
240 |
msgid "Save Changes"
|
241 |
msgstr "Enregistrer les modifications"
|
242 |
|
243 |
-
#: google-captcha.php:
|
244 |
msgid "To use Google Captcha you must get the keys from"
|
245 |
msgstr "Pour utiliser Google Captcha vous devez obtenir les clés depuis"
|
246 |
|
247 |
-
#: google-captcha.php:
|
248 |
msgid "here"
|
249 |
msgstr "ici"
|
250 |
|
251 |
-
#: google-captcha.php:
|
252 |
msgid "and enter them on the"
|
253 |
msgstr "et les saisir sur la"
|
254 |
|
255 |
-
#: google-captcha.php:
|
256 |
msgid "plugin setting page"
|
257 |
msgstr "page de configuration de l'extension"
|
258 |
|
259 |
-
#: google-captcha.php:
|
260 |
-
msgid "
|
261 |
-
msgstr "
|
262 |
|
263 |
-
#: google-captcha.php:
|
264 |
-
#: google-captcha.php:1107
|
265 |
#, fuzzy
|
266 |
-
msgid "
|
267 |
-
msgstr "
|
268 |
|
269 |
-
#: google-captcha.php:
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: google-captcha.php:
|
274 |
-
|
275 |
-
"
|
276 |
-
"
|
277 |
-
msgstr ""
|
278 |
-
"Vous avez saisi une valeur de CAPTCHA incorrecte. Cliquez sur le bouton "
|
279 |
-
"\"Revenir en arrière\" de votre navigateur et essayez à nouveau."
|
280 |
|
281 |
-
#: google-captcha.php:
|
282 |
-
|
283 |
-
|
|
|
284 |
|
285 |
-
#: google-captcha.php:
|
286 |
-
msgid "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: google-captcha.php:
|
290 |
-
|
291 |
-
|
|
|
292 |
|
293 |
-
#: google-captcha.php:
|
294 |
-
msgid "
|
|
|
|
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: google-captcha.php:
|
298 |
-
|
|
|
299 |
msgstr ""
|
|
|
|
|
300 |
|
301 |
-
#: google-captcha.php:
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: google-captcha.php:
|
306 |
-
|
307 |
-
msgid "and enter it again"
|
308 |
-
msgstr "et les saisir sur la"
|
309 |
-
|
310 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
311 |
-
msgid "The user response is invalid"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: google-captcha.php:
|
315 |
msgid "The verification is successfully completed"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: google-captcha.php:
|
319 |
msgid "Support"
|
320 |
msgstr "Support"
|
321 |
|
@@ -340,7 +350,7 @@ msgstr ""
|
|
340 |
msgid "Save IP to the whitelist"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
344 |
msgid "Allowed formats"
|
345 |
msgstr ""
|
346 |
|
@@ -413,66 +423,86 @@ msgstr ""
|
|
413 |
msgid "Close"
|
414 |
msgstr "Fermer"
|
415 |
|
416 |
-
#: includes/pro_banners.php:
|
417 |
-
msgid "
|
418 |
-
msgstr "
|
419 |
-
|
420 |
-
#: includes/pro_banners.php:30
|
421 |
-
msgid "Learn More"
|
422 |
-
msgstr "En savoir plus"
|
423 |
|
424 |
-
#: includes/pro_banners.php:
|
425 |
msgid "Reason"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: includes/pro_banners.php:
|
429 |
msgid "Allowed separators for IPs: a comma"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: includes/pro_banners.php:
|
433 |
msgid "semicolon"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: includes/pro_banners.php:
|
437 |
msgid "ordinary space, tab, new line or carriage return"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/pro_banners.php:
|
441 |
msgid "Allowed separators for reasons: a comma"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/pro_banners.php:
|
445 |
msgid "tab, new line or carriage return"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/pro_banners.php:
|
449 |
msgid "Normal"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: includes/pro_banners.php:
|
453 |
msgid "Compact"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/pro_banners.php:
|
457 |
-
|
|
|
458 |
msgstr "Langue reCAPTCHA"
|
459 |
|
460 |
-
#: includes/pro_banners.php:
|
461 |
msgid "Use the current site language"
|
462 |
msgstr "Utiliser le langage courant du site"
|
463 |
|
464 |
-
#: includes/pro_banners.php:
|
465 |
msgid "Using"
|
466 |
msgstr "Utilisant"
|
467 |
|
468 |
-
#: includes/pro_banners.php:
|
469 |
-
|
|
|
470 |
msgstr "Taille ReCAPTCHA"
|
471 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
#, fuzzy
|
473 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
474 |
#~ msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
|
475 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
#, fuzzy
|
477 |
#~ msgid ""
|
478 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
@@ -503,9 +533,6 @@ msgstr "Taille ReCAPTCHA"
|
|
503 |
#~ msgid "Download"
|
504 |
#~ msgstr "Télécharger"
|
505 |
|
506 |
-
#~ msgid "Enable CAPTCHA"
|
507 |
-
#~ msgstr "Activer CAPTCHA"
|
508 |
-
|
509 |
#~ msgid "You should"
|
510 |
#~ msgstr "Vous devez"
|
511 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:02+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Denis Bodorr <lefinnois@lefinnois.net>\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-captcha.php:34 google-captcha.php:602
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Configuration Google Captcha"
|
23 |
|
24 |
+
#: google-captcha.php:254
|
25 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: google-captcha.php:255
|
29 |
msgid ""
|
30 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
31 |
+
"reload this page."
|
|
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: google-captcha.php:275
|
35 |
+
msgid "Warning"
|
36 |
+
msgstr ""
|
|
|
37 |
|
38 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
39 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
40 |
+
msgid "Error"
|
41 |
+
msgstr "Erreur"
|
42 |
+
|
43 |
+
#: google-captcha.php:377
|
44 |
msgid "You are in the whitelist"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: google-captcha.php:506
|
48 |
+
#, fuzzy
|
49 |
+
msgid "Site Key"
|
50 |
msgstr "Clé du site"
|
51 |
|
52 |
+
#: google-captcha.php:511
|
53 |
msgid "Secret Key"
|
54 |
msgstr "Clé secrète"
|
55 |
|
56 |
+
#: google-captcha.php:518 google-captcha.php:519
|
57 |
+
#, fuzzy
|
58 |
+
msgid "Version"
|
59 |
+
msgstr "Version"
|
60 |
+
|
61 |
+
#: google-captcha.php:520
|
62 |
+
#, fuzzy
|
63 |
+
msgid "Invisible reCAPTCHA"
|
64 |
+
msgstr "Activer CAPTCHA"
|
65 |
+
|
66 |
+
#: google-captcha.php:525
|
67 |
msgid "Login form"
|
68 |
msgstr "Formulaire de connexion"
|
69 |
|
70 |
+
#: google-captcha.php:526
|
71 |
msgid "Registration form"
|
72 |
msgstr "Formulaire d'enregistrement"
|
73 |
|
74 |
+
#: google-captcha.php:527
|
75 |
msgid "Reset password form"
|
76 |
msgstr "Formulaire de réinitialisation de mot de passe"
|
77 |
|
78 |
+
#: google-captcha.php:528
|
79 |
msgid "Comments form"
|
80 |
msgstr "Formulaire de commentaire"
|
81 |
|
82 |
+
#: google-captcha.php:547
|
83 |
msgid "Enter site key"
|
84 |
msgstr "Saisissez la clé du site"
|
85 |
|
86 |
+
#: google-captcha.php:548 google-captcha.php:554
|
87 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
88 |
msgstr ""
|
89 |
"ATTENTION: Le captcha ne s'affichera pas tant que vous n'avez pas spécifié "
|
90 |
"les clés"
|
91 |
|
92 |
+
#: google-captcha.php:553
|
93 |
msgid "Enter secret key"
|
94 |
msgstr "Saisissez la clé secrète"
|
95 |
|
96 |
+
#: google-captcha.php:581
|
97 |
msgid "Settings saved"
|
98 |
msgstr "Configuration enregistrée"
|
99 |
|
100 |
+
#: google-captcha.php:587
|
101 |
#, fuzzy
|
102 |
msgid "All plugin settings were restored"
|
103 |
msgstr "Tous les paramètre sont restaurés"
|
104 |
|
105 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
106 |
msgid "Settings"
|
107 |
msgstr "Configuration"
|
108 |
|
109 |
+
#: google-captcha.php:605
|
110 |
msgid "Whitelist"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: google-captcha.php:606
|
114 |
msgid "Custom code"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: google-captcha.php:607
|
118 |
msgid "Go PRO"
|
119 |
msgstr "Version PRO"
|
120 |
|
121 |
+
#: google-captcha.php:612
|
122 |
msgid ""
|
123 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
124 |
"version 1 features."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: google-captcha.php:627
|
128 |
#, fuzzy, php-format
|
129 |
msgid ""
|
130 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
133 |
"Si vous voulez ajouter Google Captcha à vos propres formulaires, copiez/"
|
134 |
"collez simplement ce code:"
|
135 |
|
136 |
+
#: google-captcha.php:631
|
137 |
#, php-format
|
138 |
msgid ""
|
139 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
142 |
"your own form , please use the shortcode %s"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: google-captcha.php:637
|
146 |
msgid "Authentication"
|
147 |
msgstr "Authentification"
|
148 |
|
149 |
+
#: google-captcha.php:638
|
150 |
+
#, php-format
|
151 |
+
msgid ""
|
152 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
153 |
+
"your API keys %shere%s"
|
|
|
|
|
|
|
|
|
|
|
154 |
msgstr ""
|
|
|
|
|
155 |
|
156 |
+
#: google-captcha.php:653
|
157 |
#, fuzzy
|
158 |
msgid "Test Keys"
|
159 |
msgstr "Clé secrète"
|
160 |
|
161 |
+
#: google-captcha.php:656
|
162 |
msgid "Options"
|
163 |
msgstr "Options"
|
164 |
|
165 |
+
#: google-captcha.php:659
|
166 |
msgid "Enable reCAPTCHA for"
|
167 |
msgstr "Activer reCAPTCHA pour"
|
168 |
|
169 |
+
#: google-captcha.php:663
|
170 |
msgid "WordPress default"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: google-captcha.php:672
|
174 |
msgid "This option is available only for network or for main blog"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: google-captcha.php:681
|
178 |
#, fuzzy
|
179 |
msgid "Plugins"
|
180 |
msgstr "Plugins Seite"
|
181 |
|
182 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
183 |
+
#: google-captcha.php:729
|
184 |
#, fuzzy, php-format
|
185 |
msgid "You should %s to use this functionality"
|
186 |
msgstr "pour utiliser cette fonctionnalité"
|
187 |
|
188 |
+
#: google-captcha.php:690 google-captcha.php:725
|
189 |
#, fuzzy
|
190 |
msgid "activate"
|
191 |
msgstr "activer"
|
192 |
|
193 |
+
#: google-captcha.php:690 google-captcha.php:725
|
194 |
msgid "for network"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: google-captcha.php:695 google-captcha.php:730
|
198 |
msgid "download"
|
199 |
msgstr "télécharger"
|
200 |
|
201 |
+
#: google-captcha.php:699
|
202 |
msgid "Check off for adding captcha to forms on their settings pages"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: google-captcha.php:742
|
206 |
#, php-format
|
207 |
msgid ""
|
208 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
212 |
msgid "FAQ"
|
213 |
msgstr "FAQ"
|
214 |
|
215 |
+
#: google-captcha.php:747
|
216 |
+
#, fuzzy
|
217 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
218 |
msgstr "Cacher reCAPTCHA dans le formulaire de commentaires pour"
|
219 |
|
220 |
+
#: google-captcha.php:759
|
221 |
#, fuzzy
|
222 |
+
msgid "Whitelist Notification"
|
223 |
msgstr "Authentification"
|
224 |
|
225 |
+
#: google-captcha.php:763
|
226 |
msgid ""
|
227 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
228 |
"added to the whitelist"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: google-captcha.php:769
|
232 |
+
#, fuzzy
|
233 |
+
msgid "reCAPTCHA Version"
|
234 |
msgstr "Version reCAPTCHA"
|
235 |
|
236 |
+
#: google-captcha.php:779
|
237 |
+
msgid ""
|
238 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
239 |
+
"ones will have to pass the captcha"
|
240 |
+
msgstr ""
|
241 |
|
242 |
+
#: google-captcha.php:787 google-captcha.php:800
|
243 |
+
#, fuzzy
|
244 |
+
msgid "reCAPTCHA Theme"
|
245 |
msgstr "Thème reCAPTCHA"
|
246 |
|
247 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
248 |
msgid "for version"
|
249 |
msgstr "pour la version"
|
250 |
|
251 |
+
#: google-captcha.php:813
|
252 |
msgid "Save Changes"
|
253 |
msgstr "Enregistrer les modifications"
|
254 |
|
255 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
256 |
msgid "To use Google Captcha you must get the keys from"
|
257 |
msgstr "Pour utiliser Google Captcha vous devez obtenir les clés depuis"
|
258 |
|
259 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
260 |
msgid "here"
|
261 |
msgstr "ici"
|
262 |
|
263 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
264 |
msgid "and enter them on the"
|
265 |
msgstr "et les saisir sur la"
|
266 |
|
267 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
268 |
msgid "plugin setting page"
|
269 |
msgstr "page de configuration de l'extension"
|
270 |
|
271 |
+
#: google-captcha.php:1082
|
272 |
+
msgid "User response is missing."
|
273 |
+
msgstr ""
|
274 |
|
275 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
|
|
276 |
#, fuzzy
|
277 |
+
msgid "Secret Key is invalid"
|
278 |
+
msgstr "Clé secrète"
|
279 |
|
280 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
281 |
+
msgid "Check your domain configuration"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
285 |
+
#, fuzzy
|
286 |
+
msgid "and enter it again"
|
287 |
+
msgstr "et les saisir sur la"
|
|
|
|
|
|
|
288 |
|
289 |
+
#: google-captcha.php:1091
|
290 |
+
#, fuzzy
|
291 |
+
msgid "Secret Key is missing."
|
292 |
+
msgstr "Clé secrète"
|
293 |
|
294 |
+
#: google-captcha.php:1098
|
295 |
+
msgid "User response is invalid"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: google-captcha.php:1099
|
299 |
+
#, fuzzy
|
300 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
301 |
+
msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
|
302 |
|
303 |
+
#: google-captcha.php:1100
|
304 |
+
msgid ""
|
305 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
306 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: google-captcha.php:1246
|
310 |
+
#, fuzzy
|
311 |
+
msgid "Click the BACK button on your browser, and try again."
|
312 |
msgstr ""
|
313 |
+
"Vous avez saisi une valeur de CAPTCHA incorrecte. Cliquez sur le bouton "
|
314 |
+
"\"Revenir en arrière\" de votre navigateur et essayez à nouveau."
|
315 |
|
316 |
+
#: google-captcha.php:1291
|
317 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: google-captcha.php:1295
|
321 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: google-captcha.php:1316
|
325 |
msgid "The verification is successfully completed"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: google-captcha.php:1357
|
329 |
msgid "Support"
|
330 |
msgstr "Support"
|
331 |
|
350 |
msgid "Save IP to the whitelist"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
354 |
msgid "Allowed formats"
|
355 |
msgstr ""
|
356 |
|
423 |
msgid "Close"
|
424 |
msgstr "Fermer"
|
425 |
|
426 |
+
#: includes/pro_banners.php:29
|
427 |
+
msgid "Upgrade to Pro"
|
428 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
429 |
|
430 |
+
#: includes/pro_banners.php:42
|
431 |
msgid "Reason"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: includes/pro_banners.php:45
|
435 |
msgid "Allowed separators for IPs: a comma"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
439 |
msgid "semicolon"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/pro_banners.php:45
|
443 |
msgid "ordinary space, tab, new line or carriage return"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: includes/pro_banners.php:46
|
447 |
msgid "Allowed separators for reasons: a comma"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: includes/pro_banners.php:46
|
451 |
msgid "tab, new line or carriage return"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/pro_banners.php:71
|
455 |
msgid "Normal"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: includes/pro_banners.php:72
|
459 |
msgid "Compact"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: includes/pro_banners.php:76
|
463 |
+
#, fuzzy
|
464 |
+
msgid "reCAPTCHA Language"
|
465 |
msgstr "Langue reCAPTCHA"
|
466 |
|
467 |
+
#: includes/pro_banners.php:83
|
468 |
msgid "Use the current site language"
|
469 |
msgstr "Utiliser le langage courant du site"
|
470 |
|
471 |
+
#: includes/pro_banners.php:83
|
472 |
msgid "Using"
|
473 |
msgstr "Utilisant"
|
474 |
|
475 |
+
#: includes/pro_banners.php:89
|
476 |
+
#, fuzzy
|
477 |
+
msgid "reCAPTCHA Size"
|
478 |
msgstr "Taille ReCAPTCHA"
|
479 |
|
480 |
+
#~ msgid "Unlock premium options by upgrading to Pro version"
|
481 |
+
#~ msgstr "Débloquez les options premium en mettant à jour vers la version Pro"
|
482 |
+
|
483 |
+
#~ msgid "Learn More"
|
484 |
+
#~ msgstr "En savoir plus"
|
485 |
+
|
486 |
+
#, fuzzy
|
487 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
488 |
+
#~ msgstr "ERREUR: Vous avez saisi une valeur de CAPTCHA incorrecte"
|
489 |
+
|
490 |
#, fuzzy
|
491 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
492 |
#~ msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
|
493 |
|
494 |
+
#, fuzzy
|
495 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
496 |
+
#~ msgstr ""
|
497 |
+
#~ "Avant de pouvoir faire quoi que ce soit, vous devez vous enregistrer %s "
|
498 |
+
#~ "ici %s"
|
499 |
+
|
500 |
+
#, fuzzy
|
501 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
502 |
+
#~ msgstr ""
|
503 |
+
#~ "Saisissez la clé du site et la clé secrète que vous avez obtenues après "
|
504 |
+
#~ "enregistrement"
|
505 |
+
|
506 |
#, fuzzy
|
507 |
#~ msgid ""
|
508 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
533 |
#~ msgid "Download"
|
534 |
#~ msgstr "Télécharger"
|
535 |
|
|
|
|
|
|
|
536 |
#~ msgid "You should"
|
537 |
#~ msgstr "Vous devez"
|
538 |
|
languages/google-captcha-hi.mo
CHANGED
Binary file
|
languages/google-captcha-hi.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Development Logics Solutions Pvt Ltd "
|
@@ -18,98 +18,111 @@ msgstr ""
|
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-captcha.php:34 google-captcha.php:
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "गूगल कॅप्चा सेटिंग्स"
|
24 |
|
25 |
-
#: google-captcha.php:
|
26 |
-
msgid "
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: google-captcha.php:
|
30 |
msgid ""
|
31 |
-
"
|
32 |
-
"
|
33 |
-
"blocks."
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: google-captcha.php:
|
37 |
-
|
38 |
-
|
39 |
-
msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है।"
|
40 |
|
41 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
42 |
msgid "You are in the whitelist"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: google-captcha.php:
|
46 |
-
|
|
|
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 |
msgid "Enter site key"
|
71 |
msgstr "दर्ज साइट कुंजी "
|
72 |
|
73 |
-
#: google-captcha.php:
|
74 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
75 |
msgstr "चेतावनी: यदि आप कुंजी क्षेत्र नहीं भरेंगें तो कैप्चा प्रदर्शित नहीं करेगा।"
|
76 |
|
77 |
-
#: google-captcha.php:
|
78 |
msgid "Enter secret key"
|
79 |
msgstr "दर्ज गुप्त कुंजी"
|
80 |
|
81 |
-
#: google-captcha.php:
|
82 |
msgid "Settings saved"
|
83 |
msgstr "सेटिंग्स सुरक्षित"
|
84 |
|
85 |
-
#: google-captcha.php:
|
86 |
#, fuzzy
|
87 |
msgid "All plugin settings were restored"
|
88 |
msgstr "प्लगइन सेटिंग पृष्ठ पर "
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
msgid "Settings"
|
92 |
msgstr "सेटिंग्स"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "Whitelist"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
msgid "Custom code"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "Go PRO"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: google-captcha.php:
|
107 |
msgid ""
|
108 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
109 |
"version 1 features."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: google-captcha.php:
|
113 |
#, fuzzy, php-format
|
114 |
msgid ""
|
115 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -118,7 +131,7 @@ msgstr ""
|
|
118 |
"अगर आप अपने खुद के फार्म में गूगल कैप्चा जोड़ना चाहते हैं तो बस इस शॉर्टकोड को अपने पृष्ठ या "
|
119 |
"पोस्ट पर कॉपी और पेस्ट करेँ ।"
|
120 |
|
121 |
-
#: google-captcha.php:
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -127,195 +140,191 @@ msgid ""
|
|
127 |
"your own form , please use the shortcode %s"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: google-captcha.php:
|
131 |
msgid "Authentication"
|
132 |
msgstr "प्रमाणीकरण"
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
-
#,
|
136 |
-
msgid "
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
#, fuzzy
|
141 |
-
msgid "Enter site key and secret key, that you get after registration"
|
142 |
-
msgstr "पंजीकरण के बाद जो साइट कुंजी और गुप्त कुंजी मिलती है उसे दर्ज करें।"
|
143 |
|
144 |
-
#: google-captcha.php:
|
145 |
#, fuzzy
|
146 |
msgid "Test Keys"
|
147 |
msgstr "गुप्त कुंजी"
|
148 |
|
149 |
-
#: google-captcha.php:
|
150 |
msgid "Options"
|
151 |
msgstr "विकल्प"
|
152 |
|
153 |
-
#: google-captcha.php:
|
154 |
msgid "Enable reCAPTCHA for"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: google-captcha.php:
|
158 |
#, fuzzy
|
159 |
msgid "WordPress default"
|
160 |
msgstr "वर्डप्रेस संस्करण"
|
161 |
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "This option is available only for network or for main blog"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: google-captcha.php:
|
167 |
msgid "Plugins"
|
168 |
msgstr "प्लगइन्स"
|
169 |
|
170 |
-
#: google-captcha.php:
|
|
|
171 |
#, php-format
|
172 |
msgid "You should %s to use this functionality"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: google-captcha.php:
|
176 |
#, fuzzy
|
177 |
msgid "activate"
|
178 |
msgstr "सक्रिय"
|
179 |
|
180 |
-
#: google-captcha.php:
|
181 |
msgid "for network"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: google-captcha.php:
|
185 |
msgid "download"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: google-captcha.php:
|
189 |
msgid "Check off for adding captcha to forms on their settings pages"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: google-captcha.php:
|
193 |
#, php-format
|
194 |
msgid ""
|
195 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: google-captcha.php:
|
199 |
msgid "FAQ"
|
200 |
msgstr "सामान्यतःपूछे जाने वाले प्रश्न (फ ए क्यू )"
|
201 |
|
202 |
-
#: google-captcha.php:
|
203 |
#, fuzzy
|
204 |
-
msgid "Hide reCAPTCHA in Comments
|
205 |
msgstr "रीकैप्चा संस्करण के लिए"
|
206 |
|
207 |
-
#: google-captcha.php:
|
208 |
#, fuzzy
|
209 |
-
msgid "Whitelist
|
210 |
msgstr "प्रमाणीकरण"
|
211 |
|
212 |
-
#: google-captcha.php:
|
213 |
msgid ""
|
214 |
-
"This message will be displayed instead of the reCAPTCHA
|
215 |
"added to the whitelist"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: google-captcha.php:
|
219 |
#, fuzzy
|
220 |
-
msgid "reCAPTCHA
|
221 |
msgstr "रीकैप्चा संस्करण:"
|
222 |
|
223 |
-
#: google-captcha.php:
|
224 |
-
|
225 |
-
|
226 |
-
|
|
|
227 |
|
228 |
-
#: google-captcha.php:
|
229 |
#, fuzzy
|
230 |
-
msgid "reCAPTCHA
|
231 |
msgstr "रीकैप्चा संस्करण:"
|
232 |
|
233 |
-
#: google-captcha.php:
|
234 |
#, fuzzy
|
235 |
msgid "for version"
|
236 |
msgstr "संस्करण"
|
237 |
|
238 |
-
#: google-captcha.php:
|
239 |
msgid "Save Changes"
|
240 |
msgstr "परिवर्तनों को सुरक्षित करें"
|
241 |
|
242 |
-
#: google-captcha.php:
|
243 |
msgid "To use Google Captcha you must get the keys from"
|
244 |
msgstr "गूगल कॅप्चा का उपयोग करने के लिए,आप कुंजी लें "
|
245 |
|
246 |
-
#: google-captcha.php:
|
247 |
msgid "here"
|
248 |
msgstr "यहाँ से "
|
249 |
|
250 |
-
#: google-captcha.php:
|
251 |
msgid "and enter them on the"
|
252 |
msgstr "और उन्हें दर्ज करें "
|
253 |
|
254 |
-
#: google-captcha.php:
|
255 |
msgid "plugin setting page"
|
256 |
msgstr "प्लगइन सेटिंग पृष्ठ पर "
|
257 |
|
258 |
-
#: google-captcha.php:
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
261 |
|
262 |
-
#: google-captcha.php:
|
263 |
-
#: google-captcha.php:1107
|
264 |
#, fuzzy
|
265 |
-
msgid "
|
266 |
-
msgstr "
|
267 |
|
268 |
-
#: google-captcha.php:
|
269 |
-
msgid "
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: google-captcha.php:
|
273 |
#, fuzzy
|
274 |
-
msgid ""
|
275 |
-
"
|
276 |
-
"browser, and try again."
|
277 |
-
msgstr ""
|
278 |
-
"त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है। अपने ब्राउज़र पर वापस बटन क्लिक करें, और फिर "
|
279 |
-
"कोशिश करें।"
|
280 |
|
281 |
-
#: google-captcha.php:
|
282 |
-
|
283 |
-
|
|
|
284 |
|
285 |
-
#: google-captcha.php:
|
286 |
-
msgid "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: google-captcha.php:
|
290 |
-
|
291 |
-
|
|
|
292 |
|
293 |
-
#: google-captcha.php:
|
294 |
-
msgid "
|
|
|
|
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: google-captcha.php:
|
298 |
-
|
|
|
299 |
msgstr ""
|
|
|
|
|
300 |
|
301 |
-
#: google-captcha.php:
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: google-captcha.php:
|
306 |
-
|
307 |
-
msgid "and enter it again"
|
308 |
-
msgstr "और उन्हें दर्ज करें "
|
309 |
-
|
310 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
311 |
-
msgid "The user response is invalid"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: google-captcha.php:
|
315 |
msgid "The verification is successfully completed"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: google-captcha.php:
|
319 |
msgid "Support"
|
320 |
msgstr "सहयोग"
|
321 |
|
@@ -340,7 +349,7 @@ msgstr ""
|
|
340 |
msgid "Save IP to the whitelist"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
344 |
msgid "Allowed formats"
|
345 |
msgstr ""
|
346 |
|
@@ -413,68 +422,76 @@ msgstr ""
|
|
413 |
msgid "Close"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: includes/pro_banners.php:
|
417 |
-
msgid "
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: includes/pro_banners.php:
|
421 |
-
msgid "Learn More"
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#: includes/pro_banners.php:43
|
425 |
msgid "Reason"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: includes/pro_banners.php:
|
429 |
msgid "Allowed separators for IPs: a comma"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: includes/pro_banners.php:
|
433 |
msgid "semicolon"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: includes/pro_banners.php:
|
437 |
msgid "ordinary space, tab, new line or carriage return"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/pro_banners.php:
|
441 |
msgid "Allowed separators for reasons: a comma"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/pro_banners.php:
|
445 |
msgid "tab, new line or carriage return"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/pro_banners.php:
|
449 |
msgid "Normal"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: includes/pro_banners.php:
|
453 |
msgid "Compact"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/pro_banners.php:
|
457 |
#, fuzzy
|
458 |
-
msgid "reCAPTCHA
|
459 |
msgstr "रीकैप्चा संस्करण:"
|
460 |
|
461 |
-
#: includes/pro_banners.php:
|
462 |
msgid "Use the current site language"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: includes/pro_banners.php:
|
466 |
msgid "Using"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: includes/pro_banners.php:
|
470 |
#, fuzzy
|
471 |
-
msgid "reCAPTCHA
|
472 |
msgstr "रीकैप्चा संस्करण:"
|
473 |
|
474 |
#, fuzzy
|
475 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
|
|
|
|
|
|
|
|
476 |
#~ msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
|
477 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
478 |
#, fuzzy
|
479 |
#~ msgid ""
|
480 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:00+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Development Logics Solutions Pvt Ltd "
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: google-captcha.php:34 google-captcha.php:602
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "गूगल कॅप्चा सेटिंग्स"
|
24 |
|
25 |
+
#: google-captcha.php:254
|
26 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: google-captcha.php:255
|
30 |
msgid ""
|
31 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
32 |
+
"reload this page."
|
|
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: google-captcha.php:275
|
36 |
+
msgid "Warning"
|
37 |
+
msgstr ""
|
|
|
38 |
|
39 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
40 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
41 |
+
msgid "Error"
|
42 |
+
msgstr "त्रुटि"
|
43 |
+
|
44 |
+
#: google-captcha.php:377
|
45 |
msgid "You are in the whitelist"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: google-captcha.php:506
|
49 |
+
#, fuzzy
|
50 |
+
msgid "Site Key"
|
51 |
msgstr "साइट कुंजी "
|
52 |
|
53 |
+
#: google-captcha.php:511
|
54 |
msgid "Secret Key"
|
55 |
msgstr "गुप्त कुंजी"
|
56 |
|
57 |
+
#: google-captcha.php:518 google-captcha.php:519
|
58 |
+
#, fuzzy
|
59 |
+
msgid "Version"
|
60 |
+
msgstr "संस्करण"
|
61 |
+
|
62 |
+
#: google-captcha.php:520
|
63 |
+
msgid "Invisible reCAPTCHA"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: google-captcha.php:525
|
67 |
msgid "Login form"
|
68 |
msgstr "प्रवेश फार्म"
|
69 |
|
70 |
+
#: google-captcha.php:526
|
71 |
msgid "Registration form"
|
72 |
msgstr "पंजीकरण फॉर्म"
|
73 |
|
74 |
+
#: google-captcha.php:527
|
75 |
msgid "Reset password form"
|
76 |
msgstr "पुन: पासवर्ड फार्म"
|
77 |
|
78 |
+
#: google-captcha.php:528
|
79 |
msgid "Comments form"
|
80 |
msgstr "टिप्पणियां फार्म"
|
81 |
|
82 |
+
#: google-captcha.php:547
|
83 |
msgid "Enter site key"
|
84 |
msgstr "दर्ज साइट कुंजी "
|
85 |
|
86 |
+
#: google-captcha.php:548 google-captcha.php:554
|
87 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
88 |
msgstr "चेतावनी: यदि आप कुंजी क्षेत्र नहीं भरेंगें तो कैप्चा प्रदर्शित नहीं करेगा।"
|
89 |
|
90 |
+
#: google-captcha.php:553
|
91 |
msgid "Enter secret key"
|
92 |
msgstr "दर्ज गुप्त कुंजी"
|
93 |
|
94 |
+
#: google-captcha.php:581
|
95 |
msgid "Settings saved"
|
96 |
msgstr "सेटिंग्स सुरक्षित"
|
97 |
|
98 |
+
#: google-captcha.php:587
|
99 |
#, fuzzy
|
100 |
msgid "All plugin settings were restored"
|
101 |
msgstr "प्लगइन सेटिंग पृष्ठ पर "
|
102 |
|
103 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
104 |
msgid "Settings"
|
105 |
msgstr "सेटिंग्स"
|
106 |
|
107 |
+
#: google-captcha.php:605
|
108 |
msgid "Whitelist"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: google-captcha.php:606
|
112 |
msgid "Custom code"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: google-captcha.php:607
|
116 |
msgid "Go PRO"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: google-captcha.php:612
|
120 |
msgid ""
|
121 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
122 |
"version 1 features."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: google-captcha.php:627
|
126 |
#, fuzzy, php-format
|
127 |
msgid ""
|
128 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
131 |
"अगर आप अपने खुद के फार्म में गूगल कैप्चा जोड़ना चाहते हैं तो बस इस शॉर्टकोड को अपने पृष्ठ या "
|
132 |
"पोस्ट पर कॉपी और पेस्ट करेँ ।"
|
133 |
|
134 |
+
#: google-captcha.php:631
|
135 |
#, php-format
|
136 |
msgid ""
|
137 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
140 |
"your own form , please use the shortcode %s"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: google-captcha.php:637
|
144 |
msgid "Authentication"
|
145 |
msgstr "प्रमाणीकरण"
|
146 |
|
147 |
+
#: google-captcha.php:638
|
148 |
+
#, php-format
|
149 |
+
msgid ""
|
150 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
151 |
+
"your API keys %shere%s"
|
152 |
+
msgstr ""
|
|
|
|
|
|
|
153 |
|
154 |
+
#: google-captcha.php:653
|
155 |
#, fuzzy
|
156 |
msgid "Test Keys"
|
157 |
msgstr "गुप्त कुंजी"
|
158 |
|
159 |
+
#: google-captcha.php:656
|
160 |
msgid "Options"
|
161 |
msgstr "विकल्प"
|
162 |
|
163 |
+
#: google-captcha.php:659
|
164 |
msgid "Enable reCAPTCHA for"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: google-captcha.php:663
|
168 |
#, fuzzy
|
169 |
msgid "WordPress default"
|
170 |
msgstr "वर्डप्रेस संस्करण"
|
171 |
|
172 |
+
#: google-captcha.php:672
|
173 |
msgid "This option is available only for network or for main blog"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: google-captcha.php:681
|
177 |
msgid "Plugins"
|
178 |
msgstr "प्लगइन्स"
|
179 |
|
180 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
181 |
+
#: google-captcha.php:729
|
182 |
#, php-format
|
183 |
msgid "You should %s to use this functionality"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: google-captcha.php:690 google-captcha.php:725
|
187 |
#, fuzzy
|
188 |
msgid "activate"
|
189 |
msgstr "सक्रिय"
|
190 |
|
191 |
+
#: google-captcha.php:690 google-captcha.php:725
|
192 |
msgid "for network"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: google-captcha.php:695 google-captcha.php:730
|
196 |
msgid "download"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: google-captcha.php:699
|
200 |
msgid "Check off for adding captcha to forms on their settings pages"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: google-captcha.php:742
|
204 |
#, php-format
|
205 |
msgid ""
|
206 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
210 |
msgid "FAQ"
|
211 |
msgstr "सामान्यतःपूछे जाने वाले प्रश्न (फ ए क्यू )"
|
212 |
|
213 |
+
#: google-captcha.php:747
|
214 |
#, fuzzy
|
215 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
216 |
msgstr "रीकैप्चा संस्करण के लिए"
|
217 |
|
218 |
+
#: google-captcha.php:759
|
219 |
#, fuzzy
|
220 |
+
msgid "Whitelist Notification"
|
221 |
msgstr "प्रमाणीकरण"
|
222 |
|
223 |
+
#: google-captcha.php:763
|
224 |
msgid ""
|
225 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
226 |
"added to the whitelist"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: google-captcha.php:769
|
230 |
#, fuzzy
|
231 |
+
msgid "reCAPTCHA Version"
|
232 |
msgstr "रीकैप्चा संस्करण:"
|
233 |
|
234 |
+
#: google-captcha.php:779
|
235 |
+
msgid ""
|
236 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
237 |
+
"ones will have to pass the captcha"
|
238 |
+
msgstr ""
|
239 |
|
240 |
+
#: google-captcha.php:787 google-captcha.php:800
|
241 |
#, fuzzy
|
242 |
+
msgid "reCAPTCHA Theme"
|
243 |
msgstr "रीकैप्चा संस्करण:"
|
244 |
|
245 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
246 |
#, fuzzy
|
247 |
msgid "for version"
|
248 |
msgstr "संस्करण"
|
249 |
|
250 |
+
#: google-captcha.php:813
|
251 |
msgid "Save Changes"
|
252 |
msgstr "परिवर्तनों को सुरक्षित करें"
|
253 |
|
254 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
255 |
msgid "To use Google Captcha you must get the keys from"
|
256 |
msgstr "गूगल कॅप्चा का उपयोग करने के लिए,आप कुंजी लें "
|
257 |
|
258 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
259 |
msgid "here"
|
260 |
msgstr "यहाँ से "
|
261 |
|
262 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
263 |
msgid "and enter them on the"
|
264 |
msgstr "और उन्हें दर्ज करें "
|
265 |
|
266 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
267 |
msgid "plugin setting page"
|
268 |
msgstr "प्लगइन सेटिंग पृष्ठ पर "
|
269 |
|
270 |
+
#: google-captcha.php:1082
|
271 |
+
msgid "User response is missing."
|
272 |
+
msgstr ""
|
273 |
|
274 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
|
|
275 |
#, fuzzy
|
276 |
+
msgid "Secret Key is invalid"
|
277 |
+
msgstr "गुप्त कुंजी"
|
278 |
|
279 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
280 |
+
msgid "Check your domain configuration"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
284 |
#, fuzzy
|
285 |
+
msgid "and enter it again"
|
286 |
+
msgstr "और उन्हें दर्ज करें "
|
|
|
|
|
|
|
|
|
287 |
|
288 |
+
#: google-captcha.php:1091
|
289 |
+
#, fuzzy
|
290 |
+
msgid "Secret Key is missing."
|
291 |
+
msgstr "गुप्त कुंजी"
|
292 |
|
293 |
+
#: google-captcha.php:1098
|
294 |
+
msgid "User response is invalid"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: google-captcha.php:1099
|
298 |
+
#, fuzzy
|
299 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
300 |
+
msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
|
301 |
|
302 |
+
#: google-captcha.php:1100
|
303 |
+
msgid ""
|
304 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
305 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: google-captcha.php:1246
|
309 |
+
#, fuzzy
|
310 |
+
msgid "Click the BACK button on your browser, and try again."
|
311 |
msgstr ""
|
312 |
+
"त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है। अपने ब्राउज़र पर वापस बटन क्लिक करें, और फिर "
|
313 |
+
"कोशिश करें।"
|
314 |
|
315 |
+
#: google-captcha.php:1291
|
316 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: google-captcha.php:1295
|
320 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: google-captcha.php:1316
|
324 |
msgid "The verification is successfully completed"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: google-captcha.php:1357
|
328 |
msgid "Support"
|
329 |
msgstr "सहयोग"
|
330 |
|
349 |
msgid "Save IP to the whitelist"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
353 |
msgid "Allowed formats"
|
354 |
msgstr ""
|
355 |
|
422 |
msgid "Close"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/pro_banners.php:29
|
426 |
+
msgid "Upgrade to Pro"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/pro_banners.php:42
|
|
|
|
|
|
|
|
|
430 |
msgid "Reason"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/pro_banners.php:45
|
434 |
msgid "Allowed separators for IPs: a comma"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
438 |
msgid "semicolon"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/pro_banners.php:45
|
442 |
msgid "ordinary space, tab, new line or carriage return"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/pro_banners.php:46
|
446 |
msgid "Allowed separators for reasons: a comma"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/pro_banners.php:46
|
450 |
msgid "tab, new line or carriage return"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: includes/pro_banners.php:71
|
454 |
msgid "Normal"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/pro_banners.php:72
|
458 |
msgid "Compact"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/pro_banners.php:76
|
462 |
#, fuzzy
|
463 |
+
msgid "reCAPTCHA Language"
|
464 |
msgstr "रीकैप्चा संस्करण:"
|
465 |
|
466 |
+
#: includes/pro_banners.php:83
|
467 |
msgid "Use the current site language"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/pro_banners.php:83
|
471 |
msgid "Using"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: includes/pro_banners.php:89
|
475 |
#, fuzzy
|
476 |
+
msgid "reCAPTCHA Size"
|
477 |
msgstr "रीकैप्चा संस्करण:"
|
478 |
|
479 |
#, fuzzy
|
480 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
481 |
+
#~ msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है।"
|
482 |
+
|
483 |
+
#, fuzzy
|
484 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
485 |
#~ msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
|
486 |
|
487 |
+
#, fuzzy
|
488 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
489 |
+
#~ msgstr " कुछ भी करने से पहले %s यहाँ %s पंजीकरण करायें "
|
490 |
+
|
491 |
+
#, fuzzy
|
492 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
493 |
+
#~ msgstr "पंजीकरण के बाद जो साइट कुंजी और गुप्त कुंजी मिलती है उसे दर्ज करें।"
|
494 |
+
|
495 |
#, fuzzy
|
496 |
#~ msgid ""
|
497 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
languages/google-captcha-it_IT.mo
CHANGED
Binary file
|
languages/google-captcha-it_IT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Istvan <wart17@hotmail.com>\n"
|
@@ -17,100 +17,113 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-captcha.php:34 google-captcha.php:
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Impostazioni Google Captcha"
|
23 |
|
24 |
-
#: google-captcha.php:
|
25 |
-
msgid "
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: google-captcha.php:
|
29 |
msgid ""
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"blocks."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: google-captcha.php:
|
36 |
-
|
37 |
-
|
38 |
-
msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
|
39 |
|
40 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
41 |
msgid "You are in the whitelist"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: google-captcha.php:
|
45 |
-
|
|
|
46 |
msgstr "Chiave del sito"
|
47 |
|
48 |
-
#: google-captcha.php:
|
49 |
msgid "Secret Key"
|
50 |
msgstr "Chiave segreta"
|
51 |
|
52 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
msgid "Login form"
|
54 |
msgstr "Form di accesso"
|
55 |
|
56 |
-
#: google-captcha.php:
|
57 |
msgid "Registration form"
|
58 |
msgstr "Form di registrazione"
|
59 |
|
60 |
-
#: google-captcha.php:
|
61 |
msgid "Reset password form"
|
62 |
msgstr "Form per resettare la password"
|
63 |
|
64 |
-
#: google-captcha.php:
|
65 |
msgid "Comments form"
|
66 |
msgstr "Form dei commenti"
|
67 |
|
68 |
-
#: google-captcha.php:
|
69 |
msgid "Enter site key"
|
70 |
msgstr "Introduci la Chiave del sito"
|
71 |
|
72 |
-
#: google-captcha.php:
|
73 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
74 |
msgstr ""
|
75 |
"ATTENZIONE: Il Captcha non verrà mostrato mentre non riempi i campi chiave."
|
76 |
|
77 |
-
#: google-captcha.php:
|
78 |
msgid "Enter secret key"
|
79 |
msgstr "Introduci la Chiave segreta"
|
80 |
|
81 |
-
#: google-captcha.php:
|
82 |
msgid "Settings saved"
|
83 |
msgstr "Impostazioni salvate"
|
84 |
|
85 |
-
#: google-captcha.php:
|
86 |
#, fuzzy
|
87 |
msgid "All plugin settings were restored"
|
88 |
msgstr "pagina di configurazione del plugin"
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
msgid "Settings"
|
92 |
msgstr "Impostazioni"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
#, fuzzy
|
96 |
msgid "Whitelist"
|
97 |
msgstr "Blanco"
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "Custom code"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Go PRO"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid ""
|
109 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
110 |
"version 1 features."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: google-captcha.php:
|
114 |
#, fuzzy, php-format
|
115 |
msgid ""
|
116 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -119,7 +132,7 @@ msgstr ""
|
|
119 |
"Se desideri aggiungere Google Captcha ad un tuo form, devi semplicemente "
|
120 |
"copiare ed incollare questo codice nel tuo post o pagina:"
|
121 |
|
122 |
-
#: google-captcha.php:
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -128,197 +141,191 @@ msgid ""
|
|
128 |
"your own form , please use the shortcode %s"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: google-captcha.php:
|
132 |
msgid "Authentication"
|
133 |
msgstr "Autenticazione"
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
-
#,
|
137 |
-
msgid "
|
138 |
-
|
139 |
-
|
140 |
-
#: google-captcha.php:602
|
141 |
-
#, fuzzy
|
142 |
-
msgid "Enter site key and secret key, that you get after registration"
|
143 |
msgstr ""
|
144 |
-
"Introduci la Chiave del sito e la Chiave segreta, che si ottengono dopo la "
|
145 |
-
"registrazione."
|
146 |
|
147 |
-
#: google-captcha.php:
|
148 |
#, fuzzy
|
149 |
msgid "Test Keys"
|
150 |
msgstr "Chiave segreta"
|
151 |
|
152 |
-
#: google-captcha.php:
|
153 |
msgid "Options"
|
154 |
msgstr "Opzioni"
|
155 |
|
156 |
-
#: google-captcha.php:
|
157 |
msgid "Enable reCAPTCHA for"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: google-captcha.php:
|
161 |
msgid "WordPress default"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: google-captcha.php:
|
165 |
msgid "This option is available only for network or for main blog"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: google-captcha.php:
|
169 |
#, fuzzy
|
170 |
msgid "Plugins"
|
171 |
msgstr "Pagina dei plugins"
|
172 |
|
173 |
-
#: google-captcha.php:
|
|
|
174 |
#, php-format
|
175 |
msgid "You should %s to use this functionality"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: google-captcha.php:
|
179 |
#, fuzzy
|
180 |
msgid "activate"
|
181 |
msgstr "Tema Activado"
|
182 |
|
183 |
-
#: google-captcha.php:
|
184 |
msgid "for network"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: google-captcha.php:
|
188 |
msgid "download"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: google-captcha.php:
|
192 |
msgid "Check off for adding captcha to forms on their settings pages"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: google-captcha.php:
|
196 |
#, php-format
|
197 |
msgid ""
|
198 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: google-captcha.php:
|
202 |
msgid "FAQ"
|
203 |
msgstr "Domande frequenti"
|
204 |
|
205 |
-
#: google-captcha.php:
|
206 |
#, fuzzy
|
207 |
-
msgid "Hide reCAPTCHA in Comments
|
208 |
msgstr "per reCAPTCHA versione"
|
209 |
|
210 |
-
#: google-captcha.php:
|
211 |
#, fuzzy
|
212 |
-
msgid "Whitelist
|
213 |
msgstr "Autenticazione"
|
214 |
|
215 |
-
#: google-captcha.php:
|
216 |
msgid ""
|
217 |
-
"This message will be displayed instead of the reCAPTCHA
|
218 |
"added to the whitelist"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: google-captcha.php:
|
222 |
#, fuzzy
|
223 |
-
msgid "reCAPTCHA
|
224 |
msgstr "reCAPTCHA versione:"
|
225 |
|
226 |
-
#: google-captcha.php:
|
227 |
-
|
228 |
-
|
229 |
-
|
|
|
230 |
|
231 |
-
#: google-captcha.php:
|
232 |
#, fuzzy
|
233 |
-
msgid "reCAPTCHA
|
234 |
msgstr "reCAPTCHA versione:"
|
235 |
|
236 |
-
#: google-captcha.php:
|
237 |
#, fuzzy
|
238 |
msgid "for version"
|
239 |
msgstr "versione"
|
240 |
|
241 |
-
#: google-captcha.php:
|
242 |
msgid "Save Changes"
|
243 |
msgstr "Salva modifiche"
|
244 |
|
245 |
-
#: google-captcha.php:
|
246 |
msgid "To use Google Captcha you must get the keys from"
|
247 |
msgstr "Per utilizzare Google Captcha devi ottenere le chiavi da"
|
248 |
|
249 |
-
#: google-captcha.php:
|
250 |
msgid "here"
|
251 |
msgstr "qui"
|
252 |
|
253 |
-
#: google-captcha.php:
|
254 |
msgid "and enter them on the"
|
255 |
msgstr "ed introducili in"
|
256 |
|
257 |
-
#: google-captcha.php:
|
258 |
msgid "plugin setting page"
|
259 |
msgstr "pagina di configurazione del plugin"
|
260 |
|
261 |
-
#: google-captcha.php:
|
262 |
-
msgid "
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: google-captcha.php:
|
266 |
-
#: google-captcha.php:1107
|
267 |
#, fuzzy
|
268 |
-
msgid "
|
269 |
-
msgstr "
|
270 |
|
271 |
-
#: google-captcha.php:
|
272 |
-
msgid "
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: google-captcha.php:
|
276 |
#, fuzzy
|
277 |
-
msgid ""
|
278 |
-
"
|
279 |
-
"browser, and try again."
|
280 |
-
msgstr ""
|
281 |
-
"Errore: Hai introdotto un valore CAPTCHA errato. Fai click sul bottone "
|
282 |
-
"Indietro del tuo browser e riprova."
|
283 |
|
284 |
-
#: google-captcha.php:
|
285 |
-
|
286 |
-
|
|
|
287 |
|
288 |
-
#: google-captcha.php:
|
289 |
-
msgid "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: google-captcha.php:
|
293 |
-
|
294 |
-
|
|
|
295 |
|
296 |
-
#: google-captcha.php:
|
297 |
-
msgid "
|
|
|
|
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: google-captcha.php:
|
301 |
-
|
|
|
302 |
msgstr ""
|
|
|
|
|
303 |
|
304 |
-
#: google-captcha.php:
|
305 |
-
msgid "
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: google-captcha.php:
|
309 |
-
|
310 |
-
msgid "and enter it again"
|
311 |
-
msgstr "ed introducili in"
|
312 |
-
|
313 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
314 |
-
msgid "The user response is invalid"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: google-captcha.php:
|
318 |
msgid "The verification is successfully completed"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: google-captcha.php:
|
322 |
msgid "Support"
|
323 |
msgstr "Supporto"
|
324 |
|
@@ -343,7 +350,7 @@ msgstr ""
|
|
343 |
msgid "Save IP to the whitelist"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
347 |
msgid "Allowed formats"
|
348 |
msgstr ""
|
349 |
|
@@ -416,68 +423,78 @@ msgstr ""
|
|
416 |
msgid "Close"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: includes/pro_banners.php:
|
420 |
-
msgid "
|
421 |
-
msgstr ""
|
422 |
-
|
423 |
-
#: includes/pro_banners.php:30
|
424 |
-
msgid "Learn More"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/pro_banners.php:
|
428 |
msgid "Reason"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/pro_banners.php:
|
432 |
msgid "Allowed separators for IPs: a comma"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/pro_banners.php:
|
436 |
msgid "semicolon"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/pro_banners.php:
|
440 |
msgid "ordinary space, tab, new line or carriage return"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/pro_banners.php:
|
444 |
msgid "Allowed separators for reasons: a comma"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/pro_banners.php:
|
448 |
msgid "tab, new line or carriage return"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: includes/pro_banners.php:
|
452 |
msgid "Normal"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/pro_banners.php:
|
456 |
msgid "Compact"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/pro_banners.php:
|
460 |
#, fuzzy
|
461 |
-
msgid "reCAPTCHA
|
462 |
msgstr "reCAPTCHA versione:"
|
463 |
|
464 |
-
#: includes/pro_banners.php:
|
465 |
msgid "Use the current site language"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: includes/pro_banners.php:
|
469 |
msgid "Using"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: includes/pro_banners.php:
|
473 |
#, fuzzy
|
474 |
-
msgid "reCAPTCHA
|
475 |
msgstr "reCAPTCHA versione:"
|
476 |
|
477 |
#, fuzzy
|
478 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
479 |
#~ msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
|
480 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
#, fuzzy
|
482 |
#~ msgid ""
|
483 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:02+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Istvan <wart17@hotmail.com>\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-captcha.php:34 google-captcha.php:602
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Impostazioni Google Captcha"
|
23 |
|
24 |
+
#: google-captcha.php:254
|
25 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: google-captcha.php:255
|
29 |
msgid ""
|
30 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
31 |
+
"reload this page."
|
|
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: google-captcha.php:275
|
35 |
+
msgid "Warning"
|
36 |
+
msgstr ""
|
|
|
37 |
|
38 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
39 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
40 |
+
msgid "Error"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: google-captcha.php:377
|
44 |
msgid "You are in the whitelist"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: google-captcha.php:506
|
48 |
+
#, fuzzy
|
49 |
+
msgid "Site Key"
|
50 |
msgstr "Chiave del sito"
|
51 |
|
52 |
+
#: google-captcha.php:511
|
53 |
msgid "Secret Key"
|
54 |
msgstr "Chiave segreta"
|
55 |
|
56 |
+
#: google-captcha.php:518 google-captcha.php:519
|
57 |
+
#, fuzzy
|
58 |
+
msgid "Version"
|
59 |
+
msgstr "versione"
|
60 |
+
|
61 |
+
#: google-captcha.php:520
|
62 |
+
msgid "Invisible reCAPTCHA"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: google-captcha.php:525
|
66 |
msgid "Login form"
|
67 |
msgstr "Form di accesso"
|
68 |
|
69 |
+
#: google-captcha.php:526
|
70 |
msgid "Registration form"
|
71 |
msgstr "Form di registrazione"
|
72 |
|
73 |
+
#: google-captcha.php:527
|
74 |
msgid "Reset password form"
|
75 |
msgstr "Form per resettare la password"
|
76 |
|
77 |
+
#: google-captcha.php:528
|
78 |
msgid "Comments form"
|
79 |
msgstr "Form dei commenti"
|
80 |
|
81 |
+
#: google-captcha.php:547
|
82 |
msgid "Enter site key"
|
83 |
msgstr "Introduci la Chiave del sito"
|
84 |
|
85 |
+
#: google-captcha.php:548 google-captcha.php:554
|
86 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
87 |
msgstr ""
|
88 |
"ATTENZIONE: Il Captcha non verrà mostrato mentre non riempi i campi chiave."
|
89 |
|
90 |
+
#: google-captcha.php:553
|
91 |
msgid "Enter secret key"
|
92 |
msgstr "Introduci la Chiave segreta"
|
93 |
|
94 |
+
#: google-captcha.php:581
|
95 |
msgid "Settings saved"
|
96 |
msgstr "Impostazioni salvate"
|
97 |
|
98 |
+
#: google-captcha.php:587
|
99 |
#, fuzzy
|
100 |
msgid "All plugin settings were restored"
|
101 |
msgstr "pagina di configurazione del plugin"
|
102 |
|
103 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
104 |
msgid "Settings"
|
105 |
msgstr "Impostazioni"
|
106 |
|
107 |
+
#: google-captcha.php:605
|
108 |
#, fuzzy
|
109 |
msgid "Whitelist"
|
110 |
msgstr "Blanco"
|
111 |
|
112 |
+
#: google-captcha.php:606
|
113 |
msgid "Custom code"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: google-captcha.php:607
|
117 |
msgid "Go PRO"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: google-captcha.php:612
|
121 |
msgid ""
|
122 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
123 |
"version 1 features."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: google-captcha.php:627
|
127 |
#, fuzzy, php-format
|
128 |
msgid ""
|
129 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
132 |
"Se desideri aggiungere Google Captcha ad un tuo form, devi semplicemente "
|
133 |
"copiare ed incollare questo codice nel tuo post o pagina:"
|
134 |
|
135 |
+
#: google-captcha.php:631
|
136 |
#, php-format
|
137 |
msgid ""
|
138 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
141 |
"your own form , please use the shortcode %s"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: google-captcha.php:637
|
145 |
msgid "Authentication"
|
146 |
msgstr "Autenticazione"
|
147 |
|
148 |
+
#: google-captcha.php:638
|
149 |
+
#, php-format
|
150 |
+
msgid ""
|
151 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
152 |
+
"your API keys %shere%s"
|
|
|
|
|
|
|
153 |
msgstr ""
|
|
|
|
|
154 |
|
155 |
+
#: google-captcha.php:653
|
156 |
#, fuzzy
|
157 |
msgid "Test Keys"
|
158 |
msgstr "Chiave segreta"
|
159 |
|
160 |
+
#: google-captcha.php:656
|
161 |
msgid "Options"
|
162 |
msgstr "Opzioni"
|
163 |
|
164 |
+
#: google-captcha.php:659
|
165 |
msgid "Enable reCAPTCHA for"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: google-captcha.php:663
|
169 |
msgid "WordPress default"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: google-captcha.php:672
|
173 |
msgid "This option is available only for network or for main blog"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: google-captcha.php:681
|
177 |
#, fuzzy
|
178 |
msgid "Plugins"
|
179 |
msgstr "Pagina dei plugins"
|
180 |
|
181 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
182 |
+
#: google-captcha.php:729
|
183 |
#, php-format
|
184 |
msgid "You should %s to use this functionality"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: google-captcha.php:690 google-captcha.php:725
|
188 |
#, fuzzy
|
189 |
msgid "activate"
|
190 |
msgstr "Tema Activado"
|
191 |
|
192 |
+
#: google-captcha.php:690 google-captcha.php:725
|
193 |
msgid "for network"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: google-captcha.php:695 google-captcha.php:730
|
197 |
msgid "download"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: google-captcha.php:699
|
201 |
msgid "Check off for adding captcha to forms on their settings pages"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: google-captcha.php:742
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
211 |
msgid "FAQ"
|
212 |
msgstr "Domande frequenti"
|
213 |
|
214 |
+
#: google-captcha.php:747
|
215 |
#, fuzzy
|
216 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
217 |
msgstr "per reCAPTCHA versione"
|
218 |
|
219 |
+
#: google-captcha.php:759
|
220 |
#, fuzzy
|
221 |
+
msgid "Whitelist Notification"
|
222 |
msgstr "Autenticazione"
|
223 |
|
224 |
+
#: google-captcha.php:763
|
225 |
msgid ""
|
226 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
227 |
"added to the whitelist"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: google-captcha.php:769
|
231 |
#, fuzzy
|
232 |
+
msgid "reCAPTCHA Version"
|
233 |
msgstr "reCAPTCHA versione:"
|
234 |
|
235 |
+
#: google-captcha.php:779
|
236 |
+
msgid ""
|
237 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
238 |
+
"ones will have to pass the captcha"
|
239 |
+
msgstr ""
|
240 |
|
241 |
+
#: google-captcha.php:787 google-captcha.php:800
|
242 |
#, fuzzy
|
243 |
+
msgid "reCAPTCHA Theme"
|
244 |
msgstr "reCAPTCHA versione:"
|
245 |
|
246 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
247 |
#, fuzzy
|
248 |
msgid "for version"
|
249 |
msgstr "versione"
|
250 |
|
251 |
+
#: google-captcha.php:813
|
252 |
msgid "Save Changes"
|
253 |
msgstr "Salva modifiche"
|
254 |
|
255 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
256 |
msgid "To use Google Captcha you must get the keys from"
|
257 |
msgstr "Per utilizzare Google Captcha devi ottenere le chiavi da"
|
258 |
|
259 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
260 |
msgid "here"
|
261 |
msgstr "qui"
|
262 |
|
263 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
264 |
msgid "and enter them on the"
|
265 |
msgstr "ed introducili in"
|
266 |
|
267 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
268 |
msgid "plugin setting page"
|
269 |
msgstr "pagina di configurazione del plugin"
|
270 |
|
271 |
+
#: google-captcha.php:1082
|
272 |
+
msgid "User response is missing."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
|
|
276 |
#, fuzzy
|
277 |
+
msgid "Secret Key is invalid"
|
278 |
+
msgstr "Chiave segreta"
|
279 |
|
280 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
281 |
+
msgid "Check your domain configuration"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
285 |
#, fuzzy
|
286 |
+
msgid "and enter it again"
|
287 |
+
msgstr "ed introducili in"
|
|
|
|
|
|
|
|
|
288 |
|
289 |
+
#: google-captcha.php:1091
|
290 |
+
#, fuzzy
|
291 |
+
msgid "Secret Key is missing."
|
292 |
+
msgstr "Chiave segreta"
|
293 |
|
294 |
+
#: google-captcha.php:1098
|
295 |
+
msgid "User response is invalid"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: google-captcha.php:1099
|
299 |
+
#, fuzzy
|
300 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
301 |
+
msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
|
302 |
|
303 |
+
#: google-captcha.php:1100
|
304 |
+
msgid ""
|
305 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
306 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: google-captcha.php:1246
|
310 |
+
#, fuzzy
|
311 |
+
msgid "Click the BACK button on your browser, and try again."
|
312 |
msgstr ""
|
313 |
+
"Errore: Hai introdotto un valore CAPTCHA errato. Fai click sul bottone "
|
314 |
+
"Indietro del tuo browser e riprova."
|
315 |
|
316 |
+
#: google-captcha.php:1291
|
317 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: google-captcha.php:1295
|
321 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: google-captcha.php:1316
|
325 |
msgid "The verification is successfully completed"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: google-captcha.php:1357
|
329 |
msgid "Support"
|
330 |
msgstr "Supporto"
|
331 |
|
350 |
msgid "Save IP to the whitelist"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
354 |
msgid "Allowed formats"
|
355 |
msgstr ""
|
356 |
|
423 |
msgid "Close"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/pro_banners.php:29
|
427 |
+
msgid "Upgrade to Pro"
|
|
|
|
|
|
|
|
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: includes/pro_banners.php:42
|
431 |
msgid "Reason"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: includes/pro_banners.php:45
|
435 |
msgid "Allowed separators for IPs: a comma"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
439 |
msgid "semicolon"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/pro_banners.php:45
|
443 |
msgid "ordinary space, tab, new line or carriage return"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: includes/pro_banners.php:46
|
447 |
msgid "Allowed separators for reasons: a comma"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: includes/pro_banners.php:46
|
451 |
msgid "tab, new line or carriage return"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/pro_banners.php:71
|
455 |
msgid "Normal"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: includes/pro_banners.php:72
|
459 |
msgid "Compact"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: includes/pro_banners.php:76
|
463 |
#, fuzzy
|
464 |
+
msgid "reCAPTCHA Language"
|
465 |
msgstr "reCAPTCHA versione:"
|
466 |
|
467 |
+
#: includes/pro_banners.php:83
|
468 |
msgid "Use the current site language"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/pro_banners.php:83
|
472 |
msgid "Using"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/pro_banners.php:89
|
476 |
#, fuzzy
|
477 |
+
msgid "reCAPTCHA Size"
|
478 |
msgstr "reCAPTCHA versione:"
|
479 |
|
480 |
#, fuzzy
|
481 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
482 |
#~ msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
|
483 |
|
484 |
+
#, fuzzy
|
485 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
486 |
+
#~ msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
|
487 |
+
|
488 |
+
#, fuzzy
|
489 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
490 |
+
#~ msgstr "Prima di poter fare qualcosa, devi registrare %s qui %s"
|
491 |
+
|
492 |
+
#, fuzzy
|
493 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
494 |
+
#~ msgstr ""
|
495 |
+
#~ "Introduci la Chiave del sito e la Chiave segreta, che si ottengono dopo "
|
496 |
+
#~ "la registrazione."
|
497 |
+
|
498 |
#, fuzzy
|
499 |
#~ msgid ""
|
500 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
languages/google-captcha-pl_PL.mo
CHANGED
Binary file
|
languages/google-captcha-pl_PL.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
@@ -18,103 +18,115 @@ msgstr ""
|
|
18 |
"|| n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-captcha.php:34 google-captcha.php:
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Ustawienia Google Captcha"
|
24 |
|
25 |
-
#: google-captcha.php:
|
26 |
-
msgid "
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: google-captcha.php:
|
30 |
msgid ""
|
31 |
-
"
|
32 |
-
"
|
33 |
-
"blocks."
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: google-captcha.php:
|
37 |
-
|
38 |
-
|
39 |
-
msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
|
40 |
|
41 |
-
#: google-captcha.php:
|
42 |
-
|
|
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: google-captcha.php:
|
46 |
-
msgid "
|
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 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
76 |
msgstr ""
|
77 |
"OSTRZEŻENIE: Kod captcha nie będzie wyświetlany, jeżeli nie wprowadzisz "
|
78 |
"kluczy."
|
79 |
|
80 |
-
#: google-captcha.php:
|
81 |
#, fuzzy
|
82 |
msgid "Enter secret key"
|
83 |
msgstr "Wprowadź klucz prywatny"
|
84 |
|
85 |
-
#: google-captcha.php:
|
86 |
msgid "Settings saved"
|
87 |
msgstr "Ustawienia zapisane"
|
88 |
|
89 |
-
#: google-captcha.php:
|
90 |
#, fuzzy
|
91 |
msgid "All plugin settings were restored"
|
92 |
msgstr "stronie ustawień wtyczki"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "Settings"
|
96 |
msgstr "Ustawienia"
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
#, fuzzy
|
100 |
msgid "Whitelist"
|
101 |
msgstr "Biały"
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Custom code"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid "Go PRO"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: google-captcha.php:
|
112 |
msgid ""
|
113 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
114 |
"version 1 features."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: google-captcha.php:
|
118 |
#, fuzzy, php-format
|
119 |
msgid ""
|
120 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -123,7 +135,7 @@ msgstr ""
|
|
123 |
"Jeżeli chcesz umieścić wtyczkę Google Captcha we własnym formularzu, po "
|
124 |
"prostu skopiuj i wklej ten kod w swoim poście lub na swojej stronie:"
|
125 |
|
126 |
-
#: google-captcha.php:
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -132,191 +144,184 @@ msgid ""
|
|
132 |
"your own form , please use the shortcode %s"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: google-captcha.php:
|
136 |
msgid "Authentication"
|
137 |
msgstr "Uwierzytelnianie"
|
138 |
|
139 |
-
#: google-captcha.php:
|
140 |
-
#,
|
141 |
-
msgid "
|
142 |
-
|
143 |
-
|
144 |
-
#: google-captcha.php:602
|
145 |
-
#, fuzzy
|
146 |
-
msgid "Enter site key and secret key, that you get after registration"
|
147 |
msgstr ""
|
148 |
-
"Wprowadź swój klucz publiczny i prywatny, uzyskane po dokonaniu rejestracji."
|
149 |
|
150 |
-
#: google-captcha.php:
|
151 |
msgid "Test Keys"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: google-captcha.php:
|
155 |
msgid "Options"
|
156 |
msgstr "Opcje"
|
157 |
|
158 |
-
#: google-captcha.php:
|
159 |
msgid "Enable reCAPTCHA for"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: google-captcha.php:
|
163 |
msgid "WordPress default"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: google-captcha.php:
|
167 |
msgid "This option is available only for network or for main blog"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: google-captcha.php:
|
171 |
#, fuzzy
|
172 |
msgid "Plugins"
|
173 |
msgstr "Strona Wtyczki"
|
174 |
|
175 |
-
#: google-captcha.php:
|
|
|
176 |
#, php-format
|
177 |
msgid "You should %s to use this functionality"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: google-captcha.php:
|
181 |
#, fuzzy
|
182 |
msgid "activate"
|
183 |
msgstr "Motyw aktywny"
|
184 |
|
185 |
-
#: google-captcha.php:
|
186 |
msgid "for network"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: google-captcha.php:
|
190 |
msgid "download"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: google-captcha.php:
|
194 |
msgid "Check off for adding captcha to forms on their settings pages"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: google-captcha.php:
|
198 |
#, php-format
|
199 |
msgid ""
|
200 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: google-captcha.php:
|
204 |
msgid "FAQ"
|
205 |
msgstr "FAQ"
|
206 |
|
207 |
-
#: google-captcha.php:
|
208 |
-
msgid "Hide reCAPTCHA in Comments
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: google-captcha.php:
|
212 |
#, fuzzy
|
213 |
-
msgid "Whitelist
|
214 |
msgstr "Uwierzytelnianie"
|
215 |
|
216 |
-
#: google-captcha.php:
|
217 |
msgid ""
|
218 |
-
"This message will be displayed instead of the reCAPTCHA
|
219 |
"added to the whitelist"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: google-captcha.php:
|
223 |
-
msgid "reCAPTCHA
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: google-captcha.php:
|
227 |
-
|
228 |
-
|
|
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: google-captcha.php:
|
232 |
-
msgid "reCAPTCHA
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: google-captcha.php:
|
236 |
msgid "for version"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: google-captcha.php:
|
240 |
msgid "Save Changes"
|
241 |
msgstr "Zapisz zmiany"
|
242 |
|
243 |
-
#: google-captcha.php:
|
244 |
msgid "To use Google Captcha you must get the keys from"
|
245 |
msgstr "Aby korzystać z Google Captcha, musisz najpierw uzyskać klucze"
|
246 |
|
247 |
-
#: google-captcha.php:
|
248 |
msgid "here"
|
249 |
msgstr "stąd"
|
250 |
|
251 |
-
#: google-captcha.php:
|
252 |
msgid "and enter them on the"
|
253 |
msgstr "i wprowadzić je na"
|
254 |
|
255 |
-
#: google-captcha.php:
|
256 |
msgid "plugin setting page"
|
257 |
msgstr "stronie ustawień wtyczki"
|
258 |
|
259 |
-
#: google-captcha.php:
|
260 |
-
msgid "
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: google-captcha.php:
|
264 |
-
|
265 |
-
|
266 |
-
msgid "You have entered an incorrect reCAPTCHA value"
|
267 |
-
msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
|
268 |
|
269 |
-
#: google-captcha.php:
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: google-captcha.php:
|
274 |
#, fuzzy
|
275 |
-
msgid ""
|
276 |
-
"
|
277 |
-
"browser, and try again."
|
278 |
-
msgstr ""
|
279 |
-
"Błąd: wprowadzono nieprawidłowy kod CAPTCHA. Kliknij przycisk WSTECZ na "
|
280 |
-
"pasku przeglądarki i spróbuj ponownie."
|
281 |
|
282 |
-
#: google-captcha.php:
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: google-captcha.php:
|
287 |
-
msgid "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: google-captcha.php:
|
291 |
-
|
292 |
-
|
|
|
293 |
|
294 |
-
#: google-captcha.php:
|
295 |
-
msgid "
|
|
|
|
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: google-captcha.php:
|
299 |
-
|
|
|
300 |
msgstr ""
|
|
|
|
|
301 |
|
302 |
-
#: google-captcha.php:
|
303 |
-
msgid "
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: google-captcha.php:
|
307 |
-
|
308 |
-
msgid "and enter it again"
|
309 |
-
msgstr "i wprowadzić je na"
|
310 |
-
|
311 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
312 |
-
msgid "The user response is invalid"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: google-captcha.php:
|
316 |
msgid "The verification is successfully completed"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: google-captcha.php:
|
320 |
msgid "Support"
|
321 |
msgstr "Wsparcie"
|
322 |
|
@@ -341,7 +346,7 @@ msgstr ""
|
|
341 |
msgid "Save IP to the whitelist"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
345 |
msgid "Allowed formats"
|
346 |
msgstr ""
|
347 |
|
@@ -414,66 +419,76 @@ msgstr ""
|
|
414 |
msgid "Close"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: includes/pro_banners.php:
|
418 |
-
msgid "
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: includes/pro_banners.php:30
|
422 |
-
msgid "Learn More"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/pro_banners.php:
|
426 |
msgid "Reason"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/pro_banners.php:
|
430 |
msgid "Allowed separators for IPs: a comma"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/pro_banners.php:
|
434 |
msgid "semicolon"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/pro_banners.php:
|
438 |
msgid "ordinary space, tab, new line or carriage return"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/pro_banners.php:
|
442 |
msgid "Allowed separators for reasons: a comma"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/pro_banners.php:
|
446 |
msgid "tab, new line or carriage return"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: includes/pro_banners.php:
|
450 |
msgid "Normal"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: includes/pro_banners.php:
|
454 |
msgid "Compact"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: includes/pro_banners.php:
|
458 |
-
msgid "reCAPTCHA
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/pro_banners.php:
|
462 |
msgid "Use the current site language"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: includes/pro_banners.php:
|
466 |
msgid "Using"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: includes/pro_banners.php:
|
470 |
-
msgid "reCAPTCHA
|
471 |
msgstr ""
|
472 |
|
473 |
#, fuzzy
|
474 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
|
|
|
|
|
|
|
|
475 |
#~ msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
|
476 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
#~ msgid "powered by"
|
478 |
#~ msgstr "opracowany przez"
|
479 |
|
@@ -529,9 +544,6 @@ msgstr ""
|
|
529 |
#~ msgid "Public Key"
|
530 |
#~ msgstr "Klucz publiczny"
|
531 |
|
532 |
-
#~ msgid "Private Key"
|
533 |
-
#~ msgstr "Klucz prywatny"
|
534 |
-
|
535 |
#~ msgid "Enter public key"
|
536 |
#~ msgstr "Wprowadź klucz publiczny"
|
537 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:00+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
18 |
"|| n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: google-captcha.php:34 google-captcha.php:602
|
22 |
msgid "Google Captcha Settings"
|
23 |
msgstr "Ustawienia Google Captcha"
|
24 |
|
25 |
+
#: google-captcha.php:254
|
26 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: google-captcha.php:255
|
30 |
msgid ""
|
31 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
32 |
+
"reload this page."
|
|
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: google-captcha.php:275
|
36 |
+
msgid "Warning"
|
37 |
+
msgstr ""
|
|
|
38 |
|
39 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
40 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
41 |
+
msgid "Error"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: google-captcha.php:377
|
45 |
+
msgid "You are in the whitelist"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: google-captcha.php:506
|
49 |
+
#, fuzzy
|
50 |
+
msgid "Site Key"
|
51 |
+
msgstr "Klucz prywatny"
|
52 |
+
|
53 |
+
#: google-captcha.php:511
|
54 |
msgid "Secret Key"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: google-captcha.php:518 google-captcha.php:519
|
58 |
+
msgid "Version"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: google-captcha.php:520
|
62 |
+
msgid "Invisible reCAPTCHA"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: google-captcha.php:525
|
66 |
msgid "Login form"
|
67 |
msgstr "Formularz logowania"
|
68 |
|
69 |
+
#: google-captcha.php:526
|
70 |
msgid "Registration form"
|
71 |
msgstr "Formularz rejestracji"
|
72 |
|
73 |
+
#: google-captcha.php:527
|
74 |
msgid "Reset password form"
|
75 |
msgstr "Formularz odzyskiwania hasła"
|
76 |
|
77 |
+
#: google-captcha.php:528
|
78 |
msgid "Comments form"
|
79 |
msgstr "Formularz komentarza"
|
80 |
|
81 |
+
#: google-captcha.php:547
|
82 |
#, fuzzy
|
83 |
msgid "Enter site key"
|
84 |
msgstr "Wprowadź klucz prywatny"
|
85 |
|
86 |
+
#: google-captcha.php:548 google-captcha.php:554
|
87 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
88 |
msgstr ""
|
89 |
"OSTRZEŻENIE: Kod captcha nie będzie wyświetlany, jeżeli nie wprowadzisz "
|
90 |
"kluczy."
|
91 |
|
92 |
+
#: google-captcha.php:553
|
93 |
#, fuzzy
|
94 |
msgid "Enter secret key"
|
95 |
msgstr "Wprowadź klucz prywatny"
|
96 |
|
97 |
+
#: google-captcha.php:581
|
98 |
msgid "Settings saved"
|
99 |
msgstr "Ustawienia zapisane"
|
100 |
|
101 |
+
#: google-captcha.php:587
|
102 |
#, fuzzy
|
103 |
msgid "All plugin settings were restored"
|
104 |
msgstr "stronie ustawień wtyczki"
|
105 |
|
106 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
107 |
msgid "Settings"
|
108 |
msgstr "Ustawienia"
|
109 |
|
110 |
+
#: google-captcha.php:605
|
111 |
#, fuzzy
|
112 |
msgid "Whitelist"
|
113 |
msgstr "Biały"
|
114 |
|
115 |
+
#: google-captcha.php:606
|
116 |
msgid "Custom code"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: google-captcha.php:607
|
120 |
msgid "Go PRO"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: google-captcha.php:612
|
124 |
msgid ""
|
125 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
126 |
"version 1 features."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: google-captcha.php:627
|
130 |
#, fuzzy, php-format
|
131 |
msgid ""
|
132 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
135 |
"Jeżeli chcesz umieścić wtyczkę Google Captcha we własnym formularzu, po "
|
136 |
"prostu skopiuj i wklej ten kod w swoim poście lub na swojej stronie:"
|
137 |
|
138 |
+
#: google-captcha.php:631
|
139 |
#, php-format
|
140 |
msgid ""
|
141 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
144 |
"your own form , please use the shortcode %s"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: google-captcha.php:637
|
148 |
msgid "Authentication"
|
149 |
msgstr "Uwierzytelnianie"
|
150 |
|
151 |
+
#: google-captcha.php:638
|
152 |
+
#, php-format
|
153 |
+
msgid ""
|
154 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
155 |
+
"your API keys %shere%s"
|
|
|
|
|
|
|
156 |
msgstr ""
|
|
|
157 |
|
158 |
+
#: google-captcha.php:653
|
159 |
msgid "Test Keys"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: google-captcha.php:656
|
163 |
msgid "Options"
|
164 |
msgstr "Opcje"
|
165 |
|
166 |
+
#: google-captcha.php:659
|
167 |
msgid "Enable reCAPTCHA for"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: google-captcha.php:663
|
171 |
msgid "WordPress default"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: google-captcha.php:672
|
175 |
msgid "This option is available only for network or for main blog"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: google-captcha.php:681
|
179 |
#, fuzzy
|
180 |
msgid "Plugins"
|
181 |
msgstr "Strona Wtyczki"
|
182 |
|
183 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
184 |
+
#: google-captcha.php:729
|
185 |
#, php-format
|
186 |
msgid "You should %s to use this functionality"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: google-captcha.php:690 google-captcha.php:725
|
190 |
#, fuzzy
|
191 |
msgid "activate"
|
192 |
msgstr "Motyw aktywny"
|
193 |
|
194 |
+
#: google-captcha.php:690 google-captcha.php:725
|
195 |
msgid "for network"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: google-captcha.php:695 google-captcha.php:730
|
199 |
msgid "download"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: google-captcha.php:699
|
203 |
msgid "Check off for adding captcha to forms on their settings pages"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: google-captcha.php:742
|
207 |
#, php-format
|
208 |
msgid ""
|
209 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
213 |
msgid "FAQ"
|
214 |
msgstr "FAQ"
|
215 |
|
216 |
+
#: google-captcha.php:747
|
217 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: google-captcha.php:759
|
221 |
#, fuzzy
|
222 |
+
msgid "Whitelist Notification"
|
223 |
msgstr "Uwierzytelnianie"
|
224 |
|
225 |
+
#: google-captcha.php:763
|
226 |
msgid ""
|
227 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
228 |
"added to the whitelist"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: google-captcha.php:769
|
232 |
+
msgid "reCAPTCHA Version"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: google-captcha.php:779
|
236 |
+
msgid ""
|
237 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
238 |
+
"ones will have to pass the captcha"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: google-captcha.php:787 google-captcha.php:800
|
242 |
+
msgid "reCAPTCHA Theme"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
246 |
msgid "for version"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: google-captcha.php:813
|
250 |
msgid "Save Changes"
|
251 |
msgstr "Zapisz zmiany"
|
252 |
|
253 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
254 |
msgid "To use Google Captcha you must get the keys from"
|
255 |
msgstr "Aby korzystać z Google Captcha, musisz najpierw uzyskać klucze"
|
256 |
|
257 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
258 |
msgid "here"
|
259 |
msgstr "stąd"
|
260 |
|
261 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
262 |
msgid "and enter them on the"
|
263 |
msgstr "i wprowadzić je na"
|
264 |
|
265 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
266 |
msgid "plugin setting page"
|
267 |
msgstr "stronie ustawień wtyczki"
|
268 |
|
269 |
+
#: google-captcha.php:1082
|
270 |
+
msgid "User response is missing."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
274 |
+
msgid "Secret Key is invalid"
|
275 |
+
msgstr ""
|
|
|
|
|
276 |
|
277 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
278 |
+
msgid "Check your domain configuration"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
282 |
#, fuzzy
|
283 |
+
msgid "and enter it again"
|
284 |
+
msgstr "i wprowadzić je na"
|
|
|
|
|
|
|
|
|
285 |
|
286 |
+
#: google-captcha.php:1091
|
287 |
+
msgid "Secret Key is missing."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: google-captcha.php:1098
|
291 |
+
msgid "User response is invalid"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: google-captcha.php:1099
|
295 |
+
#, fuzzy
|
296 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
297 |
+
msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
|
298 |
|
299 |
+
#: google-captcha.php:1100
|
300 |
+
msgid ""
|
301 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
302 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: google-captcha.php:1246
|
306 |
+
#, fuzzy
|
307 |
+
msgid "Click the BACK button on your browser, and try again."
|
308 |
msgstr ""
|
309 |
+
"Błąd: wprowadzono nieprawidłowy kod CAPTCHA. Kliknij przycisk WSTECZ na "
|
310 |
+
"pasku przeglądarki i spróbuj ponownie."
|
311 |
|
312 |
+
#: google-captcha.php:1291
|
313 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: google-captcha.php:1295
|
317 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: google-captcha.php:1316
|
321 |
msgid "The verification is successfully completed"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: google-captcha.php:1357
|
325 |
msgid "Support"
|
326 |
msgstr "Wsparcie"
|
327 |
|
346 |
msgid "Save IP to the whitelist"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
350 |
msgid "Allowed formats"
|
351 |
msgstr ""
|
352 |
|
419 |
msgid "Close"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/pro_banners.php:29
|
423 |
+
msgid "Upgrade to Pro"
|
|
|
|
|
|
|
|
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/pro_banners.php:42
|
427 |
msgid "Reason"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: includes/pro_banners.php:45
|
431 |
msgid "Allowed separators for IPs: a comma"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
435 |
msgid "semicolon"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: includes/pro_banners.php:45
|
439 |
msgid "ordinary space, tab, new line or carriage return"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/pro_banners.php:46
|
443 |
msgid "Allowed separators for reasons: a comma"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: includes/pro_banners.php:46
|
447 |
msgid "tab, new line or carriage return"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: includes/pro_banners.php:71
|
451 |
msgid "Normal"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/pro_banners.php:72
|
455 |
msgid "Compact"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: includes/pro_banners.php:76
|
459 |
+
msgid "reCAPTCHA Language"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: includes/pro_banners.php:83
|
463 |
msgid "Use the current site language"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: includes/pro_banners.php:83
|
467 |
msgid "Using"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/pro_banners.php:89
|
471 |
+
msgid "reCAPTCHA Size"
|
472 |
msgstr ""
|
473 |
|
474 |
#, fuzzy
|
475 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
476 |
+
#~ msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
|
477 |
+
|
478 |
+
#, fuzzy
|
479 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
480 |
#~ msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
|
481 |
|
482 |
+
#, fuzzy
|
483 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
484 |
+
#~ msgstr "Aby móc cokolwiek zrobić, musisz się zarejestrować %s tutaj %s"
|
485 |
+
|
486 |
+
#, fuzzy
|
487 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
488 |
+
#~ msgstr ""
|
489 |
+
#~ "Wprowadź swój klucz publiczny i prywatny, uzyskane po dokonaniu "
|
490 |
+
#~ "rejestracji."
|
491 |
+
|
492 |
#~ msgid "powered by"
|
493 |
#~ msgstr "opracowany przez"
|
494 |
|
544 |
#~ msgid "Public Key"
|
545 |
#~ msgstr "Klucz publiczny"
|
546 |
|
|
|
|
|
|
|
547 |
#~ msgid "Enter public key"
|
548 |
#~ msgstr "Wprowadź klucz publiczny"
|
549 |
|
languages/google-captcha-pt_BR.mo
CHANGED
Binary file
|
languages/google-captcha-pt_BR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Elton Peetz Prado <epeetz@gmail.com>\n"
|
@@ -17,103 +17,115 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-captcha.php:34 google-captcha.php:
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Configurações Google Captcha"
|
23 |
|
24 |
-
#: google-captcha.php:
|
25 |
-
msgid "
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: google-captcha.php:
|
29 |
msgid ""
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"blocks."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: google-captcha.php:
|
36 |
-
|
37 |
-
|
38 |
-
msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
|
39 |
|
40 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
41 |
msgid "You are in the whitelist"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: google-captcha.php:
|
45 |
#, fuzzy
|
46 |
-
msgid "Site
|
47 |
msgstr "URL do site"
|
48 |
|
49 |
-
#: google-captcha.php:
|
50 |
msgid "Secret Key"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
msgid "Login form"
|
55 |
msgstr "Formulário de login"
|
56 |
|
57 |
-
#: google-captcha.php:
|
58 |
msgid "Registration form"
|
59 |
msgstr "Formulário de registro"
|
60 |
|
61 |
-
#: google-captcha.php:
|
62 |
msgid "Reset password form"
|
63 |
msgstr "Formulário de alterar senha"
|
64 |
|
65 |
-
#: google-captcha.php:
|
66 |
msgid "Comments form"
|
67 |
msgstr "Fomulário de comentários"
|
68 |
|
69 |
-
#: google-captcha.php:
|
70 |
#, fuzzy
|
71 |
msgid "Enter site key"
|
72 |
msgstr "Digite a chave privada"
|
73 |
|
74 |
-
#: google-captcha.php:
|
75 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
76 |
msgstr ""
|
77 |
"AVISO: O captcha não será exibido enquanto você não preencher os campos-"
|
78 |
"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 |
msgid "Settings saved"
|
87 |
msgstr "Configurações salvas"
|
88 |
|
89 |
-
#: google-captcha.php:
|
90 |
#, fuzzy
|
91 |
msgid "All plugin settings were restored"
|
92 |
msgstr "página de configuração do plugin"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "Settings"
|
96 |
msgstr "Configurações"
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
msgid "Whitelist"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "Custom code"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: google-captcha.php:
|
107 |
msgid "Go PRO"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: google-captcha.php:
|
111 |
msgid ""
|
112 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
113 |
"version 1 features."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: google-captcha.php:
|
117 |
#, fuzzy, php-format
|
118 |
msgid ""
|
119 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -122,7 +134,7 @@ msgstr ""
|
|
122 |
"Se você quiser adicionar o Google Captcha para seu próprio formulário, basta "
|
123 |
"copiar e colar este shortcode para o seu post ou página:"
|
124 |
|
125 |
-
#: google-captcha.php:
|
126 |
#, php-format
|
127 |
msgid ""
|
128 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -131,195 +143,188 @@ msgid ""
|
|
131 |
"your own form , please use the shortcode %s"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
msgid "Authentication"
|
136 |
msgstr "Autenticação"
|
137 |
|
138 |
-
#: google-captcha.php:
|
139 |
-
#,
|
140 |
-
msgid "
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
#, fuzzy
|
145 |
-
msgid "Enter site key and secret key, that you get after registration"
|
146 |
-
msgstr "Digite as chaves públicas e privadas, que você recebe após o registro."
|
147 |
|
148 |
-
#: google-captcha.php:
|
149 |
msgid "Test Keys"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: google-captcha.php:
|
153 |
msgid "Options"
|
154 |
msgstr "Opções"
|
155 |
|
156 |
-
#: google-captcha.php:
|
157 |
msgid "Enable reCAPTCHA for"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: google-captcha.php:
|
161 |
#, fuzzy
|
162 |
msgid "WordPress default"
|
163 |
msgstr "Versão do WordPress"
|
164 |
|
165 |
-
#: google-captcha.php:
|
166 |
msgid "This option is available only for network or for main blog"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: google-captcha.php:
|
170 |
msgid "Plugins"
|
171 |
msgstr "Plugins"
|
172 |
|
173 |
-
#: google-captcha.php:
|
|
|
174 |
#, php-format
|
175 |
msgid "You should %s to use this functionality"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: google-captcha.php:
|
179 |
#, fuzzy
|
180 |
msgid "activate"
|
181 |
msgstr "Ativar"
|
182 |
|
183 |
-
#: google-captcha.php:
|
184 |
msgid "for network"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: google-captcha.php:
|
188 |
msgid "download"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: google-captcha.php:
|
192 |
msgid "Check off for adding captcha to forms on their settings pages"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: google-captcha.php:
|
196 |
#, php-format
|
197 |
msgid ""
|
198 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: google-captcha.php:
|
202 |
msgid "FAQ"
|
203 |
msgstr "FAQ"
|
204 |
|
205 |
-
#: google-captcha.php:
|
206 |
#, fuzzy
|
207 |
-
msgid "Hide reCAPTCHA in Comments
|
208 |
msgstr "Versão do PHP"
|
209 |
|
210 |
-
#: google-captcha.php:
|
211 |
#, fuzzy
|
212 |
-
msgid "Whitelist
|
213 |
msgstr "Autenticação"
|
214 |
|
215 |
-
#: google-captcha.php:
|
216 |
msgid ""
|
217 |
-
"This message will be displayed instead of the reCAPTCHA
|
218 |
"added to the whitelist"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: google-captcha.php:
|
222 |
#, fuzzy
|
223 |
-
msgid "reCAPTCHA
|
224 |
msgstr "Versão do PHP"
|
225 |
|
226 |
-
#: google-captcha.php:
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
msgstr "
|
231 |
|
232 |
-
#: google-captcha.php:
|
233 |
#, fuzzy
|
234 |
-
msgid "reCAPTCHA
|
235 |
msgstr "Versão do PHP"
|
236 |
|
237 |
-
#: google-captcha.php:
|
238 |
#, fuzzy
|
239 |
msgid "for version"
|
240 |
msgstr "Versão do PHP"
|
241 |
|
242 |
-
#: google-captcha.php:
|
243 |
msgid "Save Changes"
|
244 |
msgstr "Salvar alterações"
|
245 |
|
246 |
-
#: google-captcha.php:
|
247 |
msgid "To use Google Captcha you must get the keys from"
|
248 |
msgstr "Para usar o Google Captcha é necessário obter as chaves de"
|
249 |
|
250 |
-
#: google-captcha.php:
|
251 |
msgid "here"
|
252 |
msgstr "aqui"
|
253 |
|
254 |
-
#: google-captcha.php:
|
255 |
msgid "and enter them on the"
|
256 |
msgstr "e inserí-los no"
|
257 |
|
258 |
-
#: google-captcha.php:
|
259 |
msgid "plugin setting page"
|
260 |
msgstr "página de configuração do plugin"
|
261 |
|
262 |
-
#: google-captcha.php:
|
263 |
-
msgid "
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: google-captcha.php:
|
267 |
-
|
268 |
-
|
269 |
-
msgid "You have entered an incorrect reCAPTCHA value"
|
270 |
-
msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
|
271 |
|
272 |
-
#: google-captcha.php:
|
273 |
-
msgid "
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: google-captcha.php:
|
277 |
#, fuzzy
|
278 |
-
msgid ""
|
279 |
-
"
|
280 |
-
"browser, and try again."
|
281 |
-
msgstr ""
|
282 |
-
"Erro: Você digitou um CAPTCHA com valor incorreto. Clique no botão Voltar do "
|
283 |
-
"seu navegador e tente novamente."
|
284 |
|
285 |
-
#: google-captcha.php:
|
286 |
-
msgid "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: google-captcha.php:
|
290 |
-
msgid "
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: google-captcha.php:
|
294 |
-
|
295 |
-
|
|
|
296 |
|
297 |
-
#: google-captcha.php:
|
298 |
-
msgid "
|
|
|
|
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: google-captcha.php:
|
302 |
-
|
|
|
303 |
msgstr ""
|
|
|
|
|
304 |
|
305 |
-
#: google-captcha.php:
|
306 |
-
msgid "
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: google-captcha.php:
|
310 |
-
|
311 |
-
msgid "and enter it again"
|
312 |
-
msgstr "e inserí-los no"
|
313 |
-
|
314 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
315 |
-
msgid "The user response is invalid"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: google-captcha.php:
|
319 |
msgid "The verification is successfully completed"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: google-captcha.php:
|
323 |
msgid "Support"
|
324 |
msgstr "Suporte"
|
325 |
|
@@ -344,7 +349,7 @@ msgstr ""
|
|
344 |
msgid "Save IP to the whitelist"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
348 |
msgid "Allowed formats"
|
349 |
msgstr ""
|
350 |
|
@@ -417,68 +422,77 @@ msgstr ""
|
|
417 |
msgid "Close"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: includes/pro_banners.php:
|
421 |
-
msgid "
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#: includes/pro_banners.php:30
|
425 |
-
msgid "Learn More"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: includes/pro_banners.php:
|
429 |
msgid "Reason"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: includes/pro_banners.php:
|
433 |
msgid "Allowed separators for IPs: a comma"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: includes/pro_banners.php:
|
437 |
msgid "semicolon"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/pro_banners.php:
|
441 |
msgid "ordinary space, tab, new line or carriage return"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/pro_banners.php:
|
445 |
msgid "Allowed separators for reasons: a comma"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/pro_banners.php:
|
449 |
msgid "tab, new line or carriage return"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: includes/pro_banners.php:
|
453 |
msgid "Normal"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/pro_banners.php:
|
457 |
msgid "Compact"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: includes/pro_banners.php:
|
461 |
#, fuzzy
|
462 |
-
msgid "reCAPTCHA
|
463 |
msgstr "Versão do PHP"
|
464 |
|
465 |
-
#: includes/pro_banners.php:
|
466 |
msgid "Use the current site language"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: includes/pro_banners.php:
|
470 |
msgid "Using"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: includes/pro_banners.php:
|
474 |
#, fuzzy
|
475 |
-
msgid "reCAPTCHA
|
476 |
msgstr "Versão do PHP"
|
477 |
|
478 |
#, fuzzy
|
479 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
480 |
#~ msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
|
481 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
482 |
#, fuzzy
|
483 |
#~ msgid "Read more."
|
484 |
#~ msgstr "Saber mais"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:01+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Elton Peetz Prado <epeetz@gmail.com>\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-captcha.php:34 google-captcha.php:602
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "Configurações Google Captcha"
|
23 |
|
24 |
+
#: google-captcha.php:254
|
25 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: google-captcha.php:255
|
29 |
msgid ""
|
30 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
31 |
+
"reload this page."
|
|
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: google-captcha.php:275
|
35 |
+
msgid "Warning"
|
36 |
+
msgstr ""
|
|
|
37 |
|
38 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
39 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
40 |
+
msgid "Error"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: google-captcha.php:377
|
44 |
msgid "You are in the whitelist"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: google-captcha.php:506
|
48 |
#, fuzzy
|
49 |
+
msgid "Site Key"
|
50 |
msgstr "URL do site"
|
51 |
|
52 |
+
#: google-captcha.php:511
|
53 |
msgid "Secret Key"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: google-captcha.php:518 google-captcha.php:519
|
57 |
+
#, fuzzy
|
58 |
+
msgid "Version"
|
59 |
+
msgstr "Versão do PHP"
|
60 |
+
|
61 |
+
#: google-captcha.php:520
|
62 |
+
msgid "Invisible reCAPTCHA"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: google-captcha.php:525
|
66 |
msgid "Login form"
|
67 |
msgstr "Formulário de login"
|
68 |
|
69 |
+
#: google-captcha.php:526
|
70 |
msgid "Registration form"
|
71 |
msgstr "Formulário de registro"
|
72 |
|
73 |
+
#: google-captcha.php:527
|
74 |
msgid "Reset password form"
|
75 |
msgstr "Formulário de alterar senha"
|
76 |
|
77 |
+
#: google-captcha.php:528
|
78 |
msgid "Comments form"
|
79 |
msgstr "Fomulário de comentários"
|
80 |
|
81 |
+
#: google-captcha.php:547
|
82 |
#, fuzzy
|
83 |
msgid "Enter site key"
|
84 |
msgstr "Digite a chave privada"
|
85 |
|
86 |
+
#: google-captcha.php:548 google-captcha.php:554
|
87 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
88 |
msgstr ""
|
89 |
"AVISO: O captcha não será exibido enquanto você não preencher os campos-"
|
90 |
"chave."
|
91 |
|
92 |
+
#: google-captcha.php:553
|
93 |
#, fuzzy
|
94 |
msgid "Enter secret key"
|
95 |
msgstr "Digite a chave privada"
|
96 |
|
97 |
+
#: google-captcha.php:581
|
98 |
msgid "Settings saved"
|
99 |
msgstr "Configurações salvas"
|
100 |
|
101 |
+
#: google-captcha.php:587
|
102 |
#, fuzzy
|
103 |
msgid "All plugin settings were restored"
|
104 |
msgstr "página de configuração do plugin"
|
105 |
|
106 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
107 |
msgid "Settings"
|
108 |
msgstr "Configurações"
|
109 |
|
110 |
+
#: google-captcha.php:605
|
111 |
msgid "Whitelist"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: google-captcha.php:606
|
115 |
msgid "Custom code"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: google-captcha.php:607
|
119 |
msgid "Go PRO"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: google-captcha.php:612
|
123 |
msgid ""
|
124 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
125 |
"version 1 features."
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: google-captcha.php:627
|
129 |
#, fuzzy, php-format
|
130 |
msgid ""
|
131 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
134 |
"Se você quiser adicionar o Google Captcha para seu próprio formulário, basta "
|
135 |
"copiar e colar este shortcode para o seu post ou página:"
|
136 |
|
137 |
+
#: google-captcha.php:631
|
138 |
#, php-format
|
139 |
msgid ""
|
140 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
143 |
"your own form , please use the shortcode %s"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: google-captcha.php:637
|
147 |
msgid "Authentication"
|
148 |
msgstr "Autenticação"
|
149 |
|
150 |
+
#: google-captcha.php:638
|
151 |
+
#, php-format
|
152 |
+
msgid ""
|
153 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
154 |
+
"your API keys %shere%s"
|
155 |
+
msgstr ""
|
|
|
|
|
|
|
156 |
|
157 |
+
#: google-captcha.php:653
|
158 |
msgid "Test Keys"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: google-captcha.php:656
|
162 |
msgid "Options"
|
163 |
msgstr "Opções"
|
164 |
|
165 |
+
#: google-captcha.php:659
|
166 |
msgid "Enable reCAPTCHA for"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: google-captcha.php:663
|
170 |
#, fuzzy
|
171 |
msgid "WordPress default"
|
172 |
msgstr "Versão do WordPress"
|
173 |
|
174 |
+
#: google-captcha.php:672
|
175 |
msgid "This option is available only for network or for main blog"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: google-captcha.php:681
|
179 |
msgid "Plugins"
|
180 |
msgstr "Plugins"
|
181 |
|
182 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
183 |
+
#: google-captcha.php:729
|
184 |
#, php-format
|
185 |
msgid "You should %s to use this functionality"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: google-captcha.php:690 google-captcha.php:725
|
189 |
#, fuzzy
|
190 |
msgid "activate"
|
191 |
msgstr "Ativar"
|
192 |
|
193 |
+
#: google-captcha.php:690 google-captcha.php:725
|
194 |
msgid "for network"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: google-captcha.php:695 google-captcha.php:730
|
198 |
msgid "download"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: google-captcha.php:699
|
202 |
msgid "Check off for adding captcha to forms on their settings pages"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: google-captcha.php:742
|
206 |
#, php-format
|
207 |
msgid ""
|
208 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
212 |
msgid "FAQ"
|
213 |
msgstr "FAQ"
|
214 |
|
215 |
+
#: google-captcha.php:747
|
216 |
#, fuzzy
|
217 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
218 |
msgstr "Versão do PHP"
|
219 |
|
220 |
+
#: google-captcha.php:759
|
221 |
#, fuzzy
|
222 |
+
msgid "Whitelist Notification"
|
223 |
msgstr "Autenticação"
|
224 |
|
225 |
+
#: google-captcha.php:763
|
226 |
msgid ""
|
227 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
228 |
"added to the whitelist"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: google-captcha.php:769
|
232 |
#, fuzzy
|
233 |
+
msgid "reCAPTCHA Version"
|
234 |
msgstr "Versão do PHP"
|
235 |
|
236 |
+
#: google-captcha.php:779
|
237 |
+
msgid ""
|
238 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
239 |
+
"ones will have to pass the captcha"
|
240 |
+
msgstr ""
|
241 |
|
242 |
+
#: google-captcha.php:787 google-captcha.php:800
|
243 |
#, fuzzy
|
244 |
+
msgid "reCAPTCHA Theme"
|
245 |
msgstr "Versão do PHP"
|
246 |
|
247 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
248 |
#, fuzzy
|
249 |
msgid "for version"
|
250 |
msgstr "Versão do PHP"
|
251 |
|
252 |
+
#: google-captcha.php:813
|
253 |
msgid "Save Changes"
|
254 |
msgstr "Salvar alterações"
|
255 |
|
256 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
257 |
msgid "To use Google Captcha you must get the keys from"
|
258 |
msgstr "Para usar o Google Captcha é necessário obter as chaves de"
|
259 |
|
260 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
261 |
msgid "here"
|
262 |
msgstr "aqui"
|
263 |
|
264 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
265 |
msgid "and enter them on the"
|
266 |
msgstr "e inserí-los no"
|
267 |
|
268 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
269 |
msgid "plugin setting page"
|
270 |
msgstr "página de configuração do plugin"
|
271 |
|
272 |
+
#: google-captcha.php:1082
|
273 |
+
msgid "User response is missing."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
277 |
+
msgid "Secret Key is invalid"
|
278 |
+
msgstr ""
|
|
|
|
|
279 |
|
280 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
281 |
+
msgid "Check your domain configuration"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
285 |
#, fuzzy
|
286 |
+
msgid "and enter it again"
|
287 |
+
msgstr "e inserí-los no"
|
|
|
|
|
|
|
|
|
288 |
|
289 |
+
#: google-captcha.php:1091
|
290 |
+
msgid "Secret Key is missing."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: google-captcha.php:1098
|
294 |
+
msgid "User response is invalid"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: google-captcha.php:1099
|
298 |
+
#, fuzzy
|
299 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
300 |
+
msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
|
301 |
|
302 |
+
#: google-captcha.php:1100
|
303 |
+
msgid ""
|
304 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
305 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: google-captcha.php:1246
|
309 |
+
#, fuzzy
|
310 |
+
msgid "Click the BACK button on your browser, and try again."
|
311 |
msgstr ""
|
312 |
+
"Erro: Você digitou um CAPTCHA com valor incorreto. Clique no botão Voltar do "
|
313 |
+
"seu navegador e tente novamente."
|
314 |
|
315 |
+
#: google-captcha.php:1291
|
316 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: google-captcha.php:1295
|
320 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: google-captcha.php:1316
|
324 |
msgid "The verification is successfully completed"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: google-captcha.php:1357
|
328 |
msgid "Support"
|
329 |
msgstr "Suporte"
|
330 |
|
349 |
msgid "Save IP to the whitelist"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
353 |
msgid "Allowed formats"
|
354 |
msgstr ""
|
355 |
|
422 |
msgid "Close"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/pro_banners.php:29
|
426 |
+
msgid "Upgrade to Pro"
|
|
|
|
|
|
|
|
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/pro_banners.php:42
|
430 |
msgid "Reason"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/pro_banners.php:45
|
434 |
msgid "Allowed separators for IPs: a comma"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
438 |
msgid "semicolon"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/pro_banners.php:45
|
442 |
msgid "ordinary space, tab, new line or carriage return"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/pro_banners.php:46
|
446 |
msgid "Allowed separators for reasons: a comma"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/pro_banners.php:46
|
450 |
msgid "tab, new line or carriage return"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: includes/pro_banners.php:71
|
454 |
msgid "Normal"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/pro_banners.php:72
|
458 |
msgid "Compact"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/pro_banners.php:76
|
462 |
#, fuzzy
|
463 |
+
msgid "reCAPTCHA Language"
|
464 |
msgstr "Versão do PHP"
|
465 |
|
466 |
+
#: includes/pro_banners.php:83
|
467 |
msgid "Use the current site language"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/pro_banners.php:83
|
471 |
msgid "Using"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: includes/pro_banners.php:89
|
475 |
#, fuzzy
|
476 |
+
msgid "reCAPTCHA Size"
|
477 |
msgstr "Versão do PHP"
|
478 |
|
479 |
#, fuzzy
|
480 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
481 |
#~ msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
|
482 |
|
483 |
+
#, fuzzy
|
484 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
485 |
+
#~ msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
|
486 |
+
|
487 |
+
#, fuzzy
|
488 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
489 |
+
#~ msgstr "Antes de você fazer alguma coisa, deve se registrar %s aqui %s"
|
490 |
+
|
491 |
+
#, fuzzy
|
492 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
493 |
+
#~ msgstr ""
|
494 |
+
#~ "Digite as chaves públicas e privadas, que você recebe após o registro."
|
495 |
+
|
496 |
#, fuzzy
|
497 |
#~ msgid "Read more."
|
498 |
#~ msgstr "Saber mais"
|
languages/google-captcha-ru_RU.mo
CHANGED
Binary file
|
languages/google-captcha-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
@@ -16,95 +16,106 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-captcha.php:34 google-captcha.php:
|
20 |
msgid "Google Captcha Settings"
|
21 |
msgstr "Настройки Google Captcha"
|
22 |
|
23 |
-
#: google-captcha.php:
|
24 |
-
msgid "
|
25 |
-
msgstr "
|
26 |
|
27 |
-
#: google-captcha.php:
|
28 |
msgid ""
|
29 |
-
"
|
30 |
-
"
|
31 |
-
"blocks."
|
32 |
msgstr ""
|
33 |
-
"
|
34 |
-
"
|
35 |
-
"reCAPTCHA."
|
36 |
|
37 |
-
#: google-captcha.php:
|
38 |
-
msgid "
|
39 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
#: google-captcha.php:
|
42 |
msgid "You are in the whitelist"
|
43 |
msgstr "Вы в белом списке"
|
44 |
|
45 |
-
#: google-captcha.php:
|
46 |
-
msgid "Site
|
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 |
msgid "Enter site key"
|
71 |
-
msgstr "Введите ключ"
|
72 |
|
73 |
-
#: google-captcha.php:
|
74 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
75 |
msgstr ""
|
76 |
"ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
|
77 |
"ключевые поля."
|
78 |
|
79 |
-
#: google-captcha.php:
|
80 |
msgid "Enter secret key"
|
81 |
msgstr "Введите секретный ключ"
|
82 |
|
83 |
-
#: google-captcha.php:
|
84 |
msgid "Settings saved"
|
85 |
msgstr "Настройки сохранены"
|
86 |
|
87 |
-
#: google-captcha.php:
|
88 |
msgid "All plugin settings were restored"
|
89 |
msgstr "Настройки плагина были восстановлены"
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "Settings"
|
93 |
msgstr "Настройки"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "Whitelist"
|
97 |
msgstr "Белый список"
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "Custom code"
|
101 |
msgstr "Пользовательский код"
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Go PRO"
|
105 |
msgstr "Перейти на PRO версию"
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid ""
|
109 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
110 |
"version 1 features."
|
@@ -112,7 +123,7 @@ msgstr ""
|
|
112 |
"В связи с особенностями работы reCAPTCHA версии 1 на странице может "
|
113 |
"отображаться только одна reCAPTCHA."
|
114 |
|
115 |
-
#: google-captcha.php:
|
116 |
#, php-format
|
117 |
msgid ""
|
118 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -121,7 +132,7 @@ msgstr ""
|
|
121 |
"Если вы хотите добавить Google Captcha (reCAPTCHA) на вашу страницу или "
|
122 |
"пост, то используйте кнопку %s"
|
123 |
|
124 |
-
#: google-captcha.php:
|
125 |
#, php-format
|
126 |
msgid ""
|
127 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -134,67 +145,66 @@ msgstr ""
|
|
134 |
"кнопка не отображается или вы хотите добавить Google Captcha (reCAPTCHA) в "
|
135 |
"вашу собственную форму, пожалуйста, используйте шорткод %s"
|
136 |
|
137 |
-
#: google-captcha.php:
|
138 |
msgid "Authentication"
|
139 |
msgstr "Идентификация"
|
140 |
|
141 |
-
#: google-captcha.php:
|
142 |
#, php-format
|
143 |
-
msgid "
|
|
|
|
|
144 |
msgstr ""
|
145 |
-
"
|
146 |
-
"%sздесь%s"
|
147 |
|
148 |
-
#: google-captcha.php:
|
149 |
-
msgid "Enter site key and secret key, that you get after registration"
|
150 |
-
msgstr "Введите ключ и секретный ключ, которые вы получили после регистрации"
|
151 |
-
|
152 |
-
#: google-captcha.php:617
|
153 |
msgid "Test Keys"
|
154 |
msgstr "Тестирование ключей"
|
155 |
|
156 |
-
#: google-captcha.php:
|
157 |
msgid "Options"
|
158 |
msgstr "Опции"
|
159 |
|
160 |
-
#: google-captcha.php:
|
161 |
msgid "Enable reCAPTCHA for"
|
162 |
msgstr "Включить reCAPTCHA для"
|
163 |
|
164 |
-
#: google-captcha.php:
|
165 |
msgid "WordPress default"
|
166 |
msgstr "Стандартных форм WordPress"
|
167 |
|
168 |
-
#: google-captcha.php:
|
169 |
msgid "This option is available only for network or for main blog"
|
170 |
msgstr "Эта опция доступна только для сети или для основного блога"
|
171 |
|
172 |
-
#: google-captcha.php:
|
173 |
msgid "Plugins"
|
174 |
msgstr "Плагинов"
|
175 |
|
176 |
-
#: google-captcha.php:
|
|
|
177 |
#, php-format
|
178 |
msgid "You should %s to use this functionality"
|
179 |
msgstr "Чтобы использовать этот функционал %s"
|
180 |
|
181 |
-
#: google-captcha.php:
|
182 |
msgid "activate"
|
183 |
msgstr "активируйте"
|
184 |
|
185 |
-
#: google-captcha.php:
|
186 |
msgid "for network"
|
187 |
msgstr "для сети"
|
188 |
|
189 |
-
#: google-captcha.php:
|
190 |
msgid "download"
|
191 |
msgstr "загрузить"
|
192 |
|
193 |
-
#: google-captcha.php:
|
194 |
msgid "Check off for adding captcha to forms on their settings pages"
|
195 |
msgstr "Выключите для добавления капчи к формам на страницах их настроек"
|
196 |
|
197 |
-
#: google-captcha.php:
|
198 |
#, php-format
|
199 |
msgid ""
|
200 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
@@ -202,121 +212,120 @@ msgstr ""
|
|
202 |
"Если вы хотите добавить Google Captcha (reCAPTCHA) в кастомную форму, "
|
203 |
"смотрите %s"
|
204 |
|
205 |
-
#: google-captcha.php:
|
206 |
msgid "FAQ"
|
207 |
msgstr "FAQ"
|
208 |
|
209 |
-
#: google-captcha.php:
|
210 |
-
msgid "Hide reCAPTCHA in Comments
|
211 |
msgstr "Скрыть reCAPTCHA в Форма комментариев для"
|
212 |
|
213 |
-
#: google-captcha.php:
|
214 |
-
msgid "Whitelist
|
215 |
msgstr "Уведомление о нахождении в белом списке"
|
216 |
|
217 |
-
#: google-captcha.php:
|
218 |
msgid ""
|
219 |
-
"This message will be displayed instead of the reCAPTCHA
|
220 |
"added to the whitelist"
|
221 |
msgstr ""
|
222 |
"Указанное сообщение будет отображаться вместо reCAPTCHA для IP адресов из "
|
223 |
"белого списка"
|
224 |
|
225 |
-
#: google-captcha.php:
|
226 |
-
msgid "reCAPTCHA
|
227 |
msgstr "Версия reCAPTCHA"
|
228 |
|
229 |
-
#: google-captcha.php:
|
230 |
-
|
231 |
-
|
232 |
-
|
|
|
|
|
|
|
|
|
233 |
|
234 |
-
#: google-captcha.php:
|
235 |
-
msgid "reCAPTCHA
|
236 |
msgstr "Тема reCAPTCHA"
|
237 |
|
238 |
-
#: google-captcha.php:
|
239 |
msgid "for version"
|
240 |
msgstr "для версии"
|
241 |
|
242 |
-
#: google-captcha.php:
|
243 |
msgid "Save Changes"
|
244 |
msgstr "Сохранить изменения"
|
245 |
|
246 |
-
#: google-captcha.php:
|
247 |
msgid "To use Google Captcha you must get the keys from"
|
248 |
msgstr "Чтобы использовать Google Captcha вам необходимо получить ключи"
|
249 |
|
250 |
-
#: google-captcha.php:
|
251 |
msgid "here"
|
252 |
msgstr "здесь"
|
253 |
|
254 |
-
#: google-captcha.php:
|
255 |
msgid "and enter them on the"
|
256 |
msgstr "и вставить их на"
|
257 |
|
258 |
-
#: google-captcha.php:
|
259 |
msgid "plugin setting page"
|
260 |
msgstr "страницу настроек плагина"
|
261 |
|
262 |
-
#: google-captcha.php:
|
263 |
-
msgid "
|
264 |
-
msgstr "
|
|
|
|
|
|
|
|
|
265 |
|
266 |
-
#: google-captcha.php:
|
267 |
-
|
268 |
-
|
269 |
-
msgstr "Вы ввели неверное значение reCAPTCHA."
|
270 |
|
271 |
-
#: google-captcha.php:
|
272 |
-
msgid "
|
273 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
|
275 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
276 |
msgid ""
|
277 |
-
"
|
278 |
-
"
|
279 |
msgstr ""
|
280 |
-
"
|
281 |
-
"
|
|
|
|
|
|
|
|
|
282 |
|
283 |
-
#: google-captcha.php:
|
284 |
msgid "Please, complete the captcha and submit \"Test verification\""
|
285 |
msgstr "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\""
|
286 |
|
287 |
-
#: google-captcha.php:
|
288 |
msgid "Test verification"
|
289 |
msgstr "Тестирование проверки"
|
290 |
|
291 |
-
#: google-captcha.php:
|
292 |
-
msgid "The user response was missing"
|
293 |
-
msgstr "Ответ пользователя отсутствует"
|
294 |
-
|
295 |
-
#: google-captcha.php:1192
|
296 |
-
msgid "The Secret Key is missing"
|
297 |
-
msgstr "Секретный ключ отсутствует"
|
298 |
-
|
299 |
-
#: google-captcha.php:1195 google-captcha.php:1204
|
300 |
-
msgid "The Secret Key is invalid"
|
301 |
-
msgstr "Секретный ключ некорректный"
|
302 |
-
|
303 |
-
#: google-captcha.php:1196 google-captcha.php:1205
|
304 |
-
msgid "Check your domain configuration"
|
305 |
-
msgstr "Проверьте настройки вашего домена"
|
306 |
-
|
307 |
-
#: google-captcha.php:1197 google-captcha.php:1206
|
308 |
-
msgid "and enter it again"
|
309 |
-
msgstr "и введите его снова"
|
310 |
-
|
311 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
312 |
-
msgid "The user response is invalid"
|
313 |
-
msgstr "Некорректный ответ пользователя"
|
314 |
-
|
315 |
-
#: google-captcha.php:1217
|
316 |
msgid "The verification is successfully completed"
|
317 |
msgstr "Проверка завершена успешно"
|
318 |
|
319 |
-
#: google-captcha.php:
|
320 |
msgid "Support"
|
321 |
msgstr "Поддержка"
|
322 |
|
@@ -340,7 +349,7 @@ msgstr "Мой IP"
|
|
340 |
msgid "Save IP to the whitelist"
|
341 |
msgstr "Сохранить IP в белый список"
|
342 |
|
343 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
344 |
msgid "Allowed formats"
|
345 |
msgstr "Доступные форматы"
|
346 |
|
@@ -413,64 +422,81 @@ msgstr "Эта опция доступна в Pro версии плагина"
|
|
413 |
msgid "Close"
|
414 |
msgstr "Закрыть"
|
415 |
|
416 |
-
#: includes/pro_banners.php:
|
417 |
-
msgid "
|
418 |
-
msgstr "
|
419 |
-
|
420 |
-
#: includes/pro_banners.php:30
|
421 |
-
msgid "Learn More"
|
422 |
-
msgstr "Подробнее"
|
423 |
|
424 |
-
#: includes/pro_banners.php:
|
425 |
msgid "Reason"
|
426 |
msgstr "Причина"
|
427 |
|
428 |
-
#: includes/pro_banners.php:
|
429 |
msgid "Allowed separators for IPs: a comma"
|
430 |
msgstr "Доступные разделители для IP-адресов: запятая"
|
431 |
|
432 |
-
#: includes/pro_banners.php:
|
433 |
msgid "semicolon"
|
434 |
msgstr "точка с запятой"
|
435 |
|
436 |
-
#: includes/pro_banners.php:
|
437 |
msgid "ordinary space, tab, new line or carriage return"
|
438 |
msgstr "обычный пробел, табуляция или новая строка"
|
439 |
|
440 |
-
#: includes/pro_banners.php:
|
441 |
msgid "Allowed separators for reasons: a comma"
|
442 |
msgstr "Доступные разделители для причин: запятая"
|
443 |
|
444 |
-
#: includes/pro_banners.php:
|
445 |
msgid "tab, new line or carriage return"
|
446 |
msgstr "табуляция или новая строка"
|
447 |
|
448 |
-
#: includes/pro_banners.php:
|
449 |
msgid "Normal"
|
450 |
msgstr "Нормальный"
|
451 |
|
452 |
-
#: includes/pro_banners.php:
|
453 |
msgid "Compact"
|
454 |
msgstr "Компактный"
|
455 |
|
456 |
-
#: includes/pro_banners.php:
|
457 |
-
msgid "reCAPTCHA
|
458 |
msgstr "Язык reCAPTCHA"
|
459 |
|
460 |
-
#: includes/pro_banners.php:
|
461 |
msgid "Use the current site language"
|
462 |
msgstr "Использовать текущий язык сайта"
|
463 |
|
464 |
-
#: includes/pro_banners.php:
|
465 |
msgid "Using"
|
466 |
msgstr "Используя"
|
467 |
|
468 |
-
#: includes/pro_banners.php:
|
469 |
-
msgid "reCAPTCHA
|
470 |
msgstr "Размер reCAPTCHA"
|
471 |
|
472 |
-
#~ msgid "
|
473 |
-
#~ msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
474 |
|
475 |
#~ msgid ""
|
476 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
@@ -500,9 +526,6 @@ msgstr "Размер reCAPTCHA"
|
|
500 |
#~ msgid "Download"
|
501 |
#~ msgstr "Скачать"
|
502 |
|
503 |
-
#~ msgid "Enable CAPTCHA"
|
504 |
-
#~ msgstr "Включить CAPTCHA"
|
505 |
-
|
506 |
#~ msgid "You should"
|
507 |
#~ msgstr "Вам нужно"
|
508 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 17:59+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-captcha.php:34 google-captcha.php:602
|
20 |
msgid "Google Captcha Settings"
|
21 |
msgstr "Настройки Google Captcha"
|
22 |
|
23 |
+
#: google-captcha.php:254
|
24 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
25 |
+
msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
|
26 |
|
27 |
+
#: google-captcha.php:255
|
28 |
msgid ""
|
29 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
30 |
+
"reload this page."
|
|
|
31 |
msgstr ""
|
32 |
+
"Не удалось загрузить Google reCAPTCHA. Проверьте Ваше подключение к сети "
|
33 |
+
"Интернет и перезагрузите эту страницу."
|
|
|
34 |
|
35 |
+
#: google-captcha.php:275
|
36 |
+
msgid "Warning"
|
37 |
+
msgstr "Внимание"
|
38 |
+
|
39 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
40 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
41 |
+
msgid "Error"
|
42 |
+
msgstr "Ошибка"
|
43 |
|
44 |
+
#: google-captcha.php:377
|
45 |
msgid "You are in the whitelist"
|
46 |
msgstr "Вы в белом списке"
|
47 |
|
48 |
+
#: google-captcha.php:506
|
49 |
+
msgid "Site Key"
|
50 |
+
msgstr "Ключ сайта"
|
51 |
|
52 |
+
#: google-captcha.php:511
|
53 |
msgid "Secret Key"
|
54 |
msgstr "Секретный ключ"
|
55 |
|
56 |
+
#: google-captcha.php:518 google-captcha.php:519
|
57 |
+
msgid "Version"
|
58 |
+
msgstr "Версия"
|
59 |
+
|
60 |
+
#: google-captcha.php:520
|
61 |
+
msgid "Invisible reCAPTCHA"
|
62 |
+
msgstr "Невидимая reCAPTCHA"
|
63 |
+
|
64 |
+
#: google-captcha.php:525
|
65 |
msgid "Login form"
|
66 |
msgstr "Форма логина"
|
67 |
|
68 |
+
#: google-captcha.php:526
|
69 |
msgid "Registration form"
|
70 |
msgstr "Форма регистрации"
|
71 |
|
72 |
+
#: google-captcha.php:527
|
73 |
msgid "Reset password form"
|
74 |
msgstr "Форма восстановления пароля"
|
75 |
|
76 |
+
#: google-captcha.php:528
|
77 |
msgid "Comments form"
|
78 |
msgstr "Форма комментариев"
|
79 |
|
80 |
+
#: google-captcha.php:547
|
81 |
msgid "Enter site key"
|
82 |
+
msgstr "Введите ключ сайта"
|
83 |
|
84 |
+
#: google-captcha.php:548 google-captcha.php:554
|
85 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
86 |
msgstr ""
|
87 |
"ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
|
88 |
"ключевые поля."
|
89 |
|
90 |
+
#: google-captcha.php:553
|
91 |
msgid "Enter secret key"
|
92 |
msgstr "Введите секретный ключ"
|
93 |
|
94 |
+
#: google-captcha.php:581
|
95 |
msgid "Settings saved"
|
96 |
msgstr "Настройки сохранены"
|
97 |
|
98 |
+
#: google-captcha.php:587
|
99 |
msgid "All plugin settings were restored"
|
100 |
msgstr "Настройки плагина были восстановлены"
|
101 |
|
102 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
103 |
msgid "Settings"
|
104 |
msgstr "Настройки"
|
105 |
|
106 |
+
#: google-captcha.php:605
|
107 |
msgid "Whitelist"
|
108 |
msgstr "Белый список"
|
109 |
|
110 |
+
#: google-captcha.php:606
|
111 |
msgid "Custom code"
|
112 |
msgstr "Пользовательский код"
|
113 |
|
114 |
+
#: google-captcha.php:607
|
115 |
msgid "Go PRO"
|
116 |
msgstr "Перейти на PRO версию"
|
117 |
|
118 |
+
#: google-captcha.php:612
|
119 |
msgid ""
|
120 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
121 |
"version 1 features."
|
123 |
"В связи с особенностями работы reCAPTCHA версии 1 на странице может "
|
124 |
"отображаться только одна reCAPTCHA."
|
125 |
|
126 |
+
#: google-captcha.php:627
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
132 |
"Если вы хотите добавить Google Captcha (reCAPTCHA) на вашу страницу или "
|
133 |
"пост, то используйте кнопку %s"
|
134 |
|
135 |
+
#: google-captcha.php:631
|
136 |
#, php-format
|
137 |
msgid ""
|
138 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
145 |
"кнопка не отображается или вы хотите добавить Google Captcha (reCAPTCHA) в "
|
146 |
"вашу собственную форму, пожалуйста, используйте шорткод %s"
|
147 |
|
148 |
+
#: google-captcha.php:637
|
149 |
msgid "Authentication"
|
150 |
msgstr "Идентификация"
|
151 |
|
152 |
+
#: google-captcha.php:638
|
153 |
#, php-format
|
154 |
+
msgid ""
|
155 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
156 |
+
"your API keys %shere%s"
|
157 |
msgstr ""
|
158 |
+
"Для использования reCAPTCHA, пожалуйста введите ключ сайта и секретный ключ. "
|
159 |
+
"Вы можете управлять своими API ключами %sздесь%s"
|
160 |
|
161 |
+
#: google-captcha.php:653
|
|
|
|
|
|
|
|
|
162 |
msgid "Test Keys"
|
163 |
msgstr "Тестирование ключей"
|
164 |
|
165 |
+
#: google-captcha.php:656
|
166 |
msgid "Options"
|
167 |
msgstr "Опции"
|
168 |
|
169 |
+
#: google-captcha.php:659
|
170 |
msgid "Enable reCAPTCHA for"
|
171 |
msgstr "Включить reCAPTCHA для"
|
172 |
|
173 |
+
#: google-captcha.php:663
|
174 |
msgid "WordPress default"
|
175 |
msgstr "Стандартных форм WordPress"
|
176 |
|
177 |
+
#: google-captcha.php:672
|
178 |
msgid "This option is available only for network or for main blog"
|
179 |
msgstr "Эта опция доступна только для сети или для основного блога"
|
180 |
|
181 |
+
#: google-captcha.php:681
|
182 |
msgid "Plugins"
|
183 |
msgstr "Плагинов"
|
184 |
|
185 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
186 |
+
#: google-captcha.php:729
|
187 |
#, php-format
|
188 |
msgid "You should %s to use this functionality"
|
189 |
msgstr "Чтобы использовать этот функционал %s"
|
190 |
|
191 |
+
#: google-captcha.php:690 google-captcha.php:725
|
192 |
msgid "activate"
|
193 |
msgstr "активируйте"
|
194 |
|
195 |
+
#: google-captcha.php:690 google-captcha.php:725
|
196 |
msgid "for network"
|
197 |
msgstr "для сети"
|
198 |
|
199 |
+
#: google-captcha.php:695 google-captcha.php:730
|
200 |
msgid "download"
|
201 |
msgstr "загрузить"
|
202 |
|
203 |
+
#: google-captcha.php:699
|
204 |
msgid "Check off for adding captcha to forms on their settings pages"
|
205 |
msgstr "Выключите для добавления капчи к формам на страницах их настроек"
|
206 |
|
207 |
+
#: google-captcha.php:742
|
208 |
#, php-format
|
209 |
msgid ""
|
210 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
212 |
"Если вы хотите добавить Google Captcha (reCAPTCHA) в кастомную форму, "
|
213 |
"смотрите %s"
|
214 |
|
215 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
216 |
msgid "FAQ"
|
217 |
msgstr "FAQ"
|
218 |
|
219 |
+
#: google-captcha.php:747
|
220 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
221 |
msgstr "Скрыть reCAPTCHA в Форма комментариев для"
|
222 |
|
223 |
+
#: google-captcha.php:759
|
224 |
+
msgid "Whitelist Notification"
|
225 |
msgstr "Уведомление о нахождении в белом списке"
|
226 |
|
227 |
+
#: google-captcha.php:763
|
228 |
msgid ""
|
229 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
230 |
"added to the whitelist"
|
231 |
msgstr ""
|
232 |
"Указанное сообщение будет отображаться вместо reCAPTCHA для IP адресов из "
|
233 |
"белого списка"
|
234 |
|
235 |
+
#: google-captcha.php:769
|
236 |
+
msgid "reCAPTCHA Version"
|
237 |
msgstr "Версия reCAPTCHA"
|
238 |
|
239 |
+
#: google-captcha.php:779
|
240 |
+
msgid ""
|
241 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
242 |
+
"ones will have to pass the captcha"
|
243 |
+
msgstr ""
|
244 |
+
"Блок reCAPTCHA не будет выводиться для пользователей, которые не вызывают "
|
245 |
+
"подозрение, в то время как подозрительным пользователям придётся пройти "
|
246 |
+
"через капчу"
|
247 |
|
248 |
+
#: google-captcha.php:787 google-captcha.php:800
|
249 |
+
msgid "reCAPTCHA Theme"
|
250 |
msgstr "Тема reCAPTCHA"
|
251 |
|
252 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
253 |
msgid "for version"
|
254 |
msgstr "для версии"
|
255 |
|
256 |
+
#: google-captcha.php:813
|
257 |
msgid "Save Changes"
|
258 |
msgstr "Сохранить изменения"
|
259 |
|
260 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
261 |
msgid "To use Google Captcha you must get the keys from"
|
262 |
msgstr "Чтобы использовать Google Captcha вам необходимо получить ключи"
|
263 |
|
264 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
265 |
msgid "here"
|
266 |
msgstr "здесь"
|
267 |
|
268 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
269 |
msgid "and enter them on the"
|
270 |
msgstr "и вставить их на"
|
271 |
|
272 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
273 |
msgid "plugin setting page"
|
274 |
msgstr "страницу настроек плагина"
|
275 |
|
276 |
+
#: google-captcha.php:1082
|
277 |
+
msgid "User response is missing."
|
278 |
+
msgstr "Ответ пользователя отсутствует."
|
279 |
+
|
280 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
281 |
+
msgid "Secret Key is invalid"
|
282 |
+
msgstr "Некорректный секретный ключ"
|
283 |
|
284 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
285 |
+
msgid "Check your domain configuration"
|
286 |
+
msgstr "Проверьте настройки вашего домена"
|
|
|
287 |
|
288 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
289 |
+
msgid "and enter it again"
|
290 |
+
msgstr "и введите его снова"
|
291 |
+
|
292 |
+
#: google-captcha.php:1091
|
293 |
+
msgid "Secret Key is missing."
|
294 |
+
msgstr "Секретный ключ отсутствует."
|
295 |
+
|
296 |
+
#: google-captcha.php:1098
|
297 |
+
msgid "User response is invalid"
|
298 |
+
msgstr "Некорректный ответ пользователя"
|
299 |
|
300 |
+
#: google-captcha.php:1099
|
301 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
302 |
+
msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
|
303 |
+
|
304 |
+
#: google-captcha.php:1100
|
305 |
msgid ""
|
306 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
307 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
308 |
msgstr ""
|
309 |
+
"В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
|
310 |
+
"все лишние блоки reCAPTCHA для корректной дальнейшей работы."
|
311 |
+
|
312 |
+
#: google-captcha.php:1246
|
313 |
+
msgid "Click the BACK button on your browser, and try again."
|
314 |
+
msgstr "Воспользуйтесь кнопкой НАЗАД в вашем браузере и попытайтесь снова."
|
315 |
|
316 |
+
#: google-captcha.php:1291
|
317 |
msgid "Please, complete the captcha and submit \"Test verification\""
|
318 |
msgstr "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\""
|
319 |
|
320 |
+
#: google-captcha.php:1295
|
321 |
msgid "Test verification"
|
322 |
msgstr "Тестирование проверки"
|
323 |
|
324 |
+
#: google-captcha.php:1316
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
msgid "The verification is successfully completed"
|
326 |
msgstr "Проверка завершена успешно"
|
327 |
|
328 |
+
#: google-captcha.php:1357
|
329 |
msgid "Support"
|
330 |
msgstr "Поддержка"
|
331 |
|
349 |
msgid "Save IP to the whitelist"
|
350 |
msgstr "Сохранить IP в белый список"
|
351 |
|
352 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
353 |
msgid "Allowed formats"
|
354 |
msgstr "Доступные форматы"
|
355 |
|
422 |
msgid "Close"
|
423 |
msgstr "Закрыть"
|
424 |
|
425 |
+
#: includes/pro_banners.php:29
|
426 |
+
msgid "Upgrade to Pro"
|
427 |
+
msgstr "Обновить до Pro"
|
|
|
|
|
|
|
|
|
428 |
|
429 |
+
#: includes/pro_banners.php:42
|
430 |
msgid "Reason"
|
431 |
msgstr "Причина"
|
432 |
|
433 |
+
#: includes/pro_banners.php:45
|
434 |
msgid "Allowed separators for IPs: a comma"
|
435 |
msgstr "Доступные разделители для IP-адресов: запятая"
|
436 |
|
437 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
438 |
msgid "semicolon"
|
439 |
msgstr "точка с запятой"
|
440 |
|
441 |
+
#: includes/pro_banners.php:45
|
442 |
msgid "ordinary space, tab, new line or carriage return"
|
443 |
msgstr "обычный пробел, табуляция или новая строка"
|
444 |
|
445 |
+
#: includes/pro_banners.php:46
|
446 |
msgid "Allowed separators for reasons: a comma"
|
447 |
msgstr "Доступные разделители для причин: запятая"
|
448 |
|
449 |
+
#: includes/pro_banners.php:46
|
450 |
msgid "tab, new line or carriage return"
|
451 |
msgstr "табуляция или новая строка"
|
452 |
|
453 |
+
#: includes/pro_banners.php:71
|
454 |
msgid "Normal"
|
455 |
msgstr "Нормальный"
|
456 |
|
457 |
+
#: includes/pro_banners.php:72
|
458 |
msgid "Compact"
|
459 |
msgstr "Компактный"
|
460 |
|
461 |
+
#: includes/pro_banners.php:76
|
462 |
+
msgid "reCAPTCHA Language"
|
463 |
msgstr "Язык reCAPTCHA"
|
464 |
|
465 |
+
#: includes/pro_banners.php:83
|
466 |
msgid "Use the current site language"
|
467 |
msgstr "Использовать текущий язык сайта"
|
468 |
|
469 |
+
#: includes/pro_banners.php:83
|
470 |
msgid "Using"
|
471 |
msgstr "Используя"
|
472 |
|
473 |
+
#: includes/pro_banners.php:89
|
474 |
+
msgid "reCAPTCHA Size"
|
475 |
msgstr "Размер reCAPTCHA"
|
476 |
|
477 |
+
#~ msgid "Unlock premium options by upgrading to Pro version"
|
478 |
+
#~ msgstr "Активируйте премиум опции обновившись до Pro версии"
|
479 |
+
|
480 |
+
#~ msgid "Learn More"
|
481 |
+
#~ msgstr "Подробнее"
|
482 |
+
|
483 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
484 |
+
#~ msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA"
|
485 |
+
|
486 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
487 |
+
#~ msgstr "Вы ввели неверное значение reCAPTCHA."
|
488 |
+
|
489 |
+
#~ msgid "ERROR"
|
490 |
+
#~ msgstr "ОШИБКА"
|
491 |
+
|
492 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
493 |
+
#~ msgstr ""
|
494 |
+
#~ "Прежде чем вы сможете сделать что-нибудь, вы должны зарегистрироваться "
|
495 |
+
#~ "%sздесь%s"
|
496 |
+
|
497 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
498 |
+
#~ msgstr ""
|
499 |
+
#~ "Введите ключ и секретный ключ, которые вы получили после регистрации"
|
500 |
|
501 |
#~ msgid ""
|
502 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
526 |
#~ msgid "Download"
|
527 |
#~ msgstr "Скачать"
|
528 |
|
|
|
|
|
|
|
529 |
#~ msgid "You should"
|
530 |
#~ msgstr "Вам нужно"
|
531 |
|
languages/google-captcha-uk.mo
CHANGED
Binary file
|
languages/google-captcha-uk.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
@@ -16,94 +16,105 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-captcha.php:34 google-captcha.php:
|
20 |
msgid "Google Captcha Settings"
|
21 |
msgstr "Налаштування Google Captcha"
|
22 |
|
23 |
-
#: google-captcha.php:
|
24 |
-
msgid "
|
25 |
-
msgstr "
|
26 |
|
27 |
-
#: google-captcha.php:
|
28 |
msgid ""
|
29 |
-
"
|
30 |
-
"
|
31 |
-
"blocks."
|
32 |
msgstr ""
|
33 |
-
"
|
34 |
-
"
|
35 |
-
|
|
|
|
|
|
|
36 |
|
37 |
-
#: google-captcha.php:
|
38 |
-
|
39 |
-
|
|
|
40 |
|
41 |
-
#: google-captcha.php:
|
42 |
msgid "You are in the whitelist"
|
43 |
msgstr "Ви знаходитесь в білому списку"
|
44 |
|
45 |
-
#: google-captcha.php:
|
46 |
-
msgid "Site
|
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 |
msgid "Enter site key"
|
71 |
msgstr "Введіть ключ сайту"
|
72 |
|
73 |
-
#: google-captcha.php:
|
74 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
75 |
msgstr ""
|
76 |
"УВАГА: Капча не буде відображатись, поки ви не заповните необхідні поля."
|
77 |
|
78 |
-
#: google-captcha.php:
|
79 |
msgid "Enter secret key"
|
80 |
msgstr "Введіть секретний ключ"
|
81 |
|
82 |
-
#: google-captcha.php:
|
83 |
msgid "Settings saved"
|
84 |
msgstr "Налаштування збережено"
|
85 |
|
86 |
-
#: google-captcha.php:
|
87 |
msgid "All plugin settings were restored"
|
88 |
msgstr "Налаштування плагіна були відновлені"
|
89 |
|
90 |
-
#: google-captcha.php:
|
91 |
msgid "Settings"
|
92 |
msgstr "Налаштування"
|
93 |
|
94 |
-
#: google-captcha.php:
|
95 |
msgid "Whitelist"
|
96 |
msgstr "Білий список"
|
97 |
|
98 |
-
#: google-captcha.php:
|
99 |
msgid "Custom code"
|
100 |
msgstr "Користувацький код"
|
101 |
|
102 |
-
#: google-captcha.php:
|
103 |
msgid "Go PRO"
|
104 |
msgstr "Перейти на PRO версію"
|
105 |
|
106 |
-
#: google-captcha.php:
|
107 |
msgid ""
|
108 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
109 |
"version 1 features."
|
@@ -111,7 +122,7 @@ msgstr ""
|
|
111 |
"У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
|
112 |
"відображатися тільки одна reCAPTCHA."
|
113 |
|
114 |
-
#: google-captcha.php:
|
115 |
#, php-format
|
116 |
msgid ""
|
117 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -120,7 +131,7 @@ msgstr ""
|
|
120 |
"Якщо ви хочете додати Google Captcha (reCAPTCHA) на вашу сторінку або пост, "
|
121 |
"то використовуйте кнопку %s"
|
122 |
|
123 |
-
#: google-captcha.php:
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -133,65 +144,66 @@ msgstr ""
|
|
133 |
"кнопка не відображається або ви хочете додати Google Captcha (reCAPTCHA) в "
|
134 |
"вашу власну форму, будь ласка, використовуйте шорткод %s"
|
135 |
|
136 |
-
#: google-captcha.php:
|
137 |
msgid "Authentication"
|
138 |
msgstr "Ідентифікація"
|
139 |
|
140 |
-
#: google-captcha.php:
|
141 |
#, php-format
|
142 |
-
msgid "
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
|
149 |
-
#: google-captcha.php:
|
150 |
msgid "Test Keys"
|
151 |
msgstr "Тестування ключів"
|
152 |
|
153 |
-
#: google-captcha.php:
|
154 |
msgid "Options"
|
155 |
msgstr "Опції"
|
156 |
|
157 |
-
#: google-captcha.php:
|
158 |
msgid "Enable reCAPTCHA for"
|
159 |
msgstr "Включити reCAPTCHA для"
|
160 |
|
161 |
-
#: google-captcha.php:
|
162 |
msgid "WordPress default"
|
163 |
msgstr "Стандартних форм WordPress"
|
164 |
|
165 |
-
#: google-captcha.php:
|
166 |
msgid "This option is available only for network or for main blog"
|
167 |
msgstr "Ця опція доступна тільки для мережі або для основного блогу"
|
168 |
|
169 |
-
#: google-captcha.php:
|
170 |
msgid "Plugins"
|
171 |
msgstr "Плагінів"
|
172 |
|
173 |
-
#: google-captcha.php:
|
|
|
174 |
#, php-format
|
175 |
msgid "You should %s to use this functionality"
|
176 |
msgstr "Щоб використовувати цей функціонал %s"
|
177 |
|
178 |
-
#: google-captcha.php:
|
179 |
msgid "activate"
|
180 |
msgstr "активувати"
|
181 |
|
182 |
-
#: google-captcha.php:
|
183 |
msgid "for network"
|
184 |
msgstr "для мережі"
|
185 |
|
186 |
-
#: google-captcha.php:
|
187 |
msgid "download"
|
188 |
msgstr "завантажити"
|
189 |
|
190 |
-
#: google-captcha.php:
|
191 |
msgid "Check off for adding captcha to forms on their settings pages"
|
192 |
msgstr "Увімкніть для додавання капчи до форм на сторінках їх налаштувань"
|
193 |
|
194 |
-
#: google-captcha.php:
|
195 |
#, php-format
|
196 |
msgid ""
|
197 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
@@ -199,122 +211,120 @@ msgstr ""
|
|
199 |
"Якщо ви хочете додати Google Captcha (reCAPTCHA) в кастомний форму, дивіться "
|
200 |
"%s"
|
201 |
|
202 |
-
#: google-captcha.php:
|
203 |
msgid "FAQ"
|
204 |
msgstr "FAQ"
|
205 |
|
206 |
-
#: google-captcha.php:
|
207 |
-
msgid "Hide reCAPTCHA in Comments
|
208 |
msgstr "Приховати reCAPTCHA у Формі коментарів для"
|
209 |
|
210 |
-
#: google-captcha.php:
|
211 |
-
msgid "Whitelist
|
212 |
msgstr "Повідомлення про знаходження у білому списку"
|
213 |
|
214 |
-
#: google-captcha.php:
|
215 |
msgid ""
|
216 |
-
"This message will be displayed instead of the reCAPTCHA
|
217 |
"added to the whitelist"
|
218 |
msgstr ""
|
219 |
"Вказане повідомлення буде відображатися замість reCAPTCHA якщо IP "
|
220 |
"знаходиться в білому списку"
|
221 |
|
222 |
-
#: google-captcha.php:
|
223 |
-
msgid "reCAPTCHA
|
224 |
msgstr "Версія reCAPTCHA"
|
225 |
|
226 |
-
#: google-captcha.php:
|
227 |
-
|
228 |
-
|
229 |
-
|
|
|
|
|
|
|
230 |
|
231 |
-
#: google-captcha.php:
|
232 |
-
msgid "reCAPTCHA
|
233 |
msgstr "reCAPTCHA theme"
|
234 |
|
235 |
-
#: google-captcha.php:
|
236 |
msgid "for version"
|
237 |
msgstr "для версії"
|
238 |
|
239 |
-
#: google-captcha.php:
|
240 |
msgid "Save Changes"
|
241 |
msgstr "Зберегти зміни"
|
242 |
|
243 |
-
#: google-captcha.php:
|
244 |
msgid "To use Google Captcha you must get the keys from"
|
245 |
msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
|
246 |
|
247 |
-
#: google-captcha.php:
|
248 |
msgid "here"
|
249 |
msgstr "тут"
|
250 |
|
251 |
-
#: google-captcha.php:
|
252 |
msgid "and enter them on the"
|
253 |
msgstr "і вставте їх у"
|
254 |
|
255 |
-
#: google-captcha.php:
|
256 |
msgid "plugin setting page"
|
257 |
msgstr "сторінку налаштувань плагіну"
|
258 |
|
259 |
-
#: google-captcha.php:
|
260 |
-
msgid "
|
261 |
-
msgstr "
|
|
|
|
|
|
|
|
|
262 |
|
263 |
-
#: google-captcha.php:
|
264 |
-
|
265 |
-
|
266 |
-
msgstr "Ви ввели невірне значення reCAPTCHA"
|
267 |
|
268 |
-
#: google-captcha.php:
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
|
|
|
|
|
|
|
|
271 |
|
272 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
msgid ""
|
274 |
-
"
|
275 |
-
"
|
276 |
msgstr ""
|
277 |
-
"
|
278 |
-
"
|
279 |
|
280 |
-
#: google-captcha.php:
|
|
|
|
|
|
|
|
|
281 |
msgid "Please, complete the captcha and submit \"Test verification\""
|
282 |
msgstr ""
|
283 |
"Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
|
284 |
|
285 |
-
#: google-captcha.php:
|
286 |
msgid "Test verification"
|
287 |
msgstr "Тестування перевірки"
|
288 |
|
289 |
-
#: google-captcha.php:
|
290 |
-
msgid "The user response was missing"
|
291 |
-
msgstr "Відповідь користувача відсутня"
|
292 |
-
|
293 |
-
#: google-captcha.php:1192
|
294 |
-
msgid "The Secret Key is missing"
|
295 |
-
msgstr "Секретний ключ відсутній"
|
296 |
-
|
297 |
-
#: google-captcha.php:1195 google-captcha.php:1204
|
298 |
-
msgid "The Secret Key is invalid"
|
299 |
-
msgstr "Секретний ключ некоректний"
|
300 |
-
|
301 |
-
#: google-captcha.php:1196 google-captcha.php:1205
|
302 |
-
msgid "Check your domain configuration"
|
303 |
-
msgstr "Перевірте конфігурацію вашого домену"
|
304 |
-
|
305 |
-
#: google-captcha.php:1197 google-captcha.php:1206
|
306 |
-
msgid "and enter it again"
|
307 |
-
msgstr "і введіть його знову"
|
308 |
-
|
309 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
310 |
-
msgid "The user response is invalid"
|
311 |
-
msgstr "Некоректна відповідь користувача"
|
312 |
-
|
313 |
-
#: google-captcha.php:1217
|
314 |
msgid "The verification is successfully completed"
|
315 |
msgstr "Перевірка завершена успішно"
|
316 |
|
317 |
-
#: google-captcha.php:
|
318 |
msgid "Support"
|
319 |
msgstr "Техпідтримка"
|
320 |
|
@@ -338,7 +348,7 @@ msgstr "Мій IP"
|
|
338 |
msgid "Save IP to the whitelist"
|
339 |
msgstr "Зберегти IP до білого списку"
|
340 |
|
341 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
342 |
msgid "Allowed formats"
|
343 |
msgstr "Доступні формати"
|
344 |
|
@@ -411,64 +421,79 @@ msgstr "Ця опція доступна в Pro версії плагіну"
|
|
411 |
msgid "Close"
|
412 |
msgstr "Закрити"
|
413 |
|
414 |
-
#: includes/pro_banners.php:
|
415 |
-
msgid "
|
416 |
-
msgstr "
|
417 |
-
|
418 |
-
#: includes/pro_banners.php:30
|
419 |
-
msgid "Learn More"
|
420 |
-
msgstr "Детальніше"
|
421 |
|
422 |
-
#: includes/pro_banners.php:
|
423 |
msgid "Reason"
|
424 |
msgstr "Причина"
|
425 |
|
426 |
-
#: includes/pro_banners.php:
|
427 |
msgid "Allowed separators for IPs: a comma"
|
428 |
msgstr "Доступні роздільники для IP: кома"
|
429 |
|
430 |
-
#: includes/pro_banners.php:
|
431 |
msgid "semicolon"
|
432 |
msgstr "крапка з комою"
|
433 |
|
434 |
-
#: includes/pro_banners.php:
|
435 |
msgid "ordinary space, tab, new line or carriage return"
|
436 |
msgstr "звичайний пробіл, табуляція або новий рядок"
|
437 |
|
438 |
-
#: includes/pro_banners.php:
|
439 |
msgid "Allowed separators for reasons: a comma"
|
440 |
msgstr "Доступні роздільники для причин: кома"
|
441 |
|
442 |
-
#: includes/pro_banners.php:
|
443 |
msgid "tab, new line or carriage return"
|
444 |
msgstr "табуляція, новий рядок або повернення каретки"
|
445 |
|
446 |
-
#: includes/pro_banners.php:
|
447 |
msgid "Normal"
|
448 |
msgstr "Нормальний"
|
449 |
|
450 |
-
#: includes/pro_banners.php:
|
451 |
msgid "Compact"
|
452 |
msgstr "Компактний"
|
453 |
|
454 |
-
#: includes/pro_banners.php:
|
455 |
-
msgid "reCAPTCHA
|
456 |
msgstr "Мова reCAPTCHA"
|
457 |
|
458 |
-
#: includes/pro_banners.php:
|
459 |
msgid "Use the current site language"
|
460 |
msgstr "Використовувати поточну мову сайту"
|
461 |
|
462 |
-
#: includes/pro_banners.php:
|
463 |
msgid "Using"
|
464 |
msgstr "Використовуючи"
|
465 |
|
466 |
-
#: includes/pro_banners.php:
|
467 |
-
msgid "reCAPTCHA
|
468 |
msgstr "Розмір reCAPTCHA"
|
469 |
|
470 |
-
#~ msgid "
|
471 |
-
#~ msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
|
473 |
#~ msgid ""
|
474 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
@@ -498,9 +523,6 @@ msgstr "Розмір reCAPTCHA"
|
|
498 |
#~ msgid "Download"
|
499 |
#~ msgstr "Завантажити"
|
500 |
|
501 |
-
#~ msgid "Enable CAPTCHA"
|
502 |
-
#~ msgstr "Включити reCAPTCHA"
|
503 |
-
|
504 |
#~ msgid "You should"
|
505 |
#~ msgstr "Вам слід"
|
506 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 18:01+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-captcha.php:34 google-captcha.php:602
|
20 |
msgid "Google Captcha Settings"
|
21 |
msgstr "Налаштування Google Captcha"
|
22 |
|
23 |
+
#: google-captcha.php:254
|
24 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
25 |
+
msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
|
26 |
|
27 |
+
#: google-captcha.php:255
|
28 |
msgid ""
|
29 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
30 |
+
"reload this page."
|
|
|
31 |
msgstr ""
|
32 |
+
"Не вдалося завантажити Google reCAPTCHA. Будь ласка, перевірте підключення "
|
33 |
+
"до Інтернету та оновіть цю сторінку."
|
34 |
+
|
35 |
+
#: google-captcha.php:275
|
36 |
+
msgid "Warning"
|
37 |
+
msgstr "Увага"
|
38 |
|
39 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
40 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
41 |
+
msgid "Error"
|
42 |
+
msgstr "Помилка"
|
43 |
|
44 |
+
#: google-captcha.php:377
|
45 |
msgid "You are in the whitelist"
|
46 |
msgstr "Ви знаходитесь в білому списку"
|
47 |
|
48 |
+
#: google-captcha.php:506
|
49 |
+
msgid "Site Key"
|
50 |
+
msgstr "Ключ Cайту"
|
51 |
|
52 |
+
#: google-captcha.php:511
|
53 |
msgid "Secret Key"
|
54 |
msgstr "Секретний ключ"
|
55 |
|
56 |
+
#: google-captcha.php:518 google-captcha.php:519
|
57 |
+
msgid "Version"
|
58 |
+
msgstr "Версія"
|
59 |
+
|
60 |
+
#: google-captcha.php:520
|
61 |
+
msgid "Invisible reCAPTCHA"
|
62 |
+
msgstr "Невидима reCAPTCHA"
|
63 |
+
|
64 |
+
#: google-captcha.php:525
|
65 |
msgid "Login form"
|
66 |
msgstr "Форма логіну"
|
67 |
|
68 |
+
#: google-captcha.php:526
|
69 |
msgid "Registration form"
|
70 |
msgstr "Форма реєстрації"
|
71 |
|
72 |
+
#: google-captcha.php:527
|
73 |
msgid "Reset password form"
|
74 |
msgstr "Форма відновлення паролю"
|
75 |
|
76 |
+
#: google-captcha.php:528
|
77 |
msgid "Comments form"
|
78 |
msgstr "Форма коментарів"
|
79 |
|
80 |
+
#: google-captcha.php:547
|
81 |
msgid "Enter site key"
|
82 |
msgstr "Введіть ключ сайту"
|
83 |
|
84 |
+
#: google-captcha.php:548 google-captcha.php:554
|
85 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
86 |
msgstr ""
|
87 |
"УВАГА: Капча не буде відображатись, поки ви не заповните необхідні поля."
|
88 |
|
89 |
+
#: google-captcha.php:553
|
90 |
msgid "Enter secret key"
|
91 |
msgstr "Введіть секретний ключ"
|
92 |
|
93 |
+
#: google-captcha.php:581
|
94 |
msgid "Settings saved"
|
95 |
msgstr "Налаштування збережено"
|
96 |
|
97 |
+
#: google-captcha.php:587
|
98 |
msgid "All plugin settings were restored"
|
99 |
msgstr "Налаштування плагіна були відновлені"
|
100 |
|
101 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
102 |
msgid "Settings"
|
103 |
msgstr "Налаштування"
|
104 |
|
105 |
+
#: google-captcha.php:605
|
106 |
msgid "Whitelist"
|
107 |
msgstr "Білий список"
|
108 |
|
109 |
+
#: google-captcha.php:606
|
110 |
msgid "Custom code"
|
111 |
msgstr "Користувацький код"
|
112 |
|
113 |
+
#: google-captcha.php:607
|
114 |
msgid "Go PRO"
|
115 |
msgstr "Перейти на PRO версію"
|
116 |
|
117 |
+
#: google-captcha.php:612
|
118 |
msgid ""
|
119 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
120 |
"version 1 features."
|
122 |
"У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
|
123 |
"відображатися тільки одна reCAPTCHA."
|
124 |
|
125 |
+
#: google-captcha.php:627
|
126 |
#, php-format
|
127 |
msgid ""
|
128 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
131 |
"Якщо ви хочете додати Google Captcha (reCAPTCHA) на вашу сторінку або пост, "
|
132 |
"то використовуйте кнопку %s"
|
133 |
|
134 |
+
#: google-captcha.php:631
|
135 |
#, php-format
|
136 |
msgid ""
|
137 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
144 |
"кнопка не відображається або ви хочете додати Google Captcha (reCAPTCHA) в "
|
145 |
"вашу власну форму, будь ласка, використовуйте шорткод %s"
|
146 |
|
147 |
+
#: google-captcha.php:637
|
148 |
msgid "Authentication"
|
149 |
msgstr "Ідентифікація"
|
150 |
|
151 |
+
#: google-captcha.php:638
|
152 |
#, php-format
|
153 |
+
msgid ""
|
154 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
155 |
+
"your API keys %shere%s"
|
156 |
+
msgstr ""
|
157 |
+
"Для використання reCAPTCHA, будь ласка, введіть ключ сайту і секретний ключ. "
|
158 |
+
"Ви можете управляти своїми API ключами %sтут%s"
|
159 |
|
160 |
+
#: google-captcha.php:653
|
161 |
msgid "Test Keys"
|
162 |
msgstr "Тестування ключів"
|
163 |
|
164 |
+
#: google-captcha.php:656
|
165 |
msgid "Options"
|
166 |
msgstr "Опції"
|
167 |
|
168 |
+
#: google-captcha.php:659
|
169 |
msgid "Enable reCAPTCHA for"
|
170 |
msgstr "Включити reCAPTCHA для"
|
171 |
|
172 |
+
#: google-captcha.php:663
|
173 |
msgid "WordPress default"
|
174 |
msgstr "Стандартних форм WordPress"
|
175 |
|
176 |
+
#: google-captcha.php:672
|
177 |
msgid "This option is available only for network or for main blog"
|
178 |
msgstr "Ця опція доступна тільки для мережі або для основного блогу"
|
179 |
|
180 |
+
#: google-captcha.php:681
|
181 |
msgid "Plugins"
|
182 |
msgstr "Плагінів"
|
183 |
|
184 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
185 |
+
#: google-captcha.php:729
|
186 |
#, php-format
|
187 |
msgid "You should %s to use this functionality"
|
188 |
msgstr "Щоб використовувати цей функціонал %s"
|
189 |
|
190 |
+
#: google-captcha.php:690 google-captcha.php:725
|
191 |
msgid "activate"
|
192 |
msgstr "активувати"
|
193 |
|
194 |
+
#: google-captcha.php:690 google-captcha.php:725
|
195 |
msgid "for network"
|
196 |
msgstr "для мережі"
|
197 |
|
198 |
+
#: google-captcha.php:695 google-captcha.php:730
|
199 |
msgid "download"
|
200 |
msgstr "завантажити"
|
201 |
|
202 |
+
#: google-captcha.php:699
|
203 |
msgid "Check off for adding captcha to forms on their settings pages"
|
204 |
msgstr "Увімкніть для додавання капчи до форм на сторінках їх налаштувань"
|
205 |
|
206 |
+
#: google-captcha.php:742
|
207 |
#, php-format
|
208 |
msgid ""
|
209 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
211 |
"Якщо ви хочете додати Google Captcha (reCAPTCHA) в кастомний форму, дивіться "
|
212 |
"%s"
|
213 |
|
214 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
215 |
msgid "FAQ"
|
216 |
msgstr "FAQ"
|
217 |
|
218 |
+
#: google-captcha.php:747
|
219 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
220 |
msgstr "Приховати reCAPTCHA у Формі коментарів для"
|
221 |
|
222 |
+
#: google-captcha.php:759
|
223 |
+
msgid "Whitelist Notification"
|
224 |
msgstr "Повідомлення про знаходження у білому списку"
|
225 |
|
226 |
+
#: google-captcha.php:763
|
227 |
msgid ""
|
228 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
229 |
"added to the whitelist"
|
230 |
msgstr ""
|
231 |
"Вказане повідомлення буде відображатися замість reCAPTCHA якщо IP "
|
232 |
"знаходиться в білому списку"
|
233 |
|
234 |
+
#: google-captcha.php:769
|
235 |
+
msgid "reCAPTCHA Version"
|
236 |
msgstr "Версія reCAPTCHA"
|
237 |
|
238 |
+
#: google-captcha.php:779
|
239 |
+
msgid ""
|
240 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
241 |
+
"ones will have to pass the captcha"
|
242 |
+
msgstr ""
|
243 |
+
"Блок reCAPTCHA не буде відображений для користувачів, які не визивають "
|
244 |
+
"підозру, в той час як підозрілим користувачам доведеться пройти капчу"
|
245 |
|
246 |
+
#: google-captcha.php:787 google-captcha.php:800
|
247 |
+
msgid "reCAPTCHA Theme"
|
248 |
msgstr "reCAPTCHA theme"
|
249 |
|
250 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
251 |
msgid "for version"
|
252 |
msgstr "для версії"
|
253 |
|
254 |
+
#: google-captcha.php:813
|
255 |
msgid "Save Changes"
|
256 |
msgstr "Зберегти зміни"
|
257 |
|
258 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
259 |
msgid "To use Google Captcha you must get the keys from"
|
260 |
msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
|
261 |
|
262 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
263 |
msgid "here"
|
264 |
msgstr "тут"
|
265 |
|
266 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
267 |
msgid "and enter them on the"
|
268 |
msgstr "і вставте їх у"
|
269 |
|
270 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
271 |
msgid "plugin setting page"
|
272 |
msgstr "сторінку налаштувань плагіну"
|
273 |
|
274 |
+
#: google-captcha.php:1082
|
275 |
+
msgid "User response is missing."
|
276 |
+
msgstr "Відповідь користувача відсутня."
|
277 |
+
|
278 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
279 |
+
msgid "Secret Key is invalid"
|
280 |
+
msgstr "Секретний ключ некоректний"
|
281 |
|
282 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
283 |
+
msgid "Check your domain configuration"
|
284 |
+
msgstr "Перевірте конфігурацію вашого домену"
|
|
|
285 |
|
286 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
287 |
+
msgid "and enter it again"
|
288 |
+
msgstr "і введіть його знову"
|
289 |
+
|
290 |
+
#: google-captcha.php:1091
|
291 |
+
msgid "Secret Key is missing."
|
292 |
+
msgstr "Секретний ключ відсутній."
|
293 |
|
294 |
+
#: google-captcha.php:1098
|
295 |
+
msgid "User response is invalid"
|
296 |
+
msgstr "Некоректна відповідь користувача"
|
297 |
+
|
298 |
+
#: google-captcha.php:1099
|
299 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
300 |
+
msgstr "Ви ввели невірне значення reCAPTCHA."
|
301 |
+
|
302 |
+
#: google-captcha.php:1100
|
303 |
msgid ""
|
304 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
305 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
306 |
msgstr ""
|
307 |
+
"В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
|
308 |
+
"усі зайві блоки reCAPTCHA для коректної подальшої роботи."
|
309 |
|
310 |
+
#: google-captcha.php:1246
|
311 |
+
msgid "Click the BACK button on your browser, and try again."
|
312 |
+
msgstr "Скористайтесь кнопкою НАЗАД у своєму браузері та спробуйте знов."
|
313 |
+
|
314 |
+
#: google-captcha.php:1291
|
315 |
msgid "Please, complete the captcha and submit \"Test verification\""
|
316 |
msgstr ""
|
317 |
"Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
|
318 |
|
319 |
+
#: google-captcha.php:1295
|
320 |
msgid "Test verification"
|
321 |
msgstr "Тестування перевірки"
|
322 |
|
323 |
+
#: google-captcha.php:1316
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
msgid "The verification is successfully completed"
|
325 |
msgstr "Перевірка завершена успішно"
|
326 |
|
327 |
+
#: google-captcha.php:1357
|
328 |
msgid "Support"
|
329 |
msgstr "Техпідтримка"
|
330 |
|
348 |
msgid "Save IP to the whitelist"
|
349 |
msgstr "Зберегти IP до білого списку"
|
350 |
|
351 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
352 |
msgid "Allowed formats"
|
353 |
msgstr "Доступні формати"
|
354 |
|
421 |
msgid "Close"
|
422 |
msgstr "Закрити"
|
423 |
|
424 |
+
#: includes/pro_banners.php:29
|
425 |
+
msgid "Upgrade to Pro"
|
426 |
+
msgstr "Оновити до Pro"
|
|
|
|
|
|
|
|
|
427 |
|
428 |
+
#: includes/pro_banners.php:42
|
429 |
msgid "Reason"
|
430 |
msgstr "Причина"
|
431 |
|
432 |
+
#: includes/pro_banners.php:45
|
433 |
msgid "Allowed separators for IPs: a comma"
|
434 |
msgstr "Доступні роздільники для IP: кома"
|
435 |
|
436 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
437 |
msgid "semicolon"
|
438 |
msgstr "крапка з комою"
|
439 |
|
440 |
+
#: includes/pro_banners.php:45
|
441 |
msgid "ordinary space, tab, new line or carriage return"
|
442 |
msgstr "звичайний пробіл, табуляція або новий рядок"
|
443 |
|
444 |
+
#: includes/pro_banners.php:46
|
445 |
msgid "Allowed separators for reasons: a comma"
|
446 |
msgstr "Доступні роздільники для причин: кома"
|
447 |
|
448 |
+
#: includes/pro_banners.php:46
|
449 |
msgid "tab, new line or carriage return"
|
450 |
msgstr "табуляція, новий рядок або повернення каретки"
|
451 |
|
452 |
+
#: includes/pro_banners.php:71
|
453 |
msgid "Normal"
|
454 |
msgstr "Нормальний"
|
455 |
|
456 |
+
#: includes/pro_banners.php:72
|
457 |
msgid "Compact"
|
458 |
msgstr "Компактний"
|
459 |
|
460 |
+
#: includes/pro_banners.php:76
|
461 |
+
msgid "reCAPTCHA Language"
|
462 |
msgstr "Мова reCAPTCHA"
|
463 |
|
464 |
+
#: includes/pro_banners.php:83
|
465 |
msgid "Use the current site language"
|
466 |
msgstr "Використовувати поточну мову сайту"
|
467 |
|
468 |
+
#: includes/pro_banners.php:83
|
469 |
msgid "Using"
|
470 |
msgstr "Використовуючи"
|
471 |
|
472 |
+
#: includes/pro_banners.php:89
|
473 |
+
msgid "reCAPTCHA Size"
|
474 |
msgstr "Розмір reCAPTCHA"
|
475 |
|
476 |
+
#~ msgid "Unlock premium options by upgrading to Pro version"
|
477 |
+
#~ msgstr "Активуйте преміум опції оновившись до Pro версії"
|
478 |
+
|
479 |
+
#~ msgid "Learn More"
|
480 |
+
#~ msgstr "Детальніше"
|
481 |
+
|
482 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
483 |
+
#~ msgstr "Помилка: Ви ввели невірне значення reCAPTCHA"
|
484 |
+
|
485 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
486 |
+
#~ msgstr "Ви ввели невірне значення reCAPTCHA"
|
487 |
+
|
488 |
+
#~ msgid "ERROR"
|
489 |
+
#~ msgstr "ПОМИЛКА"
|
490 |
+
|
491 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
492 |
+
#~ msgstr "Щоб виконувати якісь дії, спершу зареєструйтесь %sтут%s"
|
493 |
+
|
494 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
495 |
+
#~ msgstr ""
|
496 |
+
#~ "Введіть відкритий і секретний ключі, які ви отримали після реєстрації"
|
497 |
|
498 |
#~ msgid ""
|
499 |
#~ "Google Captcha version 2 will not work correctly, since the option "
|
523 |
#~ msgid "Download"
|
524 |
#~ msgstr "Завантажити"
|
525 |
|
|
|
|
|
|
|
526 |
#~ msgid "You should"
|
527 |
#~ msgstr "Вам слід"
|
528 |
|
languages/google-captcha-zh_TW.mo
CHANGED
Binary file
|
languages/google-captcha-zh_TW.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Nick Lai <nick20080808@gmail.com>\n"
|
@@ -17,100 +17,112 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-captcha.php:34 google-captcha.php:
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "reCAPTCHA 驗證碼設置"
|
23 |
|
24 |
-
#: google-captcha.php:
|
25 |
-
msgid "
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: google-captcha.php:
|
29 |
msgid ""
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"blocks."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: google-captcha.php:
|
36 |
-
|
37 |
-
|
38 |
-
msgstr "錯誤:您輸入的驗證碼不正確。"
|
39 |
|
40 |
-
#: google-captcha.php:
|
41 |
-
|
|
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: google-captcha.php:
|
45 |
-
msgid "
|
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 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
75 |
msgstr "警告:如果你不填寫此欄,驗證碼將不會顯示。"
|
76 |
|
77 |
-
#: google-captcha.php:
|
78 |
#, fuzzy
|
79 |
msgid "Enter secret key"
|
80 |
msgstr "輸入私有密鑰"
|
81 |
|
82 |
-
#: google-captcha.php:
|
83 |
msgid "Settings saved"
|
84 |
msgstr "設定已儲存"
|
85 |
|
86 |
-
#: google-captcha.php:
|
87 |
#, fuzzy
|
88 |
msgid "All plugin settings were restored"
|
89 |
msgstr "外掛設置頁"
|
90 |
|
91 |
-
#: google-captcha.php:
|
92 |
msgid "Settings"
|
93 |
msgstr "設定"
|
94 |
|
95 |
-
#: google-captcha.php:
|
96 |
msgid "Whitelist"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: google-captcha.php:
|
100 |
msgid "Custom code"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: google-captcha.php:
|
104 |
msgid "Go PRO"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: google-captcha.php:
|
108 |
msgid ""
|
109 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
110 |
"version 1 features."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: google-captcha.php:
|
114 |
#, fuzzy, php-format
|
115 |
msgid ""
|
116 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
@@ -118,7 +130,7 @@ msgid ""
|
|
118 |
msgstr ""
|
119 |
"如果您想在自己的表格中加入reCAPTCHA驗證碼,只需貼上此代號到您的文章或頁面:"
|
120 |
|
121 |
-
#: google-captcha.php:
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
@@ -127,188 +139,182 @@ msgid ""
|
|
127 |
"your own form , please use the shortcode %s"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: google-captcha.php:
|
131 |
msgid "Authentication"
|
132 |
msgstr "身份驗證"
|
133 |
|
134 |
-
#: google-captcha.php:
|
135 |
-
#,
|
136 |
-
msgid "
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
#, fuzzy
|
141 |
-
msgid "Enter site key and secret key, that you get after registration"
|
142 |
-
msgstr "然後複製公開金鑰(Public Key)和私有密鑰(Private Key)到到以下方框。"
|
143 |
|
144 |
-
#: google-captcha.php:
|
145 |
msgid "Test Keys"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: google-captcha.php:
|
149 |
msgid "Options"
|
150 |
msgstr "選項"
|
151 |
|
152 |
-
#: google-captcha.php:
|
153 |
msgid "Enable reCAPTCHA for"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: google-captcha.php:
|
157 |
msgid "WordPress default"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: google-captcha.php:
|
161 |
msgid "This option is available only for network or for main blog"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: google-captcha.php:
|
165 |
#, fuzzy
|
166 |
msgid "Plugins"
|
167 |
msgstr "外掛頁面"
|
168 |
|
169 |
-
#: google-captcha.php:
|
|
|
170 |
#, php-format
|
171 |
msgid "You should %s to use this functionality"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: google-captcha.php:
|
175 |
#, fuzzy
|
176 |
msgid "activate"
|
177 |
msgstr "Активировать Contact form"
|
178 |
|
179 |
-
#: google-captcha.php:
|
180 |
msgid "for network"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: google-captcha.php:
|
184 |
msgid "download"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: google-captcha.php:
|
188 |
msgid "Check off for adding captcha to forms on their settings pages"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: google-captcha.php:
|
192 |
#, php-format
|
193 |
msgid ""
|
194 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: google-captcha.php:
|
198 |
msgid "FAQ"
|
199 |
msgstr "常見問題"
|
200 |
|
201 |
-
#: google-captcha.php:
|
202 |
-
msgid "Hide reCAPTCHA in Comments
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: google-captcha.php:
|
206 |
#, fuzzy
|
207 |
-
msgid "Whitelist
|
208 |
msgstr "身份驗證"
|
209 |
|
210 |
-
#: google-captcha.php:
|
211 |
msgid ""
|
212 |
-
"This message will be displayed instead of the reCAPTCHA
|
213 |
"added to the whitelist"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: google-captcha.php:
|
217 |
-
msgid "reCAPTCHA
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: google-captcha.php:
|
221 |
-
|
222 |
-
|
|
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: google-captcha.php:
|
226 |
-
msgid "reCAPTCHA
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: google-captcha.php:
|
230 |
msgid "for version"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: google-captcha.php:
|
234 |
msgid "Save Changes"
|
235 |
msgstr "儲存變更"
|
236 |
|
237 |
-
#: google-captcha.php:
|
238 |
msgid "To use Google Captcha you must get the keys from"
|
239 |
msgstr "如要用reCAPTCHA驗證碼,你必須輸入兩組金鑰。您可以在這裡領取:"
|
240 |
|
241 |
-
#: google-captcha.php:
|
242 |
msgid "here"
|
243 |
msgstr "點我"
|
244 |
|
245 |
-
#: google-captcha.php:
|
246 |
msgid "and enter them on the"
|
247 |
msgstr "然後將他們輸入到"
|
248 |
|
249 |
-
#: google-captcha.php:
|
250 |
msgid "plugin setting page"
|
251 |
msgstr "外掛設置頁"
|
252 |
|
253 |
-
#: google-captcha.php:
|
254 |
-
msgid "
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: google-captcha.php:
|
258 |
-
|
259 |
-
|
260 |
-
msgid "You have entered an incorrect reCAPTCHA value"
|
261 |
-
msgstr "錯誤:您輸入的驗證碼不正確。"
|
262 |
|
263 |
-
#: google-captcha.php:
|
264 |
-
msgid "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: google-captcha.php:
|
268 |
#, fuzzy
|
269 |
-
msgid ""
|
270 |
-
|
271 |
-
"browser, and try again."
|
272 |
-
msgstr "錯誤:您輸入的驗證碼不正確。請回到上一頁,然後重新輸入。"
|
273 |
|
274 |
-
#: google-captcha.php:
|
275 |
-
msgid "
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: google-captcha.php:
|
279 |
-
msgid "
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: google-captcha.php:
|
283 |
-
|
284 |
-
|
|
|
285 |
|
286 |
-
#: google-captcha.php:
|
287 |
-
msgid "
|
|
|
|
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: google-captcha.php:
|
291 |
-
|
292 |
-
|
|
|
293 |
|
294 |
-
#: google-captcha.php:
|
295 |
-
msgid "
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: google-captcha.php:
|
299 |
-
|
300 |
-
msgid "and enter it again"
|
301 |
-
msgstr "然後將他們輸入到"
|
302 |
-
|
303 |
-
#: google-captcha.php:1200 google-captcha.php:1208
|
304 |
-
msgid "The user response is invalid"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: google-captcha.php:
|
308 |
msgid "The verification is successfully completed"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: google-captcha.php:
|
312 |
msgid "Support"
|
313 |
msgstr "支援"
|
314 |
|
@@ -333,7 +339,7 @@ msgstr ""
|
|
333 |
msgid "Save IP to the whitelist"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: includes/whitelist.php:100 includes/pro_banners.php:
|
337 |
msgid "Allowed formats"
|
338 |
msgstr ""
|
339 |
|
@@ -406,66 +412,74 @@ msgstr ""
|
|
406 |
msgid "Close"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: includes/pro_banners.php:
|
410 |
-
msgid "
|
411 |
-
msgstr ""
|
412 |
-
|
413 |
-
#: includes/pro_banners.php:30
|
414 |
-
msgid "Learn More"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: includes/pro_banners.php:
|
418 |
msgid "Reason"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: includes/pro_banners.php:
|
422 |
msgid "Allowed separators for IPs: a comma"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/pro_banners.php:
|
426 |
msgid "semicolon"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/pro_banners.php:
|
430 |
msgid "ordinary space, tab, new line or carriage return"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/pro_banners.php:
|
434 |
msgid "Allowed separators for reasons: a comma"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/pro_banners.php:
|
438 |
msgid "tab, new line or carriage return"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/pro_banners.php:
|
442 |
msgid "Normal"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/pro_banners.php:
|
446 |
msgid "Compact"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: includes/pro_banners.php:
|
450 |
-
msgid "reCAPTCHA
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: includes/pro_banners.php:
|
454 |
msgid "Use the current site language"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: includes/pro_banners.php:
|
458 |
msgid "Using"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/pro_banners.php:
|
462 |
-
msgid "reCAPTCHA
|
463 |
msgstr ""
|
464 |
|
465 |
#, fuzzy
|
466 |
-
#~ msgid "You have entered an incorrect reCAPTCHA value
|
467 |
#~ msgstr "錯誤:您輸入的驗證碼不正確。"
|
468 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
#~ msgid "powered by"
|
470 |
#~ msgstr "服務提供者:"
|
471 |
|
@@ -517,9 +531,6 @@ msgstr ""
|
|
517 |
#~ msgid "Public Key"
|
518 |
#~ msgstr "公開金鑰(Public Key)"
|
519 |
|
520 |
-
#~ msgid "Private Key"
|
521 |
-
#~ msgstr "私有密鑰(Private Key)"
|
522 |
-
|
523 |
#~ msgid "Enter public key"
|
524 |
#~ msgstr "輸入公開金鑰"
|
525 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Сaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-04-18 17:59+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: Nick Lai <nick20080808@gmail.com>\n"
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-captcha.php:34 google-captcha.php:602
|
21 |
msgid "Google Captcha Settings"
|
22 |
msgstr "reCAPTCHA 驗證碼設置"
|
23 |
|
24 |
+
#: google-captcha.php:254
|
25 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: google-captcha.php:255
|
29 |
msgid ""
|
30 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and "
|
31 |
+
"reload this page."
|
|
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: google-captcha.php:275
|
35 |
+
msgid "Warning"
|
36 |
+
msgstr ""
|
|
|
37 |
|
38 |
+
#: google-captcha.php:279 google-captcha.php:1127 google-captcha.php:1158
|
39 |
+
#: google-captcha.php:1187 google-captcha.php:1217 google-captcha.php:1246
|
40 |
+
msgid "Error"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: google-captcha.php:377
|
44 |
+
msgid "You are in the whitelist"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: google-captcha.php:506
|
48 |
+
#, fuzzy
|
49 |
+
msgid "Site Key"
|
50 |
+
msgstr "私有密鑰(Private Key)"
|
51 |
+
|
52 |
+
#: google-captcha.php:511
|
53 |
msgid "Secret Key"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: google-captcha.php:518 google-captcha.php:519
|
57 |
+
msgid "Version"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: google-captcha.php:520
|
61 |
+
msgid "Invisible reCAPTCHA"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: google-captcha.php:525
|
65 |
msgid "Login form"
|
66 |
msgstr "登入頁"
|
67 |
|
68 |
+
#: google-captcha.php:526
|
69 |
msgid "Registration form"
|
70 |
msgstr "用戶註冊頁"
|
71 |
|
72 |
+
#: google-captcha.php:527
|
73 |
msgid "Reset password form"
|
74 |
msgstr "重設密碼頁"
|
75 |
|
76 |
+
#: google-captcha.php:528
|
77 |
msgid "Comments form"
|
78 |
msgstr "發表迴響框"
|
79 |
|
80 |
+
#: google-captcha.php:547
|
81 |
#, fuzzy
|
82 |
msgid "Enter site key"
|
83 |
msgstr "輸入私有密鑰"
|
84 |
|
85 |
+
#: google-captcha.php:548 google-captcha.php:554
|
86 |
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
87 |
msgstr "警告:如果你不填寫此欄,驗證碼將不會顯示。"
|
88 |
|
89 |
+
#: google-captcha.php:553
|
90 |
#, fuzzy
|
91 |
msgid "Enter secret key"
|
92 |
msgstr "輸入私有密鑰"
|
93 |
|
94 |
+
#: google-captcha.php:581
|
95 |
msgid "Settings saved"
|
96 |
msgstr "設定已儲存"
|
97 |
|
98 |
+
#: google-captcha.php:587
|
99 |
#, fuzzy
|
100 |
msgid "All plugin settings were restored"
|
101 |
msgstr "外掛設置頁"
|
102 |
|
103 |
+
#: google-captcha.php:604 google-captcha.php:1334 google-captcha.php:1355
|
104 |
msgid "Settings"
|
105 |
msgstr "設定"
|
106 |
|
107 |
+
#: google-captcha.php:605
|
108 |
msgid "Whitelist"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: google-captcha.php:606
|
112 |
msgid "Custom code"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: google-captcha.php:607
|
116 |
msgid "Go PRO"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: google-captcha.php:612
|
120 |
msgid ""
|
121 |
"Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
|
122 |
"version 1 features."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: google-captcha.php:627
|
126 |
#, fuzzy, php-format
|
127 |
msgid ""
|
128 |
"If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
|
130 |
msgstr ""
|
131 |
"如果您想在自己的表格中加入reCAPTCHA驗證碼,只需貼上此代號到您的文章或頁面:"
|
132 |
|
133 |
+
#: google-captcha.php:631
|
134 |
#, php-format
|
135 |
msgid ""
|
136 |
"You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
|
139 |
"your own form , please use the shortcode %s"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: google-captcha.php:637
|
143 |
msgid "Authentication"
|
144 |
msgstr "身份驗證"
|
145 |
|
146 |
+
#: google-captcha.php:638
|
147 |
+
#, php-format
|
148 |
+
msgid ""
|
149 |
+
"In order to use reCAPTCHA, please enter site and secret keys. You can manage "
|
150 |
+
"your API keys %shere%s"
|
151 |
+
msgstr ""
|
|
|
|
|
|
|
152 |
|
153 |
+
#: google-captcha.php:653
|
154 |
msgid "Test Keys"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: google-captcha.php:656
|
158 |
msgid "Options"
|
159 |
msgstr "選項"
|
160 |
|
161 |
+
#: google-captcha.php:659
|
162 |
msgid "Enable reCAPTCHA for"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: google-captcha.php:663
|
166 |
msgid "WordPress default"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: google-captcha.php:672
|
170 |
msgid "This option is available only for network or for main blog"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: google-captcha.php:681
|
174 |
#, fuzzy
|
175 |
msgid "Plugins"
|
176 |
msgstr "外掛頁面"
|
177 |
|
178 |
+
#: google-captcha.php:689 google-captcha.php:694 google-captcha.php:724
|
179 |
+
#: google-captcha.php:729
|
180 |
#, php-format
|
181 |
msgid "You should %s to use this functionality"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: google-captcha.php:690 google-captcha.php:725
|
185 |
#, fuzzy
|
186 |
msgid "activate"
|
187 |
msgstr "Активировать Contact form"
|
188 |
|
189 |
+
#: google-captcha.php:690 google-captcha.php:725
|
190 |
msgid "for network"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: google-captcha.php:695 google-captcha.php:730
|
194 |
msgid "download"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: google-captcha.php:699
|
198 |
msgid "Check off for adding captcha to forms on their settings pages"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: google-captcha.php:742
|
202 |
#, php-format
|
203 |
msgid ""
|
204 |
"If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: google-captcha.php:742 google-captcha.php:1356
|
208 |
msgid "FAQ"
|
209 |
msgstr "常見問題"
|
210 |
|
211 |
+
#: google-captcha.php:747
|
212 |
+
msgid "Hide reCAPTCHA in Comments Form for"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: google-captcha.php:759
|
216 |
#, fuzzy
|
217 |
+
msgid "Whitelist Notification"
|
218 |
msgstr "身份驗證"
|
219 |
|
220 |
+
#: google-captcha.php:763
|
221 |
msgid ""
|
222 |
+
"This message will be displayed instead of the reCAPTCHA if the user IP is "
|
223 |
"added to the whitelist"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: google-captcha.php:769
|
227 |
+
msgid "reCAPTCHA Version"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: google-captcha.php:779
|
231 |
+
msgid ""
|
232 |
+
"reCAPTCHA block won't be visible for non-suspicious users while suspicious "
|
233 |
+
"ones will have to pass the captcha"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: google-captcha.php:787 google-captcha.php:800
|
237 |
+
msgid "reCAPTCHA Theme"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: google-captcha.php:788 google-captcha.php:801 includes/pro_banners.php:90
|
241 |
msgid "for version"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: google-captcha.php:813
|
245 |
msgid "Save Changes"
|
246 |
msgstr "儲存變更"
|
247 |
|
248 |
+
#: google-captcha.php:877 google-captcha.php:1375
|
249 |
msgid "To use Google Captcha you must get the keys from"
|
250 |
msgstr "如要用reCAPTCHA驗證碼,你必須輸入兩組金鑰。您可以在這裡領取:"
|
251 |
|
252 |
+
#: google-captcha.php:878 google-captcha.php:1376
|
253 |
msgid "here"
|
254 |
msgstr "點我"
|
255 |
|
256 |
+
#: google-captcha.php:879 google-captcha.php:1377
|
257 |
msgid "and enter them on the"
|
258 |
msgstr "然後將他們輸入到"
|
259 |
|
260 |
+
#: google-captcha.php:881 google-captcha.php:1379
|
261 |
msgid "plugin setting page"
|
262 |
msgstr "外掛設置頁"
|
263 |
|
264 |
+
#: google-captcha.php:1082
|
265 |
+
msgid "User response is missing."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: google-captcha.php:1086 google-captcha.php:1094
|
269 |
+
msgid "Secret Key is invalid"
|
270 |
+
msgstr ""
|
|
|
|
|
271 |
|
272 |
+
#: google-captcha.php:1087 google-captcha.php:1095
|
273 |
+
msgid "Check your domain configuration"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: google-captcha.php:1088 google-captcha.php:1096
|
277 |
#, fuzzy
|
278 |
+
msgid "and enter it again"
|
279 |
+
msgstr "然後將他們輸入到"
|
|
|
|
|
280 |
|
281 |
+
#: google-captcha.php:1091
|
282 |
+
msgid "Secret Key is missing."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: google-captcha.php:1098
|
286 |
+
msgid "User response is invalid"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: google-captcha.php:1099
|
290 |
+
#, fuzzy
|
291 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
292 |
+
msgstr "錯誤:您輸入的驗證碼不正確。"
|
293 |
|
294 |
+
#: google-captcha.php:1100
|
295 |
+
msgid ""
|
296 |
+
"More than one reCAPTCHA has been found in the current form. Please remove "
|
297 |
+
"all unnecessary reCAPTCHA fields to make it work properly."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: google-captcha.php:1246
|
301 |
+
#, fuzzy
|
302 |
+
msgid "Click the BACK button on your browser, and try again."
|
303 |
+
msgstr "錯誤:您輸入的驗證碼不正確。請回到上一頁,然後重新輸入。"
|
304 |
|
305 |
+
#: google-captcha.php:1291
|
306 |
+
msgid "Please, complete the captcha and submit \"Test verification\""
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: google-captcha.php:1295
|
310 |
+
msgid "Test verification"
|
|
|
|
|
|
|
|
|
|
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: google-captcha.php:1316
|
314 |
msgid "The verification is successfully completed"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: google-captcha.php:1357
|
318 |
msgid "Support"
|
319 |
msgstr "支援"
|
320 |
|
339 |
msgid "Save IP to the whitelist"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: includes/whitelist.php:100 includes/pro_banners.php:44
|
343 |
msgid "Allowed formats"
|
344 |
msgstr ""
|
345 |
|
412 |
msgid "Close"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: includes/pro_banners.php:29
|
416 |
+
msgid "Upgrade to Pro"
|
|
|
|
|
|
|
|
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: includes/pro_banners.php:42
|
420 |
msgid "Reason"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: includes/pro_banners.php:45
|
424 |
msgid "Allowed separators for IPs: a comma"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:46
|
428 |
msgid "semicolon"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: includes/pro_banners.php:45
|
432 |
msgid "ordinary space, tab, new line or carriage return"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: includes/pro_banners.php:46
|
436 |
msgid "Allowed separators for reasons: a comma"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: includes/pro_banners.php:46
|
440 |
msgid "tab, new line or carriage return"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: includes/pro_banners.php:71
|
444 |
msgid "Normal"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: includes/pro_banners.php:72
|
448 |
msgid "Compact"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/pro_banners.php:76
|
452 |
+
msgid "reCAPTCHA Language"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/pro_banners.php:83
|
456 |
msgid "Use the current site language"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: includes/pro_banners.php:83
|
460 |
msgid "Using"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: includes/pro_banners.php:89
|
464 |
+
msgid "reCAPTCHA Size"
|
465 |
msgstr ""
|
466 |
|
467 |
#, fuzzy
|
468 |
+
#~ msgid "Error: You have entered an incorrect reCAPTCHA value"
|
469 |
#~ msgstr "錯誤:您輸入的驗證碼不正確。"
|
470 |
|
471 |
+
#, fuzzy
|
472 |
+
#~ msgid "You have entered an incorrect reCAPTCHA value"
|
473 |
+
#~ msgstr "錯誤:您輸入的驗證碼不正確。"
|
474 |
+
|
475 |
+
#, fuzzy
|
476 |
+
#~ msgid "Before you are able to do something, you must to register %shere%s"
|
477 |
+
#~ msgstr "在開始使用本外掛之先,請到%s這裡%s註冊。"
|
478 |
+
|
479 |
+
#, fuzzy
|
480 |
+
#~ msgid "Enter site key and secret key, that you get after registration"
|
481 |
+
#~ msgstr "然後複製公開金鑰(Public Key)和私有密鑰(Private Key)到到以下方框。"
|
482 |
+
|
483 |
#~ msgid "powered by"
|
484 |
#~ msgstr "服務提供者:"
|
485 |
|
531 |
#~ msgid "Public Key"
|
532 |
#~ msgstr "公開金鑰(Public Key)"
|
533 |
|
|
|
|
|
|
|
534 |
#~ msgid "Enter public key"
|
535 |
#~ msgstr "輸入公開金鑰"
|
536 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: https://bestwebsoft.com/donate/
|
4 |
Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.7.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -44,6 +44,7 @@ http://www.youtube.com/watch?v=qwHsW3IJ7gQ
|
|
44 |
* Supports Google Captcha (reCAPTCHA):
|
45 |
* Version 1
|
46 |
* Version 2
|
|
|
47 |
* Add custom code via plugin settings page
|
48 |
* Compatible with latest WordPress version
|
49 |
* Incredibly simple settings for fast setup without modifying code
|
@@ -92,7 +93,7 @@ Visit our Help Center if you have any questions, our friendly Support Team is ha
|
|
92 |
* Arabic (ar) (thanks to [SAID MOULLA](mailto:support@saidmoulla.com), www.saidmoulla.com)
|
93 |
* Brazilian Portuguese (pt_BR) (thanks to [Elton Fernandes Peetz Prado](mailto:epeetz@gmail.com))
|
94 |
* Bulgarian (bg_BG) (thanks to [Yasen Georgiev](mailto:me@ygeorgiev.com))
|
95 |
-
* Czech (cs_CZ) (thanks to [PaMaDeSSoft](mailto:info@pamadessoft.cz), www.pamadessoft.cz)
|
96 |
* Chinese Traditional (zh_TW) (thanks to [Nick Lai](mailto:nick20080808@gmail.com))
|
97 |
* Farsi/Persian (fa_IR) (thanks to [Amirreza Nasiri](mailto:nasiri.amirreza.96@gmail.com), www.bytegate.ir)
|
98 |
* French (fr_FR) (thanks to [Denis Bodorr](mailto:lefinnois@lefinnois.net))
|
@@ -116,7 +117,7 @@ Some of these translations are not complete. We are constantly adding new featur
|
|
116 |
|
117 |
= Credits =
|
118 |
|
119 |
-
* lib/recaptchalib.php - Copyright © 2007. Mike Crawford, Ben Maurer (reCAPTCHA - http://recaptcha.net). All Rights Reserved.
|
120 |
|
121 |
= Donate =
|
122 |
|
@@ -220,6 +221,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
220 |
|
221 |
== Changelog ==
|
222 |
|
|
|
|
|
|
|
|
|
223 |
= V1.28 - 14.04.2017 =
|
224 |
* Bugfix : Multiple Cross-Site Scripting (XSS) vulnerability was fixed.
|
225 |
|
@@ -349,6 +354,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
349 |
|
350 |
== Upgrade Notice ==
|
351 |
|
|
|
|
|
|
|
|
|
352 |
= V1.28 =
|
353 |
* Bugs fixed.
|
354 |
|
3 |
Donate link: https://bestwebsoft.com/donate/
|
4 |
Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.7.4
|
7 |
+
Stable tag: 1.29
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
44 |
* Supports Google Captcha (reCAPTCHA):
|
45 |
* Version 1
|
46 |
* Version 2
|
47 |
+
* Invisible reCAPTCHA [NEW]
|
48 |
* Add custom code via plugin settings page
|
49 |
* Compatible with latest WordPress version
|
50 |
* Incredibly simple settings for fast setup without modifying code
|
93 |
* Arabic (ar) (thanks to [SAID MOULLA](mailto:support@saidmoulla.com), www.saidmoulla.com)
|
94 |
* Brazilian Portuguese (pt_BR) (thanks to [Elton Fernandes Peetz Prado](mailto:epeetz@gmail.com))
|
95 |
* Bulgarian (bg_BG) (thanks to [Yasen Georgiev](mailto:me@ygeorgiev.com))
|
96 |
+
* Czech (cs_CZ) (thanks to [Michal Kučera](mailto:kucerami@gmail.com), www.n0lim.it, [PaMaDeSSoft](mailto:info@pamadessoft.cz), www.pamadessoft.cz)
|
97 |
* Chinese Traditional (zh_TW) (thanks to [Nick Lai](mailto:nick20080808@gmail.com))
|
98 |
* Farsi/Persian (fa_IR) (thanks to [Amirreza Nasiri](mailto:nasiri.amirreza.96@gmail.com), www.bytegate.ir)
|
99 |
* French (fr_FR) (thanks to [Denis Bodorr](mailto:lefinnois@lefinnois.net))
|
117 |
|
118 |
= Credits =
|
119 |
|
120 |
+
* lib/recaptchalib.php - Copyright © 2007. Mike Crawford, Ben Maurer (reCAPTCHA - <http://recaptcha.net>). All Rights Reserved.
|
121 |
|
122 |
= Donate =
|
123 |
|
221 |
|
222 |
== Changelog ==
|
223 |
|
224 |
+
= V1.29 - 27.04.2017 =
|
225 |
+
* NEW : Invisible reCAPTCHA version has been added.
|
226 |
+
* Update : The Czech language file has been updated.
|
227 |
+
|
228 |
= V1.28 - 14.04.2017 =
|
229 |
* Bugfix : Multiple Cross-Site Scripting (XSS) vulnerability was fixed.
|
230 |
|
354 |
|
355 |
== Upgrade Notice ==
|
356 |
|
357 |
+
= V1.29 =
|
358 |
+
* Functionality expanded.
|
359 |
+
* Languages updated.
|
360 |
+
|
361 |
= V1.28 =
|
362 |
* Bugs fixed.
|
363 |
|
screenshot-8.png
CHANGED
Binary file
|