Count per Day - Version 3.2.9

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 Icon 128x128 Count per Day
Version 3.2.9
Comparing to
See all releases

Code changes from version 3.2.8 to 3.2.9

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