Antispam Bee - Version 2.6.5

Version Description

  • English

    • Fix: Return parameters on dashboard_glance_items callback / thx @toscho
    • New function: Trust commenters with a Gravatar / thx @glueckpress
    • Additional plausibility checks and filters
    • Release time investment (Development & QA): 12 h
  • Deutsch

    • Fix: Parameter-Rckgabe bei dashboard_glance_items / thx @toscho
    • Neue Funktion: Kommentatoren mit Gravatar vertrauen / thx @glueckpress
    • Zustzliche Plausibilittsprfungen und Filter
    • Release-Zeitaufwand (Development & QA): 12 Stunden
Download this release

Release Info

Developer sergej.mueller
Plugin Icon 128x128 Antispam Bee
Version 2.6.5
Comparing to
See all releases

Code changes from version 2.6.4 to 2.6.5

antispam_bee.php CHANGED
@@ -8,11 +8,11 @@ Author: Sergej Müller
8
  Author URI: http://wpcoder.de
9
  Plugin URI: http://antispambee.com
10
  License: GPLv2 or later
11
- Version: 2.6.4
12
  */
13
 
14
  /*
15
- Copyright (C) 2009-2014 Sergej Müller
16
 
17
  This program is free software; you can redistribute it and/or modify
18
  it under the terms of the GNU General Public License as published by
@@ -57,7 +57,7 @@ class Antispam_Bee {
57
  * "Konstruktor" der Klasse
58
  *
59
  * @since 0.1
60
- * @change 2.6.3
61
  */
62
 
63
  public static function init()
@@ -109,7 +109,7 @@ class Antispam_Bee {
109
  'load_plugin_lang'
110
  )
111
  );
