Version Description
- Bugfix: massbot delete error
- Bugfix: search words array sometimes corrupt
- Bugfix: add collected data to reads per post, thanks to http://is.gd/VWNyLq http://yumeneko.pmfan.jp
- Language update: Japanese, thanks to Juno Hayami
- Language update: Portuguese, thanks to Beto Ribeiro
- Language update: Russian, thanks to Ilya Pshenichny
- Language update: Bulgarian, thanks to joro
Download this release
Release Info
Developer | Tom Braider |
Plugin | ![]() |
Version | 3.2.1 |
Comparing to | |
See all releases |
Code changes from version 3.2 to 3.2.1
- counter-core.php +24 -2
- counter-options.php +1 -1
- counter.php +18 -17
- locale/cpd-bg_BG.mo +0 -0
- locale/cpd-bg_BG.po +240 -241
- locale/cpd-ja.mo +0 -0
- locale/cpd-ja.po +648 -525
- locale/cpd-pt_BR.mo +0 -0
- locale/cpd-pt_BR.po +340 -217
- locale/cpd-pt_PT.mo +0 -0
- locale/cpd-pt_PT.po +340 -217
- locale/cpd-ru_RU.mo +0 -0
- locale/cpd-ru_RU.po +1095 -972
- readme.txt +16 -6
counter-core.php
CHANGED
@@ -186,6 +186,8 @@ function startSession()
|
|
186 |
function mysqlQuery( $kind = '', $sql, $func = '' )
|
187 |
{
|
188 |
global $wpdb;
|
|
|
|
|
189 |
$t = microtime(true);
|
190 |
$con = $wpdb->dbh;
|
191 |
$preparedSql = $wpdb->prepare($sql);
|
@@ -667,7 +669,12 @@ function updateOptions()
|
|
667 |
*/
|
668 |
function dashboardWidgetSetup()
|
669 |
{
|
670 |
-
|
|
|
|
|
|
|
|
|
|
|
671 |
wp_add_dashboard_widget( 'cpdDashboardWidget', 'Count per Day', array(&$this,'dashboardWidget') );
|
672 |
}
|
673 |
|
@@ -1293,6 +1300,21 @@ function getCollectedData( $month ) // YYYYMM
|
|
1293 |
}
|
1294 |
}
|
1295 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1296 |
/* update if new count is bigger than collected */
|
1297 |
|
1298 |
function updateCollectedDayMostReads( $new )
|
@@ -1415,7 +1437,7 @@ function getSearchString()
|
|
1415 |
$search = str_ireplace(array('/search?q=','/images?q='), '', $query[$key]);
|
1416 |
if (empty($search) || is_numeric($search)) // non WordPress postID
|
1417 |
$search = '';
|
1418 |
-
return $search;
|
1419 |
}
|
1420 |
|
1421 |
|
186 |
function mysqlQuery( $kind = '', $sql, $func = '' )
|
187 |
{
|
188 |
global $wpdb;
|
189 |
+
if (empty($sql))
|
190 |
+
return;
|
191 |
$t = microtime(true);
|
192 |
$con = $wpdb->dbh;
|
193 |
$preparedSql = $wpdb->prepare($sql);
|
669 |
*/
|
670 |
function dashboardWidgetSetup()
|
671 |
{
|
672 |
+
$can_see = str_replace(
|
673 |
+
// administrator, editor, author, contributor, subscriber
|
674 |
+
array(10, 7, 2, 1, 0),
|
675 |
+
array('manage_options', 'moderate_comments', 'edit_published_posts', 'edit_posts', 'read'),
|
676 |
+
$this->options['show_in_lists']);
|
677 |
+
if ( current_user_can($can_see) )
|
678 |
wp_add_dashboard_widget( 'cpdDashboardWidget', 'Count per Day', array(&$this,'dashboardWidget') );
|
679 |
}
|
680 |
|
1300 |
}
|
1301 |
}
|
1302 |
|
1303 |
+
/**
|
1304 |
+
* gets reads per post from collected data
|
1305 |
+
*
|
1306 |
+
* @param int $postID post ID
|
1307 |
+
* @return int reads of the post
|
1308 |
+
*/
|
1309 |
+
function getCollectedPostReads( $postID = -1 )
|
1310 |
+
{
|
1311 |
+
if ($postID < 0)
|
1312 |
+
return 0;
|
1313 |
+
$postID = (int) $postID;
|
1314 |
+
$collected = (array) get_option('count_per_day_posts');
|
1315 |
+
return (int) (isset($collected) && isset($collected['p'.$postID])) ? $collected['p'.$postID] : 0;
|
1316 |
+
}
|
1317 |
+
|
1318 |
/* update if new count is bigger than collected */
|
1319 |
|
1320 |
function updateCollectedDayMostReads( $new )
|
1437 |
$search = str_ireplace(array('/search?q=','/images?q='), '', $query[$key]);
|
1438 |
if (empty($search) || is_numeric($search)) // non WordPress postID
|
1439 |
$search = '';
|
1440 |
+
return trim($search);
|
1441 |
}
|
1442 |
|
1443 |
|
counter-options.php
CHANGED
@@ -99,7 +99,7 @@ if(!empty($_POST['do']))
|
|
99 |
$sum = 0;
|
100 |
foreach ($bots as $r)
|
101 |
{
|
102 |
-
$count_per_day->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE ip = $
|
103 |
$sum += $r->posts;
|
104 |
}
|
105 |
if ( $sum )
|
99 |
$sum = 0;
|
100 |
foreach ($bots as $r)
|
101 |
{
|
102 |
+
$count_per_day->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE ip = $count_per_day->aton('$r->ip') AND date = '$r->date'", 'deleteMassbots '.__LINE__);
|
103 |
$sum += $r->posts;
|
104 |
}
|
105 |
if ( $sum )
|
counter.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
Plugin Name: Count Per Day
|
4 |
Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
|
5 |
Description: Counter, shows reads and visitors per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
|
6 |
-
Version: 3.2
|
7 |
License: Postcardware
|
8 |
Author: Tom Braider
|
9 |
Author URI: http://www.tomsdimension.de
|
10 |
*/
|
11 |
|
12 |
$cpd_dir_name = 'count-per-day';
|
13 |
-
$cpd_version = '3.2';
|
14 |
|
15 |
$cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
|
16 |
include_once($cpd_path.'counter-core.php');
|
@@ -49,13 +49,15 @@ function show( $before='', $after=' reads', $show = true, $count = true, $page =
|
|
49 |
$page = get_the_ID();
|
50 |
else
|
51 |
$page = (int) $page;
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
|
|
|
|
59 |
}
|
60 |
|
61 |
/**
|
@@ -137,7 +139,7 @@ function count( $x, $page = 'x' )
|
|
137 |
VALUES (%s, $this->aton(%s), %s, %s, %s)", $page, $userip, $client, $date, $referer), 'count insert '.__LINE__);
|
138 |
}
|
139 |
// online counter
|
140 |
-
$oc = get_option('count_per_day_online', array());
|
141 |
$oc[$userip] = array( time(), $page );
|
142 |
update_option('count_per_day_online', $oc);
|
143 |
}
|
@@ -146,8 +148,8 @@ function count( $x, $page = 'x' )
|
|
146 |
$s = $this->getSearchString();
|
147 |
if ($s)
|
148 |
{
|
149 |
-
$search = get_option('count_per_day_search'
|
150 |
-
if (isset($search[$date]))
|
151 |
{
|
152 |
if (!in_array($s, $search[$date]))
|
153 |
$search[$date][] = $s;
|
@@ -164,7 +166,7 @@ function count( $x, $page = 'x' )
|
|
164 |
*/
|
165 |
function deleteOnlineCounter()
|
166 |
{
|
167 |
-
$oc = get_option('count_per_day_online', array());
|
168 |
foreach ($oc as $k => $v)
|
169 |
if ($v[0] < time() - $this->options['onlinetime'])
|
170 |
unset($oc[$k]);
|
@@ -959,8 +961,7 @@ function getUserPer_SQL( $sql, $name = '', $frontend = false, $limit = 0 )
|
|
959 |
$m = $this->mysqlQuery('rows', $sql, $name.__LINE__);
|
960 |
if (!$m)
|
961 |
return;
|
962 |
-
|
963 |
-
|
964 |
if ( strpos($name, 'getUserPerPost') !== false )
|
965 |
{
|
966 |
// get collection
|
@@ -1063,8 +1064,8 @@ function getUserPer_SQL( $sql, $name = '', $frontend = false, $limit = 0 )
|
|
1063 |
*/
|
1064 |
function getSearches( $limit = 0, $days = 0, $return = false )
|
1065 |
{
|
1066 |
-
$search = get_option('count_per_day_search');
|
1067 |
-
if (
|
1068 |
return;
|
1069 |
|
1070 |
if ( $limit == 0 )
|
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.1
|
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.1';
|
14 |
|
15 |
$cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
|
16 |
include_once($cpd_path.'counter-core.php');
|
49 |
$page = get_the_ID();
|
50 |
else
|
51 |
$page = (int) $page;
|
52 |
+
|
53 |
+
// get count from collection
|
54 |
+
$c = $this->getCollectedPostReads($page);
|
55 |
+
// add current data
|
56 |
+
$c += $this->mysqlQuery('var', $wpdb->prepare("SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE page='$page'"), 'show '.__LINE__);
|
57 |
+
if ($show)
|
58 |
+
echo $before.$c.$after;
|
59 |
+
else
|
60 |
+
return $c;
|
61 |
}
|
62 |
|
63 |
/**
|
139 |
VALUES (%s, $this->aton(%s), %s, %s, %s)", $page, $userip, $client, $date, $referer), 'count insert '.__LINE__);
|
140 |
}
|
141 |
// online counter
|
142 |
+
$oc = (array) get_option('count_per_day_online', array());
|
143 |
$oc[$userip] = array( time(), $page );
|
144 |
update_option('count_per_day_online', $oc);
|
145 |
}
|
148 |
$s = $this->getSearchString();
|
149 |
if ($s)
|
150 |
{
|
151 |
+
$search = (array) get_option('count_per_day_search');
|
152 |
+
if (isset($search[$date]) && is_array($search[$date]))
|
153 |
{
|
154 |
if (!in_array($s, $search[$date]))
|
155 |
$search[$date][] = $s;
|
166 |
*/
|
167 |
function deleteOnlineCounter()
|
168 |
{
|
169 |
+
$oc = (array) get_option('count_per_day_online', array());
|
170 |
foreach ($oc as $k => $v)
|
171 |
if ($v[0] < time() - $this->options['onlinetime'])
|
172 |
unset($oc[$k]);
|
961 |
$m = $this->mysqlQuery('rows', $sql, $name.__LINE__);
|
962 |
if (!$m)
|
963 |
return;
|
964 |
+
|
|
|
965 |
if ( strpos($name, 'getUserPerPost') !== false )
|
966 |
{
|
967 |
// get collection
|
1064 |
*/
|
1065 |
function getSearches( $limit = 0, $days = 0, $return = false )
|
1066 |
{
|
1067 |
+
$search = (array) get_option('count_per_day_search');
|
1068 |
+
if (empty($search))
|
1069 |
return;
|
1070 |
|
1071 |
if ( $limit == 0 )
|
locale/cpd-bg_BG.mo
CHANGED
Binary file
|
locale/cpd-bg_BG.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Count Per Day v2.15\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -13,960 +13,959 @@ msgstr ""
|
|
13 |
"X-Poedit-Language: Bulgarian\n"
|
14 |
"X-Poedit-Country: BULGARIA\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
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
-
"X-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: counter-options.php:49
|
23 |
#@ cpd
|
|
|
24 |
msgid "Options updated"
|
25 |
msgstr "Настройките са обновени"
|
26 |
|
|
|
27 |
#: counter-options.php:60
|
28 |
#, php-format
|
29 |
-
#@ cpd
|
30 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
31 |
msgstr "Държавите са обновени. <b>%s</b> вписванията %s без тези държави"
|
32 |
|
33 |
-
#: counter-options.php:65
|
34 |
#@ cpd
|
|
|
35 |
msgid "update next"
|
36 |
msgstr "следващо обновяване"
|
37 |
|
|
|
38 |
#: counter-options.php:102
|
39 |
#, php-format
|
40 |
-
#@ cpd
|
41 |
msgid "Mass Bots cleaned. %s counts deleted."
|
42 |
-
msgstr "
|
43 |
|
|
|
44 |
#: counter-options.php:112
|
45 |
#, php-format
|
46 |
-
#@ cpd
|
47 |
msgid "Database cleaned. %s rows deleted."
|
48 |
-
msgstr "Базата-данни е изчистена. %s редовете са
|
49 |
|
50 |
-
#: counter-options.php:122
|
51 |
#@ cpd
|
|
|
52 |
msgid "Counter reseted."
|
53 |
msgstr "Броячът е нулиран."
|
54 |
|
|
|
55 |
#: counter-options.php:127
|
56 |
#: counter-options.php:810
|
57 |
-
#@ cpd
|
58 |
msgid "UNINSTALL Count per Day"
|
59 |
msgstr "Деинсталирай Count per Day"
|
60 |
|
|
|
61 |
#: counter-options.php:132
|
62 |
#: counter-options.php:133
|
63 |
#: counter-options.php:134
|
64 |
#, php-format
|
65 |
-
#@ cpd
|
66 |
msgid "Table %s deleted"
|
67 |
-
msgstr "Таблицата %s
|
68 |
|
69 |
-
#: counter-options.php:135
|
70 |
#@ cpd
|
|
|
71 |
msgid "Options deleted"
|
72 |
-
msgstr "Настройките са
|
73 |
|
|
|
74 |
#: counter-options.php:316
|
75 |
#: counter-options.php:796
|
76 |
-
#@ cpd
|
77 |
msgid "Uninstall"
|
78 |
msgstr "Деинсталиране"
|
79 |
|
80 |
-
#: counter-options.php:317
|
81 |
#@ cpd
|
|
|
82 |
msgid "Click here"
|
83 |
msgstr "Натиснете тук"
|
84 |
|
85 |
-
#: counter-options.php:317
|
86 |
#@ cpd
|
|
|
87 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
88 |
msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
|
89 |
|
90 |
-
#: counter-options.php:351
|
91 |
#@ cpd
|
|
|
92 |
msgid "Counter"
|
93 |
msgstr "Брояч"
|
94 |
|
95 |
-
#: counter-options.php:355
|
96 |
#@ cpd
|
|
|
97 |
msgid "Online time"
|
98 |
msgstr "Време онлайн"
|
99 |
|
100 |
-
#: counter-options.php:356
|
101 |
#@ cpd
|
|
|
102 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
103 |
msgstr "Време онлайн"
|
104 |
|
105 |
-
#: counter-options.php:359
|
106 |
#@ cpd
|
|
|
107 |
msgid "Logged on Users"
|
108 |
msgstr "Включени потребители"
|
109 |
|
110 |
-
#: counter-options.php:361
|
111 |
#@ cpd
|
|
|
112 |
msgid "count too"
|
113 |
msgstr "преброявай също"
|
114 |
|
115 |
-
#: counter-options.php:362
|
116 |
#@ cpd
|
|
|
117 |
msgid "until User Level"
|
118 |
msgstr "до нивото на потребителя"
|
119 |
|
120 |
-
#: counter-options.php:373
|
121 |
#@ cpd
|
|
|
122 |
msgid "Auto counter"
|
123 |
msgstr "Автоматичен брояч"
|
124 |
|
125 |
-
#: counter-options.php:374
|
126 |
#@ cpd
|
|
|
127 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
128 |
msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
|
129 |
|
130 |
-
#: counter-options.php:377
|
131 |
#@ cpd
|
|
|
132 |
msgid "Bots to ignore"
|
133 |
msgstr "Игнорирай тези Ботове"
|
134 |
|
135 |
-
#: counter-options.php:381
|
136 |
#@ cpd
|
|
|
137 |
msgid "Anonymous IP"
|
138 |
msgstr "Анонимно IP"
|
139 |
|
140 |
-
#: counter-options.php:385
|
141 |
#@ cpd
|
|
|
142 |
msgid "Cache"
|
143 |
msgstr "Кеш"
|
144 |
|
145 |
-
#: counter-options.php:386
|
146 |
#@ cpd
|
|
|
147 |
msgid "I use a cache plugin. Count these visits with ajax."
|
148 |
msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
|
149 |
|
150 |
-
#: counter-options.php:389
|
151 |
#@ cpd
|
|
|
152 |
msgid "Clients and referrers"
|
153 |
msgstr "Потребители и препращащи сайтове"
|
154 |
|
155 |
-
#: counter-options.php:392
|
156 |
#@ cpd
|
|
|
157 |
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."
|
158 |
msgstr "Запази и покажи потребители и препращащи сайтове.<br />Нужда от повече място в базата-данни, но това е нужно за повече информация относно Вашите потребители."
|
159 |
|
|
|
160 |
#: counter-core.php:639
|
161 |
#: counter-options.php:392
|
162 |
#: counter.php:159
|
163 |
#: counter.php:875
|
164 |
-
#@ cpd
|
165 |
msgid "Reads"
|
166 |
msgstr "Прочетени"
|
167 |
|
168 |
-
#: counter-options.php:403
|
169 |
#@ default
|
|
|
170 |
msgid "Dashboard"
|
171 |
msgstr "Табло"
|
172 |
|
|
|
173 |
#: counter-core.php:727
|
174 |
#: counter-options.php:438
|
175 |
-
#@ cpd
|
176 |
msgid "Visitors per post"
|
177 |
msgstr "Посетители за публикация"
|
178 |
|
|
|
179 |
#: counter-options.php:439
|
180 |
#: counter-options.php:443
|
181 |
-
#@ cpd
|
182 |
msgid "How many posts do you want to see on dashboard page?"
|
183 |
msgstr "Колко публикации искате се покажат на таблото?"
|
184 |
|
185 |
-
#: counter-options.php:442
|
186 |
#@ cpd
|
|
|
187 |
msgid "Latest Counts - Posts"
|
188 |
msgstr "Последни преброявания - Публикации"
|
189 |
|
190 |
-
#: counter-options.php:446
|
191 |
#@ cpd
|
|
|
192 |
msgid "Latest Counts - Days"
|
193 |
msgstr "Последни преброявания - Дни"
|
194 |
|
|
|
195 |
#: counter-options.php:447
|
196 |
#: counter-options.php:451
|
197 |
#: counter-options.php:473
|
198 |
-
#@ cpd
|
199 |
msgid "How many days do you want look back?"
|
200 |
msgstr "Колко дни искате да бъдат показани?"
|
201 |
|
202 |
-
#: counter-options.php:450
|
203 |
#@ cpd
|
|
|
204 |
msgid "Chart - Days"
|
205 |
msgstr "Графика - Дни"
|
206 |
|
207 |
-
#: counter-options.php:454
|
208 |
#@ cpd
|
|
|
209 |
msgid "Chart - Height"
|
210 |
msgstr "Графика - Височина"
|
211 |
|
212 |
-
#: counter-options.php:455
|
213 |
#@ cpd
|
|
|
214 |
msgid "Height of the biggest bar"
|
215 |
msgstr "Височина на най-голямото показание"
|
216 |
|
217 |
-
#: counter-options.php:459
|
218 |
#@ cpd
|
|
|
219 |
msgid "Countries"
|
220 |
msgstr "Държави"
|
221 |
|
222 |
-
#: counter-options.php:460
|
223 |
#@ cpd
|
|
|
224 |
msgid "How many countries do you want to see on dashboard page?"
|
225 |
msgstr "Колко държави искате да виждате на таблото?"
|
226 |
|
|
|
227 |
#: counter-core.php:733
|
228 |
#: counter-options.php:464
|
229 |
-
#@ cpd
|
230 |
msgid "Browsers"
|
231 |
msgstr "Браузъри"
|
232 |
|
233 |
-
#: counter-options.php:465
|
234 |
#@ cpd
|
|
|
235 |
msgid "Substring of the user agent, separated by comma"
|
236 |
-
msgstr ""
|
237 |
|
238 |
-
#: counter-options.php:476
|
239 |
#@ cpd
|
|
|
240 |
msgid "Local URLs"
|
241 |
msgstr "Локални URLs"
|
242 |
|
243 |
-
#: counter-options.php:477
|
244 |
#@ cpd
|
|
|
245 |
msgid "Show local referrers too."
|
246 |
msgstr "Покажи и местните препращащи сайтове."
|
247 |
|
248 |
-
#: counter-options.php:485
|
249 |
#@ default
|
|
|
250 |
msgid "Posts"
|
251 |
msgstr "Публикации"
|
252 |
|
253 |
-
#: counter-options.php:485
|
254 |
#@ default
|
|
|
255 |
msgid "Pages"
|
256 |
msgstr "Страници"
|
257 |
|
258 |
-
#: counter-options.php:488
|
259 |
#@ cpd
|
|
|
260 |
msgid "Show in lists"
|
261 |
msgstr "Покажи в списъците"
|
262 |
|
263 |
-
#: counter-options.php:489
|
264 |
#@ cpd
|
|
|
265 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
266 |
msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
|
267 |
|
268 |
-
#: counter-options.php:497
|
269 |
#@ cpd
|
|
|
270 |
msgid "Start Values"
|
271 |
msgstr "Начални стойности"
|
272 |
|
273 |
-
#: counter-options.php:501
|
274 |
#@ cpd
|
|
|
275 |
msgid "Here you can change the date of first count and add a start count."
|
276 |
msgstr "Тук можете да промените началната дата и да добавите нова дата."
|
277 |
|
278 |
-
#: counter-options.php:505
|
279 |
#@ cpd
|
|
|
280 |
msgid "Start date"
|
281 |
msgstr "Начална дата"
|
282 |
|
283 |
-
#: counter-options.php:506
|
284 |
#@ cpd
|
|
|
285 |
msgid "Your old Counter starts at?"
|
286 |
-
msgstr "Кога да стартира
|
287 |
|
|
|
288 |
#: counter-options.php:509
|
289 |
#: counter-options.php:513
|
290 |
-
#@ cpd
|
291 |
msgid "Start count"
|
292 |
-
msgstr "
|
293 |
|
294 |
-
#: counter-options.php:510
|
295 |
#@ cpd
|
|
|
296 |
msgid "Add this value to \"Total visitors\"."
|
297 |
msgstr "Добави тази стойност към \"Общо посетители\"."
|
298 |
|
299 |
-
#: counter-options.php:514
|
300 |
#@ cpd
|
|
|
301 |
msgid "Add this value to \"Total reads\"."
|
302 |
msgstr "Добави тази стойност към \"Общо прочетени\"."
|
303 |
|
304 |
-
#: counter-options.php:554
|
305 |
#@ cpd
|
|
|
306 |
msgid "Debug mode"
|
307 |
msgstr "Дебъг режим"
|
308 |
|
309 |
-
#: counter-options.php:556
|
310 |
#@ cpd
|
|
|
311 |
msgid "Show debug informations at the bottom of all pages."
|
312 |
msgstr "Покажи дебъг информация в дъното на всяка страница."
|
313 |
|
314 |
-
#: counter-options.php:561
|
315 |
#@ cpd
|
|
|
316 |
msgid "Update options"
|
317 |
msgstr "Обнови настройките"
|
318 |
|
319 |
-
#: counter-options.php:727
|
320 |
#@ cpd
|
|
|
321 |
msgid "GeoIP - Countries"
|
322 |
msgstr "GeoIP - Държави"
|
323 |
|
324 |
-
#: counter-options.php:736
|
325 |
#@ cpd
|
|
|
326 |
msgid "Update old counter data"
|
327 |
msgstr "Обнови старите данни на брояча"
|
328 |
|
329 |
-
#: counter-options.php:730
|
330 |
#@ cpd
|
|
|
331 |
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!"
|
332 |
msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
|
333 |
|
334 |
-
#: counter-options.php:748
|
335 |
#@ cpd
|
|
|
336 |
msgid "Update GeoIP database"
|
337 |
msgstr "Обнови GeoIP базата-данни"
|
338 |
|
339 |
-
#: counter-options.php:743
|
340 |
#@ cpd
|
|
|
341 |
msgid "Download a new version of GeoIP.dat file."
|
342 |
-
msgstr "Изтегли нова версия на GeoIP.dat
|
343 |
|
344 |
-
#: counter-options.php:753
|
345 |
#@ cpd
|
|
|
346 |
msgid "More informations about GeoIP"
|
347 |
msgstr "Повече информация за GeoIP"
|
348 |
|
|
|
349 |
#: counter-options.php:580
|
350 |
#: massbots.php:35
|
351 |
-
#@ cpd
|
352 |
msgid "Mass Bots"
|
353 |
-
msgstr ""
|
354 |
|
|
|
355 |
#: counter-options.php:584
|
356 |
#, php-format
|
357 |
-
#@ cpd
|
358 |
msgid "Show all IPs with more than %s page views per day"
|
359 |
msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
|
360 |
|
|
|
361 |
#: counter-options.php:585
|
362 |
#: notes.php:71
|
363 |
#: userperspan.php:44
|
364 |
-
#@ cpd
|
365 |
msgid "show"
|
366 |
msgstr "покажи"
|
367 |
|
368 |
-
#: counter-options.php:593
|
369 |
#@ cpd
|
|
|
370 |
msgid "IP"
|
371 |
msgstr "IP"
|
372 |
|
373 |
-
#: counter-options.php:594
|
374 |
-
#: notes.php:75
|
375 |
#@ cpd
|
376 |
#@ default
|
|
|
|
|
377 |
msgid "Date"
|
378 |
msgstr "Дата"
|
379 |
|
380 |
-
#: counter-options.php:595
|
381 |
#@ cpd
|
|
|
382 |
msgid "Client"
|
383 |
msgstr "Потребител"
|
384 |
|
385 |
-
#: counter-options.php:596
|
386 |
#@ cpd
|
|
|
387 |
msgid "Views"
|
388 |
msgstr "Прегледи"
|
389 |
|
|
|
390 |
#: counter-options.php:611
|
391 |
#: counter-options.php:627
|
392 |
#, php-format
|
393 |
-
#@ cpd
|
394 |
msgid "Delete these %s counts"
|
395 |
msgstr "Изтрий тези %s броячи"
|
396 |
|
|
|
397 |
#: counter-options.php:656
|
398 |
#: counter-options.php:665
|
399 |
-
#@ cpd
|
400 |
msgid "Clean the database"
|
401 |
msgstr "Изчисти базата-данни"
|
402 |
|
403 |
-
#: counter-options.php:659
|
404 |
#@ cpd
|
|
|
405 |
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."
|
406 |
msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
|
407 |
|
|
|
408 |
#: counter-options.php:777
|
409 |
#: counter-options.php:787
|
410 |
-
#@ cpd
|
411 |
msgid "Reset the counter"
|
412 |
msgstr "Изтрий брояча"
|
413 |
|
414 |
-
#: counter-options.php:780
|
415 |
#@ cpd
|
|
|
416 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
417 |
msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
|
418 |
|
419 |
-
#: counter-options.php:799
|
420 |
#@ cpd
|
|
|
421 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
422 |
-
msgstr ""
|
423 |
|
424 |
-
#: counter-options.php:800
|
425 |
#@ cpd
|
|
|
426 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
427 |
msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
|
428 |
|
429 |
-
#: counter-options.php:803
|
430 |
#@ cpd
|
|
|
431 |
msgid "WARNING"
|
432 |
msgstr "ПРЕДУПРЕЖДЕНИЕ"
|
433 |
|
434 |
-
#: counter-options.php:804
|
435 |
#@ cpd
|
|
|
436 |
msgid "These tables (with ALL counter data) will be deleted."
|
437 |
msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
|
438 |
|
439 |
-
#: counter-options.php:806
|
440 |
#@ cpd
|
|
|
441 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
442 |
msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
|
443 |
|
|
|
444 |
#: counter-options.php:786
|
445 |
#: counter-options.php:809
|
446 |
-
#@ cpd
|
447 |
msgid "Yes"
|
448 |
msgstr "Да"
|
449 |
|
450 |
-
#: counter-options.php:810
|
451 |
#@ cpd
|
|
|
452 |
msgid "You are sure to disable Count per Day and delete all data?"
|
453 |
msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
|
454 |
|
455 |
-
#: counter-options.php:714
|
456 |
#@ cpd
|
|
|
457 |
msgid "Support"
|
458 |
msgstr "Поддръжка"
|
459 |
|
|
|
460 |
#: counter.php:155
|
461 |
#: counter.php:1197
|
462 |
-
#@ cpd
|
463 |
msgid "Total reads"
|
464 |
msgstr "Общо прочетени"
|
465 |
|
|
|
466 |
#: counter.php:156
|
467 |
#: counter.php:1198
|
468 |
-
#@ cpd
|
469 |
msgid "Reads today"
|
470 |
msgstr "Прочетени днес"
|
471 |
|
|
|
472 |
#: counter.php:157
|
473 |
#: counter.php:1199
|
474 |
-
#@ cpd
|
475 |
msgid "Reads yesterday"
|
476 |
msgstr "Прочетени вчера"
|
477 |
|
|
|
478 |
#: counter.php:158
|
479 |
#: counter.php:1200
|
480 |
-
#@ cpd
|
481 |
msgid "Reads last week"
|
482 |
msgstr "Прочетени последната седмица"
|
483 |
|
|
|
484 |
#: counter-core.php:723
|
485 |
#: counter.php:160
|
486 |
#: counter.php:1010
|
487 |
#: counter.php:1202
|
488 |
-
#@ cpd
|
489 |
msgid "Total visitors"
|
490 |
msgstr "Общо посетители"
|
491 |
|
|
|
492 |
#: counter.php:161
|
493 |
#: counter.php:1208
|
494 |
-
#@ cpd
|
495 |
msgid "Visitors currently online"
|
496 |
msgstr "Посетители онлайн"
|
497 |
|
|
|
498 |
#: counter.php:162
|
499 |
#: counter.php:1203
|
500 |
-
#@ cpd
|
501 |
msgid "Visitors today"
|
502 |
msgstr "Посетители днес"
|
503 |
|
|
|
504 |
#: counter.php:163
|
505 |
#: counter.php:1204
|
506 |
-
#@ cpd
|
507 |
msgid "Visitors yesterday"
|
508 |
msgstr "Посетители вчера"
|
509 |
|
|
|
510 |
#: counter.php:164
|
511 |
#: counter.php:1205
|
512 |
-
#@ cpd
|
513 |
msgid "Visitors last week"
|
514 |
msgstr "Посетители през последната седмица"
|
515 |
|
|
|
516 |
#: counter-core.php:729
|
517 |
#: counter.php:166
|
518 |
#: counter.php:263
|
519 |
#: counter.php:1012
|
520 |
#: counter.php:1207
|
521 |
#: userperspan.php:34
|
522 |
-
#@ cpd
|
523 |
msgid "Visitors per day"
|
524 |
msgstr "Посетители по дни"
|
525 |
|
|
|
526 |
#: counter.php:167
|
527 |
#: counter.php:825
|
528 |
#: counter.php:1209
|
529 |
-
#@ cpd
|
530 |
msgid "Counter starts on"
|
531 |
msgstr "Броячът е стартиран"
|
532 |
|
|
|
533 |
#: counter.php:788
|
534 |
#: notes.php:42
|
535 |
#: notes.php:76
|
536 |
-
#@ cpd
|
537 |
msgid "Notes"
|
538 |
msgstr "Забележки"
|
539 |
|
|
|
540 |
#: counter.php:672
|
541 |
#, php-format
|
542 |
-
#@ cpd
|
543 |
msgid "The %s most visited posts in last %s days:"
|
544 |
msgstr "Най-много %s посетени публикации в последните %s дни:"
|
545 |
|
546 |
-
#: counter.php:786
|
547 |
#@ default
|
|
|
548 |
msgid "Show"
|
549 |
-
msgstr "
|
550 |
|
551 |
-
#: counter.php:821
|
552 |
#@ cpd
|
|
|
553 |
msgid "Other"
|
554 |
msgstr "Други"
|
555 |
|
556 |
-
#: counter.php:976
|
557 |
#@ default
|
|
|
558 |
msgid "Edit Post"
|
559 |
-
msgstr "
|
560 |
|
561 |
-
#: counter.php:985
|
562 |
#@ default
|
|
|
563 |
msgid "Category"
|
564 |
msgstr "Категория"
|
565 |
|
566 |
-
#: counter.php:988
|
567 |
#@ default
|
|
|
568 |
msgid "Tag"
|
569 |
-
msgstr "
|
570 |
|
|
|
571 |
#: counter.php:991
|
572 |
#: massbots.php:52
|
573 |
#: userperspan.php:63
|
574 |
-
#@ default
|
575 |
msgid "Front page displays"
|
576 |
-
msgstr "Изобразяване на
|
577 |
|
|
|
578 |
#: counter-core.php:575
|
579 |
#: counter-options.php:341
|
580 |
#: counter-options.php:565
|
581 |
-
#@ default
|
582 |
msgid "Settings"
|
583 |
msgstr "Настройки"
|
584 |
|
|
|
585 |
#: counter-core.php:689
|
586 |
#, php-format
|
587 |
-
#@ cpd
|
588 |
msgid "Time for Count per Day: <code>%s</code>."
|
589 |
msgstr "Време за Count per Day: <code>%s</code>."
|
590 |
|
591 |
-
#: counter-core.php:690
|
592 |
#@ cpd
|
|
|
593 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
594 |
msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
|
595 |
|
|
|
596 |
#: counter-core.php:691
|
597 |
#, php-format
|
598 |
-
#@ cpd
|
599 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
600 |
msgstr "Добави коментар на <a href=\"%s\">plugin page</a>."
|
601 |
|
602 |
-
#: counter-core.php:692
|
603 |
#@ default
|
|
|
604 |
msgid "License"
|
605 |
msgstr "Лиценз"
|
606 |
|
607 |
-
#: counter.php:262
|
608 |
#@ cpd
|
|
|
609 |
msgid "Reads per day"
|
610 |
msgstr "Прочетени по дни"
|
611 |
|
|
|
612 |
#: counter-core.php:725
|
613 |
#: counter.php:1206
|
614 |
-
#@ cpd
|
615 |
msgid "Visitors per month"
|
616 |
msgstr "Посетители по месеци"
|
617 |
|
|
|
618 |
#: counter-core.php:726
|
619 |
#: counter.php:1201
|
620 |
-
#@ cpd
|
621 |
msgid "Reads per month"
|
622 |
msgstr "Прочетени по месеци"
|
623 |
|
624 |
-
#: counter-core.php:728
|
625 |
#@ cpd
|
|
|
626 |
msgid "Latest Counts"
|
627 |
msgstr "Последни броячи"
|
628 |
|
629 |
-
#: counter-core.php:730
|
630 |
#@ default
|
|
|
631 |
msgid "Plugin"
|
632 |
msgstr "Разширение"
|
633 |
|
634 |
-
#: counter-core.php:734
|
635 |
#@ cpd
|
|
|
636 |
msgid "Referrer"
|
637 |
msgstr "Препращащ сайт"
|
638 |
|
639 |
-
#: counter-core.php:738
|
640 |
#@ cpd
|
|
|
641 |
msgid "Reads per Country"
|
642 |
-
msgstr "
|
643 |
|
644 |
-
#: counter-core.php:739
|
645 |
#@ cpd
|
|
|
646 |
msgid "Visitors per Country"
|
647 |
msgstr "Посетители по държави"
|
648 |
|
|
|
649 |
#: counter-core.php:754
|
650 |
#: counter.php:1124
|
651 |
-
#@ cpd
|
652 |
msgid "Statistics"
|
653 |
msgstr "Статистика"
|
654 |
|
|
|
655 |
#: counter.php:353
|
656 |
#: counter.php:1041
|
657 |
-
#@ cpd
|
658 |
msgid "Map"
|
659 |
msgstr "Карта"
|
660 |
|
661 |
-
#: counter.php:1196
|
662 |
#@ cpd
|
|
|
663 |
msgid "This post"
|
664 |
msgstr "Тази публикация"
|
665 |
|
666 |
-
#: counter.php:1220
|
667 |
#@ default
|
|
|
668 |
msgid "Title"
|
669 |
msgstr "Заглавие"
|
670 |
|
671 |
-
#: geoip/geoip.php:93
|
672 |
#@ cpd
|
|
|
673 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
674 |
msgstr "За съжаление функцията (zlib) не е инсталирана или включена в php.ini."
|
675 |
|
676 |
-
#: geoip/geoip.php:117
|
677 |
#@ cpd
|
|
|
678 |
msgid "New GeoIP database installed."
|
679 |
msgstr "Новата GeoIP база-данни е инсталирана."
|
680 |
|
681 |
-
#: geoip/geoip.php:119
|
682 |
#@ cpd
|
|
|
683 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
684 |
msgstr "За съжаление възникна грешка. Опитайте отново или проверете дали правата на папка \"geoip\" е 777."
|
685 |
|
686 |
-
#: notes.php:77
|
687 |
#@ default
|
|
|
688 |
msgid "Action"
|
689 |
msgstr "Действие"
|
690 |
|
691 |
-
#: notes.php:82
|
692 |
#@ cpd
|
|
|
693 |
msgid "add"
|
694 |
msgstr "добави"
|
695 |
|
696 |
-
#: notes.php:98
|
697 |
#@ cpd
|
|
|
698 |
msgid "save"
|
699 |
msgstr "запази"
|
700 |
|
701 |
-
#: notes.php:99
|
702 |
#@ cpd
|
|
|
703 |
msgid "delete"
|
704 |
msgstr "изтрий"
|
705 |
|
706 |
-
#: notes.php:110
|
707 |
#@ cpd
|
|
|
708 |
msgid "edit"
|
709 |
msgstr "редакция"
|
710 |
|
711 |
-
#: userperspan.php:38
|
712 |
#@ cpd
|
|
|
713 |
msgid "Start"
|
714 |
msgstr "Начало"
|
715 |
|
716 |
-
#: userperspan.php:40
|
717 |
#@ cpd
|
|
|
718 |
msgid "End"
|
719 |
msgstr "Край"
|
720 |
|
721 |
-
#: userperspan.php:42
|
722 |
#@ cpd
|
|
|
723 |
msgid "PostID"
|
724 |
msgstr "PostID"
|
725 |
|
726 |
-
#: userperspan.php:50
|
727 |
#@ cpd
|
|
|
728 |
msgid "no data found"
|
729 |
msgstr "няма намерени данни"
|
730 |
|
731 |
-
#: counter-options.php:468
|
732 |
#@ cpd
|
|
|
733 |
msgid "Referrers - Entries"
|
734 |
-
msgstr ""
|
735 |
|
736 |
-
#: counter-options.php:469
|
737 |
#@ cpd
|
|
|
738 |
msgid "How many referrers do you want to see on dashboard page?"
|
739 |
-
msgstr ""
|
740 |
|
741 |
-
#: counter-options.php:472
|
742 |
#@ cpd
|
|
|
743 |
msgid "Referrers - Days"
|
744 |
-
msgstr ""
|
745 |
|
|
|
746 |
#: counter.php:845
|
747 |
#, php-format
|
748 |
-
#@ cpd
|
749 |
msgid "The %s referrers in last %s days:"
|
750 |
-
msgstr ""
|
751 |
|
752 |
-
#: counter-core.php:724
|
753 |
#@ cpd
|
|
|
754 |
msgid "Visitors online"
|
755 |
-
msgstr ""
|
756 |
|
|
|
757 |
#: counter-core.php:186
|
758 |
#, php-format
|
759 |
-
#@ cpd
|
760 |
msgid "\"Count per Day\" updated to version %s."
|
761 |
-
msgstr ""
|
762 |
|
763 |
-
#: counter-core.php:917
|
764 |
#@ cpd
|
|
|
765 |
msgid "Backup failed! Cannot open file"
|
766 |
-
msgstr ""
|
767 |
|
|
|
768 |
#: counter-core.php:940
|
769 |
#, php-format
|
770 |
-
#@ cpd
|
771 |
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
772 |
-
msgstr ""
|
773 |
|
774 |
-
#: counter-core.php:1027
|
775 |
#@ cpd
|
|
|
776 |
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
777 |
-
msgstr ""
|
778 |
|
|
|
779 |
#: counter-core.php:1033
|
780 |
#, php-format
|
781 |
-
#@ cpd
|
782 |
msgid "Backup of counter table saved in %s."
|
783 |
-
msgstr ""
|
784 |
|
|
|
785 |
#: counter-core.php:1035
|
786 |
#, php-format
|
787 |
-
#@ cpd
|
788 |
msgid "Backup of counter options and collection saved in %s."
|
789 |
-
msgstr ""
|
790 |
|
791 |
-
#: counter-options.php:170
|
792 |
#@ cpd
|
|
|
793 |
msgid "Collection in progress..."
|
794 |
-
msgstr ""
|
795 |
|
796 |
-
#: counter-options.php:240
|
797 |
#@ cpd
|
|
|
798 |
msgid "Get Visitors per Post..."
|
799 |
-
msgstr ""
|
800 |
|
801 |
-
#: counter-options.php:261
|
802 |
#@ cpd
|
|
|
803 |
msgid "Delete old data..."
|
804 |
-
msgstr ""
|
805 |
|
|
|
806 |
#: counter-options.php:285
|
807 |
#, php-format
|
808 |
-
#@ cpd
|
809 |
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
810 |
-
msgstr ""
|
811 |
|
812 |
-
#: counter-options.php:294
|
813 |
#@ cpd
|
|
|
814 |
msgid "Installation of \"Count per Day\" checked"
|
815 |
-
msgstr ""
|
816 |
|
|
|
817 |
#: counter-options.php:342
|
818 |
#: counter-options.php:566
|
819 |
-
#@ default
|
820 |
msgid "Tools"
|
821 |
-
msgstr ""
|
822 |
|
823 |
-
#: counter-options.php:394
|
824 |
#@ cpd
|
|
|
825 |
msgid "Save URL only, no query string."
|
826 |
-
msgstr ""
|
827 |
|
828 |
-
#: counter-options.php:419
|
829 |
#@ cpd
|
|
|
830 |
msgid "Who can see it"
|
831 |
-
msgstr ""
|
832 |
|
833 |
-
#: counter-options.php:428
|
834 |
#@ cpd
|
|
|
835 |
msgid "custom"
|
836 |
-
msgstr ""
|
837 |
|
838 |
-
#: counter-options.php:430
|
839 |
#@ cpd
|
|
|
840 |
msgid "and higher are allowed to see the statistics page."
|
841 |
-
msgstr ""
|
842 |
|
|
|
843 |
#: counter-options.php:432
|
844 |
#, php-format
|
845 |
-
#@ cpd
|
846 |
msgid "Set the %s capability %s a user need:"
|
847 |
-
msgstr ""
|
848 |
|
849 |
-
#: counter-options.php:522
|
850 |
#@ cpd
|
|
|
851 |
msgid "Stylesheet"
|
852 |
-
msgstr ""
|
853 |
|
854 |
-
#: counter-options.php:525
|
855 |
#@ cpd
|
|
|
856 |
msgid "NO Stylesheet in Frontend"
|
857 |
-
msgstr ""
|
858 |
|
859 |
-
#: counter-options.php:526
|
860 |
#@ cpd
|
|
|
861 |
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
862 |
-
msgstr ""
|
863 |
|
|
|
864 |
#: counter-options.php:534
|
865 |
#: counter-options.php:639
|
866 |
-
#@ cpd
|
867 |
msgid "Backup"
|
868 |
-
msgstr ""
|
869 |
|
870 |
-
#: counter-options.php:537
|
871 |
#@ cpd
|
|
|
872 |
msgid "Entries per pass"
|
873 |
-
msgstr ""
|
874 |
|
875 |
-
#: counter-options.php:540
|
876 |
#@ cpd
|
|
|
877 |
msgid "How many entries should be saved per pass? Default: 10000"
|
878 |
-
msgstr ""
|
879 |
|
880 |
-
#: counter-options.php:545
|
881 |
#@ cpd
|
|
|
882 |
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
883 |
-
msgstr ""
|
884 |
|
|
|
885 |
#: counter-options.php:643
|
886 |
#, php-format
|
887 |
-
#@ cpd
|
888 |
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
889 |
-
msgstr ""
|
890 |
|
891 |
-
#: counter-options.php:647
|
892 |
#@ cpd
|
|
|
893 |
msgid "Backup the database"
|
894 |
-
msgstr ""
|
895 |
|
|
|
896 |
#: counter-options.php:674
|
897 |
#: counter-options.php:706
|
898 |
-
#@ cpd
|
899 |
msgid "Collect old data"
|
900 |
-
msgstr ""
|
901 |
|
|
|
902 |
#: counter-options.php:679
|
903 |
#, php-format
|
904 |
-
#@ cpd
|
905 |
msgid "Current size of your counter table %s is %s."
|
906 |
-
msgstr ""
|
907 |
|
908 |
-
#: counter-options.php:681
|
909 |
#@ cpd
|
|
|
910 |
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."
|
911 |
-
msgstr ""
|
912 |
|
|
|
913 |
#: counter-options.php:686
|
914 |
#, php-format
|
915 |
-
#@ cpd
|
916 |
msgid "Currently your collection contains data until %s."
|
917 |
-
msgstr ""
|
918 |
|
919 |
-
#: counter-options.php:690
|
920 |
#@ cpd
|
|
|
921 |
msgid "Normally new data will be added to the collection."
|
922 |
-
msgstr ""
|
923 |
|
924 |
-
#: counter-options.php:696
|
925 |
#@ cpd
|
|
|
926 |
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
927 |
-
msgstr ""
|
928 |
|
|
|
929 |
#: counter-options.php:697
|
930 |
#, php-format
|
931 |
-
#@ cpd
|
932 |
msgid "All collected data until %s will deleted."
|
933 |
-
msgstr ""
|
934 |
|
|
|
935 |
#: counter-options.php:702
|
936 |
#, php-format
|
937 |
-
#@ cpd
|
938 |
msgid "Keep entries of last %s full months + current month in counter table."
|
939 |
-
msgstr ""
|
940 |
|
941 |
-
#: counter-options.php:761
|
942 |
#@ cpd
|
|
|
943 |
msgid "ReActivation"
|
944 |
-
msgstr ""
|
945 |
|
946 |
-
#: counter-options.php:764
|
947 |
#@ cpd
|
|
|
948 |
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
949 |
-
msgstr ""
|
950 |
|
951 |
-
#: counter-options.php:769
|
952 |
#@ cpd
|
|
|
953 |
msgid "ReActivate the plugin"
|
954 |
-
msgstr ""
|
955 |
|
|
|
956 |
#: counter.php:165
|
957 |
#: counter.php:899
|
958 |
-
#@ cpd
|
959 |
msgid "Visitors"
|
960 |
-
msgstr ""
|
961 |
|
|
|
962 |
#: counter.php:168
|
963 |
#: counter.php:169
|
964 |
-
#@ cpd
|
965 |
msgid "Most visited day"
|
966 |
-
msgstr ""
|
967 |
|
968 |
-
#: counter.php:1239
|
969 |
#@ cpd
|
|
|
970 |
msgid "drag and drop to sort"
|
971 |
-
msgstr ""
|
972 |
|
3 |
"Project-Id-Version: Count Per Day v2.15\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2012-07-18 18:39+0200\n"
|
7 |
+
"Last-Translator: Joro <Joro2007@Gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"X-Poedit-Language: Bulgarian\n"
|
14 |
"X-Poedit-Country: BULGARIA\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-Poedit-Basepath: ../\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
20 |
|
|
|
21 |
#@ cpd
|
22 |
+
#: counter-options.php:49
|
23 |
msgid "Options updated"
|
24 |
msgstr "Настройките са обновени"
|
25 |
|
26 |
+
#@ cpd
|
27 |
#: counter-options.php:60
|
28 |
#, php-format
|
|
|
29 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
30 |
msgstr "Държавите са обновени. <b>%s</b> вписванията %s без тези държави"
|
31 |
|
|
|
32 |
#@ cpd
|
33 |
+
#: counter-options.php:65
|
34 |
msgid "update next"
|
35 |
msgstr "следващо обновяване"
|
36 |
|
37 |
+
#@ cpd
|
38 |
#: counter-options.php:102
|
39 |
#, php-format
|
|
|
40 |
msgid "Mass Bots cleaned. %s counts deleted."
|
41 |
+
msgstr "Ботовете са изчистени. %s броячите изтрити."
|
42 |
|
43 |
+
#@ cpd
|
44 |
#: counter-options.php:112
|
45 |
#, php-format
|
|
|
46 |
msgid "Database cleaned. %s rows deleted."
|
47 |
+
msgstr "Базата-данни е изчистена. %s редовете са премахнати."
|
48 |
|
|
|
49 |
#@ cpd
|
50 |
+
#: counter-options.php:122
|
51 |
msgid "Counter reseted."
|
52 |
msgstr "Броячът е нулиран."
|
53 |
|
54 |
+
#@ cpd
|
55 |
#: counter-options.php:127
|
56 |
#: counter-options.php:810
|
|
|
57 |
msgid "UNINSTALL Count per Day"
|
58 |
msgstr "Деинсталирай Count per Day"
|
59 |
|
60 |
+
#@ cpd
|
61 |
#: counter-options.php:132
|
62 |
#: counter-options.php:133
|
63 |
#: counter-options.php:134
|
64 |
#, php-format
|
|
|
65 |
msgid "Table %s deleted"
|
66 |
+
msgstr "Таблицата %s премахната"
|
67 |
|
|
|
68 |
#@ cpd
|
69 |
+
#: counter-options.php:135
|
70 |
msgid "Options deleted"
|
71 |
+
msgstr "Настройките са премахнати"
|
72 |
|
73 |
+
#@ cpd
|
74 |
#: counter-options.php:316
|
75 |
#: counter-options.php:796
|
|
|
76 |
msgid "Uninstall"
|
77 |
msgstr "Деинсталиране"
|
78 |
|
|
|
79 |
#@ cpd
|
80 |
+
#: counter-options.php:317
|
81 |
msgid "Click here"
|
82 |
msgstr "Натиснете тук"
|
83 |
|
|
|
84 |
#@ cpd
|
85 |
+
#: counter-options.php:317
|
86 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
87 |
msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
|
88 |
|
|
|
89 |
#@ cpd
|
90 |
+
#: counter-options.php:351
|
91 |
msgid "Counter"
|
92 |
msgstr "Брояч"
|
93 |
|
|
|
94 |
#@ cpd
|
95 |
+
#: counter-options.php:355
|
96 |
msgid "Online time"
|
97 |
msgstr "Време онлайн"
|
98 |
|
|
|
99 |
#@ cpd
|
100 |
+
#: counter-options.php:356
|
101 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
102 |
msgstr "Време онлайн"
|
103 |
|
|
|
104 |
#@ cpd
|
105 |
+
#: counter-options.php:359
|
106 |
msgid "Logged on Users"
|
107 |
msgstr "Включени потребители"
|
108 |
|
|
|
109 |
#@ cpd
|
110 |
+
#: counter-options.php:361
|
111 |
msgid "count too"
|
112 |
msgstr "преброявай също"
|
113 |
|
|
|
114 |
#@ cpd
|
115 |
+
#: counter-options.php:362
|
116 |
msgid "until User Level"
|
117 |
msgstr "до нивото на потребителя"
|
118 |
|
|
|
119 |
#@ cpd
|
120 |
+
#: counter-options.php:373
|
121 |
msgid "Auto counter"
|
122 |
msgstr "Автоматичен брояч"
|
123 |
|
|
|
124 |
#@ cpd
|
125 |
+
#: counter-options.php:374
|
126 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
127 |
msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
|
128 |
|
|
|
129 |
#@ cpd
|
130 |
+
#: counter-options.php:377
|
131 |
msgid "Bots to ignore"
|
132 |
msgstr "Игнорирай тези Ботове"
|
133 |
|
|
|
134 |
#@ cpd
|
135 |
+
#: counter-options.php:381
|
136 |
msgid "Anonymous IP"
|
137 |
msgstr "Анонимно IP"
|
138 |
|
|
|
139 |
#@ cpd
|
140 |
+
#: counter-options.php:385
|
141 |
msgid "Cache"
|
142 |
msgstr "Кеш"
|
143 |
|
|
|
144 |
#@ cpd
|
145 |
+
#: counter-options.php:386
|
146 |
msgid "I use a cache plugin. Count these visits with ajax."
|
147 |
msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
|
148 |
|
|
|
149 |
#@ cpd
|
150 |
+
#: counter-options.php:389
|
151 |
msgid "Clients and referrers"
|
152 |
msgstr "Потребители и препращащи сайтове"
|
153 |
|
|
|
154 |
#@ cpd
|
155 |
+
#: counter-options.php:392
|
156 |
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."
|
157 |
msgstr "Запази и покажи потребители и препращащи сайтове.<br />Нужда от повече място в базата-данни, но това е нужно за повече информация относно Вашите потребители."
|
158 |
|
159 |
+
#@ cpd
|
160 |
#: counter-core.php:639
|
161 |
#: counter-options.php:392
|
162 |
#: counter.php:159
|
163 |
#: counter.php:875
|
|
|
164 |
msgid "Reads"
|
165 |
msgstr "Прочетени"
|
166 |
|
|
|
167 |
#@ default
|
168 |
+
#: counter-options.php:403
|
169 |
msgid "Dashboard"
|
170 |
msgstr "Табло"
|
171 |
|
172 |
+
#@ cpd
|
173 |
#: counter-core.php:727
|
174 |
#: counter-options.php:438
|
|
|
175 |
msgid "Visitors per post"
|
176 |
msgstr "Посетители за публикация"
|
177 |
|
178 |
+
#@ cpd
|
179 |
#: counter-options.php:439
|
180 |
#: counter-options.php:443
|
|
|
181 |
msgid "How many posts do you want to see on dashboard page?"
|
182 |
msgstr "Колко публикации искате се покажат на таблото?"
|
183 |
|
|
|
184 |
#@ cpd
|
185 |
+
#: counter-options.php:442
|
186 |
msgid "Latest Counts - Posts"
|
187 |
msgstr "Последни преброявания - Публикации"
|
188 |
|
|
|
189 |
#@ cpd
|
190 |
+
#: counter-options.php:446
|
191 |
msgid "Latest Counts - Days"
|
192 |
msgstr "Последни преброявания - Дни"
|
193 |
|
194 |
+
#@ cpd
|
195 |
#: counter-options.php:447
|
196 |
#: counter-options.php:451
|
197 |
#: counter-options.php:473
|
|
|
198 |
msgid "How many days do you want look back?"
|
199 |
msgstr "Колко дни искате да бъдат показани?"
|
200 |
|
|
|
201 |
#@ cpd
|
202 |
+
#: counter-options.php:450
|
203 |
msgid "Chart - Days"
|
204 |
msgstr "Графика - Дни"
|
205 |
|
|
|
206 |
#@ cpd
|
207 |
+
#: counter-options.php:454
|
208 |
msgid "Chart - Height"
|
209 |
msgstr "Графика - Височина"
|
210 |
|
|
|
211 |
#@ cpd
|
212 |
+
#: counter-options.php:455
|
213 |
msgid "Height of the biggest bar"
|
214 |
msgstr "Височина на най-голямото показание"
|
215 |
|
|
|
216 |
#@ cpd
|
217 |
+
#: counter-options.php:459
|
218 |
msgid "Countries"
|
219 |
msgstr "Държави"
|
220 |
|
|
|
221 |
#@ cpd
|
222 |
+
#: counter-options.php:460
|
223 |
msgid "How many countries do you want to see on dashboard page?"
|
224 |
msgstr "Колко държави искате да виждате на таблото?"
|
225 |
|
226 |
+
#@ cpd
|
227 |
#: counter-core.php:733
|
228 |
#: counter-options.php:464
|
|
|
229 |
msgid "Browsers"
|
230 |
msgstr "Браузъри"
|
231 |
|
|
|
232 |
#@ cpd
|
233 |
+
#: counter-options.php:465
|
234 |
msgid "Substring of the user agent, separated by comma"
|
235 |
+
msgstr "Поднизове на потребителя, разделени със запетая"
|
236 |
|
|
|
237 |
#@ cpd
|
238 |
+
#: counter-options.php:476
|
239 |
msgid "Local URLs"
|
240 |
msgstr "Локални URLs"
|
241 |
|
|
|
242 |
#@ cpd
|
243 |
+
#: counter-options.php:477
|
244 |
msgid "Show local referrers too."
|
245 |
msgstr "Покажи и местните препращащи сайтове."
|
246 |
|
|
|
247 |
#@ default
|
248 |
+
#: counter-options.php:485
|
249 |
msgid "Posts"
|
250 |
msgstr "Публикации"
|
251 |
|
|
|
252 |
#@ default
|
253 |
+
#: counter-options.php:485
|
254 |
msgid "Pages"
|
255 |
msgstr "Страници"
|
256 |
|
|
|
257 |
#@ cpd
|
258 |
+
#: counter-options.php:488
|
259 |
msgid "Show in lists"
|
260 |
msgstr "Покажи в списъците"
|
261 |
|
|
|
262 |
#@ cpd
|
263 |
+
#: counter-options.php:489
|
264 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
265 |
msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
|
266 |
|
|
|
267 |
#@ cpd
|
268 |
+
#: counter-options.php:497
|
269 |
msgid "Start Values"
|
270 |
msgstr "Начални стойности"
|
271 |
|
|
|
272 |
#@ cpd
|
273 |
+
#: counter-options.php:501
|
274 |
msgid "Here you can change the date of first count and add a start count."
|
275 |
msgstr "Тук можете да промените началната дата и да добавите нова дата."
|
276 |
|
|
|
277 |
#@ cpd
|
278 |
+
#: counter-options.php:505
|
279 |
msgid "Start date"
|
280 |
msgstr "Начална дата"
|
281 |
|
|
|
282 |
#@ cpd
|
283 |
+
#: counter-options.php:506
|
284 |
msgid "Your old Counter starts at?"
|
285 |
+
msgstr "Кога да стартира броячът?"
|
286 |
|
287 |
+
#@ cpd
|
288 |
#: counter-options.php:509
|
289 |
#: counter-options.php:513
|
|
|
290 |
msgid "Start count"
|
291 |
+
msgstr "Стартиране на брояча"
|
292 |
|
|
|
293 |
#@ cpd
|
294 |
+
#: counter-options.php:510
|
295 |
msgid "Add this value to \"Total visitors\"."
|
296 |
msgstr "Добави тази стойност към \"Общо посетители\"."
|
297 |
|
|
|
298 |
#@ cpd
|
299 |
+
#: counter-options.php:514
|
300 |
msgid "Add this value to \"Total reads\"."
|
301 |
msgstr "Добави тази стойност към \"Общо прочетени\"."
|
302 |
|
|
|
303 |
#@ cpd
|
304 |
+
#: counter-options.php:554
|
305 |
msgid "Debug mode"
|
306 |
msgstr "Дебъг режим"
|
307 |
|
|
|
308 |
#@ cpd
|
309 |
+
#: counter-options.php:556
|
310 |
msgid "Show debug informations at the bottom of all pages."
|
311 |
msgstr "Покажи дебъг информация в дъното на всяка страница."
|
312 |
|
|
|
313 |
#@ cpd
|
314 |
+
#: counter-options.php:561
|
315 |
msgid "Update options"
|
316 |
msgstr "Обнови настройките"
|
317 |
|
|
|
318 |
#@ cpd
|
319 |
+
#: counter-options.php:727
|
320 |
msgid "GeoIP - Countries"
|
321 |
msgstr "GeoIP - Държави"
|
322 |
|
|
|
323 |
#@ cpd
|
324 |
+
#: counter-options.php:736
|
325 |
msgid "Update old counter data"
|
326 |
msgstr "Обнови старите данни на брояча"
|
327 |
|
|
|
328 |
#@ cpd
|
329 |
+
#: counter-options.php:730
|
330 |
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!"
|
331 |
msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
|
332 |
|
|
|
333 |
#@ cpd
|
334 |
+
#: counter-options.php:748
|
335 |
msgid "Update GeoIP database"
|
336 |
msgstr "Обнови GeoIP базата-данни"
|
337 |
|
|
|
338 |
#@ cpd
|
339 |
+
#: counter-options.php:743
|
340 |
msgid "Download a new version of GeoIP.dat file."
|
341 |
+
msgstr "Изтегли нова версия на GeoIP.dat"
|
342 |
|
|
|
343 |
#@ cpd
|
344 |
+
#: counter-options.php:753
|
345 |
msgid "More informations about GeoIP"
|
346 |
msgstr "Повече информация за GeoIP"
|
347 |
|
348 |
+
#@ cpd
|
349 |
#: counter-options.php:580
|
350 |
#: massbots.php:35
|
|
|
351 |
msgid "Mass Bots"
|
352 |
+
msgstr "Ботове"
|
353 |
|
354 |
+
#@ cpd
|
355 |
#: counter-options.php:584
|
356 |
#, php-format
|
|
|
357 |
msgid "Show all IPs with more than %s page views per day"
|
358 |
msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
|
359 |
|
360 |
+
#@ cpd
|
361 |
#: counter-options.php:585
|
362 |
#: notes.php:71
|
363 |
#: userperspan.php:44
|
|
|
364 |
msgid "show"
|
365 |
msgstr "покажи"
|
366 |
|
|
|
367 |
#@ cpd
|
368 |
+
#: counter-options.php:593
|
369 |
msgid "IP"
|
370 |
msgstr "IP"
|
371 |
|
|
|
|
|
372 |
#@ cpd
|
373 |
#@ default
|
374 |
+
#: counter-options.php:594
|
375 |
+
#: notes.php:75
|
376 |
msgid "Date"
|
377 |
msgstr "Дата"
|
378 |
|
|
|
379 |
#@ cpd
|
380 |
+
#: counter-options.php:595
|
381 |
msgid "Client"
|
382 |
msgstr "Потребител"
|
383 |
|
|
|
384 |
#@ cpd
|
385 |
+
#: counter-options.php:596
|
386 |
msgid "Views"
|
387 |
msgstr "Прегледи"
|
388 |
|
389 |
+
#@ cpd
|
390 |
#: counter-options.php:611
|
391 |
#: counter-options.php:627
|
392 |
#, php-format
|
|
|
393 |
msgid "Delete these %s counts"
|
394 |
msgstr "Изтрий тези %s броячи"
|
395 |
|
396 |
+
#@ cpd
|
397 |
#: counter-options.php:656
|
398 |
#: counter-options.php:665
|
|
|
399 |
msgid "Clean the database"
|
400 |
msgstr "Изчисти базата-данни"
|
401 |
|
|
|
402 |
#@ cpd
|
403 |
+
#: counter-options.php:659
|
404 |
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."
|
405 |
msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
|
406 |
|
407 |
+
#@ cpd
|
408 |
#: counter-options.php:777
|
409 |
#: counter-options.php:787
|
|
|
410 |
msgid "Reset the counter"
|
411 |
msgstr "Изтрий брояча"
|
412 |
|
|
|
413 |
#@ cpd
|
414 |
+
#: counter-options.php:780
|
415 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
416 |
msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
|
417 |
|
|
|
418 |
#@ cpd
|
419 |
+
#: counter-options.php:799
|
420 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
421 |
+
msgstr "Ако \"Count per Day\" е изключено, само изключените таблици в базата-данни ще бъдат запазени."
|
422 |
|
|
|
423 |
#@ cpd
|
424 |
+
#: counter-options.php:800
|
425 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
426 |
msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
|
427 |
|
|
|
428 |
#@ cpd
|
429 |
+
#: counter-options.php:803
|
430 |
msgid "WARNING"
|
431 |
msgstr "ПРЕДУПРЕЖДЕНИЕ"
|
432 |
|
|
|
433 |
#@ cpd
|
434 |
+
#: counter-options.php:804
|
435 |
msgid "These tables (with ALL counter data) will be deleted."
|
436 |
msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
|
437 |
|
|
|
438 |
#@ cpd
|
439 |
+
#: counter-options.php:806
|
440 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
441 |
msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
|
442 |
|
443 |
+
#@ cpd
|
444 |
#: counter-options.php:786
|
445 |
#: counter-options.php:809
|
|
|
446 |
msgid "Yes"
|
447 |
msgstr "Да"
|
448 |
|
|
|
449 |
#@ cpd
|
450 |
+
#: counter-options.php:810
|
451 |
msgid "You are sure to disable Count per Day and delete all data?"
|
452 |
msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
|
453 |
|
|
|
454 |
#@ cpd
|
455 |
+
#: counter-options.php:714
|
456 |
msgid "Support"
|
457 |
msgstr "Поддръжка"
|
458 |
|
459 |
+
#@ cpd
|
460 |
#: counter.php:155
|
461 |
#: counter.php:1197
|
|
|
462 |
msgid "Total reads"
|
463 |
msgstr "Общо прочетени"
|
464 |
|
465 |
+
#@ cpd
|
466 |
#: counter.php:156
|
467 |
#: counter.php:1198
|
|
|
468 |
msgid "Reads today"
|
469 |
msgstr "Прочетени днес"
|
470 |
|
471 |
+
#@ cpd
|
472 |
#: counter.php:157
|
473 |
#: counter.php:1199
|
|
|
474 |
msgid "Reads yesterday"
|
475 |
msgstr "Прочетени вчера"
|
476 |
|
477 |
+
#@ cpd
|
478 |
#: counter.php:158
|
479 |
#: counter.php:1200
|
|
|
480 |
msgid "Reads last week"
|
481 |
msgstr "Прочетени последната седмица"
|
482 |
|
483 |
+
#@ cpd
|
484 |
#: counter-core.php:723
|
485 |
#: counter.php:160
|
486 |
#: counter.php:1010
|
487 |
#: counter.php:1202
|
|
|
488 |
msgid "Total visitors"
|
489 |
msgstr "Общо посетители"
|
490 |
|
491 |
+
#@ cpd
|
492 |
#: counter.php:161
|
493 |
#: counter.php:1208
|
|
|
494 |
msgid "Visitors currently online"
|
495 |
msgstr "Посетители онлайн"
|
496 |
|
497 |
+
#@ cpd
|
498 |
#: counter.php:162
|
499 |
#: counter.php:1203
|
|
|
500 |
msgid "Visitors today"
|
501 |
msgstr "Посетители днес"
|
502 |
|
503 |
+
#@ cpd
|
504 |
#: counter.php:163
|
505 |
#: counter.php:1204
|
|
|
506 |
msgid "Visitors yesterday"
|
507 |
msgstr "Посетители вчера"
|
508 |
|
509 |
+
#@ cpd
|
510 |
#: counter.php:164
|
511 |
#: counter.php:1205
|
|
|
512 |
msgid "Visitors last week"
|
513 |
msgstr "Посетители през последната седмица"
|
514 |
|
515 |
+
#@ cpd
|
516 |
#: counter-core.php:729
|
517 |
#: counter.php:166
|
518 |
#: counter.php:263
|
519 |
#: counter.php:1012
|
520 |
#: counter.php:1207
|
521 |
#: userperspan.php:34
|
|
|
522 |
msgid "Visitors per day"
|
523 |
msgstr "Посетители по дни"
|
524 |
|
525 |
+
#@ cpd
|
526 |
#: counter.php:167
|
527 |
#: counter.php:825
|
528 |
#: counter.php:1209
|
|
|
529 |
msgid "Counter starts on"
|
530 |
msgstr "Броячът е стартиран"
|
531 |
|
532 |
+
#@ cpd
|
533 |
#: counter.php:788
|
534 |
#: notes.php:42
|
535 |
#: notes.php:76
|
|
|
536 |
msgid "Notes"
|
537 |
msgstr "Забележки"
|
538 |
|
539 |
+
#@ cpd
|
540 |
#: counter.php:672
|
541 |
#, php-format
|
|
|
542 |
msgid "The %s most visited posts in last %s days:"
|
543 |
msgstr "Най-много %s посетени публикации в последните %s дни:"
|
544 |
|
|
|
545 |
#@ default
|
546 |
+
#: counter.php:786
|
547 |
msgid "Show"
|
548 |
+
msgstr "Показване"
|
549 |
|
|
|
550 |
#@ cpd
|
551 |
+
#: counter.php:821
|
552 |
msgid "Other"
|
553 |
msgstr "Други"
|
554 |
|
|
|
555 |
#@ default
|
556 |
+
#: counter.php:976
|
557 |
msgid "Edit Post"
|
558 |
+
msgstr "Редактиране на публикацията"
|
559 |
|
|
|
560 |
#@ default
|
561 |
+
#: counter.php:985
|
562 |
msgid "Category"
|
563 |
msgstr "Категория"
|
564 |
|
|
|
565 |
#@ default
|
566 |
+
#: counter.php:988
|
567 |
msgid "Tag"
|
568 |
+
msgstr "Етикет"
|
569 |
|
570 |
+
#@ default
|
571 |
#: counter.php:991
|
572 |
#: massbots.php:52
|
573 |
#: userperspan.php:63
|
|
|
574 |
msgid "Front page displays"
|
575 |
+
msgstr "Изобразяване на заглавна страница"
|
576 |
|
577 |
+
#@ default
|
578 |
#: counter-core.php:575
|
579 |
#: counter-options.php:341
|
580 |
#: counter-options.php:565
|
|
|
581 |
msgid "Settings"
|
582 |
msgstr "Настройки"
|
583 |
|
584 |
+
#@ cpd
|
585 |
#: counter-core.php:689
|
586 |
#, php-format
|
|
|
587 |
msgid "Time for Count per Day: <code>%s</code>."
|
588 |
msgstr "Време за Count per Day: <code>%s</code>."
|
589 |
|
|
|
590 |
#@ cpd
|
591 |
+
#: counter-core.php:690
|
592 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
593 |
msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
|
594 |
|
595 |
+
#@ cpd
|
596 |
#: counter-core.php:691
|
597 |
#, php-format
|
|
|
598 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
599 |
msgstr "Добави коментар на <a href=\"%s\">plugin page</a>."
|
600 |
|
|
|
601 |
#@ default
|
602 |
+
#: counter-core.php:692
|
603 |
msgid "License"
|
604 |
msgstr "Лиценз"
|
605 |
|
|
|
606 |
#@ cpd
|
607 |
+
#: counter.php:262
|
608 |
msgid "Reads per day"
|
609 |
msgstr "Прочетени по дни"
|
610 |
|
611 |
+
#@ cpd
|
612 |
#: counter-core.php:725
|
613 |
#: counter.php:1206
|
|
|
614 |
msgid "Visitors per month"
|
615 |
msgstr "Посетители по месеци"
|
616 |
|
617 |
+
#@ cpd
|
618 |
#: counter-core.php:726
|
619 |
#: counter.php:1201
|
|
|
620 |
msgid "Reads per month"
|
621 |
msgstr "Прочетени по месеци"
|
622 |
|
|
|
623 |
#@ cpd
|
624 |
+
#: counter-core.php:728
|
625 |
msgid "Latest Counts"
|
626 |
msgstr "Последни броячи"
|
627 |
|
|
|
628 |
#@ default
|
629 |
+
#: counter-core.php:730
|
630 |
msgid "Plugin"
|
631 |
msgstr "Разширение"
|
632 |
|
|
|
633 |
#@ cpd
|
634 |
+
#: counter-core.php:734
|
635 |
msgid "Referrer"
|
636 |
msgstr "Препращащ сайт"
|
637 |
|
|
|
638 |
#@ cpd
|
639 |
+
#: counter-core.php:738
|
640 |
msgid "Reads per Country"
|
641 |
+
msgstr "Прочитания по държави"
|
642 |
|
|
|
643 |
#@ cpd
|
644 |
+
#: counter-core.php:739
|
645 |
msgid "Visitors per Country"
|
646 |
msgstr "Посетители по държави"
|
647 |
|
648 |
+
#@ cpd
|
649 |
#: counter-core.php:754
|
650 |
#: counter.php:1124
|
|
|
651 |
msgid "Statistics"
|
652 |
msgstr "Статистика"
|
653 |
|
654 |
+
#@ cpd
|
655 |
#: counter.php:353
|
656 |
#: counter.php:1041
|
|
|
657 |
msgid "Map"
|
658 |
msgstr "Карта"
|
659 |
|
|
|
660 |
#@ cpd
|
661 |
+
#: counter.php:1196
|
662 |
msgid "This post"
|
663 |
msgstr "Тази публикация"
|
664 |
|
|
|
665 |
#@ default
|
666 |
+
#: counter.php:1220
|
667 |
msgid "Title"
|
668 |
msgstr "Заглавие"
|
669 |
|
|
|
670 |
#@ cpd
|
671 |
+
#: geoip/geoip.php:93
|
672 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
673 |
msgstr "За съжаление функцията (zlib) не е инсталирана или включена в php.ini."
|
674 |
|
|
|
675 |
#@ cpd
|
676 |
+
#: geoip/geoip.php:117
|
677 |
msgid "New GeoIP database installed."
|
678 |
msgstr "Новата GeoIP база-данни е инсталирана."
|
679 |
|
|
|
680 |
#@ cpd
|
681 |
+
#: geoip/geoip.php:119
|
682 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
683 |
msgstr "За съжаление възникна грешка. Опитайте отново или проверете дали правата на папка \"geoip\" е 777."
|
684 |
|
|
|
685 |
#@ default
|
686 |
+
#: notes.php:77
|
687 |
msgid "Action"
|
688 |
msgstr "Действие"
|
689 |
|
|
|
690 |
#@ cpd
|
691 |
+
#: notes.php:82
|
692 |
msgid "add"
|
693 |
msgstr "добави"
|
694 |
|
|
|
695 |
#@ cpd
|
696 |
+
#: notes.php:98
|
697 |
msgid "save"
|
698 |
msgstr "запази"
|
699 |
|
|
|
700 |
#@ cpd
|
701 |
+
#: notes.php:99
|
702 |
msgid "delete"
|
703 |
msgstr "изтрий"
|
704 |
|
|
|
705 |
#@ cpd
|
706 |
+
#: notes.php:110
|
707 |
msgid "edit"
|
708 |
msgstr "редакция"
|
709 |
|
|
|
710 |
#@ cpd
|
711 |
+
#: userperspan.php:38
|
712 |
msgid "Start"
|
713 |
msgstr "Начало"
|
714 |
|
|
|
715 |
#@ cpd
|
716 |
+
#: userperspan.php:40
|
717 |
msgid "End"
|
718 |
msgstr "Край"
|
719 |
|
|
|
720 |
#@ cpd
|
721 |
+
#: userperspan.php:42
|
722 |
msgid "PostID"
|
723 |
msgstr "PostID"
|
724 |
|
|
|
725 |
#@ cpd
|
726 |
+
#: userperspan.php:50
|
727 |
msgid "no data found"
|
728 |
msgstr "няма намерени данни"
|
729 |
|
|
|
730 |
#@ cpd
|
731 |
+
#: counter-options.php:468
|
732 |
msgid "Referrers - Entries"
|
733 |
+
msgstr "Референти - Вписвания"
|
734 |
|
|
|
735 |
#@ cpd
|
736 |
+
#: counter-options.php:469
|
737 |
msgid "How many referrers do you want to see on dashboard page?"
|
738 |
+
msgstr "Брой референти, показвани на страницата на таблото?"
|
739 |
|
|
|
740 |
#@ cpd
|
741 |
+
#: counter-options.php:472
|
742 |
msgid "Referrers - Days"
|
743 |
+
msgstr "Референти - Дни"
|
744 |
|
745 |
+
#@ cpd
|
746 |
#: counter.php:845
|
747 |
#, php-format
|
|
|
748 |
msgid "The %s referrers in last %s days:"
|
749 |
+
msgstr "%s Референти в последните %s дни:"
|
750 |
|
|
|
751 |
#@ cpd
|
752 |
+
#: counter-core.php:724
|
753 |
msgid "Visitors online"
|
754 |
+
msgstr "Посетители на линия"
|
755 |
|
756 |
+
#@ cpd
|
757 |
#: counter-core.php:186
|
758 |
#, php-format
|
|
|
759 |
msgid "\"Count per Day\" updated to version %s."
|
760 |
+
msgstr "\"Count per Day\" е обновен до версия %s."
|
761 |
|
|
|
762 |
#@ cpd
|
763 |
+
#: counter-core.php:917
|
764 |
msgid "Backup failed! Cannot open file"
|
765 |
+
msgstr "Архивирането е неуспешно! Файлът не може да се отвори"
|
766 |
|
767 |
+
#@ cpd
|
768 |
#: counter-core.php:940
|
769 |
#, php-format
|
|
|
770 |
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
771 |
+
msgstr "Извършва се архивиране на %s. Всяка точка отговаря на %s вписване."
|
772 |
|
|
|
773 |
#@ cpd
|
774 |
+
#: counter-core.php:1027
|
775 |
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
776 |
+
msgstr "Съдържанието на директорията не е разрешено за писане. Можете да копирате съдържанието на това поле в обикновен текстов файл."
|
777 |
|
778 |
+
#@ cpd
|
779 |
#: counter-core.php:1033
|
780 |
#, php-format
|
|
|
781 |
msgid "Backup of counter table saved in %s."
|
782 |
+
msgstr "Архивът на таблицата е запазен в %s."
|
783 |
|
784 |
+
#@ cpd
|
785 |
#: counter-core.php:1035
|
786 |
#, php-format
|
|
|
787 |
msgid "Backup of counter options and collection saved in %s."
|
788 |
+
msgstr "Архивът на опциите на броячите е запазено в %s."
|
789 |
|
|
|
790 |
#@ cpd
|
791 |
+
#: counter-options.php:170
|
792 |
msgid "Collection in progress..."
|
793 |
+
msgstr "Събирането е стартирано..."
|
794 |
|
|
|
795 |
#@ cpd
|
796 |
+
#: counter-options.php:240
|
797 |
msgid "Get Visitors per Post..."
|
798 |
+
msgstr "Прегледай посетителите за публикация"
|
799 |
|
|
|
800 |
#@ cpd
|
801 |
+
#: counter-options.php:261
|
802 |
msgid "Delete old data..."
|
803 |
+
msgstr "Изтриване на стари данни"
|
804 |
|
805 |
+
#@ cpd
|
806 |
#: counter-options.php:285
|
807 |
#, php-format
|
|
|
808 |
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
809 |
+
msgstr "Броячът на вписвания до%s събира и броячът на таблицата%s е оптимизиран (размер, преди> размер =%s след =%s)."
|
810 |
|
|
|
811 |
#@ cpd
|
812 |
+
#: counter-options.php:294
|
813 |
msgid "Installation of \"Count per Day\" checked"
|
814 |
+
msgstr "Инсталацията на \"Count per Day\" е проверена"
|
815 |
|
816 |
+
#@ default
|
817 |
#: counter-options.php:342
|
818 |
#: counter-options.php:566
|
|
|
819 |
msgid "Tools"
|
820 |
+
msgstr "Инструменти"
|
821 |
|
|
|
822 |
#@ cpd
|
823 |
+
#: counter-options.php:394
|
824 |
msgid "Save URL only, no query string."
|
825 |
+
msgstr "Запази само URL, без стринг за запитване."
|
826 |
|
|
|
827 |
#@ cpd
|
828 |
+
#: counter-options.php:419
|
829 |
msgid "Who can see it"
|
830 |
+
msgstr "Кой има право да вижда това"
|
831 |
|
|
|
832 |
#@ cpd
|
833 |
+
#: counter-options.php:428
|
834 |
msgid "custom"
|
835 |
+
msgstr "по избор"
|
836 |
|
|
|
837 |
#@ cpd
|
838 |
+
#: counter-options.php:430
|
839 |
msgid "and higher are allowed to see the statistics page."
|
840 |
+
msgstr "и по-високо е позволено да вижде статистиката."
|
841 |
|
842 |
+
#@ cpd
|
843 |
#: counter-options.php:432
|
844 |
#, php-format
|
|
|
845 |
msgid "Set the %s capability %s a user need:"
|
846 |
+
msgstr "Задайте способност %s %s ако потребителят има необходимост:"
|
847 |
|
|
|
848 |
#@ cpd
|
849 |
+
#: counter-options.php:522
|
850 |
msgid "Stylesheet"
|
851 |
+
msgstr "Таблица"
|
852 |
|
|
|
853 |
#@ cpd
|
854 |
+
#: counter-options.php:525
|
855 |
msgid "NO Stylesheet in Frontend"
|
856 |
+
msgstr "БЕЗ таблица в началната страница"
|
857 |
|
|
|
858 |
#@ cpd
|
859 |
+
#: counter-options.php:526
|
860 |
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
861 |
+
msgstr "Не зареждай таблицата \"counter.css\" в началната страница."
|
862 |
|
863 |
+
#@ cpd
|
864 |
#: counter-options.php:534
|
865 |
#: counter-options.php:639
|
|
|
866 |
msgid "Backup"
|
867 |
+
msgstr "Архивиране"
|
868 |
|
|
|
869 |
#@ cpd
|
870 |
+
#: counter-options.php:537
|
871 |
msgid "Entries per pass"
|
872 |
+
msgstr "Влизания"
|
873 |
|
|
|
874 |
#@ cpd
|
875 |
+
#: counter-options.php:540
|
876 |
msgid "How many entries should be saved per pass? Default: 10000"
|
877 |
+
msgstr "Колко посещения трябва да бъдат запазени? По подразбиране: 10000"
|
878 |
|
|
|
879 |
#@ cpd
|
880 |
+
#: counter-options.php:545
|
881 |
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
882 |
+
msgstr "Ако лимитът на PHP паметта е по-малък от 50 МВ и получавате бяла страница или съобщения за грешки, опитайте с по-малка стойност."
|
883 |
|
884 |
+
#@ cpd
|
885 |
#: counter-options.php:643
|
886 |
#, php-format
|
|
|
887 |
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
888 |
+
msgstr "Създаване на резервно копие на брояча %s в WP-съдържанието на директорията (ако е с права за запис)."
|
889 |
|
|
|
890 |
#@ cpd
|
891 |
+
#: counter-options.php:647
|
892 |
msgid "Backup the database"
|
893 |
+
msgstr "Архивиране на базата-данни"
|
894 |
|
895 |
+
#@ cpd
|
896 |
#: counter-options.php:674
|
897 |
#: counter-options.php:706
|
|
|
898 |
msgid "Collect old data"
|
899 |
+
msgstr "Събиране на стари данни"
|
900 |
|
901 |
+
#@ cpd
|
902 |
#: counter-options.php:679
|
903 |
#, php-format
|
|
|
904 |
msgid "Current size of your counter table %s is %s."
|
905 |
+
msgstr "Съществуващият размер на таблицата %s е %s."
|
906 |
|
|
|
907 |
#@ cpd
|
908 |
+
#: counter-options.php:681
|
909 |
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."
|
910 |
+
msgstr "Можете да съберете стари данни и да почистите таблицата. <br/> Прочитанията и посетителите ще бъдат запазени по месеци, по страни и по публикации. <br/> Клиенти и референти ще се премахват."
|
911 |
|
912 |
+
#@ cpd
|
913 |
#: counter-options.php:686
|
914 |
#, php-format
|
|
|
915 |
msgid "Currently your collection contains data until %s."
|
916 |
+
msgstr "В момента вашата колекция съдържа данни до %s."
|
917 |
|
|
|
918 |
#@ cpd
|
919 |
+
#: counter-options.php:690
|
920 |
msgid "Normally new data will be added to the collection."
|
921 |
+
msgstr "Обикновено новите данни ще бъдат добавени към колекцията."
|
922 |
|
|
|
923 |
#@ cpd
|
924 |
+
#: counter-options.php:696
|
925 |
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
926 |
+
msgstr "Премахване на старата колекция и създаване на нова, която съдържа единствено данните от таблицата."
|
927 |
|
928 |
+
#@ cpd
|
929 |
#: counter-options.php:697
|
930 |
#, php-format
|
|
|
931 |
msgid "All collected data until %s will deleted."
|
932 |
+
msgstr "Всички събрани данни до%s ще бъдат премахнати."
|
933 |
|
934 |
+
#@ cpd
|
935 |
#: counter-options.php:702
|
936 |
#, php-format
|
|
|
937 |
msgid "Keep entries of last %s full months + current month in counter table."
|
938 |
+
msgstr "Пазене на записи за всички месеци на миналата%s и текущия месец в таблицата."
|
939 |
|
|
|
940 |
#@ cpd
|
941 |
+
#: counter-options.php:761
|
942 |
msgid "ReActivation"
|
943 |
+
msgstr "Активиране отново"
|
944 |
|
|
|
945 |
#@ cpd
|
946 |
+
#: counter-options.php:764
|
947 |
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
948 |
+
msgstr "Тук можете да стартирате инсталацията ръчно. <br/> Също можете да деактивирате и да реактивирате добавка."
|
949 |
|
|
|
950 |
#@ cpd
|
951 |
+
#: counter-options.php:769
|
952 |
msgid "ReActivate the plugin"
|
953 |
+
msgstr "Включване отново на тази добавка"
|
954 |
|
955 |
+
#@ cpd
|
956 |
#: counter.php:165
|
957 |
#: counter.php:899
|
|
|
958 |
msgid "Visitors"
|
959 |
+
msgstr "Посетители"
|
960 |
|
961 |
+
#@ cpd
|
962 |
#: counter.php:168
|
963 |
#: counter.php:169
|
|
|
964 |
msgid "Most visited day"
|
965 |
+
msgstr "Най-много посещения"
|
966 |
|
|
|
967 |
#@ cpd
|
968 |
+
#: counter.php:1239
|
969 |
msgid "drag and drop to sort"
|
970 |
+
msgstr "провлачете и пуснете, за да сортирате"
|
971 |
|
locale/cpd-ja.mo
CHANGED
Binary file
|
locale/cpd-ja.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Count Per Day v3.00\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Juno Hayami <juno.hayami@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -13,960 +13,1083 @@ msgstr ""
|
|
13 |
"X-Poedit-Language: Japanese\n"
|
14 |
"X-Poedit-Country: JAPAN\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
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
-
"X-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
|
|
|
23 |
#, php-format
|
24 |
-
#@ cpd
|
25 |
msgid "\"Count per Day\" updated to version %s."
|
26 |
msgstr "\"Count per Day\" がバージョン %s にアップデートされました。"
|
27 |
|
28 |
-
|
29 |
-
#: counter-
|
30 |
-
#: counter-options.php:
|
31 |
-
|
32 |
msgid "Settings"
|
33 |
msgstr "設定"
|
34 |
|
35 |
-
|
36 |
-
#: counter-
|
37 |
-
#: counter.php:
|
38 |
-
#: counter.php:
|
39 |
-
|
40 |
msgid "Reads"
|
41 |
msgstr "総購読数"
|
42 |
|
43 |
-
|
|
|
44 |
#, php-format
|
45 |
-
#@ cpd
|
46 |
msgid "Time for Count per Day: <code>%s</code>."
|
47 |
msgstr "Count per Dayでの日時: <code>%s</code>."
|
48 |
|
49 |
-
|
50 |
-
|
51 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
52 |
msgstr "バグ?問題?質問?ヒント?評価?"
|
53 |
|
54 |
-
|
|
|
55 |
#, php-format
|
56 |
-
#@ cpd
|
57 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
58 |
msgstr "<a href=\"%s\">plugin page</a> にコメントする。"
|
59 |
|
60 |
-
|
61 |
-
|
62 |
msgid "License"
|
63 |
msgstr "ライセンス"
|
64 |
|
65 |
-
|
66 |
-
#: counter.php:
|
67 |
-
#: counter.php:
|
68 |
-
#: counter.php:
|
69 |
-
|
70 |
msgid "Total visitors"
|
71 |
msgstr "総訪問者数"
|
72 |
|
73 |
-
|
74 |
-
|
75 |
msgid "Visitors online"
|
76 |
msgstr "オンライン中の訪問者数"
|
77 |
|
78 |
-
|
79 |
-
#: counter.php:
|
80 |
-
|
81 |
msgid "Visitors per month"
|
82 |
msgstr "月別訪問者数"
|
83 |
|
84 |
-
|
85 |
-
#: counter.php:
|
86 |
-
|
87 |
msgid "Reads per month"
|
88 |
msgstr "月別閲覧数"
|
89 |
|
90 |
-
|
91 |
-
#: counter-
|
92 |
-
|
93 |
msgid "Visitors per post"
|
94 |
msgstr "記事別の訪問者数"
|
95 |
|
96 |
-
|
97 |
-
|
98 |
msgid "Latest Counts"
|
99 |
msgstr "最近のカウント"
|
100 |
|
101 |
-
|
102 |
-
#: counter.php:
|
103 |
-
#: counter.php:
|
104 |
-
#: counter.php:
|
105 |
-
#: counter.php:
|
|
|
106 |
#: userperspan.php:34
|
107 |
-
#@ cpd
|
108 |
msgid "Visitors per day"
|
109 |
msgstr "一日あたりの訪問者数"
|
110 |
|
111 |
-
|
112 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
msgid "Plugin"
|
114 |
msgstr "プラグイン"
|
115 |
|
116 |
-
|
117 |
-
#: counter-
|
118 |
-
|
119 |
msgid "Browsers"
|
120 |
msgstr "ブラウザ"
|
121 |
|
122 |
-
|
123 |
-
|
124 |
msgid "Referrer"
|
125 |
msgstr "リファラ"
|
126 |
|
127 |
-
|
128 |
-
|
129 |
msgid "Reads per Country"
|
130 |
msgstr "国ごとの閲覧数"
|
131 |
|
132 |
-
|
133 |
-
|
134 |
msgid "Visitors per Country"
|
135 |
msgstr "国ごとの訪問者数"
|
136 |
|
137 |
-
|
138 |
-
#: counter.php:
|
139 |
-
|
140 |
msgid "Statistics"
|
141 |
msgstr "統計"
|
142 |
|
143 |
-
|
144 |
-
|
145 |
msgid "Backup failed! Cannot open file"
|
146 |
msgstr "バックアップに失敗しました! ファイルが開けません。"
|
147 |
|
148 |
-
|
|
|
149 |
#, php-format
|
150 |
-
#@ cpd
|
151 |
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
152 |
msgstr "%s 件の記録をバックアップ処理中。 %s 件の記録が完了しています。"
|
153 |
|
154 |
-
|
155 |
-
|
156 |
-
msgid "Your
|
157 |
-
msgstr "
|
158 |
|
159 |
-
|
|
|
|
|
160 |
#, php-format
|
161 |
-
#@ cpd
|
162 |
msgid "Backup of counter table saved in %s."
|
163 |
msgstr "カウンターテーブルのバックアップを %s に保存しました。"
|
164 |
|
165 |
-
|
|
|
|
|
166 |
#, php-format
|
167 |
-
#@ cpd
|
168 |
msgid "Backup of counter options and collection saved in %s."
|
169 |
msgstr "カウンターオプションのバックアップと記録は %s に保存されました。"
|
170 |
|
171 |
-
|
172 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
msgid "Options updated"
|
174 |
msgstr "オプションを更新しました"
|
175 |
|
176 |
-
|
|
|
177 |
#, php-format
|
178 |
-
#@ cpd
|
179 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
180 |
msgstr "訪問者の国情報を更新。%s 上の <b>%s</b> 件がまだ国と関連付けられていません。"
|
181 |
|
182 |
-
|
183 |
-
|
184 |
msgid "update next"
|
185 |
msgstr "次を更新"
|
186 |
|
187 |
-
|
|
|
188 |
#, php-format
|
189 |
-
#@ cpd
|
190 |
msgid "Mass Bots cleaned. %s counts deleted."
|
191 |
msgstr "Botをクリーンアップしました。 %s 件が削除されました。"
|
192 |
|
193 |
-
|
|
|
194 |
#, php-format
|
195 |
-
#@ cpd
|
196 |
msgid "Database cleaned. %s rows deleted."
|
197 |
msgstr "データベースをクリーンアップしました。 %s 行削除されました。"
|
198 |
|
199 |
-
|
200 |
-
|
201 |
msgid "Counter reseted."
|
202 |
msgstr "カウンターがリセットされました。"
|
203 |
|
204 |
-
|
205 |
-
#: counter-options.php:
|
206 |
-
|
207 |
msgid "UNINSTALL Count per Day"
|
208 |
msgstr "Count per Day のアンインストール"
|
209 |
|
|
|
|
|
210 |
#: counter-options.php:134
|
211 |
#: counter-options.php:135
|
212 |
-
#: counter-options.php:136
|
213 |
#, php-format
|
214 |
-
#@ cpd
|
215 |
msgid "Table %s deleted"
|
216 |
msgstr "%s テーブルが削除されました"
|
217 |
|
218 |
-
|
219 |
-
|
220 |
msgid "Options deleted"
|
221 |
msgstr "オプションを削除しました"
|
222 |
|
223 |
-
|
224 |
-
|
225 |
msgid "Collection in progress..."
|
226 |
msgstr "整理中です…"
|
227 |
|
228 |
-
|
229 |
-
|
230 |
msgid "Get Visitors per Post..."
|
231 |
msgstr "記事別の訪問者数を取得…"
|
232 |
|
233 |
-
|
234 |
-
|
235 |
msgid "Delete old data..."
|
236 |
msgstr "古いデータを削除します…"
|
237 |
|
238 |
-
|
|
|
239 |
#, php-format
|
240 |
-
#@ cpd
|
241 |
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
242 |
msgstr "%s までのカウンター記録を整理し、カウンターテーブル %s を最適化しました (最適化前のサイズ = %s > 最適化後のサイズ = %s)。"
|
243 |
|
244 |
-
|
245 |
-
|
246 |
msgid "Installation of \"Count per Day\" checked"
|
247 |
msgstr "\"Count per Day\" のインストールが完了しました。"
|
248 |
|
249 |
-
|
250 |
-
#: counter-options.php:
|
251 |
-
|
|
|
|
|
|
|
|
|
|
|
252 |
msgid "Uninstall"
|
253 |
msgstr "アンインストール"
|
254 |
|
255 |
-
|
256 |
-
|
257 |
msgid "Click here"
|
258 |
msgstr "Click here"
|
259 |
|
260 |
-
|
261 |
-
|
262 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
263 |
msgstr "\"Count per Day\" を無効化してアンインストール"
|
264 |
|
265 |
-
|
266 |
-
#: counter-options.php:
|
267 |
-
|
268 |
msgid "Tools"
|
269 |
msgstr "ツール"
|
270 |
|
271 |
-
|
272 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|