Advanced noCaptcha & invisible Captcha - Version 5.4

Version Description

  • Use js for loop instead of php for loop
  • Use number_formate_i18n to translate float
  • Tested upto updated.
Download this release

Release Info

Developer shamim51
Plugin Icon 128x128 Advanced noCaptcha & invisible Captcha
Version 5.4
Comparing to
See all releases

Code changes from version 5.3 to 5.4

admin/settings.php CHANGED
@@ -75,6 +75,10 @@ class ANR_Settings {
75
  }
76
 
77
  function get_fields() {
 
 
 
 
78
  $fields = array(
79
  'captcha_version' => array(
80
  'label' => __( 'Version', 'advanced-nocaptcha-recaptcha' ),
@@ -238,19 +242,7 @@ class ANR_Settings {
238
  'type' => 'select',
239
  'class' => 'regular hidden anr-show-field-for-v3',
240
  'std' => '0.5',
241
- 'options' => array(
242
- '0.0' => __( '0.0', 'advanced-nocaptcha-recaptcha' ),
243
- '0.1' => __( '0.1', 'advanced-nocaptcha-recaptcha' ),
244
- '0.2' => __( '0.2', 'advanced-nocaptcha-recaptcha' ),
245
- '0.3' => __( '0.3', 'advanced-nocaptcha-recaptcha' ),
246
- '0.4' => __( '0.4', 'advanced-nocaptcha-recaptcha' ),
247
- '0.5' => __( '0.5', 'advanced-nocaptcha-recaptcha' ),
248
- '0.6' => __( '0.6', 'advanced-nocaptcha-recaptcha' ),
249
- '0.7' => __( '0.7', 'advanced-nocaptcha-recaptcha' ),
250
- '0.8' => __( '0.8', 'advanced-nocaptcha-recaptcha' ),
251
- '0.9' => __( '0.9', 'advanced-nocaptcha-recaptcha' ),
252
- '1.0' => __( '1.0', 'advanced-nocaptcha-recaptcha' ),
253
- ),
254
  'desc' => __( 'Higher means more sensitive', 'advanced-nocaptcha-recaptcha' ),
255
  ),
256
  'loggedin_hide' => array(
75
  }
76
 
77
  function get_fields() {
78
+ $score_values = [];
79
+ for ( $i = 0.0; $i <= 1; $i += 0.1 ) {
80
+ $score_values[ "$i" ] = number_format_i18n( $i, 1 );
81
+ }
82
  $fields = array(
83
  'captcha_version' => array(
84
  'label' => __( 'Version', 'advanced-nocaptcha-recaptcha' ),
242
  'type' => 'select',
243
  'class' => 'regular hidden anr-show-field-for-v3',
244
  'std' => '0.5',
245
+ 'options' => $score_values,
 
 
 
 
 
 
 
 
 
 
 
 
246
  'desc' => __( 'Higher means more sensitive', 'advanced-nocaptcha-recaptcha' ),
247
  ),
248
  'loggedin_hide' => array(
advanced-nocaptcha-recaptcha.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Advanced noCaptcha & invisible Captcha
4
  Plugin URI: https://www.shamimsplugins.com/contact-us/
5
  Description: Show noCaptcha or invisible captcha in Comment Form, bbPress, BuddyPress, WooCommerce, CF7, Login, Register, Lost Password, Reset Password. Also can implement in any other form easily.
6
- Version: 5.3
7
  Author: Shamim Hasan
8
  Author URI: https://www.shamimsplugins.com/contact-us/
9
  Text Domain: advanced-nocaptcha-recaptcha
@@ -40,7 +40,7 @@ class ANR {
40
  }
41
 
42
  private function constants() {
43
- define( 'ANR_PLUGIN_VERSION', '5.3' );
44
  define( 'ANR_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
45
  define( 'ANR_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
46
  define( 'ANR_PLUGIN_FILE', __FILE__ );
3
  Plugin Name: Advanced noCaptcha & invisible Captcha
4
  Plugin URI: https://www.shamimsplugins.com/contact-us/
5
  Description: Show noCaptcha or invisible captcha in Comment Form, bbPress, BuddyPress, WooCommerce, CF7, Login, Register, Lost Password, Reset Password. Also can implement in any other form easily.
6
+ Version: 5.4
7
  Author: Shamim Hasan
8
  Author URI: https://www.shamimsplugins.com/contact-us/
9
  Text Domain: advanced-nocaptcha-recaptcha
40
  }
41
 
42
  private function constants() {
43
+ define( 'ANR_PLUGIN_VERSION', '5.4' );
44
  define( 'ANR_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
45
  define( 'ANR_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
46
  define( 'ANR_PLUGIN_FILE', __FILE__ );
anr-captcha-class.php CHANGED
@@ -177,31 +177,34 @@ if ( ! class_exists( 'anr_captcha_class' ) ) {
177
  }
178
 
179
  function v2_checkbox_script() {
180
- $number = $this->total_captcha();
181
  ?>
182
  <script type="text/javascript">
183
  var anr_onloadCallback = function() {
184
- var anr_obj = {
185
- 'sitekey' : '<?php echo esc_js( trim( anr_get_option( 'site_key' ) ) ); ?>',
186
- 'size' : '<?php echo esc_js( anr_get_option( 'size', 'normal' ) ); ?>',
187
- 'theme' : '<?php echo esc_js( anr_get_option( 'theme', 'light' ) ); ?>',
188
- };
189
- <?php
190
- for ( $num = 1; $num <= $number; $num++ ) {
191
- ?>
192
- var anr_captcha_<?php echo $num; ?>;
193
- anr_captcha_<?php echo $num; ?> = grecaptcha.render('anr_captcha_field_<?php echo $num; ?>', anr_obj );
194
- if ( typeof wc_checkout_params !== 'undefined' ) {
195
- jQuery( document.body ).on( 'checkout_error', function(){
196
- grecaptcha.reset(anr_captcha_<?php echo $num; ?>);
197
  });
198
- }
199
- if ( typeof wpcf7 !== 'undefined' ) {
200
- document.addEventListener( 'wpcf7submit', function() {
201
- grecaptcha.reset(anr_captcha_<?php echo $num; ?>);
202
- }, false );
203
- }
204
- <?php } ?>
 
 
 
 
 
205
  };
206
  </script>
207
  <?php
@@ -237,7 +240,7 @@ if ( ! class_exists( 'anr_captcha_class' ) ) {
237
  'theme' : '<?php echo esc_js( anr_get_option( 'theme', 'light' ) ); ?>',
238
  'badge' : '<?php echo esc_js( anr_get_option( 'badge', 'bottomright' ) ); ?>',
239
  'callback' : function ( token ) {
240
- if( typeof jQuery != 'undefined' ){
241
  jQuery(form).submit();
242
  grecaptcha.reset( anr_captcha );
243
  } else {
177
  }
178
 
179
  function v2_checkbox_script() {
 
180
  ?>
181
  <script type="text/javascript">
182
  var anr_onloadCallback = function() {
183
+ for ( var i = 0; i < document.forms.length; i++ ) {
184
+ var form = document.forms[i];
185
+ var captcha_div = form.querySelector( '.anr_captcha_field_div' );
186
+
187
+ if ( null === captcha_div )
188
+ continue;
189
+ captcha_div.innerHTML = '';
190
+ ( function( form ) {
191
+ var anr_captcha = grecaptcha.render( captcha_div,{
192
+ 'sitekey' : '<?php echo esc_js( trim( anr_get_option( 'site_key' ) ) ); ?>',
193
+ 'size' : '<?php echo esc_js( anr_get_option( 'size', 'normal' ) ); ?>',
194
+ 'theme' : '<?php echo esc_js( anr_get_option( 'theme', 'light' ) ); ?>'
 
195
  });
196
+ if ( typeof wc_checkout_params !== 'undefined' ) {
197
+ jQuery( document.body ).on( 'checkout_error', function(){
198
+ grecaptcha.reset(anr_captcha);
199
+ });
200
+ }
201
+ if ( typeof wpcf7 !== 'undefined' ) {
202
+ document.addEventListener( 'wpcf7submit', function() {
203
+ grecaptcha.reset(anr_captcha);
204
+ }, false );
205
+ }
206
+ })(form);
207
+ }
208
  };
209
  </script>
210
  <?php
240
  'theme' : '<?php echo esc_js( anr_get_option( 'theme', 'light' ) ); ?>',
241
  'badge' : '<?php echo esc_js( anr_get_option( 'badge', 'bottomright' ) ); ?>',
242
  'callback' : function ( token ) {
243
+ if( typeof jQuery !== 'undefined' ){
244
  jQuery(form).submit();
245
  grecaptcha.reset( anr_captcha );
246
  } else {
languages/advanced-nocaptcha-recaptcha.pot CHANGED
@@ -1,8 +1,8 @@
1
  #, fuzzy
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Advanced noCaptcha reCaptcha 5.1\n"
5
- "POT-Creation-Date: 2019-04-25 13:06+0600\n"
6
  "PO-Revision-Date: 2018-04-12 17:20+0600\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Shamim\n"
@@ -10,7 +10,7 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.1.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
@@ -35,530 +35,486 @@ msgstr ""
35
  msgid "Other Settings"
36
  msgstr ""
37
 
38
- #: admin/settings.php:80
39
  msgid "Version"
40
  msgstr ""
41
 
42
- #: admin/settings.php:86
43
  msgid "V2 \"I'm not a robot\""
44
  msgstr ""
45
 
46
- #: admin/settings.php:87
47
  msgid "V2 Invisible"
48
  msgstr ""
49
 
50
- #: admin/settings.php:88
51
  msgid "V3"
52
  msgstr ""
53
 
54
- #: admin/settings.php:90
55
  msgid ""
56
  "Select your reCaptcha version. Make sure to use site key and secret key for "
57
  "your selected version."
58
  msgstr ""
59
 
60
- #: admin/settings.php:93
61
  msgid "Site Key"
62
  msgstr ""
63
 
64
- #: admin/settings.php:97
65
  msgid "Secret Key"
66
  msgstr ""
67
 
68
- #: admin/settings.php:101
69
  msgid "Enabled Forms"
70
  msgstr ""
71
 
72
- #: admin/settings.php:106
73
  msgid "Login Form"
74
  msgstr ""
75
 
76
- #: admin/settings.php:107
77
  msgid "Registration Form"
78
  msgstr ""
79
 
80
- #: admin/settings.php:108
81
  msgid "Multisite User Signup Form"
82
  msgstr ""
83
 
84
- #: admin/settings.php:109
85
  msgid "Lost Password Form"
86
  msgstr ""
87
 
88
- #: admin/settings.php:110
89
  msgid "Reset Password Form"
90
  msgstr ""
91
 
92
- #: admin/settings.php:111
93
  msgid "Comment Form"
94
  msgstr ""
95
 
96
- #: admin/settings.php:112
97
  msgid "bbPress New topic"
98
  msgstr ""
99
 
100
- #: admin/settings.php:113
101
  msgid "bbPress reply to topic"
102
  msgstr ""
103
 
104
- #: admin/settings.php:114
105
  msgid "BuddyPress register"
106
  msgstr ""
107
 
108
- #: admin/settings.php:115
109
  msgid "WooCommerce Checkout"
110
  msgstr ""
111
 
112
- #: admin/settings.php:117
113
  #, php-format
114
  msgid "For other forms see <a href=\"%s\">Instruction</a>"
115
  msgstr ""
116
 
117
- #: admin/settings.php:120
118
  msgid "Error Message"
119
  msgstr ""
120
 
121
- #: admin/settings.php:122
122
  msgid "Please solve Captcha correctly"
123
  msgstr ""
124
 
125
- #: admin/settings.php:125
126
  msgid "Captcha Language"
127
  msgstr ""
128
 
129
- #: admin/settings.php:130
130
  msgid "Auto Detect"
131
  msgstr ""
132
 
133
- #: admin/settings.php:131
134
  msgid "Arabic"
135
  msgstr ""
136
 
137
- #: admin/settings.php:132
138
  msgid "Bulgarian"
139
  msgstr ""
140
 
141
- #: admin/settings.php:133
142
  msgid "Catalan"
143
  msgstr ""
144
 
145
- #: admin/settings.php:134
146
  msgid "Chinese (Simplified)"
147
  msgstr ""
148
 
149
- #: admin/settings.php:135
150
  msgid "Chinese (Traditional)"
151
  msgstr ""
152
 
153
- #: admin/settings.php:136
154
  msgid "Croatian"
155
  msgstr ""
156
 
157
- #: admin/settings.php:137
158
  msgid "Czech"
159
  msgstr ""
160
 
161
- #: admin/settings.php:138
162
  msgid "Danish"
163
  msgstr ""
164
 
165
- #: admin/settings.php:139
166
  msgid "Dutch"
167
  msgstr ""
168
 
169
- #: admin/settings.php:140
170
  msgid "English (UK)"
171
  msgstr ""
172
 
173
- #: admin/settings.php:141
174
  msgid "English (US)"
175
  msgstr ""
176
 
177
- #: admin/settings.php:142
178
  msgid "Filipino"
179
  msgstr ""
180
 
181
- #: admin/settings.php:143
182
  msgid "Finnish"
183
  msgstr ""
184
 
185
- #: admin/settings.php:144
186
  msgid "French"
187
  msgstr ""
188
 
189
- #: admin/settings.php:145
190
  msgid "French (Canadian)"
191
  msgstr ""
192
 
193
- #: admin/settings.php:146
194
  msgid "German"
195
  msgstr ""
196
 
197
- #: admin/settings.php:147
198
  msgid "German (Austria)"
199
  msgstr ""
200
 
201
- #: admin/settings.php:148
202
  msgid "German (Switzerland)"
203
  msgstr ""
204
 
205
- #: admin/settings.php:149
206
  msgid "Greek"
207
  msgstr ""
208
 
209
- #: admin/settings.php:150
210
  msgid "Hebrew"
211
  msgstr ""
212
 
213
- #: admin/settings.php:151
214
  msgid "Hindi"
215
  msgstr ""
216
 
217
- #: admin/settings.php:152
218
  msgid "Hungarain"
219
  msgstr ""
220
 
221
- #: admin/settings.php:153
222
  msgid "Indonesian"
223
  msgstr ""
224
 
225
- #: admin/settings.php:154
226
  msgid "Italian"
227
  msgstr ""
228
 
229
- #: admin/settings.php:155
230
  msgid "Japanese"
231
  msgstr ""
232
 
233
- #: admin/settings.php:156
234
  msgid "Korean"
235
  msgstr ""
236
 
237
- #: admin/settings.php:157
238
  msgid "Latvian"
239
  msgstr ""
240
 
241
- #: admin/settings.php:158
242
  msgid "Lithuanian"
243
  msgstr ""
244
 
245
- #: admin/settings.php:159
246
  msgid "Norwegian"
247
  msgstr ""
248
 
249
- #: admin/settings.php:160
250
  msgid "Persian"
251
  msgstr ""
252
 
253
- #: admin/settings.php:161
254
  msgid "Polish"
255
  msgstr ""
256
 
257
- #: admin/settings.php:162
258
  msgid "Portuguese"
259
  msgstr ""
260
 
261
- #: admin/settings.php:163
262
  msgid "Portuguese (Brazil)"
263
  msgstr ""
264
 
265
- #: admin/settings.php:164
266
  msgid "Portuguese (Portugal)"
267
  msgstr ""
268
 
269
- #: admin/settings.php:165
270
  msgid "Romanian"
271
  msgstr ""
272
 
273
- #: admin/settings.php:166
274
  msgid "Russian"
275
  msgstr ""
276
 
277
- #: admin/settings.php:167
278
  msgid "Serbian"
279
  msgstr ""
280
 
281
- #: admin/settings.php:168
282
  msgid "Slovak"
283
  msgstr ""
284
 
285
- #: admin/settings.php:169
286
  msgid "Slovenian"
287
  msgstr ""
288
 
289
- #: admin/settings.php:170
290
  msgid "Spanish"
291
  msgstr ""
292
 
293
- #: admin/settings.php:171
294
  msgid "Spanish (Latin America)"
295
  msgstr ""
296
 
297
- #: admin/settings.php:172
298
  msgid "Swedish"
299
  msgstr ""
300
 
301
- #: admin/settings.php:173
302
  msgid "Thai"
303
  msgstr ""
304
 
305
- #: admin/settings.php:174
306
  msgid "Turkish"
307
  msgstr ""
308
 
309
- #: admin/settings.php:175
310
  msgid "Ukrainian"
311
  msgstr ""
312
 
313
- #: admin/settings.php:176
314
  msgid "Vietnamese"
315
  msgstr ""
316
 
317
- #: admin/settings.php:180
318
  msgid "Theme"
319
  msgstr ""
320
 
321
- #: admin/settings.php:186
322
  msgid "Light"
323
  msgstr ""
324
 
325
- #: admin/settings.php:187
326
  msgid "Dark"
327
  msgstr ""
328
 
329
- #: admin/settings.php:191
330
  msgid "Size"
331
  msgstr ""
332
 
333
- #: admin/settings.php:197
334
  msgid "Normal"
335
  msgstr ""
336
 
337
- #: admin/settings.php:198
338
  msgid "Compact"
339
  msgstr ""
340
 
341
- #: admin/settings.php:202
342
  msgid "Badge"
343
  msgstr ""
344
 
345
- #: admin/settings.php:208
346
  msgid "Bottom Right"
347
  msgstr ""
348
 
349
- #: admin/settings.php:209
350
  msgid "Bottom Left"
351
  msgstr ""
352
 
353
- #: admin/settings.php:210
354
  msgid "Inline"
355
  msgstr ""
356
 
357
- #: admin/settings.php:212
358
  msgid "Badge shows for invisible captcha"
359
  msgstr ""
360
 
361
- #: admin/settings.php:215
362
  msgid "Failed login Captcha"
363
  msgstr ""
364
 
365
- #: admin/settings.php:221
366
  msgid "Show login Captcha after how many failed attempts? 0 = show always"
367
  msgstr ""
368
 
369
- #: admin/settings.php:224
370
  msgid "v3 Script Load"
371
  msgstr ""
372
 
373
- #: admin/settings.php:230
374
  msgid "All Pages"
375
  msgstr ""
376
 
377
- #: admin/settings.php:231
378
  msgid "Form Pages"
379
  msgstr ""
380
 
381
- #: admin/settings.php:233
382
  msgid "Loading in All Pages help google for analytics"
383
  msgstr ""
384
 
385
- #: admin/settings.php:236
386
  msgid "Captcha Score"
387
  msgstr ""
388
 
389
- #: admin/settings.php:242
390
- msgid "0.0"
391
- msgstr ""
392
-
393
- #: admin/settings.php:243
394
- msgid "0.1"
395
- msgstr ""
396
-
397
- #: admin/settings.php:244
398
- msgid "0.2"
399
- msgstr ""
400
-
401
- #: admin/settings.php:245
402
- msgid "0.3"
403
- msgstr ""
404
-
405
  #: admin/settings.php:246
406
- msgid "0.4"
407
- msgstr ""
408
-
409
- #: admin/settings.php:247
410
- msgid "0.5"
411
- msgstr ""
412
-
413
- #: admin/settings.php:248
414
- msgid "0.6"
415
- msgstr ""
416
-
417
- #: admin/settings.php:249
418
- msgid "0.7"
419
- msgstr ""
420
-
421
- #: admin/settings.php:250
422
- msgid "0.8"
423
- msgstr ""
424
-
425
- #: admin/settings.php:251
426
- msgid "0.9"
427
- msgstr ""
428
-
429
- #: admin/settings.php:252
430
- msgid "1.0"
431
- msgstr ""
432
-
433
- #: admin/settings.php:254
434
  msgid "Higher means more sensitive"
435
  msgstr ""
436
 
437
- #: admin/settings.php:257
438
  msgid "Logged in Hide"
439
  msgstr ""
440
 
441
- #: admin/settings.php:261
442
  msgid "Hide Captcha for logged in users?"
443
  msgstr ""
444
 
445
- #: admin/settings.php:264
446
  msgid "Remove CSS"
447
  msgstr ""
448
 
449
- #: admin/settings.php:268
450
  msgid "Remove this plugin's css from login page?"
451
  msgstr ""
452
 
453
- #: admin/settings.php:269
454
  msgid "This css increase login page width to adjust with Captcha width."
455
  msgstr ""
456
 
457
- #: admin/settings.php:272
458
  msgid "No JS Captcha"
459
  msgstr ""
460
 
461
- #: admin/settings.php:276
462
  msgid "Show captcha if javascript disabled?"
463
  msgstr ""
464
 
465
- #: admin/settings.php:277
466
  msgid ""
467
  "If JavaScript is a requirement for your site, we advise that you do NOT "
468
  "check this."
469
  msgstr ""
470
 
471
- #: admin/settings.php:391
472
  #, php-format
473
  msgid "No hook defined for %s"
474
  msgstr ""
475
 
476
- #: admin/settings.php:414 admin/settings.php:439
477
  msgid "Advanced noCaptcha & invisible captcha Settings"
478
  msgstr ""
479
 
480
- #: admin/settings.php:414
481
  msgid "Advanced noCaptcha & invisible captcha"
482
  msgstr ""
483
 
484
- #: admin/settings.php:415
485
  msgid "Instruction"
486
  msgstr ""
487
 
488
- #: admin/settings.php:467
489
  msgid "Plugin Author"
490
  msgstr ""
491
 
492
- #: admin/settings.php:483
493
  msgid "Support Development"
494
  msgstr ""
495
 
496
- #: admin/settings.php:504
497
  msgid "Advanced noCaptcha reCaptcha Setup Instruction"
498
  msgstr ""
499
 
500
- #: admin/settings.php:509
501
  #, php-format
502
  msgid ""
503
  "Get your site key and secret key from <a href=\"%s\" target=\"_blank"
504
  "\">GOOGLE</a> if you do not have already."
505
  msgstr ""
506
 
507
- #: admin/settings.php:510
508
  #, php-format
509
  msgid "Goto %s page of this plugin and set up as you need. and ENJOY..."
510
  msgstr ""
511
 
512
- #: admin/settings.php:512
513
  msgid "Implement noCaptcha in Contact Form 7"
514
  msgstr ""
515
 
516
- #: admin/settings.php:513
517
  #, php-format
518
  msgid "To show noCaptcha use %s"
519
  msgstr ""
520
 
521
- #: admin/settings.php:515
522
  msgid "Implement noCaptcha in WooCommerce"
523
  msgstr ""
524
 
525
- #: admin/settings.php:516
526
  msgid ""
527
  "If Login Form, Registration Form, Lost Password Form, Reset Password Form is "
528
  "selected in SETTINGS page of this plugin they will show and verify Captcha "
529
  "in WooCommerce respective forms also."
530
  msgstr ""
531
 
532
- #: admin/settings.php:518
533
  msgid "If you want to implement noCaptcha in any other custom form"
534
  msgstr ""
535
 
536
- #: admin/settings.php:519
537
  #, php-format
538
  msgid "To show noCaptcha in a form use %1$s OR %2$s"
539
  msgstr ""
540
 
541
- #: admin/settings.php:520
542
  #, php-format
543
  msgid "To verify use %s. It will return true on success otherwise false."
544
  msgstr ""
545
 
546
- #: admin/settings.php:521
547
  #, php-format
548
  msgid ""
549
  "For paid support pleasse visit <a href=\"%s\" target=\"_blank\">Advanced "
550
  "noCaptcha reCaptcha</a>"
551
  msgstr ""
552
 
553
- #: admin/settings.php:539
554
  msgid "Settings"
555
  msgstr ""
556
 
557
- #: anr-captcha-class.php:104
558
  msgid "ERROR"
559
  msgstr ""
560
 
561
- #: anr-captcha-class.php:560
562
  msgid "Comment Submission Failure"
563
  msgstr ""
564
 
1
  #, fuzzy
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Advanced noCaptcha reCaptcha 5.4\n"
5
+ "POT-Creation-Date: 2019-05-12 15:21+0600\n"
6
  "PO-Revision-Date: 2018-04-12 17:20+0600\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Shamim\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.2.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
35
  msgid "Other Settings"
36
  msgstr ""
37
 
38
+ #: admin/settings.php:84
39
  msgid "Version"
40
  msgstr ""
41
 
42
+ #: admin/settings.php:90
43
  msgid "V2 \"I'm not a robot\""
44
  msgstr ""
45
 
46
+ #: admin/settings.php:91
47
  msgid "V2 Invisible"
48
  msgstr ""
49
 
50
+ #: admin/settings.php:92
51
  msgid "V3"
52
  msgstr ""
53
 
54
+ #: admin/settings.php:94
55
  msgid ""
56
  "Select your reCaptcha version. Make sure to use site key and secret key for "
57
  "your selected version."
58
  msgstr ""
59
 
60
+ #: admin/settings.php:97
61
  msgid "Site Key"
62
  msgstr ""
63
 
64
+ #: admin/settings.php:101
65
  msgid "Secret Key"
66
  msgstr ""
67
 
68
+ #: admin/settings.php:105
69
  msgid "Enabled Forms"
70
  msgstr ""
71
 
72
+ #: admin/settings.php:110
73
  msgid "Login Form"
74
  msgstr ""
75
 
76
+ #: admin/settings.php:111
77
  msgid "Registration Form"
78
  msgstr ""
79
 
80
+ #: admin/settings.php:112
81
  msgid "Multisite User Signup Form"
82
  msgstr ""
83
 
84
+ #: admin/settings.php:113
85
  msgid "Lost Password Form"
86
  msgstr ""
87
 
88
+ #: admin/settings.php:114
89
  msgid "Reset Password Form"
90
  msgstr ""
91
 
92
+ #: admin/settings.php:115
93
  msgid "Comment Form"
94
  msgstr ""
95
 
96
+ #: admin/settings.php:116
97
  msgid "bbPress New topic"
98
  msgstr ""
99
 
100
+ #: admin/settings.php:117
101
  msgid "bbPress reply to topic"
102
  msgstr ""
103
 
104
+ #: admin/settings.php:118
105
  msgid "BuddyPress register"
106
  msgstr ""
107
 
108
+ #: admin/settings.php:119
109
  msgid "WooCommerce Checkout"
110
  msgstr ""
111
 
112
+ #: admin/settings.php:121
113
  #, php-format
114
  msgid "For other forms see <a href=\"%s\">Instruction</a>"
115
  msgstr ""
116
 
117
+ #: admin/settings.php:124
118
  msgid "Error Message"
119
  msgstr ""
120
 
121
+ #: admin/settings.php:126
122
  msgid "Please solve Captcha correctly"
123
  msgstr ""
124
 
125
+ #: admin/settings.php:129
126
  msgid "Captcha Language"
127
  msgstr ""
128
 
129
+ #: admin/settings.php:134
130
  msgid "Auto Detect"
131
  msgstr ""
132
 
133
+ #: admin/settings.php:135
134
  msgid "Arabic"
135
  msgstr ""
136
 
137
+ #: admin/settings.php:136
138
  msgid "Bulgarian"
139
  msgstr ""
140
 
141
+ #: admin/settings.php:137
142
  msgid "Catalan"
143
  msgstr ""
144
 
145
+ #: admin/settings.php:138
146
  msgid "Chinese (Simplified)"
147
  msgstr ""
148
 
149
+ #: admin/settings.php:139
150
  msgid "Chinese (Traditional)"
151
  msgstr ""
152
 
153
+ #: admin/settings.php:140
154
  msgid "Croatian"
155
  msgstr ""
156
 
157
+ #: admin/settings.php:141
158
  msgid "Czech"
159
  msgstr ""
160
 
161
+ #: admin/settings.php:142
162
  msgid "Danish"
163
  msgstr ""
164
 
165
+ #: admin/settings.php:143
166
  msgid "Dutch"
167
  msgstr ""
168
 
169
+ #: admin/settings.php:144
170
  msgid "English (UK)"
171
  msgstr ""
172
 
173
+ #: admin/settings.php:145
174
  msgid "English (US)"
175
  msgstr ""
176
 
177
+ #: admin/settings.php:146
178
  msgid "Filipino"
179
  msgstr ""
180
 
181
+ #: admin/settings.php:147
182
  msgid "Finnish"
183
  msgstr ""
184
 
185
+ #: admin/settings.php:148
186
  msgid "French"
187
  msgstr ""
188
 
189
+ #: admin/settings.php:149
190
  msgid "French (Canadian)"
191
  msgstr ""
192
 
193
+ #: admin/settings.php:150
194
  msgid "German"
195
  msgstr ""
196
 
197
+ #: admin/settings.php:151
198
  msgid "German (Austria)"
199
  msgstr ""
200
 
201
+ #: admin/settings.php:152
202
  msgid "German (Switzerland)"
203
  msgstr ""
204
 
205
+ #: admin/settings.php:153
206
  msgid "Greek"
207
  msgstr ""
208
 
209
+ #: admin/settings.php:154
210
  msgid "Hebrew"
211
  msgstr ""
212
 
213
+ #: admin/settings.php:155
214
  msgid "Hindi"
215
  msgstr ""
216
 
217
+ #: admin/settings.php:156
218
  msgid "Hungarain"
219
  msgstr ""
220
 
221
+ #: admin/settings.php:157
222
  msgid "Indonesian"
223
  msgstr ""
224
 
225
+ #: admin/settings.php:158
226
  msgid "Italian"
227
  msgstr ""
228
 
229
+ #: admin/settings.php:159
230
  msgid "Japanese"
231
  msgstr ""
232
 
233
+ #: admin/settings.php:160
234
  msgid "Korean"
235
  msgstr ""
236
 
237
+ #: admin/settings.php:161
238
  msgid "Latvian"
239
  msgstr ""
240
 
241
+ #: admin/settings.php:162
242
  msgid "Lithuanian"
243
  msgstr ""
244
 
245
+ #: admin/settings.php:163
246
  msgid "Norwegian"
247
  msgstr ""
248
 
249
+ #: admin/settings.php:164
250
  msgid "Persian"
251
  msgstr ""
252
 
253
+ #: admin/settings.php:165
254
  msgid "Polish"
255
  msgstr ""
256
 
257
+ #: admin/settings.php:166
258
  msgid "Portuguese"
259
  msgstr ""
260
 
261
+ #: admin/settings.php:167
262
  msgid "Portuguese (Brazil)"
263
  msgstr ""
264
 
265
+ #: admin/settings.php:168
266
  msgid "Portuguese (Portugal)"
267
  msgstr ""
268
 
269
+ #: admin/settings.php:169
270
  msgid "Romanian"
271
  msgstr ""
272
 
273
+ #: admin/settings.php:170
274
  msgid "Russian"
275
  msgstr ""
276
 
277
+ #: admin/settings.php:171
278
  msgid "Serbian"
279
  msgstr ""
280
 
281
+ #: admin/settings.php:172
282
  msgid "Slovak"
283
  msgstr ""
284
 
285
+ #: admin/settings.php:173
286
  msgid "Slovenian"
287
  msgstr ""
288
 
289
+ #: admin/settings.php:174
290
  msgid "Spanish"
291
  msgstr ""
292
 
293
+ #: admin/settings.php:175
294
  msgid "Spanish (Latin America)"
295
  msgstr ""
296
 
297
+ #: admin/settings.php:176
298
  msgid "Swedish"
299
  msgstr ""
300
 
301
+ #: admin/settings.php:177
302
  msgid "Thai"
303
  msgstr ""
304
 
305
+ #: admin/settings.php:178
306
  msgid "Turkish"
307
  msgstr ""
308
 
309
+ #: admin/settings.php:179
310
  msgid "Ukrainian"
311
  msgstr ""
312
 
313
+ #: admin/settings.php:180
314
  msgid "Vietnamese"
315
  msgstr ""
316
 
317
+ #: admin/settings.php:184
318
  msgid "Theme"
319
  msgstr ""
320
 
321
+ #: admin/settings.php:190
322
  msgid "Light"
323
  msgstr ""
324
 
325
+ #: admin/settings.php:191
326
  msgid "Dark"
327
  msgstr ""
328
 
329
+ #: admin/settings.php:195
330
  msgid "Size"
331
  msgstr ""
332
 
333
+ #: admin/settings.php:201
334
  msgid "Normal"
335
  msgstr ""
336
 
337
+ #: admin/settings.php:202
338
  msgid "Compact"
339
  msgstr ""
340
 
341
+ #: admin/settings.php:206
342
  msgid "Badge"
343
  msgstr ""
344
 
345
+ #: admin/settings.php:212
346
  msgid "Bottom Right"
347
  msgstr ""
348
 
349
+ #: admin/settings.php:213
350
  msgid "Bottom Left"
351
  msgstr ""
352
 
353
+ #: admin/settings.php:214
354
  msgid "Inline"
355
  msgstr ""
356
 
357
+ #: admin/settings.php:216
358
  msgid "Badge shows for invisible captcha"
359
  msgstr ""
360
 
361
+ #: admin/settings.php:219
362
  msgid "Failed login Captcha"
363
  msgstr ""
364
 
365
+ #: admin/settings.php:225
366
  msgid "Show login Captcha after how many failed attempts? 0 = show always"
367
  msgstr ""
368
 
369
+ #: admin/settings.php:228
370
  msgid "v3 Script Load"
371
  msgstr ""
372
 
373
+ #: admin/settings.php:234
374
  msgid "All Pages"
375
  msgstr ""
376
 
377
+ #: admin/settings.php:235
378
  msgid "Form Pages"
379
  msgstr ""
380
 
381
+ #: admin/settings.php:237
382
  msgid "Loading in All Pages help google for analytics"
383
  msgstr ""
384
 
385
+ #: admin/settings.php:240
386
  msgid "Captcha Score"
387
  msgstr ""
388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
  #: admin/settings.php:246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390
  msgid "Higher means more sensitive"
391
  msgstr ""
392
 
393
+ #: admin/settings.php:249
394
  msgid "Logged in Hide"
395
  msgstr ""
396
 
397
+ #: admin/settings.php:253
398
  msgid "Hide Captcha for logged in users?"
399
  msgstr ""
400
 
401
+ #: admin/settings.php:256
402
  msgid "Remove CSS"
403
  msgstr ""
404
 
405
+ #: admin/settings.php:260
406
  msgid "Remove this plugin's css from login page?"
407
  msgstr ""
408
 
409
+ #: admin/settings.php:261
410
  msgid "This css increase login page width to adjust with Captcha width."
411
  msgstr ""
412
 
413
+ #: admin/settings.php:264
414
  msgid "No JS Captcha"
415
  msgstr ""
416
 
417
+ #: admin/settings.php:268
418
  msgid "Show captcha if javascript disabled?"
419
  msgstr ""
420
 
421
+ #: admin/settings.php:269
422
  msgid ""
423
  "If JavaScript is a requirement for your site, we advise that you do NOT "
424
  "check this."
425
  msgstr ""
426
 
427
+ #: admin/settings.php:383
428
  #, php-format
429
  msgid "No hook defined for %s"
430
  msgstr ""
431
 
432
+ #: admin/settings.php:406 admin/settings.php:431
433
  msgid "Advanced noCaptcha & invisible captcha Settings"
434
  msgstr ""
435
 
436
+ #: admin/settings.php:406
437
  msgid "Advanced noCaptcha & invisible captcha"
438
  msgstr ""
439
 
440
+ #: admin/settings.php:407
441
  msgid "Instruction"
442
  msgstr ""
443
 
444
+ #: admin/settings.php:459
445
  msgid "Plugin Author"
446
  msgstr ""
447
 
448
+ #: admin/settings.php:475
449
  msgid "Support Development"
450
  msgstr ""
451
 
452
+ #: admin/settings.php:496
453
  msgid "Advanced noCaptcha reCaptcha Setup Instruction"
454
  msgstr ""
455
 
456
+ #: admin/settings.php:501
457
  #, php-format
458
  msgid ""
459
  "Get your site key and secret key from <a href=\"%s\" target=\"_blank"
460
  "\">GOOGLE</a> if you do not have already."
461
  msgstr ""
462
 
463
+ #: admin/settings.php:502
464
  #, php-format
465
  msgid "Goto %s page of this plugin and set up as you need. and ENJOY..."
466
  msgstr ""
467
 
468
+ #: admin/settings.php:504
469
  msgid "Implement noCaptcha in Contact Form 7"
470
  msgstr ""
471
 
472
+ #: admin/settings.php:505
473
  #, php-format
474
  msgid "To show noCaptcha use %s"
475
  msgstr ""
476
 
477
+ #: admin/settings.php:507
478
  msgid "Implement noCaptcha in WooCommerce"
479
  msgstr ""
480
 
481
+ #: admin/settings.php:508
482
  msgid ""
483
  "If Login Form, Registration Form, Lost Password Form, Reset Password Form is "
484
  "selected in SETTINGS page of this plugin they will show and verify Captcha "
485
  "in WooCommerce respective forms also."
486
  msgstr ""
487
 
488
+ #: admin/settings.php:510
489
  msgid "If you want to implement noCaptcha in any other custom form"
490
  msgstr ""
491
 
492
+ #: admin/settings.php:511
493
  #, php-format
494
  msgid "To show noCaptcha in a form use %1$s OR %2$s"
495
  msgstr ""
496
 
497
+ #: admin/settings.php:512
498
  #, php-format
499
  msgid "To verify use %s. It will return true on success otherwise false."
500
  msgstr ""
501
 
502
+ #: admin/settings.php:513
503
  #, php-format
504
  msgid ""
505
  "For paid support pleasse visit <a href=\"%s\" target=\"_blank\">Advanced "
506
  "noCaptcha reCaptcha</a>"
507
  msgstr ""
508
 
509
+ #: admin/settings.php:531
510
  msgid "Settings"
511
  msgstr ""
512
 
513
+ #: anr-captcha-class.php:108
514
  msgid "ERROR"
515
  msgstr ""
516
 
517
+ #: anr-captcha-class.php:567
518
  msgid "Comment Submission Failure"
519
  msgstr ""
520
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: shamim51
3
  Tags: recaptcha,nocaptcha,invisible,no captcha,bot,spam,captcha,woocommerce captcha,woocommerce nocaptcha, woocommerce,widget,plugin,sidebar,shortcode,page,posts,comments,google,bbpress,multisite,multiple,v2,v3
4
  Donate link: https://www.shamimsplugins.com/products/advanced-nocaptcha-and-invisible-captcha-pro/
5
  Requires at least: 4.4
6
- Tested up to: 5.1.1
7
- Stable tag: 5.3
8
  Requires PHP: 5.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -88,6 +88,12 @@ You can access your file via FTP or file manager and rename "advanced-nocaptcha-
88
 
89
  == Changelog ==
90
 
 
 
 
 
 
 
91
  = 5.3 =
92
 
93
  * Fix: Compatibility issue with reCaptcha v3 and CF7 version 5.1 & 5.1.1
3
  Tags: recaptcha,nocaptcha,invisible,no captcha,bot,spam,captcha,woocommerce captcha,woocommerce nocaptcha, woocommerce,widget,plugin,sidebar,shortcode,page,posts,comments,google,bbpress,multisite,multiple,v2,v3
4
  Donate link: https://www.shamimsplugins.com/products/advanced-nocaptcha-and-invisible-captcha-pro/
5
  Requires at least: 4.4
6
+ Tested up to: 5.2
7
+ Stable tag: 5.4
8
  Requires PHP: 5.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
88
 
89
  == Changelog ==
90
 
91
+ = 5.4 =
92
+
93
+ * Use js for loop instead of php for loop
94
+ * Use number_formate_i18n to translate float
95
+ * Tested upto updated.
96
+
97
  = 5.3 =
98
 
99
  * Fix: Compatibility issue with reCaptcha v3 and CF7 version 5.1 & 5.1.1