112
- add_action(
113
  'dashboard_glance_items',
114
  array(
115
  __CLASS__,
@@ -338,7 +338,7 @@ class Antispam_Bee {
338
  * Initialisierung der internen Variablen
339
  *
340
  * @since 2.4
341
- * @change 2.6.4
342
  */
343
 
344
  private static function _init_internal_vars()
@@ -353,6 +353,7 @@ class Antispam_Bee {
353
  'regexp_check' => 1,
354
  'spam_ip' => 1,
355
  'already_commented' => 1,
 
356
  'time_check' => 0,
357
  'ignore_pings' => 0,
358
  'always_allowed' => 0,
@@ -526,8 +527,7 @@ class Antispam_Bee {
526
  $input,
527
  array(
528
  '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=ZAQUT9RLPW8QN" target="_blank">PayPal</a>',
529
- '<a href="https://flattr.com/t/1323822" target="_blank">Flattr</a>',
530
- '<a href="https://www.amazon.de/registry/wishlist/2U5I7F9649LOJ/" target="_blank">Wishlist</a>'
531
  )
532
  );
533
  }
@@ -670,35 +670,36 @@ class Antispam_Bee {
670
  * Anzeige des Spam-Counters auf dem Dashboard
671
  *
672
  * @since 0.1
673
- * @change 2.6.0
 
 
 
674
  */
675
 
676
- public static function add_dashboard_count()
677
  {
678
- /* Aktiv? */
679
- if ( ! self::get_option('dashboard_count') ) {
680
- return;
681
- }
682
-
683
- /* Add list item icon */
684
- echo '<style>#dashboard_right_now .ab-count a:before {content: "\f117"}</style>';
685
-
686
- /* Ausgabe */
687
- echo sprintf(
688
- '<li class="ab-count">
689
- <a href="%s">
690
- %s %s
691
- </a>
692
- </li>',
693
- add_query_arg(
694
- array(
695
- 'page' => 'antispam_bee'
696
- ),
697
- admin_url('options-general.php')
698
- ),
699
- esc_html( self::_get_spam_count() ),
700
- esc_html__('Blocked', 'antispam_bee')
701
- );
702
  }
703
 
704
 
@@ -1143,7 +1144,8 @@ class Antispam_Bee {
1143
  array(
1144
  __CLASS__,
1145
  'get_client_ip'
1146
- )
 
1147
  );
1148
 
1149
  /* Request params */
@@ -1346,7 +1348,7 @@ class Antispam_Bee {
1346
  * Prüfung den Kommentar
1347
  *
1348
  * @since 2.4
1349
- * @change 2.6.4
1350
  *
1351
  * @param array $comment Daten des Kommentars
1352
  * @return array Array mit dem Verdachtsgrund [optional]
@@ -1386,10 +1388,15 @@ class Antispam_Bee {
1386
  $options = self::get_options();
1387
 
1388
  /* Bereits kommentiert? */
1389
- if ( $options['already_commented'] && !empty($email) && self::_is_approved_email($email) ) {
1390
  return;
1391
  }
1392
 
 
 
 
 
 
1393
  /* Bot erkannt */
1394
  if ( ! empty($_POST['ab_spam__hidden_field']) ) {
1395
  return array(
@@ -1463,6 +1470,36 @@ class Antispam_Bee {
1463
  }
1464
 
1465
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1466
  /**
1467
  * Check for comment action time
1468
  *
@@ -1576,7 +1613,7 @@ class Antispam_Bee {
1576
  }
1577
 
1578
  /* Perform regex */
1579
- if ( preg_match('/' .$regexp. '/isu', $comment[$field]) ) {
1580
  $hits[$field] = true;
1581
  }
1582
  }
@@ -1977,7 +2014,7 @@ class Antispam_Bee {
1977
  * Check for an IPv4 address
1978
  *
1979
  * @since 2.4
1980
- * @change 2.6.2
1981
  *
1982
  * @param string $ip IP to validate
1983
  * @return integer TRUE if IPv4
@@ -1985,7 +2022,11 @@ class Antispam_Bee {
1985
 
1986
  private static function _is_ipv4($ip)
1987
  {
1988
- return preg_match('/^\d{1,3}(\.\d{1,3}){3,3}$/', $ip);
 
 
 
 
1989
  }
1990
 
1991
 
@@ -1993,7 +2034,7 @@ class Antispam_Bee {
1993
  * Check for an IPv6 address
1994
  *
1995
  * @since 2.6.2
1996
- * @change 2.6.2
1997
  *
1998
  * @param string $ip IP to validate
1999
  * @return boolean TRUE if IPv6
@@ -2001,7 +2042,11 @@ class Antispam_Bee {
2001
 
2002
  private static function _is_ipv6($ip)
2003
  {
2004
- return ! self::_is_ipv4($ip);
 
 
 
 
2005
  }
2006
 
2007
 
8
  Author URI: http://wpcoder.de
9
  Plugin URI: http://antispambee.com
10
  License: GPLv2 or later
11
+ Version: 2.6.5
12
  */
13
 
14
  /*
15
+ Copyright (C) 2009-2015 Sergej Müller
16
 
17
  This program is free software; you can redistribute it and/or modify
18
  it under the terms of the GNU General Public License as published by
57
  * "Konstruktor" der Klasse
58
  *
59
  * @since 0.1
60
+ * @change 2.6.4
61
  */
62
 
63
  public static function init()
109
  'load_plugin_lang'
110
  )
111
  );
112
+ add_filter(
113
  'dashboard_glance_items',
114
  array(
115
  __CLASS__,
338
  * Initialisierung der internen Variablen
339
  *
340
  * @since 2.4
341
+ * @change 2.6.5
342
  */
343
 
344
  private static function _init_internal_vars()
353
  'regexp_check' => 1,
354
  'spam_ip' => 1,
355
  'already_commented' => 1,
356
+ 'gravatar_check' => 0,
357
  'time_check' => 0,
358
  'ignore_pings' => 0,
359
  'always_allowed' => 0,
527
  $input,
528
  array(
529
  '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=ZAQUT9RLPW8QN" target="_blank">PayPal</a>',
530
+ '<a href="https://flattr.com/t/1323822" target="_blank">Flattr</a>'
 
531
  )
532
  );
533
  }
670
  * Anzeige des Spam-Counters auf dem Dashboard
671
  *
672
  * @since 0.1
673
+ * @change 2.6.5
674
+ *
675
+ * @param array $items Array with dashboard items
676
+ * @return array $items Array with dashboard items
677
  */
678
 
679
+ public static function add_dashboard_count( $items = array() )
680
  {
681
+ /* Skip */
682
+ if ( ! current_user_can('manage_options') OR ! self::get_option('dashboard_count') ) {
683
+ return $items;
684
+ }
685
+
686
+ /* Icon styling */
687
+ echo '<style>#dashboard_right_now .ab-count:before {content: "\f117"}</style>';
688
+
689
+ /* Right now item */
690
+ $items[] = sprintf(
691
+ '<a href="%s" class="ab-count">%s %s</a>',
692
+ add_query_arg(
693
+ array(
694
+ 'page' => 'antispam_bee'
695
+ ),
696
+ admin_url('options-general.php')
697
+ ),
698
+ esc_html( self::_get_spam_count() ),
699
+ esc_html__('Blocked', 'antispam_bee')
700
+ );
701
+
702
+ return $items;
 
 
703
  }
704
 
705
 
1144
  array(
1145
  __CLASS__,
1146
  'get_client_ip'
1147
+ ),
1148
+ 1
1149
  );
1150
 
1151
  /* Request params */
1348
  * Prüfung den Kommentar
1349
  *
1350
  * @since 2.4
1351
+ * @change 2.6.5
1352
  *
1353
  * @param array $comment Daten des Kommentars
1354
  * @return array Array mit dem Verdachtsgrund [optional]
1388
  $options = self::get_options();
1389
 
1390
  /* Bereits kommentiert? */
1391
+ if ( $options['already_commented'] && ! empty($email) && self::_is_approved_email($email) ) {
1392
  return;
1393
  }
1394
 
1395
+ /* Check for a Gravatar */
1396
+ if ( $options['gravatar_check'] && ! empty($email) && self::_has_valid_gravatar($email) ) {
1397
+ return;
1398
+ }
1399
+
1400
  /* Bot erkannt */
1401
  if ( ! empty($_POST['ab_spam__hidden_field']) ) {
1402
  return array(
1470
  }
1471
 
1472
 
1473
+ /**
1474
+ * Check for a Gravatar image
1475
+ *
1476
+ * @since 2.6.5
1477
+ * @change 2.6.5
1478
+ *
1479
+ * @param string $email Input email
1480
+ * @return boolean Check status (true = Gravatar available)
1481
+ */
1482
+
1483
+ private static function _has_valid_gravatar($email) {
1484
+ $response = wp_safe_remote_get(
1485
+ sprintf(
1486
+ 'https://www.gravatar.com/avatar/%s?d=404',
1487
+ md5( strtolower( trim($email) ) )
1488
+ )
1489
+ );
1490
+
1491
+ if ( is_wp_error($response) ) {
1492
+ return null;
1493
+ }
1494
+
1495
+ if ( wp_remote_retrieve_response_code($response) === 200 ) {
1496
+ return true;
1497
+ }
1498
+
1499
+ return false;
1500
+ }
1501
+
1502
+
1503
  /**
1504
  * Check for comment action time
1505
  *
1613
  }
1614
 
1615
  /* Perform regex */
1616
+ if ( @preg_match('/' .$regexp. '/isu', $comment[$field]) ) {
1617
  $hits[$field] = true;
1618
  }
1619
  }
2014
  * Check for an IPv4 address
2015
  *
2016
  * @since 2.4
2017
+ * @change 2.6.4
2018
  *
2019
  * @param string $ip IP to validate
2020
  * @return integer TRUE if IPv4
2022
 
2023
  private static function _is_ipv4($ip)
2024
  {
2025
+ if ( function_exists('filter_var') ) {
2026
+ return filter_var( $ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 ) !== false;
2027
+ } else {
2028
+ return preg_match('/^\d{1,3}(\.\d{1,3}){3,3}$/', $ip);
2029
+ }
2030
  }
2031
 
2032
 
2034
  * Check for an IPv6 address
2035
  *
2036
  * @since 2.6.2
2037
+ * @change 2.6.4
2038
  *
2039
  * @param string $ip IP to validate
2040
  * @return boolean TRUE if IPv6
2042
 
2043
  private static function _is_ipv6($ip)
2044
  {
2045
+ if ( function_exists('filter_var') ) {
2046
+ return filter_var( $ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6 ) !== false;
2047
+ } else {
2048
+ return ! self::_is_ipv4($ip);
2049
+ }
2050
  }
2051
 
2052
 
css/styles.css CHANGED
@@ -151,7 +151,6 @@
151
  }
152
 
153
  .ab-column > ul > li a {
154
- color: inherit;
155
  text-decoration: none;
156
  border-bottom: 1px dotted #e0e5e9;
157
  }
151
  }
152
 
153
  .ab-column > ul > li a {
 
154
  text-decoration: none;
155
  border-bottom: 1px dotted #e0e5e9;
156
  }
css/styles.min.css CHANGED
@@ -1 +1 @@
1
- @font-face{font-family:icons;src:url(../font/icons.woff2) format('woff2'),url(../font/icons.woff) format('woff')}.ab-main *,.ab-main :after,.ab-main :before{border:0;margin:0;padding:0;outline:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.browsehappy{margin:0 0 20px;padding:10px;border:1px solid #e66f00;text-align:center}.ab-wrap{color:#2f353e;height:1%;margin:0 0 0 -10px;overflow:hidden;padding:20px 0 0;text-rendering:optimizeLegibility}.ab-column{float:left;margin:0 0 0 10px;position:relative}.ab-column h3{margin:0;font-size:14px;font-weight:400;line-height:20px;text-transform:uppercase}.ab-column h3.icon:before{font:400 30px/30px icons;top:4px;right:20px;speak:none;width:1em;color:#8e959c;position:absolute;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ab-column.ab-arrow h3.icon:before{content:'\2387'}.ab-column.ab-join h3.icon:before{content:'\e795'}.ab-column.ab-diff h3.icon:before{content:'\e73c'}.ab-column h6{clear:both;color:#8e959c;margin:0 0 20px;font-size:10px;font-weight:400;text-transform:uppercase}.ab-column input[type=text],.ab-column select{height:20px;font-size:11px;text-align:center;background:#f8f8f9}.ab-column select[multiple]{width:150px;height:56px}.ab-column input.ab-mini-field{width:30px}.ab-column input.ab-medium-field{width:120px}.ab-column input[type=text]+label,.ab-column select+label{color:#8e959c;margin:0 0 0 7px;display:inline-block;text-transform:uppercase}.ab-column>ul{padding:0 20px 0 0}.ab-column:last-of-type>ul{border:0}.ab-column>ul>li{width:330px;margin:0 0 36px;padding:10px 0 12px 12px;position:relative;background:#fff;list-style:none;border-radius:3px;white-space:nowrap}.ab-column>ul>li a{color:inherit;text-decoration:none;border-bottom:1px dotted #e0e5e9}.ab-column>ul>li a:hover{border-color:inherit}.ab-column>ul>li input[type=checkbox]{display:inline-block;margin:0 8px 0 0}.ab-column>ul>li label{cursor:default;display:inline-block;overflow:hidden;line-height:24px}.ab-column>ul>li label span{color:#8e959c;display:block;font-size:12px;line-height:16px}.ab-column>ul>li:after,.ab-column>ul>li:before{width:0;content:'';position:absolute}.ab-column.ab-arrow>ul>li:after,.ab-column.ab-arrow>ul>li:before{left:157px;border-width:10px 10px 0;border-style:solid}.ab-column.ab-arrow>ul>li:before{bottom:-24px;border-color:#fff transparent}.ab-column.ab-arrow>ul>li:after{bottom:-22px;border-color:#f1f1f1 transparent}.ab-column.ab-join>ul>li:before{left:171px;bottom:-27px;height:18px;border-right:2px solid #fff}.ab-column.ab-diff>ul>li:before{left:162px;bottom:-19px;width:18px;height:0;border-bottom:2px solid #fff}.ab-column--service{width:342px;text-align:center;border-top:1px solid #e0e5e9;border-bottom:1px solid #e0e5e9}.ab-column--service p{margin:8px 0}.ab-column--service a{padding:0 2px}.ab-column--submit{width:342px;margin-top:35px}.ab-column--submit .button{width:100%}.ab-column>ul>li:last-of-type:after,.ab-column>ul>li:last-of-type:before{display:none}.ab-column>ul>li>ul{margin:10px 10px 0 26px;display:none;list-style:none}.ab-column>ul>li>ul li{padding:2px 0}.ab-column>ul>li>ul label{margin:0 0 0 7px}.ab-column>ul>li>input[type=checkbox]:checked~ul{display:block}
1
+ @font-face{font-family:icons;src:url(../font/icons.woff2) format('woff2'),url(../font/icons.woff) format('woff')}.ab-main *,.ab-main :after,.ab-main :before{border:0;margin:0;padding:0;outline:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.browsehappy{margin:0 0 20px;padding:10px;border:1px solid #e66f00;text-align:center}.ab-wrap{color:#2f353e;height:1%;margin:0 0 0 -10px;overflow:hidden;padding:20px 0 0;text-rendering:optimizeLegibility}.ab-column{float:left;margin:0 0 0 10px;position:relative}.ab-column h3{margin:0;font-size:14px;font-weight:400;line-height:20px;text-transform:uppercase}.ab-column h3.icon:before{font:400 30px/30px icons;top:4px;right:20px;speak:none;width:1em;color:#8e959c;position:absolute;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ab-column.ab-arrow h3.icon:before{content:'\2387'}.ab-column.ab-join h3.icon:before{content:'\e795'}.ab-column.ab-diff h3.icon:before{content:'\e73c'}.ab-column h6{clear:both;color:#8e959c;margin:0 0 20px;font-size:10px;font-weight:400;text-transform:uppercase}.ab-column input[type=text],.ab-column select{height:20px;font-size:11px;text-align:center;background:#f8f8f9}.ab-column select[multiple]{width:150px;height:56px}.ab-column input.ab-mini-field{width:30px}.ab-column input.ab-medium-field{width:120px}.ab-column input[type=text]+label,.ab-column select+label{color:#8e959c;margin:0 0 0 7px;display:inline-block;text-transform:uppercase}.ab-column>ul{padding:0 20px 0 0}.ab-column:last-of-type>ul{border:0}.ab-column>ul>li{width:330px;margin:0 0 36px;padding:10px 0 12px 12px;position:relative;background:#fff;list-style:none;border-radius:3px;white-space:nowrap}.ab-column>ul>li a{text-decoration:none;border-bottom:1px dotted #e0e5e9}.ab-column>ul>li a:hover{border-color:inherit}.ab-column>ul>li input[type=checkbox]{display:inline-block;margin:0 8px 0 0}.ab-column>ul>li label{cursor:default;display:inline-block;overflow:hidden;line-height:24px}.ab-column>ul>li label span{color:#8e959c;display:block;font-size:12px;line-height:16px}.ab-column>ul>li:after,.ab-column>ul>li:before{width:0;content:'';position:absolute}.ab-column.ab-arrow>ul>li:after,.ab-column.ab-arrow>ul>li:before{left:157px;border-width:10px 10px 0;border-style:solid}.ab-column.ab-arrow>ul>li:before{bottom:-24px;border-color:#fff transparent}.ab-column.ab-arrow>ul>li:after{bottom:-22px;border-color:#f1f1f1 transparent}.ab-column.ab-join>ul>li:before{left:171px;bottom:-27px;height:18px;border-right:2px solid #fff}.ab-column.ab-diff>ul>li:before{left:162px;bottom:-19px;width:18px;height:0;border-bottom:2px solid #fff}.ab-column--service{width:342px;text-align:center;border-top:1px solid #e0e5e9;border-bottom:1px solid #e0e5e9}.ab-column--service p{margin:8px 0}.ab-column--service a{padding:0 2px}.ab-column--submit{width:342px;margin-top:35px}.ab-column--submit .button{width:100%}.ab-column>ul>li:last-of-type:after,.ab-column>ul>li:last-of-type:before{display:none}.ab-column>ul>li>ul{margin:10px 10px 0 26px;display:none;list-style:none}.ab-column>ul>li>ul li{padding:2px 0}.ab-column>ul>li>ul label{margin:0 0 0 7px}.ab-column>ul>li>input[type=checkbox]:checked~ul{display:block}
inc/gui.class.php CHANGED
@@ -64,6 +64,7 @@ class Antispam_Bee_GUI extends Antispam_Bee {
64
  'ignore_reasons' => (array)self::get_key($_POST, 'ab_ignore_reasons'),
65
 
66
  'bbcode_check' => (int)(!empty($_POST['ab_bbcode_check'])),
 
67
  'dnsbl_check' => (int)(!empty($_POST['ab_dnsbl_check'])),
68
 
69
  'country_code' => (int)(!empty($_POST['ab_country_code'])),
@@ -211,8 +212,16 @@ class Antispam_Bee_GUI extends Antispam_Bee {
211
  <li>
212
  <input type="checkbox" name="ab_already_commented" id="ab_already_commented" value="1" <?php checked($options['already_commented'], 1) ?> />
213
  <label for="ab_already_commented">
214
- <?php esc_html_e('Trust approved commentators', 'antispam_bee') ?>
215
- <span><?php esc_html_e('No check for already commenting users', 'antispam_bee') ?></span>
 
 
 
 
 
 
 
 
216
  </label>
217
  </li>
218
 
@@ -235,7 +244,7 @@ class Antispam_Bee_GUI extends Antispam_Bee {
235
  <li>
236
  <input type="checkbox" name="ab_advanced_check" id="ab_advanced_check" value="1" <?php checked($options['advanced_check'], 1) ?> />
237
  <label for="ab_advanced_check">
238
- <?php esc_html_e('Validate the ip address of commentators', 'antispam_bee') ?>
239
  <span><?php esc_html_e('Validity check for used ip address', 'antispam_bee') ?></span>
240
  </label>
241
  </li>
@@ -332,7 +341,7 @@ class Antispam_Bee_GUI extends Antispam_Bee {
332
  <input type="checkbox" name="ab_email_notify" id="ab_email_notify" value="1" <?php checked($options['email_notify'], 1) ?> />
333
  <label for="ab_email_notify">
334
  <?php esc_html_e('Notification by email', 'antispam_bee') ?>
335
- <span><?php esc_html_e('Sending an alert to the admin', 'antispam_bee') ?></span>
336
  </label>
337
  </li>
338
 
@@ -359,7 +368,7 @@ class Antispam_Bee_GUI extends Antispam_Bee {
359
  <input type="checkbox" name="ab_ignore_filter" id="ab_ignore_filter" value="1" <?php checked($options['ignore_filter'], 1) ?> />
360
  <label>
361
  <?php echo sprintf(
362
- esc_html__('Limit on %s', 'antispam_bee'),
363
  self::_build_select(
364
  'ab_ignore_type',
365
  array(
@@ -369,7 +378,7 @@ class Antispam_Bee_GUI extends Antispam_Bee {
369
  $options['ignore_type']
370
  )
371
  ); ?>
372
- <span><?php esc_html_e('Another type of spam will be deleted immediately', 'antispam_bee') ?></span>
373
  </label>
374
  </li>
375
 
@@ -377,7 +386,7 @@ class Antispam_Bee_GUI extends Antispam_Bee {
377
  <input type="checkbox" name="ab_reasons_enable" id="ab_reasons_enable" value="1" <?php checked($options['reasons_enable'], 1) ?> />
378
  <label for="ab_reasons_enable">
379
  <?php esc_html_e('Delete comments by spam reasons', 'antispam_bee') ?>
380
- <span><?php esc_html_e('Multiple choice by pressing Ctrl/CMD', 'antispam_bee') ?></span>
381
  </label>
382
 
383
  <ul>
@@ -410,7 +419,7 @@ class Antispam_Bee_GUI extends Antispam_Bee {
410
  <input type="checkbox" name="ab_dashboard_chart" id="ab_dashboard_chart" value="1" <?php checked($options['dashboard_chart'], 1) ?> />
411
  <label for="ab_dashboard_chart">
412
  <?php esc_html_e('Statistics on the dashboard', 'antispam_bee') ?>
413
- <span><?php esc_html_e('Spam detection rate with daily values', 'antispam_bee') ?></span>
414
  </label>
415
  </li>
416
 
64
  'ignore_reasons' => (array)self::get_key($_POST, 'ab_ignore_reasons'),
65
 
66
  'bbcode_check' => (int)(!empty($_POST['ab_bbcode_check'])),
67
+ 'gravatar_check' => (int)(!empty($_POST['ab_gravatar_check'])),
68
  'dnsbl_check' => (int)(!empty($_POST['ab_dnsbl_check'])),
69
 
70
  'country_code' => (int)(!empty($_POST['ab_country_code'])),
212
  <li>
213
  <input type="checkbox" name="ab_already_commented" id="ab_already_commented" value="1" <?php checked($options['already_commented'], 1) ?> />
214
  <label for="ab_already_commented">
215
+ <?php esc_html_e('Trust approved commenters', 'antispam_bee') ?>
216
+ <span><?php esc_html_e('Always approve previously approved users', 'antispam_bee') ?></span>
217
+ </label>
218
+ </li>
219
+
220
+ <li>
221
+ <input type="checkbox" name="ab_gravatar_check" id="ab_gravatar_check" value="1" <?php checked($options['gravatar_check'], 1) ?> />
222
+ <label for="ab_gravatar_check">
223
+ <?php esc_html_e('Trust commenters with a Gravatar', 'antispam_bee') ?>
224
+ <span><?php _e('Check if commenter has a Gravatar image', 'antispam_bee') ?></span>
225
  </label>
226
  </li>
227
 
244
  <li>
245
  <input type="checkbox" name="ab_advanced_check" id="ab_advanced_check" value="1" <?php checked($options['advanced_check'], 1) ?> />
246
  <label for="ab_advanced_check">
247
+ <?php esc_html_e('Validate the ip address of commenters', 'antispam_bee') ?>
248
  <span><?php esc_html_e('Validity check for used ip address', 'antispam_bee') ?></span>
249
  </label>
250
  </li>
341
  <input type="checkbox" name="ab_email_notify" id="ab_email_notify" value="1" <?php checked($options['email_notify'], 1) ?> />
342
  <label for="ab_email_notify">
343
  <?php esc_html_e('Notification by email', 'antispam_bee') ?>
344
+ <span><?php esc_html_e('Notify admins by e-mail about incoming spam', 'antispam_bee') ?></span>
345
  </label>
346
  </li>
347
 
368
  <input type="checkbox" name="ab_ignore_filter" id="ab_ignore_filter" value="1" <?php checked($options['ignore_filter'], 1) ?> />
369
  <label>
370
  <?php echo sprintf(
371
+ esc_html__('Limit approval to %s', 'antispam_bee'),
372
  self::_build_select(
373
  'ab_ignore_type',
374
  array(
378
  $options['ignore_type']
379
  )
380
  ); ?>
381
+ <span><?php esc_html_e('Other types of spam will be deleted immediately', 'antispam_bee') ?></span>
382
  </label>
383
  </li>
384
 
386
  <input type="checkbox" name="ab_reasons_enable" id="ab_reasons_enable" value="1" <?php checked($options['reasons_enable'], 1) ?> />
387
  <label for="ab_reasons_enable">
388
  <?php esc_html_e('Delete comments by spam reasons', 'antispam_bee') ?>
389
+ <span><?php esc_html_e('For multiple selections press Ctrl/CMD', 'antispam_bee') ?></span>
390
  </label>
391
 
392
  <ul>
419
  <input type="checkbox" name="ab_dashboard_chart" id="ab_dashboard_chart" value="1" <?php checked($options['dashboard_chart'], 1) ?> />
420
  <label for="ab_dashboard_chart">
421
  <?php esc_html_e('Statistics on the dashboard', 'antispam_bee') ?>
422
+ <span><?php esc_html_e('Daily updates of spam detection rate', 'antispam_bee') ?></span>
423
  </label>
424
  </li>
425
 
lang/antispam_bee-de_DE.mo CHANGED
Binary file
lang/antispam_bee-de_DE.po CHANGED
@@ -1,252 +1,265 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Antispam Bee\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: \n"
6
- "Last-Translator: Sergej Müller\n"
7
- "Language-Team: Sergej Müller\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-Language: German\n"
12
- "X-Poedit-Country: GERMANY\n"
13
- "X-Poedit-SourceCharset: utf-8\n"
14
- "X-Poedit-KeywordsList: __;_e\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- msgid "No data available."
19
- msgstr "Noch keine Daten vorhanden."
20
-
21
- msgid "New spam comment on your post"
22
- msgstr "Neuer Spam zum Artikel"
23
-
24
- msgid "Comment"
25
- msgstr "Kommentar"
26
-
27
- msgid "Type"
28
- msgstr "Typ"
29
-
30
- msgid "Spam Reason"
31
- msgstr "Spamgrund"
32
-
33
- msgid "Empty Data"
34
- msgstr "Leere Daten"
35
-
36
- msgid "CSS Hack"
37
- msgstr "CSS Hack"
38
-
39
- msgid "Comment time"
40
- msgstr "Kommentarzeit"
41
-
42
- msgid "Fake IP"
43
- msgstr "Gefälschte IP"
44
-
45
- msgid "Local DB Spam"
46
- msgstr "Lokale Spamdatenbank"
47
-
48
- msgid "Comment Language"
49
- msgstr "Sprache"
50
-
51
- msgid "Country Check"
52
- msgstr "Ländercode"
53
-
54
- msgid "DNSBL Spam"
55
- msgstr "DNSBL Spam"
56
-
57
- msgid "RegExp"
58
- msgstr "Regulärer Ausdruck"
59
-
60
- msgid "Approve it"
61
- msgstr "Freigeben"
62
-
63
- msgid "Delete it"
64
- msgstr "Löschen"
65
-
66
- msgid "Trash it"
67
- msgstr "In Papierkorb"
68
-
69
- msgid "Spam list"
70
- msgstr "Spamliste"
71
-
72
- msgid "Notify message by Antispam Bee"
73
- msgstr "Benachrichtigung von Antispam Bee"
74
-
75
- msgid "Content removed by Antispam Bee"
76
- msgstr "Inhalt entfernt von Antispam Bee"
77
-
78
- msgid "Last check"
79
- msgstr "Zuletzt"
80
-
81
- msgid "Blocked"
82
- msgstr "Blockiert"
83
-
84
- msgid "Today"
85
- msgstr "Heute"
86
-
87
- msgid "Easy and extremely productive spam-fighting plugin with many sophisticated solutions. Includes protection again trackback spam."
88
- msgstr "Simples, äußerst effektives Plugin zur Bekämpfung von Spam-Kommentaren. Datenschutzkonform, funktionsreich und unkompliziert."
89
-
90
- msgid "http://antispambee.com"
91
- msgstr "http://antispambee.de"
92
-
93
- msgid "Comments"
94
- msgstr "Kommentare"
95
-
96
- msgid "Comment marked as spam"
97
- msgstr "Spam-Benachrichtigung"
98
-
99
- # Sprachen
100
- msgid "Language"
101
- msgstr "Sprache"
102
-
103
- msgid "English"
104
- msgstr "Englisch"
105
-
106
- msgid "German"
107
- msgstr "Deutsch"
108
-
109
- msgid "French"
110
- msgstr "Französisch"
111
-
112
- msgid "Italian"
113
- msgstr "Italienisch"
114
-
115
- msgid "Spanish"
116
- msgstr "Spanisch"
117
-
118
- # Antispam-Filter
119
- msgid "Antispam filter"
120
- msgstr "Antispam-Regeln"
121
-
122
- msgid "Filter in the execution order"
123
- msgstr "Filter in Reihenfolge der Ausführung"
124
-
125
- msgid "Trust approved commentators"
126
- msgstr "Genehmigten Kommentatoren vertrauen"
127
-
128
- msgid "No check for already commenting users"
129
- msgstr "Keine Prüfung bereits kommentierender Nutzer"
130
-
131
- msgid "Consider the comment time"
132
- msgstr "Kommentarzeit berücksichtigen"
133
-
134
- msgid "Not recommended when using page caching"
135
- msgstr "Nicht empfohlen beim Caching von Blogseiten"
136
-
137
- msgid "BBCode is spam"
138
- msgstr "BBCode als Spam einstufen"
139
-
140
- msgid "Review the comment contents for BBCode links"
141
- msgstr "Analyse der Kommentarinhalte auf BBCode-Links"
142
-
143
- msgid "Use a public antispam database"
144
- msgstr "Öffentliche Spamdatenbank berücksichtigen"
145
-
146
- msgid "Matching the ip address with <a href=\"https://dnsbl.tornevall.org\" target=\"_blank\">Tornevall</a>"
147
- msgstr "Beachte den <a href=\"http://playground.ebiene.de/antispam-bee-wordpress-plugin/#dnsbl_check\" target=\"_blank\">Datenschutzhinweis</a> für die Option"
148
-
149
- msgid "Validate the ip address of commentators"
150
- msgstr "IP-Adresse des Kommentators validieren"
151
-
152
- msgid "Validity check for used ip address"
153
- msgstr "Kontrolle auf Gültigkeit verwendeter Kennung"
154
-
155
- msgid "Use regular expressions"
156
- msgstr "Reguläre Ausdrücke anwenden"
157
-
158
- msgid "Predefined and custom patterns by <a href=\"https://gist.github.com/4242142\" target=\"_blank\">plugin hook</a>"
159
- msgstr "Vordefinierte und eigene Muster via <a href=\"http://playground.ebiene.de/antispam-bee-wordpress-plugin/#regexp_check\" target=\"_blank\">Plugin-Hook</a>"
160
-
161
- msgid "Look in the local spam database"
162
- msgstr "Lokale Spamdatenbank einbeziehen"
163
-
164
- msgid "Already marked as spam? Yes? No?"
165
- msgstr "Suche im Spambestand des eigenen Blogs"
166
-
167
- msgid "Block comments from specific countries"
168
- msgstr "Bestimmte Länder blockieren bzw. erlauben"
169
-
170
- msgid "Filtering the requests depending on country"
171
- msgstr "Filterung der Anfragen je nach Herkunftsland"
172
-
173
- msgid "Allow comments only in certain language"
174
- msgstr "Kommentare nur in einer Sprache zulassen"
175
-
176
- msgid "Detection and approval in specified language"
177
- msgstr "Erkennung und Freigabe festgelegter Sprache"
178
-
179
- # Erweitert
180
- msgid "Advanced"
181
- msgstr "Erweitert"
182
-
183
- msgid "Other antispam tools"
184
- msgstr "Weitere Steuerungselemente"
185
-
186
- msgid "Mark as spam, do not delete"
187
- msgstr "Erkannten Spam kennzeichnen, nicht löschen"
188
-
189
- msgid "Keep the spam in my blog."
190
- msgstr "Markierung als Spam / Aufbewahrung im Blog"
191
-
192
- msgid "Notification by email"
193
- msgstr "Bei Spam via E-Mail informieren"
194
-
195
- msgid "Sending an alert to the admin"
196
- msgstr "Versand der Benachrichtigung an den Admin"
197
-
198
- msgid "Not save the spam reason"
199
- msgstr "Spamgrund zum Kommentar nicht speichern"
200
-
201
- msgid "Spam reason as table column in the spam overview"
202
- msgstr "Verdachtsgrund-Spalte in der Spam-Übersicht"
203
-
204
- msgid "Delete existing spam after %s days"
205
- msgstr "Vorhandenen Spam nach %s Tagen löschen"
206
-
207
- msgid "Cleaning up the database from old entries"
208
- msgstr "Säuberung der Datenbank von alten Einträgen"
209
-
210
- msgid "Limit on %s"
211
- msgstr "Aufbewahrung gilt nur für %s"
212
-
213
- msgid "Another type of spam will be deleted immediately"
214
- msgstr "Spam anderes Typs unterliegt sofortiger Löschung"
215
-
216
- msgid "Delete comments by spam reasons"
217
- msgstr "Bei definierten Spamgründen sofort löschen"
218
-
219
- msgid "Multiple choice by pressing Ctrl/CMD"
220
- msgstr "Mehrfachauswahl bzw. Abwahl mit Strg/CMD"
221
-
222
- # Sonstiges
223
- msgid "More"
224
- msgstr "Sonstiges"
225
-
226
- msgid "A few little things"
227
- msgstr "Weniger relevante Optionen"
228
-
229
- msgid "Statistics on the dashboard"
230
- msgstr "Statistiken als Dashboard-Widget generieren"
231
-
232
- msgid "Spam detection rate with daily values"
233
- msgstr "Verlauf der Erkennungsrate mit täglichen Werten"
234
-
235
- msgid "Spam counter on the dashboard"
236
- msgstr "Spam-Anzahl auf dem Dashboard anzeigen"
237
-
238
- msgid "Amount of identified spam comments"
239
- msgstr "Menge an identifizierten Spam-Kommentaren"
240
-
241
- msgid "Do not check trackbacks / pingbacks"
242
- msgstr "Eingehende Ping- und Trackbacks ignorieren"
243
-
244
- msgid "No spam check for trackback notifications"
245
- msgstr "Kein Spam-Check für Link-Benachrichtigungen"
246
-
247
- msgid "Comment form used outside of posts"
248
- msgstr "Kommentarformular auf Archivseiten"
249
-
250
- msgid "Check for comment forms on archive pages"
251
- msgstr "Überwachung des Formulars auf Archivseiten"
252
-
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Antispam Bee\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2015-03-10 09:52+0100\n"
7
+ "Last-Translator: Sergej Müller\n"
8
+ "Language-Team: Sergej Müller\n"
9
+ "Language: German\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-Language: German\n"
16
+ "X-Poedit-Country: GERMANY\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Loco-Target-Locale: de_DE\n"
20
+ "X-Generator: Loco - https://localise.biz/\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+
23
+ msgid "No data available."
24
+ msgstr "Noch keine Daten vorhanden."
25
+
26
+ msgid "New spam comment on your post"
27
+ msgstr "Neuer Spam zum Artikel"
28
+
29
+ msgid "Comment"
30
+ msgstr "Kommentar"
31
+
32
+ msgid "Type"
33
+ msgstr "Typ"
34
+
35
+ msgid "Spam Reason"
36
+ msgstr "Spamgrund"
37
+
38
+ msgid "Empty Data"
39
+ msgstr "Leere Daten"
40
+
41
+ msgid "CSS Hack"
42
+ msgstr "CSS Hack"
43
+
44
+ msgid "Comment time"
45
+ msgstr "Kommentarzeit"
46
+
47
+ msgid "Fake IP"
48
+ msgstr "Gefälschte IP"
49
+
50
+ msgid "Local DB Spam"
51
+ msgstr "Lokale Spamdatenbank"
52
+
53
+ msgid "Comment Language"
54
+ msgstr "Sprache"
55
+
56
+ msgid "Country Check"
57
+ msgstr "Ländercode"
58
+
59
+ msgid "DNSBL Spam"
60
+ msgstr "DNSBL Spam"
61
+
62
+ msgid "RegExp"
63
+ msgstr "Regulärer Ausdruck"
64
+
65
+ msgid "Approve it"
66
+ msgstr "Freigeben"
67
+
68
+ msgid "Delete it"
69
+ msgstr "Löschen"
70
+
71
+ msgid "Trash it"
72
+ msgstr "In Papierkorb"
73
+
74
+ msgid "Spam list"
75
+ msgstr "Spamliste"
76
+
77
+ msgid "Notify message by Antispam Bee"
78
+ msgstr "Benachrichtigung von Antispam Bee"
79
+
80
+ msgid "Content removed by Antispam Bee"
81
+ msgstr "Inhalt entfernt von Antispam Bee"
82
+
83
+ msgid "Last check"
84
+ msgstr "Zuletzt"
85
+
86
+ msgid "Blocked"
87
+ msgstr "Blockiert"
88
+
89
+ msgid "Today"
90
+ msgstr "Heute"
91
+
92
+ msgid "Easy and extremely productive spam-fighting plugin with many sophisticated solutions. Includes protection again trackback spam."
93
+ msgstr "Simples, äußerst effektives Plugin zur Bekämpfung von Spam-Kommentaren. Datenschutzkonform, funktionsreich und unkompliziert."
94
+
95
+ msgid "http://antispambee.com"
96
+ msgstr "http://antispambee.de"
97
+
98
+ msgid "Comments"
99
+ msgstr "Kommentare"
100
+
101
+ msgid "Comment marked as spam"
102
+ msgstr "Spam-Benachrichtigung"
103
+
104
+ # Sprachen
105
+ msgid "Language"
106
+ msgstr "Sprache"
107
+
108
+ msgid "English"
109
+ msgstr "Englisch"
110
+
111
+ msgid "German"
112
+ msgstr "Deutsch"
113
+
114
+ msgid "French"
115
+ msgstr "Französisch"
116
+
117
+ msgid "Italian"
118
+ msgstr "Italienisch"
119
+
120
+ msgid "Spanish"
121
+ msgstr "Spanisch"
122
+
123
+ # Antispam-Filter
124
+ msgid "Antispam filter"
125
+ msgstr "Antispam-Regeln"
126
+
127
+ msgid "Filter in the execution order"
128
+ msgstr "Filter in Reihenfolge der Ausführung"
129
+
130
+ msgid "Trust approved commenters"
131
+ msgstr "Genehmigten Kommentatoren vertrauen"
132
+
133
+ msgid "Always approve previously approved users"
134
+ msgstr "Keine Prüfung bereits kommentierender Nutzer"
135
+
136
+ msgid "Consider the comment time"
137
+ msgstr "Kommentarzeit berücksichtigen"
138
+
139
+ msgid "Not recommended when using page caching"
140
+ msgstr "Nicht empfohlen beim Caching von Blogseiten"
141
+
142
+ msgid "BBCode is spam"
143
+ msgstr "BBCode als Spam einstufen"
144
+
145
+ msgid "Review the comment contents for BBCode links"
146
+ msgstr "Analyse der Kommentarinhalte auf BBCode-Links"
147
+
148
+ msgid "Use a public antispam database"
149
+ msgstr "Öffentliche Spamdatenbank berücksichtigen"
150
+
151
+ msgid "Matching the ip address with <a href=\"https://dnsbl.tornevall.org\" target=\"_blank\">Tornevall</a>"
152
+ msgstr "Beachte den <a href=\"http://playground.ebiene.de/antispam-bee-wordpress-plugin/#dnsbl_check\" target=\"_blank\">Datenschutzhinweis</a> für die Option"
153
+
154
+ msgid "Validate the ip address of commenters"
155
+ msgstr "IP-Adresse des Kommentators validieren"
156
+
157
+ msgid "Validity check for used ip address"
158
+ msgstr "Kontrolle auf Gültigkeit verwendeter Kennung"
159
+
160
+ msgid "Use regular expressions"
161
+ msgstr "Reguläre Ausdrücke anwenden"
162
+
163
+ msgid "Predefined and custom patterns by <a href=\"https://gist.github.com/4242142\" target=\"_blank\">plugin hook</a>"
164
+ msgstr "Vordefinierte und eigene Muster via <a href=\"http://playground.ebiene.de/antispam-bee-wordpress-plugin/#regexp_check\" target=\"_blank\">Plugin-Hook</a>"
165
+
166
+ msgid "Look in the local spam database"
167
+ msgstr "Lokale Spamdatenbank einbeziehen"
168
+
169
+ msgid "Already marked as spam? Yes? No?"
170
+ msgstr "Suche im Spambestand des eigenen Blogs"
171
+
172
+ msgid "Trust commenters with a Gravatar"
173
+ msgstr "Kommentatoren mit Gravatar vertrauen"
174
+
175
+ msgid "Check if commenter has a Gravatar image"
176
+ msgstr "Beachte den <a href=\"http://playground.ebiene.de/antispam-bee-wordpress-plugin/#gravatar_check\" target=\"_blank\">Datenschutzhinweis</a> für die Option"
177
+
178
+ msgid "Block comments from specific countries"
179
+ msgstr "Bestimmte Länder blockieren bzw. erlauben"
180
+
181
+ msgid "Filtering the requests depending on country"
182
+ msgstr "Filterung der Anfragen je nach Herkunftsland"
183
+
184
+ msgid "Allow comments only in certain language"
185
+ msgstr "Kommentare nur in einer Sprache zulassen"
186
+
187
+ msgid "Detection and approval in specified language"
188
+ msgstr "Erkennung und Freigabe festgelegter Sprache"
189
+
190
+ # Erweitert
191
+ msgid "Advanced"
192
+ msgstr "Erweitert"
193
+
194
+ msgid "Other antispam tools"
195
+ msgstr "Weitere Steuerungselemente"
196
+
197
+ msgid "Mark as spam, do not delete"
198
+ msgstr "Erkannten Spam kennzeichnen, nicht löschen"
199
+
200
+ msgid "Keep the spam in my blog."
201
+ msgstr "Markierung als Spam / Aufbewahrung im Blog"
202
+
203
+ msgid "Notification by email"
204
+ msgstr "Bei Spam via E-Mail informieren"
205
+
206
+ msgid "Notify admins by e-mail about incoming spam"
207
+ msgstr "Versand der Benachrichtigung an den Admin"
208
+
209
+ msgid "Not save the spam reason"
210
+ msgstr "Spamgrund zum Kommentar nicht speichern"
211
+
212
+ msgid "Spam reason as table column in the spam overview"
213
+ msgstr "Verdachtsgrund-Spalte in der Spam-Übersicht"
214
+
215
+ #, c-format
216
+ msgid "Delete existing spam after %s days"
217
+ msgstr "Vorhandenen Spam nach %s Tagen löschen"
218
+
219
+ msgid "Cleaning up the database from old entries"
220
+ msgstr "Säuberung der Datenbank von alten Einträgen"
221
+
222
+ #, c-format
223
+ msgid "Limit approval to %s"
224
+ msgstr "Aufbewahrung gilt nur für %s"
225
+
226
+ msgid "Other types of spam will be deleted immediately"
227
+ msgstr "Spam anderes Typs unterliegt sofortiger Löschung"
228
+
229
+ msgid "Delete comments by spam reasons"
230
+ msgstr "Bei definierten Spamgründen sofort löschen"
231
+
232
+ msgid "For multiple selections press Ctrl/CMD"
233
+ msgstr "Mehrfachauswahl bzw. Abwahl mit Strg/CMD"
234
+
235
+ # Sonstiges
236
+ msgid "More"
237
+ msgstr "Sonstiges"
238
+
239
+ msgid "A few little things"
240
+ msgstr "Weniger relevante Optionen"
241
+
242
+ msgid "Statistics on the dashboard"
243
+ msgstr "Statistiken als Dashboard-Widget generieren"
244
+
245
+ msgid "Daily updates of spam detection rate"
246
+ msgstr "Verlauf der Erkennungsrate mit täglichen Werten"
247
+
248
+ msgid "Spam counter on the dashboard"
249
+ msgstr "Spam-Anzahl auf dem Dashboard anzeigen"
250
+
251
+ msgid "Amount of identified spam comments"
252
+ msgstr "Menge an identifizierten Spam-Kommentaren"
253
+
254
+ msgid "Do not check trackbacks / pingbacks"
255
+ msgstr "Eingehende Ping- und Trackbacks ignorieren"
256
+
257
+ msgid "No spam check for trackback notifications"
258
+ msgstr "Kein Spam-Check für Link-Benachrichtigungen"
259
+
260
+ msgid "Comment form used outside of posts"
261
+ msgstr "Kommentarformular auf Archivseiten"
262
+
263
+ msgid "Check for comment forms on archive pages"
264
+ msgstr "Überwachung des Formulars auf Archivseiten"
265
+
lang/antispam_bee-fr_FR.mo CHANGED
Binary file
lang/antispam_bee-fr_FR.po CHANGED
@@ -1,254 +1,264 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Antispam Bee\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: \n"
6
- "Last-Translator: Sergej Müller\n"
7
- "Language-Team: Sergej Müller\n"
8
- "Language: fr_FR\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=utf-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-SourceCharset: utf-8\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Generator: Poedit 1.5.7\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- msgid "No data available."
19
- msgstr "Aucune donnée disponible."
20
-
21
- msgid "New spam comment on your post"
22
- msgstr "Nouveau spam sur l'article"
23
-
24
- msgid "Comment"
25
- msgstr "Commentaire"
26
-
27
- msgid "Type"
28
- msgstr "Type"
29
-
30
- msgid "Spam Reason"
31
- msgstr "Raison de détection"
32
-
33
- msgid "Empty Data"
34
- msgstr "Pas de données"
35
-
36
- msgid "CSS Hack"
37
- msgstr "Hack CSS"
38
-
39
- msgid "Server IP"
40
- msgstr "IP du serveur"
41
-
42
- msgid "Local DB Spam"
43
- msgstr "Spam BD locale"
44
-
45
- msgid "Comment Language"
46
- msgstr "Langue du commentaire"
47
-
48
- msgid "Country Check"
49
- msgstr "Vérification du pays"
50
-
51
- msgid "DNSBL Spam"
52
- msgstr "Spam DNSBL"
53
-
54
- msgid "RegExp"
55
- msgstr "Expression régulière"
56
-
57
- msgid "Approve it"
58
- msgstr "Approuver"
59
-
60
- msgid "Delete it"
61
- msgstr "Supprimer"
62
-
63
- msgid "Trash it"
64
- msgstr "Dans la corbeille"
65
-
66
- msgid "Spam list"
67
- msgstr "Liste des spams"
68
-
69
- msgid "Notify message by Antispam Bee"
70
- msgstr "Message de notification par Antispam Bee"
71
-
72
- msgid "Content removed by Antispam Bee"
73
- msgstr "Contenu supprimé par Antispam Bee"
74
-
75
- msgid "Last check"
76
- msgstr "Dernière vérification"
77
-
78
- msgid "Blocked"
79
- msgstr "Bloqué"
80
-
81
- msgid "Today"
82
- msgstr "Aujourd'hui"
83
-
84
- msgid "Easy and extremely productive spam-fighting plugin with many sophisticated solutions. Includes protection again trackback spam."
85
- msgstr "Extension simple et très efficace pour lutter contre les commentaires indésirables comportant des solutions sophistiquées. Inclus une protection contre le spam trackback."
86
-
87
- msgid "http://antispambee.com"
88
- msgstr "http://antispambee.com"
89
-
90
- msgid "Comments"
91
- msgstr "Commentaires"
92
-
93
- msgid "Comment marked as spam"
94
- msgstr "Commentaire marqué comme spam"
95
-
96
- # Langues
97
- msgid "Language"
98
- msgstr "Langue"
99
-
100
- msgid "English"
101
- msgstr "Anglais"
102
-
103
- msgid "German"
104
- msgstr "Allemand"
105
-
106
- msgid "French"
107
- msgstr "Français"
108
-
109
- msgid "Italian"
110
- msgstr "Italien"
111
-
112
- msgid "Spanish"
113
- msgstr "Espagnol"
114
-
115
- # Antispam-Filter
116
- msgid "Antispam filter"
117
- msgstr "Filtre antispam"
118
-
119
- msgid "Filter in the execution order"
120
- msgstr "Ordre d'exécution du filtrage"
121
-
122
- msgid "Trust approved commentators"
123
- msgstr "Faire confiance aux commentateurs approuvés"
124
-
125
- msgid "No check for already commenting users"
126
- msgstr "Pas de vérification pour utilisateurs connus"
127
-
128
- msgid "BBCode is spam"
129
- msgstr "Le BBCode est considéré comme spam"
130
-
131
- msgid "Review the comment contents for BBCode links"
132
- msgstr "Rechercher les liens BBCode dans le commentaire"
133
-
134
- msgid "Use a public antispam database"
135
- msgstr "Banque de données de spams publique"
136
-
137
- msgid "Matching the ip address with <a href=\"https://dnsbl.tornevall.org\" target=\"_blank\">Tornevall</a>"
138
- msgstr "Correspondance de l'IP en utilisant <a href=\"https://dnsbl.tornevall.org\" target=\"_blank\">Tornevall</a>"
139
-
140
- msgid "Validate the ip address of commentators"
141
- msgstr "Valider l'adresse IP des commentateurs"
142
-
143
- msgid "Validity check for used ip address"
144
- msgstr "Vérification de la validité pour les IP utilisées"
145
-
146
- msgid "Use regular expressions"
147
- msgstr "Utiliser des expressions régulières"
148
-
149
- msgid "Predefined and custom patterns by <a href=\"https://gist.github.com/4242142\" target=\"_blank\">plugin hook</a>"
150
- msgstr "Motifs prédéfinis et personnalisés par le <a href=\"https://gist.github.com/4242142\" target=\"_blank\">plugin hook</a>"
151
-
152
- msgid "Look in the local spam database"
153
- msgstr "Vérifier dans la base de données locale des spams"
154
-
155
- msgid "Already marked as spam? Yes? No?"
156
- msgstr "Le spam a-t-il déjà été reconnu ?"
157
-
158
- msgid "Block comments from specific countries"
159
- msgstr "Bloquer selon le pays"
160
-
161
- msgid "Filtering the requests depending on country"
162
- msgstr "Filtrage selon le pays d'origine du commentaire"
163
-
164
- msgid "Allow comments only in certain language"
165
- msgstr "N'accepter des commentaires qu'en une langue"
166
-
167
- msgid "Detection and approval in specified language"
168
- msgstr "Détection et autorisation d'une langue spécifiée"
169
-
170
- # Erweitert
171
- msgid "Advanced"
172
- msgstr "Avancé"
173
-
174
- msgid "Other antispam tools"
175
- msgstr "Autres outils antispam"
176
-
177
- msgid "Mark as spam, do not delete"
178
- msgstr "Marquer comme spam et ne pas supprimer"
179
-
180
- msgid "Keep the spam in my blog."
181
- msgstr "Conserver le commentaire indésirable"
182
-
183
- msgid "Notification by email"
184
- msgstr "Notification par courriel"
185
-
186
- msgid "Sending an alert to the admin"
187
- msgstr "Avertir l'administrateur par courriel"
188
-
189
- msgid "Not save the spam reason"
190
- msgstr "Ne pas stocker la raison de détection"
191
-
192
- msgid "Spam reason as table column in the spam overview"
193
- msgstr "Raison dans la colonne du tableau d'aperçu"
194
-
195
- msgid "Delete existing spam after %s days"
196
- msgstr "Supprimer les spams après %s jours"
197
-
198
- msgid "Cleaning up the database from old entries"
199
- msgstr "Nettoyage de la base de données"
200
-
201
- msgid "Limit on %s"
202
- msgstr "Limiter aux %s"
203
-
204
- msgid "Another type of spam will be deleted immediately"
205
- msgstr "Autre type de spam supprimé immédiatemment"
206
-
207
- msgid "Delete comments by spam reasons"
208
- msgstr "Supprimer les commentaires selon détection"
209
-
210
- msgid "Multiple choice by pressing Ctrl/CMD"
211
- msgstr "Choix multiples en maintenant la touche Ctrl/CMD"
212
-
213
- # Sonstiges
214
- msgid "More"
215
- msgstr "Plus"
216
-
217
- msgid "A few little things"
218
- msgstr "Options moins significatives"
219
-
220
- msgid "Statistics on the dashboard"
221
- msgstr "Statistiques sur le tableau de bord"
222
-
223
- msgid "Spam detection rate with daily values"
224
- msgstr "Taux de détection de spam avec valeurs quotidiennes"
225
-
226
- msgid "Spam counter on the dashboard"
227
- msgstr "Compteur de spam sur le tableau de bord"
228
-
229
- msgid "Amount of identified spam comments"
230
- msgstr "Nombre de commentaires indésirables identifiés"
231
-
232
- msgid "Do not check trackbacks / pingbacks"
233
- msgstr "Ignorer les trackbacks et pingbacks"
234
-
235
- msgid "No spam check for trackback notifications"
236
- msgstr "Pas de spam pour les notifications de trackback"
237
-
238
- msgid "Comment form used outside of posts"
239
- msgstr "Commentaires présents dans les archives"
240
-
241
- msgid "Check for comment forms on archive pages"
242
- msgstr "Vérification des commentaires dans les archives"
243
-
244
- #~ msgid "Marked as spam by Antispam Bee / Spam reason"
245
- #~ msgstr "Marqué comme spam par Antispam Bee / Raison du spam"
246
-
247
- #~ msgid "Spam IP"
248
- #~ msgstr "IP du spam"
249
-
250
- #~ msgid "Not store the reason in the comment body"
251
- #~ msgstr "Ne pas sauvegarder la raison du spam"
252
-
253
- #~ msgid "Filter name as reason for current suspicion"
254
- #~ msgstr "Filtre utilisé considéré comme raison du spam"
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Antispam Bee\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: Tue Mar 10 2015 08:16:58 GMT+0100 (CET)\n"
7
+ "Last-Translator: glueckpress <caspar@glueckpress.com>\n"
8
+ "Language-Team: Sergej Müller\n"
9
+ "Language: French (France)\n"
10
+ "Plural-Forms: nplurals=2; plural=n > 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
+ "X-Poedit-Basepath: .\n"
21
+ "X-Generator: Loco - https://localise.biz/\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Loco-Target-Locale: fr_FR"
24
+
25
+ msgid "No data available."
26
+ msgstr "Aucune donnée disponible."
27
+
28
+ msgid "New spam comment on your post"
29
+ msgstr "Nouveau spam sur l'article"
30
+
31
+ msgid "Comment"
32
+ msgstr "Commentaire"
33
+
34
+ msgid "Type"
35
+ msgstr "Type"
36
+
37
+ msgid "Spam Reason"
38
+ msgstr "Raison de détection"
39
+
40
+ msgid "Empty Data"
41
+ msgstr "Pas de données"
42
+
43
+ msgid "CSS Hack"
44
+ msgstr "Hack CSS"
45
+
46
+ msgid "Server IP"
47
+ msgstr "IP du serveur"
48
+
49
+ msgid "Local DB Spam"
50
+ msgstr "Spam BD locale"
51
+
52
+ msgid "Comment Language"
53
+ msgstr "Langue du commentaire"
54
+
55
+ msgid "Country Check"
56
+ msgstr "Vérification du pays"
57
+
58
+ msgid "DNSBL Spam"
59
+ msgstr "Spam DNSBL"
60
+
61
+ msgid "RegExp"
62
+ msgstr "Expression régulière"
63
+
64
+ msgid "Approve it"
65
+ msgstr "Approuver"
66
+
67
+ msgid "Delete it"
68
+ msgstr "Supprimer"
69
+
70
+ msgid "Trash it"
71
+ msgstr "Dans la corbeille"
72
+
73
+ msgid "Spam list"
74
+ msgstr "Liste des spams"
75
+
76
+ msgid "Notify message by Antispam Bee"
77
+ msgstr "Message de notification par Antispam Bee"
78
+
79
+ msgid "Content removed by Antispam Bee"
80
+ msgstr "Contenu supprimé par Antispam Bee"
81
+
82
+ msgid "Last check"
83
+ msgstr "Dernière vérification"
84
+
85
+ msgid "Blocked"
86
+ msgstr "Bloqué"
87
+
88
+ msgid "Today"
89
+ msgstr "Aujourd'hui"
90
+
91
+ msgid ""
92
+ "Easy and extremely productive spam-fighting plugin with many sophisticated "
93
+ "solutions. Includes protection again trackback spam."
94
+ msgstr ""
95
+ "Extension simple et très efficace pour lutter contre les commentaires "
96
+ "indésirables comportant des solutions sophistiquées. Inclus une protection "
97
+ "contre le spam trackback."
98
+
99
+ msgid "http://antispambee.com"
100
+ msgstr "http://antispambee.com"
101
+
102
+ msgid "Comments"
103
+ msgstr "Commentaires"
104
+
105
+ msgid "Comment marked as spam"
106
+ msgstr "Commentaire marqué comme spam"
107
+
108
+ # Langues
109
+ msgid "Language"
110
+ msgstr "Langue"
111
+
112
+ msgid "English"
113
+ msgstr "Anglais"
114
+
115
+ msgid "German"
116
+ msgstr "Allemand"
117
+
118
+ msgid "French"
119
+ msgstr "Français"
120
+
121
+ msgid "Italian"
122
+ msgstr "Italien"
123
+
124
+ msgid "Spanish"
125
+ msgstr "Espagnol"
126
+
127
+ # Antispam-Filter
128
+ msgid "Antispam filter"
129
+ msgstr "Filtre antispam"
130
+
131
+ msgid "Filter in the execution order"
132
+ msgstr "Ordre d'exécution du filtrage"
133
+
134
+ msgid "Trust approved commenters"
135
+ msgstr "Faire confiance aux commentateurs approuvés"
136
+
137
+ msgid "Always approve previously approved users"
138
+ msgstr "Pas de vérification pour utilisateurs connus"
139
+
140
+ msgid "BBCode is spam"
141
+ msgstr "Le BBCode est considéré comme spam"
142
+
143
+ msgid "Review the comment contents for BBCode links"
144
+ msgstr "Rechercher les liens BBCode dans le commentaire"
145
+
146
+ msgid "Use a public antispam database"
147
+ msgstr "Banque de données de spams publique"
148
+
149
+ msgid ""
150
+ "Matching the ip address with <a href=\"https://dnsbl.tornevall.org\" "
151
+ "target=\"_blank\">Tornevall</a>"
152
+ msgstr ""
153
+ "Correspondance de l'IP en utilisant <a href=\"https://dnsbl.tornevall.org\" "
154
+ "target=\"_blank\">Tornevall</a>"
155
+
156
+ msgid "Validate the ip address of commenters"
157
+ msgstr "Valider l'adresse IP des commentateurs"
158
+
159
+ msgid "Validity check for used ip address"
160
+ msgstr "Vérification de la validité pour les IP utilisées"
161
+
162
+ msgid "Use regular expressions"
163
+ msgstr "Utiliser des expressions régulières"
164
+
165
+ msgid ""
166
+ "Predefined and custom patterns by <a href=\"https://gist.github.com/4242142\" "
167
+ "target=\"_blank\">plugin hook</a>"
168
+ msgstr ""
169
+ "Motifs prédéfinis et personnalisés par le <a href=\"https://gist.github."
170
+ "com/4242142\" target=\"_blank\">plugin hook</a>"
171
+
172
+ msgid "Look in the local spam database"
173
+ msgstr "Vérifier dans la base de données locale des spams"
174
+
175
+ msgid "Already marked as spam? Yes? No?"
176
+ msgstr "Le spam a-t-il déjà été reconnu ?"
177
+
178
+ msgid "Block comments from specific countries"
179
+ msgstr "Bloquer selon le pays"
180
+
181
+ msgid "Filtering the requests depending on country"
182
+ msgstr "Filtrage selon le pays d'origine du commentaire"
183
+
184
+ msgid "Allow comments only in certain language"
185
+ msgstr "N'accepter des commentaires qu'en une langue"
186
+
187
+ msgid "Detection and approval in specified language"
188
+ msgstr "Détection et autorisation d'une langue spécifiée"
189
+
190
+ # Erweitert
191
+ msgid "Advanced"
192
+ msgstr "Avancé"
193
+
194
+ msgid "Other antispam tools"
195
+ msgstr "Autres outils antispam"
196
+
197
+ msgid "Mark as spam, do not delete"
198
+ msgstr "Marquer comme spam et ne pas supprimer"
199
+
200
+ msgid "Keep the spam in my blog."
201
+ msgstr "Conserver le commentaire indésirable"
202
+
203
+ msgid "Notification by email"
204
+ msgstr "Notification par courriel"
205
+
206
+ msgid "Notify admins by e-mail about incoming spam"
207
+ msgstr "Avertir l'administrateur par courriel"
208
+
209
+ msgid "Not save the spam reason"
210
+ msgstr "Ne pas stocker la raison de détection"
211
+
212
+ msgid "Spam reason as table column in the spam overview"
213
+ msgstr "Raison dans la colonne du tableau d'aperçu"
214
+
215
+ #, c-format
216
+ msgid "Delete existing spam after %s days"
217
+ msgstr "Supprimer les spams après %s jours"
218
+
219
+ msgid "Cleaning up the database from old entries"
220
+ msgstr "Nettoyage de la base de données"
221
+
222
+ #, c-format
223
+ msgid "Limit approval to %s"
224
+ msgstr "Limiter aux %s"
225
+
226
+ msgid "Other types of spam will be deleted immediately"
227
+ msgstr "Autre type de spam supprimé immédiatemment"
228
+
229
+ msgid "Delete comments by spam reasons"
230
+ msgstr "Supprimer les commentaires selon détection"
231
+
232
+ msgid "For multiple selections press Ctrl/CMD"
233
+ msgstr "Choix multiples en maintenant la touche Ctrl/CMD"
234
+
235
+ # Sonstiges
236
+ msgid "More"
237
+ msgstr "Plus"
238
+
239
+ msgid "A few little things"
240
+ msgstr "Options moins significatives"
241
+
242
+ msgid "Statistics on the dashboard"
243
+ msgstr "Statistiques sur le tableau de bord"
244
+
245
+ msgid "Daily updates of spam detection rate"
246
+ msgstr "Taux de détection de spam avec valeurs quotidiennes"
247
+
248
+ msgid "Spam counter on the dashboard"
249
+ msgstr "Compteur de spam sur le tableau de bord"
250
+
251
+ msgid "Amount of identified spam comments"
252
+ msgstr "Nombre de commentaires indésirables identifiés"
253
+
254
+ msgid "Do not check trackbacks / pingbacks"
255
+ msgstr "Ignorer les trackbacks et pingbacks"
256
+
257
+ msgid "No spam check for trackback notifications"
258
+ msgstr "Pas de spam pour les notifications de trackback"
259
+
260
+ msgid "Comment form used outside of posts"
261
+ msgstr "Commentaires présents dans les archives"
262
+
263
+ msgid "Check for comment forms on archive pages"
264
+ msgstr "Vérification des commentaires dans les archives"
lang/antispam_bee-nl_NL.mo CHANGED
Binary file
lang/antispam_bee-nl_NL.po CHANGED
@@ -1,246 +1,266 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Antispam Bee\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: \n"
6
- "Last-Translator: Sergej Müller\n"
7
- "Language-Team: Presis\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-SourceCharset: utf-8\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Language: nl_NL\n"
15
- "X-Generator: Poedit 1.6.5\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- msgid "No data available."
19
- msgstr "Geen gegevens beschikbaar."
20
-
21
- msgid "New spam comment on your post"
22
- msgstr "Nieuwe spam reactie op jouw bericht"
23
-
24
- msgid "Marked as spam by Antispam Bee / Spam reason"
25
- msgstr "Gemarkeerd als spam door Antispam Bee / Spam reactie"
26
-
27
- msgid "Comment"
28
- msgstr "Reactie"
29
-
30
- msgid "Type"
31
- msgstr "Type"
32
-
33
- msgid "Spam Reason"
34
- msgstr "Spam reden"
35
-
36
- msgid "Empty Data"
37
- msgstr "Geen gegevens"
38
-
39
- msgid "CSS Hack"
40
- msgstr "CSS hack"
41
-
42
- msgid "Server IP"
43
- msgstr "Server IP"
44
-
45
- msgid "Spam IP"
46
- msgstr "Spam IP"
47
-
48
- msgid "Comment Language"
49
- msgstr "Taal van reactie"
50
-
51
- msgid "Country Check"
52
- msgstr "Land controle"
53
-
54
- msgid "DNSBL Spam"
55
- msgstr "DNSBL Spam"
56
-
57
- msgid "RegExp"
58
- msgstr "RegExp"
59
-
60
- msgid "Approve it"
61
- msgstr "Toestaan"
62
-
63
- msgid "Delete it"
64
- msgstr "Verwijderen"
65
-
66
- msgid "Trash it"
67
- msgstr "Verplaats naar prullenbak"
68
-
69
- msgid "Spam list"
70
- msgstr "Spamlijst"
71
-
72
- msgid "Notify message by Antispam Bee"
73
- msgstr "Notificatiebericht van Antispam Bee "
74
-
75
- msgid "Content removed by Antispam Bee"
76
- msgstr "Inhoud verwijderd door Antispam Bee"
77
-
78
- msgid "Last check"
79
- msgstr "Laatste controle"
80
-
81
- msgid "Blocked"
82
- msgstr "Geblokkeerd"
83
-
84
- msgid "Today"
85
- msgstr "Vandaag"
86
-
87
- msgid "Easy and extremely productive spam-fighting plugin with many sophisticated solutions. Includes protection again trackback spam."
88
- msgstr "Eenvoudige en extreem productieve spam plugin met vele passende oplossingen. Inclusief bescherming tegen trackback spam."
89
-
90
- msgid "http://antispambee.com"
91
- msgstr "http://antispambee.com"
92
-
93
- msgid "Comments"
94
- msgstr "Reacties"
95
-
96
- msgid "Comment marked as spam"
97
- msgstr "Reactie gemarkeerd als spam"
98
-
99
- # Langues
100
- msgid "Language"
101
- msgstr "Taal"
102
-
103
- msgid "English"
104
- msgstr "Engels"
105
-
106
- msgid "German"
107
- msgstr "Duits"
108
-
109
- msgid "French"
110
- msgstr "Frans"
111
-
112
- msgid "Italian"
113
- msgstr "Italiaans"
114
-
115
- msgid "Spanish"
116
- msgstr "Spaans"
117
-
118
- # Antispam-Filter
119
- msgid "Antispam filter"
120
- msgstr "Antispam filter"
121
-
122
- msgid "Filter in the execution order"
123
- msgstr "Filter in uitvoer volgorde"
124
-
125
- msgid "Trust approved commentators"
126
- msgstr "Vertrouw toegestane reageerders"
127
-
128
- msgid "No check for already commenting users"
129
- msgstr "Geen controle voor gebruikers die al gereageerd hebben"
130
-
131
- msgid "BBCode is spam"
132
- msgstr "BBCode is spam"
133
-
134
- msgid "Review the comment contents for BBCode links"
135
- msgstr "Controleer de reactie-inhoud voor BBCode links"
136
-
137
- msgid "Use a public antispam database"
138
- msgstr "Gebruik een publieke antispam database"
139
-
140
- msgid "Matching the ip address with <a href=\"http://opm.tornevall.org\" target=\"_blank\">Tornevall</a>"
141
- msgstr "Vergelijk het ip adres met <a href=\"http://opm.tornevall.org\" target=\"_blank\">Tornevall</a>"
142
-
143
- msgid "Validate the ip address of commentators"
144
- msgstr "Controleer het ip adres van de reageerders"
145
-
146
- msgid "Validity check for used ip address"
147
- msgstr "Geldigheidscontrole voor gebruikte ip adres"
148
-
149
- msgid "Use regular expressions"
150
- msgstr "Gebruik reguliere expressies"
151
-
152
- msgid "Predefined and custom patterns by <a href=\"https://gist.github.com/4242142\" target=\"_blank\">plugin hook</a>"
153
- msgstr "Vooraf gedefinieerde en eigen sjablonen door <a href=\"https://gist.github.com/4242142\" target=\"_blank\">plugin hook</a>"
154
-
155
- msgid "Look in the local spam database"
156
- msgstr "Kijk in de locale spam database"
157
-
158
- msgid "Already marked as spam? Yes? No?"
159
- msgstr "Al reeds aangemerkt als spam? Ja? Nee?"
160
-
161
- msgid "Block comments from specific countries"
162
- msgstr "Blokkeer reactie vanuit specifieke landen"
163
-
164
- msgid "Filtering the requests depending on country"
165
- msgstr "Filter de aanvraag afhankelijk van het land"
166
-
167
- msgid "Allow comments only in certain language"
168
- msgstr "Sta alleen reacties toe in een bepaalde taal"
169
-
170
- msgid "Detection and approval in specified language"
171
- msgstr "Detectie en goedkeuring in de opgegeven taal"
172
-
173
- # Erweitert
174
- msgid "Advanced"
175
- msgstr "Uitgebreid"
176
-
177
- msgid "Other antispam tools"
178
- msgstr "Andere antispam gereedschappen"
179
-
180
- msgid "Mark as spam, do not delete"
181
- msgstr "Markeer als spam, niet verwijderen"
182
-
183
- msgid "Keep the spam in my blog."
184
- msgstr "Behoud de spam in jouw blog."
185
-
186
- msgid "Notification by email"
187
- msgstr "Kennisgevingsbericht per e-mail"
188
-
189
- msgid "Sending an alert to the admin"
190
- msgstr "Stuur een melding naar de admin"
191
-
192
- msgid "Not store the reason in the comment body"
193
- msgstr "Sla de reden niet op in de reactie inhoud"
194
-
195
- msgid "Filter name as reason for current suspicion"
196
- msgstr "Filter naam als reden voor de huidige verdenking"
197
-
198
- msgid "Delete existing spam after %s days"
199
- msgstr "Verwijder bestaande spam na %s dagen"
200
-
201
- msgid "Cleaning up the database from old entries"
202
- msgstr "Database opschonen"
203
-
204
- msgid "Limit on %s"
205
- msgstr "Limiet op %s"
206
-
207
- msgid "Another type of spam will be deleted immediately"
208
- msgstr "Een ander type spam wil direct worden verwijderd"
209
-
210
- msgid "Delete comments by spam reasons"
211
- msgstr "Verwijder reacties bij spam redenen"
212
-
213
- msgid "Multiple choice by pressing Ctrl/CMD"
214
- msgstr "Meerdere keuzes door Ctrl / CMD in te drukken"
215
-
216
- # Sonstiges
217
- msgid "More"
218
- msgstr "Meer"
219
-
220
- msgid "A few little things"
221
- msgstr "Een paar kleine dingen"
222
-
223
- msgid "Statistics on the dashboard"
224
- msgstr "Statistieken op het dashboard"
225
-
226
- msgid "Spam detection rate with daily values"
227
- msgstr "Spam detectie mate met dagelijkse waardes"
228
-
229
- msgid "Spam counter on the dashboard"
230
- msgstr "Spam teller op het dashboard"
231
-
232
- msgid "Amount of identified spam comments"
233
- msgstr "Aantal geïdentificeerde spam reacties "
234
-
235
- msgid "Do not check trackbacks / pingbacks"
236
- msgstr "Trackbacks / pingbacks niet controleren"
237
-
238
- msgid "No spam check for trackback notifications"
239
- msgstr "Geen spam controle voor trackback meldingen"
240
-
241
- msgid "Comment form used outside of posts"
242
- msgstr "Reactieformulier wordt buiten berichten gebruikt"
243
-
244
- msgid "Check for comment forms on archive pages"
245
- msgstr "Controleer voor reactieformulieren op archief pagina's"
246
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Antispam Bee\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: Tue Mar 10 2015 08:17:06 GMT+0100 (CET)\n"
7
+ "Last-Translator: glueckpress <caspar@glueckpress.com>\n"
8
+ "Language-Team: Presis\n"
9
+ "Language: Dutch\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=utf-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
+ "X-Poedit-Basepath: .\n"
21
+ "X-Generator: Loco - https://localise.biz/\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Loco-Target-Locale: nl_NL"
24
+
25
+ msgid "No data available."
26
+ msgstr "Geen gegevens beschikbaar."
27
+
28
+ msgid "New spam comment on your post"
29
+ msgstr "Nieuwe spam reactie op jouw bericht"
30
+
31
+ msgid "Marked as spam by Antispam Bee / Spam reason"
32
+ msgstr "Gemarkeerd als spam door Antispam Bee / Spam reactie"
33
+
34
+ msgid "Comment"
35
+ msgstr "Reactie"
36
+
37
+ msgid "Type"
38
+ msgstr "Type"
39
+
40
+ msgid "Spam Reason"
41
+ msgstr "Spam reden"
42
+
43
+ msgid "Empty Data"
44
+ msgstr "Geen gegevens"
45
+
46
+ msgid "CSS Hack"
47
+ msgstr "CSS hack"
48
+
49
+ msgid "Server IP"
50
+ msgstr "Server IP"
51
+
52
+ msgid "Spam IP"
53
+ msgstr "Spam IP"
54
+
55
+ msgid "Comment Language"
56
+ msgstr "Taal van reactie"
57
+
58
+ msgid "Country Check"
59
+ msgstr "Land controle"
60
+
61
+ msgid "DNSBL Spam"
62
+ msgstr "DNSBL Spam"
63
+
64
+ msgid "RegExp"
65
+ msgstr "RegExp"
66
+
67
+ msgid "Approve it"
68
+ msgstr "Toestaan"
69
+
70
+ msgid "Delete it"
71
+ msgstr "Verwijderen"
72
+
73
+ msgid "Trash it"
74
+ msgstr "Verplaats naar prullenbak"
75
+
76
+ msgid "Spam list"
77
+ msgstr "Spamlijst"
78
+
79
+ msgid "Notify message by Antispam Bee"
80
+ msgstr "Notificatiebericht van Antispam Bee "
81
+
82
+ msgid "Content removed by Antispam Bee"
83
+ msgstr "Inhoud verwijderd door Antispam Bee"
84
+
85
+ msgid "Last check"
86
+ msgstr "Laatste controle"
87
+
88
+ msgid "Blocked"
89
+ msgstr "Geblokkeerd"
90
+
91
+ msgid "Today"
92
+ msgstr "Vandaag"
93
+
94
+ msgid ""
95
+ "Easy and extremely productive spam-fighting plugin with many sophisticated "
96
+ "solutions. Includes protection again trackback spam."
97
+ msgstr ""
98
+ "Eenvoudige en extreem productieve spam plugin met vele passende oplossingen. "
99
+ "Inclusief bescherming tegen trackback spam."
100
+
101
+ msgid "http://antispambee.com"
102
+ msgstr "http://antispambee.com"
103
+
104
+ msgid "Comments"
105
+ msgstr "Reacties"
106
+
107
+ msgid "Comment marked as spam"
108
+ msgstr "Reactie gemarkeerd als spam"
109
+
110
+ # Langues
111
+ msgid "Language"
112
+ msgstr "Taal"
113
+
114
+ msgid "English"
115
+ msgstr "Engels"
116
+
117
+ msgid "German"
118
+ msgstr "Duits"
119
+
120
+ msgid "French"
121
+ msgstr "Frans"
122
+
123
+ msgid "Italian"
124
+ msgstr "Italiaans"
125
+
126
+ msgid "Spanish"
127
+ msgstr "Spaans"
128
+
129
+ # Antispam-Filter
130
+ msgid "Antispam filter"
131
+ msgstr "Antispam filter"
132
+
133
+ msgid "Filter in the execution order"
134
+ msgstr "Filter in uitvoer volgorde"
135
+
136
+ msgid "Trust approved commenters"
137
+ msgstr "Vertrouw toegestane reageerders"
138
+
139
+ msgid "Always approve previously approved users"
140
+ msgstr "Geen controle voor gebruikers die al gereageerd hebben"
141
+
142
+ msgid "BBCode is spam"
143
+ msgstr "BBCode is spam"
144
+
145
+ msgid "Review the comment contents for BBCode links"
146
+ msgstr "Controleer de reactie-inhoud voor BBCode links"
147
+
148
+ msgid "Use a public antispam database"
149
+ msgstr "Gebruik een publieke antispam database"
150
+
151
+ msgid ""
152
+ "Matching the ip address with <a href=\"http://opm.tornevall.org\" "
153
+ "target=\"_blank\">Tornevall</a>"
154
+ msgstr ""
155
+ "Vergelijk het ip adres met <a href=\"http://opm.tornevall.org\" "
156
+ "target=\"_blank\">Tornevall</a>"
157
+
158
+ msgid "Validate the ip address of commenters"
159
+ msgstr "Controleer het ip adres van de reageerders"
160
+
161
+ msgid "Validity check for used ip address"
162
+ msgstr "Geldigheidscontrole voor gebruikte ip adres"
163
+
164
+ msgid "Use regular expressions"
165
+ msgstr "Gebruik reguliere expressies"
166
+
167
+ msgid ""
168
+ "Predefined and custom patterns by <a href=\"https://gist.github.com/4242142\" "
169
+ "target=\"_blank\">plugin hook</a>"
170
+ msgstr ""
171
+ "Vooraf gedefinieerde en eigen sjablonen door <a href=\"https://gist.github."
172
+ "com/4242142\" target=\"_blank\">plugin hook</a>"
173
+
174
+ msgid "Look in the local spam database"
175
+ msgstr "Kijk in de locale spam database"
176
+
177
+ msgid "Already marked as spam? Yes? No?"
178
+ msgstr "Al reeds aangemerkt als spam? Ja? Nee?"
179
+
180
+ msgid "Block comments from specific countries"
181
+ msgstr "Blokkeer reactie vanuit specifieke landen"
182
+
183
+ msgid "Filtering the requests depending on country"
184
+ msgstr "Filter de aanvraag afhankelijk van het land"
185
+
186
+ msgid "Allow comments only in certain language"
187
+ msgstr "Sta alleen reacties toe in een bepaalde taal"
188
+
189
+ msgid "Detection and approval in specified language"
190
+ msgstr "Detectie en goedkeuring in de opgegeven taal"
191
+
192
+ # Erweitert
193
+ msgid "Advanced"
194
+ msgstr "Uitgebreid"
195
+
196
+ msgid "Other antispam tools"
197
+ msgstr "Andere antispam gereedschappen"
198
+
199
+ msgid "Mark as spam, do not delete"
200
+ msgstr "Markeer als spam, niet verwijderen"
201
+
202
+ msgid "Keep the spam in my blog."
203
+ msgstr "Behoud de spam in jouw blog."
204
+
205
+ msgid "Notification by email"
206
+ msgstr "Kennisgevingsbericht per e-mail"
207
+
208
+ msgid "Notify admins by e-mail about incoming spam"
209
+ msgstr "Stuur een melding naar de admin"
210
+
211
+ msgid "Not store the reason in the comment body"
212
+ msgstr "Sla de reden niet op in de reactie inhoud"
213
+
214
+ msgid "Filter name as reason for current suspicion"
215
+ msgstr "Filter naam als reden voor de huidige verdenking"
216
+
217
+ #, c-format
218
+ msgid "Delete existing spam after %s days"
219
+ msgstr "Verwijder bestaande spam na %s dagen"
220
+
221
+ msgid "Cleaning up the database from old entries"
222
+ msgstr "Database opschonen"
223
+
224
+ #, c-format
225
+ msgid "Limit approval to %s"
226
+ msgstr "Limiet op %s"
227
+
228
+ msgid "Other types of spam will be deleted immediately"
229
+ msgstr "Een ander type spam wil direct worden verwijderd"
230
+
231
+ msgid "Delete comments by spam reasons"
232
+ msgstr "Verwijder reacties bij spam redenen"
233
+
234
+ msgid "For multiple selections press Ctrl/CMD"
235
+ msgstr "Meerdere keuzes door Ctrl / CMD in te drukken"
236
+
237
+ # Sonstiges
238
+ msgid "More"
239
+ msgstr "Meer"
240
+
241
+ msgid "A few little things"
242
+ msgstr "Een paar kleine dingen"
243
+
244
+ msgid "Statistics on the dashboard"
245
+ msgstr "Statistieken op het dashboard"
246
+
247
+ msgid "Daily updates of spam detection rate"
248
+ msgstr "Spam detectie mate met dagelijkse waardes"
249
+
250
+ msgid "Spam counter on the dashboard"
251
+ msgstr "Spam teller op het dashboard"
252
+
253
+ msgid "Amount of identified spam comments"
254
+ msgstr "Aantal geïdentificeerde spam reacties "
255
+
256
+ msgid "Do not check trackbacks / pingbacks"
257
+ msgstr "Trackbacks / pingbacks niet controleren"
258
+
259
+ msgid "No spam check for trackback notifications"
260
+ msgstr "Geen spam controle voor trackback meldingen"
261
+
262
+ msgid "Comment form used outside of posts"
263
+ msgstr "Reactieformulier wordt buiten berichten gebruikt"
264
+
265
+ msgid "Check for comment forms on archive pages"
266
+ msgstr "Controleer voor reactieformulieren op archief pagina's"
lang/antispam_bee-ru_RU.mo CHANGED
Binary file
lang/antispam_bee-ru_RU.po CHANGED
@@ -1,262 +1,272 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Antispam Bee\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-11-21 22:20+0300\n"
6
- "PO-Revision-Date: 2013-12-20 11:18+0100\n"
7
- "Last-Translator: Sergej Müller\n"
8
- "Language-Team: Andrey Ananin\n"
9
- "Language: \n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-Language: Russian\n"
16
- "X-Poedit-Country: RUSSIAN FEDERATION\n"
17
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
18
- "X-Poedit-SourceCharset: utf-8\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPath-1: ..\n"
21
-
22
- #: ../antispam_bee.php:421
23
- msgid "Settings"
24
- msgstr "Настройки"
25
-
26
- #: ../antispam_bee.php:472
27
- msgid "Antispam Bee requires WordPress 3.4 and PHP 5.2.4"
28
- msgstr "Для работы Antispam Bee требуются WordPress 3.4 и PHP 5.2.4"
29
-
30
- #: ../antispam_bee.php:651
31
- msgid "Blocked"
32
- msgstr "заблокировано"
33
-
34
- #: ../antispam_bee.php:758
35
- msgid "Today"
36
- msgstr "Сегодня"
37
-
38
- #: ../antispam_bee.php:816
39
- msgid "No data available."
40
- msgstr "Нет данных"
41
-
42
- #: ../antispam_bee.php:1823
43
- msgid "Comment marked as spam"
44
- msgstr "Комментарий отмечен как спам"
45
-
46
- #: ../antispam_bee.php:1830
47
- msgid "Content removed by Antispam Bee"
48
- msgstr "Содержимое удалено Antispam Bee"
49
-
50
- #: ../antispam_bee.php:1837
51
- msgid "New spam comment on your post"
52
- msgstr "Новый спам-комментарий на запись"
53
-
54
- #: ../antispam_bee.php:1841
55
- msgid "Author"
56
- msgstr "Автор"
57
-
58
- #: ../antispam_bee.php:1848
59
- msgid "Type"
60
- msgstr "Тип"
61
-
62
- #: ../antispam_bee.php:1855
63
- #: ../inc/gui.class.php:361
64
- msgid "Spam Reason"
65
- msgstr "Причина спама"
66
-
67
- #: ../antispam_bee.php:1864
68
- msgid "Trash it"
69
- msgstr "В корзину"
70
-
71
- #: ../antispam_bee.php:1870
72
- msgid "Delete it"
73
- msgstr "Удалить"
74
-
75
- #: ../antispam_bee.php:1876
76
- msgid "Approve it"
77
- msgstr "Одобрить"
78
-
79
- #: ../antispam_bee.php:1880
80
- msgid "Spam list"
81
- msgstr "Список спам-сообщений"
82
-
83
- #: ../antispam_bee.php:1884
84
- msgid "Notify message by Antispam Bee"
85
- msgstr "Уведомление от Antispam Bee"
86
-
87
- #: ../antispam_bee.php:1885
88
- msgid "http://antispambee.com"
89
- msgstr "http://antispambee.com"
90
-
91
- #: ../inc/gui.class.php:30
92
- msgid "Cheatin&#8217; uh?"
93
- msgstr "Жульничаете?"
94
-
95
- #: ../inc/gui.class.php:198
96
- msgid "Antispam filter"
97
- msgstr "Антиспам-фильтр"
98
-
99
- #: ../inc/gui.class.php:201
100
- msgid "Filter in the execution order"
101
- msgstr "Фильтрация в порядке выполнения"
102
-
103
- #: ../inc/gui.class.php:207
104
- msgid "Trust approved commentators"
105
- msgstr "Доверять одобренным комментаторам"
106
-
107
- #: ../inc/gui.class.php:208
108
- msgid "No check for already commenting users"
109
- msgstr "Не проверять для пользов. с коммент."
110
-
111
- msgid "BBCode is spam"
112
- msgstr "BBCod это спам"
113
-
114
- msgid "Review the comment contents for BBCode links"
115
- msgstr "Просматривание коммент. на BBCode ссылки"
116
-
117
- #: ../inc/gui.class.php:215
118
- msgid "Use a public antispam database"
119
- msgstr "Использовать общую БД антиспама"
120
-
121
- #: ../inc/gui.class.php:216
122
- msgid "Matching the ip address with <a href=\"https://dnsbl.tornevall.org\" target=\"_blank\">Tornevall</a>"
123
- msgstr "Проверять IP-адрес в <a href=\"https://dnsbl.tornevall.org\" target=\"_blank\">Tornevall</a>"
124
-
125
- #: ../inc/gui.class.php:223
126
- msgid "Validate the ip address of commentators"
127
- msgstr "Проверять IP-адреса пользователей"
128
-
129
- #: ../inc/gui.class.php:224
130
- msgid "Validity check for used ip address"
131
- msgstr "Проверка используемого IP-адреса"
132
-
133
- #: ../inc/gui.class.php:231
134
- msgid "Look in the local spam database"
135
- msgstr "Поиск в локальной БД спама"
136
-
137
- #: ../inc/gui.class.php:232
138
- msgid "Already marked as spam? Yes? No?"
139
- msgstr "Уже помечен как спам? Да? Нет?"
140
-
141
- #: ../inc/gui.class.php:239
142
- msgid "Block comments from specific countries"
143
- msgstr "Блокировать комментарии по странам"
144
-
145
- #: ../inc/gui.class.php:240
146
- msgid "Filtering the requests depending on country"
147
- msgstr "Фильтр коммент. в зависимости от страны"
148
-
149
- #: ../inc/gui.class.php:262
150
- msgid "Allow comments only in certain language"
151
- msgstr "Разрешить коммент. только на опред. языке"
152
-
153
- #: ../inc/gui.class.php:263
154
- msgid "Detection and approval in specified language"
155
- msgstr "Определ. и одобр. на указанном языке"
156
-
157
- #: ../inc/gui.class.php:275
158
- msgid "Language"
159
- msgstr "Язык"
160
-
161
- #: ../inc/gui.class.php:286
162
- msgid "Advanced"
163
- msgstr "Расширенные настройки"
164
-
165
- #: ../inc/gui.class.php:289
166
- msgid "Other antispam tools"
167
- msgstr "Дополнительные средства против спама"
168
-
169
- #: ../inc/gui.class.php:295
170
- msgid "Mark as spam, do not delete"
171
- msgstr "Помечать как спам, не удалять"
172
-
173
- #: ../inc/gui.class.php:296
174
- msgid "Keep the spam in my blog."
175
- msgstr "Оставить спам в блоге."
176
-
177
- #: ../inc/gui.class.php:303
178
- msgid "Notification by email"
179
- msgstr "Уведомление по email"
180
-
181
- #: ../inc/gui.class.php:304
182
- msgid "Sending an alert to the admin"
183
- msgstr "Послать предупреждение администратору"
184
-
185
- #: ../inc/gui.class.php:311
186
- msgid "Not store the reason in the comment body"
187
- msgstr "Не сохр. причину в теле комментария"
188
-
189
- #: ../inc/gui.class.php:312
190
- msgid "Filter name as reason for current suspicion"
191
- msgstr "Фильтр имени как признака спама"
192
-
193
- #: ../inc/gui.class.php:320
194
- #, php-format
195
- msgid "Delete existing spam after %s days"
196
- msgstr "Удалять спам через %s дней"
197
-
198
- #: ../inc/gui.class.php:323
199
- msgid "Cleaning up the database from old entries"
200
- msgstr "Очистить БД от старых записей"
201
-
202
- #: ../inc/gui.class.php:331
203
- #, php-format
204
- msgid "Limit on %s"
205
- msgstr "Ограничить на %s"
206
-
207
- #: ../inc/gui.class.php:341
208
- msgid "Another type of spam will be deleted immediately"
209
- msgstr "Другой тип спама будет сразу удален"
210
-
211
- #: ../inc/gui.class.php:348
212
- msgid "Delete comments by spam reasons"
213
- msgstr "Удалять комментарии по причине спама"
214
-
215
- #: ../inc/gui.class.php:349
216
- msgid "Multiple choice by pressing Ctrl/CMD"
217
- msgstr "Множеств. выбор нажатием Ctrl/CMD"
218
-
219
- #: ../inc/gui.class.php:372
220
- msgid "More"
221
- msgstr "Дополнительно"
222
-
223
- #: ../inc/gui.class.php:375
224
- msgid "A few little things"
225
- msgstr "Несколько мелочей"
226
-
227
- #: ../inc/gui.class.php:381
228
- msgid "Statistics on the dashboard"
229
- msgstr "Статистика в консоли"
230
-
231
- #: ../inc/gui.class.php:382
232
- msgid "Spam detection rate with daily values"
233
- msgstr "Частота выявления спама по дням"
234
-
235
- #: ../inc/gui.class.php:389
236
- msgid "Spam counter on the dashboard"
237
- msgstr "Счетчик спама в консоли"
238
-
239
- #: ../inc/gui.class.php:390
240
- msgid "Amount of identified spam comments"
241
- msgstr "Кол-во обнаруженных спам-комментариев"
242
-
243
- #: ../inc/gui.class.php:397
244
- msgid "Do not check trackbacks / pingbacks"
245
- msgstr "Не проверять обратные ссылки/уведомления"
246
-
247
- #: ../inc/gui.class.php:398
248
- msgid "No spam check for trackback notifications"
249
- msgstr "Отключить для уведомл. по обр. ссылкам"
250
-
251
- #: ../inc/gui.class.php:405
252
- msgid "Comment form used outside of posts"
253
- msgstr "Комментарии вне записей блога"
254
-
255
- #: ../inc/gui.class.php:406
256
- msgid "Check for comment forms on archive pages"
257
- msgstr "Проверять коммент. на страницах архива"
258
-
259
- #: ../inc/gui.class.php:422
260
- msgid "Save Changes"
261
- msgstr "Сохранить изменения"
262
-
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Antispam Bee\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-11-21 22:20+0300\n"
6
+ "PO-Revision-Date: Tue Mar 10 2015 08:17:13 GMT+0100 (CET)\n"
7
+ "Last-Translator: glueckpress <caspar@glueckpress.com>\n"
8
+ "Language-Team: Andrey Ananin\n"
9
+ "Language: Russian\n"
10
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
11
+ "n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
+ "X-Poedit-Basepath: .\n"
22
+ "X-Poedit-Language: Russian\n"
23
+ "X-Poedit-Country: RUSSIAN FEDERATION\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+ "X-Poedit-SearchPath-1: ..\n"
26
+ "X-Loco-Target-Locale: ru_RU\n"
27
+ "X-Generator: Loco - https://localise.biz/"
28
+
29
+ #: ../antispam_bee.php:421
30
+ msgid "Settings"
31
+ msgstr "Настройки"
32
+
33
+ #: ../antispam_bee.php:472
34
+ msgid "Antispam Bee requires WordPress 3.4 and PHP 5.2.4"
35
+ msgstr "Для работы Antispam Bee требуются WordPress 3.4 и PHP 5.2.4"
36
+
37
+ #: ../antispam_bee.php:651
38
+ msgid "Blocked"
39
+ msgstr "заблокировано"
40
+
41
+ #: ../antispam_bee.php:758
42
+ msgid "Today"
43
+ msgstr "Сегодня"
44
+
45
+ #: ../antispam_bee.php:816
46
+ msgid "No data available."
47
+ msgstr "Нет данных"
48
+
49
+ #: ../antispam_bee.php:1823
50
+ msgid "Comment marked as spam"
51
+ msgstr "Комментарий отмечен как спам"
52
+
53
+ #: ../antispam_bee.php:1830
54
+ msgid "Content removed by Antispam Bee"
55
+ msgstr "Содержимое удалено Antispam Bee"
56
+
57
+ #: ../antispam_bee.php:1837
58
+ msgid "New spam comment on your post"
59
+ msgstr "Новый спам-комментарий на запись"
60
+
61
+ #: ../antispam_bee.php:1841
62
+ msgid "Author"
63
+ msgstr "Автор"
64
+
65
+ #: ../antispam_bee.php:1848
66
+ msgid "Type"
67
+ msgstr "Тип"
68
+
69
+ #: ../antispam_bee.php:1855
70
+ #: ../inc/gui.class.php:361
71
+ msgid "Spam Reason"
72
+ msgstr "Причина спама"
73
+
74
+ #: ../antispam_bee.php:1864
75
+ msgid "Trash it"
76
+ msgstr "В корзину"
77
+
78
+ #: ../antispam_bee.php:1870
79
+ msgid "Delete it"
80
+ msgstr "Удалить"
81
+
82
+ #: ../antispam_bee.php:1876
83
+ msgid "Approve it"
84
+ msgstr "Одобрить"
85
+
86
+ #: ../antispam_bee.php:1880
87
+ msgid "Spam list"
88
+ msgstr "Список спам-сообщений"
89
+
90
+ #: ../antispam_bee.php:1884
91
+ msgid "Notify message by Antispam Bee"
92
+ msgstr "Уведомление от Antispam Bee"
93
+
94
+ #: ../antispam_bee.php:1885
95
+ msgid "http://antispambee.com"
96
+ msgstr "http://antispambee.com"
97
+
98
+ #: ../inc/gui.class.php:30
99
+ msgid "Cheatin&#8217; uh?"
100
+ msgstr "Жульничаете?"
101
+
102
+ #: ../inc/gui.class.php:198
103
+ msgid "Antispam filter"
104
+ msgstr "Антиспам-фильтр"
105
+
106
+ #: ../inc/gui.class.php:201
107
+ msgid "Filter in the execution order"
108
+ msgstr "Фильтрация в порядке выполнения"
109
+
110
+ #: ../inc/gui.class.php:207
111
+ msgid "Trust approved commenters"
112
+ msgstr "Доверять одобренным комментаторам"
113
+
114
+ #: ../inc/gui.class.php:208
115
+ msgid "Always approve previously approved users"
116
+ msgstr "Не проверять для пользов. с коммент."
117
+
118
+ msgid "BBCode is spam"
119
+ msgstr "BBCod это спам"
120
+
121
+ msgid "Review the comment contents for BBCode links"
122
+ msgstr "Просматривание коммент. на BBCode ссылки"
123
+
124
+ #: ../inc/gui.class.php:215
125
+ msgid "Use a public antispam database"
126
+ msgstr "Использовать общую БД антиспама"
127
+
128
+ #: ../inc/gui.class.php:216
129
+ msgid ""
130
+ "Matching the ip address with <a href=\"https://dnsbl.tornevall.org\" "
131
+ "target=\"_blank\">Tornevall</a>"
132
+ msgstr ""
133
+ "Проверять IP-адрес в <a href=\"https://dnsbl.tornevall.org\" "
134
+ "target=\"_blank\">Tornevall</a>"
135
+
136
+ #: ../inc/gui.class.php:223
137
+ msgid "Validate the ip address of commenters"
138
+ msgstr "Проверять IP-адреса пользователей"
139
+
140
+ #: ../inc/gui.class.php:224
141
+ msgid "Validity check for used ip address"
142
+ msgstr "Проверка используемого IP-адреса"
143
+
144
+ #: ../inc/gui.class.php:231
145
+ msgid "Look in the local spam database"
146
+ msgstr "Поиск в локальной БД спама"
147
+
148
+ #: ../inc/gui.class.php:232
149
+ msgid "Already marked as spam? Yes? No?"
150
+ msgstr "Уже помечен как спам? Да? Нет?"
151
+
152
+ #: ../inc/gui.class.php:239
153
+ msgid "Block comments from specific countries"
154
+ msgstr "Блокировать комментарии по странам"
155
+
156
+ #: ../inc/gui.class.php:240
157
+ msgid "Filtering the requests depending on country"
158
+ msgstr "Фильтр коммент. в зависимости от страны"
159
+
160
+ #: ../inc/gui.class.php:262
161
+ msgid "Allow comments only in certain language"
162
+ msgstr "Разрешить коммент. только на опред. языке"
163
+
164
+ #: ../inc/gui.class.php:263
165
+ msgid "Detection and approval in specified language"
166
+ msgstr "Определ. и одобр. на указанном языке"
167
+
168
+ #: ../inc/gui.class.php:275
169
+ msgid "Language"
170
+ msgstr "Язык"
171
+
172
+ #: ../inc/gui.class.php:286
173
+ msgid "Advanced"
174
+ msgstr "Расширенные настройки"
175
+
176
+ #: ../inc/gui.class.php:289
177
+ msgid "Other antispam tools"
178
+ msgstr "Дополнительные средства против спама"
179
+
180
+ #: ../inc/gui.class.php:295
181
+ msgid "Mark as spam, do not delete"
182
+ msgstr "Помечать как спам, не удалять"
183
+
184
+ #: ../inc/gui.class.php:296
185
+ msgid "Keep the spam in my blog."
186
+ msgstr "Оставить спам в блоге."
187
+
188
+ #: ../inc/gui.class.php:303
189
+ msgid "Notification by email"
190
+ msgstr "Уведомление по email"
191
+
192
+ #: ../inc/gui.class.php:304
193
+ msgid "Notify admins by e-mail about incoming spam"
194
+ msgstr "Послать предупреждение администратору"
195
+
196
+ #: ../inc/gui.class.php:311
197
+ msgid "Not store the reason in the comment body"
198
+ msgstr "Не сохр. причину в теле комментария"
199
+
200
+ #: ../inc/gui.class.php:312
201
+ msgid "Filter name as reason for current suspicion"
202
+ msgstr "Фильтр имени как признака спама"
203
+
204
+ #: ../inc/gui.class.php:320
205
+ #, php-format
206
+ msgid "Delete existing spam after %s days"
207
+ msgstr "Удалять спам через %s дней"
208
+
209
+ #: ../inc/gui.class.php:323
210
+ msgid "Cleaning up the database from old entries"
211
+ msgstr "Очистить БД от старых записей"
212
+
213
+ #: ../inc/gui.class.php:331
214
+ #, php-format
215
+ msgid "Limit approval to %s"
216
+ msgstr "Ограничить на %s"
217
+
218
+ #: ../inc/gui.class.php:341
219
+ msgid "Other types of spam will be deleted immediately"
220
+ msgstr "Другой тип спама будет сразу удален"
221
+
222
+ #: ../inc/gui.class.php:348
223
+ msgid "Delete comments by spam reasons"
224
+ msgstr "Удалять комментарии по причине спама"
225
+
226
+ #: ../inc/gui.class.php:349
227
+ msgid "For multiple selections press Ctrl/CMD"
228
+ msgstr "Множеств. выбор нажатием Ctrl/CMD"
229
+
230
+ #: ../inc/gui.class.php:372
231
+ msgid "More"
232
+ msgstr "Дополнительно"
233
+
234
+ #: ../inc/gui.class.php:375
235
+ msgid "A few little things"
236
+ msgstr "Несколько мелочей"
237
+
238
+ #: ../inc/gui.class.php:381
239
+ msgid "Statistics on the dashboard"
240
+ msgstr "Статистика в консоли"
241
+
242
+ #: ../inc/gui.class.php:382
243
+ msgid "Daily updates of spam detection rate"
244
+ msgstr "Частота выявления спама по дням"
245
+
246
+ #: ../inc/gui.class.php:389
247
+ msgid "Spam counter on the dashboard"
248
+ msgstr "Счетчик спама в консоли"
249
+
250
+ #: ../inc/gui.class.php:390
251
+ msgid "Amount of identified spam comments"
252
+ msgstr "Кол-во обнаруженных спам-комментариев"
253
+
254
+ #: ../inc/gui.class.php:397
255
+ msgid "Do not check trackbacks / pingbacks"
256
+ msgstr "Не проверять обратные ссылки/уведомления"
257
+
258
+ #: ../inc/gui.class.php:398
259
+ msgid "No spam check for trackback notifications"
260
+ msgstr "Отключить для уведомл. по обр. ссылкам"
261
+
262
+ #: ../inc/gui.class.php:405
263
+ msgid "Comment form used outside of posts"
264
+ msgstr "Комментарии вне записей блога"
265
+
266
+ #: ../inc/gui.class.php:406
267
+ msgid "Check for comment forms on archive pages"
268
+ msgstr "Проверять коммент. на страницах архива"
269
+
270
+ #: ../inc/gui.class.php:422
271
+ msgid "Save Changes"
272
+ msgstr "Сохранить изменения"
lang/antispam_bee-sl_SI.mo CHANGED
Binary file
lang/antispam_bee-sl_SI.po CHANGED
@@ -1,243 +1,266 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Antispam Bee\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2014-01-29 15:19+0100\n"
6
- "Last-Translator: Sergej Müller\n"
7
- "Language-Team: ARNES\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Poedit-Language: Slovenian\n"
12
- "X-Poedit-Country: SLOVENIA\n"
13
- "X-Poedit-SourceCharset: utf-8\n"
14
- "X-Poedit-KeywordsList: __;_e\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- msgid "No data available."
19
- msgstr "Ni podatkov."
20
-
21
- msgid "New spam comment on your post"
22
- msgstr "Nova nezaželena vsebina na vašem prispevku"
23
-
24
- msgid "Comment"
25
- msgstr "Komentar"
26
-
27
- msgid "Type"
28
- msgstr "Tip"
29
-
30
- msgid "Spam Reason"
31
- msgstr "Vzrok nezaželene oglasne vsebine"
32
-
33
- msgid "Empty Data"
34
- msgstr "Prazna vsebina"
35
-
36
- msgid "CSS Hack"
37
- msgstr "CSS vdor"
38
-
39
- msgid "Server IP"
40
- msgstr "IP naslov strežnika"
41
-
42
- msgid "Local DB Spam"
43
- msgstr "Lokalna zbirka podatkov nezaželene vsebine"
44
-
45
- msgid "Comment Language"
46
- msgstr "Jezik komentarja"
47
-
48
- msgid "Country Check"
49
- msgstr "Preverba države"
50
-
51
- msgid "DNSBL Spam"
52
- msgstr "Nezaželena vsebina DNSBL"
53
-
54
- msgid "RegExp"
55
- msgstr "Regularni izraz"
56
-
57
- msgid "Approve it"
58
- msgstr "Potrdi"
59
-
60
- msgid "Delete it"
61
- msgstr "Izbriši"
62
-
63
- msgid "Trash it"
64
- msgstr "Premakni v smeti"
65
-
66
- msgid "Spam list"
67
- msgstr "Seznam nezaželene vsebine"
68
-
69
- msgid "Notify message by Antispam Bee"
70
- msgstr "Antispam Bee obvestilo"
71
-
72
- msgid "Content removed by Antispam Bee"
73
- msgstr "Antispam Bee je odstranil vsebino"
74
-
75
- msgid "Last check"
76
- msgstr "Zadnja preverba"
77
-
78
- msgid "Blocked"
79
- msgstr "Onemogočenih"
80
-
81
- msgid "Today"
82
- msgstr "Danes"
83
-
84
- msgid "Easy and extremely productive spam-fighting plugin with many sophisticated solutions. Includes protection again trackback spam."
85
- msgstr "Preprost, napreden in izjemno učinkovit vtičnik v boju proti nezaželeni oglasni vsebini (spam)."
86
-
87
- msgid "http://antispambee.com"
88
- msgstr "http://antispambee.com"
89
-
90
- msgid "Comments"
91
- msgstr "Komentarji"
92
-
93
- msgid "Comment marked as spam"
94
- msgstr "Komentar označen kot nezaželena vsebina"
95
-
96
- # Sprachen
97
- msgid "Language"
98
- msgstr "Jezik"
99
-
100
- msgid "English"
101
- msgstr "Angleščina"
102
-
103
- msgid "German"
104
- msgstr "Nemščina"
105
-
106
- msgid "French"
107
- msgstr "Francoščina"
108
-
109
- msgid "Italian"
110
- msgstr "Italijanščina"
111
-
112
- msgid "Spanish"
113
- msgstr "Španščina"
114
-
115
- # Antispam-Filter
116
- msgid "Antispam filter"
117
- msgstr "Pravila Antispam"
118
-
119
- msgid "Filter in the execution order"
120
- msgstr "Filtri v vrstnem redu izvrševanja"
121
-
122
- msgid "Trust approved commentators"
123
- msgstr "Zaupanja vredni komentatorji"
124
-
125
- msgid "No check for already commenting users"
126
- msgstr "Ne preverjaj avtorjev, ki so že komentirali"
127
-
128
- msgid "BBCode is spam"
129
- msgstr "Obravnavaj kodo BBCode kot nezaželeo vsebino"
130
-
131
- msgid "Review the comment contents for BBCode links"
132
- msgstr "Preveri vsebino komentarjev, če vsebujejo povezave BBCode"
133
-
134
- msgid "Use a public antispam database"
135
- msgstr "Uporabi javno podatkovno zbirko z nezaželeno vsebino"
136
-
137
- msgid "Matching the ip address with <a href=\"https://dnsbl.tornevall.org\" target=\"_blank\">Tornevall</a>"
138
- msgstr "IP naslov preveri v podatkovni bazi <a href=\"https://dnsbl.tornevall.org\" target=\"_blank\">Tornevall</a>"
139
-
140
- msgid "Validate the ip address of commentators"
141
- msgstr "Preveri veljavnost naslovov IP komentatorjev"
142
-
143
- msgid "Validity check for used ip address"
144
- msgstr "Preverjanje veljavnosti uporabljenih naslovov IP"
145
-
146
- msgid "Use regular expressions"
147
- msgstr "Uporabi regularne izraze"
148
-
149
- msgid "Predefined and custom patterns by <a href=\"https://gist.github.com/4242142\" target=\"_blank\">plugin hook</a>"
150
- msgstr "Vnaprej pripravljeni in lastni vzorci prek <a href=\"https://gist.github.com/4242142\" target=\"_blank\">vtičnika</a>"
151
-
152
- msgid "Look in the local spam database"
153
- msgstr "Uporabi lokalno podatkovno zbirko"
154
-
155
- msgid "Already marked as spam? Yes? No?"
156
- msgstr "Išči v zbriki lastnega spletišča"
157
-
158
- msgid "Block comments from specific countries"
159
- msgstr "Onemogoči komentarje iz določenih držav"
160
-
161
- msgid "Filtering the requests depending on country"
162
- msgstr "Filtriranje zahtevkov glede na državo izvora"
163
-
164
- msgid "Allow comments only in certain language"
165
- msgstr "Dovoli komentarje v zgolj določenih jezikih"
166
-
167
- msgid "Detection and approval in specified language"
168
- msgstr "Zaznavanje in odobritev v določenem jeziku"
169
-
170
- # Erweitert
171
- msgid "Advanced"
172
- msgstr "Napredne nastavitve"
173
-
174
- msgid "Other antispam tools"
175
- msgstr "Dodatna orodja proti nezaželeni vsebini"
176
-
177
- msgid "Mark as spam, do not delete"
178
- msgstr "Le označi kot nezaželeno, ne izbriši"
179
-
180
- msgid "Keep the spam in my blog."
181
- msgstr "Obdrži nezaželeno vzebino na spletišču"
182
-
183
- msgid "Notification by email"
184
- msgstr "Pošlji obvestilo ob prejetju neželene vsebine"
185
-
186
- msgid "Sending an alert to the admin"
187
- msgstr "Pošiljanje obvestil administratorju"
188
-
189
- msgid "Not save the spam reason"
190
- msgstr "Razlog za izbris komentarja"
191
-
192
- msgid "Spam reason as table column in the spam overview"
193
- msgstr "Prikaži razlog v pregledu nezaželene vsebino"
194
-
195
- msgid "Delete existing spam after %s days"
196
- msgstr "Neželeno vsebino izbriši čez %s dni"
197
-
198
- msgid "Cleaning up the database from old entries"
199
- msgstr "Izbris starih vnosov iz podatkovne zbirke"
200
-
201
- msgid "Limit on %s"
202
- msgstr "Omejitev velja le za %s"
203
-
204
- msgid "Another type of spam will be deleted immediately"
205
- msgstr "Ostala nezaželena vsebina bo izbrisana takoj"
206
-
207
- msgid "Delete comments by spam reasons"
208
- msgstr "Pri vnaprej določenih pogojih izbriši takoj"
209
-
210
- msgid "Multiple choice by pressing Ctrl/CMD"
211
- msgstr "S CTRL lahko izberete tudi več pogojev"
212
-
213
- # Sonstiges
214
- msgid "More"
215
- msgstr "Ostale nastavitve"
216
-
217
- msgid "A few little things"
218
- msgstr "Manj pomembne nastavitve"
219
-
220
- msgid "Statistics on the dashboard"
221
- msgstr "Prikaz statistike na Nadzorni plošči"
222
-
223
- msgid "Spam detection rate with daily values"
224
- msgstr "Prikaz prepoznane vsebine na dnevni ravni"
225
-
226
- msgid "Spam counter on the dashboard"
227
- msgstr "Prikaz števca nezaželene vsebine na Nadzorni plošči"
228
-
229
- msgid "Amount of identified spam comments"
230
- msgstr "Količina prepoznane nezaželene vsebine"
231
-
232
- msgid "Do not check trackbacks / pingbacks"
233
- msgstr "Ne preverjaj povratnih sledi/pingbackov"
234
-
235
- msgid "No spam check for trackback notifications"
236
- msgstr "Ne preverjaj obvestil o povratnih sledeh"
237
-
238
- msgid "Comment form used outside of posts"
239
- msgstr "Komentarji so omogočeni tudi izven prispevkov"
240
-
241
- msgid "Check for comment forms on archive pages"
242
- msgstr "Preverjanje komentarjev na arhiviranih straneh"
243
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Antispam Bee\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: Tue Mar 10 2015 08:17:24 GMT+0100 (CET)\n"
7
+ "Last-Translator: glueckpress <caspar@glueckpress.com>\n"
8
+ "Language-Team: ARNES\n"
9
+ "Language: Slovenian\n"
10
+ "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : "
11
+ "n%100==3||n%100==4 ? 2 : 3\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=utf-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-Language: Slovenian\n"
17
+ "X-Poedit-Country: SLOVENIA\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
+ "X-Poedit-Basepath: .\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+ "X-Loco-Target-Locale: sl_SI\n"
26
+ "X-Generator: Loco - https://localise.biz/"
27
+
28
+ msgid "No data available."
29
+ msgstr "Ni podatkov."
30
+
31
+ msgid "New spam comment on your post"
32
+ msgstr "Nova nezaželena vsebina na vašem prispevku"
33
+
34
+ msgid "Comment"
35
+ msgstr "Komentar"
36
+
37
+ msgid "Type"
38
+ msgstr "Tip"
39
+
40
+ msgid "Spam Reason"
41
+ msgstr "Vzrok nezaželene oglasne vsebine"
42
+
43
+ msgid "Empty Data"
44
+ msgstr "Prazna vsebina"
45
+
46
+ msgid "CSS Hack"
47
+ msgstr "CSS vdor"
48
+
49
+ msgid "Server IP"
50
+ msgstr "IP naslov strežnika"
51
+
52
+ msgid "Local DB Spam"
53
+ msgstr "Lokalna zbirka podatkov nezaželene vsebine"
54
+
55
+ msgid "Comment Language"
56
+ msgstr "Jezik komentarja"
57
+
58
+ msgid "Country Check"
59
+ msgstr "Preverba države"
60
+
61
+ msgid "DNSBL Spam"
62
+ msgstr "Nezaželena vsebina DNSBL"
63
+
64
+ msgid "RegExp"
65
+ msgstr "Regularni izraz"
66
+
67
+ msgid "Approve it"
68
+ msgstr "Potrdi"
69
+
70
+ msgid "Delete it"
71
+ msgstr "Izbriši"
72
+
73
+ msgid "Trash it"
74
+ msgstr "Premakni v smeti"
75
+
76
+ msgid "Spam list"
77
+ msgstr "Seznam nezaželene vsebine"
78
+
79
+ msgid "Notify message by Antispam Bee"
80
+ msgstr "Antispam Bee obvestilo"
81
+
82
+ msgid "Content removed by Antispam Bee"
83
+ msgstr "Antispam Bee je odstranil vsebino"
84
+
85
+ msgid "Last check"
86
+ msgstr "Zadnja preverba"
87
+
88
+ msgid "Blocked"
89
+ msgstr "Onemogočenih"
90
+
91
+ msgid "Today"
92
+ msgstr "Danes"
93
+
94
+ msgid ""
95
+ "Easy and extremely productive spam-fighting plugin with many sophisticated "
96
+ "solutions. Includes protection again trackback spam."
97
+ msgstr ""
98
+ "Preprost, napreden in izjemno učinkovit vtičnik v boju proti nezaželeni "
99
+ "oglasni vsebini (spam)."
100
+
101
+ msgid "http://antispambee.com"
102
+ msgstr "http://antispambee.com"
103
+
104
+ msgid "Comments"
105
+ msgstr "Komentarji"
106
+
107
+ msgid "Comment marked as spam"
108
+ msgstr "Komentar označen kot nezaželena vsebina"
109
+
110
+ # Sprachen
111
+ msgid "Language"
112
+ msgstr "Jezik"
113
+
114
+ msgid "English"
115
+ msgstr "Angleščina"
116
+
117
+ msgid "German"
118
+ msgstr "Nemščina"
119
+
120
+ msgid "French"
121
+ msgstr "Francoščina"
122
+
123
+ msgid "Italian"
124
+ msgstr "Italijanščina"
125
+
126
+ msgid "Spanish"
127
+ msgstr "Španščina"
128
+
129
+ # Antispam-Filter
130
+ msgid "Antispam filter"
131
+ msgstr "Pravila Antispam"
132
+
133
+ msgid "Filter in the execution order"
134
+ msgstr "Filtri v vrstnem redu izvrševanja"
135
+
136
+ msgid "Trust approved commenters"
137
+ msgstr "Zaupanja vredni komentatorji"
138
+
139
+ msgid "Always approve previously approved users"
140
+ msgstr "Ne preverjaj avtorjev, ki so že komentirali"
141
+
142
+ msgid "BBCode is spam"
143
+ msgstr "Obravnavaj kodo BBCode kot nezaželeo vsebino"
144
+
145
+ msgid "Review the comment contents for BBCode links"
146
+ msgstr "Preveri vsebino komentarjev, če vsebujejo povezave BBCode"
147
+
148
+ msgid "Use a public antispam database"
149
+ msgstr "Uporabi javno podatkovno zbirko z nezaželeno vsebino"
150
+
151
+ msgid ""
152
+ "Matching the ip address with <a href=\"https://dnsbl.tornevall.org\" "
153
+ "target=\"_blank\">Tornevall</a>"
154
+ msgstr ""
155
+ "IP naslov preveri v podatkovni bazi <a href=\"https://dnsbl.tornevall.org\" "
156
+ "target=\"_blank\">Tornevall</a>"
157
+
158
+ msgid "Validate the ip address of commenters"
159
+ msgstr "Preveri veljavnost naslovov IP komentatorjev"
160
+
161
+ msgid "Validity check for used ip address"
162
+ msgstr "Preverjanje veljavnosti uporabljenih naslovov IP"
163
+
164
+ msgid "Use regular expressions"
165
+ msgstr "Uporabi regularne izraze"
166
+
167
+ msgid ""
168
+ "Predefined and custom patterns by <a href=\"https://gist.github.com/4242142\" "
169
+ "target=\"_blank\">plugin hook</a>"
170
+ msgstr ""
171
+ "Vnaprej pripravljeni in lastni vzorci prek <a href=\"https://gist.github."
172
+ "com/4242142\" target=\"_blank\">vtičnika</a>"
173
+
174
+ msgid "Look in the local spam database"
175
+ msgstr "Uporabi lokalno podatkovno zbirko"
176
+
177
+ msgid "Already marked as spam? Yes? No?"
178
+ msgstr "Išči v zbriki lastnega spletišča"
179
+
180
+ msgid "Block comments from specific countries"
181
+ msgstr "Onemogoči komentarje iz določenih držav"
182
+
183
+ msgid "Filtering the requests depending on country"
184
+ msgstr "Filtriranje zahtevkov glede na državo izvora"
185
+
186
+ msgid "Allow comments only in certain language"
187
+ msgstr "Dovoli komentarje v zgolj določenih jezikih"
188
+
189
+ msgid "Detection and approval in specified language"
190
+ msgstr "Zaznavanje in odobritev v določenem jeziku"
191
+
192
+ # Erweitert
193
+ msgid "Advanced"
194
+ msgstr "Napredne nastavitve"
195
+
196
+ msgid "Other antispam tools"
197
+ msgstr "Dodatna orodja proti nezaželeni vsebini"
198
+
199
+ msgid "Mark as spam, do not delete"
200
+ msgstr "Le označi kot nezaželeno, ne izbriši"
201
+
202
+ msgid "Keep the spam in my blog."
203
+ msgstr "Obdrži nezaželeno vzebino na spletišču"
204
+
205
+ msgid "Notification by email"
206
+ msgstr "Pošlji obvestilo ob prejetju neželene vsebine"
207
+
208
+ msgid "Notify admins by e-mail about incoming spam"
209
+ msgstr "Pošiljanje obvestil administratorju"
210
+
211
+ msgid "Not save the spam reason"
212
+ msgstr "Razlog za izbris komentarja"
213
+
214
+ msgid "Spam reason as table column in the spam overview"
215
+ msgstr "Prikaži razlog v pregledu nezaželene vsebino"
216
+
217
+ #, c-format
218
+ msgid "Delete existing spam after %s days"
219
+ msgstr "Neželeno vsebino izbriši čez %s dni"
220
+
221
+ msgid "Cleaning up the database from old entries"
222
+ msgstr "Izbris starih vnosov iz podatkovne zbirke"
223
+
224
+ #, c-format
225
+ msgid "Limit approval to %s"
226
+ msgstr "Omejitev velja le za %s"
227
+
228
+ msgid "Other types of spam will be deleted immediately"
229
+ msgstr "Ostala nezaželena vsebina bo izbrisana takoj"
230
+
231
+ msgid "Delete comments by spam reasons"
232
+ msgstr "Pri vnaprej določenih pogojih izbriši takoj"
233
+
234
+ msgid "For multiple selections press Ctrl/CMD"
235
+ msgstr "S CTRL lahko izberete tudi več pogojev"
236
+
237
+ # Sonstiges
238
+ msgid "More"
239
+ msgstr "Ostale nastavitve"
240
+
241
+ msgid "A few little things"
242
+ msgstr "Manj pomembne nastavitve"
243
+
244
+ msgid "Statistics on the dashboard"
245
+ msgstr "Prikaz statistike na Nadzorni plošči"
246
+
247
+ msgid "Daily updates of spam detection rate"
248
+ msgstr "Prikaz prepoznane vsebine na dnevni ravni"
249
+
250
+ msgid "Spam counter on the dashboard"
251
+ msgstr "Prikaz števca nezaželene vsebine na Nadzorni plošči"
252
+
253
+ msgid "Amount of identified spam comments"
254
+ msgstr "Količina prepoznane nezaželene vsebine"
255
+
256
+ msgid "Do not check trackbacks / pingbacks"
257
+ msgstr "Ne preverjaj povratnih sledi/pingbackov"
258
+
259
+ msgid "No spam check for trackback notifications"
260
+ msgstr "Ne preverjaj obvestil o povratnih sledeh"
261
+
262
+ msgid "Comment form used outside of posts"
263
+ msgstr "Komentarji so omogočeni tudi izven prispevkov"
264
+
265
+ msgid "Check for comment forms on archive pages"
266
+ msgstr "Preverjanje komentarjev na arhiviranih straneh"
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: sergej.mueller
3
  Tags: comment, spam, antispam, comments, trackback, protection, prevention
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZAQUT9RLPW8QN
5
  Requires at least: 3.8
6
- Tested up to: 4.0
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -104,6 +104,21 @@ Fragen rund ums Plugin werden gern per E-Mail beantwortet. Beachtet auch die [Gu
104
 
105
  == Changelog ==
106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  = 2.6.4 =
108
 
109
  * **English**
3
  Tags: comment, spam, antispam, comments, trackback, protection, prevention
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZAQUT9RLPW8QN
5
  Requires at least: 3.8
6
+ Tested up to: 4.1.1
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
104
 
105
  == Changelog ==
106
 
107
+ = 2.6.5 =
108
+
109
+ * **English**
110
+ * Fix: Return parameters on `dashboard_glance_items` callback / thx [@toscho](https://twitter.com/toscho)
111
+ * New function: Trust commenters with a Gravatar / thx [@glueckpress](https://twitter.com/glueckpress)
112
+ * Additional plausibility checks and filters
113
+ * *Release time investment (Development & QA): 12 h*
114
+
115
+ * **Deutsch**
116
+ * Fix: Parameter-Rückgabe bei `dashboard_glance_items` / thx [@toscho](https://twitter.com/toscho)
117
+ * Neue Funktion: [Kommentatoren mit Gravatar vertrauen](http://playground.ebiene.de/antispam-bee-wordpress-plugin/#gravatar_check) / thx [@glueckpress](https://twitter.com/glueckpress)
118
+ * Zusätzliche Plausibilitätsprüfungen und Filter
119
+ * *Release-Zeitaufwand (Development & QA): 12 Stunden*
120
+
121
+
122
  = 2.6.4 =
123
 
124
  * **English**