Version Description
- Bugfix: PHP without IPv6 support
- New Language: Persian, thanks to Mahmoud Zooroofchi
- Hint: use "update old counter data" to repair the unknown countries
Download this release
Release Info
Developer | Tom Braider |
Plugin | Count per Day |
Version | 3.2.9 |
Comparing to | |
See all releases |
Code changes from version 3.2.8 to 3.2.9
- counter.php +6 -4
- geoip/geoip.inc +28 -30
- locale/cpd-fa_IR.mo +0 -0
- locale/cpd-fa_IR.po +986 -0
- locale/cpd-fi.mo +0 -0
- locale/cpd-fi.po +1128 -970
- readme.txt +8 -2
counter.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
Plugin Name: Count Per Day
|
4 |
Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
|
5 |
Description: Counter, shows reads and visitors per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
|
6 |
-
Version: 3.2.
|
7 |
License: Postcardware
|
8 |
Author: Tom Braider
|
9 |
Author URI: http://www.tomsdimension.de
|
10 |
*/
|
11 |
|
12 |
$cpd_dir_name = 'count-per-day';
|
13 |
-
$cpd_version = '3.2.
|
14 |
|
15 |
if (strpos($_SERVER['SERVER_NAME'], '.test'))
|
16 |
$cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
|
@@ -145,7 +145,7 @@ function count( $x, $page = 'x' )
|
|
145 |
$country = strtolower(cpd_geoip_country_code_by_addr_v6($gi, $userip));
|
146 |
|
147 |
// store dummy ipv4 until we can handle ipv6
|
148 |
-
$packed =
|
149 |
if (strlen($packed) === 4)
|
150 |
$unpacked = array_pad(unpack( "C4", $packed), -16, 0);
|
151 |
else
|
@@ -1201,6 +1201,8 @@ function getCountries( $limit = 0, $frontend = false, $visitors = false, $return
|
|
1201 |
// get country names
|
1202 |
if ($country != '-')
|
1203 |
$id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[strtoupper($country)];
|
|
|
|
|
1204 |
if ( empty($id) )
|
1205 |
{
|
1206 |
$name = '???';
|
@@ -1208,7 +1210,7 @@ function getCountries( $limit = 0, $frontend = false, $visitors = false, $return
|
|
1208 |
}
|
1209 |
else
|
1210 |
$name = $geoip->GEOIP_COUNTRY_NAMES[$id];
|
1211 |
-
$c .= '<li><div class="cpd-flag cpd-flag-'.$country.'"></div> '.$name.' <b>'.$value.'</b></li>'."\n";
|
1212 |
}
|
1213 |
$c .= '</ul>';
|
1214 |
}
|
3 |
Plugin Name: Count Per Day
|
4 |
Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
|
5 |
Description: Counter, shows reads and visitors per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
|
6 |
+
Version: 3.2.9
|
7 |
License: Postcardware
|
8 |
Author: Tom Braider
|
9 |
Author URI: http://www.tomsdimension.de
|
10 |
*/
|
11 |
|
12 |
$cpd_dir_name = 'count-per-day';
|
13 |
+
$cpd_version = '3.2.9';
|
14 |
|
15 |
if (strpos($_SERVER['SERVER_NAME'], '.test'))
|
16 |
$cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
|
145 |
$country = strtolower(cpd_geoip_country_code_by_addr_v6($gi, $userip));
|
146 |
|
147 |
// store dummy ipv4 until we can handle ipv6
|
148 |
+
$packed = cpd_inet_pton($userip);
|
149 |
if (strlen($packed) === 4)
|
150 |
$unpacked = array_pad(unpack( "C4", $packed), -16, 0);
|
151 |
else
|
1201 |
// get country names
|
1202 |
if ($country != '-')
|
1203 |
$id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[strtoupper($country)];
|
1204 |
+
else
|
1205 |
+
$id = 0;
|
1206 |
if ( empty($id) )
|
1207 |
{
|
1208 |
$name = '???';
|
1210 |
}
|
1211 |
else
|
1212 |
$name = $geoip->GEOIP_COUNTRY_NAMES[$id];
|
1213 |
+
$c .= '<li><div class="cpd-flag cpd-flag-'.$country.'" title="'.$country.'"></div> '.$name.' <b>'.$value.'</b></li>'."\n";
|
1214 |
}
|
1215 |
$c .= '</ul>';
|
1216 |
}
|
geoip/geoip.inc
CHANGED
@@ -455,7 +455,7 @@ function cpd_geoip_country_name_by_name($gi, $name) {
|
|
455 |
}
|
456 |
|
457 |
function cpd_geoip_country_id_by_addr_v6($gi, $addr) {
|
458 |
-
$ipnum =
|
459 |
return _cpd_geoip_seek_country_v6($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
|
460 |
}
|
461 |
|
@@ -650,7 +650,7 @@ function cpd_geoip_name_by_addr_v6 ($gi,$addr) {
|
|
650 |
if ($addr == NULL) {
|
651 |
return 0;
|
652 |
}
|
653 |
-
$ipnum =
|
654 |
return _cpd_get_org_v6($gi, $ipnum);
|
655 |
}
|
656 |
|
@@ -715,41 +715,39 @@ function cpd_getdnsattributes ($l,$ip){
|
|
715 |
}
|
716 |
|
717 |
// Windows server < PHP 5.3
|
718 |
-
|
|
|
719 |
{
|
720 |
-
|
|
|
721 |
{
|
722 |
-
|
723 |
-
|
|
|
724 |
{
|
725 |
-
|
726 |
-
|
727 |
-
else
|
728 |
-
{
|
729 |
-
$ip = explode(':',$ip);
|
730 |
-
$ip = pack('N',ip2long($ip[count($ip)-1]));
|
731 |
-
}
|
732 |
}
|
733 |
-
|
734 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
735 |
{
|
736 |
-
|
737 |
-
|
738 |
-
$
|
739 |
-
foreach ($ip as $seg)
|
740 |
{
|
741 |
-
|
742 |
-
$res .= str_pad($seg, 4, '0', STR_PAD_LEFT);
|
743 |
-
elseif ($replaced==0)
|
744 |
-
{
|
745 |
-
for ($i=0;$i<=$parts;$i++)
|
746 |
-
$res.='0000';
|
747 |
-
$replaced=1;
|
748 |
-
} elseif ($replaced==1)
|
749 |
$res.='0000';
|
750 |
-
|
751 |
-
|
|
|
752 |
}
|
753 |
-
|
754 |
}
|
|
|
755 |
}
|
455 |
}
|
456 |
|
457 |
function cpd_geoip_country_id_by_addr_v6($gi, $addr) {
|
458 |
+
$ipnum = cpd_inet_pton($addr);
|
459 |
return _cpd_geoip_seek_country_v6($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
|
460 |
}
|
461 |
|
650 |
if ($addr == NULL) {
|
651 |
return 0;
|
652 |
}
|
653 |
+
$ipnum = cpd_inet_pton($addr);
|
654 |
return _cpd_get_org_v6($gi, $ipnum);
|
655 |
}
|
656 |
|
715 |
}
|
716 |
|
717 |
// Windows server < PHP 5.3
|
718 |
+
// PHP without IPv6 support
|
719 |
+
function cpd_inet_pton($ip)
|
720 |
{
|
721 |
+
# ipv4
|
722 |
+
if (strpos($ip, '.') !== FALSE)
|
723 |
{
|
724 |
+
if (strpos($ip, ':') === FALSE)
|
725 |
+
$ip = pack('N',ip2long($ip));
|
726 |
+
else
|
727 |
{
|
728 |
+
$ip = explode(':',$ip);
|
729 |
+
$ip = pack('N',ip2long($ip[count($ip)-1]));
|
|
|
|
|
|
|
|
|
|
|
730 |
}
|
731 |
+
}
|
732 |
+
# ipv6
|
733 |
+
elseif (strpos($ip, ':') !== FALSE)
|
734 |
+
{
|
735 |
+
$ip = explode(':', $ip);
|
736 |
+
$parts=8-count($ip);
|
737 |
+
$res='';$replaced=0;
|
738 |
+
foreach ($ip as $seg)
|
739 |
{
|
740 |
+
if ($seg!='')
|
741 |
+
$res .= str_pad($seg, 4, '0', STR_PAD_LEFT);
|
742 |
+
elseif ($replaced==0)
|
|
|
743 |
{
|
744 |
+
for ($i=0;$i<=$parts;$i++)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
745 |
$res.='0000';
|
746 |
+
$replaced=1;
|
747 |
+
} elseif ($replaced==1)
|
748 |
+
$res.='0000';
|
749 |
}
|
750 |
+
$ip = pack('H'.strlen($res), $res);
|
751 |
}
|
752 |
+
return $ip;
|
753 |
}
|
locale/cpd-fa_IR.mo
ADDED
Binary file
|
locale/cpd-fa_IR.po
ADDED
@@ -0,0 +1,986 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Count per Day\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-11-02 12:13+0100\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Madat <translator.baku@gmail.com>\n"
|
8 |
+
"Language-Team: Webmestre <translator.baku@gmail.com>\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=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
15 |
+
"_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"
|
16 |
+
"X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
|
17 |
+
"X-Textdomain-Support: yes\n"
|
18 |
+
"Language: az_AZ\n"
|
19 |
+
"X-Generator: Poedit 1.5.4\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
|
22 |
+
# @ cpd
|
23 |
+
#: counter-options.php:49
|
24 |
+
msgid "Options updated"
|
25 |
+
msgstr "تنظیمات بروز شد"
|
26 |
+
|
27 |
+
# @ cpd
|
28 |
+
#: counter-options.php:112
|
29 |
+
#, php-format
|
30 |
+
msgid "Database cleaned. %s rows deleted."
|
31 |
+
msgstr "بانک اطلاعات پاک شد. %s سطر پاک شد."
|
32 |
+
|
33 |
+
# @ cpd
|
34 |
+
#: counter-options.php:127 counter-options.php:810
|
35 |
+
msgid "UNINSTALL Count per Day"
|
36 |
+
msgstr "حذف Count per Day"
|
37 |
+
|
38 |
+
# @ cpd
|
39 |
+
#: counter-options.php:132 counter-options.php:133 counter-options.php:134
|
40 |
+
#, php-format
|
41 |
+
msgid "Table %s deleted"
|
42 |
+
msgstr "جدول %s حذف شد"
|
43 |
+
|
44 |
+
# @ cpd
|
45 |
+
#: counter-options.php:135
|
46 |
+
msgid "Options deleted"
|
47 |
+
msgstr "تنظیمات حذف شد"
|
48 |
+
|
49 |
+
# @ cpd
|
50 |
+
#: counter-options.php:316 counter-options.php:796
|
51 |
+
msgid "Uninstall"
|
52 |
+
msgstr "حذف نصب"
|
53 |
+
|
54 |
+
# @ cpd
|
55 |
+
#: counter-options.php:317
|
56 |
+
msgid "Click here"
|
57 |
+
msgstr "اینجا کلیک کنید"
|
58 |
+
|
59 |
+
# @ cpd
|
60 |
+
#: counter-options.php:317
|
61 |
+
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
62 |
+
msgstr "به اتمام نصب و غیرفعالسازی \"Count per Day\"."
|
63 |
+
|
64 |
+
# @ cpd
|
65 |
+
#: counter-options.php:355
|
66 |
+
msgid "Online time"
|
67 |
+
msgstr "زمان آنلاین"
|
68 |
+
|
69 |
+
# @ cpd
|
70 |
+
#: counter-options.php:356
|
71 |
+
msgid ""
|
72 |
+
"Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
73 |
+
msgstr ""
|
74 |
+
"ثانیه برای شمارنده آنلاین. برای \"بازدیدکنندگان آنلاین\" در صفحه ی پیشخوان "
|
75 |
+
"مورد استفاده قرار می گیرد."
|
76 |
+
|
77 |
+
# @ cpd
|
78 |
+
#: counter-options.php:359
|
79 |
+
msgid "Logged on Users"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
# @ cpd
|
83 |
+
#: counter-options.php:361
|
84 |
+
msgid "count too"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
# @ cpd
|
88 |
+
#: counter-options.php:373
|
89 |
+
msgid "Auto counter"
|
90 |
+
msgstr "شمارش خودکار"
|
91 |
+
|
92 |
+
# @ cpd
|
93 |
+
#: counter-options.php:374
|
94 |
+
msgid ""
|
95 |
+
"Counts automatically single-posts and pages, no changes on template needed."
|
96 |
+
msgstr "شمارش خودکار تک نوشته ها و صفحات، تغییری بر روی پوسته مورد نیاز نیست."
|
97 |
+
|
98 |
+
# @ cpd
|
99 |
+
#: counter-options.php:377
|
100 |
+
msgid "Bots to ignore"
|
101 |
+
msgstr "نادیده گرفتن ربوتها"
|
102 |
+
|
103 |
+
# @ cpd
|
104 |
+
#: counter-options.php:561
|
105 |
+
msgid "Update options"
|
106 |
+
msgstr "بروزرسانی تنظیمات"
|
107 |
+
|
108 |
+
# @ cpd
|
109 |
+
#: counter-options.php:656 counter-options.php:665
|
110 |
+
msgid "Clean the database"
|
111 |
+
msgstr "پاک کردن بانک اطلاعات"
|
112 |
+
|
113 |
+
# @ cpd
|
114 |
+
#: counter-options.php:659
|
115 |
+
msgid ""
|
116 |
+
"You can clean the counter table by delete the \"spam data\".<br />If you add "
|
117 |
+
"new bots above the old \"spam data\" keeps in the database.<br />Here you "
|
118 |
+
"can run the bot filter again and delete the visits of the bots."
|
119 |
+
msgstr ""
|
120 |
+
"شما می توانید جدول شمارنده را طبق \"spam data\" پاک کنید.<br />اگر شما "
|
121 |
+
"رباتهای برتر قدیمی را اضافه کرده اید، \"spam data\" آنها را در پایگاه داده "
|
122 |
+
"نگه می دارد.<br />در اینجا شما می توانید فیلتر ربات را دوباره اجرا و بازدید "
|
123 |
+
"رباتها را حذف کنید."
|
124 |
+
|
125 |
+
# @ cpd
|
126 |
+
#: counter-options.php:799
|
127 |
+
msgid ""
|
128 |
+
"If \"Count per Day\" only disabled the tables in the database will be "
|
129 |
+
"preserved."
|
130 |
+
msgstr ""
|
131 |
+
"اگر شما فقط \"Count per Day\" را غیرفعال کنید، جداول در پایگاه داده حفظ "
|
132 |
+
"خواهد شد."
|
133 |
+
|
134 |
+
# @ cpd
|
135 |
+
#: counter-options.php:800
|
136 |
+
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
137 |
+
msgstr "در اینجا شما می توانید جداول \"Count per Day\" را حذف و غیرفعال کنید."
|
138 |
+
|
139 |
+
# @ cpd
|
140 |
+
#: counter-options.php:803
|
141 |
+
msgid "WARNING"
|
142 |
+
msgstr "هشدار"
|
143 |
+
|
144 |
+
# @ cpd
|
145 |
+
#: counter-options.php:804
|
146 |
+
msgid "These tables (with ALL counter data) will be deleted."
|
147 |
+
msgstr "این جداول (با تمام اطلاعات شمارنده) حذف خواهد شد."
|
148 |
+
|
149 |
+
# @ cpd
|
150 |
+
#: counter-options.php:806
|
151 |
+
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
152 |
+
msgstr "اگر \"Count per Day\" دوباره نصب شود، شمارشگر 0 می شود."
|
153 |
+
|
154 |
+
# @ cpd
|
155 |
+
#: counter-options.php:786 counter-options.php:809
|
156 |
+
msgid "Yes"
|
157 |
+
msgstr "بله"
|
158 |
+
|
159 |
+
# @ cpd
|
160 |
+
#: counter-options.php:810
|
161 |
+
msgid "You are sure to disable Count per Day and delete all data?"
|
162 |
+
msgstr ""
|
163 |
+
"شما مطمئن هستید که میخواهید Count per Day ا غیرفعال و اطلاعات آن را پاک کنید؟"
|
164 |
+
|
165 |
+
# @ cpd
|
166 |
+
#: counter-core.php:754 counter.php:1124
|
167 |
+
msgid "Statistics"
|
168 |
+
msgstr "آمار"
|
169 |
+
|
170 |
+
# @ cpd
|
171 |
+
#: counter-core.php:723 counter.php:160 counter.php:1010 counter.php:1202
|
172 |
+
msgid "Total visitors"
|
173 |
+
msgstr "تمام بازدیدکنندگان"
|
174 |
+
|
175 |
+
# @ cpd
|
176 |
+
#: counter.php:161 counter.php:1208
|
177 |
+
msgid "Visitors currently online"
|
178 |
+
msgstr "بازدیدکنندگان حاضر"
|
179 |
+
|
180 |
+
# @ cpd
|
181 |
+
#: counter.php:162 counter.php:1203
|
182 |
+
msgid "Visitors today"
|
183 |
+
msgstr "بازدیدکنندگان امروز"
|
184 |
+
|
185 |
+
# @ cpd
|
186 |
+
#: counter.php:163 counter.php:1204
|
187 |
+
msgid "Visitors yesterday"
|
188 |
+
msgstr "بازدیدکنندگان دیروز"
|
189 |
+
|
190 |
+
# @ cpd
|
191 |
+
#: counter.php:164 counter.php:1205
|
192 |
+
msgid "Visitors last week"
|
193 |
+
msgstr "بازدیدکنندگان هفته"
|
194 |
+
|
195 |
+
# @ cpd
|
196 |
+
#: counter.php:167 counter.php:825 counter.php:1209
|
197 |
+
msgid "Counter starts on"
|
198 |
+
msgstr "آغاز شمارش در"
|
199 |
+
|
200 |
+
# @ cpd
|
201 |
+
#: counter-core.php:729 counter.php:166 counter.php:263 counter.php:1012
|
202 |
+
#: counter.php:1207 userperspan.php:34
|
203 |
+
msgid "Visitors per day"
|
204 |
+
msgstr "بازدیدکننده در روز"
|
205 |
+
|
206 |
+
# @ cpd
|
207 |
+
#: counter-core.php:725 counter.php:1206
|
208 |
+
msgid "Visitors per month"
|
209 |
+
msgstr "بازدیدکننده در ماه"
|
210 |
+
|
211 |
+
# @ cpd
|
212 |
+
#: counter-core.php:727 counter-options.php:438
|
213 |
+
msgid "Visitors per post"
|
214 |
+
msgstr "بازدیدکننده نوشته"
|
215 |
+
|
216 |
+
# @ cpd
|
217 |
+
#: counter-options.php:122
|
218 |
+
msgid "Counter reseted."
|
219 |
+
msgstr "شمارش تنظیم شد."
|
220 |
+
|
221 |
+
# @ default
|
222 |
+
#: counter-options.php:403
|
223 |
+
msgid "Dashboard"
|
224 |
+
msgstr "پیشخوان"
|
225 |
+
|
226 |
+
# @ cpd
|
227 |
+
#: counter-options.php:439 counter-options.php:443
|
228 |
+
msgid "How many posts do you want to see on dashboard page?"
|
229 |
+
msgstr "میخواهید چه تعداد از نوشته ها را در پیشخوان خود مشاهده کنید؟"
|
230 |
+
|
231 |
+
# @ cpd
|
232 |
+
#: counter-options.php:442
|
233 |
+
msgid "Latest Counts - Posts"
|
234 |
+
msgstr "آخرین شمارش - نوشته ها"
|
235 |
+
|
236 |
+
# @ cpd
|
237 |
+
#: counter-options.php:446
|
238 |
+
msgid "Latest Counts - Days"
|
239 |
+
msgstr "آخرین شمارش - روزها"
|
240 |
+
|
241 |
+
# @ cpd
|
242 |
+
#: counter-options.php:447 counter-options.php:451 counter-options.php:473
|
243 |
+
msgid "How many days do you want look back?"
|
244 |
+
msgstr "میخواهید اطلاعات چند روز قبل را مشاهده کنید؟"
|
245 |
+
|
246 |
+
# @ cpd
|
247 |
+
#: counter-options.php:450
|
248 |
+
msgid "Chart - Days"
|
249 |
+
msgstr "نمودار - روزها"
|
250 |
+
|
251 |
+
# @ cpd
|
252 |
+
#: counter-options.php:454
|
253 |
+
msgid "Chart - Height"
|
254 |
+
msgstr "نمودار - ارتفاع"
|
255 |
+
|
256 |
+
# @ cpd
|
257 |
+
#: counter-options.php:455
|
258 |
+
msgid "Height of the biggest bar"
|
259 |
+
msgstr "ارتفاع از بزرگترین نوار"
|
260 |
+
|
261 |
+
# @ cpd
|
262 |
+
#: counter-options.php:488
|
263 |
+
msgid "Show in lists"
|
264 |
+
msgstr "نمایش در لیستها"
|
265 |
+
|
266 |
+
# @ cpd
|
267 |
+
#: counter-options.php:489
|
268 |
+
msgid "Show \"Reads per Post\" in a new column in post management views."
|
269 |
+
msgstr "نمایش شمارنده ی هر نوشته در در یک ستون جدید در قسمت نوشته ها"
|
270 |
+
|
271 |
+
# @ cpd
|
272 |
+
#: counter-options.php:777 counter-options.php:787
|
273 |
+
msgid "Reset the counter"
|
274 |
+
msgstr "تنظیم مجدد شمارنده"
|
275 |
+
|
276 |
+
# @ cpd
|
277 |
+
#: counter-options.php:780
|
278 |
+
msgid ""
|
279 |
+
"You can reset the counter by empty the table. ALL TO 0!<br />Make a backup "
|
280 |
+
"if you need the current data!"
|
281 |
+
msgstr ""
|
282 |
+
"شما می توانید شمارنده را با استفاده از جدول خالی تنظیم مجدد کنید. همه به 0!"
|
283 |
+
"<br />اگر نیازی به اطلاعات فعلی دارید، پشتیبان تهیه کنید!"
|
284 |
+
|
285 |
+
# @ cpd
|
286 |
+
#: counter.php:672
|
287 |
+
#, php-format
|
288 |
+
msgid "The %s most visited posts in last %s days:"
|
289 |
+
msgstr "%s پربازدیدترین نوشته در %s روز گذشته:"
|
290 |
+
|
291 |
+
# @ default
|
292 |
+
#: counter-core.php:575 counter-options.php:341 counter-options.php:565
|
293 |
+
msgid "Settings"
|
294 |
+
msgstr "تنظیمات"
|
295 |
+
|
296 |
+
# @ cpd
|
297 |
+
#: counter.php:262
|
298 |
+
msgid "Reads per day"
|
299 |
+
msgstr "خوانده شده در روز"
|
300 |
+
|
301 |
+
# @ cpd
|
302 |
+
#: counter-core.php:639 counter-options.php:392 counter.php:159
|
303 |
+
#: counter.php:875
|
304 |
+
msgid "Reads"
|
305 |
+
msgstr "خوانده شده در"
|
306 |
+
|
307 |
+
# @ cpd
|
308 |
+
#: counter.php:1196
|
309 |
+
msgid "This post"
|
310 |
+
msgstr "این نوشته"
|
311 |
+
|
312 |
+
# @ cpd
|
313 |
+
#: counter-options.php:60
|
314 |
+
#, php-format
|
315 |
+
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
316 |
+
msgstr "کشورها بروز شد. <b>%s</b> ورودی ها در %s بدون ترک کشور!"
|
317 |
+
|
318 |
+
# @ cpd
|
319 |
+
#: counter-options.php:65
|
320 |
+
msgid "update next"
|
321 |
+
msgstr "بروزرسانی بعدی"
|
322 |
+
|
323 |
+
# @ cpd
|
324 |
+
#: counter-options.php:102
|
325 |
+
#, php-format
|
326 |
+
msgid "Mass Bots cleaned. %s counts deleted."
|
327 |
+
msgstr "انبوه رباتها پاک شده اند. %s شماره حذف شده است."
|
328 |
+
|
329 |
+
# @ cpd
|
330 |
+
#: counter-options.php:362
|
331 |
+
msgid "until User Level"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
# @ cpd
|
335 |
+
#: counter-options.php:381
|
336 |
+
msgid "Anonymous IP"
|
337 |
+
msgstr "آی پی ناشناس"
|
338 |
+
|
339 |
+
# @ cpd
|
340 |
+
#: counter-options.php:459
|
341 |
+
msgid "Countries"
|
342 |
+
msgstr "کشورها"
|
343 |
+
|
344 |
+
# @ cpd
|
345 |
+
#: counter-options.php:460
|
346 |
+
msgid "How many countries do you want to see on dashboard page?"
|
347 |
+
msgstr "میخواهید چه تعداد از کشورها را در صفحه ی پیشخوان خود مشاهده کنید؟"
|
348 |
+
|
349 |
+
# @ cpd
|
350 |
+
#: counter-options.php:497
|
351 |
+
msgid "Start Values"
|
352 |
+
msgstr "شروع مقادیر"
|
353 |
+
|
354 |
+
# @ cpd
|
355 |
+
#: counter-options.php:501
|
356 |
+
msgid "Here you can change the date of first count and add a start count."
|
357 |
+
msgstr "شما در اینجا می توانید تاریخ شروع شمارش و مقادیر دیگر را تغییر دهید."
|
358 |
+
|
359 |
+
# @ cpd
|
360 |
+
#: counter-options.php:505
|
361 |
+
msgid "Start date"
|
362 |
+
msgstr "شروع روز"
|
363 |
+
|
364 |
+
# @ cpd
|
365 |
+
#: counter-options.php:506
|
366 |
+
msgid "Your old Counter starts at?"
|
367 |
+
msgstr "شمارشگر قدیمی شما شروع می شود در؟"
|
368 |
+
|
369 |
+
# @ cpd
|
370 |
+
#: counter-options.php:509 counter-options.php:513
|
371 |
+
msgid "Start count"
|
372 |
+
msgstr "شروع شمارش"
|
373 |
+
|
374 |
+
# @ cpd
|
375 |
+
#: counter-options.php:510
|
376 |
+
msgid "Add this value to \"Total visitors\"."
|
377 |
+
msgstr "اضافه کردن این مقدار به \"مجموع بازدیدکنندگان\""
|
378 |
+
|
379 |
+
# @ cpd
|
380 |
+
#: counter-options.php:727
|
381 |
+
msgid "GeoIP - Countries"
|
382 |
+
msgstr "GeoIP - کشورها"
|
383 |
+
|
384 |
+
# @ cpd
|
385 |
+
#: counter-options.php:736
|
386 |
+
msgid "Update old counter data"
|
387 |
+
msgstr "بروزرسانی اطلاعات شمارش قدیمی"
|
388 |
+
|
389 |
+
# @ cpd
|
390 |
+
#: counter-options.php:748
|
391 |
+
msgid "Update GeoIP database"
|
392 |
+
msgstr "بروزرسانی بانک اطلاعات GeoIP"
|
393 |
+
|
394 |
+
# @ cpd
|
395 |
+
#: counter-options.php:743
|
396 |
+
msgid "Download a new version of GeoIP.dat file."
|
397 |
+
msgstr "دانلود نسخه جدید GeoIP. فایل DAT"
|
398 |
+
|
399 |
+
# @ cpd
|
400 |
+
#: counter-options.php:753
|
401 |
+
msgid "More informations about GeoIP"
|
402 |
+
msgstr "اطلاعات دیگر در مورد GeoIP"
|
403 |
+
|
404 |
+
# @ cpd
|
405 |
+
#: counter-options.php:580 massbots.php:35
|
406 |
+
msgid "Mass Bots"
|
407 |
+
msgstr "انبوه روبوتها"
|
408 |
+
|
409 |
+
# @ cpd
|
410 |
+
#: counter-options.php:584
|
411 |
+
#, php-format
|
412 |
+
msgid "Show all IPs with more than %s page views per day"
|
413 |
+
msgstr "نمایش تمام IPها با بیش از %s بازدید از صفحه در روز"
|
414 |
+
|
415 |
+
# @ cpd
|
416 |
+
#: counter-options.php:585 notes.php:71 userperspan.php:44
|
417 |
+
msgid "show"
|
418 |
+
msgstr "نمایش"
|
419 |
+
|
420 |
+
# @ cpd
|
421 |
+
#: counter-options.php:593
|
422 |
+
msgid "IP"
|
423 |
+
msgstr "آی پی"
|
424 |
+
|
425 |
+
# @ cpd
|
426 |
+
# @ default
|
427 |
+
#: counter-options.php:594 notes.php:75
|
428 |
+
msgid "Date"
|
429 |
+
msgstr "روز"
|
430 |
+
|
431 |
+
# @ cpd
|
432 |
+
#: counter-options.php:595
|
433 |
+
msgid "Client"
|
434 |
+
msgstr "مشتری"
|
435 |
+
|
436 |
+
# @ cpd
|
437 |
+
#: counter-options.php:596
|
438 |
+
msgid "Views"
|
439 |
+
msgstr "بازدیدها"
|
440 |
+
|
441 |
+
# @ cpd
|
442 |
+
#: counter-options.php:611 counter-options.php:627
|
443 |
+
#, php-format
|
444 |
+
msgid "Delete these %s counts"
|
445 |
+
msgstr "حذف %s شمارش"
|
446 |
+
|
447 |
+
# @ cpd
|
448 |
+
#: counter-options.php:714
|
449 |
+
msgid "Support"
|
450 |
+
msgstr "پشتیبانی"
|
451 |
+
|
452 |
+
# @ cpd
|
453 |
+
#: counter-core.php:689
|
454 |
+
#, php-format
|
455 |
+
msgid "Time for Count per Day: <code>%s</code>."
|
456 |
+
msgstr "زمان برای Count per Day: <code>%s</code>."
|
457 |
+
|
458 |
+
# @ cpd
|
459 |
+
#: counter-core.php:690
|
460 |
+
msgid "Bug? Problem? Question? Hint? Praise?"
|
461 |
+
msgstr "باگ؟ مشکل؟ سوال؟ راهنمایی؟ تحسین؟"
|
462 |
+
|
463 |
+
# @ cpd
|
464 |
+
#: counter-core.php:691
|
465 |
+
#, php-format
|
466 |
+
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
467 |
+
msgstr "نظر خود را در <a href=\"%s\">صفحه ی افزونه</a> بنویسید."
|
468 |
+
|
469 |
+
# @ cpd
|
470 |
+
#: counter.php:155 counter.php:1197
|
471 |
+
msgid "Total reads"
|
472 |
+
msgstr "مجموع خوانده شده ها"
|
473 |
+
|
474 |
+
# @ cpd
|
475 |
+
#: counter.php:156 counter.php:1198
|
476 |
+
msgid "Reads today"
|
477 |
+
msgstr "خوانده شده های امروز"
|
478 |
+
|
479 |
+
# @ cpd
|
480 |
+
#: counter.php:157 counter.php:1199
|
481 |
+
msgid "Reads yesterday"
|
482 |
+
msgstr "خوانده شده ی دیروز"
|
483 |
+
|
484 |
+
# @ cpd
|
485 |
+
#: counter.php:788 notes.php:42 notes.php:76
|
486 |
+
msgid "Notes"
|
487 |
+
msgstr "یادداشت ها"
|
488 |
+
|
489 |
+
# @ default
|
490 |
+
#: counter.php:786
|
491 |
+
msgid "Show"
|
492 |
+
msgstr "نمایش"
|
493 |
+
|
494 |
+
# @ cpd
|
495 |
+
#: counter.php:821
|
496 |
+
msgid "Other"
|
497 |
+
msgstr "دیگر"
|
498 |
+
|
499 |
+
# @ default
|
500 |
+
#: counter.php:976
|
501 |
+
msgid "Edit Post"
|
502 |
+
msgstr "ویرایش نوشته"
|
503 |
+
|
504 |
+
# @ default
|
505 |
+
#: counter.php:991 massbots.php:52 userperspan.php:63
|
506 |
+
msgid "Front page displays"
|
507 |
+
msgstr "نمایش های اولین صفحه"
|
508 |
+
|
509 |
+
# @ cpd
|
510 |
+
#: counter-core.php:733 counter-options.php:464
|
511 |
+
msgid "Browsers"
|
512 |
+
msgstr "مرورگرها"
|
513 |
+
|
514 |
+
# @ cpd
|
515 |
+
#: counter-core.php:728
|
516 |
+
msgid "Latest Counts"
|
517 |
+
msgstr "جدیدترین شمارش"
|
518 |
+
|
519 |
+
# @ default
|
520 |
+
#: counter-core.php:730
|
521 |
+
msgid "Plugin"
|
522 |
+
msgstr "افزونه"
|
523 |
+
|
524 |
+
# @ cpd
|
525 |
+
#: counter-core.php:738
|
526 |
+
msgid "Reads per Country"
|
527 |
+
msgstr "خوانندگان هر کشور"
|
528 |
+
|
529 |
+
# @ cpd
|
530 |
+
#: counter.php:353 counter.php:1041
|
531 |
+
msgid "Map"
|
532 |
+
msgstr "نقشه"
|
533 |
+
|
534 |
+
# @ cpd
|
535 |
+
#: geoip/geoip.php:93
|
536 |
+
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
537 |
+
msgstr ""
|
538 |
+
"با عرض پوزش، توابع مورد نیاز (zlib) نصب نشده است یا در فایل php.ini فعال شده "
|
539 |
+
"است."
|
540 |
+
|
541 |
+
# @ cpd
|
542 |
+
#: geoip/geoip.php:117
|
543 |
+
msgid "New GeoIP database installed."
|
544 |
+
msgstr "بانک اطلاعاتی جدید GeoIP نصب شد."
|
545 |
+
|
546 |
+
# @ cpd
|
547 |
+
#: geoip/geoip.php:119
|
548 |
+
msgid ""
|
549 |
+
"Sorry, an error occurred. Try again or check the access rights of directory "
|
550 |
+
"\"geoip\" is 777."
|
551 |
+
msgstr ""
|
552 |
+
"متاسفیم، خطایی رخ داده است. دوباره سعی کنید یا حق دسترسی دایرکتوری \"geoip"
|
553 |
+
"\" را چک کنید که 777 باشد."
|
554 |
+
|
555 |
+
# @ default
|
556 |
+
#: notes.php:77
|
557 |
+
msgid "Action"
|
558 |
+
msgstr "اقدام"
|
559 |
+
|
560 |
+
# @ cpd
|
561 |
+
#: notes.php:82
|
562 |
+
msgid "add"
|
563 |
+
msgstr "اضافه کردن"
|
564 |
+
|
565 |
+
# @ cpd
|
566 |
+
#: notes.php:98
|
567 |
+
msgid "save"
|
568 |
+
msgstr "ذخیره"
|
569 |
+
|
570 |
+
# @ cpd
|
571 |
+
#: notes.php:99
|
572 |
+
msgid "delete"
|
573 |
+
msgstr "حذف"
|
574 |
+
|
575 |
+
# @ cpd
|
576 |
+
#: notes.php:110
|
577 |
+
msgid "edit"
|
578 |
+
msgstr "ویرایش"
|
579 |
+
|
580 |
+
# @ cpd
|
581 |
+
#: counter-options.php:385
|
582 |
+
msgid "Cache"
|
583 |
+
msgstr "نهانگاه(کش)"
|
584 |
+
|
585 |
+
# @ cpd
|
586 |
+
#: counter-options.php:386
|
587 |
+
msgid "I use a cache plugin. Count these visits with ajax."
|
588 |
+
msgstr ""
|
589 |
+
"من از نهانگاه افزونه استفاده می کنم. شمارش بازدیدها با استفاده از آجاکس."
|
590 |
+
|
591 |
+
# @ cpd
|
592 |
+
#: counter-options.php:465
|
593 |
+
msgid "Substring of the user agent, separated by comma"
|
594 |
+
msgstr "نام مرورگرها را با کاما (,) از هم جدا کنید"
|
595 |
+
|
596 |
+
# @ cpd
|
597 |
+
#: counter-options.php:554
|
598 |
+
msgid "Debug mode"
|
599 |
+
msgstr "حالت رفع اشکال"
|
600 |
+
|
601 |
+
# @ cpd
|
602 |
+
#: counter-options.php:556
|
603 |
+
msgid "Show debug informations at the bottom of all pages."
|
604 |
+
msgstr "نمایش اطلاعات اشکال زدایی در پایین تمام صفحات."
|
605 |
+
|
606 |
+
# @ cpd
|
607 |
+
#: counter-core.php:739
|
608 |
+
msgid "Visitors per Country"
|
609 |
+
msgstr "بازدیدکنندگان هر کشور"
|
610 |
+
|
611 |
+
# @ cpd
|
612 |
+
#: userperspan.php:38
|
613 |
+
msgid "Start"
|
614 |
+
msgstr "شروع"
|
615 |
+
|
616 |
+
# @ cpd
|
617 |
+
#: userperspan.php:40
|
618 |
+
msgid "End"
|
619 |
+
msgstr "پایان"
|
620 |
+
|
621 |
+
# @ cpd
|
622 |
+
#: userperspan.php:42
|
623 |
+
msgid "PostID"
|
624 |
+
msgstr "آی دی نوشته"
|
625 |
+
|
626 |
+
# @ cpd
|
627 |
+
#: counter-options.php:514
|
628 |
+
msgid "Add this value to \"Total reads\"."
|
629 |
+
msgstr "اضافه کردن این مقدار به \"مجموع خوانده شده ها\""
|
630 |
+
|
631 |
+
# @ cpd
|
632 |
+
#: counter-options.php:730
|
633 |
+
msgid ""
|
634 |
+
"You can get the country data for all entries in database by checking the IP "
|
635 |
+
"adress against the GeoIP database. This can take a while!"
|
636 |
+
msgstr ""
|
637 |
+
"شما می توانید داده ی کشورها را برای تمام ورودی ها در پایگاه داده از طریق چک "
|
638 |
+
"کردن IP در مقابل پایگاه داده GeoIP دریافت کنید. این کار ممکن است مدتی طول "
|
639 |
+
"بکشد!"
|
640 |
+
|
641 |
+
# @ cpd
|
642 |
+
#: userperspan.php:50
|
643 |
+
msgid "no data found"
|
644 |
+
msgstr "اطلاعاتی یافت نشد"
|
645 |
+
|
646 |
+
# @ cpd
|
647 |
+
#: counter-options.php:351
|
648 |
+
msgid "Counter"
|
649 |
+
msgstr "شمارشگر"
|
650 |
+
|
651 |
+
# @ cpd
|
652 |
+
#: counter-options.php:389
|
653 |
+
msgid "Clients and referrers"
|
654 |
+
msgstr "مشتریان و مراجعه کنندگان"
|
655 |
+
|
656 |
+
# @ cpd
|
657 |
+
#: counter-options.php:392
|
658 |
+
msgid ""
|
659 |
+
"Save and show clients and referrers.<br />Needs a lot of space in the "
|
660 |
+
"database but gives you more detailed informations of your visitors."
|
661 |
+
msgstr ""
|
662 |
+
"ذخیره و مشاهده ی مشتریان و مراجعه کنندگان.<br />به فضای زیادی در پایگاه داده "
|
663 |
+
"نیاز دارد، اما اطلاعات کاملی از بازدیدکنندگان به شما می دهد."
|
664 |
+
|
665 |
+
# @ cpd
|
666 |
+
#: counter-options.php:476
|
667 |
+
msgid "Local URLs"
|
668 |
+
msgstr "لینکهای محلی"
|
669 |
+
|
670 |
+
# @ cpd
|
671 |
+
#: counter-options.php:477
|
672 |
+
msgid "Show local referrers too."
|
673 |
+
msgstr "نمایش ارجاعات محلی"
|
674 |
+
|
675 |
+
# @ default
|
676 |
+
#: counter-options.php:485
|
677 |
+
msgid "Posts"
|
678 |
+
msgstr "نوشته ها"
|
679 |
+
|
680 |
+
# @ default
|
681 |
+
#: counter-options.php:485
|
682 |
+
msgid "Pages"
|
683 |
+
msgstr "صفحات"
|
684 |
+
|
685 |
+
# @ cpd
|
686 |
+
#: counter.php:158 counter.php:1200
|
687 |
+
msgid "Reads last week"
|
688 |
+
msgstr "خوانده شده ی هفته"
|
689 |
+
|
690 |
+
# @ default
|
691 |
+
#: counter.php:985
|
692 |
+
msgid "Category"
|
693 |
+
msgstr "دسته ها"
|
694 |
+
|
695 |
+
# @ default
|
696 |
+
#: counter.php:988
|
697 |
+
msgid "Tag"
|
698 |
+
msgstr "برچسب"
|
699 |
+
|
700 |
+
# @ default
|
701 |
+
#: counter-core.php:692
|
702 |
+
msgid "License"
|
703 |
+
msgstr "مجوز"
|
704 |
+
|
705 |
+
# @ cpd
|
706 |
+
#: counter-core.php:726 counter.php:1201
|
707 |
+
msgid "Reads per month"
|
708 |
+
msgstr "خوانده شده در ماه"
|
709 |
+
|
710 |
+
# @ cpd
|
711 |
+
#: counter-core.php:734
|
712 |
+
msgid "Referrer"
|
713 |
+
msgstr "ارجاع دهنده"
|
714 |
+
|
715 |
+
# @ cpd
|
716 |
+
#: counter-options.php:468
|
717 |
+
msgid "Referrers - Entries"
|
718 |
+
msgstr "ارجاع دهنده - مطالب"
|
719 |
+
|
720 |
+
# @ cpd
|
721 |
+
#: counter-options.php:469
|
722 |
+
msgid "How many referrers do you want to see on dashboard page?"
|
723 |
+
msgstr "میخواهید چه تعداد از ارجاعات را در صفحه ی پیشخوان خود مشاهده کنید؟"
|
724 |
+
|
725 |
+
# @ cpd
|
726 |
+
#: counter-options.php:472
|
727 |
+
msgid "Referrers - Days"
|
728 |
+
msgstr "ارجاع دهنده ها - روزها"
|
729 |
+
|
730 |
+
# @ cpd
|
731 |
+
#: counter.php:845
|
732 |
+
#, php-format
|
733 |
+
msgid "The %s referrers in last %s days:"
|
734 |
+
msgstr "%s مراجعه کننده در %s روز پیش:"
|
735 |
+
|
736 |
+
# @ cpd
|
737 |
+
#: counter-core.php:724
|
738 |
+
msgid "Visitors online"
|
739 |
+
msgstr "بازدیدکنندگان آنلاین"
|
740 |
+
|
741 |
+
# @ default
|
742 |
+
#: counter.php:1220
|
743 |
+
msgid "Title"
|
744 |
+
msgstr "عنوان"
|
745 |
+
|
746 |
+
# @ cpd
|
747 |
+
#: counter-core.php:186
|
748 |
+
#, php-format
|
749 |
+
msgid "\"Count per Day\" updated to version %s."
|
750 |
+
msgstr "\"Count per Day\" بروزرسانی شد به نسخه ی %s."
|
751 |
+
|
752 |
+
# @ cpd
|
753 |
+
#: counter-core.php:917
|
754 |
+
msgid "Backup failed! Cannot open file"
|
755 |
+
msgstr "پشتیبان گیری با مشکل مواجه شد! نمیتوانم فایل را باز کرد"
|
756 |
+
|
757 |
+
# @ cpd
|
758 |
+
#: counter-core.php:940
|
759 |
+
#, php-format
|
760 |
+
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
761 |
+
msgstr ""
|
762 |
+
"پشتیبان گیری از %s ورودی ها در حال پیشرفت است. هر نقطه مطابق %s ورودی است"
|
763 |
+
|
764 |
+
# @ cpd
|
765 |
+
#: counter-core.php:1027
|
766 |
+
msgid ""
|
767 |
+
"Your wp-content directory is not writable. But you can copy the content of "
|
768 |
+
"this box to a plain text file."
|
769 |
+
msgstr ""
|
770 |
+
"دایرکتوری wp-content شما قابل نوشتن نیست. اما شما می توانید محتوای این جعبه "
|
771 |
+
"را دریک فایل متنی ساده کپی کنید."
|
772 |
+
|
773 |
+
# @ cpd
|
774 |
+
#: counter-core.php:1033
|
775 |
+
#, php-format
|
776 |
+
msgid "Backup of counter table saved in %s."
|
777 |
+
msgstr "پشتیبان از جدول شمارنده ذخیره شد در %s."
|
778 |
+
|
779 |
+
# @ cpd
|
780 |
+
#: counter-core.php:1035
|
781 |
+
#, php-format
|
782 |
+
msgid "Backup of counter options and collection saved in %s."
|
783 |
+
msgstr "پشتیبان گیری از تنظیمات شمارشگر و مجموعه ذخیره شد در %s."
|
784 |
+
|
785 |
+
# @ cpd
|
786 |
+
#: counter-options.php:170
|
787 |
+
msgid "Collection in progress..."
|
788 |
+
msgstr "در حال انجام جمع آوری"
|
789 |
+
|
790 |
+
# @ cpd
|
791 |
+
#: counter-options.php:240
|
792 |
+
msgid "Get Visitors per Post..."
|
793 |
+
msgstr "بازدید کننده در هر پست ..."
|
794 |
+
|
795 |
+
# @ cpd
|
796 |
+
#: counter-options.php:261
|
797 |
+
msgid "Delete old data..."
|
798 |
+
msgstr "پاک کرده اطلاعات قدیمی"
|
799 |
+
|
800 |
+
# @ cpd
|
801 |
+
#: counter-options.php:285
|
802 |
+
#, php-format
|
803 |
+
msgid ""
|
804 |
+
"Counter entries until %s collected and counter table %s optimized (size "
|
805 |
+
"before = %s > size after = %s)."
|
806 |
+
msgstr ""
|
807 |
+
"ورودی های شمارشگر تا %s جمع آوری شد و جدول شمارشگر %s بهینه سازی شد. (حجم "
|
808 |
+
"قبل = %s > حجم بعد = %s)."
|
809 |
+
|
810 |
+
# @ cpd
|
811 |
+
#: counter-options.php:294
|
812 |
+
msgid "Installation of \"Count per Day\" checked"
|
813 |
+
msgstr "مراحل نصب \"Count per Day\" چک شد"
|
814 |
+
|
815 |
+
# @ default
|
816 |
+
#: counter-options.php:342 counter-options.php:566
|
817 |
+
msgid "Tools"
|
818 |
+
msgstr "ابزار"
|
819 |
+
|
820 |
+
# @ cpd
|
821 |
+
#: counter-options.php:394
|
822 |
+
msgid "Save URL only, no query string."
|
823 |
+
msgstr "تنها ذخیره ی URL، بدون متغیر رشته درخواست."
|
824 |
+
|
825 |
+
# @ cpd
|
826 |
+
#: counter-options.php:419
|
827 |
+
msgid "Who can see it"
|
828 |
+
msgstr "چه کسی می تواند پیشخوان را ببیند"
|
829 |
+
|
830 |
+
# @ cpd
|
831 |
+
#: counter-options.php:428
|
832 |
+
msgid "custom"
|
833 |
+
msgstr "سفارشی"
|
834 |
+
|
835 |
+
# @ cpd
|
836 |
+
#: counter-options.php:430
|
837 |
+
msgid "and higher are allowed to see the statistics page."
|
838 |
+
msgstr "بالاتر از کدام گروه قادر به مشاهده ی صفحه ی آمار هستند."
|
839 |
+
|
840 |
+
# @ cpd
|
841 |
+
#: counter-options.php:432
|
842 |
+
#, php-format
|
843 |
+
msgid "Set the %s capability %s a user need:"
|
844 |
+
msgstr "تنظیم %s قابلیت %s که یک کاربر نیازدارد"
|
845 |
+
|
846 |
+
# @ cpd
|
847 |
+
#: counter-options.php:522
|
848 |
+
msgid "Stylesheet"
|
849 |
+
msgstr "شیوه نامه"
|
850 |
+
|
851 |
+
# @ cpd
|
852 |
+
#: counter-options.php:525
|
853 |
+
msgid "NO Stylesheet in Frontend"
|
854 |
+
msgstr "بدون شیوه نامه"
|
855 |
+
|
856 |
+
# @ cpd
|
857 |
+
#: counter-options.php:526
|
858 |
+
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
859 |
+
msgstr "بارگذاری نشدن شیوه نامه ی \"counter.css\" "
|
860 |
+
|
861 |
+
# @ cpd
|
862 |
+
#: counter-options.php:534 counter-options.php:639
|
863 |
+
msgid "Backup"
|
864 |
+
msgstr "پشتیبان"
|
865 |
+
|
866 |
+
# @ cpd
|
867 |
+
#: counter-options.php:537
|
868 |
+
msgid "Entries per pass"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
# @ cpd
|
872 |
+
#: counter-options.php:540
|
873 |
+
msgid "How many entries should be saved per pass? Default: 10000"
|
874 |
+
msgstr "چه تعداد ورودی باید در هر گذر ذخیره شود؟ پیشفرض: 1000"
|
875 |
+
|
876 |
+
# @ cpd
|
877 |
+
#: counter-options.php:545
|
878 |
+
msgid ""
|
879 |
+
"If your PHP memory limit less then 50 MB and you get a white page or error "
|
880 |
+
"messages try a smaller value."
|
881 |
+
msgstr ""
|
882 |
+
"اگر حافظه ی PHP شما کمتر از 50 MB است و به صفحه ی سفید و یا خطا مواجه می "
|
883 |
+
"شوید، از مقدار کوچکتر استفاده کنید."
|
884 |
+
|
885 |
+
# @ cpd
|
886 |
+
#: counter-options.php:643
|
887 |
+
#, php-format
|
888 |
+
msgid ""
|
889 |
+
"Create a backup of the counter table %s in your wp-content directory (if "
|
890 |
+
"writable)."
|
891 |
+
msgstr ""
|
892 |
+
"ایجاد نسخه ی پشتیبان از جدول شمارشگر %s در دایرکتوری wp-content (اگر قابل "
|
893 |
+
"نوشتن باشد)"
|
894 |
+
|
895 |
+
# @ cpd
|
896 |
+
#: counter-options.php:647
|
897 |
+
msgid "Backup the database"
|
898 |
+
msgstr "پشتیبان از بانک اطلاعات"
|
899 |
+
|
900 |
+
# @ cpd
|
901 |
+
#: counter-options.php:674 counter-options.php:706
|
902 |
+
msgid "Collect old data"
|
903 |
+
msgstr "جمع آوری داده های قدیمی"
|
904 |
+
|
905 |
+
# @ cpd
|
906 |
+
#: counter-options.php:679
|
907 |
+
#, php-format
|
908 |
+
msgid "Current size of your counter table %s is %s."
|
909 |
+
msgstr "اندازه ی فعلی جدول شمارنده ی شما %s است %s."
|
910 |
+
|
911 |
+
# @ cpd
|
912 |
+
#: counter-options.php:681
|
913 |
+
msgid ""
|
914 |
+
"You can collect old data and clean up the counter table.<br/>Reads and "
|
915 |
+
"visitors will be saved per month, per country and per post.<br/>Clients and "
|
916 |
+
"referrers will deleted."
|
917 |
+
msgstr ""
|
918 |
+
"شما می توانید اطلاعات قدیمی و پاکسازی جدول را جمع آوری کنید.<br/>خوانده ها و "
|
919 |
+
"بازدیدکنندگان به ازای ماه، کشور و نوشته ذخیره خواهند شد.<br/>مشتریان و "
|
920 |
+
"مراجعه کنندگان حذف خواهند شد."
|
921 |
+
|
922 |
+
# @ cpd
|
923 |
+
#: counter-options.php:686
|
924 |
+
#, php-format
|
925 |
+
msgid "Currently your collection contains data until %s."
|
926 |
+
msgstr "در حال حاضر مجموعه ی شما شامل داده تا %s."
|
927 |
+
|
928 |
+
# @ cpd
|
929 |
+
#: counter-options.php:690
|
930 |
+
msgid "Normally new data will be added to the collection."
|
931 |
+
msgstr "به صورت معمول داده های جدید به مجموعه اضافه خواهد شد."
|
932 |
+
|
933 |
+
# @ cpd
|
934 |
+
#: counter-options.php:696
|
935 |
+
msgid ""
|
936 |
+
"Delete old collection and create a new one which contains only the data "
|
937 |
+
"currently in counter table."
|
938 |
+
msgstr ""
|
939 |
+
"مجموعه قدیمی حذف و یک مجموعه ی جدید که تنها حاوی اطلاعات فعلی شمارنده است "
|
940 |
+
"ایجاد می شود."
|
941 |
+
|
942 |
+
# @ cpd
|
943 |
+
#: counter-options.php:697
|
944 |
+
#, php-format
|
945 |
+
msgid "All collected data until %s will deleted."
|
946 |
+
msgstr "همه ی داده های جمع آوری شده تا %s حذف خواهد شد."
|
947 |
+
|
948 |
+
# @ cpd
|
949 |
+
#: counter-options.php:702
|
950 |
+
#, php-format
|
951 |
+
msgid "Keep entries of last %s full months + current month in counter table."
|
952 |
+
msgstr "حفظ ورودی های کامل %s ماه پیش + ماه فعلی در جدول شمارنده"
|
953 |
+
|
954 |
+
# @ cpd
|
955 |
+
#: counter-options.php:761
|
956 |
+
msgid "ReActivation"
|
957 |
+
msgstr "فعالسازی مجدد"
|
958 |
+
|
959 |
+
# @ cpd
|
960 |
+
#: counter-options.php:764
|
961 |
+
msgid ""
|
962 |
+
"Here you can start the installation functions manually.<br/>Same as "
|
963 |
+
"deactivate and reactivate the plugin."
|
964 |
+
msgstr ""
|
965 |
+
"در اینجا شما می توانید توابع نصب دستی را اجرا کنید.<br />مانند فعال و "
|
966 |
+
"غیرفعال کردن افزونه."
|
967 |
+
|
968 |
+
# @ cpd
|
969 |
+
#: counter-options.php:769
|
970 |
+
msgid "ReActivate the plugin"
|
971 |
+
msgstr "فعالسازی مجدد افزونه"
|
972 |
+
|
973 |
+
# @ cpd
|
974 |
+
#: counter.php:165 counter.php:899
|
975 |
+
msgid "Visitors"
|
976 |
+
msgstr "بازدیدکنندگان"
|
977 |
+
|
978 |
+
# @ cpd
|
979 |
+
#: counter.php:168 counter.php:169
|
980 |
+
msgid "Most visited day"
|
981 |
+
msgstr "بیشترین بازدید در روز"
|
982 |
+
|
983 |
+
# @ cpd
|
984 |
+
#: counter.php:1239
|
985 |
+
msgid "drag and drop to sort"
|
986 |
+
msgstr "کشیدن و رها کردن برای مرتب سازی"
|
locale/cpd-fi.mo
CHANGED
Binary file
|
locale/cpd-fi.po
CHANGED
@@ -1,970 +1,1128 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Count
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Jani Alha <tuki@wysiwyg.fi>\n"
|
8 |
-
"Language-Team:
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"Content-
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-
|
16 |
-
"
|
17 |
-
"X-Textdomain-Support: yes\n"
|
18 |
-
|
19 |
-
|
20 |
-
#: counter-options.php:
|
21 |
-
msgid "Options updated"
|
22 |
-
msgstr "Valinnat päivitetty"
|
23 |
-
|
24 |
-
|
25 |
-
#: counter-options.php:
|
26 |
-
#, php-format
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
29 |
-
|
30 |
-
|
31 |
-
#: counter-options.php:
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
#: counter-options.php:
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
#: counter-options.php:
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
-
|
71 |
-
|
72 |
-
#: counter-options.php:
|
73 |
-
|
74 |
-
|
75 |
-
msgstr "
|
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 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
#: counter-options.php:
|
114 |
-
msgid "
|
115 |
-
msgstr "
|
116 |
-
|
117 |
-
|
118 |
-
#: counter-options.php:
|
119 |
-
msgid "
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
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 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
#: counter-options.php:
|
249 |
-
#: counter-options.php:
|
250 |
-
msgid "
|
251 |
-
msgstr "
|
252 |
-
|
253 |
-
|
254 |
-
#: counter-options.php:
|
255 |
-
msgid "
|
256 |
-
msgstr "
|
257 |
-
|
258 |
-
|
259 |
-
#: counter-options.php:
|
260 |
-
msgid "
|
261 |
-
msgstr "
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
msgstr "
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
#: counter-options.php:
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
#:
|
301 |
-
msgid "
|
302 |
-
msgstr "
|
303 |
-
|
304 |
-
|
305 |
-
#: counter-options.php:
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
#:
|
326 |
-
msgid "
|
327 |
-
msgstr "
|
328 |
-
|
329 |
-
|
330 |
-
#: counter
|
331 |
-
msgid "
|
332 |
-
msgstr "
|
333 |
-
|
334 |
-
|
335 |
-
#: counter-options.php:
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
#: counter-options.php:
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
#: counter.php:
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
#: counter.php:
|
455 |
-
msgid "
|
456 |
-
msgstr "
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
#: counter.php:
|
461 |
-
msgid "
|
462 |
-
msgstr "
|
463 |
-
|
464 |
-
|
465 |
-
#: counter.php:
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
#: counter.php:
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
#:
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
msgid "
|
504 |
-
msgstr "
|
505 |
-
|
506 |
-
|
507 |
-
#: counter.php:
|
508 |
-
msgid "
|
509 |
-
msgstr "
|
510 |
-
|
511 |
-
|
512 |
-
#: counter.php:
|
513 |
-
msgid "
|
514 |
-
msgstr "
|
515 |
-
|
516 |
-
|
517 |
-
#: counter.php:
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
#:
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
#: counter.php:
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
#: counter-options.php:
|
669 |
-
msgid "
|
670 |
-
msgstr "
|
671 |
-
|
672 |
-
|
673 |
-
#: counter-options.php:
|
674 |
-
msgid "Local URLs"
|
675 |
-
msgstr "Paikalliset URL-osoitteet"
|
676 |
-
|
677 |
-
|
678 |
-
#: counter-options.php:
|
679 |
-
msgid "Show local referrers too."
|
680 |
-
msgstr "Näytä myös paikalliset viittaavat sivustot."
|
681 |
-
|
682 |
-
|
683 |
-
#: counter-options.php:
|
684 |
-
msgid "Posts"
|
685 |
-
msgstr "Artikkeleja"
|
686 |
-
|
687 |
-
|
688 |
-
#: counter-options.php:
|
689 |
-
msgid "Pages"
|
690 |
-
msgstr "Sivuja"
|
691 |
-
|
692 |
-
|
693 |
-
#: counter.php:
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
msgstr "
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
msgid "
|
770 |
-
msgstr "
|
771 |
-
|
772 |
-
|
773 |
-
#: counter-
|
774 |
-
msgid "
|
775 |
-
msgstr "
|
776 |
-
|
777 |
-
|
778 |
-
#: counter-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
msgstr "
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
#: counter-options.php:
|
902 |
-
#, php-format
|
903 |
-
msgid "
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
msgid "
|
925 |
-
msgstr "
|
926 |
-
|
927 |
-
|
928 |
-
#: counter-options.php:
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
msgid "
|
942 |
-
msgstr "
|
943 |
-
|
944 |
-
|
945 |
-
#: counter-options.php:
|
946 |
-
msgid "
|
947 |
-
msgstr "
|
948 |
-
|
949 |
-
|
950 |
-
#: counter-options.php:
|
951 |
-
msgid "
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Count Per Day v3.2\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-11-02 12:13+0100\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Jani Alha <tuki@wysiwyg.fi>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: fi_FI\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
+
"_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"
|
17 |
+
"X-Textdomain-Support: yes\n"
|
18 |
+
|
19 |
+
# @ cpd
|
20 |
+
#: Copy of counter-options.php:50 counter-options.php:52
|
21 |
+
msgid "Options updated"
|
22 |
+
msgstr "Valinnat päivitetty"
|
23 |
+
|
24 |
+
# @ cpd
|
25 |
+
#: Copy of counter-options.php:111 counter-options.php:113
|
26 |
+
#, php-format
|
27 |
+
msgid "Database cleaned. %s rows deleted."
|
28 |
+
msgstr "Tietokanta puhdistettu. %s riviä poistettu."
|
29 |
+
|
30 |
+
# @ cpd
|
31 |
+
#: Copy of counter-options.php:126 counter-options.php:839
|
32 |
+
#: counter-options.php:128 counter-options.php:693
|
33 |
+
msgid "UNINSTALL Count per Day"
|
34 |
+
msgstr "POISTA Count per Day"
|
35 |
+
|
36 |
+
# @ cpd
|
37 |
+
#: Copy of counter-options.php:131 counter-options.php:132
|
38 |
+
#: counter-options.php:133 counter-options.php:134 counter-options.php:135
|
39 |
+
#, php-format
|
40 |
+
msgid "Table %s deleted"
|
41 |
+
msgstr "Taulukko %s poistettu"
|
42 |
+
|
43 |
+
# @ cpd
|
44 |
+
#: Copy of counter-options.php:134 counter-options.php:136
|
45 |
+
msgid "Options deleted"
|
46 |
+
msgstr "Valinnat poistettu"
|
47 |
+
|
48 |
+
# @ cpd
|
49 |
+
#: Copy of counter-options.php:321 counter-options.php:825
|
50 |
+
#: counter-options.php:362 counter-options.php:679
|
51 |
+
msgid "Uninstall"
|
52 |
+
msgstr "Poista asennus"
|
53 |
+
|
54 |
+
# @ cpd
|
55 |
+
#: Copy of counter-options.php:322 counter-options.php:363
|
56 |
+
msgid "Click here"
|
57 |
+
msgstr "Napsauta tästä"
|
58 |
+
|
59 |
+
# @ cpd
|
60 |
+
#: Copy of counter-options.php:322 counter-options.php:363
|
61 |
+
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
62 |
+
msgstr ""
|
63 |
+
"viimeistelläksesi asennuksen poiston ja \"Count per Day\" käytöstä "
|
64 |
+
"poistamisen."
|
65 |
+
|
66 |
+
# @ cpd
|
67 |
+
#: Copy of counter-options.php:359 counter-options.php:726
|
68 |
+
msgid "Online time"
|
69 |
+
msgstr "Online-aika"
|
70 |
+
|
71 |
+
# @ cpd
|
72 |
+
#: Copy of counter-options.php:360 counter-options.php:727
|
73 |
+
msgid ""
|
74 |
+
"Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
75 |
+
msgstr ""
|
76 |
+
"Sekuntia online-laskuria varten. Käytetään \"Vierailijat online-tilassa\" "
|
77 |
+
"ohjausnäkymän sivulla."
|
78 |
+
|
79 |
+
# @ cpd
|
80 |
+
#: Copy of counter-options.php:363 counter-options.php:730
|
81 |
+
msgid "Logged on Users"
|
82 |
+
msgstr "Kirjautuneet käyttäjinä"
|
83 |
+
|
84 |
+
# @ cpd
|
85 |
+
#: Copy of counter-options.php:365 counter-options.php:732
|
86 |
+
msgid "count too"
|
87 |
+
msgstr "laske myös"
|
88 |
+
|
89 |
+
# @ cpd
|
90 |
+
#: Copy of counter-options.php:377 counter-options.php:744
|
91 |
+
msgid "Auto counter"
|
92 |
+
msgstr "Automaattinen laskuri"
|
93 |
+
|
94 |
+
# @ cpd
|
95 |
+
#: Copy of counter-options.php:378 counter-options.php:745
|
96 |
+
msgid ""
|
97 |
+
"Counts automatically single-posts and pages, no changes on template needed."
|
98 |
+
msgstr ""
|
99 |
+
"Laskee automaattisesti artikkelit ja sivut, muutoksia sivupohjiin ei tarvita."
|
100 |
+
|
101 |
+
# @ cpd
|
102 |
+
#: Copy of counter-options.php:381 counter-options.php:748
|
103 |
+
msgid "Bots to ignore"
|
104 |
+
msgstr "Robotit, jotka jätetään huomioimatta"
|
105 |
+
|
106 |
+
# @ cpd
|
107 |
+
#: Copy of counter-options.php:559 counter-options.php:926
|
108 |
+
msgid "Update options"
|
109 |
+
msgstr "Päivitä valinnat"
|
110 |
+
|
111 |
+
# @ cpd
|
112 |
+
#: Copy of counter-options.php:685 counter-options.php:694
|
113 |
+
#: counter-options.php:540 counter-options.php:548
|
114 |
+
msgid "Clean the database"
|
115 |
+
msgstr "Puhdista tietokanta"
|
116 |
+
|
117 |
+
# @ cpd
|
118 |
+
#: Copy of counter-options.php:688 counter-options.php:543
|
119 |
+
msgid ""
|
120 |
+
"You can clean the counter table by delete the \"spam data\".<br />If you add "
|
121 |
+
"new bots above the old \"spam data\" keeps in the database.<br />Here you "
|
122 |
+
"can run the bot filter again and delete the visits of the bots."
|
123 |
+
msgstr ""
|
124 |
+
"Voit puhdistaa laskuritaulun poistamalla \"spam-data\".<br />Mikäli lisäät "
|
125 |
+
"uusia robotteja yläpuolelle, vanha \"spam-data\" säilytetään tietokannassa."
|
126 |
+
"<br />Täällä voit suorittaa robottisuodattimen uudelleen ja poistaa "
|
127 |
+
"robottien vierailut."
|
128 |
+
|
129 |
+
# @ cpd
|
130 |
+
#: Copy of counter-options.php:828 counter-options.php:682
|
131 |
+
msgid ""
|
132 |
+
"If \"Count per Day\" only disabled the tables in the database will be "
|
133 |
+
"preserved."
|
134 |
+
msgstr ""
|
135 |
+
"Mikäli \"Count per Day\" on ainoastaan poistettu käytöstä, tullaan taulut "
|
136 |
+
"tietokannassa säilyttämään."
|
137 |
+
|
138 |
+
# @ cpd
|
139 |
+
#: Copy of counter-options.php:829 counter-options.php:683
|
140 |
+
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
141 |
+
msgstr ""
|
142 |
+
"Täällä voit poistaa taulut ja poistaa \"Count per Day\" -lisäosan käytöstä."
|
143 |
+
|
144 |
+
# @ cpd
|
145 |
+
#: Copy of counter-options.php:832 counter-options.php:686
|
146 |
+
msgid "WARNING"
|
147 |
+
msgstr "VAROITUS"
|
148 |
+
|
149 |
+
# @ cpd
|
150 |
+
#: Copy of counter-options.php:833 counter-options.php:687
|
151 |
+
msgid "These tables (with ALL counter data) will be deleted."
|
152 |
+
msgstr "Nämä taulut (KAIKKI laskutiedot mukaan luettuina) tullaan poistamaan."
|
153 |
+
|
154 |
+
# @ cpd
|
155 |
+
#: Copy of counter-options.php:835 counter-options.php:689
|
156 |
+
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
157 |
+
msgstr ""
|
158 |
+
"Mikäli \"Count per Day\" asennetaan uudelleen, laskuri alkaa arvosta 0."
|
159 |
+
|
160 |
+
# @ cpd
|
161 |
+
#: Copy of counter-options.php:815 counter-options.php:838
|
162 |
+
#: counter-options.php:669 counter-options.php:692
|
163 |
+
msgid "Yes"
|
164 |
+
msgstr "Kyllä"
|
165 |
+
|
166 |
+
# @ cpd
|
167 |
+
#: Copy of counter-options.php:839 counter-options.php:693
|
168 |
+
msgid "You are sure to disable Count per Day and delete all data?"
|
169 |
+
msgstr ""
|
170 |
+
"Oletko varma, että haluat poistaa \"Count per Day\" -lisäosan käytöstä ja "
|
171 |
+
"poistaa kaikki tiedot?"
|
172 |
+
|
173 |
+
# @ cpd
|
174 |
+
#: counter-core.php:844 counter.php:1232
|
175 |
+
msgid "Statistics"
|
176 |
+
msgstr "Tilastot"
|
177 |
+
|
178 |
+
# @ cpd
|
179 |
+
#: counter-core.php:812 counter.php:190 counter.php:1118 counter.php:1310
|
180 |
+
msgid "Total visitors"
|
181 |
+
msgstr "Vierailijoita yhteensä"
|
182 |
+
|
183 |
+
# @ cpd
|
184 |
+
#: counter.php:191 counter.php:1316
|
185 |
+
msgid "Visitors currently online"
|
186 |
+
msgstr "Vierailijat parhaillaan online-tilassa"
|
187 |
+
|
188 |
+
# @ cpd
|
189 |
+
#: counter.php:192 counter.php:1311
|
190 |
+
msgid "Visitors today"
|
191 |
+
msgstr "Vierailijoita tänään"
|
192 |
+
|
193 |
+
# @ cpd
|
194 |
+
#: counter.php:193 counter.php:1312
|
195 |
+
msgid "Visitors yesterday"
|
196 |
+
msgstr "Vierailijoita eilen"
|
197 |
+
|
198 |
+
# @ cpd
|
199 |
+
#: counter.php:194 counter.php:1313
|
200 |
+
msgid "Visitors last week"
|
201 |
+
msgstr "Vierailijoita viime viikolla"
|
202 |
+
|
203 |
+
# @ cpd
|
204 |
+
#: counter.php:197 counter.php:877 counter.php:1317
|
205 |
+
msgid "Counter starts on"
|
206 |
+
msgstr "Laskuri alkaa"
|
207 |
+
|
208 |
+
# @ cpd
|
209 |
+
#: counter-core.php:818 counter.php:196 counter.php:295 counter.php:1120
|
210 |
+
#: counter.php:1315 userperspan.php:34
|
211 |
+
msgid "Visitors per day"
|
212 |
+
msgstr "Vierailijoita päivässä"
|
213 |
+
|
214 |
+
# @ cpd
|
215 |
+
#: counter-core.php:814 counter.php:1314
|
216 |
+
msgid "Visitors per month"
|
217 |
+
msgstr "Vierailijoita kuukaudessa"
|
218 |
+
|
219 |
+
# @ cpd
|
220 |
+
#: Copy of counter-options.php:441 counter-core.php:816
|
221 |
+
#: counter-options.php:808
|
222 |
+
msgid "Visitors per post"
|
223 |
+
msgstr "Vierailijaa per artikkeli"
|
224 |
+
|
225 |
+
# @ cpd
|
226 |
+
#: Copy of counter-options.php:121 counter-options.php:123
|
227 |
+
msgid "Counter reseted."
|
228 |
+
msgstr "Laskuri nollattu."
|
229 |
+
|
230 |
+
# @ cpd
|
231 |
+
#: Copy of counter-options.php:442 counter-options.php:446
|
232 |
+
#: counter-options.php:809 counter-options.php:813
|
233 |
+
msgid "How many posts do you want to see on dashboard page?"
|
234 |
+
msgstr "Kuinka monta artikkelia haluat nähdä ohjausnäkymän sivulla?"
|
235 |
+
|
236 |
+
# @ cpd
|
237 |
+
#: Copy of counter-options.php:445 counter-options.php:812
|
238 |
+
msgid "Latest Counts - Posts"
|
239 |
+
msgstr "Viimeisimmät osumat - artikkelit"
|
240 |
+
|
241 |
+
# @ cpd
|
242 |
+
#: Copy of counter-options.php:449 counter-options.php:816
|
243 |
+
msgid "Latest Counts - Days"
|
244 |
+
msgstr "Viimeisimmät osumat - päivät"
|
245 |
+
|
246 |
+
# @ cpd
|
247 |
+
#: Copy of counter-options.php:450 counter-options.php:454
|
248 |
+
#: counter-options.php:476 counter-options.php:817 counter-options.php:821
|
249 |
+
#: counter-options.php:843
|
250 |
+
msgid "How many days do you want look back?"
|
251 |
+
msgstr "Kuinka monta päivää haluat katsoa taaksepäin?"
|
252 |
+
|
253 |
+
# @ cpd
|
254 |
+
#: Copy of counter-options.php:490 counter-options.php:857
|
255 |
+
msgid "Show in lists"
|
256 |
+
msgstr "Näytä listana"
|
257 |
+
|
258 |
+
# @ cpd
|
259 |
+
#: Copy of counter-options.php:491 counter-options.php:858
|
260 |
+
msgid "Show \"Reads per Post\" in a new column in post management views."
|
261 |
+
msgstr ""
|
262 |
+
"Näytä \"Luettu per artikkeli\" uudella sarakkeella artikkelihallinnan "
|
263 |
+
"näkymissä."
|
264 |
+
|
265 |
+
# @ cpd
|
266 |
+
#: Copy of counter-options.php:806 counter-options.php:816
|
267 |
+
#: counter-options.php:660 counter-options.php:670
|
268 |
+
msgid "Reset the counter"
|
269 |
+
msgstr "Nollaa laskuri"
|
270 |
+
|
271 |
+
# @ cpd
|
272 |
+
#: Copy of counter-options.php:809 counter-options.php:663
|
273 |
+
msgid ""
|
274 |
+
"You can reset the counter by empty the table. ALL TO 0!<br />Make a backup "
|
275 |
+
"if you need the current data!"
|
276 |
+
msgstr ""
|
277 |
+
"Voit nollata laskurin tyhjentämällä taulun. KAIKKI ARVOIKSI 0.<br />Ota "
|
278 |
+
"varmuuskopio mikäli tarvitset nykyisiä tietoja!"
|
279 |
+
|
280 |
+
# @ cpd
|
281 |
+
#: counter.php:708
|
282 |
+
#, php-format
|
283 |
+
msgid "The %s most visited posts in last %s days:"
|
284 |
+
msgstr "%s eniten vierailtua artikkelia viimeisen %s päivän aikana:"
|
285 |
+
|
286 |
+
# @ default
|
287 |
+
#: Copy of counter-options.php:346 counter-options.php:563
|
288 |
+
#: counter-core.php:649 counter-options.php:386 counter-options.php:714
|
289 |
+
msgid "Settings"
|
290 |
+
msgstr "Asetukset"
|
291 |
+
|
292 |
+
# tjekkes
|
293 |
+
# @ cpd
|
294 |
+
#: Copy of counter-options.php:396 counter-core.php:714
|
295 |
+
#: counter-options.php:763 counter.php:189 counter.php:927
|
296 |
+
msgid "Reads"
|
297 |
+
msgstr "Luettuja"
|
298 |
+
|
299 |
+
# @ cpd
|
300 |
+
#: counter-core.php:817
|
301 |
+
msgid "Latest Counts"
|
302 |
+
msgstr "Viimeisimmät osumat"
|
303 |
+
|
304 |
+
# @ cpd
|
305 |
+
#: Copy of counter-options.php:453 counter-options.php:820
|
306 |
+
msgid "Chart - Days"
|
307 |
+
msgstr "Kaavio - päiviä"
|
308 |
+
|
309 |
+
# @ cpd
|
310 |
+
#: Copy of counter-options.php:457 counter-options.php:824
|
311 |
+
msgid "Chart - Height"
|
312 |
+
msgstr "Kaavio - korkeus"
|
313 |
+
|
314 |
+
# @ cpd
|
315 |
+
#: Copy of counter-options.php:458 counter-options.php:825
|
316 |
+
msgid "Height of the biggest bar"
|
317 |
+
msgstr "Suurimman pylvään korkeus"
|
318 |
+
|
319 |
+
# @ cpd
|
320 |
+
#: counter.php:1304
|
321 |
+
msgid "This post"
|
322 |
+
msgstr "Tämä artikkeli"
|
323 |
+
|
324 |
+
# @ default
|
325 |
+
#: Copy of counter-options.php:406 counter-options.php:773
|
326 |
+
msgid "Dashboard"
|
327 |
+
msgstr "Ohjausnäkymä"
|
328 |
+
|
329 |
+
# @ cpd
|
330 |
+
#: counter.php:294
|
331 |
+
msgid "Reads per day"
|
332 |
+
msgstr "Luettuja päivässä"
|
333 |
+
|
334 |
+
# @ cpd
|
335 |
+
#: Copy of counter-options.php:61 counter-options.php:63
|
336 |
+
#, php-format
|
337 |
+
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
338 |
+
msgstr "Maat päivitetty. <b>%s</b> merkintää %s ilman maatietoa jäljellä"
|
339 |
+
|
340 |
+
# @ cpd
|
341 |
+
#: Copy of counter-options.php:64 counter-options.php:66
|
342 |
+
msgid "update next"
|
343 |
+
msgstr "päivitä seuraavaksi"
|
344 |
+
|
345 |
+
# @ cpd
|
346 |
+
#: Copy of counter-options.php:756 counter-options.php:610
|
347 |
+
msgid "GeoIP - Countries"
|
348 |
+
msgstr "GeoIP - Maat"
|
349 |
+
|
350 |
+
# @ cpd
|
351 |
+
#: Copy of counter-options.php:765 counter-options.php:619
|
352 |
+
msgid "Update old counter data"
|
353 |
+
msgstr "Pävitä vanhat laskutiedot"
|
354 |
+
|
355 |
+
# @ cpd
|
356 |
+
#: Copy of counter-options.php:777 counter-options.php:631
|
357 |
+
msgid "Update GeoIP database"
|
358 |
+
msgstr "Päivitä GeoIP-tietokanta"
|
359 |
+
|
360 |
+
# @ cpd
|
361 |
+
#: Copy of counter-options.php:772 counter-options.php:626
|
362 |
+
msgid "Download a new version of GeoIP.dat file."
|
363 |
+
msgstr "Lataa uusi versio GeoIP.dat -tiedostosta."
|
364 |
+
|
365 |
+
# @ cpd
|
366 |
+
#: Copy of counter-options.php:782 counter-options.php:636
|
367 |
+
msgid "More informations about GeoIP"
|
368 |
+
msgstr "Lisää tietoa GeoIP:stä"
|
369 |
+
|
370 |
+
# @ cpd
|
371 |
+
#: counter-core.php:828
|
372 |
+
msgid "Reads per Country"
|
373 |
+
msgstr "Luetut per maa"
|
374 |
+
|
375 |
+
# @ cpd
|
376 |
+
#: geoip/geoip.php:114
|
377 |
+
msgid "New GeoIP database installed."
|
378 |
+
msgstr "Uusi GeoIP-tietokanta asennettu."
|
379 |
+
|
380 |
+
# @ cpd
|
381 |
+
#: geoip/geoip.php:116
|
382 |
+
msgid ""
|
383 |
+
"Sorry, an error occurred. Try again or check the access rights of directory "
|
384 |
+
"\"geoip\" is 777."
|
385 |
+
msgstr ""
|
386 |
+
"Virhe on tapahtunut. Yritä uudelleen ja tarkista, että kansiolla \"geoip\" "
|
387 |
+
"on oikeudet 777."
|
388 |
+
|
389 |
+
# @ cpd
|
390 |
+
#: geoip/geoip.php:90
|
391 |
+
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
392 |
+
msgstr ""
|
393 |
+
"Valitettavasti tarvittavaa toimintoa (zlib) ei ole asennettu tai "
|
394 |
+
"käyttöönotettu php.ini:ssä."
|
395 |
+
|
396 |
+
# @ cpd
|
397 |
+
#: Copy of counter-options.php:462 counter-options.php:829
|
398 |
+
msgid "Countries"
|
399 |
+
msgstr "Maat"
|
400 |
+
|
401 |
+
# @ cpd
|
402 |
+
#: Copy of counter-options.php:463 counter-options.php:830
|
403 |
+
msgid "How many countries do you want to see on dashboard page?"
|
404 |
+
msgstr "Kuinka monta maata haluat nähdä ohjausnäkymän sivulla?"
|
405 |
+
|
406 |
+
# @ cpd
|
407 |
+
#: Copy of counter-options.php:104 counter-options.php:106
|
408 |
+
#, php-format
|
409 |
+
msgid "Mass Bots cleaned. %s counts deleted."
|
410 |
+
msgstr "Robotit puhdistettu. %s osumaa poistettu."
|
411 |
+
|
412 |
+
# @ cpd
|
413 |
+
#: Copy of counter-options.php:578 counter-options.php:402 massbots.php:36
|
414 |
+
msgid "Mass Bots"
|
415 |
+
msgstr "Robotit"
|
416 |
+
|
417 |
+
# @ cpd
|
418 |
+
#: Copy of counter-options.php:582 counter-options.php:406
|
419 |
+
#, php-format
|
420 |
+
msgid "Show all IPs with more than %s page views per day"
|
421 |
+
msgstr ""
|
422 |
+
"Näytä kaikki IP-osoitteet, joilla on enemmän kuin %s sivunäyttöä päivässä"
|
423 |
+
|
424 |
+
# @ cpd
|
425 |
+
#: Copy of counter-options.php:583 counter-options.php:407 notes.php:71
|
426 |
+
#: userperspan.php:44
|
427 |
+
msgid "show"
|
428 |
+
msgstr "näytä"
|
429 |
+
|
430 |
+
# @ cpd
|
431 |
+
#: Copy of counter-options.php:609 counter-options.php:625
|
432 |
+
#: counter-options.php:433 counter-options.php:449
|
433 |
+
#, php-format
|
434 |
+
msgid "Delete these %s counts"
|
435 |
+
msgstr "Poista nämä %s osumat"
|
436 |
+
|
437 |
+
# @ cpd
|
438 |
+
#: counter.php:865
|
439 |
+
msgid "Other"
|
440 |
+
msgstr "Toinen"
|
441 |
+
|
442 |
+
# @ default
|
443 |
+
#: counter.php:1054 massbots.php:53 userperspan.php:63
|
444 |
+
msgid "Front page displays"
|
445 |
+
msgstr "Etusivulla näytetään"
|
446 |
+
|
447 |
+
# @ cpd
|
448 |
+
#: Copy of counter-options.php:467 counter-core.php:823
|
449 |
+
#: counter-options.php:834
|
450 |
+
msgid "Browsers"
|
451 |
+
msgstr "Selaimet"
|
452 |
+
|
453 |
+
# @ cpd
|
454 |
+
#: Copy of counter-options.php:591 counter-options.php:415
|
455 |
+
msgid "IP"
|
456 |
+
msgstr "IP"
|
457 |
+
|
458 |
+
# @ cpd
|
459 |
+
# @ default
|
460 |
+
#: Copy of counter-options.php:592 counter-options.php:416 notes.php:75
|
461 |
+
msgid "Date"
|
462 |
+
msgstr "Päivä"
|
463 |
+
|
464 |
+
# @ cpd
|
465 |
+
#: Copy of counter-options.php:593 counter-options.php:417
|
466 |
+
msgid "Client"
|
467 |
+
msgstr "Asiakas"
|
468 |
+
|
469 |
+
# @ cpd
|
470 |
+
#: Copy of counter-options.php:594 counter-options.php:418
|
471 |
+
msgid "Views"
|
472 |
+
msgstr "Näyttöä"
|
473 |
+
|
474 |
+
# @ cpd
|
475 |
+
#: Copy of counter-options.php:498 counter-options.php:865
|
476 |
+
msgid "Start Values"
|
477 |
+
msgstr "Aloitusarvot"
|
478 |
+
|
479 |
+
# @ cpd
|
480 |
+
#: Copy of counter-options.php:502 counter-options.php:869
|
481 |
+
msgid "Here you can change the date of first count and add a start count."
|
482 |
+
msgstr ""
|
483 |
+
"Täällä voit muuttaa ensimmäisen osuman päiväystä ja lisätä aloituslaskurin."
|
484 |
+
|
485 |
+
# @ cpd
|
486 |
+
#: Copy of counter-options.php:506 counter-options.php:873
|
487 |
+
msgid "Start date"
|
488 |
+
msgstr "Aloituspäivä"
|
489 |
+
|
490 |
+
# @ cpd
|
491 |
+
#: Copy of counter-options.php:507 counter-options.php:874
|
492 |
+
msgid "Your old Counter starts at?"
|
493 |
+
msgstr "Vanha laskurisi alkaa?"
|
494 |
+
|
495 |
+
# @ cpd
|
496 |
+
#: Copy of counter-options.php:510 counter-options.php:514
|
497 |
+
#: counter-options.php:877 counter-options.php:881
|
498 |
+
msgid "Start count"
|
499 |
+
msgstr "Aloita laskuri"
|
500 |
+
|
501 |
+
# @ cpd
|
502 |
+
#: Copy of counter-options.php:511 counter-options.php:878
|
503 |
+
msgid "Add this value to \"Total visitors\"."
|
504 |
+
msgstr "Lisää tämä arvo \"Vierailijaa yhteensä\"."
|
505 |
+
|
506 |
+
# @ cpd
|
507 |
+
#: Copy of counter-options.php:743 counter-options.php:701
|
508 |
+
msgid "Support"
|
509 |
+
msgstr "Tuki"
|
510 |
+
|
511 |
+
# @ cpd
|
512 |
+
#: counter-core.php:778
|
513 |
+
msgid "Bug? Problem? Question? Hint? Praise?"
|
514 |
+
msgstr "Virhe? Ongelma? Kysymys? Vihje? Kehu?"
|
515 |
+
|
516 |
+
# @ cpd
|
517 |
+
#: counter-core.php:779
|
518 |
+
#, php-format
|
519 |
+
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
520 |
+
msgstr "Kirjoita kommentti <a href=\"%s\">lisäosan sivulle</a>."
|
521 |
+
|
522 |
+
# @ default
|
523 |
+
#: counter.php:824
|
524 |
+
msgid "Show"
|
525 |
+
msgstr "Näytä"
|
526 |
+
|
527 |
+
# @ default
|
528 |
+
#: counter.php:1039
|
529 |
+
msgid "Edit Post"
|
530 |
+
msgstr "Muokkaa artikkelia"
|
531 |
+
|
532 |
+
# @ cpd
|
533 |
+
#: counter-core.php:777
|
534 |
+
#, php-format
|
535 |
+
msgid "Time for Count per Day: <code>%s</code>."
|
536 |
+
msgstr "Aika osumille per päivä: <code>%s</code>."
|
537 |
+
|
538 |
+
# @ cpd
|
539 |
+
#: Copy of counter-options.php:366 counter-options.php:733
|
540 |
+
msgid "until User Level"
|
541 |
+
msgstr "kunnes käyttäjätaso"
|
542 |
+
|
543 |
+
# @ default
|
544 |
+
#: counter-core.php:820
|
545 |
+
msgid "Plugin"
|
546 |
+
msgstr "Lisäosa"
|
547 |
+
|
548 |
+
# @ cpd
|
549 |
+
#: counter.php:826 notes.php:42 notes.php:76
|
550 |
+
msgid "Notes"
|
551 |
+
msgstr "Huomioita"
|
552 |
+
|
553 |
+
# @ default
|
554 |
+
#: notes.php:77
|
555 |
+
msgid "Action"
|
556 |
+
msgstr "Toiminto"
|
557 |
+
|
558 |
+
# @ cpd
|
559 |
+
#: notes.php:82
|
560 |
+
msgid "add"
|
561 |
+
msgstr "lisää"
|
562 |
+
|
563 |
+
# @ cpd
|
564 |
+
#: notes.php:98
|
565 |
+
msgid "save"
|
566 |
+
msgstr "tallenna"
|
567 |
+
|
568 |
+
# @ cpd
|
569 |
+
#: notes.php:99
|
570 |
+
msgid "delete"
|
571 |
+
msgstr "poista"
|
572 |
+
|
573 |
+
# @ cpd
|
574 |
+
#: notes.php:110
|
575 |
+
msgid "edit"
|
576 |
+
msgstr "muokkaa"
|
577 |
+
|
578 |
+
# @ cpd
|
579 |
+
#: Copy of counter-options.php:515 counter-options.php:882
|
580 |
+
msgid "Add this value to \"Total reads\"."
|
581 |
+
msgstr "Lisää tämä arvo \"Luettu yhteensä\"."
|
582 |
+
|
583 |
+
# @ cpd
|
584 |
+
#: counter.php:185 counter.php:1305
|
585 |
+
msgid "Total reads"
|
586 |
+
msgstr "Luettuja yhteensä"
|
587 |
+
|
588 |
+
# @ cpd
|
589 |
+
#: counter.php:186 counter.php:1306
|
590 |
+
msgid "Reads today"
|
591 |
+
msgstr "Luettuja tänään"
|
592 |
+
|
593 |
+
# @ cpd
|
594 |
+
#: counter.php:187 counter.php:1307
|
595 |
+
msgid "Reads yesterday"
|
596 |
+
msgstr "Luettuja eilen"
|
597 |
+
|
598 |
+
# @ cpd
|
599 |
+
#: counter.php:385 counter.php:1149
|
600 |
+
msgid "Map"
|
601 |
+
msgstr "Kartta"
|
602 |
+
|
603 |
+
# @ cpd
|
604 |
+
#: Copy of counter-options.php:385 counter-options.php:752
|
605 |
+
msgid "Anonymous IP"
|
606 |
+
msgstr "Anonyymi IP"
|
607 |
+
|
608 |
+
# @ cpd
|
609 |
+
#: Copy of counter-options.php:389 counter-options.php:756
|
610 |
+
msgid "Cache"
|
611 |
+
msgstr "Välimuisti"
|
612 |
+
|
613 |
+
# @ cpd
|
614 |
+
#: Copy of counter-options.php:390 counter-options.php:757
|
615 |
+
msgid "I use a cache plugin. Count these visits with ajax."
|
616 |
+
msgstr "Käytän välimuistilisäosaa. Laske nämä käynnit ajaxilla."
|
617 |
+
|
618 |
+
# @ cpd
|
619 |
+
#: Copy of counter-options.php:468 counter-options.php:835
|
620 |
+
msgid "Substring of the user agent, separated by comma"
|
621 |
+
msgstr "Selaimet lyhyessä muodossa, pilkulla eroteltuna"
|
622 |
+
|
623 |
+
# @ cpd
|
624 |
+
#: counter-core.php:829
|
625 |
+
msgid "Visitors per Country"
|
626 |
+
msgstr "Vierailijat per maa"
|
627 |
+
|
628 |
+
# @ cpd
|
629 |
+
#: Copy of counter-options.php:552 counter-options.php:919
|
630 |
+
msgid "Debug mode"
|
631 |
+
msgstr "Debug-moodi"
|
632 |
+
|
633 |
+
# @ cpd
|
634 |
+
#: Copy of counter-options.php:554 counter-options.php:921
|
635 |
+
msgid "Show debug informations at the bottom of all pages."
|
636 |
+
msgstr "Näytä debug-tiedot kaikkien sivujen alalaidassa."
|
637 |
+
|
638 |
+
# @ cpd
|
639 |
+
#: userperspan.php:38
|
640 |
+
msgid "Start"
|
641 |
+
msgstr "Aloita"
|
642 |
+
|
643 |
+
# @ cpd
|
644 |
+
#: userperspan.php:40
|
645 |
+
msgid "End"
|
646 |
+
msgstr "Lopeta"
|
647 |
+
|
648 |
+
# @ cpd
|
649 |
+
#: userperspan.php:42
|
650 |
+
msgid "PostID"
|
651 |
+
msgstr "Artikkeli-ID"
|
652 |
+
|
653 |
+
# @ cpd
|
654 |
+
#: userperspan.php:50
|
655 |
+
msgid "no data found"
|
656 |
+
msgstr "tietoja ei löytynyt"
|
657 |
+
|
658 |
+
# @ cpd
|
659 |
+
#: Copy of counter-options.php:759 counter-options.php:613
|
660 |
+
msgid ""
|
661 |
+
"You can get the country data for all entries in database by checking the IP "
|
662 |
+
"adress against the GeoIP database. This can take a while!"
|
663 |
+
msgstr ""
|
664 |
+
"Voit saada maatiedot kaikista tietokannan merkinnoistä tarkistamalla IP-"
|
665 |
+
"osoitteet GeoIP:n tietokannasta. Tämä voi kestää hetken!"
|
666 |
+
|
667 |
+
# @ cpd
|
668 |
+
#: Copy of counter-options.php:355 counter-options.php:722
|
669 |
+
msgid "Counter"
|
670 |
+
msgstr "Laskuri"
|
671 |
+
|
672 |
+
# @ cpd
|
673 |
+
#: Copy of counter-options.php:479 counter-options.php:846
|
674 |
+
msgid "Local URLs"
|
675 |
+
msgstr "Paikalliset URL-osoitteet"
|
676 |
+
|
677 |
+
# @ cpd
|
678 |
+
#: Copy of counter-options.php:480 counter-options.php:847
|
679 |
+
msgid "Show local referrers too."
|
680 |
+
msgstr "Näytä myös paikalliset viittaavat sivustot."
|
681 |
+
|
682 |
+
# @ default
|
683 |
+
#: Copy of counter-options.php:487 counter-options.php:854
|
684 |
+
msgid "Posts"
|
685 |
+
msgstr "Artikkeleja"
|
686 |
+
|
687 |
+
# @ default
|
688 |
+
#: Copy of counter-options.php:487 counter-options.php:854
|
689 |
+
msgid "Pages"
|
690 |
+
msgstr "Sivuja"
|
691 |
+
|
692 |
+
# @ default
|
693 |
+
#: counter.php:1048
|
694 |
+
msgid "Category"
|
695 |
+
msgstr "Kategoria"
|
696 |
+
|
697 |
+
# @ default
|
698 |
+
#: counter.php:1051
|
699 |
+
msgid "Tag"
|
700 |
+
msgstr "Tagi"
|
701 |
+
|
702 |
+
# @ default
|
703 |
+
#: counter-core.php:780
|
704 |
+
msgid "License"
|
705 |
+
msgstr "Lisenssi"
|
706 |
+
|
707 |
+
# @ cpd
|
708 |
+
#: counter-core.php:824
|
709 |
+
msgid "Referrer"
|
710 |
+
msgstr "Viittaavat sivustot"
|
711 |
+
|
712 |
+
# @ default
|
713 |
+
#: counter.php:1328
|
714 |
+
msgid "Title"
|
715 |
+
msgstr "Otsikko"
|
716 |
+
|
717 |
+
# @ cpd
|
718 |
+
#: Copy of counter-options.php:396 counter-options.php:763
|
719 |
+
msgid ""
|
720 |
+
"Save and show clients and referrers.<br />Needs a lot of space in the "
|
721 |
+
"database but gives you more detailed informations of your visitors."
|
722 |
+
msgstr ""
|
723 |
+
"Tallenna ja näytä asiakkaat sekä viittaavat sivustot.<br />Tarvitsee paljon "
|
724 |
+
"tilaa tietokannasta, mutta antaa enemmän tarkempaa tietoa käyttäjistä."
|
725 |
+
|
726 |
+
# @ cpd
|
727 |
+
#: Copy of counter-options.php:393 counter-options.php:760
|
728 |
+
msgid "Clients and referrers"
|
729 |
+
msgstr "Asiakkaat ja viittaavat sivustot"
|
730 |
+
|
731 |
+
# @ cpd
|
732 |
+
#: counter.php:188 counter.php:1308
|
733 |
+
msgid "Reads last week"
|
734 |
+
msgstr "Luettuja viime viikolla"
|
735 |
+
|
736 |
+
# @ cpd
|
737 |
+
#: counter-core.php:815 counter.php:1309
|
738 |
+
msgid "Reads per month"
|
739 |
+
msgstr "Luettu per kuukausi"
|
740 |
+
|
741 |
+
# @ cpd
|
742 |
+
#: Copy of counter-options.php:471 counter-options.php:838
|
743 |
+
msgid "Referrers - Entries"
|
744 |
+
msgstr "Viittaavat sivustot - merkinnät"
|
745 |
+
|
746 |
+
# @ cpd
|
747 |
+
#: Copy of counter-options.php:472 counter-options.php:839
|
748 |
+
msgid "How many referrers do you want to see on dashboard page?"
|
749 |
+
msgstr "Kuinka monta viittaavaa sivustoa haluat näyttää ohjausnäkymän sivulla?"
|
750 |
+
|
751 |
+
# @ cpd
|
752 |
+
#: Copy of counter-options.php:475 counter-options.php:842
|
753 |
+
msgid "Referrers - Days"
|
754 |
+
msgstr "Viittaavat sivustot - päivää"
|
755 |
+
|
756 |
+
# @ cpd
|
757 |
+
#: counter.php:897
|
758 |
+
#, php-format
|
759 |
+
msgid "The %s referrers in last %s days:"
|
760 |
+
msgstr "%s viittaavaa sivustoa viimeisen %s päivän aikana:"
|
761 |
+
|
762 |
+
# @ cpd
|
763 |
+
#: counter-core.php:813
|
764 |
+
msgid "Visitors online"
|
765 |
+
msgstr "Vierailijat online-tilassa"
|
766 |
+
|
767 |
+
# @ cpd
|
768 |
+
#: Copy of counter-options.php:522 counter-options.php:889
|
769 |
+
msgid "Stylesheet"
|
770 |
+
msgstr "Tyylitiedosto"
|
771 |
+
|
772 |
+
# @ cpd
|
773 |
+
#: Copy of counter-options.php:525 counter-options.php:892
|
774 |
+
msgid "NO Stylesheet in Frontend"
|
775 |
+
msgstr "EI tyylitiedostoa julkisella sivustolla"
|
776 |
+
|
777 |
+
# @ cpd
|
778 |
+
#: Copy of counter-options.php:526 counter-options.php:893
|
779 |
+
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
780 |
+
msgstr "Älä lataa tyylitiedostoa \"counter.css\" julkisella sivustolla."
|
781 |
+
|
782 |
+
# @ cpd
|
783 |
+
#: Copy of counter-options.php:422 counter-options.php:789
|
784 |
+
msgid "Who can see it"
|
785 |
+
msgstr "Ketkä voivat nähdä sen"
|
786 |
+
|
787 |
+
# @ cpd
|
788 |
+
#: Copy of counter-options.php:431 counter-options.php:798
|
789 |
+
msgid "custom"
|
790 |
+
msgstr "omavalintainen"
|
791 |
+
|
792 |
+
# @ cpd
|
793 |
+
#: Copy of counter-options.php:433 counter-options.php:800
|
794 |
+
msgid "and higher are allowed to see the statistics page."
|
795 |
+
msgstr "ja korkeammille sallitaan tilastosivujen katsominen."
|
796 |
+
|
797 |
+
# @ cpd
|
798 |
+
#: Copy of counter-options.php:435 counter-options.php:802
|
799 |
+
#, php-format
|
800 |
+
msgid "Set the %s capability %s a user need:"
|
801 |
+
msgstr "Määritä %s oikeustaso, jonka %s käyttäjä tarvitsee:"
|
802 |
+
|
803 |
+
# @ cpd
|
804 |
+
#: counter-core.php:252
|
805 |
+
#, php-format
|
806 |
+
msgid "\"Count per Day\" updated to version %s."
|
807 |
+
msgstr "\"Count per Day\" päivitetty versioon %s."
|
808 |
+
|
809 |
+
# @ cpd
|
810 |
+
#: counter-core.php:1016
|
811 |
+
msgid "Backup failed! Cannot open file"
|
812 |
+
msgstr "Varmuuskopiointi epäonnistui! Tiedostoa ei voida avata"
|
813 |
+
|
814 |
+
# @ cpd
|
815 |
+
#: counter-core.php:1042
|
816 |
+
#, php-format
|
817 |
+
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
818 |
+
msgstr ""
|
819 |
+
"%s merkinnän varmuuskopiointi käynnissä. Jokainen piste sisältää %s "
|
820 |
+
"merkintää."
|
821 |
+
|
822 |
+
# @ cpd
|
823 |
+
#: counter-core.php:1133 counter-core.php:1141
|
824 |
+
#, php-format
|
825 |
+
msgid "Backup of counter table saved in %s."
|
826 |
+
msgstr "Varmuuskopio laskuritaulusta tallennettu %s."
|
827 |
+
|
828 |
+
# @ cpd
|
829 |
+
#: counter-core.php:1135 counter-core.php:1143
|
830 |
+
#, php-format
|
831 |
+
msgid "Backup of counter options and collection saved in %s."
|
832 |
+
msgstr "Varmuuskopio laskurivalinnoista ja -kokoelmasta tallennettu %s."
|
833 |
+
|
834 |
+
# @ cpd
|
835 |
+
#: Copy of counter-options.php:169
|
836 |
+
msgid "Collection in progress..."
|
837 |
+
msgstr "Tiedonkeräys meneillään..."
|
838 |
+
|
839 |
+
# @ cpd
|
840 |
+
#: Copy of counter-options.php:245 counter-options.php:263
|
841 |
+
msgid "Get Visitors per Post..."
|
842 |
+
msgstr "Hae vierailijat per artikkeli..."
|
843 |
+
|
844 |
+
# @ cpd
|
845 |
+
#: Copy of counter-options.php:266 counter-options.php:284
|
846 |
+
msgid "Delete old data..."
|
847 |
+
msgstr "Poista vanhat tiedot..."
|
848 |
+
|
849 |
+
# @ cpd
|
850 |
+
#: Copy of counter-options.php:290 counter-options.php:308
|
851 |
+
#, php-format
|
852 |
+
msgid ""
|
853 |
+
"Counter entries until %s collected and counter table %s optimized (size "
|
854 |
+
"before = %s > size after = %s)."
|
855 |
+
msgstr ""
|
856 |
+
"Laskurin merkintöjä %s saakka kerätty ja laskurin taulu %s optimoitu (koko "
|
857 |
+
"ennen = %s > koko jälkeen = %s)."
|
858 |
+
|
859 |
+
# @ cpd
|
860 |
+
#: Copy of counter-options.php:299 counter-options.php:317
|
861 |
+
msgid "Installation of \"Count per Day\" checked"
|
862 |
+
msgstr "\"Count per day\" asennus valittu"
|
863 |
+
|
864 |
+
# @ default
|
865 |
+
#: Copy of counter-options.php:347 counter-options.php:564
|
866 |
+
#: counter-options.php:385 counter-options.php:713
|
867 |
+
msgid "Tools"
|
868 |
+
msgstr "Työkalut"
|
869 |
+
|
870 |
+
# @ cpd
|
871 |
+
#: Copy of counter-options.php:398 counter-options.php:765
|
872 |
+
msgid "Save URL only, no query string."
|
873 |
+
msgstr "Tallenna vain URL-osoite, ei kyselytietuetta."
|
874 |
+
|
875 |
+
# @ cpd
|
876 |
+
#: Copy of counter-options.php:533 counter-options.php:637
|
877 |
+
#: counter-options.php:461 counter-options.php:900
|
878 |
+
msgid "Backup"
|
879 |
+
msgstr "Varmuuskopioi"
|
880 |
+
|
881 |
+
# @ cpd
|
882 |
+
#: Copy of counter-options.php:536 counter-options.php:903
|
883 |
+
msgid "Entries per pass"
|
884 |
+
msgstr "Merkintöjä hyväksytään"
|
885 |
+
|
886 |
+
# @ cpd
|
887 |
+
#: Copy of counter-options.php:539 counter-options.php:906
|
888 |
+
msgid "How many entries should be saved per pass? Default: 10000"
|
889 |
+
msgstr "Kuinka monta merkintää tallennetaan? Oletus: 10000"
|
890 |
+
|
891 |
+
# @ cpd
|
892 |
+
#: Copy of counter-options.php:544 counter-options.php:911
|
893 |
+
msgid ""
|
894 |
+
"If your PHP memory limit less then 50 MB and you get a white page or error "
|
895 |
+
"messages try a smaller value."
|
896 |
+
msgstr ""
|
897 |
+
"Mikäli PHP-muistiraja on vähemmän kuin 50 MB ja näet valkoisen sivun tai "
|
898 |
+
"virheilmoituksen, yritä pienemmällä arvolla."
|
899 |
+
|
900 |
+
# @ cpd
|
901 |
+
#: Copy of counter-options.php:641 counter-options.php:465
|
902 |
+
#, php-format
|
903 |
+
msgid ""
|
904 |
+
"Create a backup of the counter table %s in your wp-content directory (if "
|
905 |
+
"writable)."
|
906 |
+
msgstr ""
|
907 |
+
"Luo varmuuskopio laskuritaulusta %s wp-content -kansioon (mikäli "
|
908 |
+
"kirjoitettavissa)."
|
909 |
+
|
910 |
+
# @ cpd
|
911 |
+
#: Copy of counter-options.php:648 counter-options.php:472
|
912 |
+
msgid "Backup the database"
|
913 |
+
msgstr "Varmuuskopioi tietokanta"
|
914 |
+
|
915 |
+
# @ cpd
|
916 |
+
#: Copy of counter-options.php:703 counter-options.php:735
|
917 |
+
#: counter-options.php:565 counter-options.php:597
|
918 |
+
msgid "Collect old data"
|
919 |
+
msgstr "Kerää vanhat tiedot"
|
920 |
+
|
921 |
+
# @ cpd
|
922 |
+
#: Copy of counter-options.php:708 counter-options.php:570
|
923 |
+
#, php-format
|
924 |
+
msgid "Current size of your counter table %s is %s."
|
925 |
+
msgstr "Nykyinen laskentataulukon %s koko on %s."
|
926 |
+
|
927 |
+
# @ cpd
|
928 |
+
#: Copy of counter-options.php:710 counter-options.php:572
|
929 |
+
msgid ""
|
930 |
+
"You can collect old data and clean up the counter table.<br/>Reads and "
|
931 |
+
"visitors will be saved per month, per country and per post.<br/>Clients and "
|
932 |
+
"referrers will deleted."
|
933 |
+
msgstr ""
|
934 |
+
"Voit kerätä vanhat tiedot ja puhdistaa laskuritaulun.<br/>Luetut ja "
|
935 |
+
"vierailijat tullaan tallentamaan kuukausittain, maittain ja artikkeleittain."
|
936 |
+
"<br/>Asiakkaat ja viittaavat sivustot tulaan poistamaan."
|
937 |
+
|
938 |
+
# @ cpd
|
939 |
+
#: Copy of counter-options.php:715 counter-options.php:577
|
940 |
+
#, php-format
|
941 |
+
msgid "Currently your collection contains data until %s."
|
942 |
+
msgstr "Parhaillaan kokoelmasi sisältää tietoja %s asti."
|
943 |
+
|
944 |
+
# @ cpd
|
945 |
+
#: Copy of counter-options.php:719 counter-options.php:581
|
946 |
+
msgid "Normally new data will be added to the collection."
|
947 |
+
msgstr "Uudet tiedot tullaat tavallisesti lisäämään kokoelmaan."
|
948 |
+
|
949 |
+
# @ cpd
|
950 |
+
#: Copy of counter-options.php:725 counter-options.php:587
|
951 |
+
msgid ""
|
952 |
+
"Delete old collection and create a new one which contains only the data "
|
953 |
+
"currently in counter table."
|
954 |
+
msgstr ""
|
955 |
+
"Poista vanha kokoelma ja luo uusi joka sisältää ainoastaan ne tiedot, jotka "
|
956 |
+
"ovat parhaillaan laskuritaulussa."
|
957 |
+
|
958 |
+
# @ cpd
|
959 |
+
#: Copy of counter-options.php:726 counter-options.php:588
|
960 |
+
#, php-format
|
961 |
+
msgid "All collected data until %s will deleted."
|
962 |
+
msgstr "Kaikki kerätyt tiedot kunnes %s poistetaan."
|
963 |
+
|
964 |
+
# @ cpd
|
965 |
+
#: Copy of counter-options.php:731 counter-options.php:593
|
966 |
+
#, php-format
|
967 |
+
msgid "Keep entries of last %s full months + current month in counter table."
|
968 |
+
msgstr ""
|
969 |
+
"Säilytä merkinnät viimiseltä %s kokonaiselta kuukaudelta + kuluva kuukausi "
|
970 |
+
"laskuritaulussa."
|
971 |
+
|
972 |
+
# @ cpd
|
973 |
+
#: Copy of counter-options.php:790 counter-options.php:644
|
974 |
+
msgid "ReActivation"
|
975 |
+
msgstr "Uudelleen aktivointi"
|
976 |
+
|
977 |
+
# @ cpd
|
978 |
+
#: Copy of counter-options.php:793 counter-options.php:647
|
979 |
+
msgid ""
|
980 |
+
"Here you can start the installation functions manually.<br/>Same as "
|
981 |
+
"deactivate and reactivate the plugin."
|
982 |
+
msgstr ""
|
983 |
+
"Täällä voit aloittaa asennustoiminnot manuaalisesti.<br/>Sama kuin lisäosan "
|
984 |
+
"deaktivointi ja uudelleen aktivointi."
|
985 |
+
|
986 |
+
# @ cpd
|
987 |
+
#: Copy of counter-options.php:798 counter-options.php:652
|
988 |
+
msgid "ReActivate the plugin"
|
989 |
+
msgstr "Aktivoi lisäosa uudelleen"
|
990 |
+
|
991 |
+
# @ cpd
|
992 |
+
#: counter.php:195 counter.php:951
|
993 |
+
msgid "Visitors"
|
994 |
+
msgstr "Vierailijaa"
|
995 |
+
|
996 |
+
# @ cpd
|
997 |
+
#: counter.php:198 counter.php:199
|
998 |
+
msgid "Most visited day"
|
999 |
+
msgstr "Eniten vierailtu päivä"
|
1000 |
+
|
1001 |
+
# @ cpd
|
1002 |
+
#: counter.php:1347
|
1003 |
+
msgid "drag and drop to sort"
|
1004 |
+
msgstr "raahaa ja pudota lajitellaksesi"
|
1005 |
+
|
1006 |
+
# @ cpd
|
1007 |
+
#: counter-core.php:1129
|
1008 |
+
msgid "Your can download the backup files here and now."
|
1009 |
+
msgstr "Voit ladata varmuuskopion täällä ja nyt."
|
1010 |
+
|
1011 |
+
# @ cpd
|
1012 |
+
#: Copy of counter-options.php:644 counter-options.php:468
|
1013 |
+
msgid "Download only"
|
1014 |
+
msgstr "Vain lataa"
|
1015 |
+
|
1016 |
+
# @ cpd
|
1017 |
+
#: Copy of counter-options.php:673 counter-options.php:519
|
1018 |
+
msgid "Delete"
|
1019 |
+
msgstr "Poista"
|
1020 |
+
|
1021 |
+
# @ cpd
|
1022 |
+
#: Copy of counter-options.php:674 counter-options.php:520
|
1023 |
+
#, php-format
|
1024 |
+
msgid "Delete the backup file %s ?"
|
1025 |
+
msgstr "Poista varmuuskopio %s ?"
|
1026 |
+
|
1027 |
+
# @ default
|
1028 |
+
#: counter-core.php:819 counter-options.php:838 counter-options.php:842
|
1029 |
+
msgid "Search strings"
|
1030 |
+
msgstr "Hakulauseet"
|
1031 |
+
|
1032 |
+
# @ cpd
|
1033 |
+
#: counter-core.php:1199
|
1034 |
+
msgid "Error while reading backup file!"
|
1035 |
+
msgstr "Virhe luettaessa varmuuskopiota!"
|
1036 |
+
|
1037 |
+
# @ cpd
|
1038 |
+
#: counter-core.php:1203
|
1039 |
+
#, php-format
|
1040 |
+
msgid "The backup was added to counter table %s."
|
1041 |
+
msgstr "Varmuuskopio lisättiin laskentataulukkoon %s."
|
1042 |
+
|
1043 |
+
# @ cpd
|
1044 |
+
#: counter-core.php:1205
|
1045 |
+
#, php-format
|
1046 |
+
msgid "The counter table %s was restored from backup."
|
1047 |
+
msgstr "Die Zählertabelle %s wurde wiederhergestellt."
|
1048 |
+
|
1049 |
+
# @ cpd
|
1050 |
+
#: counter-core.php:1222
|
1051 |
+
msgid "Options restored from backup."
|
1052 |
+
msgstr "Asetukset on palautettu varmuuskopiosta."
|
1053 |
+
|
1054 |
+
# @ cpd
|
1055 |
+
#: counter-options.php:501
|
1056 |
+
msgid "Settings and collections"
|
1057 |
+
msgstr "Asetukset ja kokoelmat"
|
1058 |
+
|
1059 |
+
# @ cpd
|
1060 |
+
#: counter-options.php:506
|
1061 |
+
#, php-format
|
1062 |
+
msgid "Counter table %s"
|
1063 |
+
msgstr "Laskentataulukko %s"
|
1064 |
+
|
1065 |
+
# @ cpd
|
1066 |
+
#: counter-options.php:513
|
1067 |
+
#, php-format
|
1068 |
+
msgid "Add data from the backup file %s to existing counter table?"
|
1069 |
+
msgstr "Lisää tiedot varmuuskopiosta %s nykyiseen laskentataulukkoon?"
|
1070 |
+
|
1071 |
+
# @ cpd
|
1072 |
+
#: counter-options.php:517
|
1073 |
+
#, php-format
|
1074 |
+
msgid "Restore data from the backup file %s ?"
|
1075 |
+
msgstr "Palauta tiedot varmuuskopiosta %s ?"
|
1076 |
+
|
1077 |
+
# @ default
|
1078 |
+
#: counter-options.php:517
|
1079 |
+
msgid "Restore"
|
1080 |
+
msgstr "Palauta"
|
1081 |
+
|
1082 |
+
# @ cpd
|
1083 |
+
#: counter-options.php:526
|
1084 |
+
msgid "add backup to current counter table"
|
1085 |
+
msgstr "lisää varmuuskopio nykyiseen laskentataulukkoon"
|
1086 |
+
|
1087 |
+
# @ cpd
|
1088 |
+
#: counter-options.php:527
|
1089 |
+
msgid "replace current counter table with with backup"
|
1090 |
+
msgstr "korvaa nykyinen laskentataulukko varmuuskopiolla"
|
1091 |
+
|
1092 |
+
# @ cpd
|
1093 |
+
#: counter-options.php:528
|
1094 |
+
msgid "delete backup file"
|
1095 |
+
msgstr "poista varmuuskopio"
|
1096 |
+
|
1097 |
+
# @ cpd
|
1098 |
+
#: counter.php:1094
|
1099 |
+
#, php-format
|
1100 |
+
msgid "The %s most searched strings:"
|
1101 |
+
msgstr "%s eniten käytettyä hakulausetta:"
|
1102 |
+
|
1103 |
+
# @ cpd
|
1104 |
+
#: counter.php:1103
|
1105 |
+
#, php-format
|
1106 |
+
msgid "The search strings of the last %s days:"
|
1107 |
+
msgstr "Hakulauseet viimeiseltä %s päivältä:"
|
1108 |
+
|
1109 |
+
# @ cpd
|
1110 |
+
#: counter-options.php:332
|
1111 |
+
msgid "Old search strings deleted"
|
1112 |
+
msgstr "Vanhat hakulauseet on poistettu"
|
1113 |
+
|
1114 |
+
# @ cpd
|
1115 |
+
#: counter-options.php:554
|
1116 |
+
#, php-format
|
1117 |
+
msgid "Delete search strings older than %s days."
|
1118 |
+
msgstr "Poista hakulauseet, jotka ovat vanhempia kuin %s päivää."
|
1119 |
+
|
1120 |
+
# @ cpd
|
1121 |
+
#: counter-options.php:556
|
1122 |
+
msgid "Delete search strings"
|
1123 |
+
msgstr "Poista hakulauseet"
|
1124 |
+
|
1125 |
+
# @ cpd
|
1126 |
+
#: counter-options.php:513
|
1127 |
+
msgid "Add"
|
1128 |
+
msgstr "Lisää"
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Tom Braider
|
|
3 |
Tags: counter, count, posts, visits, reads, dashboard, widget, shortcode
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.6
|
6 |
-
Stable tag: 3.2.
|
7 |
License: Postcardware :)
|
8 |
Donate link: http://www.tomsdimension.de/postcards
|
9 |
|
@@ -27,8 +27,10 @@ Visit Counter, shows reads and visitors per page, visitors today, yesterday, las
|
|
27 |
|
28 |
- up to date translations:
|
29 |
- Bulgarian - joro - http://www.joro711.com
|
|
|
30 |
- German - Tom - http://www.tomsdimension.de
|
31 |
- Japanese - Juno Hayami - http://juno.main.jp/blog/
|
|
|
32 |
- Portuguese - Beto Ribeiro - http://www.sevenarts.com.br
|
33 |
- Russian - Ilya Pshenichny - http://iluhis.com
|
34 |
- Serbian - Diana - http://wpdiscounts.com
|
@@ -39,7 +41,6 @@ Visit Counter, shows reads and visitors per page, visitors today, yesterday, las
|
|
39 |
- Dansk - Jonas Thomsen - http://jonasthomsen.com
|
40 |
- Dutch NL - Rene - http://wpwebshop.com
|
41 |
- Espanol - Juan Carlos del Río -
|
42 |
-
- Finnish - Jani Alha - http://www.wysiwyg.fi
|
43 |
- France - Bjork - http://www.habbzone.fr
|
44 |
- Greek - Essetai_Imar - http://www.elliniki-grothia.com
|
45 |
- Hindi - Love Chandel - http://outshinesolutions.com
|
@@ -306,6 +307,11 @@ show( $before, $after, $show, $count, $page )'
|
|
306 |
|
307 |
== Changelog ==
|
308 |
|
|
|
|
|
|
|
|
|
|
|
309 |
= 3.2.8 =
|
310 |
+ Bugfix: inet_pton for windows php < 5.3
|
311 |
+ Bugfix: GeoIP support for online world map
|
3 |
Tags: counter, count, posts, visits, reads, dashboard, widget, shortcode
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.6
|
6 |
+
Stable tag: 3.2.9
|
7 |
License: Postcardware :)
|
8 |
Donate link: http://www.tomsdimension.de/postcards
|
9 |
|
27 |
|
28 |
- up to date translations:
|
29 |
- Bulgarian - joro - http://www.joro711.com
|
30 |
+
- Finnish - Jani Alha - http://www.wysiwyg.fi
|
31 |
- German - Tom - http://www.tomsdimension.de
|
32 |
- Japanese - Juno Hayami - http://juno.main.jp/blog/
|
33 |
+
- Persian - Mahmoud Zooroofchi - www.zooroofchi.ir
|
34 |
- Portuguese - Beto Ribeiro - http://www.sevenarts.com.br
|
35 |
- Russian - Ilya Pshenichny - http://iluhis.com
|
36 |
- Serbian - Diana - http://wpdiscounts.com
|
41 |
- Dansk - Jonas Thomsen - http://jonasthomsen.com
|
42 |
- Dutch NL - Rene - http://wpwebshop.com
|
43 |
- Espanol - Juan Carlos del Río -
|
|
|
44 |
- France - Bjork - http://www.habbzone.fr
|
45 |
- Greek - Essetai_Imar - http://www.elliniki-grothia.com
|
46 |
- Hindi - Love Chandel - http://outshinesolutions.com
|
307 |
|
308 |
== Changelog ==
|
309 |
|
310 |
+
= 3.2.9 =
|
311 |
+
+ Bugfix: PHP without IPv6 support
|
312 |
+
+ New Language: Persian, thanks to Mahmoud Zooroofchi
|
313 |
+
+ Hint: use "update old counter data" to repair the unknown countries
|
314 |
+
|
315 |
= 3.2.8 =
|
316 |
+ Bugfix: inet_pton for windows php < 5.3
|
317 |
+ Bugfix: GeoIP support for online world map
|