Version Description
-
Deutsch
- Entfernung der Funktionen Kommentare nur in einer Sprache zulassen und Bestimmte Lnder blockieren bzw. erlauben aus finanziellen Grnden
- Weitere Informationen zum Hintergrund
-
English
- Removal of functions Block comments from specific countries and Allow comments only in certain language for financial reasons
Download this release
Release Info
Developer | swissspidy |
Plugin | Antispam Bee |
Version | 2.6.7 |
Comparing to | |
See all releases |
Code changes from version 2.6.6 to 2.6.7
- antispam_bee.php +1 -170
- css/dashboard.css +1 -1
- css/dashboard.min.css +1 -1
- inc/gui.class.php +1 -87
- js/dashboard.js +3 -3
- js/dashboard.min.js +3 -3
- lang/antispam_bee-sl_SI.mo +0 -0
- lang/antispam_bee-sl_SI.po +388 -266
- lang/antispam_bee-sv_SE.mo +0 -0
- lang/antispam_bee-sv_SE.po +286 -0
- readme.txt +13 -3
antispam_bee.php
CHANGED
@@ -8,7 +8,7 @@ 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.
|
12 |
*/
|
13 |
|
14 |
/*
|
@@ -362,13 +362,6 @@ class Antispam_Bee {
|
|
362 |
'dashboard_count' => 0,
|
363 |
|
364 |
/* Filter */
|
365 |
-
'country_code' => 0,
|
366 |
-
'country_black' => '',
|
367 |
-
'country_white' => '',
|
368 |
-
|
369 |
-
'translate_api' => 0,
|
370 |
-
'translate_lang' => '',
|
371 |
-
|
372 |
'dnsbl_check' => 0,
|
373 |
'bbcode_check' => 1,
|
374 |
|
@@ -391,10 +384,8 @@ class Antispam_Bee {
|
|
391 |
'empty' => 'Empty Data',
|
392 |
'server' => 'Fake IP',
|
393 |
'localdb' => 'Local DB Spam',
|
394 |
-
'country' => 'Country Check',
|
395 |
'dnsbl' => 'DNSBL Spam',
|
396 |
'bbcode' => 'BBCode',
|
397 |
-
'lang' => 'Comment Language',
|
398 |
'regexp' => 'RegExp'
|
399 |
)
|
400 |
);
|
@@ -1334,20 +1325,6 @@ class Antispam_Bee {
|
|
1334 |
'reason' => 'dnsbl'
|
1335 |
);
|
1336 |
}
|
1337 |
-
|
1338 |
-
/* Country Code prüfen */
|
1339 |
-
if ( $options['country_code'] && self::_is_country_spam($ip) ) {
|
1340 |
-
return array(
|
1341 |
-
'reason' => 'country'
|
1342 |
-
);
|
1343 |
-
}
|
1344 |
-
|
1345 |
-
/* Translate API */
|
1346 |
-
if ( $options['translate_api'] && self::_is_lang_spam($body) ) {
|
1347 |
-
return array(
|
1348 |
-
'reason' => 'lang'
|
1349 |
-
);
|
1350 |
-
}
|
1351 |
}
|
1352 |
|
1353 |
|
@@ -1460,20 +1437,6 @@ class Antispam_Bee {
|
|
1460 |
'reason' => 'dnsbl'
|
1461 |
);
|
1462 |
}
|
1463 |
-
|
1464 |
-
/* Country Code prüfen */
|
1465 |
-
if ( $options['country_code'] && self::_is_country_spam($ip) ) {
|
1466 |
-
return array(
|
1467 |
-
'reason' => 'country'
|
1468 |
-
);
|
1469 |
-
}
|
1470 |
-
|
1471 |
-
/* Translate API */
|
1472 |
-
if ( $options['translate_api'] && self::_is_lang_spam($body) ) {
|
1473 |
-
return array(
|
1474 |
-
'reason' => 'lang'
|
1475 |
-
);
|
1476 |
-
}
|
1477 |
}
|
1478 |
|
1479 |
|
@@ -1682,75 +1645,6 @@ class Antispam_Bee {
|
|
1682 |
}
|
1683 |
|
1684 |
|
1685 |
-
/**
|
1686 |
-
* Prüfung auf erlaubten Ländercodes
|
1687 |
-
*
|
1688 |
-
* @since 0.1
|
1689 |
-
* @change 2.5.1
|
1690 |
-
*
|
1691 |
-
* @param string $ip IP-Adresse
|
1692 |
-
* @return boolean TRUE bei unerwünschten Ländercodes
|
1693 |
-
*/
|
1694 |
-
|
1695 |
-
private static function _is_country_spam($ip)
|
1696 |
-
{
|
1697 |
-
/* Optionen */
|
1698 |
-
$options = self::get_options();
|
1699 |
-
|
1700 |
-
/* White & Black */
|
1701 |
-
$white = preg_split(
|
1702 |
-
'/ /',
|
1703 |
-
$options['country_white'],
|
1704 |
-
-1,
|
1705 |
-
PREG_SPLIT_NO_EMPTY
|
1706 |
-
);
|
1707 |
-
$black = preg_split(
|
1708 |
-
'/ /',
|
1709 |
-
$options['country_black'],
|
1710 |
-
-1,
|
1711 |
-
PREG_SPLIT_NO_EMPTY
|
1712 |
-
);
|
1713 |
-
|
1714 |
-
/* Leere Listen? */
|
1715 |
-
if ( empty($white) && empty($black) ) {
|
1716 |
-
return false;
|
1717 |
-
}
|
1718 |
-
|
1719 |
-
/* IP abfragen */
|
1720 |
-
$response = wp_safe_remote_request(
|
1721 |
-
esc_url_raw(
|
1722 |
-
sprintf(
|
1723 |
-
'https://geoip.maxmind.com/a?l=%s&i=%s',
|
1724 |
-
strrev('1Lbn0ZsL08e1'),
|
1725 |
-
self::_anonymize_ip($ip)
|
1726 |
-
),
|
1727 |
-
'https'
|
1728 |
-
)
|
1729 |
-
);
|
1730 |
-
|
1731 |
-
/* Fehler? */
|
1732 |
-
if ( is_wp_error($response) ) {
|
1733 |
-
return false;
|
1734 |
-
}
|
1735 |
-
|
1736 |
-
/* Land auslesen */
|
1737 |
-
$country = wp_remote_retrieve_body($response);
|
1738 |
-
|
1739 |
-
/* Kein Land? */
|
1740 |
-
if ( empty($country) ) {
|
1741 |
-
return false;
|
1742 |
-
}
|
1743 |
-
|
1744 |
-
/* Blacklist */
|
1745 |
-
if ( !empty($black) ) {
|
1746 |
-
return ( in_array($country, $black) ? true : false );
|
1747 |
-
}
|
1748 |
-
|
1749 |
-
/* Whitelist */
|
1750 |
-
return ( in_array($country, $white) ? false : true );
|
1751 |
-
}
|
1752 |
-
|
1753 |
-
|
1754 |
/**
|
1755 |
* Prüfung auf DNSBL Spam
|
1756 |
*
|
@@ -1889,69 +1783,6 @@ class Antispam_Bee {
|
|
1889 |
}
|
1890 |
|
1891 |
|
1892 |
-
/**
|
1893 |
-
* Prüfung auf unerwünschte Sprachen
|
1894 |
-
*
|
1895 |
-
* @since 2.0
|
1896 |
-
* @change 2.6.6
|
1897 |
-
*
|
1898 |
-
* @param string $content Inhalt des Kommentars
|
1899 |
-
* @return boolean TRUE bei Spam
|
1900 |
-
*/
|
1901 |
-
|
1902 |
-
private static function _is_lang_spam($comment_content)
|
1903 |
-
{
|
1904 |
-
/* User defined language */
|
1905 |
-
$allowed_lang = self::get_option('translate_lang');
|
1906 |
-
|
1907 |
-
/* Make comment text plain */
|
1908 |
-
$comment_text = wp_strip_all_tags($comment_content);
|
1909 |
-
|
1910 |
-
/* Skip if empty values */
|
1911 |
-
if ( empty($allowed_lang) OR empty($comment_text) ) {
|
1912 |
-
return false;
|
1913 |
-
}
|
1914 |
-
|
1915 |
-
/* Trim comment text */
|
1916 |
-
if ( ! $query_text = wp_trim_words($comment_text, 10, '') ) {
|
1917 |
-
return false;
|
1918 |
-
}
|
1919 |
-
|
1920 |
-
/* Start request */
|
1921 |
-
$response = wp_safe_remote_request(
|
1922 |
-
add_query_arg(
|
1923 |
-
array(
|
1924 |
-
'q' => rawurlencode($query_text),
|
1925 |
-
'key' => base64_decode( strrev('rl1NTlGNDFnNrZlQI5WLnhUcDJ0SZBlTZlWb6NUVu9FR5NVY6lUQ') )
|
1926 |
-
),
|
1927 |
-
'https://www.googleapis.com' . '/language/translate/v2/detect'
|
1928 |
-
)
|
1929 |
-
);
|
1930 |
-
|
1931 |
-
/* Skip on error */
|
1932 |
-
if ( is_wp_error($response) OR wp_remote_retrieve_response_code($response) !== 200 ) {
|
1933 |
-
return false;
|
1934 |
-
}
|
1935 |
-
|
1936 |
-
/* Get JSON from content */
|
1937 |
-
if ( ! $json = wp_remote_retrieve_body($response) ) {
|
1938 |
-
return false;
|
1939 |
-
}
|
1940 |
-
|
1941 |
-
/* Decode JSON */
|
1942 |
-
if ( ! $obj = json_decode($json, true) ) {
|
1943 |
-
return false;
|
1944 |
-
}
|
1945 |
-
|
1946 |
-
/* Get detected language */
|
1947 |
-
if ( ! $detected_lang = @$obj['data']['detections'][0][0]['language'] ) {
|
1948 |
-
return false;
|
1949 |
-
}
|
1950 |
-
|
1951 |
-
return ( $detected_lang != $allowed_lang );
|
1952 |
-
}
|
1953 |
-
|
1954 |
-
|
1955 |
/**
|
1956 |
* Kürzung der IP-Adressen
|
1957 |
*
|
8 |
Author URI: http://wpcoder.de
|
9 |
Plugin URI: http://antispambee.com
|
10 |
License: GPLv2 or later
|
11 |
+
Version: 2.6.7
|
12 |
*/
|
13 |
|
14 |
/*
|
362 |
'dashboard_count' => 0,
|
363 |
|
364 |
/* Filter */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
'dnsbl_check' => 0,
|
366 |
'bbcode_check' => 1,
|
367 |
|
384 |
'empty' => 'Empty Data',
|
385 |
'server' => 'Fake IP',
|
386 |
'localdb' => 'Local DB Spam',
|
|
|
387 |
'dnsbl' => 'DNSBL Spam',
|
388 |
'bbcode' => 'BBCode',
|
|
|
389 |
'regexp' => 'RegExp'
|
390 |
)
|
391 |
);
|
1325 |
'reason' => 'dnsbl'
|
1326 |
);
|
1327 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1328 |
}
|
1329 |
|
1330 |
|
1437 |
'reason' => 'dnsbl'
|
1438 |
);
|
1439 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1440 |
}
|
1441 |
|
1442 |
|
1645 |
}
|
1646 |
|
1647 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1648 |
/**
|
1649 |
* Prüfung auf DNSBL Spam
|
1650 |
*
|
1783 |
}
|
1784 |
|
1785 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1786 |
/**
|
1787 |
* Kürzung der IP-Adressen
|
1788 |
*
|
css/dashboard.css
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/* @group Vorderseite */
|
2 |
|
3 |
#ab_chart {
|
4 |
-
color: #
|
5 |
height: 140px;
|
6 |
margin: 0 -4px;
|
7 |
text-align: center;
|
1 |
/* @group Vorderseite */
|
2 |
|
3 |
#ab_chart {
|
4 |
+
color: #a0a5aa;
|
5 |
height: 140px;
|
6 |
margin: 0 -4px;
|
7 |
text-align: center;
|
css/dashboard.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#ab_chart{color:#
|
1 |
+
#ab_chart{color:#a0a5aa;height:140px;margin:0 -4px;text-align:center;}#ab_chart_data{display:none;}#ab_widget .inside{height:1%;margin:0;padding-bottom:0;overflow:hidden;position:relative;white-space:nowrap;}
|
inc/gui.class.php
CHANGED
@@ -65,14 +65,7 @@ class Antispam_Bee_GUI extends Antispam_Bee {
|
|
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'])),
|
71 |
-
'country_black' => sanitize_text_field(self::get_key($_POST, 'ab_country_black')),
|
72 |
-
'country_white' => sanitize_text_field(self::get_key($_POST, 'ab_country_white')),
|
73 |
-
|
74 |
-
'translate_api' => (int)(!empty($_POST['ab_translate_api'])),
|
75 |
-
'translate_lang' => sanitize_text_field(self::get_key($_POST, 'ab_translate_lang'))
|
76 |
);
|
77 |
|
78 |
/* Keine Tagmenge eingetragen? */
|
@@ -80,46 +73,11 @@ class Antispam_Bee_GUI extends Antispam_Bee {
|
|
80 |
$options['cronjob_enable'] = 0;
|
81 |
}
|
82 |
|
83 |
-
|
84 |
-
/* Translate API */
|
85 |
-
if ( !empty($options['translate_lang']) ) {
|
86 |
-
if ( !preg_match('/^(de|en|fr|it|es)$/', $options['translate_lang']) ) {
|
87 |
-
$options['translate_lang'] = '';
|
88 |
-
}
|
89 |
-
}
|
90 |
-
if ( empty($options['translate_lang']) ) {
|
91 |
-
$options['translate_api'] = 0;
|
92 |
-
}
|
93 |
-
|
94 |
/* Liste der Spamgründe */
|
95 |
if ( empty($options['reasons_enable']) ) {
|
96 |
$options['ignore_reasons'] = array();
|
97 |
}
|
98 |
|
99 |
-
/* Blacklist reinigen */
|
100 |
-
if ( !empty($options['country_black']) ) {
|
101 |
-
$options['country_black'] = preg_replace(
|
102 |
-
'/[^A-Z ]/',
|
103 |
-
'',
|
104 |
-
strtoupper($options['country_black'])
|
105 |
-
);
|
106 |
-
}
|
107 |
-
|
108 |
-
/* Whitelist reinigen */
|
109 |
-
if ( !empty($options['country_white']) ) {
|
110 |
-
$options['country_white'] = preg_replace(
|
111 |
-
'/[^A-Z ]/',
|
112 |
-
'',
|
113 |
-
strtoupper($options['country_white'])
|
114 |
-
);
|
115 |
-
}
|
116 |
-
|
117 |
-
/* Leere Listen? */
|
118 |
-
if ( empty($options['country_black']) && empty($options['country_white']) ) {
|
119 |
-
$options['country_code'] = 0;
|
120 |
-
}
|
121 |
-
|
122 |
-
|
123 |
/* Cron stoppen? */
|
124 |
if ( $options['cronjob_enable'] && !self::get_option('cronjob_enable') ) {
|
125 |
self::init_scheduled_hook();
|
@@ -272,50 +230,6 @@ class Antispam_Bee_GUI extends Antispam_Bee {
|
|
272 |
<span><?php _e('Matching the ip address with <a href="https://dnsbl.tornevall.org" target="_blank">Tornevall</a>', 'antispam_bee') ?></span>
|
273 |
</label>
|
274 |
</li>
|
275 |
-
|
276 |
-
<li>
|
277 |
-
<input type="checkbox" name="ab_country_code" id="ab_country_code" value="1" <?php checked($options['country_code'], 1) ?> />
|
278 |
-
<label for="ab_country_code">
|
279 |
-
<?php esc_html_e('Block comments from specific countries', 'antispam_bee') ?>
|
280 |
-
<span><?php esc_html_e('Filtering the requests depending on country', 'antispam_bee') ?></span>
|
281 |
-
</label>
|
282 |
-
|
283 |
-
<ul>
|
284 |
-
<li>
|
285 |
-
<input type="text" name="ab_country_black" id="ab_country_black" value="<?php echo esc_attr($options['country_black']); ?>" class="ab-medium-field code" />
|
286 |
-
<label for="ab_country_black">
|
287 |
-
Blacklist <a href="http://www.iso.org/iso/country_names_and_code_elements" target="_blank">ISO Codes</a>
|
288 |
-
</label>
|
289 |
-
</li>
|
290 |
-
<li>
|
291 |
-
<input type="text" name="ab_country_white" id="ab_country_white" value="<?php echo esc_attr($options['country_white']); ?>" class="ab-medium-field code" />
|
292 |
-
<label for="ab_country_white">
|
293 |
-
Whitelist <a href="http://www.iso.org/iso/country_names_and_code_elements" target="_blank">ISO Codes</a>
|
294 |
-
</label>
|
295 |
-
</li>
|
296 |
-
</ul>
|
297 |
-
</li>
|
298 |
-
|
299 |
-
<li>
|
300 |
-
<input type="checkbox" name="ab_translate_api" id="ab_translate_api" value="1" <?php checked($options['translate_api'], 1) ?> />
|
301 |
-
<label for="ab_translate_api">
|
302 |
-
<?php esc_html_e('Allow comments only in certain language', 'antispam_bee') ?>
|
303 |
-
<span><?php esc_html_e('Detection and approval in specified language', 'antispam_bee') ?></span>
|
304 |
-
</label>
|
305 |
-
|
306 |
-
<ul>
|
307 |
-
<li>
|
308 |
-
<select name="ab_translate_lang">
|
309 |
-
<?php foreach( array('de' => 'German', 'en' => 'English', 'fr' => 'French', 'it' => 'Italian', 'es' => 'Spanish') as $k => $v ) { ?>
|
310 |
-
<option <?php selected($options['translate_lang'], $k); ?> value="<?php echo esc_attr($k) ?>"><?php esc_html_e($v, 'antispam_bee') ?></option>
|
311 |
-
<?php } ?>
|
312 |
-
</select>
|
313 |
-
<label for="ab_translate_lang">
|
314 |
-
<?php esc_html_e('Language', 'antispam_bee') ?>
|
315 |
-
</label>
|
316 |
-
</li>
|
317 |
-
</ul>
|
318 |
-
</li>
|
319 |
</ul>
|
320 |
</div>
|
321 |
|
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 |
|
71 |
/* Keine Tagmenge eingetragen? */
|
73 |
$options['cronjob_enable'] = 0;
|
74 |
}
|
75 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
/* Liste der Spamgründe */
|
77 |
if ( empty($options['reasons_enable']) ) {
|
78 |
$options['ignore_reasons'] = array();
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
/* Cron stoppen? */
|
82 |
if ( $options['cronjob_enable'] && !self::get_option('cronjob_enable') ) {
|
83 |
self::init_scheduled_hook();
|
230 |
<span><?php _e('Matching the ip address with <a href="https://dnsbl.tornevall.org" target="_blank">Tornevall</a>', 'antispam_bee') ?></span>
|
231 |
</label>
|
232 |
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
</ul>
|
234 |
</div>
|
235 |
|
js/dashboard.js
CHANGED
@@ -16,9 +16,9 @@
|
|
16 |
leftgutter = 0,
|
17 |
bottomgutter = 22,
|
18 |
topgutter = 22,
|
19 |
-
color = '#
|
20 |
r = Raphael("ab_chart", width, height),
|
21 |
-
txt = {font: 'bold 12px "Open Sans", sans-serif', fill: "#
|
22 |
X = (width - leftgutter * 2) / labels.length,
|
23 |
max = Math.max.apply(Math, data),
|
24 |
Y = (height - bottomgutter - topgutter) / max;
|
@@ -29,7 +29,7 @@
|
|
29 |
.attr(
|
30 |
{
|
31 |
'font': 'normal 10px "Open Sans", sans-serif',
|
32 |
-
fill: "#
|
33 |
}
|
34 |
);
|
35 |
|
16 |
leftgutter = 0,
|
17 |
bottomgutter = 22,
|
18 |
topgutter = 22,
|
19 |
+
color = '#0073aa',
|
20 |
r = Raphael("ab_chart", width, height),
|
21 |
+
txt = {font: 'bold 12px "Open Sans", sans-serif', fill: "#32373c"},
|
22 |
X = (width - leftgutter * 2) / labels.length,
|
23 |
max = Math.max.apply(Math, data),
|
24 |
Y = (height - bottomgutter - topgutter) / max;
|
29 |
.attr(
|
30 |
{
|
31 |
'font': 'normal 10px "Open Sans", sans-serif',
|
32 |
+
fill: "#b4b9be"
|
33 |
}
|
34 |
);
|
35 |
|
js/dashboard.min.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
(function(){var r=[],h=[];jQuery("#ab_chart_data tfoot th").each(function(){r.push(jQuery(this).text())});jQuery("#ab_chart_data tbody td").each(function(){h.push(jQuery(this).text())});var v=jQuery("#ab_chart").parent().width()+8,g=Raphael("ab_chart",v,140),a={font:'bold 12px "Open Sans", sans-serif',fill:"#
|
2 |
-
B=g.path().attr({stroke:"none",opacity:.3,fill:"#
|
3 |
-
e*(a-.5)),D=Math.round(118-w*h[a+1]),E=Math.round(0+e*(a+1.5)),d=getAnchors(C,d,b,c,E,D);k=k.concat([d.x1,d.y1,b,c,d.x2,d.y2]);p=p.concat([d.x1,d.y1,b,c,d.x2,d.y2])}d=g.circle(b,c,4).attr({fill:"#fff",stroke:"#
|
4 |
l.dx,l.dy]},200*q);x=f[0].transform()[0][1]+l.dx;y=f[0].transform()[0][2]+l.dy;n.show().stop().animate(e);var m=new Date(1E3*d),l=(10>m.getDate()?"0":"")+m.getDate(),k=(10>m.getMonth()+1?"0":"")+(m.getMonth()+1),m=m.getFullYear();f[0].attr({text:c+"\u00d7 Spam"}).show().stop().animateWith(n,e,{transform:["t",x,y]},200*q);f[1].attr({text:l+"."+k+"."+m}).show().stop().animateWith(n,e,{transform:["t",x,y]},200*q);h.attr("r",6);q=!0},function(){h.attr("r",4);z=setTimeout(function(){n.hide();f[0].hide();
|
5 |
f[1].hide();q=!1},1)})})(b,c,h[a],r[a],d)}k=k.concat([b,c,b,c]);p=p.concat([b,c,b,c,"L",b,118,"z"]);t.attr({path:k});B.attr({path:p});n.toFront();f[0].toFront();f[1].toFront();u.toFront()})();
|
1 |
+
(function(){var r=[],h=[];jQuery("#ab_chart_data tfoot th").each(function(){r.push(jQuery(this).text())});jQuery("#ab_chart_data tbody td").each(function(){h.push(jQuery(this).text())});var v=jQuery("#ab_chart").parent().width()+8,g=Raphael("ab_chart",v,140),a={font:'bold 12px "Open Sans", sans-serif',fill:"#32373c"},e=(v-0)/r.length,t=Math.max.apply(Math,h),w=96/t;g.text(16,16,t).attr({font:'normal 10px "Open Sans", sans-serif',fill:"#b4b9be"});var t=g.path().attr({stroke:"#0073aa","stroke-width":2,"stroke-linejoin":"round"}),
|
2 |
+
B=g.path().attr({stroke:"none",opacity:.3,fill:"#0073aa"}),f=g.set(),x=0,y=0,q=!1,z,u=g.set();f.push(g.text(60,12,"24\u00d7 Spam").attr(a));f.push(g.text(60,27,"23.12.2013").attr(a).attr({fill:"#0073aa"}));f.hide();for(var n=g.popup(100,100,f,"right").attr({fill:"#fff",stroke:"#444","stroke-width":1}).hide(),k,p,a=0,A=r.length;a<A;a++){var c=Math.round(118-w*h[a]),b=Math.round(0+e*(a+.5));a||(k=["M",b,c,"C",b,c],p=["M",0+.5*e,118,"L",b,c,"C",b,c]);if(a&&a<A-1){var d=Math.round(118-w*h[a-1]),C=Math.round(0+
|
3 |
+
e*(a-.5)),D=Math.round(118-w*h[a+1]),E=Math.round(0+e*(a+1.5)),d=getAnchors(C,d,b,c,E,D);k=k.concat([d.x1,d.y1,b,c,d.x2,d.y2]);p=p.concat([d.x1,d.y1,b,c,d.x2,d.y2])}d=g.circle(b,c,4).attr({fill:"#fff",stroke:"#0073aa","stroke-width":1});u.push(g.rect(0+e*a,0,e,118).attr({stroke:"none",fill:"#fff",opacity:.2}));var F=u[u.length-1];(function(a,b,c,d,h){F.hover(function(){clearTimeout(z);var e="right";a+n.getBBox().width>v&&(e="left");var l=g.popup(a,b,f,e,1),e=Raphael.animation({path:l.path,transform:["t",
|
4 |
l.dx,l.dy]},200*q);x=f[0].transform()[0][1]+l.dx;y=f[0].transform()[0][2]+l.dy;n.show().stop().animate(e);var m=new Date(1E3*d),l=(10>m.getDate()?"0":"")+m.getDate(),k=(10>m.getMonth()+1?"0":"")+(m.getMonth()+1),m=m.getFullYear();f[0].attr({text:c+"\u00d7 Spam"}).show().stop().animateWith(n,e,{transform:["t",x,y]},200*q);f[1].attr({text:l+"."+k+"."+m}).show().stop().animateWith(n,e,{transform:["t",x,y]},200*q);h.attr("r",6);q=!0},function(){h.attr("r",4);z=setTimeout(function(){n.hide();f[0].hide();
|
5 |
f[1].hide();q=!1},1)})})(b,c,h[a],r[a],d)}k=k.concat([b,c,b,c]);p=p.concat([b,c,b,c,"L",b,118,"z"]);t.attr({path:k});B.attr({path:p});n.toFront();f[0].toFront();f[1].toFront();u.toFront()})();
|
lang/antispam_bee-sl_SI.mo
CHANGED
Binary file
|
lang/antispam_bee-sl_SI.po
CHANGED
@@ -1,266 +1,388 @@
|
|
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:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team: ARNES\n"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"X-Poedit-
|
16 |
-
"X-Poedit-
|
17 |
-
"X-Poedit-
|
18 |
-
"X-Poedit-
|
19 |
-
"
|
20 |
-
"
|
21 |
-
"
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
"
|
26 |
-
"
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
msgid "
|
53 |
-
msgstr "
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
msgid "
|
68 |
-
msgstr "
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
"
|
96 |
-
"
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
msgid "
|
108 |
-
msgstr "
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
msgid "
|
143 |
-
msgstr "
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
"
|
153 |
-
"
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
msgid ""
|
168 |
-
"
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
"
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
msgid "
|
178 |
-
msgstr "
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
msgid "
|
209 |
-
msgstr "
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
msgid "
|
219 |
-
msgstr "
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
msgid "
|
229 |
-
msgstr "
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
msgid "
|
245 |
-
msgstr "
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
msgid "
|
251 |
-
msgstr "
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
msgid "
|
266 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Antispam Bee v2.6.6\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2015-04-20 10:27:44+0200\n"
|
7 |
+
"Last-Translator: Mitja Mihelič - mitja@arnes.si\n"
|
8 |
+
"Language-Team: ARNES\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
13 |
+
"X-Generator: CSL v1.x\n"
|
14 |
+
"X-Poedit-Language: Slovenian\n"
|
15 |
+
"X-Poedit-Country: SLOVENIA\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"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;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
+
"X-Poedit-Basepath: .\n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
+
|
23 |
+
#: antispam_bee.php:838
|
24 |
+
#@ antispam_bee
|
25 |
+
msgid "No data available."
|
26 |
+
msgstr "Ni podatkov."
|
27 |
+
|
28 |
+
#: antispam_bee.php:2368
|
29 |
+
#@ antispam_bee
|
30 |
+
msgid "New spam comment on your post"
|
31 |
+
msgstr "Nova nezaželena vsebina na vašem prispevku"
|
32 |
+
|
33 |
+
#: antispam_bee.php:2379
|
34 |
+
#@ antispam_bee
|
35 |
+
msgid "Type"
|
36 |
+
msgstr "Tip"
|
37 |
+
|
38 |
+
#: antispam_bee.php:2386
|
39 |
+
#: inc/columns.class.php:30
|
40 |
+
#: inc/gui.class.php:400
|
41 |
+
#@ antispam_bee
|
42 |
+
msgid "Spam Reason"
|
43 |
+
msgstr "Vzrok nezaželene oglasne vsebine"
|
44 |
+
|
45 |
+
#: antispam_bee.php:2407
|
46 |
+
#@ antispam_bee
|
47 |
+
msgid "Approve it"
|
48 |
+
msgstr "Potrdi"
|
49 |
+
|
50 |
+
#: antispam_bee.php:2401
|
51 |
+
#@ antispam_bee
|
52 |
+
msgid "Delete it"
|
53 |
+
msgstr "Izbriši"
|
54 |
+
|
55 |
+
#: antispam_bee.php:2395
|
56 |
+
#@ antispam_bee
|
57 |
+
msgid "Trash it"
|
58 |
+
msgstr "Premakni v smeti"
|
59 |
+
|
60 |
+
#: antispam_bee.php:2411
|
61 |
+
#@ antispam_bee
|
62 |
+
msgid "Spam list"
|
63 |
+
msgstr "Seznam nezaželene vsebine"
|
64 |
+
|
65 |
+
#: antispam_bee.php:2415
|
66 |
+
#@ antispam_bee
|
67 |
+
msgid "Notify message by Antispam Bee"
|
68 |
+
msgstr "Antispam Bee obvestilo"
|
69 |
+
|
70 |
+
#: antispam_bee.php:2361
|
71 |
+
#@ antispam_bee
|
72 |
+
msgid "Content removed by Antispam Bee"
|
73 |
+
msgstr "Antispam Bee je odstranil vsebino"
|
74 |
+
|
75 |
+
#: antispam_bee.php:699
|
76 |
+
#@ antispam_bee
|
77 |
+
msgid "Blocked"
|
78 |
+
msgstr "Onemogočenih"
|
79 |
+
|
80 |
+
#. translators: plugin header field 'Description'
|
81 |
+
#: antispam_bee.php:0
|
82 |
+
#@ antispam_bee
|
83 |
+
msgid "Easy and extremely productive spam-fighting plugin with many sophisticated solutions. Includes protection again trackback spam."
|
84 |
+
msgstr "Preprost, napreden in izjemno učinkovit vtičnik v boju proti nezaželeni oglasni vsebini (spam)."
|
85 |
+
|
86 |
+
#. translators: plugin header field 'PluginURI'
|
87 |
+
#: antispam_bee.php:0
|
88 |
+
#: antispam_bee.php:2416
|
89 |
+
#@ antispam_bee
|
90 |
+
msgid "http://antispambee.com"
|
91 |
+
msgstr "http://antispambee.com"
|
92 |
+
|
93 |
+
#: antispam_bee.php:2354
|
94 |
+
#@ antispam_bee
|
95 |
+
msgid "Comment marked as spam"
|
96 |
+
msgstr "Komentar označen kot nezaželena vsebina"
|
97 |
+
|
98 |
+
# Sprachen
|
99 |
+
#: inc/gui.class.php:314
|
100 |
+
#@ antispam_bee
|
101 |
+
msgid "Language"
|
102 |
+
msgstr "Jezik"
|
103 |
+
|
104 |
+
# Antispam-Filter
|
105 |
+
#: inc/gui.class.php:205
|
106 |
+
#@ antispam_bee
|
107 |
+
msgid "Antispam filter"
|
108 |
+
msgstr "Pravila Antispam"
|
109 |
+
|
110 |
+
#: inc/gui.class.php:208
|
111 |
+
#@ antispam_bee
|
112 |
+
msgid "Filter in the execution order"
|
113 |
+
msgstr "Filtri v vrstnem redu izvrševanja"
|
114 |
+
|
115 |
+
#: inc/gui.class.php:215
|
116 |
+
#@ antispam_bee
|
117 |
+
msgid "Trust approved commenters"
|
118 |
+
msgstr "Zaupanja vredni komentatorji"
|
119 |
+
|
120 |
+
#: inc/gui.class.php:216
|
121 |
+
#@ antispam_bee
|
122 |
+
msgid "Always approve previously approved users"
|
123 |
+
msgstr "Ne preverjaj avtorjev, ki so že komentirali"
|
124 |
+
|
125 |
+
#: inc/gui.class.php:239
|
126 |
+
#@ antispam_bee
|
127 |
+
msgid "BBCode is spam"
|
128 |
+
msgstr "Obravnavaj kodo BBCode kot nezaželeo vsebino"
|
129 |
+
|
130 |
+
#: inc/gui.class.php:240
|
131 |
+
#@ antispam_bee
|
132 |
+
msgid "Review the comment contents for BBCode links"
|
133 |
+
msgstr "Preveri vsebino komentarjev, če vsebujejo povezave BBCode"
|
134 |
+
|
135 |
+
#: inc/gui.class.php:271
|
136 |
+
#@ antispam_bee
|
137 |
+
msgid "Use a public antispam database"
|
138 |
+
msgstr "Uporabi javno podatkovno zbirko z nezaželeno vsebino"
|
139 |
+
|
140 |
+
#: inc/gui.class.php:272
|
141 |
+
#@ antispam_bee
|
142 |
+
msgid "Matching the ip address with <a href=\"https://dnsbl.tornevall.org\" target=\"_blank\">Tornevall</a>"
|
143 |
+
msgstr "IP naslov preveri v podatkovni bazi <a href=\"https://dnsbl.tornevall.org\" target=\"_blank\">Tornevall</a>"
|
144 |
+
|
145 |
+
#: inc/gui.class.php:247
|
146 |
+
#@ antispam_bee
|
147 |
+
msgid "Validate the ip address of commenters"
|
148 |
+
msgstr "Preveri veljavnost naslovov IP komentatorjev"
|
149 |
+
|
150 |
+
#: inc/gui.class.php:248
|
151 |
+
#@ antispam_bee
|
152 |
+
msgid "Validity check for used ip address"
|
153 |
+
msgstr "Preverjanje veljavnosti uporabljenih naslovov IP"
|
154 |
+
|
155 |
+
#: inc/gui.class.php:255
|
156 |
+
#@ antispam_bee
|
157 |
+
msgid "Use regular expressions"
|
158 |
+
msgstr "Uporabi regularne izraze"
|
159 |
+
|
160 |
+
#: inc/gui.class.php:256
|
161 |
+
#@ antispam_bee
|
162 |
+
msgid "Predefined and custom patterns by <a href=\"https://gist.github.com/4242142\" target=\"_blank\">plugin hook</a>"
|
163 |
+
msgstr "Vnaprej pripravljeni in lastni vzorci prek <a href=\"https://gist.github.com/4242142\" target=\"_blank\">vtičnika</a>"
|
164 |
+
|
165 |
+
#: inc/gui.class.php:263
|
166 |
+
#@ antispam_bee
|
167 |
+
msgid "Look in the local spam database"
|
168 |
+
msgstr "Uporabi lokalno podatkovno zbirko"
|
169 |
+
|
170 |
+
#: inc/gui.class.php:264
|
171 |
+
#@ antispam_bee
|
172 |
+
msgid "Already marked as spam? Yes? No?"
|
173 |
+
msgstr "Išči v zbriki lastnega spletišča"
|
174 |
+
|
175 |
+
#: inc/gui.class.php:279
|
176 |
+
#@ antispam_bee
|
177 |
+
msgid "Block comments from specific countries"
|
178 |
+
msgstr "Onemogoči komentarje iz določenih držav"
|
179 |
+
|
180 |
+
#: inc/gui.class.php:280
|
181 |
+
#@ antispam_bee
|
182 |
+
msgid "Filtering the requests depending on country"
|
183 |
+
msgstr "Filtriranje zahtevkov glede na državo izvora"
|
184 |
+
|
185 |
+
#: inc/gui.class.php:302
|
186 |
+
#@ antispam_bee
|
187 |
+
msgid "Allow comments only in certain language"
|
188 |
+
msgstr "Dovoli komentarje v zgolj določenih jezikih"
|
189 |
+
|
190 |
+
#: inc/gui.class.php:303
|
191 |
+
#@ antispam_bee
|
192 |
+
msgid "Detection and approval in specified language"
|
193 |
+
msgstr "Zaznavanje in odobritev v določenem jeziku"
|
194 |
+
|
195 |
+
# Erweitert
|
196 |
+
#: inc/gui.class.php:325
|
197 |
+
#@ antispam_bee
|
198 |
+
msgid "Advanced"
|
199 |
+
msgstr "Napredne nastavitve"
|
200 |
+
|
201 |
+
#: inc/gui.class.php:328
|
202 |
+
#@ antispam_bee
|
203 |
+
msgid "Other antispam tools"
|
204 |
+
msgstr "Dodatna orodja proti nezaželeni vsebini"
|
205 |
+
|
206 |
+
#: inc/gui.class.php:335
|
207 |
+
#@ antispam_bee
|
208 |
+
msgid "Mark as spam, do not delete"
|
209 |
+
msgstr "Le označi kot nezaželeno, ne izbriši"
|
210 |
+
|
211 |
+
#: inc/gui.class.php:336
|
212 |
+
#@ antispam_bee
|
213 |
+
msgid "Keep the spam in my blog."
|
214 |
+
msgstr "Obdrži nezaželeno vzebino na spletišču"
|
215 |
+
|
216 |
+
#: inc/gui.class.php:343
|
217 |
+
#@ antispam_bee
|
218 |
+
msgid "Notification by email"
|
219 |
+
msgstr "Pošlji obvestilo ob prejetju neželene vsebine"
|
220 |
+
|
221 |
+
#: inc/gui.class.php:344
|
222 |
+
#@ antispam_bee
|
223 |
+
msgid "Notify admins by e-mail about incoming spam"
|
224 |
+
msgstr "Pošiljanje obvestil administratorju"
|
225 |
+
|
226 |
+
#: inc/gui.class.php:351
|
227 |
+
#@ antispam_bee
|
228 |
+
msgid "Not save the spam reason"
|
229 |
+
msgstr "Razlog za izbris komentarja"
|
230 |
+
|
231 |
+
#: inc/gui.class.php:352
|
232 |
+
#@ antispam_bee
|
233 |
+
msgid "Spam reason as table column in the spam overview"
|
234 |
+
msgstr "Prikaži razlog v pregledu nezaželene vsebino"
|
235 |
+
|
236 |
+
#: inc/gui.class.php:360
|
237 |
+
#, c-format, php-format
|
238 |
+
#@ antispam_bee
|
239 |
+
msgid "Delete existing spam after %s days"
|
240 |
+
msgstr "Neželeno vsebino izbriši čez %s dni"
|
241 |
+
|
242 |
+
#: inc/gui.class.php:363
|
243 |
+
#@ antispam_bee
|
244 |
+
msgid "Cleaning up the database from old entries"
|
245 |
+
msgstr "Izbris starih vnosov iz podatkovne zbirke"
|
246 |
+
|
247 |
+
#: inc/gui.class.php:371
|
248 |
+
#, c-format, php-format
|
249 |
+
#@ antispam_bee
|
250 |
+
msgid "Limit approval to %s"
|
251 |
+
msgstr "Omejitev velja le za %s"
|
252 |
+
|
253 |
+
#: inc/gui.class.php:381
|
254 |
+
#@ antispam_bee
|
255 |
+
msgid "Other types of spam will be deleted immediately"
|
256 |
+
msgstr "Ostala nezaželena vsebina bo izbrisana takoj"
|
257 |
+
|
258 |
+
#: inc/gui.class.php:388
|
259 |
+
#@ antispam_bee
|
260 |
+
msgid "Delete comments by spam reasons"
|
261 |
+
msgstr "Pri vnaprej določenih pogojih izbriši takoj"
|
262 |
+
|
263 |
+
#: inc/gui.class.php:389
|
264 |
+
#@ antispam_bee
|
265 |
+
msgid "For multiple selections press Ctrl/CMD"
|
266 |
+
msgstr "S CTRL lahko izberete tudi več pogojev"
|
267 |
+
|
268 |
+
# Sonstiges
|
269 |
+
#: inc/gui.class.php:411
|
270 |
+
#@ antispam_bee
|
271 |
+
msgid "More"
|
272 |
+
msgstr "Ostale nastavitve"
|
273 |
+
|
274 |
+
#: inc/gui.class.php:414
|
275 |
+
#@ antispam_bee
|
276 |
+
msgid "A few little things"
|
277 |
+
msgstr "Manj pomembne nastavitve"
|
278 |
+
|
279 |
+
#: inc/gui.class.php:421
|
280 |
+
#@ antispam_bee
|
281 |
+
msgid "Statistics on the dashboard"
|
282 |
+
msgstr "Prikaz statistike na Nadzorni plošči"
|
283 |
+
|
284 |
+
#: inc/gui.class.php:422
|
285 |
+
#@ antispam_bee
|
286 |
+
msgid "Daily updates of spam detection rate"
|
287 |
+
msgstr "Prikaz prepoznane vsebine na dnevni ravni"
|
288 |
+
|
289 |
+
#: inc/gui.class.php:429
|
290 |
+
#@ antispam_bee
|
291 |
+
msgid "Spam counter on the dashboard"
|
292 |
+
msgstr "Prikaz števca nezaželene vsebine na Nadzorni plošči"
|
293 |
+
|
294 |
+
#: inc/gui.class.php:430
|
295 |
+
#@ antispam_bee
|
296 |
+
msgid "Amount of identified spam comments"
|
297 |
+
msgstr "Količina prepoznane nezaželene vsebine"
|
298 |
+
|
299 |
+
#: inc/gui.class.php:437
|
300 |
+
#@ antispam_bee
|
301 |
+
msgid "Do not check trackbacks / pingbacks"
|
302 |
+
msgstr "Ne preverjaj povratnih sledi/pingbackov"
|
303 |
+
|
304 |
+
#: inc/gui.class.php:438
|
305 |
+
#@ antispam_bee
|
306 |
+
msgid "No spam check for trackback notifications"
|
307 |
+
msgstr "Ne preverjaj obvestil o povratnih sledeh"
|
308 |
+
|
309 |
+
#: inc/gui.class.php:445
|
310 |
+
#@ antispam_bee
|
311 |
+
msgid "Comment form used outside of posts"
|
312 |
+
msgstr "Komentarji so omogočeni tudi izven prispevkov"
|
313 |
+
|
314 |
+
#: inc/gui.class.php:446
|
315 |
+
#@ antispam_bee
|
316 |
+
msgid "Check for comment forms on archive pages"
|
317 |
+
msgstr "Preverjanje komentarjev na arhiviranih straneh"
|
318 |
+
|
319 |
+
#. translators: plugin header field 'Name'
|
320 |
+
#: antispam_bee.php:0
|
321 |
+
#@ antispam_bee
|
322 |
+
msgid "Antispam Bee"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#. translators: plugin header field 'Author'
|
326 |
+
#: antispam_bee.php:0
|
327 |
+
#@ antispam_bee
|
328 |
+
msgid "Sergej Müller"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#. translators: plugin header field 'AuthorURI'
|
332 |
+
#: antispam_bee.php:0
|
333 |
+
#@ antispam_bee
|
334 |
+
msgid "http://wpcoder.de"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#. translators: plugin header field 'Version'
|
338 |
+
#: antispam_bee.php:0
|
339 |
+
#@ antispam_bee
|
340 |
+
msgid "2.6.6"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: antispam_bee.php:501
|
344 |
+
#@ default
|
345 |
+
msgid "Settings"
|
346 |
+
msgstr "Nastavitve"
|
347 |
+
|
348 |
+
#: antispam_bee.php:2372
|
349 |
+
#@ default
|
350 |
+
msgid "Author"
|
351 |
+
msgstr "Avtor"
|
352 |
+
|
353 |
+
#: antispam_bee.php:2380
|
354 |
+
#@ antispam_bee
|
355 |
+
msgid "comment_typeCommentTrackback"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: inc/gui.class.php:30
|
359 |
+
#: inc/gui.class.php:35
|
360 |
+
#@ default
|
361 |
+
msgid "Cheatin’ uh?"
|
362 |
+
msgstr "Goljufate, kaj?"
|
363 |
+
|
364 |
+
#: inc/gui.class.php:223
|
365 |
+
#@ antispam_bee
|
366 |
+
msgid "Trust commenters with a Gravatar"
|
367 |
+
msgstr "Zaupaj komentatorjem, ki imajo Gravater"
|
368 |
+
|
369 |
+
#: inc/gui.class.php:224
|
370 |
+
#@ antispam_bee
|
371 |
+
msgid "Check if commenter has a Gravatar image"
|
372 |
+
msgstr "Preveri, ali ima komentrator sliko Gravatar"
|
373 |
+
|
374 |
+
#: inc/gui.class.php:231
|
375 |
+
#@ antispam_bee
|
376 |
+
msgid "Consider the comment time"
|
377 |
+
msgstr "Upoštevaj čas komentarja"
|
378 |
+
|
379 |
+
#: inc/gui.class.php:232
|
380 |
+
#@ antispam_bee
|
381 |
+
msgid "Not recommended when using page caching"
|
382 |
+
msgstr "Ni priproročljivo ob uporabi predpomnenja strani"
|
383 |
+
|
384 |
+
#: inc/gui.class.php:465
|
385 |
+
#@ default
|
386 |
+
msgid "Save Changes"
|
387 |
+
msgstr "Shrani spremembe"
|
388 |
+
|
lang/antispam_bee-sv_SE.mo
ADDED
Binary file
|
lang/antispam_bee-sv_SE.po
ADDED
@@ -0,0 +1,286 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Antispam Bee\n"
|
4 |
+
"POT-Creation-Date: 2015-04-17 12:23+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-04-17 15:18+0100\n"
|
6 |
+
"Last-Translator: Sergej Müller\n"
|
7 |
+
"Language-Team: Elger Lindgren <elger@bilddigital.se>\n"
|
8 |
+
"Language: sv_SE\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.5\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
|
17 |
+
"_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
+
|
22 |
+
#: antispam_bee.php:501
|
23 |
+
msgid "Settings"
|
24 |
+
msgstr "Inställningar"
|
25 |
+
|
26 |
+
#: antispam_bee.php:699
|
27 |
+
msgid "Blocked"
|
28 |
+
msgstr "Blockerad"
|
29 |
+
|
30 |
+
#: antispam_bee.php:838
|
31 |
+
msgid "No data available."
|
32 |
+
msgstr "Inga data tillgängliga."
|
33 |
+
|
34 |
+
#: antispam_bee.php:2354
|
35 |
+
msgid "Comment marked as spam"
|
36 |
+
msgstr "Kommentar markeras som skräppost"
|
37 |
+
|
38 |
+
#: antispam_bee.php:2361
|
39 |
+
msgid "Content removed by Antispam Bee"
|
40 |
+
msgstr "Innehållet avlägsnades av Antispam Bee"
|
41 |
+
|
42 |
+
#: antispam_bee.php:2368
|
43 |
+
msgid "New spam comment on your post"
|
44 |
+
msgstr "Ny spam kommentar ditt inlägg"
|
45 |
+
|
46 |
+
#: antispam_bee.php:2372
|
47 |
+
msgid "Author"
|
48 |
+
msgstr "Skapare"
|
49 |
+
|
50 |
+
#: antispam_bee.php:2379
|
51 |
+
msgid "Type"
|
52 |
+
msgstr "Typ"
|
53 |
+
|
54 |
+
#: antispam_bee.php:2386 inc/columns.class.php:30 inc/gui.class.php:400
|
55 |
+
msgid "Spam Reason"
|
56 |
+
msgstr "Spam Anledning"
|
57 |
+
|
58 |
+
#: antispam_bee.php:2395
|
59 |
+
msgid "Trash it"
|
60 |
+
msgstr "Kasta det"
|
61 |
+
|
62 |
+
#: antispam_bee.php:2401
|
63 |
+
msgid "Delete it"
|
64 |
+
msgstr "Radera det"
|
65 |
+
|
66 |
+
#: antispam_bee.php:2407
|
67 |
+
msgid "Approve it"
|
68 |
+
msgstr "Godkänn det"
|
69 |
+
|
70 |
+
#: antispam_bee.php:2411
|
71 |
+
msgid "Spam list"
|
72 |
+
msgstr "Skräppostlista"
|
73 |
+
|
74 |
+
#: antispam_bee.php:2415
|
75 |
+
msgid "Notify message by Antispam Bee"
|
76 |
+
msgstr "Uppmärksammande meddelande av Antispam Bee"
|
77 |
+
|
78 |
+
#: antispam_bee.php:2416
|
79 |
+
msgid "http://antispambee.com"
|
80 |
+
msgstr "http://antispambee.com"
|
81 |
+
|
82 |
+
#: inc/gui.class.php:30 inc/gui.class.php:35
|
83 |
+
msgid "Cheatin’ uh?"
|
84 |
+
msgstr "Fuskar du eller?"
|
85 |
+
|
86 |
+
#: inc/gui.class.php:205
|
87 |
+
msgid "Antispam filter"
|
88 |
+
msgstr "Antispam-filter"
|
89 |
+
|
90 |
+
#: inc/gui.class.php:208
|
91 |
+
msgid "Filter in the execution order"
|
92 |
+
msgstr "Filter i utförandeordning"
|
93 |
+
|
94 |
+
#: inc/gui.class.php:215
|
95 |
+
msgid "Trust approved commenters"
|
96 |
+
msgstr "Lita på godkända kommenterare"
|
97 |
+
|
98 |
+
#: inc/gui.class.php:216
|
99 |
+
msgid "Always approve previously approved users"
|
100 |
+
msgstr "Godkänn alltid tidigare godkända användare"
|
101 |
+
|
102 |
+
#: inc/gui.class.php:223
|
103 |
+
msgid "Trust commenters with a Gravatar"
|
104 |
+
msgstr "Lita på kommenterare med Gravatar"
|
105 |
+
|
106 |
+
#: inc/gui.class.php:224
|
107 |
+
msgid "Check if commenter has a Gravatar image"
|
108 |
+
msgstr "Kontrollera om kommenterare har en Gravatarbild"
|
109 |
+
|
110 |
+
#: inc/gui.class.php:231
|
111 |
+
msgid "Consider the comment time"
|
112 |
+
msgstr "Tänk på kommentartiden"
|
113 |
+
|
114 |
+
#: inc/gui.class.php:232
|
115 |
+
msgid "Not recommended when using page caching"
|
116 |
+
msgstr "Rekommenderas inte om du använder sidcachning"
|
117 |
+
|
118 |
+
#: inc/gui.class.php:239
|
119 |
+
msgid "BBCode is spam"
|
120 |
+
msgstr "BBC ode är spam"
|
121 |
+
|
122 |
+
#: inc/gui.class.php:240
|
123 |
+
msgid "Review the comment contents for BBCode links"
|
124 |
+
msgstr "Granska kommentar som innehåller BBCode länkar"
|
125 |
+
|
126 |
+
#: inc/gui.class.php:247
|
127 |
+
msgid "Validate the ip address of commenters"
|
128 |
+
msgstr "Validera IP-adressen för kommenterare"
|
129 |
+
|
130 |
+
#: inc/gui.class.php:248
|
131 |
+
msgid "Validity check for used ip address"
|
132 |
+
msgstr "Giltighetskontroll för använd ip-adress"
|
133 |
+
|
134 |
+
#: inc/gui.class.php:255
|
135 |
+
msgid "Use regular expressions"
|
136 |
+
msgstr "Använd reguljära uttryck"
|
137 |
+
|
138 |
+
#: inc/gui.class.php:256
|
139 |
+
msgid ""
|
140 |
+
"Predefined and custom patterns by <a href=\"https://gist.github."
|
141 |
+
"com/4242142\" target=\"_blank\">plugin hook</a>"
|
142 |
+
msgstr ""
|
143 |
+
"Fördefinierade och anpassade mönster av <a href=\"https://gist.github."
|
144 |
+
"com/4242142\" target=\"_blank\">plugin hook</a>"
|
145 |
+
|
146 |
+
#: inc/gui.class.php:263
|
147 |
+
msgid "Look in the local spam database"
|
148 |
+
msgstr "Titta i den lokala spam databasen"
|
149 |
+
|
150 |
+
#: inc/gui.class.php:264
|
151 |
+
msgid "Already marked as spam? Yes? No?"
|
152 |
+
msgstr "Redan markerad som skräppost? Ja? Nej?"
|
153 |
+
|
154 |
+
#: inc/gui.class.php:271
|
155 |
+
msgid "Use a public antispam database"
|
156 |
+
msgstr "Använd en offentlig antispam databas"
|
157 |
+
|
158 |
+
#: inc/gui.class.php:272
|
159 |
+
msgid ""
|
160 |
+
"Matching the ip address with <a href=\"https://dnsbl.tornevall.org\" target="
|
161 |
+
"\"_blank\">Tornevall</a>"
|
162 |
+
msgstr ""
|
163 |
+
"Matcha IP-adressen med <a href=\"https://dnsbl.tornevall.org\" target="
|
164 |
+
"\"_blank\">Tornevall</a>"
|
165 |
+
|
166 |
+
#: inc/gui.class.php:279
|
167 |
+
msgid "Block comments from specific countries"
|
168 |
+
msgstr "Block kommentarer från vissa länder"
|
169 |
+
|
170 |
+
#: inc/gui.class.php:280
|
171 |
+
msgid "Filtering the requests depending on country"
|
172 |
+
msgstr "Filtrering av förfrågningar beroende på land"
|
173 |
+
|
174 |
+
#: inc/gui.class.php:302
|
175 |
+
msgid "Allow comments only in certain language"
|
176 |
+
msgstr "Tillåt kommentarer endast på vissa språk"
|
177 |
+
|
178 |
+
#: inc/gui.class.php:303
|
179 |
+
msgid "Detection and approval in specified language"
|
180 |
+
msgstr "Detektering och godkännande i angivet språk"
|
181 |
+
|
182 |
+
#: inc/gui.class.php:314
|
183 |
+
msgid "Language"
|
184 |
+
msgstr "Språk"
|
185 |
+
|
186 |
+
#: inc/gui.class.php:325
|
187 |
+
msgid "Advanced"
|
188 |
+
msgstr "Avancerat"
|
189 |
+
|
190 |
+
#: inc/gui.class.php:328
|
191 |
+
msgid "Other antispam tools"
|
192 |
+
msgstr "Andra antispam verktyg"
|
193 |
+
|
194 |
+
#: inc/gui.class.php:335
|
195 |
+
msgid "Mark as spam, do not delete"
|
196 |
+
msgstr "Markera som spam, radera inte"
|
197 |
+
|
198 |
+
#: inc/gui.class.php:336
|
199 |
+
msgid "Keep the spam in my blog."
|
200 |
+
msgstr "Behåll spam i min blogg."
|
201 |
+
|
202 |
+
#: inc/gui.class.php:343
|
203 |
+
msgid "Notification by email"
|
204 |
+
msgstr "Meddela via e-post"
|
205 |
+
|
206 |
+
#: inc/gui.class.php:344
|
207 |
+
msgid "Notify admins by e-mail about incoming spam"
|
208 |
+
msgstr "Meddela admins via e-post om inkommande spam"
|
209 |
+
|
210 |
+
#: inc/gui.class.php:351
|
211 |
+
msgid "Not save the spam reason"
|
212 |
+
msgstr "Spara inte spamorsaken"
|
213 |
+
|
214 |
+
#: inc/gui.class.php:352
|
215 |
+
msgid "Spam reason as table column in the spam overview"
|
216 |
+
msgstr "Spam-orsak som tabellkolumn i spam-översikten"
|
217 |
+
|
218 |
+
#: inc/gui.class.php:360
|
219 |
+
#, php-format
|
220 |
+
msgid "Delete existing spam after %s days"
|
221 |
+
msgstr "Radera befintliga skräppost efter %s dagar"
|
222 |
+
|
223 |
+
#: inc/gui.class.php:363
|
224 |
+
msgid "Cleaning up the database from old entries"
|
225 |
+
msgstr "Rensa upp databasen från gamla poster"
|
226 |
+
|
227 |
+
#: inc/gui.class.php:371
|
228 |
+
#, php-format
|
229 |
+
msgid "Limit approval to %s"
|
230 |
+
msgstr "Begränsa godkännande till %s"
|
231 |
+
|
232 |
+
#: inc/gui.class.php:381
|
233 |
+
msgid "Other types of spam will be deleted immediately"
|
234 |
+
msgstr "Andra typer av spam kommer att raderas omedelbart"
|
235 |
+
|
236 |
+
#: inc/gui.class.php:388
|
237 |
+
msgid "Delete comments by spam reasons"
|
238 |
+
msgstr "Radera kommentarer enligt spam-orsak"
|
239 |
+
|
240 |
+
#: inc/gui.class.php:389
|
241 |
+
msgid "For multiple selections press Ctrl/CMD"
|
242 |
+
msgstr "För flera val tryck Ctrl/CMD"
|
243 |
+
|
244 |
+
#: inc/gui.class.php:411
|
245 |
+
msgid "More"
|
246 |
+
msgstr "Mer"
|
247 |
+
|
248 |
+
#: inc/gui.class.php:414
|
249 |
+
msgid "A few little things"
|
250 |
+
msgstr "Några små saker"
|
251 |
+
|
252 |
+
#: inc/gui.class.php:421
|
253 |
+
msgid "Statistics on the dashboard"
|
254 |
+
msgstr "Statistik på instrumentbrädan"
|
255 |
+
|
256 |
+
#: inc/gui.class.php:422
|
257 |
+
msgid "Daily updates of spam detection rate"
|
258 |
+
msgstr "Daglig uppdatering av skräppostupptäckts-nivå"
|
259 |
+
|
260 |
+
#: inc/gui.class.php:429
|
261 |
+
msgid "Spam counter on the dashboard"
|
262 |
+
msgstr "Spamräknare på instrumentbrädan"
|
263 |
+
|
264 |
+
#: inc/gui.class.php:430
|
265 |
+
msgid "Amount of identified spam comments"
|
266 |
+
msgstr "Mängd identifierade spamkommentarer"
|
267 |
+
|
268 |
+
#: inc/gui.class.php:437
|
269 |
+
msgid "Do not check trackbacks / pingbacks"
|
270 |
+
msgstr "Kontrollera inte trackbacks / pingbacks"
|
271 |
+
|
272 |
+
#: inc/gui.class.php:438
|
273 |
+
msgid "No spam check for trackback notifications"
|
274 |
+
msgstr "Ingen spam check för trackbacknoteringar"
|
275 |
+
|
276 |
+
#: inc/gui.class.php:445
|
277 |
+
msgid "Comment form used outside of posts"
|
278 |
+
msgstr "Kommentarsformulär som används utanför inläggen"
|
279 |
+
|
280 |
+
#: inc/gui.class.php:446
|
281 |
+
msgid "Check for comment forms on archive pages"
|
282 |
+
msgstr "Kontrollera för kommentarformulär på arkivsidor"
|
283 |
+
|
284 |
+
#: inc/gui.class.php:465
|
285 |
+
msgid "Save Changes"
|
286 |
+
msgstr "Spara ändringar"
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Antispam Bee ===
|
2 |
-
Contributors:
|
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.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -104,11 +104,21 @@ Fragen rund ums Plugin werden gern per E-Mail beantwortet. Beachtet auch die [Gu
|
|
104 |
|
105 |
== Changelog ==
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
= 2.6.6 =
|
108 |
|
109 |
* **Deutsch**
|
110 |
* (Testweise) Umstellung auf die offizielle Google Translation API
|
111 |
-
* [Weitere Informationen zum Hintergrund
|
112 |
* *Release-Zeitaufwand (Development & QA): 2,5 Stunden*
|
113 |
|
114 |
* **English**
|
1 |
=== Antispam Bee ===
|
2 |
+
Contributors: pluginkollektiv
|
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.2.2
|
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.7 =
|
108 |
+
|
109 |
+
* **Deutsch**
|
110 |
+
* Entfernung der Funktionen *Kommentare nur in einer Sprache zulassen* und *Bestimmte Länder blockieren bzw. erlauben* aus finanziellen Gründen
|
111 |
+
* [Weitere Informationen zum Hintergrund](https://plus.google.com/u/0/+SergejMüller/posts/ZyquhoYjUyF)
|
112 |
+
|
113 |
+
* **English**
|
114 |
+
* Removal of functions *Block comments from specific countries* and *Allow comments only in certain language* for financial reasons
|
115 |
+
|
116 |
+
|
117 |
= 2.6.6 =
|
118 |
|
119 |
* **Deutsch**
|
120 |
* (Testweise) Umstellung auf die offizielle Google Translation API
|
121 |
+
* [Weitere Informationen zum Hintergrund](https://plus.google.com/u/0/+SergejMüller/posts/ZyquhoYjUyF)
|
122 |
* *Release-Zeitaufwand (Development & QA): 2,5 Stunden*
|
123 |
|
124 |
* **English**
|