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 | Count per Day |
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
msgid "Counter"
|
274 |
msgstr "カウンター"
|
275 |
|
276 |
-
|
277 |
-
|
278 |
msgid "Online time"
|
279 |
msgstr "オンライン判定時間(秒)"
|
280 |
|
281 |
-
|
282 |
-
|
283 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
284 |
msgstr "オンラインの数をカウントする秒数。 ダッシュボード上の\"オンライン中の訪問者数\"で使用。"
|
285 |
|
286 |
-
|
287 |
-
|
288 |
msgid "Logged on Users"
|
289 |
msgstr "ログインユーザー"
|
290 |
|
291 |
-
|
292 |
-
|
293 |
msgid "count too"
|
294 |
msgstr "カウントに含む"
|
295 |
|
296 |
-
|
297 |
-
|
298 |
msgid "until User Level"
|
299 |
msgstr "次のユーザーレベルまで"
|
300 |
|
301 |
-
|
302 |
-
|
303 |
msgid "Auto counter"
|
304 |
msgstr "自動でカウントする"
|
305 |
|
306 |
-
|
307 |
-
|
308 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
309 |
msgstr "テンプレートの変更なしで自動的に個別記事や固定ページもカウントする"
|
310 |
|
311 |
-
|
312 |
-
|
313 |
msgid "Bots to ignore"
|
314 |
msgstr "無視するBot"
|
315 |
|
316 |
-
|
317 |
-
|
318 |
msgid "Anonymous IP"
|
319 |
msgstr "匿名IP"
|
320 |
|
321 |
-
|
322 |
-
|
323 |
msgid "Cache"
|
324 |
msgstr "キャッシュ"
|
325 |
|
326 |
-
|
327 |
-
|
328 |
msgid "I use a cache plugin. Count these visits with ajax."
|
329 |
msgstr "キャッシュプラグインを使用しています。ajaxでこれらの訪問者もカウントします。"
|
330 |
|
331 |
-
|
332 |
-
|
333 |
msgid "Clients and referrers"
|
334 |
msgstr "クライアントとリファラ"
|
335 |
|
336 |
-
|
337 |
-
|
338 |
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."
|
339 |
msgstr "クライアントとリファラを表示・保存します。<br />多くのデータベース容量を必要としますがあなたのサイトへの訪問者情報をより細かく把握できます。"
|
340 |
|
341 |
-
|
342 |
-
|
343 |
msgid "Save URL only, no query string."
|
344 |
msgstr "URLのみ保存し、クエリ部分は含まない。"
|
345 |
|
346 |
-
|
347 |
-
|
348 |
msgid "Dashboard"
|
349 |
msgstr "ダッシュボード"
|
350 |
|
351 |
-
|
352 |
-
|
353 |
msgid "Who can see it"
|
354 |
msgstr "閲覧を許可する人"
|
355 |
|
356 |
-
|
357 |
-
|
358 |
msgid "custom"
|
359 |
msgstr "カスタム"
|
360 |
|
361 |
-
|
362 |
-
|
363 |
msgid "and higher are allowed to see the statistics page."
|
364 |
msgstr "これ以上の権限なら統計ページの閲覧を許可します。"
|
365 |
|
366 |
-
|
|
|
367 |
#, php-format
|
368 |
-
#@ cpd
|
369 |
msgid "Set the %s capability %s a user need:"
|
370 |
msgstr "ユーザに必要な %s 権限 %s の設定:"
|
371 |
|
372 |
-
|
373 |
-
#: counter-options.php:
|
374 |
-
|
375 |
msgid "How many posts do you want to see on dashboard page?"
|
376 |
msgstr "ダッシュボードで何件まで閲覧しますか?"
|
377 |
|
378 |
-
|
379 |
-
|
380 |
msgid "Latest Counts - Posts"
|
381 |
msgstr "最近のカウント - 記事"
|
382 |
|
383 |
-
|
384 |
-
|
385 |
msgid "Latest Counts - Days"
|
386 |
msgstr "最近のカウント - 日別"
|
387 |
|
388 |
-
|
389 |
-
#: counter-options.php:
|
390 |
-
#: counter-options.php:
|
391 |
-
|
392 |
msgid "How many days do you want look back?"
|
393 |
-
msgstr "
|
394 |
|
395 |
-
|
396 |
-
|
397 |
msgid "Chart - Days"
|
398 |
msgstr "チャート(グラフ) - 日別"
|
399 |
|
400 |
-
|
401 |
-
|
402 |
msgid "Chart - Height"
|
403 |
msgstr "チャート(グラフ) - 高さ"
|
404 |
|
405 |
-
|
406 |
-
|
407 |
msgid "Height of the biggest bar"
|
408 |
msgstr "最大値のときの高さ"
|
409 |
|
410 |
-
|
411 |
-
|
412 |
msgid "Countries"
|
413 |
msgstr "国情報"
|
414 |
|
415 |
-
|
416 |
-
|
417 |
msgid "How many countries do you want to see on dashboard page?"
|
418 |
msgstr "ダッシュボード上で何ヶ国まで閲覧しますか?"
|
419 |
|
420 |
-
|
421 |
-
|
422 |
msgid "Substring of the user agent, separated by comma"
|
423 |
msgstr "ユーザーエージェントは種類ごとにカンマで区切ってください"
|
424 |
|
425 |
-
|
426 |
-
|
427 |
msgid "Referrers - Entries"
|
428 |
msgstr "リファラ - 投稿別"
|
429 |
|
430 |
-
|
431 |
-
|
432 |
msgid "How many referrers do you want to see on dashboard page?"
|
433 |
msgstr "ダッシュボード上で何件のリファラを表示しますか?"
|
434 |
|
435 |
-
|
436 |
-
|
437 |
msgid "Referrers - Days"
|
438 |
msgstr "リファラ - 日数"
|
439 |
|
440 |
-
|
441 |
-
|
442 |
msgid "Local URLs"
|
443 |
msgstr "ローカルURLの扱い"
|
444 |
|
445 |
-
|
446 |
-
|
447 |
msgid "Show local referrers too."
|
448 |
msgstr "ローカルのリファラも表示する"
|
449 |
|
450 |
-
|
451 |
-
|
452 |
msgid "Posts"
|
453 |
msgstr "記事"
|
454 |
|
455 |
-
|
456 |
-
|
457 |
msgid "Pages"
|
458 |
msgstr "固定ページ"
|
459 |
|
460 |
-
|
461 |
-
|
462 |
msgid "Show in lists"
|
463 |
msgstr "リスト表示"
|
464 |
|
465 |
-
|
466 |
-
|
467 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
468 |
msgstr "投稿管理画面に新しいカラムを追加して\"記事別閲覧数\"を表示します。"
|
469 |
|
470 |
-
|
471 |
-
|
472 |
msgid "Start Values"
|
473 |
msgstr "スタートする値"
|
474 |
|
475 |
-
|
476 |
-
|
477 |
msgid "Here you can change the date of first count and add a start count."
|
478 |
msgstr "ここでカウントを開始した日とカウントに加算する値を変更できます。"
|
479 |
|
480 |
-
|
481 |
-
|
482 |
msgid "Start date"
|
483 |
msgstr "開始日"
|
484 |
|
485 |
-
|
486 |
-
|
487 |
msgid "Your old Counter starts at?"
|
488 |
msgstr "前に使っていたカウンターはいつからカウントを開始しましたか?"
|
489 |
|
490 |
-
|
491 |
-
#: counter-options.php:
|
492 |
-
|
493 |
msgid "Start count"
|
494 |
msgstr "カウントスタート"
|
495 |
|
496 |
-
|
497 |
-
|
498 |
msgid "Add this value to \"Total visitors\"."
|
499 |
msgstr "この値を\"総訪問者数\"に追加します。"
|
500 |
|
501 |
-
|
502 |
-
|
503 |
msgid "Add this value to \"Total reads\"."
|
504 |
msgstr "この値を\"総閲覧数\"に追加します。"
|
505 |
|
506 |
-
|
507 |
-
|
508 |
msgid "Stylesheet"
|
509 |
msgstr "スタイルシート"
|
510 |
|
511 |
-
|
512 |
-
|
513 |
msgid "NO Stylesheet in Frontend"
|
514 |
msgstr "トップページにスタイルシートを使わない"
|
515 |
|
516 |
-
|
517 |
-
|
518 |
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
519 |
msgstr "トップページに\"counter.css\"を読み込みません。"
|
520 |
|
521 |
-
|
522 |
-
#: counter-options.php:
|
523 |
-
#@ cpd
|
524 |
-
msgid "Backup"
|
525 |
-
msgstr "バックアップ"
|
526 |
-
|
527 |
-
#: counter-options.php:533
|
528 |
-
#@ cpd
|
529 |
msgid "Entries per pass"
|
530 |
msgstr "許可するエントリ"
|
531 |
|
532 |
-
|
533 |
-
|
534 |
msgid "How many entries should be saved per pass? Default: 10000"
|
535 |
msgstr "何件のエントリを保存しますか? デフォルト: 10000"
|
536 |
|
537 |
-
|
538 |
-
|
539 |
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
540 |
msgstr "PHPのメモリ上限が 50 MB よりも少ない場合、真っ白なページかもっと小さい値にするようエラーメッセージが表示されます。"
|
541 |
|
542 |
-
|
543 |
-
|
544 |
msgid "Debug mode"
|
545 |
msgstr "デバッグモード"
|
546 |
|
547 |
-
|
548 |
-
|
549 |
msgid "Show debug informations at the bottom of all pages."
|
550 |
msgstr "全てのページの最下部にデバッグ情報を表示します。"
|
551 |
|
552 |
-
|
553 |
-
|
554 |
msgid "Update options"
|
555 |
msgstr "オプションの更新"
|
556 |
|
557 |
-
|
558 |
-
#:
|
559 |
-
|
560 |
-
msgid "Mass Bots"
|
561 |
-
msgstr "Bot"
|
562 |
-
|
563 |
-
#: counter-options.php:579
|
564 |
-
#, php-format
|
565 |
-
#@ cpd
|
566 |
-
msgid "Show all IPs with more than %s page views per day"
|
567 |
-
msgstr "一日あたり %s ページ以上閲覧のIPを表示"
|
568 |
-
|
569 |
-
#: counter-options.php:580
|
570 |
-
#: notes.php:71
|
571 |
-
#: userperspan.php:44
|
572 |
-
#@ cpd
|
573 |
-
msgid "show"
|
574 |
-
msgstr "表示"
|
575 |
-
|
576 |
-
#: counter-options.php:588
|
577 |
-
#@ cpd
|
578 |
-
msgid "IP"
|
579 |
-
msgstr "IP"
|
580 |
-
|
581 |
-
#: counter-options.php:589
|
582 |
-
#: notes.php:75
|
583 |
-
#@ cpd
|
584 |
-
#@ default
|
585 |
-
msgid "Date"
|
586 |
-
msgstr "日付"
|
587 |
-
|
588 |
-
#: counter-options.php:590
|
589 |
-
#@ cpd
|
590 |
-
msgid "Client"
|
591 |
-
msgstr "クライアント"
|
592 |
-
|
593 |
-
#: counter-options.php:591
|
594 |
-
#@ cpd
|
595 |
-
msgid "Views"
|
596 |
-
msgstr "閲覧数"
|
597 |
-
|
598 |
-
#: counter-options.php:606
|
599 |
-
#: counter-options.php:622
|
600 |
-
#, php-format
|
601 |
-
#@ cpd
|
602 |
-
msgid "Delete these %s counts"
|
603 |
-
msgstr "これら %s 件を削除"
|
604 |
-
|
605 |
-
#: counter-options.php:638
|
606 |
-
#, php-format
|
607 |
-
#@ cpd
|
608 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
609 |
-
msgstr "カウンターテーブル %s のバックアップをwp-contentディレクトリに作成します(書き込み可能な場合)。"
|
610 |
-
|
611 |
-
#: counter-options.php:642
|
612 |
-
#@ cpd
|
613 |
-
msgid "Backup the database"
|
614 |
-
msgstr "データベースのバックアップ"
|
615 |
-
|
616 |
-
#: counter-options.php:663
|
617 |
-
#: counter-options.php:672
|
618 |
-
#@ cpd
|
619 |
-
msgid "Clean the database"
|
620 |
-
msgstr "データベースのクリーンアップ"
|
621 |
-
|
622 |
-
#: counter-options.php:666
|
623 |
-
#@ cpd
|
624 |
-
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."
|
625 |
-
msgstr "\"スパムデータ\"を削除してカウンターテーブルをクリーンアップできます。<br />以前の\"スパムデータ\"に新規でBotを追加するとデータベースは保護されます。<br />ここではBotフィルターを再度実行したりBotの訪問データを削除できます。"
|
626 |
-
|
627 |
-
#: counter-options.php:681
|
628 |
-
#: counter-options.php:713
|
629 |
-
#@ cpd
|
630 |
-
msgid "Collect old data"
|
631 |
-
msgstr "古いデータの整理"
|
632 |
-
|
633 |
-
#: counter-options.php:686
|
634 |
-
#, php-format
|
635 |
-
#@ cpd
|
636 |
-
msgid "Current size of your counter table %s is %s."
|
637 |
-
msgstr "カウンターテーブル %s のサイズは %s です。"
|
638 |
-
|
639 |
-
#: counter-options.php:688
|
640 |
-
#@ cpd
|
641 |
-
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."
|
642 |
-
msgstr "古いデータを整理し、カウンターテーブルをクリーンアップできます。<br/>月別・国別・記事別の購読数と訪問者数は保存されます。<br/>クライアントとリファラは削除されます。"
|
643 |
-
|
644 |
-
#: counter-options.php:693
|
645 |
-
#, php-format
|
646 |
-
#@ cpd
|
647 |
-
msgid "Currently your collection contains data until %s."
|
648 |
-
msgstr "現在、%s までのデータが整理するデータに含まれています。"
|
649 |
-
|
650 |
-
#: counter-options.php:697
|
651 |
-
#@ cpd
|
652 |
-
msgid "Normally new data will be added to the collection."
|
653 |
-
msgstr "通常、新しいデータは整理したデータに追加されます。"
|
654 |
-
|
655 |
-
#: counter-options.php:703
|
656 |
-
#@ cpd
|
657 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
658 |
-
msgstr "古いデータを消して、現在の内容のみの新しいデータをカウンターテーブルに作成する。"
|
659 |
-
|
660 |
-
#: counter-options.php:704
|
661 |
-
#, php-format
|
662 |
-
#@ cpd
|
663 |
-
msgid "All collected data until %s will deleted."
|
664 |
-
msgstr "%s までの全てのデータは削除されます。"
|
665 |
-
|
666 |
-
#: counter-options.php:709
|
667 |
-
#, php-format
|
668 |
-
#@ cpd
|
669 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
670 |
-
msgstr "過去 %s ヶ月間 + 今月 の記録をカウンターテーブルに保存する。"
|
671 |
-
|
672 |
-
#: counter-options.php:721
|
673 |
-
#@ cpd
|
674 |
-
msgid "Support"
|
675 |
-
msgstr "サポート"
|
676 |
-
|
677 |
-
#: counter-options.php:734
|
678 |
-
#@ cpd
|
679 |
-
msgid "GeoIP - Countries"
|
680 |
-
msgstr "GeoIP - 国別統計"
|
681 |
-
|
682 |
-
#: counter-options.php:737
|
683 |
-
#@ cpd
|
684 |
-
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!"
|
685 |
-
msgstr "IPアドレスをチェックしてGeoIPデータベースと照合することにより全ての記事で国データを取得できます。これにはしばらく時間がかかります。"
|
686 |
-
|
687 |
-
#: counter-options.php:743
|
688 |
-
#@ cpd
|
689 |
-
msgid "Update old counter data"
|
690 |
-
msgstr "過去のカウンターデータを更新"
|
691 |
-
|
692 |
-
#: counter-options.php:750
|
693 |
-
#@ cpd
|
694 |
-
msgid "Download a new version of GeoIP.dat file."
|
695 |
-
msgstr "GeoIP.datファイルの新しいバージョンをダウンロードする。"
|
696 |
-
|
697 |
-
#: counter-options.php:755
|
698 |
-
#@ cpd
|
699 |
-
msgid "Update GeoIP database"
|
700 |
-
msgstr "GeoIPデータベースの更新"
|
701 |
-
|
702 |
-
#: counter-options.php:760
|
703 |
-
#@ cpd
|
704 |
-
msgid "More informations about GeoIP"
|
705 |
-
msgstr "GeoIPの詳しい情報"
|
706 |
-
|
707 |
-
#: counter-options.php:768
|
708 |
-
#@ cpd
|
709 |
-
msgid "ReActivation"
|
710 |
-
msgstr "プラグインを再度有効にする"
|
711 |
-
|
712 |
-
#: counter-options.php:771
|
713 |
-
#@ cpd
|
714 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
715 |
-
msgstr "ここから手動で機能を開始できます。<br/>プラグインを無効にしてもう一度有効にするのと同じ効果です。"
|
716 |
-
|
717 |
-
#: counter-options.php:776
|
718 |
-
#@ cpd
|
719 |
-
msgid "ReActivate the plugin"
|
720 |
-
msgstr "プラグインを再度有効にする"
|
721 |
-
|
722 |
-
#: counter-options.php:784
|
723 |
-
#: counter-options.php:794
|
724 |
-
#@ cpd
|
725 |
-
msgid "Reset the counter"
|
726 |
-
msgstr "カウンターのリセット"
|
727 |
-
|
728 |
-
#: counter-options.php:787
|
729 |
-
#@ cpd
|
730 |
-
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
731 |
-
msgstr "テーブルを全て空にしてリセットできます。全てが0になります!<br />最新のデータが必要な場合はバックアップを作成してください!"
|
732 |
-
|
733 |
-
#: counter-options.php:793
|
734 |
-
#: counter-options.php:816
|
735 |
-
#@ cpd
|
736 |
-
msgid "Yes"
|
737 |
-
msgstr "はい"
|
738 |
-
|
739 |
-
#: counter-options.php:806
|
740 |
-
#@ cpd
|
741 |
-
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
742 |
-
msgstr "もしも\"Count per Day\"を無効にするだけであれば使用しているデータベース上のテーブルは保存され続けます。"
|
743 |
-
|
744 |
-
#: counter-options.php:807
|
745 |
-
#@ cpd
|
746 |
-
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
747 |
-
msgstr "ここから\"Count per Day\"が使用しているテーブルを削除し無効にすることができます。"
|
748 |
-
|
749 |
-
#: counter-options.php:810
|
750 |
-
#@ cpd
|
751 |
-
msgid "WARNING"
|
752 |
-
msgstr "警告"
|
753 |
-
|
754 |
-
#: counter-options.php:811
|
755 |
-
#@ cpd
|
756 |
-
msgid "These tables (with ALL counter data) will be deleted."
|
757 |
-
msgstr "データベース上にある以下のテーブル(全てのカウンターデータ)が削除されます。"
|
758 |
-
|
759 |
-
#: counter-options.php:813
|
760 |
-
#@ cpd
|
761 |
-
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
762 |
-
msgstr "\"Count per Day\"を再インストールした場合もカウントは0から始まります。"
|
763 |
-
|
764 |
-
#: counter-options.php:817
|
765 |
-
#@ cpd
|
766 |
-
msgid "You are sure to disable Count per Day and delete all data?"
|
767 |
-
msgstr "本当にCount per Dayを無効にして全てのデータを削除しますか?"
|
768 |
-
|
769 |
-
#: counter.php:155
|
770 |
-
#: counter.php:1197
|
771 |
-
#@ cpd
|
772 |
msgid "Total reads"
|
773 |
msgstr "総閲覧数"
|
774 |
|
775 |
-
|
776 |
-
#: counter.php:
|
777 |
-
|
778 |
msgid "Reads today"
|
779 |
msgstr "今日の閲覧数"
|
780 |
|
781 |
-
|
782 |
-
#: counter.php:
|
783 |
-
|
784 |
msgid "Reads yesterday"
|
785 |
msgstr "昨日の閲覧数"
|
786 |
|
787 |
-
|
788 |
-
#: counter.php:
|
789 |
-
|
790 |
msgid "Reads last week"
|
791 |
msgstr "先週の閲覧数"
|
792 |
|
793 |
-
|
794 |
-
#: counter.php:
|
795 |
-
|
796 |
msgid "Visitors currently online"
|
797 |
msgstr "現在オンライン中の人数"
|
798 |
|
799 |
-
|
800 |
-
#: counter.php:
|
801 |
-
|
802 |
msgid "Visitors today"
|
803 |
msgstr "今日の訪問者数"
|
804 |
|
805 |
-
|
806 |
-
#: counter.php:
|
807 |
-
|
808 |
msgid "Visitors yesterday"
|
809 |
msgstr "昨日の訪問者数"
|
810 |
|
811 |
-
|
812 |
-
#: counter.php:
|
813 |
-
|
814 |
msgid "Visitors last week"
|
815 |
msgstr "先週の訪問者数"
|
816 |
|
817 |
-
|
818 |
-
#: counter.php:
|
819 |
-
|
820 |
msgid "Visitors"
|
821 |
msgstr "訪問者数"
|
822 |
|
823 |
-
|
824 |
-
#: counter.php:
|
825 |
-
#: counter.php:
|
826 |
-
|
827 |
msgid "Counter starts on"
|
828 |
msgstr "カウント開始日"
|
829 |
|
830 |
-
|
831 |
-
#: counter.php:
|
832 |
-
|
833 |
msgid "Most visited day"
|
834 |
msgstr "最も多かった日"
|
835 |
|
836 |
-
|
837 |
-
|
838 |
msgid "Reads per day"
|
839 |
msgstr "一日あたりの閲覧数"
|
840 |
|
841 |
-
|
842 |
-
#: counter.php:
|
843 |
-
|
844 |
msgid "Map"
|
845 |
msgstr "マップ"
|
846 |
|
847 |
-
|
|
|
848 |
#, php-format
|
849 |
-
#@ cpd
|
850 |
msgid "The %s most visited posts in last %s days:"
|
851 |
msgstr "最も訪問者が多かった記事 %s 件 (過去 %s 日間)"
|
852 |
|
853 |
-
|
854 |
-
|
855 |
msgid "Show"
|
856 |
msgstr "表示"
|
857 |
|
858 |
-
|
|
|
859 |
#: notes.php:42
|
860 |
#: notes.php:76
|
861 |
-
#@ cpd
|
862 |
msgid "Notes"
|
863 |
msgstr "メモ"
|
864 |
|
865 |
-
|
866 |
-
|
867 |
msgid "Other"
|
868 |
msgstr "その他"
|
869 |
|
870 |
-
|
|
|
871 |
#, php-format
|
872 |
-
#@ cpd
|
873 |
msgid "The %s referrers in last %s days:"
|
874 |
msgstr " %s 件のリファラ (過去 %s 日間)"
|
875 |
|
876 |
-
|
877 |
-
|
878 |
msgid "Edit Post"
|
879 |
msgstr "記事編集"
|
880 |
|
881 |
-
|
882 |
-
|
883 |
msgid "Category"
|
884 |
msgstr "カテゴリ"
|
885 |
|
886 |
-
|
887 |
-
|
888 |
msgid "Tag"
|
889 |
msgstr "タグ"
|
890 |
|
891 |
-
|
892 |
-
#:
|
|
|
893 |
#: userperspan.php:63
|
894 |
-
#@ default
|
895 |
msgid "Front page displays"
|
896 |
msgstr "トップページの表示"
|
897 |
|
898 |
-
|
899 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
900 |
msgid "This post"
|
901 |
msgstr "現在の記事"
|
902 |
|
903 |
-
|
904 |
-
|
905 |
msgid "Title"
|
906 |
msgstr "タイトル"
|
907 |
|
908 |
-
|
909 |
-
|
910 |
msgid "drag and drop to sort"
|
911 |
msgstr "ドラッグ アンド ドロップ で並び替え"
|
912 |
|
|
|
913 |
#: notes.php:77
|
914 |
-
#@ default
|
915 |
msgid "Action"
|
916 |
msgstr "アクション"
|
917 |
|
|
|
918 |
#: notes.php:82
|
919 |
-
#@ cpd
|
920 |
msgid "add"
|
921 |
msgstr "追加"
|
922 |
|
|
|
923 |
#: notes.php:98
|
924 |
-
#@ cpd
|
925 |
msgid "save"
|
926 |
msgstr "保存"
|
927 |
|
|
|
928 |
#: notes.php:99
|
929 |
-
#@ cpd
|
930 |
msgid "delete"
|
931 |
msgstr "削除"
|
932 |
|
|
|
933 |
#: notes.php:110
|
934 |
-
#@ cpd
|
935 |
msgid "edit"
|
936 |
msgstr "編集"
|
937 |
|
|
|
938 |
#: userperspan.php:38
|
939 |
-
#@ cpd
|
940 |
msgid "Start"
|
941 |
msgstr "開始"
|
942 |
|
|
|
943 |
#: userperspan.php:40
|
944 |
-
#@ cpd
|
945 |
msgid "End"
|
946 |
msgstr "終了"
|
947 |
|
|
|
948 |
#: userperspan.php:42
|
949 |
-
#@ cpd
|
950 |
msgid "PostID"
|
951 |
msgstr "記事ID"
|
952 |
|
|
|
953 |
#: userperspan.php:50
|
954 |
-
#@ cpd
|
955 |
msgid "no data found"
|
956 |
msgstr "データが見つかりません"
|
957 |
|
958 |
-
|
959 |
-
|
960 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
961 |
msgstr "申し訳ありません、 php.ini が無効になっているか必要な機能(zlib)がインストールされていません。"
|
962 |
|
963 |
-
|
964 |
-
|
965 |
msgid "New GeoIP database installed."
|
966 |
msgstr "新しいGeoIPデータベースがインストールされました。"
|
967 |
|
968 |
-
|
969 |
-
|
970 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
971 |
msgstr "申し訳ありません、エラーが発生しました。 再度トライするか \"geoip\" のディレクトリ権限が777であることを確認してください。"
|
972 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Count Per Day v3.00\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-14 21:55+0900\n"
|
6 |
+
"PO-Revision-Date: 2012-07-14 22:43+0900\n"
|
7 |
"Last-Translator: Juno Hayami <juno.hayami@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
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\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
20 |
|
21 |
+
# @ cpd
|
22 |
+
#: counter-core.php:225
|
23 |
#, php-format
|
|
|
24 |
msgid "\"Count per Day\" updated to version %s."
|
25 |
msgstr "\"Count per Day\" がバージョン %s にアップデートされました。"
|
26 |
|
27 |
+
# @ default
|
28 |
+
#: counter-core.php:612
|
29 |
+
#: counter-options.php:386
|
30 |
+
#: counter-options.php:712
|
31 |
msgid "Settings"
|
32 |
msgstr "設定"
|
33 |
|
34 |
+
# @ cpd
|
35 |
+
#: counter-core.php:677
|
36 |
+
#: counter-options.php:761
|
37 |
+
#: counter.php:186
|
38 |
+
#: counter.php:922
|
39 |
msgid "Reads"
|
40 |
msgstr "総購読数"
|
41 |
|
42 |
+
# @ cpd
|
43 |
+
#: counter-core.php:740
|
44 |
#, php-format
|
|
|
45 |
msgid "Time for Count per Day: <code>%s</code>."
|
46 |
msgstr "Count per Dayでの日時: <code>%s</code>."
|
47 |
|
48 |
+
# @ cpd
|
49 |
+
#: counter-core.php:741
|
50 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
51 |
msgstr "バグ?問題?質問?ヒント?評価?"
|
52 |
|
53 |
+
# @ cpd
|
54 |
+
#: counter-core.php:742
|
55 |
#, php-format
|
|
|
56 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
57 |
msgstr "<a href=\"%s\">plugin page</a> にコメントする。"
|
58 |
|
59 |
+
# @ default
|
60 |
+
#: counter-core.php:743
|
61 |
msgid "License"
|
62 |
msgstr "ライセンス"
|
63 |
|
64 |
+
# @ cpd
|
65 |
+
#: counter-core.php:775
|
66 |
+
#: counter.php:187
|
67 |
+
#: counter.php:1113
|
68 |
+
#: counter.php:1305
|
69 |
msgid "Total visitors"
|
70 |
msgstr "総訪問者数"
|
71 |
|
72 |
+
# @ cpd
|
73 |
+
#: counter-core.php:776
|
74 |
msgid "Visitors online"
|
75 |
msgstr "オンライン中の訪問者数"
|
76 |
|
77 |
+
# @ cpd
|
78 |
+
#: counter-core.php:777
|
79 |
+
#: counter.php:1309
|
80 |
msgid "Visitors per month"
|
81 |
msgstr "月別訪問者数"
|
82 |
|
83 |
+
# @ cpd
|
84 |
+
#: counter-core.php:778
|
85 |
+
#: counter.php:1304
|
86 |
msgid "Reads per month"
|
87 |
msgstr "月別閲覧数"
|
88 |
|
89 |
+
# @ cpd
|
90 |
+
#: counter-core.php:779
|
91 |
+
#: counter-options.php:806
|
92 |
msgid "Visitors per post"
|
93 |
msgstr "記事別の訪問者数"
|
94 |
|
95 |
+
# @ cpd
|
96 |
+
#: counter-core.php:780
|
97 |
msgid "Latest Counts"
|
98 |
msgstr "最近のカウント"
|
99 |
|
100 |
+
# @ cpd
|
101 |
+
#: counter-core.php:781
|
102 |
+
#: counter.php:193
|
103 |
+
#: counter.php:292
|
104 |
+
#: counter.php:1115
|
105 |
+
#: counter.php:1310
|
106 |
#: userperspan.php:34
|
|
|
107 |
msgid "Visitors per day"
|
108 |
msgstr "一日あたりの訪問者数"
|
109 |
|
110 |
+
# @ default
|
111 |
+
# @ cpd
|
112 |
+
#: counter-core.php:782
|
113 |
+
#: counter-options.php:836
|
114 |
+
#: counter-options.php:840
|
115 |
+
msgid "Search strings"
|
116 |
+
msgstr "検索文字列"
|
117 |
+
|
118 |
+
# @ default
|
119 |
+
#: counter-core.php:783
|
120 |
msgid "Plugin"
|
121 |
msgstr "プラグイン"
|
122 |
|
123 |
+
# @ cpd
|
124 |
+
#: counter-core.php:786
|
125 |
+
#: counter-options.php:832
|
126 |
msgid "Browsers"
|
127 |
msgstr "ブラウザ"
|
128 |
|
129 |
+
# @ cpd
|
130 |
+
#: counter-core.php:787
|
131 |
msgid "Referrer"
|
132 |
msgstr "リファラ"
|
133 |
|
134 |
+
# @ cpd
|
135 |
+
#: counter-core.php:791
|
136 |
msgid "Reads per Country"
|
137 |
msgstr "国ごとの閲覧数"
|
138 |
|
139 |
+
# @ cpd
|
140 |
+
#: counter-core.php:792
|
141 |
msgid "Visitors per Country"
|
142 |
msgstr "国ごとの訪問者数"
|
143 |
|
144 |
+
# @ cpd
|
145 |
+
#: counter-core.php:807
|
146 |
+
#: counter.php:1227
|
147 |
msgid "Statistics"
|
148 |
msgstr "統計"
|
149 |
|
150 |
+
# @ cpd
|
151 |
+
#: counter-core.php:977
|
152 |
msgid "Backup failed! Cannot open file"
|
153 |
msgstr "バックアップに失敗しました! ファイルが開けません。"
|
154 |
|
155 |
+
# @ cpd
|
156 |
+
#: counter-core.php:1004
|
157 |
#, php-format
|
|
|
158 |
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
159 |
msgstr "%s 件の記録をバックアップ処理中。 %s 件の記録が完了しています。"
|
160 |
|
161 |
+
# @ cpd
|
162 |
+
#: counter-core.php:1091
|
163 |
+
msgid "Your can download the backup files here and now."
|
164 |
+
msgstr "今すぐにここからバックアップファイルをダウンロードできます。"
|
165 |
|
166 |
+
# @ cpd
|
167 |
+
#: counter-core.php:1095
|
168 |
+
#: counter-core.php:1103
|
169 |
#, php-format
|
|
|
170 |
msgid "Backup of counter table saved in %s."
|
171 |
msgstr "カウンターテーブルのバックアップを %s に保存しました。"
|
172 |
|
173 |
+
# @ cpd
|
174 |
+
#: counter-core.php:1097
|
175 |
+
#: counter-core.php:1105
|
176 |
#, php-format
|
|
|
177 |
msgid "Backup of counter options and collection saved in %s."
|
178 |
msgstr "カウンターオプションのバックアップと記録は %s に保存されました。"
|
179 |
|
180 |
+
# @ cpd
|
181 |
+
#: counter-core.php:1161
|
182 |
+
msgid "Error while reading backup file!"
|
183 |
+
msgstr "バックアップファイルの読み取り中にエラーが発生しました!"
|
184 |
+
|
185 |
+
# @ cpd
|
186 |
+
#: counter-core.php:1165
|
187 |
+
#, php-format
|
188 |
+
msgid "The backup was added to counter table %s."
|
189 |
+
msgstr "カウンターテーブル %s にバックアップを追加しました。"
|
190 |
+
|
191 |
+
# @ cpd
|
192 |
+
#: counter-core.php:1167
|
193 |
+
#, php-format
|
194 |
+
msgid "The counter table %s was restored from backup."
|
195 |
+
msgstr "カウンターテーブル %s をバックアップから復元しました。"
|
196 |
+
|
197 |
+
# @ cpd
|
198 |
+
#: counter-core.php:1184
|
199 |
+
msgid "Options restored from backup."
|
200 |
+
msgstr "オプションをバックアップから復元しました。"
|
201 |
+
|
202 |
+
# @ cpd
|
203 |
+
#: counter-options.php:52
|
204 |
msgid "Options updated"
|
205 |
msgstr "オプションを更新しました"
|
206 |
|
207 |
+
# @ cpd
|
208 |
+
#: counter-options.php:63
|
209 |
#, php-format
|
|
|
210 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
211 |
msgstr "訪問者の国情報を更新。%s 上の <b>%s</b> 件がまだ国と関連付けられていません。"
|
212 |
|
213 |
+
# @ cpd
|
214 |
+
#: counter-options.php:66
|
215 |
msgid "update next"
|
216 |
msgstr "次を更新"
|
217 |
|
218 |
+
# @ cpd
|
219 |
+
#: counter-options.php:106
|
220 |
#, php-format
|
|
|
221 |
msgid "Mass Bots cleaned. %s counts deleted."
|
222 |
msgstr "Botをクリーンアップしました。 %s 件が削除されました。"
|
223 |
|
224 |
+
# @ cpd
|
225 |
+
#: counter-options.php:113
|
226 |
#, php-format
|
|
|
227 |
msgid "Database cleaned. %s rows deleted."
|
228 |
msgstr "データベースをクリーンアップしました。 %s 行削除されました。"
|
229 |
|
230 |
+
# @ cpd
|
231 |
+
#: counter-options.php:123
|
232 |
msgid "Counter reseted."
|
233 |
msgstr "カウンターがリセットされました。"
|
234 |
|
235 |
+
# @ cpd
|
236 |
+
#: counter-options.php:128
|
237 |
+
#: counter-options.php:691
|
238 |
msgid "UNINSTALL Count per Day"
|
239 |
msgstr "Count per Day のアンインストール"
|
240 |
|
241 |
+
# @ cpd
|
242 |
+
#: counter-options.php:133
|
243 |
#: counter-options.php:134
|
244 |
#: counter-options.php:135
|
|
|
245 |
#, php-format
|
|
|
246 |
msgid "Table %s deleted"
|
247 |
msgstr "%s テーブルが削除されました"
|
248 |
|
249 |
+
# @ cpd
|
250 |
+
#: counter-options.php:136
|
251 |
msgid "Options deleted"
|
252 |
msgstr "オプションを削除しました"
|
253 |
|
254 |
+
# @ cpd
|
255 |
+
#: counter-options.php:169
|
256 |
msgid "Collection in progress..."
|
257 |
msgstr "整理中です…"
|
258 |
|
259 |
+
# @ cpd
|
260 |
+
#: counter-options.php:263
|
261 |
msgid "Get Visitors per Post..."
|
262 |
msgstr "記事別の訪問者数を取得…"
|
263 |
|
264 |
+
# @ cpd
|
265 |
+
#: counter-options.php:284
|
266 |
msgid "Delete old data..."
|
267 |
msgstr "古いデータを削除します…"
|
268 |
|
269 |
+
# @ cpd
|
270 |
+
#: counter-options.php:308
|
271 |
#, php-format
|
|
|
272 |
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
273 |
msgstr "%s までのカウンター記録を整理し、カウンターテーブル %s を最適化しました (最適化前のサイズ = %s > 最適化後のサイズ = %s)。"
|
274 |
|
275 |
+
# @ cpd
|
276 |
+
#: counter-options.php:317
|
277 |
msgid "Installation of \"Count per Day\" checked"
|
278 |
msgstr "\"Count per Day\" のインストールが完了しました。"
|
279 |
|
280 |
+
# @ cpd
|
281 |
+
#: counter-options.php:332
|
282 |
+
msgid "Old search strings deleted"
|
283 |
+
msgstr "古い検索文字列を削除しました"
|
284 |
+
|
285 |
+
# @ cpd
|
286 |
+
#: counter-options.php:362
|
287 |
+
#: counter-options.php:677
|
288 |
msgid "Uninstall"
|
289 |
msgstr "アンインストール"
|
290 |
|
291 |
+
# @ cpd
|
292 |
+
#: counter-options.php:363
|
293 |
msgid "Click here"
|
294 |
msgstr "Click here"
|
295 |
|
296 |
+
# @ cpd
|
297 |
+
#: counter-options.php:363
|
298 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
299 |
msgstr "\"Count per Day\" を無効化してアンインストール"
|
300 |
|
301 |
+
# @ default
|
302 |
+
#: counter-options.php:385
|
303 |
+
#: counter-options.php:711
|
304 |
msgid "Tools"
|
305 |
msgstr "ツール"
|
306 |
|
307 |
+
# @ cpd
|
308 |
+
#: counter-options.php:402
|
309 |
+
#: massbots.php:36
|
310 |
+
msgid "Mass Bots"
|
311 |
+
msgstr "Bot"
|
312 |
+
|
313 |
+
# @ cpd
|
314 |
+
#: counter-options.php:406
|
315 |
+
#, php-format
|
316 |
+
msgid "Show all IPs with more than %s page views per day"
|
317 |
+
msgstr "一日あたり %s ページ以上閲覧のIPを表示"
|
318 |
+
|
319 |
+
# @ cpd
|
320 |
+
#: counter-options.php:407
|
321 |
+
#: notes.php:71
|
322 |
+
#: userperspan.php:44
|
323 |
+
msgid "show"
|
324 |
+
msgstr "表示"
|
325 |
+
|
326 |
+
# @ cpd
|
327 |
+
#: counter-options.php:415
|
328 |
+
msgid "IP"
|
329 |
+
msgstr "IP"
|
330 |
+
|
331 |
+
# @ cpd
|
332 |
+
# @ default
|
333 |
+
#: counter-options.php:416
|
334 |
+
#: notes.php:75
|
335 |
+
msgid "Date"
|
336 |
+
msgstr "日付"
|
337 |
+
|
338 |
+
# @ cpd
|
339 |
+
#: counter-options.php:417
|
340 |
+
msgid "Client"
|
341 |
+
msgstr "クライアント"
|
342 |
+
|
343 |
+
# @ cpd
|
344 |
+
#: counter-options.php:418
|
345 |
+
msgid "Views"
|
346 |
+
msgstr "閲覧数"
|
347 |
+
|
348 |
+
# @ cpd
|
349 |
+
#: counter-options.php:433
|
350 |
+
#: counter-options.php:449
|
351 |
+
#, php-format
|
352 |
+
msgid "Delete these %s counts"
|
353 |
+
msgstr "これら %s 件を削除"
|
354 |
+
|
355 |
+
# @ cpd
|
356 |
+
#: counter-options.php:461
|
357 |
+
#: counter-options.php:898
|
358 |
+
msgid "Backup"
|
359 |
+
msgstr "バックアップ"
|
360 |
+
|
361 |
+
# @ cpd
|
362 |
+
#: counter-options.php:465
|
363 |
+
#, php-format
|
364 |
+
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
365 |
+
msgstr "カウンターテーブル %s のバックアップをwp-contentディレクトリに作成します(書き込み可能な場合)。"
|
366 |
+
|
367 |
+
# @ cpd
|
368 |
+
#: counter-options.php:468
|
369 |
+
msgid "Download only"
|
370 |
+
msgstr "ダウンロードのみ"
|
371 |
+
|
372 |
+
# @ cpd
|
373 |
+
#: counter-options.php:472
|
374 |
+
msgid "Backup the database"
|
375 |
+
msgstr "データベースのバックアップ"
|
376 |
+
|
377 |
+
# @ cpd
|
378 |
+
#: counter-options.php:500
|
379 |
+
msgid "Settings and collections"
|
380 |
+
msgstr "設定とオプション"
|
381 |
+
|
382 |
+
# @ cpd
|
383 |
+
#: counter-options.php:505
|
384 |
+
#, php-format
|
385 |
+
msgid "Counter table %s"
|
386 |
+
msgstr "カウンターテーブル %s"
|
387 |
+
|
388 |
+
# @ cpd
|
389 |
+
#: counter-options.php:512
|
390 |
+
#, php-format
|
391 |
+
msgid "Add data from the backup file %s to existing counter table?"
|
392 |
+
msgstr "現在あるカウンターテーブルにバックアップファイル %s からデータを追加しますか?"
|
393 |
+
|
394 |
+
# @ cpd
|
395 |
+
#: counter-options.php:512
|
396 |
+
msgid "Add"
|
397 |
+
msgstr "追加"
|
398 |
+
|
399 |
+
# @ cpd
|
400 |
+
#: counter-options.php:516
|
401 |
+
#, php-format
|
402 |
+
msgid "Restore data from the backup file %s ?"
|
403 |
+
msgstr "バックアップファイル %s からデータを復元しますか?"
|
404 |
+
|
405 |
+
# @ cpd
|
406 |
+
#: counter-options.php:516
|
407 |
+
msgid "Restore"
|
408 |
+
msgstr "復元"
|
409 |
+
|
410 |
+
# @ cpd
|
411 |
+
#: counter-options.php:518
|
412 |
+
msgid "Delete"
|
413 |
+
msgstr "削除"
|
414 |
+
|
415 |
+
# @ cpd
|
416 |
+
#: counter-options.php:519
|
417 |
+
#, php-format
|
418 |
+
msgid "Delete the backup file %s ?"
|
419 |
+
msgstr "バックアップファイル %s を削除しますか?"
|
420 |
+
|
421 |
+
# @ cpd
|
422 |
+
#: counter-options.php:525
|
423 |
+
msgid "add backup to current counter table"
|
424 |
+
msgstr "新しいカウンターテーブルにバックアップを追加"
|
425 |
+
|
426 |
+
# @ cpd
|
427 |
+
#: counter-options.php:526
|
428 |
+
msgid "replace current counter table with with backup"
|
429 |
+
msgstr "カウンターテーブルをバックアップで置き換える"
|
430 |
+
|
431 |
+
# @ cpd
|
432 |
+
#: counter-options.php:527
|
433 |
+
msgid "delete backup file"
|
434 |
+
msgstr "バックアップファイルを削除"
|
435 |
+
|
436 |
+
# @ cpd
|
437 |
+
#: counter-options.php:538
|
438 |
+
#: counter-options.php:546
|
439 |
+
msgid "Clean the database"
|
440 |
+
msgstr "データベースのクリーンアップ"
|
441 |
+
|
442 |
+
# @ cpd
|
443 |
+
#: counter-options.php:541
|
444 |
+
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."
|
445 |
+
msgstr "\"スパムデータ\"を削除してカウンターテーブルをクリーンアップできます。<br />以前の\"スパムデータ\"に新規でBotを追加するとデータベースは保護されます。<br />ここではBotフィルターを再度実行したりBotの訪問データを削除できます。"
|
446 |
+
|
447 |
+
# @ cpd
|
448 |
+
#: counter-options.php:552
|
449 |
+
#, php-format
|
450 |
+
msgid "Delete search strings older than %s days."
|
451 |
+
msgstr "%s 日より古い検索文字列を削除"
|
452 |
+
|
453 |
+
# @ cpd
|
454 |
+
#: counter-options.php:554
|
455 |
+
msgid "Delete search strings"
|
456 |
+
msgstr "検索文字列を削除する"
|
457 |
+
|
458 |
+
# @ cpd
|
459 |
+
#: counter-options.php:563
|
460 |
+
#: counter-options.php:595
|
461 |
+
msgid "Collect old data"
|
462 |
+
msgstr "古いデータの整理"
|
463 |
+
|
464 |
+
# @ cpd
|
465 |
+
#: counter-options.php:568
|
466 |
+
#, php-format
|
467 |
+
msgid "Current size of your counter table %s is %s."
|
468 |
+
msgstr "カウンターテーブル %s のサイズは %s です。"
|
469 |
+
|
470 |
+
# @ cpd
|
471 |
+
#: counter-options.php:570
|
472 |
+
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."
|
473 |
+
msgstr "古いデータを整理し、カウンターテーブルをクリーンアップできます。<br/>月別・国別・記事別の購読数と訪問者数は保存されます。<br/>クライアントとリファラは削除されます。"
|
474 |
+
|
475 |
+
# @ cpd
|
476 |
+
#: counter-options.php:575
|
477 |
+
#, php-format
|
478 |
+
msgid "Currently your collection contains data until %s."
|
479 |
+
msgstr "現在、%s までのデータが整理するデータに含まれています。"
|
480 |
+
|
481 |
+
# @ cpd
|
482 |
+
#: counter-options.php:579
|
483 |
+
msgid "Normally new data will be added to the collection."
|
484 |
+
msgstr "通常、新しいデータは整理したデータに追加されます。"
|
485 |
+
|
486 |
+
# @ cpd
|
487 |
+
#: counter-options.php:585
|
488 |
+
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
489 |
+
msgstr "古いデータを消して、現在の内容のみの新しいデータをカウンターテーブルに作成する。"
|
490 |
+
|
491 |
+
# @ cpd
|
492 |
+
#: counter-options.php:586
|
493 |
+
#, php-format
|
494 |
+
msgid "All collected data until %s will deleted."
|
495 |
+
msgstr "%s までの全てのデータは削除されます。"
|
496 |
+
|
497 |
+
# @ cpd
|
498 |
+
#: counter-options.php:591
|
499 |
+
#, php-format
|
500 |
+
msgid "Keep entries of last %s full months + current month in counter table."
|
501 |
+
msgstr "過去 %s ヶ月間 + 今月 の記録をカウンターテーブルに保存する。"
|
502 |
+
|
503 |
+
# @ cpd
|
504 |
+
#: counter-options.php:608
|
505 |
+
msgid "GeoIP - Countries"
|
506 |
+
msgstr "GeoIP - 国別統計"
|
507 |
+
|
508 |
+
# @ cpd
|
509 |
+
#: counter-options.php:611
|
510 |
+
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!"
|
511 |
+
msgstr "IPアドレスをチェックしてGeoIPデータベースと照合することにより全ての記事で国データを取得できます。これにはしばらく時間がかかります。"
|
512 |
+
|
513 |
+
# @ cpd
|
514 |
+
#: counter-options.php:617
|
515 |
+
msgid "Update old counter data"
|
516 |
+
msgstr "過去のカウンターデータを更新"
|
517 |
+
|
518 |
+
# @ cpd
|
519 |
+
#: counter-options.php:624
|
520 |
+
msgid "Download a new version of GeoIP.dat file."
|
521 |
+
msgstr "GeoIP.datファイルの新しいバージョンをダウンロードする。"
|
522 |
+
|
523 |
+
# @ cpd
|
524 |
+
#: counter-options.php:629
|
525 |
+
msgid "Update GeoIP database"
|
526 |
+
msgstr "GeoIPデータベースの更新"
|
527 |
+
|
528 |
+
# @ cpd
|
529 |
+
#: counter-options.php:634
|
530 |
+
msgid "More informations about GeoIP"
|
531 |
+
msgstr "GeoIPの詳しい情報"
|
532 |
+
|
533 |
+
# @ cpd
|
534 |
+
#: counter-options.php:642
|
535 |
+
msgid "ReActivation"
|
536 |
+
msgstr "プラグインを再度有効にする"
|
537 |
+
|
538 |
+
# @ cpd
|
539 |
+
#: counter-options.php:645
|
540 |
+
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
541 |
+
msgstr "ここから手動で機能を開始できます。<br/>プラグインを無効にしてもう一度有効にするのと同じ効果です。"
|
542 |
+
|
543 |
+
# @ cpd
|
544 |
+
#: counter-options.php:650
|
545 |
+
msgid "ReActivate the plugin"
|
546 |
+
msgstr "プラグインを再度有効にする"
|
547 |
+
|
548 |
+
# @ cpd
|
549 |
+
#: counter-options.php:658
|
550 |
+
#: counter-options.php:668
|
551 |
+
msgid "Reset the counter"
|
552 |
+
msgstr "カウンターのリセット"
|
553 |
+
|
554 |
+
# @ cpd
|
555 |
+
#: counter-options.php:661
|
556 |
+
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
557 |
+
msgstr "テーブルを全て空にしてリセットできます。全てが0になります!<br />最新のデータが必要な場合はバックアップを作成してください!"
|
558 |
+
|
559 |
+
# @ cpd
|
560 |
+
#: counter-options.php:667
|
561 |
+
#: counter-options.php:690
|
562 |
+
msgid "Yes"
|
563 |
+
msgstr "はい"
|
564 |
+
|
565 |
+
# @ cpd
|
566 |
+
#: counter-options.php:680
|
567 |
+
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
568 |
+
msgstr "もしも\"Count per Day\"を無効にするだけであれば使用しているデータベース上のテーブルは保存され続けます。"
|
569 |
+
|
570 |
+
# @ cpd
|
571 |
+
#: counter-options.php:681
|
572 |
+
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
573 |
+
msgstr "ここから\"Count per Day\"が使用しているテーブルを削除し無効にすることができます。"
|
574 |
+
|
575 |
+
# @ cpd
|
576 |
+
#: counter-options.php:684
|
577 |
+
msgid "WARNING"
|
578 |
+
msgstr "警告"
|
579 |
+
|
580 |
+
# @ cpd
|
581 |
+
#: counter-options.php:685
|
582 |
+
msgid "These tables (with ALL counter data) will be deleted."
|
583 |
+
msgstr "データベース上にある以下のテーブル(全てのカウンターデータ)が削除されます。"
|
584 |
+
|
585 |
+
# @ cpd
|
586 |
+
#: counter-options.php:687
|
587 |
+
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
588 |
+
msgstr "\"Count per Day\"を再インストールした場合もカウントは0から始まります。"
|
589 |
+
|
590 |
+
# @ cpd
|
591 |
+
#: counter-options.php:691
|
592 |
+
msgid "You are sure to disable Count per Day and delete all data?"
|
593 |
+
msgstr "本当にCount per Dayを無効にして全てのデータを削除しますか?"
|
594 |
+
|
595 |
+
# @ cpd
|
596 |
+
#: counter-options.php:699
|
597 |
+
msgid "Support"
|
598 |
+
msgstr "サポート"
|
599 |
+
|
600 |
+
# @ cpd
|
601 |
+
#: counter-options.php:720
|
602 |
msgid "Counter"
|
603 |
msgstr "カウンター"
|
604 |
|
605 |
+
# @ cpd
|
606 |
+
#: counter-options.php:724
|
607 |
msgid "Online time"
|
608 |
msgstr "オンライン判定時間(秒)"
|
609 |
|
610 |
+
# @ cpd
|
611 |
+
#: counter-options.php:725
|
612 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
613 |
msgstr "オンラインの数をカウントする秒数。 ダッシュボード上の\"オンライン中の訪問者数\"で使用。"
|
614 |
|
615 |
+
# @ cpd
|
616 |
+
#: counter-options.php:728
|
617 |
msgid "Logged on Users"
|
618 |
msgstr "ログインユーザー"
|
619 |
|
620 |
+
# @ cpd
|
621 |
+
#: counter-options.php:730
|
622 |
msgid "count too"
|
623 |
msgstr "カウントに含む"
|
624 |
|
625 |
+
# @ cpd
|
626 |
+
#: counter-options.php:731
|
627 |
msgid "until User Level"
|
628 |
msgstr "次のユーザーレベルまで"
|
629 |
|
630 |
+
# @ cpd
|
631 |
+
#: counter-options.php:742
|
632 |
msgid "Auto counter"
|
633 |
msgstr "自動でカウントする"
|
634 |
|
635 |
+
# @ cpd
|
636 |
+
#: counter-options.php:743
|
637 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
638 |
msgstr "テンプレートの変更なしで自動的に個別記事や固定ページもカウントする"
|
639 |
|
640 |
+
# @ cpd
|
641 |
+
#: counter-options.php:746
|
642 |
msgid "Bots to ignore"
|
643 |
msgstr "無視するBot"
|
644 |
|
645 |
+
# @ cpd
|
646 |
+
#: counter-options.php:750
|
647 |
msgid "Anonymous IP"
|
648 |
msgstr "匿名IP"
|
649 |
|
650 |
+
# @ cpd
|
651 |
+
#: counter-options.php:754
|
652 |
msgid "Cache"
|
653 |
msgstr "キャッシュ"
|
654 |
|
655 |
+
# @ cpd
|
656 |
+
#: counter-options.php:755
|
657 |
msgid "I use a cache plugin. Count these visits with ajax."
|
658 |
msgstr "キャッシュプラグインを使用しています。ajaxでこれらの訪問者もカウントします。"
|
659 |
|
660 |
+
# @ cpd
|
661 |
+
#: counter-options.php:758
|
662 |
msgid "Clients and referrers"
|
663 |
msgstr "クライアントとリファラ"
|
664 |
|
665 |
+
# @ cpd
|
666 |
+
#: counter-options.php:761
|
667 |
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."
|
668 |
msgstr "クライアントとリファラを表示・保存します。<br />多くのデータベース容量を必要としますがあなたのサイトへの訪問者情報をより細かく把握できます。"
|
669 |
|
670 |
+
# @ cpd
|
671 |
+
#: counter-options.php:763
|
672 |
msgid "Save URL only, no query string."
|
673 |
msgstr "URLのみ保存し、クエリ部分は含まない。"
|
674 |
|
675 |
+
# @ default
|
676 |
+
#: counter-options.php:771
|
677 |
msgid "Dashboard"
|
678 |
msgstr "ダッシュボード"
|
679 |
|
680 |
+
# @ cpd
|
681 |
+
#: counter-options.php:787
|
682 |
msgid "Who can see it"
|
683 |
msgstr "閲覧を許可する人"
|
684 |
|
685 |
+
# @ cpd
|
686 |
+
#: counter-options.php:796
|
687 |
msgid "custom"
|
688 |
msgstr "カスタム"
|
689 |
|
690 |
+
# @ cpd
|
691 |
+
#: counter-options.php:798
|
692 |
msgid "and higher are allowed to see the statistics page."
|
693 |
msgstr "これ以上の権限なら統計ページの閲覧を許可します。"
|
694 |
|
695 |
+
# @ cpd
|
696 |
+
#: counter-options.php:800
|
697 |
#, php-format
|
|
|
698 |
msgid "Set the %s capability %s a user need:"
|
699 |
msgstr "ユーザに必要な %s 権限 %s の設定:"
|
700 |
|
701 |
+
# @ cpd
|
702 |
+
#: counter-options.php:807
|
703 |
+
#: counter-options.php:811
|
704 |
msgid "How many posts do you want to see on dashboard page?"
|
705 |
msgstr "ダッシュボードで何件まで閲覧しますか?"
|
706 |
|
707 |
+
# @ cpd
|
708 |
+
#: counter-options.php:810
|
709 |
msgid "Latest Counts - Posts"
|
710 |
msgstr "最近のカウント - 記事"
|
711 |
|
712 |
+
# @ cpd
|
713 |
+
#: counter-options.php:814
|
714 |
msgid "Latest Counts - Days"
|
715 |
msgstr "最近のカウント - 日別"
|
716 |
|
717 |
+
# @ cpd
|
718 |
+
#: counter-options.php:815
|
719 |
+
#: counter-options.php:819
|
720 |
+
#: counter-options.php:841
|
721 |
msgid "How many days do you want look back?"
|
722 |
+
msgstr "今日から何日前まで表示しますか?"
|
723 |
|
724 |
+
# @ cpd
|
725 |
+
#: counter-options.php:818
|
726 |
msgid "Chart - Days"
|
727 |
msgstr "チャート(グラフ) - 日別"
|
728 |
|
729 |
+
# @ cpd
|
730 |
+
#: counter-options.php:822
|
731 |
msgid "Chart - Height"
|
732 |
msgstr "チャート(グラフ) - 高さ"
|
733 |
|
734 |
+
# @ cpd
|
735 |
+
#: counter-options.php:823
|
736 |
msgid "Height of the biggest bar"
|
737 |
msgstr "最大値のときの高さ"
|
738 |
|
739 |
+
# @ cpd
|
740 |
+
#: counter-options.php:827
|
741 |
msgid "Countries"
|
742 |
msgstr "国情報"
|
743 |
|
744 |
+
# @ cpd
|
745 |
+
#: counter-options.php:828
|
746 |
msgid "How many countries do you want to see on dashboard page?"
|
747 |
msgstr "ダッシュボード上で何ヶ国まで閲覧しますか?"
|
748 |
|
749 |
+
# @ cpd
|
750 |
+
#: counter-options.php:833
|
751 |
msgid "Substring of the user agent, separated by comma"
|
752 |
msgstr "ユーザーエージェントは種類ごとにカンマで区切ってください"
|
753 |
|
754 |
+
# @ cpd
|
755 |
+
#: counter-options.php:836
|
756 |
msgid "Referrers - Entries"
|
757 |
msgstr "リファラ - 投稿別"
|
758 |
|
759 |
+
# @ cpd
|
760 |
+
#: counter-options.php:837
|
761 |
msgid "How many referrers do you want to see on dashboard page?"
|
762 |
msgstr "ダッシュボード上で何件のリファラを表示しますか?"
|
763 |
|
764 |
+
# @ cpd
|
765 |
+
#: counter-options.php:840
|
766 |
msgid "Referrers - Days"
|
767 |
msgstr "リファラ - 日数"
|
768 |
|
769 |
+
# @ cpd
|
770 |
+
#: counter-options.php:844
|
771 |
msgid "Local URLs"
|
772 |
msgstr "ローカルURLの扱い"
|
773 |
|
774 |
+
# @ cpd
|
775 |
+
#: counter-options.php:845
|
776 |
msgid "Show local referrers too."
|
777 |
msgstr "ローカルのリファラも表示する"
|
778 |
|
779 |
+
# @ default
|
780 |
+
#: counter-options.php:852
|
781 |
msgid "Posts"
|
782 |
msgstr "記事"
|
783 |
|
784 |
+
# @ default
|
785 |
+
#: counter-options.php:852
|
786 |
msgid "Pages"
|
787 |
msgstr "固定ページ"
|
788 |
|
789 |
+
# @ cpd
|
790 |
+
#: counter-options.php:855
|
791 |
msgid "Show in lists"
|
792 |
msgstr "リスト表示"
|
793 |
|
794 |
+
# @ cpd
|
795 |
+
#: counter-options.php:856
|
796 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
797 |
msgstr "投稿管理画面に新しいカラムを追加して\"記事別閲覧数\"を表示します。"
|
798 |
|
799 |
+
# @ cpd
|
800 |
+
#: counter-options.php:863
|
801 |
msgid "Start Values"
|
802 |
msgstr "スタートする値"
|
803 |
|
804 |
+
# @ cpd
|
805 |
+
#: counter-options.php:867
|
806 |
msgid "Here you can change the date of first count and add a start count."
|
807 |
msgstr "ここでカウントを開始した日とカウントに加算する値を変更できます。"
|
808 |
|
809 |
+
# @ cpd
|
810 |
+
#: counter-options.php:871
|
811 |
msgid "Start date"
|
812 |
msgstr "開始日"
|
813 |
|
814 |
+
# @ cpd
|
815 |
+
#: counter-options.php:872
|
816 |
msgid "Your old Counter starts at?"
|
817 |
msgstr "前に使っていたカウンターはいつからカウントを開始しましたか?"
|
818 |
|
819 |
+
# @ cpd
|
820 |
+
#: counter-options.php:875
|
821 |
+
#: counter-options.php:879
|
822 |
msgid "Start count"
|
823 |
msgstr "カウントスタート"
|
824 |
|
825 |
+
# @ cpd
|
826 |
+
#: counter-options.php:876
|
827 |
msgid "Add this value to \"Total visitors\"."
|
828 |
msgstr "この値を\"総訪問者数\"に追加します。"
|
829 |
|
830 |
+
# @ cpd
|
831 |
+
#: counter-options.php:880
|
832 |
msgid "Add this value to \"Total reads\"."
|
833 |
msgstr "この値を\"総閲覧数\"に追加します。"
|
834 |
|
835 |
+
# @ cpd
|
836 |
+
#: counter-options.php:887
|
837 |
msgid "Stylesheet"
|
838 |
msgstr "スタイルシート"
|
839 |
|
840 |
+
# @ cpd
|
841 |
+
#: counter-options.php:890
|
842 |
msgid "NO Stylesheet in Frontend"
|
843 |
msgstr "トップページにスタイルシートを使わない"
|
844 |
|
845 |
+
# @ cpd
|
846 |
+
#: counter-options.php:891
|
847 |
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
848 |
msgstr "トップページに\"counter.css\"を読み込みません。"
|
849 |
|
850 |
+
# @ cpd
|
851 |
+
#: counter-options.php:901
|
|
|
|
|
|
|
|
|
|
|
|
|
852 |
msgid "Entries per pass"
|
853 |
msgstr "許可するエントリ"
|
854 |
|
855 |
+
# @ cpd
|
856 |
+
#: counter-options.php:904
|
857 |
msgid "How many entries should be saved per pass? Default: 10000"
|
858 |
msgstr "何件のエントリを保存しますか? デフォルト: 10000"
|
859 |
|
860 |
+
# @ cpd
|
861 |
+
#: counter-options.php:909
|
862 |
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
863 |
msgstr "PHPのメモリ上限が 50 MB よりも少ない場合、真っ白なページかもっと小さい値にするようエラーメッセージが表示されます。"
|
864 |
|
865 |
+
# @ cpd
|
866 |
+
#: counter-options.php:917
|
867 |
msgid "Debug mode"
|
868 |
msgstr "デバッグモード"
|
869 |
|
870 |
+
# @ cpd
|
871 |
+
#: counter-options.php:919
|
872 |
msgid "Show debug informations at the bottom of all pages."
|
873 |
msgstr "全てのページの最下部にデバッグ情報を表示します。"
|
874 |
|
875 |
+
# @ cpd
|
876 |
+
#: counter-options.php:924
|
877 |
msgid "Update options"
|
878 |
msgstr "オプションの更新"
|
879 |
|
880 |
+
# @ cpd
|
881 |
+
#: counter.php:182
|
882 |
+
#: counter.php:1300
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
883 |
msgid "Total reads"
|
884 |
msgstr "総閲覧数"
|
885 |
|
886 |
+
# @ cpd
|
887 |
+
#: counter.php:183
|
888 |
+
#: counter.php:1301
|
889 |
msgid "Reads today"
|
890 |
msgstr "今日の閲覧数"
|
891 |
|
892 |
+
# @ cpd
|
893 |
+
#: counter.php:184
|
894 |
+
#: counter.php:1302
|
895 |
msgid "Reads yesterday"
|
896 |
msgstr "昨日の閲覧数"
|
897 |
|
898 |
+
# @ cpd
|
899 |
+
#: counter.php:185
|
900 |
+
#: counter.php:1303
|
901 |
msgid "Reads last week"
|
902 |
msgstr "先週の閲覧数"
|
903 |
|
904 |
+
# @ cpd
|
905 |
+
#: counter.php:188
|
906 |
+
#: counter.php:1311
|
907 |
msgid "Visitors currently online"
|
908 |
msgstr "現在オンライン中の人数"
|
909 |
|
910 |
+
# @ cpd
|
911 |
+
#: counter.php:189
|
912 |
+
#: counter.php:1306
|
913 |
msgid "Visitors today"
|
914 |
msgstr "今日の訪問者数"
|
915 |
|
916 |
+
# @ cpd
|
917 |
+
#: counter.php:190
|
918 |
+
#: counter.php:1307
|
919 |
msgid "Visitors yesterday"
|
920 |
msgstr "昨日の訪問者数"
|
921 |
|
922 |
+
# @ cpd
|
923 |
+
#: counter.php:191
|
924 |
+
#: counter.php:1308
|
925 |
msgid "Visitors last week"
|
926 |
msgstr "先週の訪問者数"
|
927 |
|
928 |
+
# @ cpd
|
929 |
+
#: counter.php:192
|
930 |
+
#: counter.php:946
|
931 |
msgid "Visitors"
|
932 |
msgstr "訪問者数"
|
933 |
|
934 |
+
# @ cpd
|
935 |
+
#: counter.php:194
|
936 |
+
#: counter.php:872
|
937 |
+
#: counter.php:1312
|
938 |
msgid "Counter starts on"
|
939 |
msgstr "カウント開始日"
|
940 |
|
941 |
+
# @ cpd
|
942 |
+
#: counter.php:195
|
943 |
+
#: counter.php:196
|
944 |
msgid "Most visited day"
|
945 |
msgstr "最も多かった日"
|
946 |
|
947 |
+
# @ cpd
|
948 |
+
#: counter.php:291
|
949 |
msgid "Reads per day"
|
950 |
msgstr "一日あたりの閲覧数"
|
951 |
|
952 |
+
# @ cpd
|
953 |
+
#: counter.php:382
|
954 |
+
#: counter.php:1144
|
955 |
msgid "Map"
|
956 |
msgstr "マップ"
|
957 |
|
958 |
+
# @ cpd
|
959 |
+
#: counter.php:705
|
960 |
#, php-format
|
|
|
961 |
msgid "The %s most visited posts in last %s days:"
|
962 |
msgstr "最も訪問者が多かった記事 %s 件 (過去 %s 日間)"
|
963 |
|
964 |
+
# @ default
|
965 |
+
#: counter.php:821
|
966 |
msgid "Show"
|
967 |
msgstr "表示"
|
968 |
|
969 |
+
# @ cpd
|
970 |
+
#: counter.php:823
|
971 |
#: notes.php:42
|
972 |
#: notes.php:76
|
|
|
973 |
msgid "Notes"
|
974 |
msgstr "メモ"
|
975 |
|
976 |
+
# @ cpd
|
977 |
+
#: counter.php:861
|
978 |
msgid "Other"
|
979 |
msgstr "その他"
|
980 |
|
981 |
+
# @ cpd
|
982 |
+
#: counter.php:892
|
983 |
#, php-format
|
|
|
984 |
msgid "The %s referrers in last %s days:"
|
985 |
msgstr " %s 件のリファラ (過去 %s 日間)"
|
986 |
|
987 |
+
# @ default
|
988 |
+
#: counter.php:1034
|
989 |
msgid "Edit Post"
|
990 |
msgstr "記事編集"
|
991 |
|
992 |
+
# @ default
|
993 |
+
#: counter.php:1043
|
994 |
msgid "Category"
|
995 |
msgstr "カテゴリ"
|
996 |
|
997 |
+
# @ default
|
998 |
+
#: counter.php:1046
|
999 |
msgid "Tag"
|
1000 |
msgstr "タグ"
|
1001 |
|
1002 |
+
# @ default
|
1003 |
+
#: counter.php:1049
|
1004 |
+
#: massbots.php:53
|
1005 |
#: userperspan.php:63
|
|
|
1006 |
msgid "Front page displays"
|
1007 |
msgstr "トップページの表示"
|
1008 |
|
1009 |
+
# @ cpd
|
1010 |
+
#: counter.php:1089
|
1011 |
+
#, php-format
|
1012 |
+
msgid "The %s most searched strings:"
|
1013 |
+
msgstr "最も検索された単語 (過去 %s 日間)"
|
1014 |
+
|
1015 |
+
# @ cpd
|
1016 |
+
#: counter.php:1098
|
1017 |
+
#, php-format
|
1018 |
+
msgid "The search strings of the last %s days:"
|
1019 |
+
msgstr "最近 %s 日間で検索された単語"
|
1020 |
+
|
1021 |
+
# @ cpd
|
1022 |
+
#: counter.php:1299
|
1023 |
msgid "This post"
|
1024 |
msgstr "現在の記事"
|
1025 |
|
1026 |
+
# @ default
|
1027 |
+
#: counter.php:1323
|
1028 |
msgid "Title"
|
1029 |
msgstr "タイトル"
|
1030 |
|
1031 |
+
# @ cpd
|
1032 |
+
#: counter.php:1342
|
1033 |
msgid "drag and drop to sort"
|
1034 |
msgstr "ドラッグ アンド ドロップ で並び替え"
|
1035 |
|
1036 |
+
# @ default
|
1037 |
#: notes.php:77
|
|
|
1038 |
msgid "Action"
|
1039 |
msgstr "アクション"
|
1040 |
|
1041 |
+
# @ cpd
|
1042 |
#: notes.php:82
|
|
|
1043 |
msgid "add"
|
1044 |
msgstr "追加"
|
1045 |
|
1046 |
+
# @ cpd
|
1047 |
#: notes.php:98
|
|
|
1048 |
msgid "save"
|
1049 |
msgstr "保存"
|
1050 |
|
1051 |
+
# @ cpd
|
1052 |
#: notes.php:99
|
|
|
1053 |
msgid "delete"
|
1054 |
msgstr "削除"
|
1055 |
|
1056 |
+
# @ cpd
|
1057 |
#: notes.php:110
|
|
|
1058 |
msgid "edit"
|
1059 |
msgstr "編集"
|
1060 |
|
1061 |
+
# @ cpd
|
1062 |
#: userperspan.php:38
|
|
|
1063 |
msgid "Start"
|
1064 |
msgstr "開始"
|
1065 |
|
1066 |
+
# @ cpd
|
1067 |
#: userperspan.php:40
|
|
|
1068 |
msgid "End"
|
1069 |
msgstr "終了"
|
1070 |
|
1071 |
+
# @ cpd
|
1072 |
#: userperspan.php:42
|
|
|
1073 |
msgid "PostID"
|
1074 |
msgstr "記事ID"
|
1075 |
|
1076 |
+
# @ cpd
|
1077 |
#: userperspan.php:50
|
|
|
1078 |
msgid "no data found"
|
1079 |
msgstr "データが見つかりません"
|
1080 |
|
1081 |
+
# @ cpd
|
1082 |
+
#: geoip/geoip.php:90
|
1083 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
1084 |
msgstr "申し訳ありません、 php.ini が無効になっているか必要な機能(zlib)がインストールされていません。"
|
1085 |
|
1086 |
+
# @ cpd
|
1087 |
+
#: geoip/geoip.php:114
|
1088 |
msgid "New GeoIP database installed."
|
1089 |
msgstr "新しいGeoIPデータベースがインストールされました。"
|
1090 |
|
1091 |
+
# @ cpd
|
1092 |
+
#: geoip/geoip.php:116
|
1093 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
1094 |
msgstr "申し訳ありません、エラーが発生しました。 再度トライするか \"geoip\" のディレクトリ権限が777であることを確認してください。"
|
1095 |
|
locale/cpd-pt_BR.mo
CHANGED
Binary file
|
locale/cpd-pt_BR.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Count
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2008-09-03 20:03+0100\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -19,524 +19,524 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#@ cpd
|
22 |
-
#: counter-options.php:
|
23 |
msgid "Options updated"
|
24 |
msgstr "Opções atualizadas"
|
25 |
|
26 |
#@ cpd
|
27 |
-
#: counter-options.php:
|
28 |
#, php-format
|
29 |
msgid "Database cleaned. %s rows deleted."
|
30 |
msgstr "Banco de dados limpo. %s linhas apagadas."
|
31 |
|
32 |
#@ cpd
|
33 |
-
#: counter-options.php:
|
34 |
-
#: counter-options.php:
|
35 |
msgid "UNINSTALL Count per Day"
|
36 |
msgstr "DESINSTALAR o Count per Day"
|
37 |
|
38 |
#@ cpd
|
39 |
-
#: counter-options.php:132
|
40 |
#: counter-options.php:133
|
41 |
#: counter-options.php:134
|
|
|
42 |
#, php-format
|
43 |
msgid "Table %s deleted"
|
44 |
msgstr "Tabela %s apagada"
|
45 |
|
46 |
#@ cpd
|
47 |
-
#: counter-options.php:
|
48 |
msgid "Options deleted"
|
49 |
msgstr "Opções apagadas"
|
50 |
|
51 |
#@ cpd
|
52 |
-
#: counter-options.php:
|
53 |
-
#: counter-options.php:
|
54 |
msgid "Uninstall"
|
55 |
msgstr "Desinstalar"
|
56 |
|
57 |
#@ cpd
|
58 |
-
#: counter-options.php:
|
59 |
msgid "Click here"
|
60 |
msgstr "Clique aqui"
|
61 |
|
62 |
#@ cpd
|
63 |
-
#: counter-options.php:
|
64 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
65 |
msgstr "Para terminar a desinstalação e desativar o \"Count per Day\". "
|
66 |
|
67 |
#@ cpd
|
68 |
-
#: counter-options.php:
|
69 |
msgid "Online time"
|
70 |
msgstr "Período online"
|
71 |
|
72 |
#@ cpd
|
73 |
-
#: counter-options.php:
|
74 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
75 |
msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na página do painel."
|
76 |
|
77 |
#@ cpd
|
78 |
-
#: counter-options.php:
|
79 |
msgid "Logged on Users"
|
80 |
msgstr "Usuários logados"
|
81 |
|
82 |
#@ cpd
|
83 |
-
#: counter-options.php:
|
84 |
msgid "count too"
|
85 |
msgstr "contar também"
|
86 |
|
87 |
#@ cpd
|
88 |
-
#: counter-options.php:
|
89 |
msgid "Auto counter"
|
90 |
msgstr "Autocontador"
|
91 |
|
92 |
#@ cpd
|
93 |
-
#: counter-options.php:
|
94 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
95 |
msgstr "Conta automaticamente posts e páginas, sem a necessidade de alterações em templates."
|
96 |
|
97 |
#@ cpd
|
98 |
-
#: counter-options.php:
|
99 |
msgid "Bots to ignore"
|
100 |
msgstr "Bots a serem ignorados"
|
101 |
|
102 |
#@ cpd
|
103 |
-
#: counter-options.php:
|
104 |
msgid "Update options"
|
105 |
msgstr "Atualizar opções"
|
106 |
|
107 |
#@ cpd
|
108 |
-
#: counter-options.php:
|
109 |
-
#: counter-options.php:
|
110 |
msgid "Clean the database"
|
111 |
msgstr "Limpar o banco de dados"
|
112 |
|
113 |
#@ cpd
|
114 |
-
#: counter-options.php:
|
115 |
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."
|
116 |
msgstr "Você pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso você adicione novos bots acima, os \"dados de spam\" deles continuarão no banco de dados. <br />Para limpar as visitas desses bots, você pode executar novamente o filtro de bot aqui."
|
117 |
|
118 |
#@ cpd
|
119 |
-
#: counter-options.php:
|
120 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
121 |
msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados serão preservadas."
|
122 |
|
123 |
#@ cpd
|
124 |
-
#: counter-options.php:
|
125 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
126 |
msgstr "A opção a seguir permite apagar definitivamente as tabelas do banco de dados, além de desabilitar o plugin."
|
127 |
|
128 |
#@ cpd
|
129 |
-
#: counter-options.php:
|
130 |
msgid "WARNING"
|
131 |
msgstr "ATENÇÃO"
|
132 |
|
133 |
#@ cpd
|
134 |
-
#: counter-options.php:
|
135 |
msgid "These tables (with ALL counter data) will be deleted."
|
136 |
msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) serão apagadas:"
|
137 |
|
138 |
#@ cpd
|
139 |
-
#: counter-options.php:
|
140 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
141 |
msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciarão a partir do 0."
|
142 |
|
143 |
#@ cpd
|
144 |
-
#: counter-options.php:
|
145 |
-
#: counter-options.php:
|
146 |
msgid "Yes"
|
147 |
msgstr "Sim, quero"
|
148 |
|
149 |
#@ cpd
|
150 |
-
#: counter-options.php:
|
151 |
msgid "You are sure to disable Count per Day and delete all data?"
|
152 |
msgstr "Confirma a desativação do Count per Day e a exclusão de todos os dados?"
|
153 |
|
154 |
#@ cpd
|
155 |
-
#: counter-core.php:
|
156 |
-
#: counter.php:
|
157 |
msgid "Statistics"
|
158 |
msgstr "Estatísticas"
|
159 |
|
160 |
#@ cpd
|
161 |
-
#: counter-core.php:
|
162 |
-
#: counter.php:
|
163 |
-
#: counter.php:
|
164 |
-
#: counter.php:
|
165 |
msgid "Total visitors"
|
166 |
msgstr "Total de visitas"
|
167 |
|
168 |
#@ cpd
|
169 |
-
#: counter.php:
|
170 |
-
#: counter.php:
|
171 |
msgid "Visitors currently online"
|
172 |
msgstr "Visitantes online"
|
173 |
|
174 |
#@ cpd
|
175 |
-
#: counter.php:
|
176 |
-
#: counter.php:
|
177 |
msgid "Visitors today"
|
178 |
msgstr "Visitas hoje"
|
179 |
|
180 |
#@ cpd
|
181 |
-
#: counter.php:
|
182 |
-
#: counter.php:
|
183 |
msgid "Visitors yesterday"
|
184 |
msgstr "Visitas ontem"
|
185 |
|
186 |
#@ cpd
|
187 |
-
#: counter.php:
|
188 |
-
#: counter.php:
|
189 |
msgid "Visitors last week"
|
190 |
msgstr "Visitas semana passada"
|
191 |
|
192 |
#@ cpd
|
193 |
-
#: counter.php:
|
194 |
-
#: counter.php:
|
195 |
-
#: counter.php:
|
196 |
msgid "Counter starts on"
|
197 |
msgstr "Início da contagem"
|
198 |
|
199 |
#@ cpd
|
200 |
-
#: counter-core.php:
|
201 |
-
#: counter.php:
|
202 |
-
#: counter.php:
|
203 |
-
#: counter.php:
|
204 |
-
#: counter.php:
|
205 |
#: userperspan.php:34
|
206 |
msgid "Visitors per day"
|
207 |
msgstr "(média) de visitas por dia"
|
208 |
|
209 |
#@ cpd
|
210 |
-
#: counter-core.php:
|
211 |
-
#: counter.php:
|
212 |
msgid "Visitors per month"
|
213 |
msgstr "Visitas por mês"
|
214 |
|
215 |
#@ cpd
|
216 |
-
#: counter-core.php:
|
217 |
-
#: counter-options.php:
|
218 |
msgid "Visitors per post"
|
219 |
msgstr "Visitas por post"
|
220 |
|
221 |
#@ cpd
|
222 |
-
#: counter-options.php:
|
223 |
#, php-format
|
224 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
225 |
msgstr "Países atualizados. <b>%s</b> lançamentos em %s menos países faltando"
|
226 |
|
227 |
#@ cpd
|
228 |
-
#: counter-options.php:
|
229 |
msgid "update next"
|
230 |
msgstr "Atualizar proximo"
|
231 |
|
232 |
#@ cpd
|
233 |
-
#: counter-options.php:
|
234 |
#, php-format
|
235 |
msgid "Mass Bots cleaned. %s counts deleted."
|
236 |
msgstr "Mass Bots apagados. %s ocorrências deletadas."
|
237 |
|
238 |
#@ cpd
|
239 |
-
#: counter-options.php:
|
240 |
msgid "Counter reseted."
|
241 |
msgstr "Contador reiniciado."
|
242 |
|
243 |
#@ default
|
244 |
-
#: counter-options.php:
|
245 |
msgid "Dashboard"
|
246 |
msgstr "Painel"
|
247 |
|
248 |
#@ cpd
|
249 |
-
#: counter-options.php:
|
250 |
-
#: counter-options.php:
|
251 |
msgid "How many posts do you want to see on dashboard page?"
|
252 |
msgstr "Quantos posts você deseja visualizar no Painel?"
|
253 |
|
254 |
#@ cpd
|
255 |
-
#: counter-options.php:
|
256 |
msgid "Latest Counts - Posts"
|
257 |
msgstr "Contagens Recentes - Posts"
|
258 |
|
259 |
#@ cpd
|
260 |
-
#: counter-options.php:
|
261 |
msgid "Latest Counts - Days"
|
262 |
msgstr "Contagens Recentes - Dias"
|
263 |
|
264 |
#@ cpd
|
265 |
-
#: counter-options.php:
|
266 |
-
#: counter-options.php:
|
267 |
-
#: counter-options.php:
|
268 |
msgid "How many days do you want look back?"
|
269 |
msgstr "Quantos dias atrás você quer ver?"
|
270 |
|
271 |
#@ cpd
|
272 |
-
#: counter-options.php:
|
273 |
msgid "Chart - Days"
|
274 |
msgstr "Gráfico - Dias"
|
275 |
|
276 |
#@ cpd
|
277 |
-
#: counter-options.php:
|
278 |
msgid "Chart - Height"
|
279 |
msgstr "Gráfico - Altura"
|
280 |
|
281 |
#@ cpd
|
282 |
-
#: counter-options.php:
|
283 |
msgid "Height of the biggest bar"
|
284 |
msgstr "Altura da barra maior"
|
285 |
|
286 |
#@ cpd
|
287 |
-
#: counter-options.php:
|
288 |
msgid "Countries"
|
289 |
msgstr "Países"
|
290 |
|
291 |
#@ cpd
|
292 |
-
#: counter-options.php:
|
293 |
msgid "How many countries do you want to see on dashboard page?"
|
294 |
msgstr "Quantos países você quer visualizar no Painel?"
|
295 |
|
296 |
#@ cpd
|
297 |
-
#: counter-options.php:
|
298 |
msgid "Show in lists"
|
299 |
msgstr "Exibir em listas"
|
300 |
|
301 |
#@ cpd
|
302 |
-
#: counter-options.php:
|
303 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
304 |
msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualização de posts."
|
305 |
|
306 |
#@ cpd
|
307 |
-
#: counter-options.php:
|
308 |
msgid "GeoIP - Countries"
|
309 |
msgstr "GeoIP - Países"
|
310 |
|
311 |
#@ cpd
|
312 |
-
#: counter-options.php:
|
313 |
msgid "Update old counter data"
|
314 |
msgstr "Atualizar dados de contadores antigos"
|
315 |
|
316 |
#@ cpd
|
317 |
-
#: counter-options.php:
|
318 |
msgid "Update GeoIP database"
|
319 |
msgstr "Atualizar Base de Dados GeoIP"
|
320 |
|
321 |
#@ cpd
|
322 |
-
#: counter-options.php:
|
323 |
msgid "Download a new version of GeoIP.dat file."
|
324 |
msgstr "Baixe uma nova versão do arquivo GeoIP.dat"
|
325 |
|
326 |
#@ cpd
|
327 |
-
#: counter-options.php:
|
328 |
msgid "More informations about GeoIP"
|
329 |
msgstr "Mais informações sobre o GeoIP"
|
330 |
|
331 |
#@ cpd
|
332 |
-
#: counter-options.php:
|
333 |
-
#: massbots.php:
|
334 |
msgid "Mass Bots"
|
335 |
msgstr "Mass Bots"
|
336 |
|
337 |
#@ cpd
|
338 |
-
#: counter-options.php:
|
339 |
#, php-format
|
340 |
msgid "Show all IPs with more than %s page views per day"
|
341 |
msgstr "Exibir todos os IPs com mais de %s páginas exibidas por dia"
|
342 |
|
343 |
#@ cpd
|
344 |
-
#: counter-options.php:
|
345 |
#: notes.php:71
|
346 |
#: userperspan.php:44
|
347 |
msgid "show"
|
348 |
msgstr "exibir"
|
349 |
|
350 |
#@ cpd
|
351 |
-
#: counter-options.php:
|
352 |
msgid "IP"
|
353 |
msgstr "IP"
|
354 |
|
355 |
#@ cpd
|
356 |
#@ default
|
357 |
-
#: counter-options.php:
|
358 |
#: notes.php:75
|
359 |
msgid "Date"
|
360 |
msgstr "Data"
|
361 |
|
362 |
#@ cpd
|
363 |
-
#: counter-options.php:
|
364 |
msgid "Client"
|
365 |
msgstr "Cliente"
|
366 |
|
367 |
#@ cpd
|
368 |
-
#: counter-options.php:
|
369 |
msgid "Views"
|
370 |
msgstr "Exibições"
|
371 |
|
372 |
#@ cpd
|
373 |
-
#: counter-options.php:
|
374 |
-
#: counter-options.php:
|
375 |
#, php-format
|
376 |
msgid "Delete these %s counts"
|
377 |
msgstr "Deletar estes %s contadores"
|
378 |
|
379 |
#@ cpd
|
380 |
-
#: counter-options.php:
|
381 |
-
#: counter-options.php:
|
382 |
msgid "Reset the counter"
|
383 |
msgstr "Reiniciar o contador"
|
384 |
|
385 |
#@ cpd
|
386 |
-
#: counter-options.php:
|
387 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
388 |
msgstr "Você pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se você precisar das informações atuais!"
|
389 |
|
390 |
#@ cpd
|
391 |
-
#: counter.php:
|
392 |
#, php-format
|
393 |
msgid "The %s most visited posts in last %s days:"
|
394 |
msgstr "Os %s posts mais visitados nos últimos %s dias:"
|
395 |
|
396 |
#@ cpd
|
397 |
-
#: counter.php:
|
398 |
msgid "Other"
|
399 |
msgstr "Outro"
|
400 |
|
401 |
#@ default
|
402 |
-
#: counter.php:
|
403 |
-
#: massbots.php:
|
404 |
#: userperspan.php:63
|
405 |
msgid "Front page displays"
|
406 |
msgstr "Exibições da primeira página"
|
407 |
|
408 |
#@ default
|
409 |
-
#: counter-core.php:
|
410 |
-
#: counter-options.php:
|
411 |
-
#: counter-options.php:
|
412 |
msgid "Settings"
|
413 |
msgstr "Configurações"
|
414 |
|
415 |
#@ cpd
|
416 |
-
#: counter-core.php:
|
417 |
-
#: counter-options.php:
|
418 |
-
#: counter.php:
|
419 |
-
#: counter.php:
|
420 |
msgid "Reads"
|
421 |
msgstr "Leituras"
|
422 |
|
423 |
#@ cpd
|
424 |
-
#: counter.php:
|
425 |
msgid "This post"
|
426 |
msgstr "Este post"
|
427 |
|
428 |
#@ cpd
|
429 |
-
#: counter.php:
|
430 |
msgid "Reads per day"
|
431 |
msgstr "Leituras por dia"
|
432 |
|
433 |
#@ cpd
|
434 |
-
#: counter-core.php:
|
435 |
-
#: counter-options.php:
|
436 |
msgid "Browsers"
|
437 |
msgstr "Navegadores"
|
438 |
|
439 |
#@ cpd
|
440 |
-
#: counter-core.php:
|
441 |
msgid "Latest Counts"
|
442 |
msgstr "Contagens Recentes"
|
443 |
|
444 |
#@ cpd
|
445 |
-
#: counter-core.php:
|
446 |
msgid "Reads per Country"
|
447 |
msgstr "Leituras por País"
|
448 |
|
449 |
#@ cpd
|
450 |
-
#: geoip/geoip.php:
|
451 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
452 |
msgstr "Desculpe, funções necessárias (zlib) não instaladas ou habilitadas no php.ini."
|
453 |
|
454 |
#@ cpd
|
455 |
-
#: geoip/geoip.php:
|
456 |
msgid "New GeoIP database installed."
|
457 |
msgstr "Nova base de dados GeoIP instalada."
|
458 |
|
459 |
#@ cpd
|
460 |
-
#: geoip/geoip.php:
|
461 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
462 |
msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permissões do diretório \"geoip\" estão setadas para 777."
|
463 |
|
464 |
#@ cpd
|
465 |
-
#: counter-options.php:
|
466 |
msgid "until User Level"
|
467 |
msgstr "usuários do nível"
|
468 |
|
469 |
#@ cpd
|
470 |
-
#: counter-options.php:
|
471 |
msgid "Start Values"
|
472 |
msgstr "Valor inicial"
|
473 |
|
474 |
#@ cpd
|
475 |
-
#: counter-options.php:
|
476 |
msgid "Here you can change the date of first count and add a start count."
|
477 |
msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
|
478 |
|
479 |
#@ cpd
|
480 |
-
#: counter-options.php:
|
481 |
msgid "Start date"
|
482 |
msgstr "Data inicial"
|
483 |
|
484 |
#@ cpd
|
485 |
-
#: counter-options.php:
|
486 |
msgid "Your old Counter starts at?"
|
487 |
msgstr "Sua contagem antiga começa em?"
|
488 |
|
489 |
#@ cpd
|
490 |
-
#: counter-options.php:
|
491 |
-
#: counter-options.php:
|
492 |
msgid "Start count"
|
493 |
msgstr "Contagem inicial"
|
494 |
|
495 |
#@ cpd
|
496 |
-
#: counter-options.php:
|
497 |
msgid "Add this value to \"Total visitors\"."
|
498 |
msgstr "Adicione este valor para \"Total visitors\"."
|
499 |
|
500 |
#@ cpd
|
501 |
-
#: counter-options.php:
|
502 |
msgid "Support"
|
503 |
msgstr "Suporte"
|
504 |
|
505 |
#@ cpd
|
506 |
-
#: counter-core.php:
|
507 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
508 |
msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
|
509 |
|
510 |
#@ cpd
|
511 |
-
#: counter-core.php:
|
512 |
#, php-format
|
513 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
514 |
msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
|
515 |
|
516 |
#@ default
|
517 |
-
#: counter.php:
|
518 |
msgid "Show"
|
519 |
msgstr "Mostrar"
|
520 |
|
521 |
#@ cpd
|
522 |
-
#: counter.php:
|
523 |
#: notes.php:42
|
524 |
#: notes.php:76
|
525 |
msgid "Notes"
|
526 |
msgstr "Notas"
|
527 |
|
528 |
#@ default
|
529 |
-
#: counter.php:
|
530 |
msgid "Edit Post"
|
531 |
msgstr "Editar Post"
|
532 |
|
533 |
#@ default
|
534 |
-
#: counter-core.php:
|
535 |
msgid "Plugin"
|
536 |
msgstr "Plugin"
|
537 |
|
538 |
#@ cpd
|
539 |
-
#: counter-core.php:
|
540 |
#, php-format
|
541 |
msgid "Time for Count per Day: <code>%s</code>."
|
542 |
msgstr "Tempo para Contagem por Dia: <code>%s</code>."
|
@@ -567,66 +567,66 @@ msgid "edit"
|
|
567 |
msgstr "Editar"
|
568 |
|
569 |
#@ cpd
|
570 |
-
#: counter-options.php:
|
571 |
msgid "Anonymous IP"
|
572 |
msgstr "IP Anônimo"
|
573 |
|
574 |
#@ cpd
|
575 |
-
#: counter-options.php:
|
576 |
msgid "Cache"
|
577 |
msgstr "Cache"
|
578 |
|
579 |
#@ cpd
|
580 |
-
#: counter-options.php:
|
581 |
msgid "I use a cache plugin. Count these visits with ajax."
|
582 |
msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
|
583 |
|
584 |
#@ cpd
|
585 |
-
#: counter-options.php:
|
586 |
msgid "Substring of the user agent, separated by comma"
|
587 |
msgstr "Substring do usuário agente, separado por vírgula"
|
588 |
|
589 |
#@ cpd
|
590 |
-
#: counter-options.php:
|
591 |
msgid "Add this value to \"Total reads\"."
|
592 |
msgstr "Adicione este valor ao \"Total de Leituras\"."
|
593 |
|
594 |
#@ cpd
|
595 |
-
#: counter-options.php:
|
596 |
msgid "Debug mode"
|
597 |
msgstr "Modo de depuração"
|
598 |
|
599 |
#@ cpd
|
600 |
-
#: counter-options.php:
|
601 |
msgid "Show debug informations at the bottom of all pages."
|
602 |
msgstr "Mostrar informações de depuração na base de todas as páginas."
|
603 |
|
604 |
#@ cpd
|
605 |
-
#: counter.php:
|
606 |
-
#: counter.php:
|
607 |
msgid "Total reads"
|
608 |
msgstr "Total de Leituras"
|
609 |
|
610 |
#@ cpd
|
611 |
-
#: counter.php:
|
612 |
-
#: counter.php:
|
613 |
msgid "Reads today"
|
614 |
msgstr "Leituras Hoje"
|
615 |
|
616 |
#@ cpd
|
617 |
-
#: counter.php:
|
618 |
-
#: counter.php:
|
619 |
msgid "Reads yesterday"
|
620 |
msgstr "Leituras Ontem"
|
621 |
|
622 |
#@ cpd
|
623 |
-
#: counter-core.php:
|
624 |
msgid "Visitors per Country"
|
625 |
msgstr "Visitantes por Paíis"
|
626 |
|
627 |
#@ cpd
|
628 |
-
#: counter.php:
|
629 |
-
#: counter.php:
|
630 |
msgid "Map"
|
631 |
msgstr "Mapa"
|
632 |
|
@@ -651,321 +651,444 @@ msgid "no data found"
|
|
651 |
msgstr "Não foram encontrados dados"
|
652 |
|
653 |
#@ cpd
|
654 |
-
#: counter-options.php:
|
655 |
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!"
|
656 |
msgstr "Você pode obter os dados dos países para todas as entradas no banco de dados checando novamente os endereços IP na base de dados GeoIP. Isto pode demorar um pouco!"
|
657 |
|
658 |
#@ cpd
|
659 |
-
#: counter-options.php:
|
660 |
msgid "Counter"
|
661 |
msgstr "contador"
|
662 |
|
663 |
#@ cpd
|
664 |
-
#: counter-options.php:
|
665 |
msgid "Clients and referrers"
|
666 |
msgstr "Clientes e Referências"
|
667 |
|
668 |
#@ cpd
|
669 |
-
#: counter-options.php:
|
670 |
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."
|
671 |
msgstr "Salvar e Exibir Clientes e Referências"
|
672 |
|
673 |
#@ cpd
|
674 |
-
#: counter-options.php:
|
675 |
msgid "Local URLs"
|
676 |
msgstr "URLs Locais"
|
677 |
|
678 |
#@ cpd
|
679 |
-
#: counter-options.php:
|
680 |
msgid "Show local referrers too."
|
681 |
msgstr "Também exibir referência local."
|
682 |
|
683 |
#@ default
|
684 |
-
#: counter-options.php:
|
685 |
msgid "Posts"
|
686 |
msgstr "Posts"
|
687 |
|
688 |
#@ default
|
689 |
-
#: counter-options.php:
|
690 |
msgid "Pages"
|
691 |
msgstr "Páginas"
|
692 |
|
693 |
#@ cpd
|
694 |
-
#: counter.php:
|
695 |
-
#: counter.php:
|
696 |
msgid "Reads last week"
|
697 |
msgstr "Leituras na semana passada"
|
698 |
|
699 |
#@ default
|
700 |
-
#: counter.php:
|
701 |
msgid "Category"
|
702 |
msgstr "Categoria"
|
703 |
|
704 |
#@ default
|
705 |
-
#: counter.php:
|
706 |
msgid "Tag"
|
707 |
msgstr "Teg"
|
708 |
|
709 |
#@ default
|
710 |
-
#: counter-core.php:
|
711 |
msgid "License"
|
712 |
msgstr "License"
|
713 |
|
714 |
#@ cpd
|
715 |
-
#: counter-core.php:
|
716 |
-
#: counter.php:
|
717 |
msgid "Reads per month"
|
718 |
msgstr "Leituras por mês"
|
719 |
|
720 |
#@ cpd
|
721 |
-
#: counter-core.php:
|
722 |
msgid "Referrer"
|
723 |
msgstr "Referência"
|
724 |
|
725 |
#@ default
|
726 |
-
#: counter.php:
|
727 |
msgid "Title"
|
728 |
msgstr "Título"
|
729 |
|
730 |
#@ cpd
|
731 |
-
#: counter-options.php:
|
732 |
msgid "Referrers - Entries"
|
733 |
msgstr "Referência - entradas"
|
734 |
|
735 |
#@ cpd
|
736 |
-
#: counter-options.php:
|
737 |
msgid "How many referrers do you want to see on dashboard page?"
|
738 |
msgstr "Quantas referência você quer ver no painel?"
|
739 |
|
740 |
#@ cpd
|
741 |
-
#: counter-options.php:
|
742 |
msgid "Referrers - Days"
|
743 |
msgstr "Referência - Dias"
|
744 |
|
745 |
#@ cpd
|
746 |
-
#: counter.php:
|
747 |
#, php-format
|
748 |
msgid "The %s referrers in last %s days:"
|
749 |
msgstr "AA %s referências nos últimos %s dias:"
|
750 |
|
751 |
#@ cpd
|
752 |
-
#: counter-core.php:
|
753 |
msgid "Visitors online"
|
754 |
msgstr "Visitantes online"
|
755 |
|
756 |
#@ cpd
|
757 |
-
#: counter-core.php:
|
758 |
#, php-format
|
759 |
msgid "\"Count per Day\" updated to version %s."
|
760 |
msgstr "Atualizar \"Count per Day\" para a versão %s."
|
761 |
|
762 |
#@ cpd
|
763 |
-
#: counter-core.php:
|
764 |
msgid "Backup failed! Cannot open file"
|
765 |
msgstr "Backup falhou. O arquivo não abriu"
|
766 |
|
767 |
#@ cpd
|
768 |
-
#: counter-core.php:
|
769 |
#, php-format
|
770 |
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
771 |
msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
|
772 |
|
773 |
#@ cpd
|
774 |
-
#: counter-core.php:
|
775 |
-
|
776 |
-
msgstr "Seu diretório wp-content não é gravável. Contudo você pode copiar o conteúdo desta caixa para um arquivo de texto."
|
777 |
-
|
778 |
-
#@ cpd
|
779 |
-
#: counter-core.php:1033
|
780 |
#, php-format
|
781 |
msgid "Backup of counter table saved in %s."
|
782 |
msgstr "Backup da tabela do contador salvo em %s."
|
783 |
|
784 |
#@ cpd
|
785 |
-
#: counter-core.php:
|
|
|
786 |
#, php-format
|
787 |
msgid "Backup of counter options and collection saved in %s."
|
788 |
msgstr "Backup das opções de contador e acumuladores salvas em %s."
|
789 |
|
790 |
#@ cpd
|
791 |
-
#: counter-options.php:
|
792 |
msgid "Collection in progress..."
|
793 |
msgstr "Acumulador em progresso..."
|
794 |
|
795 |
#@ cpd
|
796 |
-
#: counter-options.php:
|
797 |
msgid "Get Visitors per Post..."
|
798 |
msgstr "Obter visitas por Post..."
|
799 |
|
800 |
#@ cpd
|
801 |
-
#: counter-options.php:
|
802 |
msgid "Delete old data..."
|
803 |
msgstr "Deletar dados antigos..."
|
804 |
|
805 |
#@ cpd
|
806 |
-
#: counter-options.php:
|
807 |
#, php-format
|
808 |
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
809 |
msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s > tamanho posterior = %s)."
|
810 |
|
811 |
#@ cpd
|
812 |
-
#: counter-options.php:
|
813 |
msgid "Installation of \"Count per Day\" checked"
|
814 |
msgstr "Instalação do \"Count per Day\" checada"
|
815 |
|
816 |
#@ default
|
817 |
-
#: counter-options.php:
|
818 |
-
#: counter-options.php:
|
819 |
msgid "Tools"
|
820 |
msgstr "Ferramentas"
|
821 |
|
822 |
#@ cpd
|
823 |
-
#: counter-options.php:
|
824 |
msgid "Save URL only, no query string."
|
825 |
msgstr "Salvar somente URL, sem sequencia de caracteres"
|
826 |
|
827 |
#@ cpd
|
828 |
-
#: counter-options.php:
|
829 |
msgid "Who can see it"
|
830 |
msgstr "Quem pode ver isto"
|
831 |
|
832 |
#@ cpd
|
833 |
-
#: counter-options.php:
|
834 |
msgid "custom"
|
835 |
msgstr "Customizar"
|
836 |
|
837 |
#@ cpd
|
838 |
-
#: counter-options.php:
|
839 |
msgid "and higher are allowed to see the statistics page."
|
840 |
msgstr "e superior têm permissão para ver a página de estatísticas."
|
841 |
|
842 |
#@ cpd
|
843 |
-
#: counter-options.php:
|
844 |
#, php-format
|
845 |
msgid "Set the %s capability %s a user need:"
|
846 |
msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
|
847 |
|
848 |
#@ cpd
|
849 |
-
#: counter-options.php:
|
850 |
msgid "Stylesheet"
|
851 |
msgstr "Estilo"
|
852 |
|
853 |
#@ cpd
|
854 |
-
#: counter-options.php:
|
855 |
msgid "NO Stylesheet in Frontend"
|
856 |
msgstr "SEM Estilo na interface pública"
|
857 |
|
858 |
#@ cpd
|
859 |
-
#: counter-options.php:
|
860 |
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
861 |
msgstr "Não carregue o estilo \"counter.css\" na interface pública"
|
862 |
|
863 |
#@ cpd
|
864 |
-
#: counter-options.php:
|
865 |
-
#: counter-options.php:
|
866 |
msgid "Backup"
|
867 |
msgstr "Backup"
|
868 |
|
869 |
#@ cpd
|
870 |
-
#: counter-options.php:
|
871 |
msgid "Entries per pass"
|
872 |
msgstr "Entradas por passagem"
|
873 |
|
874 |
#@ cpd
|
875 |
-
#: counter-options.php:
|
876 |
msgid "How many entries should be saved per pass? Default: 10000"
|
877 |
msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
|
878 |
|
879 |
#@ cpd
|
880 |
-
#: counter-options.php:
|
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 "Se o limite de memória do PHP for inferior a 50Mb você terá uma página em branco ou mensagens de erro. Tente um valor menor."
|
883 |
|
884 |
#@ cpd
|
885 |
-
#: counter-options.php:
|
886 |
#, php-format
|
887 |
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
888 |
msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
|
889 |
|
890 |
#@ cpd
|
891 |
-
#: counter-options.php:
|
892 |
msgid "Backup the database"
|
893 |
msgstr "Backup da base de dados"
|
894 |
|
895 |
#@ cpd
|
896 |
-
#: counter-options.php:
|
897 |
-
#: counter-options.php:
|
898 |
msgid "Collect old data"
|
899 |
msgstr "Coletar dados antigos"
|
900 |
|
901 |
#@ cpd
|
902 |
-
#: counter-options.php:
|
903 |
#, php-format
|
904 |
msgid "Current size of your counter table %s is %s."
|
905 |
msgstr "O tamanho atual da sua tabela de contador %s é %s."
|
906 |
|
907 |
#@ cpd
|
908 |
-
#: counter-options.php:
|
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 "Você pode coletar dados antigos e limpar a tabela de contadores. <br/> Leituras e Visitantes serão salvos por mês, por país e por post. <br/> Clientes e refrência serão excluídos."
|
911 |
|
912 |
#@ cpd
|
913 |
-
#: counter-options.php:
|
914 |
#, php-format
|
915 |
msgid "Currently your collection contains data until %s."
|
916 |
msgstr "Atualmente sua coleção contém dados até %s"
|
917 |
|
918 |
#@ cpd
|
919 |
-
#: counter-options.php:
|
920 |
msgid "Normally new data will be added to the collection."
|
921 |
msgstr "Dados novos são adicionados normalmente à coleção."
|
922 |
|
923 |
#@ cpd
|
924 |
-
#: counter-options.php:
|
925 |
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
926 |
msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
|
927 |
|
928 |
#@ cpd
|
929 |
-
#: counter-options.php:
|
930 |
#, php-format
|
931 |
msgid "All collected data until %s will deleted."
|
932 |
msgstr "Todos os dados coletados até %s serão excluidos."
|
933 |
|
934 |
#@ cpd
|
935 |
-
#: counter-options.php:
|
936 |
#, php-format
|
937 |
msgid "Keep entries of last %s full months + current month in counter table."
|
938 |
msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
|
939 |
|
940 |
#@ cpd
|
941 |
-
#: counter-options.php:
|
942 |
msgid "ReActivation"
|
943 |
msgstr "Reativação"
|
944 |
|
945 |
#@ cpd
|
946 |
-
#: counter-options.php:
|
947 |
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
948 |
msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
|
949 |
|
950 |
#@ cpd
|
951 |
-
#: counter-options.php:
|
952 |
msgid "ReActivate the plugin"
|
953 |
msgstr "Reativar o plugin"
|
954 |
|
955 |
#@ cpd
|
956 |
-
#: counter.php:
|
957 |
-
#: counter.php:
|
958 |
msgid "Visitors"
|
959 |
msgstr "Visitantes"
|
960 |
|
961 |
#@ cpd
|
962 |
-
#: counter.php:
|
963 |
-
#: counter.php:
|
964 |
msgid "Most visited day"
|
965 |
msgstr "Dia mais visitado"
|
966 |
|
967 |
#@ cpd
|
968 |
-
#: counter.php:
|
969 |
msgid "drag and drop to sort"
|
970 |
msgstr "arrastar e soltar para classificar"
|
971 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-09-03 20:03+0100\n"
|
6 |
+
"PO-Revision-Date: 2012-07-14 11:54-0300\n"
|
7 |
"Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#@ cpd
|
22 |
+
#: counter-options.php:52
|
23 |
msgid "Options updated"
|
24 |
msgstr "Opções atualizadas"
|
25 |
|
26 |
#@ cpd
|
27 |
+
#: counter-options.php:113
|
28 |
#, php-format
|
29 |
msgid "Database cleaned. %s rows deleted."
|
30 |
msgstr "Banco de dados limpo. %s linhas apagadas."
|
31 |
|
32 |
#@ cpd
|
33 |
+
#: counter-options.php:128
|
34 |
+
#: counter-options.php:691
|
35 |
msgid "UNINSTALL Count per Day"
|
36 |
msgstr "DESINSTALAR o Count per Day"
|
37 |
|
38 |
#@ cpd
|
|
|
39 |
#: counter-options.php:133
|
40 |
#: counter-options.php:134
|
41 |
+
#: counter-options.php:135
|
42 |
#, php-format
|
43 |
msgid "Table %s deleted"
|
44 |
msgstr "Tabela %s apagada"
|
45 |
|
46 |
#@ cpd
|
47 |
+
#: counter-options.php:136
|
48 |
msgid "Options deleted"
|
49 |
msgstr "Opções apagadas"
|
50 |
|
51 |
#@ cpd
|
52 |
+
#: counter-options.php:362
|
53 |
+
#: counter-options.php:677
|
54 |
msgid "Uninstall"
|
55 |
msgstr "Desinstalar"
|
56 |
|
57 |
#@ cpd
|
58 |
+
#: counter-options.php:363
|
59 |
msgid "Click here"
|
60 |
msgstr "Clique aqui"
|
61 |
|
62 |
#@ cpd
|
63 |
+
#: counter-options.php:363
|
64 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
65 |
msgstr "Para terminar a desinstalação e desativar o \"Count per Day\". "
|
66 |
|
67 |
#@ cpd
|
68 |
+
#: counter-options.php:724
|
69 |
msgid "Online time"
|
70 |
msgstr "Período online"
|
71 |
|
72 |
#@ cpd
|
73 |
+
#: counter-options.php:725
|
74 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
75 |
msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na página do painel."
|
76 |
|
77 |
#@ cpd
|
78 |
+
#: counter-options.php:728
|
79 |
msgid "Logged on Users"
|
80 |
msgstr "Usuários logados"
|
81 |
|
82 |
#@ cpd
|
83 |
+
#: counter-options.php:730
|
84 |
msgid "count too"
|
85 |
msgstr "contar também"
|
86 |
|
87 |
#@ cpd
|
88 |
+
#: counter-options.php:742
|
89 |
msgid "Auto counter"
|
90 |
msgstr "Autocontador"
|
91 |
|
92 |
#@ cpd
|
93 |
+
#: counter-options.php:743
|
94 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
95 |
msgstr "Conta automaticamente posts e páginas, sem a necessidade de alterações em templates."
|
96 |
|
97 |
#@ cpd
|
98 |
+
#: counter-options.php:746
|
99 |
msgid "Bots to ignore"
|
100 |
msgstr "Bots a serem ignorados"
|
101 |
|
102 |
#@ cpd
|
103 |
+
#: counter-options.php:924
|
104 |
msgid "Update options"
|
105 |
msgstr "Atualizar opções"
|
106 |
|
107 |
#@ cpd
|
108 |
+
#: counter-options.php:538
|
109 |
+
#: counter-options.php:546
|
110 |
msgid "Clean the database"
|
111 |
msgstr "Limpar o banco de dados"
|
112 |
|
113 |
#@ cpd
|
114 |
+
#: counter-options.php:541
|
115 |
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."
|
116 |
msgstr "Você pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso você adicione novos bots acima, os \"dados de spam\" deles continuarão no banco de dados. <br />Para limpar as visitas desses bots, você pode executar novamente o filtro de bot aqui."
|
117 |
|
118 |
#@ cpd
|
119 |
+
#: counter-options.php:680
|
120 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
121 |
msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados serão preservadas."
|
122 |
|
123 |
#@ cpd
|
124 |
+
#: counter-options.php:681
|
125 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
126 |
msgstr "A opção a seguir permite apagar definitivamente as tabelas do banco de dados, além de desabilitar o plugin."
|
127 |
|
128 |
#@ cpd
|
129 |
+
#: counter-options.php:684
|
130 |
msgid "WARNING"
|
131 |
msgstr "ATENÇÃO"
|
132 |
|
133 |
#@ cpd
|
134 |
+
#: counter-options.php:685
|
135 |
msgid "These tables (with ALL counter data) will be deleted."
|
136 |
msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) serão apagadas:"
|
137 |
|
138 |
#@ cpd
|
139 |
+
#: counter-options.php:687
|
140 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
141 |
msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciarão a partir do 0."
|
142 |
|
143 |
#@ cpd
|
144 |
+
#: counter-options.php:667
|
145 |
+
#: counter-options.php:690
|
146 |
msgid "Yes"
|
147 |
msgstr "Sim, quero"
|
148 |
|
149 |
#@ cpd
|
150 |
+
#: counter-options.php:691
|
151 |
msgid "You are sure to disable Count per Day and delete all data?"
|
152 |
msgstr "Confirma a desativação do Count per Day e a exclusão de todos os dados?"
|
153 |
|
154 |
#@ cpd
|
155 |
+
#: counter-core.php:807
|
156 |
+
#: counter.php:1227
|
157 |
msgid "Statistics"
|
158 |
msgstr "Estatísticas"
|
159 |
|
160 |
#@ cpd
|
161 |
+
#: counter-core.php:775
|
162 |
+
#: counter.php:187
|
163 |
+
#: counter.php:1113
|
164 |
+
#: counter.php:1305
|
165 |
msgid "Total visitors"
|
166 |
msgstr "Total de visitas"
|
167 |
|
168 |
#@ cpd
|
169 |
+
#: counter.php:188
|
170 |
+
#: counter.php:1311
|
171 |
msgid "Visitors currently online"
|
172 |
msgstr "Visitantes online"
|
173 |
|
174 |
#@ cpd
|
175 |
+
#: counter.php:189
|
176 |
+
#: counter.php:1306
|
177 |
msgid "Visitors today"
|
178 |
msgstr "Visitas hoje"
|
179 |
|
180 |
#@ cpd
|
181 |
+
#: counter.php:190
|
182 |
+
#: counter.php:1307
|
183 |
msgid "Visitors yesterday"
|
184 |
msgstr "Visitas ontem"
|
185 |
|
186 |
#@ cpd
|
187 |
+
#: counter.php:191
|
188 |
+
#: counter.php:1308
|
189 |
msgid "Visitors last week"
|
190 |
msgstr "Visitas semana passada"
|
191 |
|
192 |
#@ cpd
|
193 |
+
#: counter.php:194
|
194 |
+
#: counter.php:872
|
195 |
+
#: counter.php:1312
|
196 |
msgid "Counter starts on"
|
197 |
msgstr "Início da contagem"
|
198 |
|
199 |
#@ cpd
|
200 |
+
#: counter-core.php:781
|
201 |
+
#: counter.php:193
|
202 |
+
#: counter.php:292
|
203 |
+
#: counter.php:1115
|
204 |
+
#: counter.php:1310
|
205 |
#: userperspan.php:34
|
206 |
msgid "Visitors per day"
|
207 |
msgstr "(média) de visitas por dia"
|
208 |
|
209 |
#@ cpd
|
210 |
+
#: counter-core.php:777
|
211 |
+
#: counter.php:1309
|
212 |
msgid "Visitors per month"
|
213 |
msgstr "Visitas por mês"
|
214 |
|
215 |
#@ cpd
|
216 |
+
#: counter-core.php:779
|
217 |
+
#: counter-options.php:806
|
218 |
msgid "Visitors per post"
|
219 |
msgstr "Visitas por post"
|
220 |
|
221 |
#@ cpd
|
222 |
+
#: counter-options.php:63
|
223 |
#, php-format
|
224 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
225 |
msgstr "Países atualizados. <b>%s</b> lançamentos em %s menos países faltando"
|
226 |
|
227 |
#@ cpd
|
228 |
+
#: counter-options.php:66
|
229 |
msgid "update next"
|
230 |
msgstr "Atualizar proximo"
|
231 |
|
232 |
#@ cpd
|
233 |
+
#: counter-options.php:106
|
234 |
#, php-format
|
235 |
msgid "Mass Bots cleaned. %s counts deleted."
|
236 |
msgstr "Mass Bots apagados. %s ocorrências deletadas."
|
237 |
|
238 |
#@ cpd
|
239 |
+
#: counter-options.php:123
|
240 |
msgid "Counter reseted."
|
241 |
msgstr "Contador reiniciado."
|
242 |
|
243 |
#@ default
|
244 |
+
#: counter-options.php:771
|
245 |
msgid "Dashboard"
|
246 |
msgstr "Painel"
|
247 |
|
248 |
#@ cpd
|
249 |
+
#: counter-options.php:807
|
250 |
+
#: counter-options.php:811
|
251 |
msgid "How many posts do you want to see on dashboard page?"
|
252 |
msgstr "Quantos posts você deseja visualizar no Painel?"
|
253 |
|
254 |
#@ cpd
|
255 |
+
#: counter-options.php:810
|
256 |
msgid "Latest Counts - Posts"
|
257 |
msgstr "Contagens Recentes - Posts"
|
258 |
|
259 |
#@ cpd
|
260 |
+
#: counter-options.php:814
|
261 |
msgid "Latest Counts - Days"
|
262 |
msgstr "Contagens Recentes - Dias"
|
263 |
|
264 |
#@ cpd
|
265 |
+
#: counter-options.php:815
|
266 |
+
#: counter-options.php:819
|
267 |
+
#: counter-options.php:841
|
268 |
msgid "How many days do you want look back?"
|
269 |
msgstr "Quantos dias atrás você quer ver?"
|
270 |
|
271 |
#@ cpd
|
272 |
+
#: counter-options.php:818
|
273 |
msgid "Chart - Days"
|
274 |
msgstr "Gráfico - Dias"
|
275 |
|
276 |
#@ cpd
|
277 |
+
#: counter-options.php:822
|
278 |
msgid "Chart - Height"
|
279 |
msgstr "Gráfico - Altura"
|
280 |
|
281 |
#@ cpd
|
282 |
+
#: counter-options.php:823
|
283 |
msgid "Height of the biggest bar"
|
284 |
msgstr "Altura da barra maior"
|
285 |
|
286 |
#@ cpd
|
287 |
+
#: counter-options.php:827
|
288 |
msgid "Countries"
|
289 |
msgstr "Países"
|
290 |
|
291 |
#@ cpd
|
292 |
+
#: counter-options.php:828
|
293 |
msgid "How many countries do you want to see on dashboard page?"
|
294 |
msgstr "Quantos países você quer visualizar no Painel?"
|
295 |
|
296 |
#@ cpd
|
297 |
+
#: counter-options.php:855
|
298 |
msgid "Show in lists"
|
299 |
msgstr "Exibir em listas"
|
300 |
|
301 |
#@ cpd
|
302 |
+
#: counter-options.php:856
|
303 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
304 |
msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualização de posts."
|
305 |
|
306 |
#@ cpd
|
307 |
+
#: counter-options.php:608
|
308 |
msgid "GeoIP - Countries"
|
309 |
msgstr "GeoIP - Países"
|
310 |
|
311 |
#@ cpd
|
312 |
+
#: counter-options.php:617
|
313 |
msgid "Update old counter data"
|
314 |
msgstr "Atualizar dados de contadores antigos"
|
315 |
|
316 |
#@ cpd
|
317 |
+
#: counter-options.php:629
|
318 |
msgid "Update GeoIP database"
|
319 |
msgstr "Atualizar Base de Dados GeoIP"
|
320 |
|
321 |
#@ cpd
|
322 |
+
#: counter-options.php:624
|
323 |
msgid "Download a new version of GeoIP.dat file."
|
324 |
msgstr "Baixe uma nova versão do arquivo GeoIP.dat"
|
325 |
|
326 |
#@ cpd
|
327 |
+
#: counter-options.php:634
|
328 |
msgid "More informations about GeoIP"
|
329 |
msgstr "Mais informações sobre o GeoIP"
|
330 |
|
331 |
#@ cpd
|
332 |
+
#: counter-options.php:402
|
333 |
+
#: massbots.php:36
|
334 |
msgid "Mass Bots"
|
335 |
msgstr "Mass Bots"
|
336 |
|
337 |
#@ cpd
|
338 |
+
#: counter-options.php:406
|
339 |
#, php-format
|
340 |
msgid "Show all IPs with more than %s page views per day"
|
341 |
msgstr "Exibir todos os IPs com mais de %s páginas exibidas por dia"
|
342 |
|
343 |
#@ cpd
|
344 |
+
#: counter-options.php:407
|
345 |
#: notes.php:71
|
346 |
#: userperspan.php:44
|
347 |
msgid "show"
|
348 |
msgstr "exibir"
|
349 |
|
350 |
#@ cpd
|
351 |
+
#: counter-options.php:415
|
352 |
msgid "IP"
|
353 |
msgstr "IP"
|
354 |
|
355 |
#@ cpd
|
356 |
#@ default
|
357 |
+
#: counter-options.php:416
|
358 |
#: notes.php:75
|
359 |
msgid "Date"
|
360 |
msgstr "Data"
|
361 |
|
362 |
#@ cpd
|
363 |
+
#: counter-options.php:417
|
364 |
msgid "Client"
|
365 |
msgstr "Cliente"
|
366 |
|
367 |
#@ cpd
|
368 |
+
#: counter-options.php:418
|
369 |
msgid "Views"
|
370 |
msgstr "Exibições"
|
371 |
|
372 |
#@ cpd
|
373 |
+
#: counter-options.php:433
|
374 |
+
#: counter-options.php:449
|
375 |
#, php-format
|
376 |
msgid "Delete these %s counts"
|
377 |
msgstr "Deletar estes %s contadores"
|
378 |
|
379 |
#@ cpd
|
380 |
+
#: counter-options.php:658
|
381 |
+
#: counter-options.php:668
|
382 |
msgid "Reset the counter"
|
383 |
msgstr "Reiniciar o contador"
|
384 |
|
385 |
#@ cpd
|
386 |
+
#: counter-options.php:661
|
387 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
388 |
msgstr "Você pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se você precisar das informações atuais!"
|
389 |
|
390 |
#@ cpd
|
391 |
+
#: counter.php:705
|
392 |
#, php-format
|
393 |
msgid "The %s most visited posts in last %s days:"
|
394 |
msgstr "Os %s posts mais visitados nos últimos %s dias:"
|
395 |
|
396 |
#@ cpd
|
397 |
+
#: counter.php:861
|
398 |
msgid "Other"
|
399 |
msgstr "Outro"
|
400 |
|
401 |
#@ default
|
402 |
+
#: counter.php:1049
|
403 |
+
#: massbots.php:53
|
404 |
#: userperspan.php:63
|
405 |
msgid "Front page displays"
|
406 |
msgstr "Exibições da primeira página"
|
407 |
|
408 |
#@ default
|
409 |
+
#: counter-core.php:612
|
410 |
+
#: counter-options.php:386
|
411 |
+
#: counter-options.php:712
|
412 |
msgid "Settings"
|
413 |
msgstr "Configurações"
|
414 |
|
415 |
#@ cpd
|
416 |
+
#: counter-core.php:677
|
417 |
+
#: counter-options.php:761
|
418 |
+
#: counter.php:186
|
419 |
+
#: counter.php:922
|
420 |
msgid "Reads"
|
421 |
msgstr "Leituras"
|
422 |
|
423 |
#@ cpd
|
424 |
+
#: counter.php:1299
|
425 |
msgid "This post"
|
426 |
msgstr "Este post"
|
427 |
|
428 |
#@ cpd
|
429 |
+
#: counter.php:291
|
430 |
msgid "Reads per day"
|
431 |
msgstr "Leituras por dia"
|
432 |
|
433 |
#@ cpd
|
434 |
+
#: counter-core.php:786
|
435 |
+
#: counter-options.php:832
|
436 |
msgid "Browsers"
|
437 |
msgstr "Navegadores"
|
438 |
|
439 |
#@ cpd
|
440 |
+
#: counter-core.php:780
|
441 |
msgid "Latest Counts"
|
442 |
msgstr "Contagens Recentes"
|
443 |
|
444 |
#@ cpd
|
445 |
+
#: counter-core.php:791
|
446 |
msgid "Reads per Country"
|
447 |
msgstr "Leituras por País"
|
448 |
|
449 |
#@ cpd
|
450 |
+
#: geoip/geoip.php:90
|
451 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
452 |
msgstr "Desculpe, funções necessárias (zlib) não instaladas ou habilitadas no php.ini."
|
453 |
|
454 |
#@ cpd
|
455 |
+
#: geoip/geoip.php:114
|
456 |
msgid "New GeoIP database installed."
|
457 |
msgstr "Nova base de dados GeoIP instalada."
|
458 |
|
459 |
#@ cpd
|
460 |
+
#: geoip/geoip.php:116
|
461 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
462 |
msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permissões do diretório \"geoip\" estão setadas para 777."
|
463 |
|
464 |
#@ cpd
|
465 |
+
#: counter-options.php:731
|
466 |
msgid "until User Level"
|
467 |
msgstr "usuários do nível"
|
468 |
|
469 |
#@ cpd
|
470 |
+
#: counter-options.php:863
|
471 |
msgid "Start Values"
|
472 |
msgstr "Valor inicial"
|
473 |
|
474 |
#@ cpd
|
475 |
+
#: counter-options.php:867
|
476 |
msgid "Here you can change the date of first count and add a start count."
|
477 |
msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
|
478 |
|
479 |
#@ cpd
|
480 |
+
#: counter-options.php:871
|
481 |
msgid "Start date"
|
482 |
msgstr "Data inicial"
|
483 |
|
484 |
#@ cpd
|
485 |
+
#: counter-options.php:872
|
486 |
msgid "Your old Counter starts at?"
|
487 |
msgstr "Sua contagem antiga começa em?"
|
488 |
|
489 |
#@ cpd
|
490 |
+
#: counter-options.php:875
|
491 |
+
#: counter-options.php:879
|
492 |
msgid "Start count"
|
493 |
msgstr "Contagem inicial"
|
494 |
|
495 |
#@ cpd
|
496 |
+
#: counter-options.php:876
|
497 |
msgid "Add this value to \"Total visitors\"."
|
498 |
msgstr "Adicione este valor para \"Total visitors\"."
|
499 |
|
500 |
#@ cpd
|
501 |
+
#: counter-options.php:699
|
502 |
msgid "Support"
|
503 |
msgstr "Suporte"
|
504 |
|
505 |
#@ cpd
|
506 |
+
#: counter-core.php:741
|
507 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
508 |
msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
|
509 |
|
510 |
#@ cpd
|
511 |
+
#: counter-core.php:742
|
512 |
#, php-format
|
513 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
514 |
msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
|
515 |
|
516 |
#@ default
|
517 |
+
#: counter.php:821
|
518 |
msgid "Show"
|
519 |
msgstr "Mostrar"
|
520 |
|
521 |
#@ cpd
|
522 |
+
#: counter.php:823
|
523 |
#: notes.php:42
|
524 |
#: notes.php:76
|
525 |
msgid "Notes"
|
526 |
msgstr "Notas"
|
527 |
|
528 |
#@ default
|
529 |
+
#: counter.php:1034
|
530 |
msgid "Edit Post"
|
531 |
msgstr "Editar Post"
|
532 |
|
533 |
#@ default
|
534 |
+
#: counter-core.php:783
|
535 |
msgid "Plugin"
|
536 |
msgstr "Plugin"
|
537 |
|
538 |
#@ cpd
|
539 |
+
#: counter-core.php:740
|
540 |
#, php-format
|
541 |
msgid "Time for Count per Day: <code>%s</code>."
|
542 |
msgstr "Tempo para Contagem por Dia: <code>%s</code>."
|
567 |
msgstr "Editar"
|
568 |
|
569 |
#@ cpd
|
570 |
+
#: counter-options.php:750
|
571 |
msgid "Anonymous IP"
|
572 |
msgstr "IP Anônimo"
|
573 |
|
574 |
#@ cpd
|
575 |
+
#: counter-options.php:754
|
576 |
msgid "Cache"
|
577 |
msgstr "Cache"
|
578 |
|
579 |
#@ cpd
|
580 |
+
#: counter-options.php:755
|
581 |
msgid "I use a cache plugin. Count these visits with ajax."
|
582 |
msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
|
583 |
|
584 |
#@ cpd
|
585 |
+
#: counter-options.php:833
|
586 |
msgid "Substring of the user agent, separated by comma"
|
587 |
msgstr "Substring do usuário agente, separado por vírgula"
|
588 |
|
589 |
#@ cpd
|
590 |
+
#: counter-options.php:880
|
591 |
msgid "Add this value to \"Total reads\"."
|
592 |
msgstr "Adicione este valor ao \"Total de Leituras\"."
|
593 |
|
594 |
#@ cpd
|
595 |
+
#: counter-options.php:917
|
596 |
msgid "Debug mode"
|
597 |
msgstr "Modo de depuração"
|
598 |
|
599 |
#@ cpd
|
600 |
+
#: counter-options.php:919
|
601 |
msgid "Show debug informations at the bottom of all pages."
|
602 |
msgstr "Mostrar informações de depuração na base de todas as páginas."
|
603 |
|
604 |
#@ cpd
|
605 |
+
#: counter.php:182
|
606 |
+
#: counter.php:1300
|
607 |
msgid "Total reads"
|
608 |
msgstr "Total de Leituras"
|
609 |
|
610 |
#@ cpd
|
611 |
+
#: counter.php:183
|
612 |
+
#: counter.php:1301
|
613 |
msgid "Reads today"
|
614 |
msgstr "Leituras Hoje"
|
615 |
|
616 |
#@ cpd
|
617 |
+
#: counter.php:184
|
618 |
+
#: counter.php:1302
|
619 |
msgid "Reads yesterday"
|
620 |
msgstr "Leituras Ontem"
|
621 |
|
622 |
#@ cpd
|
623 |
+
#: counter-core.php:792
|
624 |
msgid "Visitors per Country"
|
625 |
msgstr "Visitantes por Paíis"
|
626 |
|
627 |
#@ cpd
|
628 |
+
#: counter.php:382
|
629 |
+
#: counter.php:1144
|
630 |
msgid "Map"
|
631 |
msgstr "Mapa"
|
632 |
|
651 |
msgstr "Não foram encontrados dados"
|
652 |
|
653 |
#@ cpd
|
654 |
+
#: counter-options.php:611
|
655 |
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!"
|
656 |
msgstr "Você pode obter os dados dos países para todas as entradas no banco de dados checando novamente os endereços IP na base de dados GeoIP. Isto pode demorar um pouco!"
|
657 |
|
658 |
#@ cpd
|
659 |
+
#: counter-options.php:720
|
660 |
msgid "Counter"
|
661 |
msgstr "contador"
|
662 |
|
663 |
#@ cpd
|
664 |
+
#: counter-options.php:758
|
665 |
msgid "Clients and referrers"
|
666 |
msgstr "Clientes e Referências"
|
667 |
|
668 |
#@ cpd
|
669 |
+
#: counter-options.php:761
|
670 |
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."
|
671 |
msgstr "Salvar e Exibir Clientes e Referências"
|
672 |
|
673 |
#@ cpd
|
674 |
+
#: counter-options.php:844
|
675 |
msgid "Local URLs"
|
676 |
msgstr "URLs Locais"
|
677 |
|
678 |
#@ cpd
|
679 |
+
#: counter-options.php:845
|
680 |
msgid "Show local referrers too."
|
681 |
msgstr "Também exibir referência local."
|
682 |
|
683 |
#@ default
|
684 |
+
#: counter-options.php:852
|
685 |
msgid "Posts"
|
686 |
msgstr "Posts"
|
687 |
|
688 |
#@ default
|
689 |
+
#: counter-options.php:852
|
690 |
msgid "Pages"
|
691 |
msgstr "Páginas"
|
692 |
|
693 |
#@ cpd
|
694 |
+
#: counter.php:185
|
695 |
+
#: counter.php:1303
|
696 |
msgid "Reads last week"
|
697 |
msgstr "Leituras na semana passada"
|
698 |
|
699 |
#@ default
|
700 |
+
#: counter.php:1043
|
701 |
msgid "Category"
|
702 |
msgstr "Categoria"
|
703 |
|
704 |
#@ default
|
705 |
+
#: counter.php:1046
|
706 |
msgid "Tag"
|
707 |
msgstr "Teg"
|
708 |
|
709 |
#@ default
|
710 |
+
#: counter-core.php:743
|
711 |
msgid "License"
|
712 |
msgstr "License"
|
713 |
|
714 |
#@ cpd
|
715 |
+
#: counter-core.php:778
|
716 |
+
#: counter.php:1304
|
717 |
msgid "Reads per month"
|
718 |
msgstr "Leituras por mês"
|
719 |
|
720 |
#@ cpd
|
721 |
+
#: counter-core.php:787
|
722 |
msgid "Referrer"
|
723 |
msgstr "Referência"
|
724 |
|
725 |
#@ default
|
726 |
+
#: counter.php:1323
|
727 |
msgid "Title"
|
728 |
msgstr "Título"
|
729 |
|
730 |
#@ cpd
|
731 |
+
#: counter-options.php:836
|
732 |
msgid "Referrers - Entries"
|
733 |
msgstr "Referência - entradas"
|
734 |
|
735 |
#@ cpd
|
736 |
+
#: counter-options.php:837
|
737 |
msgid "How many referrers do you want to see on dashboard page?"
|
738 |
msgstr "Quantas referência você quer ver no painel?"
|
739 |
|
740 |
#@ cpd
|
741 |
+
#: counter-options.php:840
|
742 |
msgid "Referrers - Days"
|
743 |
msgstr "Referência - Dias"
|
744 |
|
745 |
#@ cpd
|
746 |
+
#: counter.php:892
|
747 |
#, php-format
|
748 |
msgid "The %s referrers in last %s days:"
|
749 |
msgstr "AA %s referências nos últimos %s dias:"
|
750 |
|
751 |
#@ cpd
|
752 |
+
#: counter-core.php:776
|
753 |
msgid "Visitors online"
|
754 |
msgstr "Visitantes online"
|
755 |
|
756 |
#@ cpd
|
757 |
+
#: counter-core.php:225
|
758 |
#, php-format
|
759 |
msgid "\"Count per Day\" updated to version %s."
|
760 |
msgstr "Atualizar \"Count per Day\" para a versão %s."
|
761 |
|
762 |
#@ cpd
|
763 |
+
#: counter-core.php:977
|
764 |
msgid "Backup failed! Cannot open file"
|
765 |
msgstr "Backup falhou. O arquivo não abriu"
|
766 |
|
767 |
#@ cpd
|
768 |
+
#: counter-core.php:1004
|
769 |
#, php-format
|
770 |
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
771 |
msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
|
772 |
|
773 |
#@ cpd
|
774 |
+
#: counter-core.php:1095
|
775 |
+
#: counter-core.php:1103
|
|
|
|
|
|
|
|
|
776 |
#, php-format
|
777 |
msgid "Backup of counter table saved in %s."
|
778 |
msgstr "Backup da tabela do contador salvo em %s."
|
779 |
|
780 |
#@ cpd
|
781 |
+
#: counter-core.php:1097
|
782 |
+
#: counter-core.php:1105
|
783 |
#, php-format
|
784 |
msgid "Backup of counter options and collection saved in %s."
|
785 |
msgstr "Backup das opções de contador e acumuladores salvas em %s."
|
786 |
|
787 |
#@ cpd
|
788 |
+
#: counter-options.php:169
|
789 |
msgid "Collection in progress..."
|
790 |
msgstr "Acumulador em progresso..."
|
791 |
|
792 |
#@ cpd
|
793 |
+
#: counter-options.php:263
|
794 |
msgid "Get Visitors per Post..."
|
795 |
msgstr "Obter visitas por Post..."
|
796 |
|
797 |
#@ cpd
|
798 |
+
#: counter-options.php:284
|
799 |
msgid "Delete old data..."
|
800 |
msgstr "Deletar dados antigos..."
|
801 |
|
802 |
#@ cpd
|
803 |
+
#: counter-options.php:308
|
804 |
#, php-format
|
805 |
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
806 |
msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s > tamanho posterior = %s)."
|
807 |
|
808 |
#@ cpd
|
809 |
+
#: counter-options.php:317
|
810 |
msgid "Installation of \"Count per Day\" checked"
|
811 |
msgstr "Instalação do \"Count per Day\" checada"
|
812 |
|
813 |
#@ default
|
814 |
+
#: counter-options.php:385
|
815 |
+
#: counter-options.php:711
|
816 |
msgid "Tools"
|
817 |
msgstr "Ferramentas"
|
818 |
|
819 |
#@ cpd
|
820 |
+
#: counter-options.php:763
|
821 |
msgid "Save URL only, no query string."
|
822 |
msgstr "Salvar somente URL, sem sequencia de caracteres"
|
823 |
|
824 |
#@ cpd
|
825 |
+
#: counter-options.php:787
|
826 |
msgid "Who can see it"
|
827 |
msgstr "Quem pode ver isto"
|
828 |
|
829 |
#@ cpd
|
830 |
+
#: counter-options.php:796
|
831 |
msgid "custom"
|
832 |
msgstr "Customizar"
|
833 |
|
834 |
#@ cpd
|
835 |
+
#: counter-options.php:798
|
836 |
msgid "and higher are allowed to see the statistics page."
|
837 |
msgstr "e superior têm permissão para ver a página de estatísticas."
|
838 |
|
839 |
#@ cpd
|
840 |
+
#: counter-options.php:800
|
841 |
#, php-format
|
842 |
msgid "Set the %s capability %s a user need:"
|
843 |
msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
|
844 |
|
845 |
#@ cpd
|
846 |
+
#: counter-options.php:887
|
847 |
msgid "Stylesheet"
|
848 |
msgstr "Estilo"
|
849 |
|
850 |
#@ cpd
|
851 |
+
#: counter-options.php:890
|
852 |
msgid "NO Stylesheet in Frontend"
|
853 |
msgstr "SEM Estilo na interface pública"
|
854 |
|
855 |
#@ cpd
|
856 |
+
#: counter-options.php:891
|
857 |
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
858 |
msgstr "Não carregue o estilo \"counter.css\" na interface pública"
|
859 |
|
860 |
#@ cpd
|
861 |
+
#: counter-options.php:461
|
862 |
+
#: counter-options.php:898
|
863 |
msgid "Backup"
|
864 |
msgstr "Backup"
|
865 |
|
866 |
#@ cpd
|
867 |
+
#: counter-options.php:901
|
868 |
msgid "Entries per pass"
|
869 |
msgstr "Entradas por passagem"
|
870 |
|
871 |
#@ cpd
|
872 |
+
#: counter-options.php:904
|
873 |
msgid "How many entries should be saved per pass? Default: 10000"
|
874 |
msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
|
875 |
|
876 |
#@ cpd
|
877 |
+
#: counter-options.php:909
|
878 |
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
879 |
msgstr "Se o limite de memória do PHP for inferior a 50Mb você terá uma página em branco ou mensagens de erro. Tente um valor menor."
|
880 |
|
881 |
#@ cpd
|
882 |
+
#: counter-options.php:465
|
883 |
#, php-format
|
884 |
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
885 |
msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
|
886 |
|
887 |
#@ cpd
|
888 |
+
#: counter-options.php:472
|
889 |
msgid "Backup the database"
|
890 |
msgstr "Backup da base de dados"
|
891 |
|
892 |
#@ cpd
|
893 |
+
#: counter-options.php:563
|
894 |
+
#: counter-options.php:595
|
895 |
msgid "Collect old data"
|
896 |
msgstr "Coletar dados antigos"
|
897 |
|
898 |
#@ cpd
|
899 |
+
#: counter-options.php:568
|
900 |
#, php-format
|
901 |
msgid "Current size of your counter table %s is %s."
|
902 |
msgstr "O tamanho atual da sua tabela de contador %s é %s."
|
903 |
|
904 |
#@ cpd
|
905 |
+
#: counter-options.php:570
|
906 |
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."
|
907 |
msgstr "Você pode coletar dados antigos e limpar a tabela de contadores. <br/> Leituras e Visitantes serão salvos por mês, por país e por post. <br/> Clientes e refrência serão excluídos."
|
908 |
|
909 |
#@ cpd
|
910 |
+
#: counter-options.php:575
|
911 |
#, php-format
|
912 |
msgid "Currently your collection contains data until %s."
|
913 |
msgstr "Atualmente sua coleção contém dados até %s"
|
914 |
|
915 |
#@ cpd
|
916 |
+
#: counter-options.php:579
|
917 |
msgid "Normally new data will be added to the collection."
|
918 |
msgstr "Dados novos são adicionados normalmente à coleção."
|
919 |
|
920 |
#@ cpd
|
921 |
+
#: counter-options.php:585
|
922 |
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
923 |
msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
|
924 |
|
925 |
#@ cpd
|
926 |
+
#: counter-options.php:586
|
927 |
#, php-format
|
928 |
msgid "All collected data until %s will deleted."
|
929 |
msgstr "Todos os dados coletados até %s serão excluidos."
|
930 |
|
931 |
#@ cpd
|
932 |
+
#: counter-options.php:591
|
933 |
#, php-format
|
934 |
msgid "Keep entries of last %s full months + current month in counter table."
|
935 |
msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
|
936 |
|
937 |
#@ cpd
|
938 |
+
#: counter-options.php:642
|
939 |
msgid "ReActivation"
|
940 |
msgstr "Reativação"
|
941 |
|
942 |
#@ cpd
|
943 |
+
#: counter-options.php:645
|
944 |
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
945 |
msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
|
946 |
|
947 |
#@ cpd
|
948 |
+
#: counter-options.php:650
|
949 |
msgid "ReActivate the plugin"
|
950 |
msgstr "Reativar o plugin"
|
951 |
|
952 |
#@ cpd
|
953 |
+
#: counter.php:192
|
954 |
+
#: counter.php:946
|
955 |
msgid "Visitors"
|
956 |
msgstr "Visitantes"
|
957 |
|
958 |
#@ cpd
|
959 |
+
#: counter.php:195
|
960 |
+
#: counter.php:196
|
961 |
msgid "Most visited day"
|
962 |
msgstr "Dia mais visitado"
|
963 |
|
964 |
#@ cpd
|
965 |
+
#: counter.php:1342
|
966 |
msgid "drag and drop to sort"
|
967 |
msgstr "arrastar e soltar para classificar"
|
968 |
|
969 |
+
#@ cpd
|
970 |
+
#: counter-core.php:782
|
971 |
+
#: counter-options.php:836
|
972 |
+
#: counter-options.php:840
|
973 |
+
msgid "Search strings"
|
974 |
+
msgstr "Buscar Strings"
|
975 |
+
|
976 |
+
#@ cpd
|
977 |
+
#: counter-core.php:1091
|
978 |
+
msgid "Your can download the backup files here and now."
|
979 |
+
msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
|
980 |
+
|
981 |
+
#@ cpd
|
982 |
+
#: counter-core.php:1161
|
983 |
+
msgid "Error while reading backup file!"
|
984 |
+
msgstr "Erro ao ler o arquivo de BackUp!"
|
985 |
+
|
986 |
+
#@ cpd
|
987 |
+
#: counter-core.php:1165
|
988 |
+
#, php-format
|
989 |
+
msgid "The backup was added to counter table %s."
|
990 |
+
msgstr "O backup foi adicionado à tabela de contadores %s"
|
991 |
+
|
992 |
+
#@ cpd
|
993 |
+
#: counter-core.php:1167
|
994 |
+
#, php-format
|
995 |
+
msgid "The counter table %s was restored from backup."
|
996 |
+
msgstr "A tabela de contadores %s foi restaurada do backup."
|
997 |
+
|
998 |
+
#@ cpd
|
999 |
+
#: counter-core.php:1184
|
1000 |
+
msgid "Options restored from backup."
|
1001 |
+
msgstr "Opções restauradas do backup."
|
1002 |
+
|
1003 |
+
#@ cpd
|
1004 |
+
#: counter-options.php:332
|
1005 |
+
msgid "Old search strings deleted"
|
1006 |
+
msgstr "Sequencias de pesquisas antigas apagadas."
|
1007 |
+
|
1008 |
+
#@ cpd
|
1009 |
+
#: counter-options.php:468
|
1010 |
+
msgid "Download only"
|
1011 |
+
msgstr "Somente download"
|
1012 |
+
|
1013 |
+
#@ cpd
|
1014 |
+
#: counter-options.php:500
|
1015 |
+
msgid "Settings and collections"
|
1016 |
+
msgstr "Configurações e Coleções"
|
1017 |
+
|
1018 |
+
#@ cpd
|
1019 |
+
#: counter-options.php:505
|
1020 |
+
#, php-format
|
1021 |
+
msgid "Counter table %s"
|
1022 |
+
msgstr "Tabela de Contador %s"
|
1023 |
+
|
1024 |
+
#@ cpd
|
1025 |
+
#: counter-options.php:512
|
1026 |
+
#, php-format
|
1027 |
+
msgid "Add data from the backup file %s to existing counter table?"
|
1028 |
+
msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
|
1029 |
+
|
1030 |
+
#@ cpd
|
1031 |
+
#: counter-options.php:512
|
1032 |
+
msgid "Add"
|
1033 |
+
msgstr "Adicionar"
|
1034 |
+
|
1035 |
+
#@ cpd
|
1036 |
+
#: counter-options.php:516
|
1037 |
+
#, php-format
|
1038 |
+
msgid "Restore data from the backup file %s ?"
|
1039 |
+
msgstr "Restaurar dados a partir do backup %s ?"
|
1040 |
+
|
1041 |
+
#@ default
|
1042 |
+
#: counter-options.php:516
|
1043 |
+
msgid "Restore"
|
1044 |
+
msgstr "Restaurar"
|
1045 |
+
|
1046 |
+
#@ default
|
1047 |
+
#: counter-options.php:518
|
1048 |
+
msgid "Delete"
|
1049 |
+
msgstr "Apagar"
|
1050 |
+
|
1051 |
+
#@ cpd
|
1052 |
+
#: counter-options.php:519
|
1053 |
+
#, php-format
|
1054 |
+
msgid "Delete the backup file %s ?"
|
1055 |
+
msgstr "Apagar arquivo backup %s ?"
|
1056 |
+
|
1057 |
+
#@ cpd
|
1058 |
+
#: counter-options.php:525
|
1059 |
+
msgid "add backup to current counter table"
|
1060 |
+
msgstr "adicionar backup para a tabela de contador atual"
|
1061 |
+
|
1062 |
+
#@ cpd
|
1063 |
+
#: counter-options.php:526
|
1064 |
+
msgid "replace current counter table with with backup"
|
1065 |
+
msgstr "substituir a tabela de contador atual pelo backup"
|
1066 |
+
|
1067 |
+
#@ cpd
|
1068 |
+
#: counter-options.php:527
|
1069 |
+
msgid "delete backup file"
|
1070 |
+
msgstr "apagar arquivo backup"
|
1071 |
+
|
1072 |
+
#@ cpd
|
1073 |
+
#: counter-options.php:552
|
1074 |
+
#, php-format
|
1075 |
+
msgid "Delete search strings older than %s days."
|
1076 |
+
msgstr "Apagar sequencias de busca anteriores a %s dias."
|
1077 |
+
|
1078 |
+
#@ cpd
|
1079 |
+
#: counter-options.php:554
|
1080 |
+
msgid "Delete search strings"
|
1081 |
+
msgstr "Apagar sequencias de busca"
|
1082 |
+
|
1083 |
+
#@ cpd
|
1084 |
+
#: counter.php:1089
|
1085 |
+
#, php-format
|
1086 |
+
msgid "The %s most searched strings:"
|
1087 |
+
msgstr "A %s string mais procurada:"
|
1088 |
+
|
1089 |
+
#@ cpd
|
1090 |
+
#: counter.php:1098
|
1091 |
+
#, php-format
|
1092 |
+
msgid "The search strings of the last %s days:"
|
1093 |
+
msgstr "A série de busca dos últimos %s dias:"
|
1094 |
+
|
locale/cpd-pt_PT.mo
CHANGED
Binary file
|
locale/cpd-pt_PT.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Count
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2008-09-03 20:03+0100\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -19,524 +19,524 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#@ cpd
|
22 |
-
#: counter-options.php:
|
23 |
msgid "Options updated"
|
24 |
msgstr "Opções atualizadas"
|
25 |
|
26 |
#@ cpd
|
27 |
-
#: counter-options.php:
|
28 |
#, php-format
|
29 |
msgid "Database cleaned. %s rows deleted."
|
30 |
msgstr "Banco de dados limpo. %s linhas apagadas."
|
31 |
|
32 |
#@ cpd
|
33 |
-
#: counter-options.php:
|
34 |
-
#: counter-options.php:
|
35 |
msgid "UNINSTALL Count per Day"
|
36 |
msgstr "DESINSTALAR o Count per Day"
|
37 |
|
38 |
#@ cpd
|
39 |
-
#: counter-options.php:132
|
40 |
#: counter-options.php:133
|
41 |
#: counter-options.php:134
|
|
|
42 |
#, php-format
|
43 |
msgid "Table %s deleted"
|
44 |
msgstr "Tabela %s apagada"
|
45 |
|
46 |
#@ cpd
|
47 |
-
#: counter-options.php:
|
48 |
msgid "Options deleted"
|
49 |
msgstr "Opções apagadas"
|
50 |
|
51 |
#@ cpd
|
52 |
-
#: counter-options.php:
|
53 |
-
#: counter-options.php:
|
54 |
msgid "Uninstall"
|
55 |
msgstr "Desinstalar"
|
56 |
|
57 |
#@ cpd
|
58 |
-
#: counter-options.php:
|
59 |
msgid "Click here"
|
60 |
msgstr "Clique aqui"
|
61 |
|
62 |
#@ cpd
|
63 |
-
#: counter-options.php:
|
64 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
65 |
msgstr "Para terminar a desinstalação e desativar o \"Count per Day\". "
|
66 |
|
67 |
#@ cpd
|
68 |
-
#: counter-options.php:
|
69 |
msgid "Online time"
|
70 |
msgstr "Período online"
|
71 |
|
72 |
#@ cpd
|
73 |
-
#: counter-options.php:
|
74 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
75 |
msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na página do painel."
|
76 |
|
77 |
#@ cpd
|
78 |
-
#: counter-options.php:
|
79 |
msgid "Logged on Users"
|
80 |
msgstr "Usuários logados"
|
81 |
|
82 |
#@ cpd
|
83 |
-
#: counter-options.php:
|
84 |
msgid "count too"
|
85 |
msgstr "contar também"
|
86 |
|
87 |
#@ cpd
|
88 |
-
#: counter-options.php:
|
89 |
msgid "Auto counter"
|
90 |
msgstr "Autocontador"
|
91 |
|
92 |
#@ cpd
|
93 |
-
#: counter-options.php:
|
94 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
95 |
msgstr "Conta automaticamente posts e páginas, sem a necessidade de alterações em templates."
|
96 |
|
97 |
#@ cpd
|
98 |
-
#: counter-options.php:
|
99 |
msgid "Bots to ignore"
|
100 |
msgstr "Bots a serem ignorados"
|
101 |
|
102 |
#@ cpd
|
103 |
-
#: counter-options.php:
|
104 |
msgid "Update options"
|
105 |
msgstr "Atualizar opções"
|
106 |
|
107 |
#@ cpd
|
108 |
-
#: counter-options.php:
|
109 |
-
#: counter-options.php:
|
110 |
msgid "Clean the database"
|
111 |
msgstr "Limpar o banco de dados"
|
112 |
|
113 |
#@ cpd
|
114 |
-
#: counter-options.php:
|
115 |
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."
|
116 |
msgstr "Você pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso você adicione novos bots acima, os \"dados de spam\" deles continuarão no banco de dados. <br />Para limpar as visitas desses bots, você pode executar novamente o filtro de bot aqui."
|
117 |
|
118 |
#@ cpd
|
119 |
-
#: counter-options.php:
|
120 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
121 |
msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados serão preservadas."
|
122 |
|
123 |
#@ cpd
|
124 |
-
#: counter-options.php:
|
125 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
126 |
msgstr "A opção a seguir permite apagar definitivamente as tabelas do banco de dados, além de desabilitar o plugin."
|
127 |
|
128 |
#@ cpd
|
129 |
-
#: counter-options.php:
|
130 |
msgid "WARNING"
|
131 |
msgstr "ATENÇÃO"
|
132 |
|
133 |
#@ cpd
|
134 |
-
#: counter-options.php:
|
135 |
msgid "These tables (with ALL counter data) will be deleted."
|
136 |
msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) serão apagadas:"
|
137 |
|
138 |
#@ cpd
|
139 |
-
#: counter-options.php:
|
140 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
141 |
msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciarão a partir do 0."
|
142 |
|
143 |
#@ cpd
|
144 |
-
#: counter-options.php:
|
145 |
-
#: counter-options.php:
|
146 |
msgid "Yes"
|
147 |
msgstr "Sim, quero"
|
148 |
|
149 |
#@ cpd
|
150 |
-
#: counter-options.php:
|
151 |
msgid "You are sure to disable Count per Day and delete all data?"
|
152 |
msgstr "Confirma a desativação do Count per Day e a exclusão de todos os dados?"
|
153 |
|
154 |
#@ cpd
|
155 |
-
#: counter-core.php:
|
156 |
-
#: counter.php:
|
157 |
msgid "Statistics"
|
158 |
msgstr "Estatísticas"
|
159 |
|
160 |
#@ cpd
|
161 |
-
#: counter-core.php:
|
162 |
-
#: counter.php:
|
163 |
-
#: counter.php:
|
164 |
-
#: counter.php:
|
165 |
msgid "Total visitors"
|
166 |
msgstr "Total de visitas"
|
167 |
|
168 |
#@ cpd
|
169 |
-
#: counter.php:
|
170 |
-
#: counter.php:
|
171 |
msgid "Visitors currently online"
|
172 |
msgstr "Visitantes online"
|
173 |
|
174 |
#@ cpd
|
175 |
-
#: counter.php:
|
176 |
-
#: counter.php:
|
177 |
msgid "Visitors today"
|
178 |
msgstr "Visitas hoje"
|
179 |
|
180 |
#@ cpd
|
181 |
-
#: counter.php:
|
182 |
-
#: counter.php:
|
183 |
msgid "Visitors yesterday"
|
184 |
msgstr "Visitas ontem"
|
185 |
|
186 |
#@ cpd
|
187 |
-
#: counter.php:
|
188 |
-
#: counter.php:
|
189 |
msgid "Visitors last week"
|
190 |
msgstr "Visitas semana passada"
|
191 |
|
192 |
#@ cpd
|
193 |
-
#: counter.php:
|
194 |
-
#: counter.php:
|
195 |
-
#: counter.php:
|
196 |
msgid "Counter starts on"
|
197 |
msgstr "Início da contagem"
|
198 |
|
199 |
#@ cpd
|
200 |
-
#: counter-core.php:
|
201 |
-
#: counter.php:
|
202 |
-
#: counter.php:
|
203 |
-
#: counter.php:
|
204 |
-
#: counter.php:
|
205 |
#: userperspan.php:34
|
206 |
msgid "Visitors per day"
|
207 |
msgstr "(média) de visitas por dia"
|
208 |
|
209 |
#@ cpd
|
210 |
-
#: counter-core.php:
|
211 |
-
#: counter.php:
|
212 |
msgid "Visitors per month"
|
213 |
msgstr "Visitas por mês"
|
214 |
|
215 |
#@ cpd
|
216 |
-
#: counter-core.php:
|
217 |
-
#: counter-options.php:
|
218 |
msgid "Visitors per post"
|
219 |
msgstr "Visitas por post"
|
220 |
|
221 |
#@ cpd
|
222 |
-
#: counter-options.php:
|
223 |
#, php-format
|
224 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
225 |
msgstr "Países atualizados. <b>%s</b> lançamentos em %s menos países faltando"
|
226 |
|
227 |
#@ cpd
|
228 |
-
#: counter-options.php:
|
229 |
msgid "update next"
|
230 |
msgstr "Atualizar proximo"
|
231 |
|
232 |
#@ cpd
|
233 |
-
#: counter-options.php:
|
234 |
#, php-format
|
235 |
msgid "Mass Bots cleaned. %s counts deleted."
|
236 |
msgstr "Mass Bots apagados. %s ocorrências deletadas."
|
237 |
|
238 |
#@ cpd
|
239 |
-
#: counter-options.php:
|
240 |
msgid "Counter reseted."
|
241 |
msgstr "Contador reiniciado."
|
242 |
|
243 |
#@ default
|
244 |
-
#: counter-options.php:
|
245 |
msgid "Dashboard"
|
246 |
msgstr "Painel"
|
247 |
|
248 |
#@ cpd
|
249 |
-
#: counter-options.php:
|
250 |
-
#: counter-options.php:
|
251 |
msgid "How many posts do you want to see on dashboard page?"
|
252 |
msgstr "Quantos posts você deseja visualizar no Painel?"
|
253 |
|
254 |
#@ cpd
|
255 |
-
#: counter-options.php:
|
256 |
msgid "Latest Counts - Posts"
|
257 |
msgstr "Contagens Recentes - Posts"
|
258 |
|
259 |
#@ cpd
|
260 |
-
#: counter-options.php:
|
261 |
msgid "Latest Counts - Days"
|
262 |
msgstr "Contagens Recentes - Dias"
|
263 |
|
264 |
#@ cpd
|
265 |
-
#: counter-options.php:
|
266 |
-
#: counter-options.php:
|
267 |
-
#: counter-options.php:
|
268 |
msgid "How many days do you want look back?"
|
269 |
msgstr "Quantos dias atrás você quer ver?"
|
270 |
|
271 |
#@ cpd
|
272 |
-
#: counter-options.php:
|
273 |
msgid "Chart - Days"
|
274 |
msgstr "Gráfico - Dias"
|
275 |
|
276 |
#@ cpd
|
277 |
-
#: counter-options.php:
|
278 |
msgid "Chart - Height"
|
279 |
msgstr "Gráfico - Altura"
|
280 |
|
281 |
#@ cpd
|
282 |
-
#: counter-options.php:
|
283 |
msgid "Height of the biggest bar"
|
284 |
msgstr "Altura da barra maior"
|
285 |
|
286 |
#@ cpd
|
287 |
-
#: counter-options.php:
|
288 |
msgid "Countries"
|
289 |
msgstr "Países"
|
290 |
|
291 |
#@ cpd
|
292 |
-
#: counter-options.php:
|
293 |
msgid "How many countries do you want to see on dashboard page?"
|
294 |
msgstr "Quantos países você quer visualizar no Painel?"
|
295 |
|
296 |
#@ cpd
|
297 |
-
#: counter-options.php:
|
298 |
msgid "Show in lists"
|
299 |
msgstr "Exibir em listas"
|
300 |
|
301 |
#@ cpd
|
302 |
-
#: counter-options.php:
|
303 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
304 |
msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualização de posts."
|
305 |
|
306 |
#@ cpd
|
307 |
-
#: counter-options.php:
|
308 |
msgid "GeoIP - Countries"
|
309 |
msgstr "GeoIP - Países"
|
310 |
|
311 |
#@ cpd
|
312 |
-
#: counter-options.php:
|
313 |
msgid "Update old counter data"
|
314 |
msgstr "Atualizar dados de contadores antigos"
|
315 |
|
316 |
#@ cpd
|
317 |
-
#: counter-options.php:
|
318 |
msgid "Update GeoIP database"
|
319 |
msgstr "Atualizar Base de Dados GeoIP"
|
320 |
|
321 |
#@ cpd
|
322 |
-
#: counter-options.php:
|
323 |
msgid "Download a new version of GeoIP.dat file."
|
324 |
msgstr "Baixe uma nova versão do arquivo GeoIP.dat"
|
325 |
|
326 |
#@ cpd
|
327 |
-
#: counter-options.php:
|
328 |
msgid "More informations about GeoIP"
|
329 |
msgstr "Mais informações sobre o GeoIP"
|
330 |
|
331 |
#@ cpd
|
332 |
-
#: counter-options.php:
|
333 |
-
#: massbots.php:
|
334 |
msgid "Mass Bots"
|
335 |
msgstr "Mass Bots"
|
336 |
|
337 |
#@ cpd
|
338 |
-
#: counter-options.php:
|
339 |
#, php-format
|
340 |
msgid "Show all IPs with more than %s page views per day"
|
341 |
msgstr "Exibir todos os IPs com mais de %s páginas exibidas por dia"
|
342 |
|
343 |
#@ cpd
|
344 |
-
#: counter-options.php:
|
345 |
#: notes.php:71
|
346 |
#: userperspan.php:44
|
347 |
msgid "show"
|
348 |
msgstr "exibir"
|
349 |
|
350 |
#@ cpd
|
351 |
-
#: counter-options.php:
|
352 |
msgid "IP"
|
353 |
msgstr "IP"
|
354 |
|
355 |
#@ cpd
|
356 |
#@ default
|
357 |
-
#: counter-options.php:
|
358 |
#: notes.php:75
|
359 |
msgid "Date"
|
360 |
msgstr "Data"
|
361 |
|
362 |
#@ cpd
|
363 |
-
#: counter-options.php:
|
364 |
msgid "Client"
|
365 |
msgstr "Cliente"
|
366 |
|
367 |
#@ cpd
|
368 |
-
#: counter-options.php:
|
369 |
msgid "Views"
|
370 |
msgstr "Exibições"
|
371 |
|
372 |
#@ cpd
|
373 |
-
#: counter-options.php:
|
374 |
-
#: counter-options.php:
|
375 |
#, php-format
|
376 |
msgid "Delete these %s counts"
|
377 |
msgstr "Deletar estes %s contadores"
|
378 |
|
379 |
#@ cpd
|
380 |
-
#: counter-options.php:
|
381 |
-
#: counter-options.php:
|
382 |
msgid "Reset the counter"
|
383 |
msgstr "Reiniciar o contador"
|
384 |
|
385 |
#@ cpd
|
386 |
-
#: counter-options.php:
|
387 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
388 |
msgstr "Você pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se você precisar das informações atuais!"
|
389 |
|
390 |
#@ cpd
|
391 |
-
#: counter.php:
|
392 |
#, php-format
|
393 |
msgid "The %s most visited posts in last %s days:"
|
394 |
msgstr "Os %s posts mais visitados nos últimos %s dias:"
|
395 |
|
396 |
#@ cpd
|
397 |
-
#: counter.php:
|
398 |
msgid "Other"
|
399 |
msgstr "Outro"
|
400 |
|
401 |
#@ default
|
402 |
-
#: counter.php:
|
403 |
-
#: massbots.php:
|
404 |
#: userperspan.php:63
|
405 |
msgid "Front page displays"
|
406 |
msgstr "Exibições da primeira página"
|
407 |
|
408 |
#@ default
|
409 |
-
#: counter-core.php:
|
410 |
-
#: counter-options.php:
|
411 |
-
#: counter-options.php:
|
412 |
msgid "Settings"
|
413 |
msgstr "Configurações"
|
414 |
|
415 |
#@ cpd
|
416 |
-
#: counter-core.php:
|
417 |
-
#: counter-options.php:
|
418 |
-
#: counter.php:
|
419 |
-
#: counter.php:
|
420 |
msgid "Reads"
|
421 |
msgstr "Leituras"
|
422 |
|
423 |
#@ cpd
|
424 |
-
#: counter.php:
|
425 |
msgid "This post"
|
426 |
msgstr "Este post"
|
427 |
|
428 |
#@ cpd
|
429 |
-
#: counter.php:
|
430 |
msgid "Reads per day"
|
431 |
msgstr "Leituras por dia"
|
432 |
|
433 |
#@ cpd
|
434 |
-
#: counter-core.php:
|
435 |
-
#: counter-options.php:
|
436 |
msgid "Browsers"
|
437 |
msgstr "Navegadores"
|
438 |
|
439 |
#@ cpd
|
440 |
-
#: counter-core.php:
|
441 |
msgid "Latest Counts"
|
442 |
msgstr "Contagens Recentes"
|
443 |
|
444 |
#@ cpd
|
445 |
-
#: counter-core.php:
|
446 |
msgid "Reads per Country"
|
447 |
msgstr "Leituras por País"
|
448 |
|
449 |
#@ cpd
|
450 |
-
#: geoip/geoip.php:
|
451 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
452 |
msgstr "Desculpe, funções necessárias (zlib) não instaladas ou habilitadas no php.ini."
|
453 |
|
454 |
#@ cpd
|
455 |
-
#: geoip/geoip.php:
|
456 |
msgid "New GeoIP database installed."
|
457 |
msgstr "Nova base de dados GeoIP instalada."
|
458 |
|
459 |
#@ cpd
|
460 |
-
#: geoip/geoip.php:
|
461 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
462 |
msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permissões do diretório \"geoip\" estão setadas para 777."
|
463 |
|
464 |
#@ cpd
|
465 |
-
#: counter-options.php:
|
466 |
msgid "until User Level"
|
467 |
msgstr "usuários do nível"
|
468 |
|
469 |
#@ cpd
|
470 |
-
#: counter-options.php:
|
471 |
msgid "Start Values"
|
472 |
msgstr "Valor inicial"
|
473 |
|
474 |
#@ cpd
|
475 |
-
#: counter-options.php:
|
476 |
msgid "Here you can change the date of first count and add a start count."
|
477 |
msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
|
478 |
|
479 |
#@ cpd
|
480 |
-
#: counter-options.php:
|
481 |
msgid "Start date"
|
482 |
msgstr "Data inicial"
|
483 |
|
484 |
#@ cpd
|
485 |
-
#: counter-options.php:
|
486 |
msgid "Your old Counter starts at?"
|
487 |
msgstr "Sua contagem antiga começa em?"
|
488 |
|
489 |
#@ cpd
|
490 |
-
#: counter-options.php:
|
491 |
-
#: counter-options.php:
|
492 |
msgid "Start count"
|
493 |
msgstr "Contagem inicial"
|
494 |
|
495 |
#@ cpd
|
496 |
-
#: counter-options.php:
|
497 |
msgid "Add this value to \"Total visitors\"."
|
498 |
msgstr "Adicione este valor para \"Total visitors\"."
|
499 |
|
500 |
#@ cpd
|
501 |
-
#: counter-options.php:
|
502 |
msgid "Support"
|
503 |
msgstr "Suporte"
|
504 |
|
505 |
#@ cpd
|
506 |
-
#: counter-core.php:
|
507 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
508 |
msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
|
509 |
|
510 |
#@ cpd
|
511 |
-
#: counter-core.php:
|
512 |
#, php-format
|
513 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
514 |
msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
|
515 |
|
516 |
#@ default
|
517 |
-
#: counter.php:
|
518 |
msgid "Show"
|
519 |
msgstr "Mostrar"
|
520 |
|
521 |
#@ cpd
|
522 |
-
#: counter.php:
|
523 |
#: notes.php:42
|
524 |
#: notes.php:76
|
525 |
msgid "Notes"
|
526 |
msgstr "Notas"
|
527 |
|
528 |
#@ default
|
529 |
-
#: counter.php:
|
530 |
msgid "Edit Post"
|
531 |
msgstr "Editar Post"
|
532 |
|
533 |
#@ default
|
534 |
-
#: counter-core.php:
|
535 |
msgid "Plugin"
|
536 |
msgstr "Plugin"
|
537 |
|
538 |
#@ cpd
|
539 |
-
#: counter-core.php:
|
540 |
#, php-format
|
541 |
msgid "Time for Count per Day: <code>%s</code>."
|
542 |
msgstr "Tempo para Contagem por Dia: <code>%s</code>."
|
@@ -567,66 +567,66 @@ msgid "edit"
|
|
567 |
msgstr "Editar"
|
568 |
|
569 |
#@ cpd
|
570 |
-
#: counter-options.php:
|
571 |
msgid "Anonymous IP"
|
572 |
msgstr "IP Anônimo"
|
573 |
|
574 |
#@ cpd
|
575 |
-
#: counter-options.php:
|
576 |
msgid "Cache"
|
577 |
msgstr "Cache"
|
578 |
|
579 |
#@ cpd
|
580 |
-
#: counter-options.php:
|
581 |
msgid "I use a cache plugin. Count these visits with ajax."
|
582 |
msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
|
583 |
|
584 |
#@ cpd
|
585 |
-
#: counter-options.php:
|
586 |
msgid "Substring of the user agent, separated by comma"
|
587 |
msgstr "Substring do usuário agente, separado por vírgula"
|
588 |
|
589 |
#@ cpd
|
590 |
-
#: counter-options.php:
|
591 |
msgid "Add this value to \"Total reads\"."
|
592 |
msgstr "Adicione este valor ao \"Total de Leituras\"."
|
593 |
|
594 |
#@ cpd
|
595 |
-
#: counter-options.php:
|
596 |
msgid "Debug mode"
|
597 |
msgstr "Modo de depuração"
|
598 |
|
599 |
#@ cpd
|
600 |
-
#: counter-options.php:
|
601 |
msgid "Show debug informations at the bottom of all pages."
|
602 |
msgstr "Mostrar informações de depuração na base de todas as páginas."
|
603 |
|
604 |
#@ cpd
|
605 |
-
#: counter.php:
|
606 |
-
#: counter.php:
|
607 |
msgid "Total reads"
|
608 |
msgstr "Total de Leituras"
|
609 |
|
610 |
#@ cpd
|
611 |
-
#: counter.php:
|
612 |
-
#: counter.php:
|
613 |
msgid "Reads today"
|
614 |
msgstr "Leituras Hoje"
|
615 |
|
616 |
#@ cpd
|
617 |
-
#: counter.php:
|
618 |
-
#: counter.php:
|
619 |
msgid "Reads yesterday"
|
620 |
msgstr "Leituras Ontem"
|
621 |
|
622 |
#@ cpd
|
623 |
-
#: counter-core.php:
|
624 |
msgid "Visitors per Country"
|
625 |
msgstr "Visitantes por Paíis"
|
626 |
|
627 |
#@ cpd
|
628 |
-
#: counter.php:
|
629 |
-
#: counter.php:
|
630 |
msgid "Map"
|
631 |
msgstr "Mapa"
|
632 |
|
@@ -651,321 +651,444 @@ msgid "no data found"
|
|
651 |
msgstr "Não foram encontrados dados"
|
652 |
|
653 |
#@ cpd
|
654 |
-
#: counter-options.php:
|
655 |
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!"
|
656 |
msgstr "Você pode obter os dados dos países para todas as entradas no banco de dados checando novamente os endereços IP na base de dados GeoIP. Isto pode demorar um pouco!"
|
657 |
|
658 |
#@ cpd
|
659 |
-
#: counter-options.php:
|
660 |
msgid "Counter"
|
661 |
msgstr "contador"
|
662 |
|
663 |
#@ cpd
|
664 |
-
#: counter-options.php:
|
665 |
msgid "Clients and referrers"
|
666 |
msgstr "Clientes e Referências"
|
667 |
|
668 |
#@ cpd
|
669 |
-
#: counter-options.php:
|
670 |
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."
|
671 |
msgstr "Salvar e Exibir Clientes e Referências"
|
672 |
|
673 |
#@ cpd
|
674 |
-
#: counter-options.php:
|
675 |
msgid "Local URLs"
|
676 |
msgstr "URLs Locais"
|
677 |
|
678 |
#@ cpd
|
679 |
-
#: counter-options.php:
|
680 |
msgid "Show local referrers too."
|
681 |
msgstr "Também exibir referência local."
|
682 |
|
683 |
#@ default
|
684 |
-
#: counter-options.php:
|
685 |
msgid "Posts"
|
686 |
msgstr "Posts"
|
687 |
|
688 |
#@ default
|
689 |
-
#: counter-options.php:
|
690 |
msgid "Pages"
|
691 |
msgstr "Páginas"
|
692 |
|
693 |
#@ cpd
|
694 |
-
#: counter.php:
|
695 |
-
#: counter.php:
|
696 |
msgid "Reads last week"
|
697 |
msgstr "Leituras na semana passada"
|
698 |
|
699 |
#@ default
|
700 |
-
#: counter.php:
|
701 |
msgid "Category"
|
702 |
msgstr "Categoria"
|
703 |
|
704 |
#@ default
|
705 |
-
#: counter.php:
|
706 |
msgid "Tag"
|
707 |
msgstr "Teg"
|
708 |
|
709 |
#@ default
|
710 |
-
#: counter-core.php:
|
711 |
msgid "License"
|
712 |
msgstr "License"
|
713 |
|
714 |
#@ cpd
|
715 |
-
#: counter-core.php:
|
716 |
-
#: counter.php:
|
717 |
msgid "Reads per month"
|
718 |
msgstr "Leituras por mês"
|
719 |
|
720 |
#@ cpd
|
721 |
-
#: counter-core.php:
|
722 |
msgid "Referrer"
|
723 |
msgstr "Referência"
|
724 |
|
725 |
#@ default
|
726 |
-
#: counter.php:
|
727 |
msgid "Title"
|
728 |
msgstr "Título"
|
729 |
|
730 |
#@ cpd
|
731 |
-
#: counter-options.php:
|
732 |
msgid "Referrers - Entries"
|
733 |
msgstr "Referência - entradas"
|
734 |
|
735 |
#@ cpd
|
736 |
-
#: counter-options.php:
|
737 |
msgid "How many referrers do you want to see on dashboard page?"
|
738 |
msgstr "Quantas referência você quer ver no painel?"
|
739 |
|
740 |
#@ cpd
|
741 |
-
#: counter-options.php:
|
742 |
msgid "Referrers - Days"
|
743 |
msgstr "Referência - Dias"
|
744 |
|
745 |
#@ cpd
|
746 |
-
#: counter.php:
|
747 |
#, php-format
|
748 |
msgid "The %s referrers in last %s days:"
|
749 |
msgstr "AA %s referências nos últimos %s dias:"
|
750 |
|
751 |
#@ cpd
|
752 |
-
#: counter-core.php:
|
753 |
msgid "Visitors online"
|
754 |
msgstr "Visitantes online"
|
755 |
|
756 |
#@ cpd
|
757 |
-
#: counter-core.php:
|
758 |
#, php-format
|
759 |
msgid "\"Count per Day\" updated to version %s."
|
760 |
msgstr "Atualizar \"Count per Day\" para a versão %s."
|
761 |
|
762 |
#@ cpd
|
763 |
-
#: counter-core.php:
|
764 |
msgid "Backup failed! Cannot open file"
|
765 |
msgstr "Backup falhou. O arquivo não abriu"
|
766 |
|
767 |
#@ cpd
|
768 |
-
#: counter-core.php:
|
769 |
#, php-format
|
770 |
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
771 |
msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
|
772 |
|
773 |
#@ cpd
|
774 |
-
#: counter-core.php:
|
775 |
-
|
776 |
-
msgstr "Seu diretório wp-content não é gravável. Contudo você pode copiar o conteúdo desta caixa para um arquivo de texto."
|
777 |
-
|
778 |
-
#@ cpd
|
779 |
-
#: counter-core.php:1033
|
780 |
#, php-format
|
781 |
msgid "Backup of counter table saved in %s."
|
782 |
msgstr "Backup da tabela do contador salvo em %s."
|
783 |
|
784 |
#@ cpd
|
785 |
-
#: counter-core.php:
|
|
|
786 |
#, php-format
|
787 |
msgid "Backup of counter options and collection saved in %s."
|
788 |
msgstr "Backup das opções de contador e acumuladores salvas em %s."
|
789 |
|
790 |
#@ cpd
|
791 |
-
#: counter-options.php:
|
792 |
msgid "Collection in progress..."
|
793 |
msgstr "Acumulador em progresso..."
|
794 |
|
795 |
#@ cpd
|
796 |
-
#: counter-options.php:
|
797 |
msgid "Get Visitors per Post..."
|
798 |
msgstr "Obter visitas por Post..."
|
799 |
|
800 |
#@ cpd
|
801 |
-
#: counter-options.php:
|
802 |
msgid "Delete old data..."
|
803 |
msgstr "Deletar dados antigos..."
|
804 |
|
805 |
#@ cpd
|
806 |
-
#: counter-options.php:
|
807 |
#, php-format
|
808 |
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
809 |
msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s > tamanho posterior = %s)."
|
810 |
|
811 |
#@ cpd
|
812 |
-
#: counter-options.php:
|
813 |
msgid "Installation of \"Count per Day\" checked"
|
814 |
msgstr "Instalação do \"Count per Day\" checada"
|
815 |
|
816 |
#@ default
|
817 |
-
#: counter-options.php:
|
818 |
-
#: counter-options.php:
|
819 |
msgid "Tools"
|
820 |
msgstr "Ferramentas"
|
821 |
|
822 |
#@ cpd
|
823 |
-
#: counter-options.php:
|
824 |
msgid "Save URL only, no query string."
|
825 |
msgstr "Salvar somente URL, sem sequencia de caracteres"
|
826 |
|
827 |
#@ cpd
|
828 |
-
#: counter-options.php:
|
829 |
msgid "Who can see it"
|
830 |
msgstr "Quem pode ver isto"
|
831 |
|
832 |
#@ cpd
|
833 |
-
#: counter-options.php:
|
834 |
msgid "custom"
|
835 |
msgstr "Customizar"
|
836 |
|
837 |
#@ cpd
|
838 |
-
#: counter-options.php:
|
839 |
msgid "and higher are allowed to see the statistics page."
|
840 |
msgstr "e superior têm permissão para ver a página de estatísticas."
|
841 |
|
842 |
#@ cpd
|
843 |
-
#: counter-options.php:
|
844 |
#, php-format
|
845 |
msgid "Set the %s capability %s a user need:"
|
846 |
msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
|
847 |
|
848 |
#@ cpd
|
849 |
-
#: counter-options.php:
|
850 |
msgid "Stylesheet"
|
851 |
msgstr "Estilo"
|
852 |
|
853 |
#@ cpd
|
854 |
-
#: counter-options.php:
|
855 |
msgid "NO Stylesheet in Frontend"
|
856 |
msgstr "SEM Estilo na interface pública"
|
857 |
|
858 |
#@ cpd
|
859 |
-
#: counter-options.php:
|
860 |
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
861 |
msgstr "Não carregue o estilo \"counter.css\" na interface pública"
|
862 |
|
863 |
#@ cpd
|
864 |
-
#: counter-options.php:
|
865 |
-
#: counter-options.php:
|
866 |
msgid "Backup"
|
867 |
msgstr "Backup"
|
868 |
|
869 |
#@ cpd
|
870 |
-
#: counter-options.php:
|
871 |
msgid "Entries per pass"
|
872 |
msgstr "Entradas por passagem"
|
873 |
|
874 |
#@ cpd
|
875 |
-
#: counter-options.php:
|
876 |
msgid "How many entries should be saved per pass? Default: 10000"
|
877 |
msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
|
878 |
|
879 |
#@ cpd
|
880 |
-
#: counter-options.php:
|
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 "Se o limite de memória do PHP for inferior a 50Mb você terá uma página em branco ou mensagens de erro. Tente um valor menor."
|
883 |
|
884 |
#@ cpd
|
885 |
-
#: counter-options.php:
|
886 |
#, php-format
|
887 |
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
888 |
msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
|
889 |
|
890 |
#@ cpd
|
891 |
-
#: counter-options.php:
|
892 |
msgid "Backup the database"
|
893 |
msgstr "Backup da base de dados"
|
894 |
|
895 |
#@ cpd
|
896 |
-
#: counter-options.php:
|
897 |
-
#: counter-options.php:
|
898 |
msgid "Collect old data"
|
899 |
msgstr "Coletar dados antigos"
|
900 |
|
901 |
#@ cpd
|
902 |
-
#: counter-options.php:
|
903 |
#, php-format
|
904 |
msgid "Current size of your counter table %s is %s."
|
905 |
msgstr "O tamanho atual da sua tabela de contador %s é %s."
|
906 |
|
907 |
#@ cpd
|
908 |
-
#: counter-options.php:
|
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 "Você pode coletar dados antigos e limpar a tabela de contadores. <br/> Leituras e Visitantes serão salvos por mês, por país e por post. <br/> Clientes e refrência serão excluídos."
|
911 |
|
912 |
#@ cpd
|
913 |
-
#: counter-options.php:
|
914 |
#, php-format
|
915 |
msgid "Currently your collection contains data until %s."
|
916 |
msgstr "Atualmente sua coleção contém dados até %s"
|
917 |
|
918 |
#@ cpd
|
919 |
-
#: counter-options.php:
|
920 |
msgid "Normally new data will be added to the collection."
|
921 |
msgstr "Dados novos são adicionados normalmente à coleção."
|
922 |
|
923 |
#@ cpd
|
924 |
-
#: counter-options.php:
|
925 |
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
926 |
msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
|
927 |
|
928 |
#@ cpd
|
929 |
-
#: counter-options.php:
|
930 |
#, php-format
|
931 |
msgid "All collected data until %s will deleted."
|
932 |
msgstr "Todos os dados coletados até %s serão excluidos."
|
933 |
|
934 |
#@ cpd
|
935 |
-
#: counter-options.php:
|
936 |
#, php-format
|
937 |
msgid "Keep entries of last %s full months + current month in counter table."
|
938 |
msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
|
939 |
|
940 |
#@ cpd
|
941 |
-
#: counter-options.php:
|
942 |
msgid "ReActivation"
|
943 |
msgstr "Reativação"
|
944 |
|
945 |
#@ cpd
|
946 |
-
#: counter-options.php:
|
947 |
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
948 |
msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
|
949 |
|
950 |
#@ cpd
|
951 |
-
#: counter-options.php:
|
952 |
msgid "ReActivate the plugin"
|
953 |
msgstr "Reativar o plugin"
|
954 |
|
955 |
#@ cpd
|
956 |
-
#: counter.php:
|
957 |
-
#: counter.php:
|
958 |
msgid "Visitors"
|
959 |
msgstr "Visitantes"
|
960 |
|
961 |
#@ cpd
|
962 |
-
#: counter.php:
|
963 |
-
#: counter.php:
|
964 |
msgid "Most visited day"
|
965 |
msgstr "Dia mais visitado"
|
966 |
|
967 |
#@ cpd
|
968 |
-
#: counter.php:
|
969 |
msgid "drag and drop to sort"
|
970 |
msgstr "arrastar e soltar para classificar"
|
971 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-09-03 20:03+0100\n"
|
6 |
+
"PO-Revision-Date: 2012-07-14 11:54-0300\n"
|
7 |
"Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#@ cpd
|
22 |
+
#: counter-options.php:52
|
23 |
msgid "Options updated"
|
24 |
msgstr "Opções atualizadas"
|
25 |
|
26 |
#@ cpd
|
27 |
+
#: counter-options.php:113
|
28 |
#, php-format
|
29 |
msgid "Database cleaned. %s rows deleted."
|
30 |
msgstr "Banco de dados limpo. %s linhas apagadas."
|
31 |
|
32 |
#@ cpd
|
33 |
+
#: counter-options.php:128
|
34 |
+
#: counter-options.php:691
|
35 |
msgid "UNINSTALL Count per Day"
|
36 |
msgstr "DESINSTALAR o Count per Day"
|
37 |
|
38 |
#@ cpd
|
|
|
39 |
#: counter-options.php:133
|
40 |
#: counter-options.php:134
|
41 |
+
#: counter-options.php:135
|
42 |
#, php-format
|
43 |
msgid "Table %s deleted"
|
44 |
msgstr "Tabela %s apagada"
|
45 |
|
46 |
#@ cpd
|
47 |
+
#: counter-options.php:136
|
48 |
msgid "Options deleted"
|
49 |
msgstr "Opções apagadas"
|
50 |
|
51 |
#@ cpd
|
52 |
+
#: counter-options.php:362
|
53 |
+
#: counter-options.php:677
|
54 |
msgid "Uninstall"
|
55 |
msgstr "Desinstalar"
|
56 |
|
57 |
#@ cpd
|
58 |
+
#: counter-options.php:363
|
59 |
msgid "Click here"
|
60 |
msgstr "Clique aqui"
|
61 |
|
62 |
#@ cpd
|
63 |
+
#: counter-options.php:363
|
64 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
65 |
msgstr "Para terminar a desinstalação e desativar o \"Count per Day\". "
|
66 |
|
67 |
#@ cpd
|
68 |
+
#: counter-options.php:724
|
69 |
msgid "Online time"
|
70 |
msgstr "Período online"
|
71 |
|
72 |
#@ cpd
|
73 |
+
#: counter-options.php:725
|
74 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
75 |
msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na página do painel."
|
76 |
|
77 |
#@ cpd
|
78 |
+
#: counter-options.php:728
|
79 |
msgid "Logged on Users"
|
80 |
msgstr "Usuários logados"
|
81 |
|
82 |
#@ cpd
|
83 |
+
#: counter-options.php:730
|
84 |
msgid "count too"
|
85 |
msgstr "contar também"
|
86 |
|
87 |
#@ cpd
|
88 |
+
#: counter-options.php:742
|
89 |
msgid "Auto counter"
|
90 |
msgstr "Autocontador"
|
91 |
|
92 |
#@ cpd
|
93 |
+
#: counter-options.php:743
|
94 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
95 |
msgstr "Conta automaticamente posts e páginas, sem a necessidade de alterações em templates."
|
96 |
|
97 |
#@ cpd
|
98 |
+
#: counter-options.php:746
|
99 |
msgid "Bots to ignore"
|
100 |
msgstr "Bots a serem ignorados"
|
101 |
|
102 |
#@ cpd
|
103 |
+
#: counter-options.php:924
|
104 |
msgid "Update options"
|
105 |
msgstr "Atualizar opções"
|
106 |
|
107 |
#@ cpd
|
108 |
+
#: counter-options.php:538
|
109 |
+
#: counter-options.php:546
|
110 |
msgid "Clean the database"
|
111 |
msgstr "Limpar o banco de dados"
|
112 |
|
113 |
#@ cpd
|
114 |
+
#: counter-options.php:541
|
115 |
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."
|
116 |
msgstr "Você pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso você adicione novos bots acima, os \"dados de spam\" deles continuarão no banco de dados. <br />Para limpar as visitas desses bots, você pode executar novamente o filtro de bot aqui."
|
117 |
|
118 |
#@ cpd
|
119 |
+
#: counter-options.php:680
|
120 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
121 |
msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados serão preservadas."
|
122 |
|
123 |
#@ cpd
|
124 |
+
#: counter-options.php:681
|
125 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
126 |
msgstr "A opção a seguir permite apagar definitivamente as tabelas do banco de dados, além de desabilitar o plugin."
|
127 |
|
128 |
#@ cpd
|
129 |
+
#: counter-options.php:684
|
130 |
msgid "WARNING"
|
131 |
msgstr "ATENÇÃO"
|
132 |
|
133 |
#@ cpd
|
134 |
+
#: counter-options.php:685
|
135 |
msgid "These tables (with ALL counter data) will be deleted."
|
136 |
msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) serão apagadas:"
|
137 |
|
138 |
#@ cpd
|
139 |
+
#: counter-options.php:687
|
140 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
141 |
msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciarão a partir do 0."
|
142 |
|
143 |
#@ cpd
|
144 |
+
#: counter-options.php:667
|
145 |
+
#: counter-options.php:690
|
146 |
msgid "Yes"
|
147 |
msgstr "Sim, quero"
|
148 |
|
149 |
#@ cpd
|
150 |
+
#: counter-options.php:691
|
151 |
msgid "You are sure to disable Count per Day and delete all data?"
|
152 |
msgstr "Confirma a desativação do Count per Day e a exclusão de todos os dados?"
|
153 |
|
154 |
#@ cpd
|
155 |
+
#: counter-core.php:807
|
156 |
+
#: counter.php:1227
|
157 |
msgid "Statistics"
|
158 |
msgstr "Estatísticas"
|
159 |
|
160 |
#@ cpd
|
161 |
+
#: counter-core.php:775
|
162 |
+
#: counter.php:187
|
163 |
+
#: counter.php:1113
|
164 |
+
#: counter.php:1305
|
165 |
msgid "Total visitors"
|
166 |
msgstr "Total de visitas"
|
167 |
|
168 |
#@ cpd
|
169 |
+
#: counter.php:188
|
170 |
+
#: counter.php:1311
|
171 |
msgid "Visitors currently online"
|
172 |
msgstr "Visitantes online"
|
173 |
|
174 |
#@ cpd
|
175 |
+
#: counter.php:189
|
176 |
+
#: counter.php:1306
|
177 |
msgid "Visitors today"
|
178 |
msgstr "Visitas hoje"
|
179 |
|
180 |
#@ cpd
|
181 |
+
#: counter.php:190
|
182 |
+
#: counter.php:1307
|
183 |
msgid "Visitors yesterday"
|
184 |
msgstr "Visitas ontem"
|
185 |
|
186 |
#@ cpd
|
187 |
+
#: counter.php:191
|
188 |
+
#: counter.php:1308
|
189 |
msgid "Visitors last week"
|
190 |
msgstr "Visitas semana passada"
|
191 |
|
192 |
#@ cpd
|
193 |
+
#: counter.php:194
|
194 |
+
#: counter.php:872
|
195 |
+
#: counter.php:1312
|
196 |
msgid "Counter starts on"
|
197 |
msgstr "Início da contagem"
|
198 |
|
199 |
#@ cpd
|
200 |
+
#: counter-core.php:781
|
201 |
+
#: counter.php:193
|
202 |
+
#: counter.php:292
|
203 |
+
#: counter.php:1115
|
204 |
+
#: counter.php:1310
|
205 |
#: userperspan.php:34
|
206 |
msgid "Visitors per day"
|
207 |
msgstr "(média) de visitas por dia"
|
208 |
|
209 |
#@ cpd
|
210 |
+
#: counter-core.php:777
|
211 |
+
#: counter.php:1309
|
212 |
msgid "Visitors per month"
|
213 |
msgstr "Visitas por mês"
|
214 |
|
215 |
#@ cpd
|
216 |
+
#: counter-core.php:779
|
217 |
+
#: counter-options.php:806
|
218 |
msgid "Visitors per post"
|
219 |
msgstr "Visitas por post"
|
220 |
|
221 |
#@ cpd
|
222 |
+
#: counter-options.php:63
|
223 |
#, php-format
|
224 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
225 |
msgstr "Países atualizados. <b>%s</b> lançamentos em %s menos países faltando"
|
226 |
|
227 |
#@ cpd
|
228 |
+
#: counter-options.php:66
|
229 |
msgid "update next"
|
230 |
msgstr "Atualizar proximo"
|
231 |
|
232 |
#@ cpd
|
233 |
+
#: counter-options.php:106
|
234 |
#, php-format
|
235 |
msgid "Mass Bots cleaned. %s counts deleted."
|
236 |
msgstr "Mass Bots apagados. %s ocorrências deletadas."
|
237 |
|
238 |
#@ cpd
|
239 |
+
#: counter-options.php:123
|
240 |
msgid "Counter reseted."
|
241 |
msgstr "Contador reiniciado."
|
242 |
|
243 |
#@ default
|
244 |
+
#: counter-options.php:771
|
245 |
msgid "Dashboard"
|
246 |
msgstr "Painel"
|
247 |
|
248 |
#@ cpd
|
249 |
+
#: counter-options.php:807
|
250 |
+
#: counter-options.php:811
|
251 |
msgid "How many posts do you want to see on dashboard page?"
|
252 |
msgstr "Quantos posts você deseja visualizar no Painel?"
|
253 |
|
254 |
#@ cpd
|
255 |
+
#: counter-options.php:810
|
256 |
msgid "Latest Counts - Posts"
|
257 |
msgstr "Contagens Recentes - Posts"
|
258 |
|
259 |
#@ cpd
|
260 |
+
#: counter-options.php:814
|
261 |
msgid "Latest Counts - Days"
|
262 |
msgstr "Contagens Recentes - Dias"
|
263 |
|
264 |
#@ cpd
|
265 |
+
#: counter-options.php:815
|
266 |
+
#: counter-options.php:819
|
267 |
+
#: counter-options.php:841
|
268 |
msgid "How many days do you want look back?"
|
269 |
msgstr "Quantos dias atrás você quer ver?"
|
270 |
|
271 |
#@ cpd
|
272 |
+
#: counter-options.php:818
|
273 |
msgid "Chart - Days"
|
274 |
msgstr "Gráfico - Dias"
|
275 |
|
276 |
#@ cpd
|
277 |
+
#: counter-options.php:822
|
278 |
msgid "Chart - Height"
|
279 |
msgstr "Gráfico - Altura"
|
280 |
|
281 |
#@ cpd
|
282 |
+
#: counter-options.php:823
|
283 |
msgid "Height of the biggest bar"
|
284 |
msgstr "Altura da barra maior"
|
285 |
|
286 |
#@ cpd
|
287 |
+
#: counter-options.php:827
|
288 |
msgid "Countries"
|
289 |
msgstr "Países"
|
290 |
|
291 |
#@ cpd
|
292 |
+
#: counter-options.php:828
|
293 |
msgid "How many countries do you want to see on dashboard page?"
|
294 |
msgstr "Quantos países você quer visualizar no Painel?"
|
295 |
|
296 |
#@ cpd
|
297 |
+
#: counter-options.php:855
|
298 |
msgid "Show in lists"
|
299 |
msgstr "Exibir em listas"
|
300 |
|
301 |
#@ cpd
|
302 |
+
#: counter-options.php:856
|
303 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
304 |
msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualização de posts."
|
305 |
|
306 |
#@ cpd
|
307 |
+
#: counter-options.php:608
|
308 |
msgid "GeoIP - Countries"
|
309 |
msgstr "GeoIP - Países"
|
310 |
|
311 |
#@ cpd
|
312 |
+
#: counter-options.php:617
|
313 |
msgid "Update old counter data"
|
314 |
msgstr "Atualizar dados de contadores antigos"
|
315 |
|
316 |
#@ cpd
|
317 |
+
#: counter-options.php:629
|
318 |
msgid "Update GeoIP database"
|
319 |
msgstr "Atualizar Base de Dados GeoIP"
|
320 |
|
321 |
#@ cpd
|
322 |
+
#: counter-options.php:624
|
323 |
msgid "Download a new version of GeoIP.dat file."
|
324 |
msgstr "Baixe uma nova versão do arquivo GeoIP.dat"
|
325 |
|
326 |
#@ cpd
|
327 |
+
#: counter-options.php:634
|
328 |
msgid "More informations about GeoIP"
|
329 |
msgstr "Mais informações sobre o GeoIP"
|
330 |
|
331 |
#@ cpd
|
332 |
+
#: counter-options.php:402
|
333 |
+
#: massbots.php:36
|
334 |
msgid "Mass Bots"
|
335 |
msgstr "Mass Bots"
|
336 |
|
337 |
#@ cpd
|
338 |
+
#: counter-options.php:406
|
339 |
#, php-format
|
340 |
msgid "Show all IPs with more than %s page views per day"
|
341 |
msgstr "Exibir todos os IPs com mais de %s páginas exibidas por dia"
|
342 |
|
343 |
#@ cpd
|
344 |
+
#: counter-options.php:407
|
345 |
#: notes.php:71
|
346 |
#: userperspan.php:44
|
347 |
msgid "show"
|
348 |
msgstr "exibir"
|
349 |
|
350 |
#@ cpd
|
351 |
+
#: counter-options.php:415
|
352 |
msgid "IP"
|
353 |
msgstr "IP"
|
354 |
|
355 |
#@ cpd
|
356 |
#@ default
|
357 |
+
#: counter-options.php:416
|
358 |
#: notes.php:75
|
359 |
msgid "Date"
|
360 |
msgstr "Data"
|
361 |
|
362 |
#@ cpd
|
363 |
+
#: counter-options.php:417
|
364 |
msgid "Client"
|
365 |
msgstr "Cliente"
|
366 |
|
367 |
#@ cpd
|
368 |
+
#: counter-options.php:418
|
369 |
msgid "Views"
|
370 |
msgstr "Exibições"
|
371 |
|
372 |
#@ cpd
|
373 |
+
#: counter-options.php:433
|
374 |
+
#: counter-options.php:449
|
375 |
#, php-format
|
376 |
msgid "Delete these %s counts"
|
377 |
msgstr "Deletar estes %s contadores"
|
378 |
|
379 |
#@ cpd
|
380 |
+
#: counter-options.php:658
|
381 |
+
#: counter-options.php:668
|
382 |
msgid "Reset the counter"
|
383 |
msgstr "Reiniciar o contador"
|
384 |
|
385 |
#@ cpd
|
386 |
+
#: counter-options.php:661
|
387 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
388 |
msgstr "Você pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se você precisar das informações atuais!"
|
389 |
|
390 |
#@ cpd
|
391 |
+
#: counter.php:705
|
392 |
#, php-format
|
393 |
msgid "The %s most visited posts in last %s days:"
|
394 |
msgstr "Os %s posts mais visitados nos últimos %s dias:"
|
395 |
|
396 |
#@ cpd
|
397 |
+
#: counter.php:861
|
398 |
msgid "Other"
|
399 |
msgstr "Outro"
|
400 |
|
401 |
#@ default
|
402 |
+
#: counter.php:1049
|
403 |
+
#: massbots.php:53
|
404 |
#: userperspan.php:63
|
405 |
msgid "Front page displays"
|
406 |
msgstr "Exibições da primeira página"
|
407 |
|
408 |
#@ default
|
409 |
+
#: counter-core.php:612
|
410 |
+
#: counter-options.php:386
|
411 |
+
#: counter-options.php:712
|
412 |
msgid "Settings"
|
413 |
msgstr "Configurações"
|
414 |
|
415 |
#@ cpd
|
416 |
+
#: counter-core.php:677
|
417 |
+
#: counter-options.php:761
|
418 |
+
#: counter.php:186
|
419 |
+
#: counter.php:922
|
420 |
msgid "Reads"
|
421 |
msgstr "Leituras"
|
422 |
|
423 |
#@ cpd
|
424 |
+
#: counter.php:1299
|
425 |
msgid "This post"
|
426 |
msgstr "Este post"
|
427 |
|
428 |
#@ cpd
|
429 |
+
#: counter.php:291
|
430 |
msgid "Reads per day"
|
431 |
msgstr "Leituras por dia"
|
432 |
|
433 |
#@ cpd
|
434 |
+
#: counter-core.php:786
|
435 |
+
#: counter-options.php:832
|
436 |
msgid "Browsers"
|
437 |
msgstr "Navegadores"
|
438 |
|
439 |
#@ cpd
|
440 |
+
#: counter-core.php:780
|
441 |
msgid "Latest Counts"
|
442 |
msgstr "Contagens Recentes"
|
443 |
|
444 |
#@ cpd
|
445 |
+
#: counter-core.php:791
|
446 |
msgid "Reads per Country"
|
447 |
msgstr "Leituras por País"
|
448 |
|
449 |
#@ cpd
|
450 |
+
#: geoip/geoip.php:90
|
451 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
452 |
msgstr "Desculpe, funções necessárias (zlib) não instaladas ou habilitadas no php.ini."
|
453 |
|
454 |
#@ cpd
|
455 |
+
#: geoip/geoip.php:114
|
456 |
msgid "New GeoIP database installed."
|
457 |
msgstr "Nova base de dados GeoIP instalada."
|
458 |
|
459 |
#@ cpd
|
460 |
+
#: geoip/geoip.php:116
|
461 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
462 |
msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permissões do diretório \"geoip\" estão setadas para 777."
|
463 |
|
464 |
#@ cpd
|
465 |
+
#: counter-options.php:731
|
466 |
msgid "until User Level"
|
467 |
msgstr "usuários do nível"
|
468 |
|
469 |
#@ cpd
|
470 |
+
#: counter-options.php:863
|
471 |
msgid "Start Values"
|
472 |
msgstr "Valor inicial"
|
473 |
|
474 |
#@ cpd
|
475 |
+
#: counter-options.php:867
|
476 |
msgid "Here you can change the date of first count and add a start count."
|
477 |
msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
|
478 |
|
479 |
#@ cpd
|
480 |
+
#: counter-options.php:871
|
481 |
msgid "Start date"
|
482 |
msgstr "Data inicial"
|
483 |
|
484 |
#@ cpd
|
485 |
+
#: counter-options.php:872
|
486 |
msgid "Your old Counter starts at?"
|
487 |
msgstr "Sua contagem antiga começa em?"
|
488 |
|
489 |
#@ cpd
|
490 |
+
#: counter-options.php:875
|
491 |
+
#: counter-options.php:879
|
492 |
msgid "Start count"
|
493 |
msgstr "Contagem inicial"
|
494 |
|
495 |
#@ cpd
|
496 |
+
#: counter-options.php:876
|
497 |
msgid "Add this value to \"Total visitors\"."
|
498 |
msgstr "Adicione este valor para \"Total visitors\"."
|
499 |
|
500 |
#@ cpd
|
501 |
+
#: counter-options.php:699
|
502 |
msgid "Support"
|
503 |
msgstr "Suporte"
|
504 |
|
505 |
#@ cpd
|
506 |
+
#: counter-core.php:741
|
507 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
508 |
msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
|
509 |
|
510 |
#@ cpd
|
511 |
+
#: counter-core.php:742
|
512 |
#, php-format
|
513 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
514 |
msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
|
515 |
|
516 |
#@ default
|
517 |
+
#: counter.php:821
|
518 |
msgid "Show"
|
519 |
msgstr "Mostrar"
|
520 |
|
521 |
#@ cpd
|
522 |
+
#: counter.php:823
|
523 |
#: notes.php:42
|
524 |
#: notes.php:76
|
525 |
msgid "Notes"
|
526 |
msgstr "Notas"
|
527 |
|
528 |
#@ default
|
529 |
+
#: counter.php:1034
|
530 |
msgid "Edit Post"
|
531 |
msgstr "Editar Post"
|
532 |
|
533 |
#@ default
|
534 |
+
#: counter-core.php:783
|
535 |
msgid "Plugin"
|
536 |
msgstr "Plugin"
|
537 |
|
538 |
#@ cpd
|
539 |
+
#: counter-core.php:740
|
540 |
#, php-format
|
541 |
msgid "Time for Count per Day: <code>%s</code>."
|
542 |
msgstr "Tempo para Contagem por Dia: <code>%s</code>."
|
567 |
msgstr "Editar"
|
568 |
|
569 |
#@ cpd
|
570 |
+
#: counter-options.php:750
|
571 |
msgid "Anonymous IP"
|
572 |
msgstr "IP Anônimo"
|
573 |
|
574 |
#@ cpd
|
575 |
+
#: counter-options.php:754
|
576 |
msgid "Cache"
|
577 |
msgstr "Cache"
|
578 |
|
579 |
#@ cpd
|
580 |
+
#: counter-options.php:755
|
581 |
msgid "I use a cache plugin. Count these visits with ajax."
|
582 |
msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
|
583 |
|
584 |
#@ cpd
|
585 |
+
#: counter-options.php:833
|
586 |
msgid "Substring of the user agent, separated by comma"
|
587 |
msgstr "Substring do usuário agente, separado por vírgula"
|
588 |
|
589 |
#@ cpd
|
590 |
+
#: counter-options.php:880
|
591 |
msgid "Add this value to \"Total reads\"."
|
592 |
msgstr "Adicione este valor ao \"Total de Leituras\"."
|
593 |
|
594 |
#@ cpd
|
595 |
+
#: counter-options.php:917
|
596 |
msgid "Debug mode"
|
597 |
msgstr "Modo de depuração"
|
598 |
|
599 |
#@ cpd
|
600 |
+
#: counter-options.php:919
|
601 |
msgid "Show debug informations at the bottom of all pages."
|
602 |
msgstr "Mostrar informações de depuração na base de todas as páginas."
|
603 |
|
604 |
#@ cpd
|
605 |
+
#: counter.php:182
|
606 |
+
#: counter.php:1300
|
607 |
msgid "Total reads"
|
608 |
msgstr "Total de Leituras"
|
609 |
|
610 |
#@ cpd
|
611 |
+
#: counter.php:183
|
612 |
+
#: counter.php:1301
|
613 |
msgid "Reads today"
|
614 |
msgstr "Leituras Hoje"
|
615 |
|
616 |
#@ cpd
|
617 |
+
#: counter.php:184
|
618 |
+
#: counter.php:1302
|
619 |
msgid "Reads yesterday"
|
620 |
msgstr "Leituras Ontem"
|
621 |
|
622 |
#@ cpd
|
623 |
+
#: counter-core.php:792
|
624 |
msgid "Visitors per Country"
|
625 |
msgstr "Visitantes por Paíis"
|
626 |
|
627 |
#@ cpd
|
628 |
+
#: counter.php:382
|
629 |
+
#: counter.php:1144
|
630 |
msgid "Map"
|
631 |
msgstr "Mapa"
|
632 |
|
651 |
msgstr "Não foram encontrados dados"
|
652 |
|
653 |
#@ cpd
|
654 |
+
#: counter-options.php:611
|
655 |
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!"
|
656 |
msgstr "Você pode obter os dados dos países para todas as entradas no banco de dados checando novamente os endereços IP na base de dados GeoIP. Isto pode demorar um pouco!"
|
657 |
|
658 |
#@ cpd
|
659 |
+
#: counter-options.php:720
|
660 |
msgid "Counter"
|
661 |
msgstr "contador"
|
662 |
|
663 |
#@ cpd
|
664 |
+
#: counter-options.php:758
|
665 |
msgid "Clients and referrers"
|
666 |
msgstr "Clientes e Referências"
|
667 |
|
668 |
#@ cpd
|
669 |
+
#: counter-options.php:761
|
670 |
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."
|
671 |
msgstr "Salvar e Exibir Clientes e Referências"
|
672 |
|
673 |
#@ cpd
|
674 |
+
#: counter-options.php:844
|
675 |
msgid "Local URLs"
|
676 |
msgstr "URLs Locais"
|
677 |
|
678 |
#@ cpd
|
679 |
+
#: counter-options.php:845
|
680 |
msgid "Show local referrers too."
|
681 |
msgstr "Também exibir referência local."
|
682 |
|
683 |
#@ default
|
684 |
+
#: counter-options.php:852
|
685 |
msgid "Posts"
|
686 |
msgstr "Posts"
|
687 |
|
688 |
#@ default
|
689 |
+
#: counter-options.php:852
|
690 |
msgid "Pages"
|
691 |
msgstr "Páginas"
|
692 |
|
693 |
#@ cpd
|
694 |
+
#: counter.php:185
|
695 |
+
#: counter.php:1303
|
696 |
msgid "Reads last week"
|
697 |
msgstr "Leituras na semana passada"
|
698 |
|
699 |
#@ default
|
700 |
+
#: counter.php:1043
|
701 |
msgid "Category"
|
702 |
msgstr "Categoria"
|
703 |
|
704 |
#@ default
|
705 |
+
#: counter.php:1046
|
706 |
msgid "Tag"
|
707 |
msgstr "Teg"
|
708 |
|
709 |
#@ default
|
710 |
+
#: counter-core.php:743
|
711 |
msgid "License"
|
712 |
msgstr "License"
|
713 |
|
714 |
#@ cpd
|
715 |
+
#: counter-core.php:778
|
716 |
+
#: counter.php:1304
|
717 |
msgid "Reads per month"
|
718 |
msgstr "Leituras por mês"
|
719 |
|
720 |
#@ cpd
|
721 |
+
#: counter-core.php:787
|
722 |
msgid "Referrer"
|
723 |
msgstr "Referência"
|
724 |
|
725 |
#@ default
|
726 |
+
#: counter.php:1323
|
727 |
msgid "Title"
|
728 |
msgstr "Título"
|
729 |
|
730 |
#@ cpd
|
731 |
+
#: counter-options.php:836
|
732 |
msgid "Referrers - Entries"
|
733 |
msgstr "Referência - entradas"
|
734 |
|
735 |
#@ cpd
|
736 |
+
#: counter-options.php:837
|
737 |
msgid "How many referrers do you want to see on dashboard page?"
|
738 |
msgstr "Quantas referência você quer ver no painel?"
|
739 |
|
740 |
#@ cpd
|
741 |
+
#: counter-options.php:840
|
742 |
msgid "Referrers - Days"
|
743 |
msgstr "Referência - Dias"
|
744 |
|
745 |
#@ cpd
|
746 |
+
#: counter.php:892
|
747 |
#, php-format
|
748 |
msgid "The %s referrers in last %s days:"
|
749 |
msgstr "AA %s referências nos últimos %s dias:"
|
750 |
|
751 |
#@ cpd
|
752 |
+
#: counter-core.php:776
|
753 |
msgid "Visitors online"
|
754 |
msgstr "Visitantes online"
|
755 |
|
756 |
#@ cpd
|
757 |
+
#: counter-core.php:225
|
758 |
#, php-format
|
759 |
msgid "\"Count per Day\" updated to version %s."
|
760 |
msgstr "Atualizar \"Count per Day\" para a versão %s."
|
761 |
|
762 |
#@ cpd
|
763 |
+
#: counter-core.php:977
|
764 |
msgid "Backup failed! Cannot open file"
|
765 |
msgstr "Backup falhou. O arquivo não abriu"
|
766 |
|
767 |
#@ cpd
|
768 |
+
#: counter-core.php:1004
|
769 |
#, php-format
|
770 |
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
771 |
msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
|
772 |
|
773 |
#@ cpd
|
774 |
+
#: counter-core.php:1095
|
775 |
+
#: counter-core.php:1103
|
|
|
|
|
|
|
|
|
776 |
#, php-format
|
777 |
msgid "Backup of counter table saved in %s."
|
778 |
msgstr "Backup da tabela do contador salvo em %s."
|
779 |
|
780 |
#@ cpd
|
781 |
+
#: counter-core.php:1097
|
782 |
+
#: counter-core.php:1105
|
783 |
#, php-format
|
784 |
msgid "Backup of counter options and collection saved in %s."
|
785 |
msgstr "Backup das opções de contador e acumuladores salvas em %s."
|
786 |
|
787 |
#@ cpd
|
788 |
+
#: counter-options.php:169
|
789 |
msgid "Collection in progress..."
|
790 |
msgstr "Acumulador em progresso..."
|
791 |
|
792 |
#@ cpd
|
793 |
+
#: counter-options.php:263
|
794 |
msgid "Get Visitors per Post..."
|
795 |
msgstr "Obter visitas por Post..."
|
796 |
|
797 |
#@ cpd
|
798 |
+
#: counter-options.php:284
|
799 |
msgid "Delete old data..."
|
800 |
msgstr "Deletar dados antigos..."
|
801 |
|
802 |
#@ cpd
|
803 |
+
#: counter-options.php:308
|
804 |
#, php-format
|
805 |
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
806 |
msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s > tamanho posterior = %s)."
|
807 |
|
808 |
#@ cpd
|
809 |
+
#: counter-options.php:317
|
810 |
msgid "Installation of \"Count per Day\" checked"
|
811 |
msgstr "Instalação do \"Count per Day\" checada"
|
812 |
|
813 |
#@ default
|
814 |
+
#: counter-options.php:385
|
815 |
+
#: counter-options.php:711
|
816 |
msgid "Tools"
|
817 |
msgstr "Ferramentas"
|
818 |
|
819 |
#@ cpd
|
820 |
+
#: counter-options.php:763
|
821 |
msgid "Save URL only, no query string."
|
822 |
msgstr "Salvar somente URL, sem sequencia de caracteres"
|
823 |
|
824 |
#@ cpd
|
825 |
+
#: counter-options.php:787
|
826 |
msgid "Who can see it"
|
827 |
msgstr "Quem pode ver isto"
|
828 |
|
829 |
#@ cpd
|
830 |
+
#: counter-options.php:796
|
831 |
msgid "custom"
|
832 |
msgstr "Customizar"
|
833 |
|
834 |
#@ cpd
|
835 |
+
#: counter-options.php:798
|
836 |
msgid "and higher are allowed to see the statistics page."
|
837 |
msgstr "e superior têm permissão para ver a página de estatísticas."
|
838 |
|
839 |
#@ cpd
|
840 |
+
#: counter-options.php:800
|
841 |
#, php-format
|
842 |
msgid "Set the %s capability %s a user need:"
|
843 |
msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
|
844 |
|
845 |
#@ cpd
|
846 |
+
#: counter-options.php:887
|
847 |
msgid "Stylesheet"
|
848 |
msgstr "Estilo"
|
849 |
|
850 |
#@ cpd
|
851 |
+
#: counter-options.php:890
|
852 |
msgid "NO Stylesheet in Frontend"
|
853 |
msgstr "SEM Estilo na interface pública"
|
854 |
|
855 |
#@ cpd
|
856 |
+
#: counter-options.php:891
|
857 |
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
858 |
msgstr "Não carregue o estilo \"counter.css\" na interface pública"
|
859 |
|
860 |
#@ cpd
|
861 |
+
#: counter-options.php:461
|
862 |
+
#: counter-options.php:898
|
863 |
msgid "Backup"
|
864 |
msgstr "Backup"
|
865 |
|
866 |
#@ cpd
|
867 |
+
#: counter-options.php:901
|
868 |
msgid "Entries per pass"
|
869 |
msgstr "Entradas por passagem"
|
870 |
|
871 |
#@ cpd
|
872 |
+
#: counter-options.php:904
|
873 |
msgid "How many entries should be saved per pass? Default: 10000"
|
874 |
msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
|
875 |
|
876 |
#@ cpd
|
877 |
+
#: counter-options.php:909
|
878 |
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
879 |
msgstr "Se o limite de memória do PHP for inferior a 50Mb você terá uma página em branco ou mensagens de erro. Tente um valor menor."
|
880 |
|
881 |
#@ cpd
|
882 |
+
#: counter-options.php:465
|
883 |
#, php-format
|
884 |
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
885 |
msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
|
886 |
|
887 |
#@ cpd
|
888 |
+
#: counter-options.php:472
|
889 |
msgid "Backup the database"
|
890 |
msgstr "Backup da base de dados"
|
891 |
|
892 |
#@ cpd
|
893 |
+
#: counter-options.php:563
|
894 |
+
#: counter-options.php:595
|
895 |
msgid "Collect old data"
|
896 |
msgstr "Coletar dados antigos"
|
897 |
|
898 |
#@ cpd
|
899 |
+
#: counter-options.php:568
|
900 |
#, php-format
|
901 |
msgid "Current size of your counter table %s is %s."
|
902 |
msgstr "O tamanho atual da sua tabela de contador %s é %s."
|
903 |
|
904 |
#@ cpd
|
905 |
+
#: counter-options.php:570
|
906 |
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."
|
907 |
msgstr "Você pode coletar dados antigos e limpar a tabela de contadores. <br/> Leituras e Visitantes serão salvos por mês, por país e por post. <br/> Clientes e refrência serão excluídos."
|
908 |
|
909 |
#@ cpd
|
910 |
+
#: counter-options.php:575
|
911 |
#, php-format
|
912 |
msgid "Currently your collection contains data until %s."
|
913 |
msgstr "Atualmente sua coleção contém dados até %s"
|
914 |
|
915 |
#@ cpd
|
916 |
+
#: counter-options.php:579
|
917 |
msgid "Normally new data will be added to the collection."
|
918 |
msgstr "Dados novos são adicionados normalmente à coleção."
|
919 |
|
920 |
#@ cpd
|
921 |
+
#: counter-options.php:585
|
922 |
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
923 |
msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
|
924 |
|
925 |
#@ cpd
|
926 |
+
#: counter-options.php:586
|
927 |
#, php-format
|
928 |
msgid "All collected data until %s will deleted."
|
929 |
msgstr "Todos os dados coletados até %s serão excluidos."
|
930 |
|
931 |
#@ cpd
|
932 |
+
#: counter-options.php:591
|
933 |
#, php-format
|
934 |
msgid "Keep entries of last %s full months + current month in counter table."
|
935 |
msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
|
936 |
|
937 |
#@ cpd
|
938 |
+
#: counter-options.php:642
|
939 |
msgid "ReActivation"
|
940 |
msgstr "Reativação"
|
941 |
|
942 |
#@ cpd
|
943 |
+
#: counter-options.php:645
|
944 |
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
945 |
msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
|
946 |
|
947 |
#@ cpd
|
948 |
+
#: counter-options.php:650
|
949 |
msgid "ReActivate the plugin"
|
950 |
msgstr "Reativar o plugin"
|
951 |
|
952 |
#@ cpd
|
953 |
+
#: counter.php:192
|
954 |
+
#: counter.php:946
|
955 |
msgid "Visitors"
|
956 |
msgstr "Visitantes"
|
957 |
|
958 |
#@ cpd
|
959 |
+
#: counter.php:195
|
960 |
+
#: counter.php:196
|
961 |
msgid "Most visited day"
|
962 |
msgstr "Dia mais visitado"
|
963 |
|
964 |
#@ cpd
|
965 |
+
#: counter.php:1342
|
966 |
msgid "drag and drop to sort"
|
967 |
msgstr "arrastar e soltar para classificar"
|
968 |
|
969 |
+
#@ cpd
|
970 |
+
#: counter-core.php:782
|
971 |
+
#: counter-options.php:836
|
972 |
+
#: counter-options.php:840
|
973 |
+
msgid "Search strings"
|
974 |
+
msgstr "Buscar Strings"
|
975 |
+
|
976 |
+
#@ cpd
|
977 |
+
#: counter-core.php:1091
|
978 |
+
msgid "Your can download the backup files here and now."
|
979 |
+
msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
|
980 |
+
|
981 |
+
#@ cpd
|
982 |
+
#: counter-core.php:1161
|
983 |
+
msgid "Error while reading backup file!"
|
984 |
+
msgstr "Erro ao ler o arquivo de BackUp!"
|
985 |
+
|
986 |
+
#@ cpd
|
987 |
+
#: counter-core.php:1165
|
988 |
+
#, php-format
|
989 |
+
msgid "The backup was added to counter table %s."
|
990 |
+
msgstr "O backup foi adicionado à tabela de contadores %s"
|
991 |
+
|
992 |
+
#@ cpd
|
993 |
+
#: counter-core.php:1167
|
994 |
+
#, php-format
|
995 |
+
msgid "The counter table %s was restored from backup."
|
996 |
+
msgstr "A tabela de contadores %s foi restaurada do backup."
|
997 |
+
|
998 |
+
#@ cpd
|
999 |
+
#: counter-core.php:1184
|
1000 |
+
msgid "Options restored from backup."
|
1001 |
+
msgstr "Opções restauradas do backup."
|
1002 |
+
|
1003 |
+
#@ cpd
|
1004 |
+
#: counter-options.php:332
|
1005 |
+
msgid "Old search strings deleted"
|
1006 |
+
msgstr "Sequencias de pesquisas antigas apagadas."
|
1007 |
+
|
1008 |
+
#@ cpd
|
1009 |
+
#: counter-options.php:468
|
1010 |
+
msgid "Download only"
|
1011 |
+
msgstr "Somente download"
|
1012 |
+
|
1013 |
+
#@ cpd
|
1014 |
+
#: counter-options.php:500
|
1015 |
+
msgid "Settings and collections"
|
1016 |
+
msgstr "Configurações e Coleções"
|
1017 |
+
|
1018 |
+
#@ cpd
|
1019 |
+
#: counter-options.php:505
|
1020 |
+
#, php-format
|
1021 |
+
msgid "Counter table %s"
|
1022 |
+
msgstr "Tabela de Contador %s"
|
1023 |
+
|
1024 |
+
#@ cpd
|
1025 |
+
#: counter-options.php:512
|
1026 |
+
#, php-format
|
1027 |
+
msgid "Add data from the backup file %s to existing counter table?"
|
1028 |
+
msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
|
1029 |
+
|
1030 |
+
#@ cpd
|
1031 |
+
#: counter-options.php:512
|
1032 |
+
msgid "Add"
|
1033 |
+
msgstr "Adicionar"
|
1034 |
+
|
1035 |
+
#@ cpd
|
1036 |
+
#: counter-options.php:516
|
1037 |
+
#, php-format
|
1038 |
+
msgid "Restore data from the backup file %s ?"
|
1039 |
+
msgstr "Restaurar dados a partir do backup %s ?"
|
1040 |
+
|
1041 |
+
#@ default
|
1042 |
+
#: counter-options.php:516
|
1043 |
+
msgid "Restore"
|
1044 |
+
msgstr "Restaurar"
|
1045 |
+
|
1046 |
+
#@ default
|
1047 |
+
#: counter-options.php:518
|
1048 |
+
msgid "Delete"
|
1049 |
+
msgstr "Apagar"
|
1050 |
+
|
1051 |
+
#@ cpd
|
1052 |
+
#: counter-options.php:519
|
1053 |
+
#, php-format
|
1054 |
+
msgid "Delete the backup file %s ?"
|
1055 |
+
msgstr "Apagar arquivo backup %s ?"
|
1056 |
+
|
1057 |
+
#@ cpd
|
1058 |
+
#: counter-options.php:525
|
1059 |
+
msgid "add backup to current counter table"
|
1060 |
+
msgstr "adicionar backup para a tabela de contador atual"
|
1061 |
+
|
1062 |
+
#@ cpd
|
1063 |
+
#: counter-options.php:526
|
1064 |
+
msgid "replace current counter table with with backup"
|
1065 |
+
msgstr "substituir a tabela de contador atual pelo backup"
|
1066 |
+
|
1067 |
+
#@ cpd
|
1068 |
+
#: counter-options.php:527
|
1069 |
+
msgid "delete backup file"
|
1070 |
+
msgstr "apagar arquivo backup"
|
1071 |
+
|
1072 |
+
#@ cpd
|
1073 |
+
#: counter-options.php:552
|
1074 |
+
#, php-format
|
1075 |
+
msgid "Delete search strings older than %s days."
|
1076 |
+
msgstr "Apagar sequencias de busca anteriores a %s dias."
|
1077 |
+
|
1078 |
+
#@ cpd
|
1079 |
+
#: counter-options.php:554
|
1080 |
+
msgid "Delete search strings"
|
1081 |
+
msgstr "Apagar sequencias de busca"
|
1082 |
+
|
1083 |
+
#@ cpd
|
1084 |
+
#: counter.php:1089
|
1085 |
+
#, php-format
|
1086 |
+
msgid "The %s most searched strings:"
|
1087 |
+
msgstr "A %s string mais procurada:"
|
1088 |
+
|
1089 |
+
#@ cpd
|
1090 |
+
#: counter.php:1098
|
1091 |
+
#, php-format
|
1092 |
+
msgid "The search strings of the last %s days:"
|
1093 |
+
msgstr "A série de busca dos últimos %s dias:"
|
1094 |
+
|
locale/cpd-ru_RU.mo
CHANGED
Binary file
|
locale/cpd-ru_RU.po
CHANGED
@@ -1,972 +1,1095 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Count
|
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: Ilya Pshenichny\n"
|
8 |
-
"Language-Team: \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: German\n"
|
14 |
-
"X-Poedit-Country: GERMANY\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: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
|
18 |
-
"X-Poedit-Bookmarks: \n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
-
|
22 |
-
#: counter-options.php:
|
23 |
-
#@ cpd
|
24 |
-
msgid "Options updated"
|
25 |
-
msgstr "Настройки сохранены"
|
26 |
-
|
27 |
-
#: counter-options.php:
|
28 |
-
#, php-format
|
29 |
-
#@ cpd
|
30 |
-
msgid "Database cleaned. %s rows deleted."
|
31 |
-
msgstr "База данных очищена. %s строчек удалено."
|
32 |
-
|
33 |
-
#: counter-options.php:
|
34 |
-
#: counter-options.php:
|
35 |
-
#@ cpd
|
36 |
-
msgid "UNINSTALL Count per Day"
|
37 |
-
msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
|
38 |
-
|
39 |
-
#: counter-options.php:
|
40 |
-
#: counter-options.php:
|
41 |
-
#: counter-options.php:
|
42 |
-
#, php-format
|
43 |
-
#@ cpd
|
44 |
-
msgid "Table %s deleted"
|
45 |
-
msgstr "Таблица %s удалена"
|
46 |
-
|
47 |
-
#: counter-options.php:
|
48 |
-
#@ cpd
|
49 |
-
msgid "Options deleted"
|
50 |
-
msgstr "Настройки удалены"
|
51 |
-
|
52 |
-
#: counter-options.php:
|
53 |
-
#: counter-options.php:
|
54 |
-
#@ cpd
|
55 |
-
msgid "Uninstall"
|
56 |
-
msgstr "Деинсталяция"
|
57 |
-
|
58 |
-
#: counter-options.php:
|
59 |
-
#@ cpd
|
60 |
-
msgid "Click here"
|
61 |
-
msgstr "Нажмите сюда"
|
62 |
-
|
63 |
-
#: counter-options.php:
|
64 |
-
#@ cpd
|
65 |
-
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
66 |
-
msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
|
67 |
-
|
68 |
-
#: counter-options.php:
|
69 |
-
#@ cpd
|
70 |
-
msgid "Online time"
|
71 |
-
msgstr "Время онлайн"
|
72 |
-
|
73 |
-
#: counter-options.php:
|
74 |
-
#@ cpd
|
75 |
-
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
76 |
-
msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
|
77 |
-
|
78 |
-
#: counter-options.php:
|
79 |
-
#@ cpd
|
80 |
-
msgid "Logged on Users"
|
81 |
-
msgstr "Вошедших пользователей"
|
82 |
-
|
83 |
-
#: counter-options.php:
|
84 |
-
#@ cpd
|
85 |
-
msgid "count too"
|
86 |
-
msgstr "также считать"
|
87 |
-
|
88 |
-
#: counter-options.php:
|
89 |
-
#@ cpd
|
90 |
-
msgid "Auto counter"
|
91 |
-
msgstr "Автоматический счетчик"
|
92 |
-
|
93 |
-
#: counter-options.php:
|
94 |
-
#@ cpd
|
95 |
-
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
96 |
-
msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
|
97 |
-
|
98 |
-
#: counter-options.php:
|
99 |
-
#@ cpd
|
100 |
-
msgid "Bots to ignore"
|
101 |
-
msgstr "Игнорировать ботов"
|
102 |
-
|
103 |
-
#: counter-options.php:
|
104 |
-
#@ cpd
|
105 |
-
msgid "Update options"
|
106 |
-
msgstr "Сохранить настройки"
|
107 |
-
|
108 |
-
#: counter-options.php:
|
109 |
-
#: counter-options.php:
|
110 |
-
#@ cpd
|
111 |
-
msgid "Clean the database"
|
112 |
-
msgstr "Очистить базу данных"
|
113 |
-
|
114 |
-
#: counter-options.php:
|
115 |
-
#@ cpd
|
116 |
-
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."
|
117 |
-
msgstr "Вы можете очистить счетчик удалив \"Спам \". <br /> Если вы добавите новых ботов поверх \"Спама \", вы сохраните базу данных. <br /> Здесь вы можете запустить бот-фильтр снова и удалить посещения ботов."
|
118 |
-
|
119 |
-
#: counter-options.php:
|
120 |
-
#@ cpd
|
121 |
-
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
122 |
-
msgstr "Если \"Ежедневный счетчик\" активирован, таблицы в базах данных будут сохранены :)."
|
123 |
-
|
124 |
-
#: counter-options.php:
|
125 |
-
#@ cpd
|
126 |
-
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
127 |
-
msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
|
128 |
-
|
129 |
-
#: counter-options.php:
|
130 |
-
#@ cpd
|
131 |
-
msgid "WARNING"
|
132 |
-
msgstr "ВНИМАНИЕ"
|
133 |
-
|
134 |
-
#: counter-options.php:
|
135 |
-
#@ cpd
|
136 |
-
msgid "These tables (with ALL counter data) will be deleted."
|
137 |
-
msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
|
138 |
-
|
139 |
-
#: counter-options.php:
|
140 |
-
#@ cpd
|
141 |
-
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
142 |
-
msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
|
143 |
-
|
144 |
-
#: counter-options.php:
|
145 |
-
#: counter-options.php:
|
146 |
-
#@ cpd
|
147 |
-
msgid "Yes"
|
148 |
-
msgstr "Да"
|
149 |
-
|
150 |
-
#: counter-options.php:
|
151 |
-
#@ cpd
|
152 |
-
msgid "You are sure to disable Count per Day and delete all data?"
|
153 |
-
msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
|
154 |
-
|
155 |
-
#: counter-core.php:
|
156 |
-
#: counter.php:
|
157 |
-
#@ cpd
|
158 |
-
msgid "Statistics"
|
159 |
-
msgstr "Статистика"
|
160 |
-
|
161 |
-
#: counter-core.php:
|
162 |
-
#: counter.php:
|
163 |
-
#: counter.php:
|
164 |
-
#: counter.php:
|
165 |
-
#@ cpd
|
166 |
-
msgid "Total visitors"
|
167 |
-
msgstr "Всего посетителей"
|
168 |
-
|
169 |
-
#: counter.php:
|
170 |
-
#: counter.php:
|
171 |
-
#@ cpd
|
172 |
-
msgid "Visitors currently online"
|
173 |
-
msgstr "Посетителей сейчас на сайте"
|
174 |
-
|
175 |
-
#: counter.php:
|
176 |
-
#: counter.php:
|
177 |
-
#@ cpd
|
178 |
-
msgid "Visitors today"
|
179 |
-
msgstr "Посетителей сегодня"
|
180 |
-
|
181 |
-
#: counter.php:
|
182 |
-
#: counter.php:
|
183 |
-
#@ cpd
|
184 |
-
msgid "Visitors yesterday"
|
185 |
-
msgstr "Посетителей вчера"
|
186 |
-
|
187 |
-
#: counter.php:
|
188 |
-
#: counter.php:
|
189 |
-
#@ cpd
|
190 |
-
msgid "Visitors last week"
|
191 |
-
msgstr "Посетителей на прошлой неделе"
|
192 |
-
|
193 |
-
#: counter.php:
|
194 |
-
#: counter.php:
|
195 |
-
#: counter.php:
|
196 |
-
#@ cpd
|
197 |
-
msgid "Counter starts on"
|
198 |
-
msgstr "Счетчик начинается с"
|
199 |
-
|
200 |
-
#: counter-core.php:
|
201 |
-
#: counter.php:
|
202 |
-
#: counter.php:
|
203 |
-
#: counter.php:
|
204 |
-
#: counter.php:
|
205 |
-
#: userperspan.php:34
|
206 |
-
#@ cpd
|
207 |
-
msgid "Visitors per day"
|
208 |
-
msgstr "Посетителей в день"
|
209 |
-
|
210 |
-
#: counter-core.php:
|
211 |
-
#: counter.php:
|
212 |
-
#@ cpd
|
213 |
-
msgid "Visitors per month"
|
214 |
-
msgstr "Посетителей в месяц"
|
215 |
-
|
216 |
-
#: counter-core.php:
|
217 |
-
#: counter-options.php:
|
218 |
-
#@ cpd
|
219 |
-
msgid "Visitors per post"
|
220 |
-
msgstr "Посетителей записи"
|
221 |
-
|
222 |
-
#: counter-options.php:
|
223 |
-
#@ cpd
|
224 |
-
msgid "Counter reseted."
|
225 |
-
msgstr "Счетчик обнулен."
|
226 |
-
|
227 |
-
#: counter-options.php:
|
228 |
-
#@ default
|
229 |
-
msgid "Dashboard"
|
230 |
-
msgstr "Консоль"
|
231 |
-
|
232 |
-
#: counter-options.php:
|
233 |
-
#: counter-options.php:
|
234 |
-
#@ cpd
|
235 |
-
msgid "How many posts do you want to see on dashboard page?"
|
236 |
-
msgstr "Сколько записей вы хотите видеть на странице консоли?"
|
237 |
-
|
238 |
-
#: counter-options.php:
|
239 |
-
#@ cpd
|
240 |
-
msgid "Latest Counts - Posts"
|
241 |
-
msgstr "Последние счетчики - Записи"
|
242 |
-
|
243 |
-
#: counter-options.php:
|
244 |
-
#@ cpd
|
245 |
-
msgid "Latest Counts - Days"
|
246 |
-
msgstr "Последние счетчики - Дни"
|
247 |
-
|
248 |
-
#: counter-options.php:
|
249 |
-
#: counter-options.php:
|
250 |
-
#: counter-options.php:
|
251 |
-
#@ cpd
|
252 |
-
msgid "How many days do you want look back?"
|
253 |
-
msgstr "Насколько дней назад вы хотите видеть статистику?"
|
254 |
-
|
255 |
-
#: counter-options.php:
|
256 |
-
#@ cpd
|
257 |
-
msgid "Chart - Days"
|
258 |
-
msgstr "Таблица - Дни"
|
259 |
-
|
260 |
-
#: counter-options.php:
|
261 |
-
#@ cpd
|
262 |
-
msgid "Chart - Height"
|
263 |
-
msgstr "Таблица - Высота"
|
264 |
-
|
265 |
-
#: counter-options.php:
|
266 |
-
#@ cpd
|
267 |
-
msgid "Height of the biggest bar"
|
268 |
-
msgstr "Высота самого большого столбика"
|
269 |
-
|
270 |
-
#: counter-options.php:
|
271 |
-
#@ cpd
|
272 |
-
msgid "Show in lists"
|
273 |
-
msgstr "Показать в списках"
|
274 |
-
|
275 |
-
#: counter-options.php:
|
276 |
-
#@ cpd
|
277 |
-
msgid "Show \"Reads per Post\" in a new column in post management views."
|
278 |
-
msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
|
279 |
-
|
280 |
-
#: counter-options.php:
|
281 |
-
#: counter-options.php:
|
282 |
-
#@ cpd
|
283 |
-
msgid "Reset the counter"
|
284 |
-
msgstr "Обнулить счетчик"
|
285 |
-
|
286 |
-
#: counter-options.php:
|
287 |
-
#@ cpd
|
288 |
-
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
289 |
-
msgstr "Вы можете обнулить счетчик путем очистки таблицы. ВСЁ В 0!<br />Сохраните резервную копию если вам необходимы текущие данные"
|
290 |
-
|
291 |
-
#: counter.php:
|
292 |
-
#, php-format
|
293 |
-
#@ cpd
|
294 |
-
msgid "The %s most visited posts in last %s days:"
|
295 |
-
msgstr "Самое %s посещаемые записи за последние %s дней:"
|
296 |
-
|
297 |
-
#: counter-core.php:
|
298 |
-
#: counter-options.php:
|
299 |
-
#: counter-options.php:
|
300 |
-
#@ default
|
301 |
-
msgid "Settings"
|
302 |
-
msgstr "Настройки"
|
303 |
-
|
304 |
-
#: counter.php:
|
305 |
-
#@ cpd
|
306 |
-
msgid "Reads per day"
|
307 |
-
msgstr "Прочтений в день"
|
308 |
-
|
309 |
-
#: counter-core.php:
|
310 |
-
#: counter-options.php:
|
311 |
-
#: counter.php:
|
312 |
-
#: counter.php:
|
313 |
-
#@ cpd
|
314 |
-
msgid "Reads"
|
315 |
-
msgstr "Прочтений"
|
316 |
-
|
317 |
-
#: counter.php:
|
318 |
-
#@ cpd
|
319 |
-
msgid "This post"
|
320 |
-
msgstr "Эта запись"
|
321 |
-
|
322 |
-
#: counter-options.php:
|
323 |
-
#, php-format
|
324 |
-
#@ cpd
|
325 |
-
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
326 |
-
msgstr "Страны обновлены. <b>%s</b> записей в %s осталось без стран "
|
327 |
-
|
328 |
-
#: counter-options.php:
|
329 |
-
#@ cpd
|
330 |
-
msgid "update next"
|
331 |
-
msgstr "обновить следующий"
|
332 |
-
|
333 |
-
#: counter-options.php:
|
334 |
-
#, php-format
|
335 |
-
#@ cpd
|
336 |
-
msgid "Mass Bots cleaned. %s counts deleted."
|
337 |
-
msgstr "Таблица ботов очищена. %s записей удалено"
|
338 |
-
|
339 |
-
#: counter-options.php:
|
340 |
-
#@ cpd
|
341 |
-
msgid "until User Level"
|
342 |
-
msgstr "до уровня пользователя"
|
343 |
-
|
344 |
-
#: counter-options.php:
|
345 |
-
#@ cpd
|
346 |
-
msgid "Anonymous IP"
|
347 |
-
msgstr "Анонимный IP"
|
348 |
-
|
349 |
-
#: counter-options.php:
|
350 |
-
#@ cpd
|
351 |
-
msgid "Countries"
|
352 |
-
msgstr "Страны"
|
353 |
-
|
354 |
-
#: counter-options.php:
|
355 |
-
#@ cpd
|
356 |
-
msgid "How many countries do you want to see on dashboard page?"
|
357 |
-
msgstr "Сколько стран вы хотите видеть в списке?"
|
358 |
-
|
359 |
-
#: counter-options.php:
|
360 |
-
#@ cpd
|
361 |
-
msgid "Start Values"
|
362 |
-
msgstr "Начальные данные"
|
363 |
-
|
364 |
-
#: counter-options.php:
|
365 |
-
#@ cpd
|
366 |
-
msgid "Here you can change the date of first count and add a start count."
|
367 |
-
msgstr "Здесь вы можете поменять дату начала отсчета и добавить начальный счетчик"
|
368 |
-
|
369 |
-
#: counter-options.php:
|
370 |
-
#@ cpd
|
371 |
-
msgid "Start date"
|
372 |
-
msgstr "Дата начала"
|
373 |
-
|
374 |
-
#: counter-options.php:
|
375 |
-
#@ cpd
|
376 |
-
msgid "Your old Counter starts at?"
|
377 |
-
msgstr "Ваш старый Счетчик начинался с"
|
378 |
-
|
379 |
-
#: counter-options.php:
|
380 |
-
#: counter-options.php:
|
381 |
-
#@ cpd
|
382 |
-
msgid "Start count"
|
383 |
-
msgstr "Начало отсчета"
|
384 |
-
|
385 |
-
#: counter-options.php:
|
386 |
-
#@ cpd
|
387 |
-
msgid "Add this value to \"Total visitors\"."
|
388 |
-
msgstr "Добавить значение к \"Всего посетителей\"."
|
389 |
-
|
390 |
-
#: counter-options.php:
|
391 |
-
#@ cpd
|
392 |
-
msgid "GeoIP - Countries"
|
393 |
-
msgstr "GeoIP - Страны"
|
394 |
-
|
395 |
-
#: counter-options.php:
|
396 |
-
#@ cpd
|
397 |
-
msgid "Update old counter data"
|
398 |
-
msgstr "Обновить данные старого счетчика"
|
399 |
-
|
400 |
-
#: counter-options.php:
|
401 |
-
#@ cpd
|
402 |
-
msgid "Update GeoIP database"
|
403 |
-
msgstr "Обновить базу данных GeoIP"
|
404 |
-
|
405 |
-
#: counter-options.php:
|
406 |
-
#@ cpd
|
407 |
-
msgid "Download a new version of GeoIP.dat file."
|
408 |
-
msgstr "Скачать новую версию файла GeoIP.dat."
|
409 |
-
|
410 |
-
#: counter-options.php:
|
411 |
-
#@ cpd
|
412 |
-
msgid "More informations about GeoIP"
|
413 |
-
msgstr "Больше информации про GeoIP"
|
414 |
-
|
415 |
-
#: counter-options.php:
|
416 |
-
#: massbots.php:
|
417 |
-
#@ cpd
|
418 |
-
msgid "Mass Bots"
|
419 |
-
msgstr "Вероятные боты"
|
420 |
-
|
421 |
-
#: counter-options.php:
|
422 |
-
#, php-format
|
423 |
-
#@ cpd
|
424 |
-
msgid "Show all IPs with more than %s page views per day"
|
425 |
-
msgstr "Показать все IP с более чем %s просмотров в сутки"
|
426 |
-
|
427 |
-
#: counter-options.php:
|
428 |
-
#: notes.php:71
|
429 |
-
#: userperspan.php:44
|
430 |
-
#@ cpd
|
431 |
-
msgid "show"
|
432 |
-
msgstr "показать"
|
433 |
-
|
434 |
-
#: counter-options.php:
|
435 |
-
#@ cpd
|
436 |
-
msgid "IP"
|
437 |
-
msgstr "IP"
|
438 |
-
|
439 |
-
#: counter-options.php:
|
440 |
-
#: notes.php:75
|
441 |
-
#@ cpd
|
442 |
-
#@ default
|
443 |
-
msgid "Date"
|
444 |
-
msgstr "Дата"
|
445 |
-
|
446 |
-
#: counter-options.php:
|
447 |
-
#@ cpd
|
448 |
-
msgid "Client"
|
449 |
-
msgstr "Клиент"
|
450 |
-
|
451 |
-
#: counter-options.php:
|
452 |
-
#@ cpd
|
453 |
-
msgid "Views"
|
454 |
-
msgstr "Просмотров"
|
455 |
-
|
456 |
-
#: counter-options.php:
|
457 |
-
#: counter-options.php:
|
458 |
-
#, php-format
|
459 |
-
#@ cpd
|
460 |
-
msgid "Delete these %s counts"
|
461 |
-
msgstr "Удалить эти %s счетчиков"
|
462 |
-
|
463 |
-
#: counter-options.php:
|
464 |
-
#@ cpd
|
465 |
-
msgid "Support"
|
466 |
-
msgstr "Поддержка"
|
467 |
-
|
468 |
-
#: counter-core.php:
|
469 |
-
#, php-format
|
470 |
-
#@ cpd
|
471 |
-
msgid "Time for Count per Day: <code>%s</code>."
|
472 |
-
msgstr "Время для Count per Day: <code>%s</code>"
|
473 |
-
|
474 |
-
#: counter-core.php:
|
475 |
-
#@ cpd
|
476 |
-
msgid "Bug? Problem? Question? Hint? Praise?"
|
477 |
-
msgstr "Ошибка? Проблема? Вопрос? Совет? Хвала?"
|
478 |
-
|
479 |
-
#: counter-core.php:
|
480 |
-
#, php-format
|
481 |
-
#@ cpd
|
482 |
-
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
483 |
-
msgstr "Напишите комментарий на <a href=\"%s\">странице плагина</a>"
|
484 |
-
|
485 |
-
#: counter.php:
|
486 |
-
#: counter.php:
|
487 |
-
#@ cpd
|
488 |
-
msgid "Total reads"
|
489 |
-
msgstr "Всего прочтений"
|
490 |
-
|
491 |
-
#: counter.php:
|
492 |
-
#: counter.php:
|
493 |
-
#@ cpd
|
494 |
-
msgid "Reads today"
|
495 |
-
msgstr "Прочтений сегодня"
|
496 |
-
|
497 |
-
#: counter.php:
|
498 |
-
#: counter.php:
|
499 |
-
#@ cpd
|
500 |
-
msgid "Reads yesterday"
|
501 |
-
msgstr "Прочтений вчера"
|
502 |
-
|
503 |
-
#: counter.php:
|
504 |
-
#: notes.php:42
|
505 |
-
#: notes.php:76
|
506 |
-
#@ cpd
|
507 |
-
msgid "Notes"
|
508 |
-
msgstr "Заметки"
|
509 |
-
|
510 |
-
#: counter.php:
|
511 |
-
#@ default
|
512 |
-
msgid "Show"
|
513 |
-
msgstr "Показать"
|
514 |
-
|
515 |
-
#: counter.php:
|
516 |
-
#@ cpd
|
517 |
-
msgid "Other"
|
518 |
-
msgstr "Другие"
|
519 |
-
|
520 |
-
#: counter.php:
|
521 |
-
#@ default
|
522 |
-
msgid "Edit Post"
|
523 |
-
msgstr "Редактировать запись"
|
524 |
-
|
525 |
-
#: counter.php:
|
526 |
-
#: massbots.php:
|
527 |
-
#: userperspan.php:63
|
528 |
-
#@ default
|
529 |
-
msgid "Front page displays"
|
530 |
-
msgstr "Отображений главной страницы"
|
531 |
-
|
532 |
-
#: counter-core.php:
|
533 |
-
#: counter-options.php:
|
534 |
-
#@ cpd
|
535 |
-
msgid "Browsers"
|
536 |
-
msgstr "Браузеры"
|
537 |
-
|
538 |
-
#: counter-core.php:
|
539 |
-
#@ cpd
|
540 |
-
msgid "Latest Counts"
|
541 |
-
msgstr "Недавние подсчеты"
|
542 |
-
|
543 |
-
#: counter-core.php:
|
544 |
-
#@ default
|
545 |
-
msgid "Plugin"
|
546 |
-
msgstr "Плагин"
|
547 |
-
|
548 |
-
#: counter-core.php:
|
549 |
-
#@ cpd
|
550 |
-
msgid "Reads per Country"
|
551 |
-
msgstr "Прочтений по странам"
|
552 |
-
|
553 |
-
#: counter.php:
|
554 |
-
#: counter.php:
|
555 |
-
#@ cpd
|
556 |
-
msgid "Map"
|
557 |
-
msgstr "Карта"
|
558 |
-
|
559 |
-
#: geoip/geoip.php:
|
560 |
-
#@ cpd
|
561 |
-
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
562 |
-
msgstr "Приносим извинения, необходимые функции (zlib) не установлена или не включена в php.ini."
|
563 |
-
|
564 |
-
#: geoip/geoip.php:
|
565 |
-
#@ cpd
|
566 |
-
msgid "New GeoIP database installed."
|
567 |
-
msgstr "Новая база данных GeoIP установлена."
|
568 |
-
|
569 |
-
#: geoip/geoip.php:
|
570 |
-
#@ cpd
|
571 |
-
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
572 |
-
msgstr "Приносим извинения, произошла ошибка. Попробуйте снова или проверьте что права доступа к папке \"geoip\" - 777"
|
573 |
-
|
574 |
-
#: notes.php:77
|
575 |
-
#@ default
|
576 |
-
msgid "Action"
|
577 |
-
msgstr "Действие"
|
578 |
-
|
579 |
-
#: notes.php:82
|
580 |
-
#@ cpd
|
581 |
-
msgid "add"
|
582 |
-
msgstr "добавить"
|
583 |
-
|
584 |
-
#: notes.php:98
|
585 |
-
#@ cpd
|
586 |
-
msgid "save"
|
587 |
-
msgstr "сохранить"
|
588 |
-
|
589 |
-
#: notes.php:99
|
590 |
-
#@ cpd
|
591 |
-
msgid "delete"
|
592 |
-
msgstr "удалить"
|
593 |
-
|
594 |
-
#: notes.php:110
|
595 |
-
#@ cpd
|
596 |
-
msgid "edit"
|
597 |
-
msgstr "редактировать"
|
598 |
-
|
599 |
-
#: counter-options.php:
|
600 |
-
#@ cpd
|
601 |
-
msgid "Cache"
|
602 |
-
msgstr "Кэш"
|
603 |
-
|
604 |
-
#: counter-options.php:
|
605 |
-
#@ cpd
|
606 |
-
msgid "I use a cache plugin. Count these visits with ajax."
|
607 |
-
msgstr "Я использую кэшированый плагин. Считать эти посещения при помощи ajax"
|
608 |
-
|
609 |
-
#: counter-options.php:
|
610 |
-
#@ cpd
|
611 |
-
msgid "Substring of the user agent, separated by comma"
|
612 |
-
msgstr "Подстрока агента пользователя разделенный запятой"
|
613 |
-
|
614 |
-
#: counter-options.php:
|
615 |
-
#@ cpd
|
616 |
-
msgid "Debug mode"
|
617 |
-
msgstr "Режим отладки"
|
618 |
-
|
619 |
-
#: counter-options.php:
|
620 |
-
#@ cpd
|
621 |
-
msgid "Show debug informations at the bottom of all pages."
|
622 |
-
msgstr "Добавить отладочную информацию внизу каждой страницы."
|
623 |
-
|
624 |
-
#: counter-core.php:
|
625 |
-
#@ cpd
|
626 |
-
msgid "Visitors per Country"
|
627 |
-
msgstr "Посетителей по странам"
|
628 |
-
|
629 |
-
#: userperspan.php:38
|
630 |
-
#@ cpd
|
631 |
-
msgid "Start"
|
632 |
-
msgstr "Начало"
|
633 |
-
|
634 |
-
#: userperspan.php:40
|
635 |
-
#@ cpd
|
636 |
-
msgid "End"
|
637 |
-
msgstr "Конец"
|
638 |
-
|
639 |
-
#: userperspan.php:42
|
640 |
-
#@ cpd
|
641 |
-
msgid "PostID"
|
642 |
-
msgstr "ID сообщения"
|
643 |
-
|
644 |
-
#: counter-options.php:
|
645 |
-
#@ cpd
|
646 |
-
msgid "Add this value to \"Total reads\"."
|
647 |
-
msgstr "Добавить значение к \"Всего прочтений\"."
|
648 |
-
|
649 |
-
#: counter-options.php:
|
650 |
-
#@ cpd
|
651 |
-
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!"
|
652 |
-
msgstr "Вы можете получить данные стран для всех записей проверив IP адреса заново. Может занять некоторое время!"
|
653 |
-
|
654 |
-
#: userperspan.php:50
|
655 |
-
#@ cpd
|
656 |
-
msgid "no data found"
|
657 |
-
msgstr "ничего не найдено"
|
658 |
-
|
659 |
-
#: counter-options.php:
|
660 |
-
#@ cpd
|
661 |
-
msgid "Counter"
|
662 |
-
msgstr "Счетчик"
|
663 |
-
|
664 |
-
#: counter-options.php:
|
665 |
-
#@ cpd
|
666 |
-
msgid "Clients and referrers"
|
667 |
-
msgstr "Клиенты и ссылающиеся сайты"
|
668 |
-
|
669 |
-
#: counter-options.php:
|
670 |
-
#@ cpd
|
671 |
-
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."
|
672 |
-
msgstr "Сохранить и показать клиентов и ссылающиеся сайты.<br />Требует много дискового пространства в базе данных, но предоставляет более детальную информацию о ваших посетителях."
|
673 |
-
|
674 |
-
#: counter-options.php:
|
675 |
-
#@ cpd
|
676 |
-
msgid "Local URLs"
|
677 |
-
msgstr "Локальные URL"
|
678 |
-
|
679 |
-
#: counter-options.php:
|
680 |
-
#@ cpd
|
681 |
-
msgid "Show local referrers too."
|
682 |
-
msgstr "Показывать локальные переходы тоже."
|
683 |
-
|
684 |
-
#: counter-options.php:
|
685 |
-
#@ default
|
686 |
-
msgid "Posts"
|
687 |
-
msgstr "Записи"
|
688 |
-
|
689 |
-
#: counter-options.php:
|
690 |
-
#@ default
|
691 |
-
msgid "Pages"
|
692 |
-
msgstr "Страницы"
|
693 |
-
|
694 |
-
#: counter.php:
|
695 |
-
#: counter.php:
|
696 |
-
#@ cpd
|
697 |
-
msgid "Reads last week"
|
698 |
-
msgstr "Прочтений на прошлой неделе"
|
699 |
-
|
700 |
-
#: counter.php:
|
701 |
-
#@ default
|
702 |
-
msgid "Category"
|
703 |
-
msgstr "Категория"
|
704 |
-
|
705 |
-
#: counter.php:
|
706 |
-
#@ default
|
707 |
-
msgid "Tag"
|
708 |
-
msgstr "Тег"
|
709 |
-
|
710 |
-
#: counter-core.php:
|
711 |
-
#@ default
|
712 |
-
msgid "License"
|
713 |
-
msgstr "Лицензия"
|
714 |
-
|
715 |
-
#: counter-core.php:
|
716 |
-
#: counter.php:
|
717 |
-
#@ cpd
|
718 |
-
msgid "Reads per month"
|
719 |
-
msgstr "Прочтений за месяц"
|
720 |
-
|
721 |
-
#: counter-core.php:
|
722 |
-
#@ cpd
|
723 |
-
msgid "Referrer"
|
724 |
-
msgstr "Ссылающийся сайт"
|
725 |
-
|
726 |
-
#: counter-options.php:
|
727 |
-
#@ cpd
|
728 |
-
msgid "Referrers - Entries"
|
729 |
-
msgstr "Ссылающиеся сайты - Вхождения"
|
730 |
-
|
731 |
-
#: counter-options.php:
|
732 |
-
#@ cpd
|
733 |
-
msgid "How many referrers do you want to see on dashboard page?"
|
734 |
-
msgstr "Сколько ссылающихся сайтов вы хотите увидеть на странице статистики?"
|
735 |
-
|
736 |
-
#: counter-options.php:
|
737 |
-
#@ cpd
|
738 |
-
msgid "Referrers - Days"
|
739 |
-
msgstr "Ссылающиеся сайты - Дни"
|
740 |
-
|
741 |
-
#: counter.php:
|
742 |
-
#, php-format
|
743 |
-
#@ cpd
|
744 |
-
msgid "The %s referrers in last %s days:"
|
745 |
-
msgstr "%s ссылающихся сайтов за последние %s дней:"
|
746 |
-
|
747 |
-
#: counter-core.php:
|
748 |
-
#@ cpd
|
749 |
-
msgid "Visitors online"
|
750 |
-
msgstr "Посетителей на сайте"
|
751 |
-
|
752 |
-
#: counter-core.php:
|
753 |
-
#, php-format
|
754 |
-
#@ cpd
|
755 |
-
msgid "\"Count per Day\" updated to version %s."
|
756 |
-
msgstr "\"Count per Day\" обновлен до версии %s"
|
757 |
-
|
758 |
-
#: counter-core.php:
|
759 |
-
#@ cpd
|
760 |
-
msgid "Backup failed! Cannot open file"
|
761 |
-
msgstr "Обновление не удалось! Не могу открыть файл"
|
762 |
-
|
763 |
-
#: counter-core.php:
|
764 |
-
#, php-format
|
765 |
-
#@ cpd
|
766 |
-
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
767 |
-
msgstr "Происходит резервное соранение %s записей. Каждой точке соответствует %s записей."
|
768 |
-
|
769 |
-
#: counter-core.php:
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: 2012-07-14 21:51:31+0000\n"
|
7 |
+
"Last-Translator: Ilya Pshenichny\n"
|
8 |
+
"Language-Team: \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: German\n"
|
14 |
+
"X-Poedit-Country: GERMANY\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: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: counter-options.php:52
|
23 |
+
#@ cpd
|
24 |
+
msgid "Options updated"
|
25 |
+
msgstr "Настройки сохранены"
|
26 |
+
|
27 |
+
#: counter-options.php:113
|
28 |
+
#, php-format
|
29 |
+
#@ cpd
|
30 |
+
msgid "Database cleaned. %s rows deleted."
|
31 |
+
msgstr "База данных очищена. %s строчек удалено."
|
32 |
+
|
33 |
+
#: counter-options.php:128
|
34 |
+
#: counter-options.php:691
|
35 |
+
#@ cpd
|
36 |
+
msgid "UNINSTALL Count per Day"
|
37 |
+
msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
|
38 |
+
|
39 |
+
#: counter-options.php:133
|
40 |
+
#: counter-options.php:134
|
41 |
+
#: counter-options.php:135
|
42 |
+
#, php-format
|
43 |
+
#@ cpd
|
44 |
+
msgid "Table %s deleted"
|
45 |
+
msgstr "Таблица %s удалена"
|
46 |
+
|
47 |
+
#: counter-options.php:136
|
48 |
+
#@ cpd
|
49 |
+
msgid "Options deleted"
|
50 |
+
msgstr "Настройки удалены"
|
51 |
+
|
52 |
+
#: counter-options.php:362
|
53 |
+
#: counter-options.php:677
|
54 |
+
#@ cpd
|
55 |
+
msgid "Uninstall"
|
56 |
+
msgstr "Деинсталяция"
|
57 |
+
|
58 |
+
#: counter-options.php:363
|
59 |
+
#@ cpd
|
60 |
+
msgid "Click here"
|
61 |
+
msgstr "Нажмите сюда"
|
62 |
+
|
63 |
+
#: counter-options.php:363
|
64 |
+
#@ cpd
|
65 |
+
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
66 |
+
msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
|
67 |
+
|
68 |
+
#: counter-options.php:724
|
69 |
+
#@ cpd
|
70 |
+
msgid "Online time"
|
71 |
+
msgstr "Время онлайн"
|
72 |
+
|
73 |
+
#: counter-options.php:725
|
74 |
+
#@ cpd
|
75 |
+
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
76 |
+
msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
|
77 |
+
|
78 |
+
#: counter-options.php:728
|
79 |
+
#@ cpd
|
80 |
+
msgid "Logged on Users"
|
81 |
+
msgstr "Вошедших пользователей"
|
82 |
+
|
83 |
+
#: counter-options.php:730
|
84 |
+
#@ cpd
|
85 |
+
msgid "count too"
|
86 |
+
msgstr "также считать"
|
87 |
+
|
88 |
+
#: counter-options.php:742
|
89 |
+
#@ cpd
|
90 |
+
msgid "Auto counter"
|
91 |
+
msgstr "Автоматический счетчик"
|
92 |
+
|
93 |
+
#: counter-options.php:743
|
94 |
+
#@ cpd
|
95 |
+
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
96 |
+
msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
|
97 |
+
|
98 |
+
#: counter-options.php:746
|
99 |
+
#@ cpd
|
100 |
+
msgid "Bots to ignore"
|
101 |
+
msgstr "Игнорировать ботов"
|
102 |
+
|
103 |
+
#: counter-options.php:924
|
104 |
+
#@ cpd
|
105 |
+
msgid "Update options"
|
106 |
+
msgstr "Сохранить настройки"
|
107 |
+
|
108 |
+
#: counter-options.php:538
|
109 |
+
#: counter-options.php:546
|
110 |
+
#@ cpd
|
111 |
+
msgid "Clean the database"
|
112 |
+
msgstr "Очистить базу данных"
|
113 |
+
|
114 |
+
#: counter-options.php:541
|
115 |
+
#@ cpd
|
116 |
+
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."
|
117 |
+
msgstr "Вы можете очистить счетчик удалив \"Спам \". <br /> Если вы добавите новых ботов поверх \"Спама \", вы сохраните базу данных. <br /> Здесь вы можете запустить бот-фильтр снова и удалить посещения ботов."
|
118 |
+
|
119 |
+
#: counter-options.php:680
|
120 |
+
#@ cpd
|
121 |
+
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
122 |
+
msgstr "Если \"Ежедневный счетчик\" активирован, таблицы в базах данных будут сохранены :)."
|
123 |
+
|
124 |
+
#: counter-options.php:681
|
125 |
+
#@ cpd
|
126 |
+
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
127 |
+
msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
|
128 |
+
|
129 |
+
#: counter-options.php:684
|
130 |
+
#@ cpd
|
131 |
+
msgid "WARNING"
|
132 |
+
msgstr "ВНИМАНИЕ"
|
133 |
+
|
134 |
+
#: counter-options.php:685
|
135 |
+
#@ cpd
|
136 |
+
msgid "These tables (with ALL counter data) will be deleted."
|
137 |
+
msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
|
138 |
+
|
139 |
+
#: counter-options.php:687
|
140 |
+
#@ cpd
|
141 |
+
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
142 |
+
msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
|
143 |
+
|
144 |
+
#: counter-options.php:667
|
145 |
+
#: counter-options.php:690
|
146 |
+
#@ cpd
|
147 |
+
msgid "Yes"
|
148 |
+
msgstr "Да"
|
149 |
+
|
150 |
+
#: counter-options.php:691
|
151 |
+
#@ cpd
|
152 |
+
msgid "You are sure to disable Count per Day and delete all data?"
|
153 |
+
msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
|
154 |
+
|
155 |
+
#: counter-core.php:810
|
156 |
+
#: counter.php:1227
|
157 |
+
#@ cpd
|
158 |
+
msgid "Statistics"
|
159 |
+
msgstr "Статистика"
|
160 |
+
|
161 |
+
#: counter-core.php:778
|
162 |
+
#: counter.php:187
|
163 |
+
#: counter.php:1113
|
164 |
+
#: counter.php:1305
|
165 |
+
#@ cpd
|
166 |
+
msgid "Total visitors"
|
167 |
+
msgstr "Всего посетителей"
|
168 |
+
|
169 |
+
#: counter.php:188
|
170 |
+
#: counter.php:1311
|
171 |
+
#@ cpd
|
172 |
+
msgid "Visitors currently online"
|
173 |
+
msgstr "Посетителей сейчас на сайте"
|
174 |
+
|
175 |
+
#: counter.php:189
|
176 |
+
#: counter.php:1306
|
177 |
+
#@ cpd
|
178 |
+
msgid "Visitors today"
|
179 |
+
msgstr "Посетителей сегодня"
|
180 |
+
|
181 |
+
#: counter.php:190
|
182 |
+
#: counter.php:1307
|
183 |
+
#@ cpd
|
184 |
+
msgid "Visitors yesterday"
|
185 |
+
msgstr "Посетителей вчера"
|
186 |
+
|
187 |
+
#: counter.php:191
|
188 |
+
#: counter.php:1308
|
189 |
+
#@ cpd
|
190 |
+
msgid "Visitors last week"
|
191 |
+
msgstr "Посетителей на прошлой неделе"
|
192 |
+
|
193 |
+
#: counter.php:194
|
194 |
+
#: counter.php:872
|
195 |
+
#: counter.php:1312
|
196 |
+
#@ cpd
|
197 |
+
msgid "Counter starts on"
|
198 |
+
msgstr "Счетчик начинается с"
|
199 |
+
|
200 |
+
#: counter-core.php:784
|
201 |
+
#: counter.php:193
|
202 |
+
#: counter.php:292
|
203 |
+
#: counter.php:1115
|
204 |
+
#: counter.php:1310
|
205 |
+
#: userperspan.php:34
|
206 |
+
#@ cpd
|
207 |
+
msgid "Visitors per day"
|
208 |
+
msgstr "Посетителей в день"
|
209 |
+
|
210 |
+
#: counter-core.php:780
|
211 |
+
#: counter.php:1309
|
212 |
+
#@ cpd
|
213 |
+
msgid "Visitors per month"
|
214 |
+
msgstr "Посетителей в месяц"
|
215 |
+
|
216 |
+
#: counter-core.php:782
|
217 |
+
#: counter-options.php:806
|
218 |
+
#@ cpd
|
219 |
+
msgid "Visitors per post"
|
220 |
+
msgstr "Посетителей записи"
|
221 |
+
|
222 |
+
#: counter-options.php:123
|
223 |
+
#@ cpd
|
224 |
+
msgid "Counter reseted."
|
225 |
+
msgstr "Счетчик обнулен."
|
226 |
+
|
227 |
+
#: counter-options.php:771
|
228 |
+
#@ default
|
229 |
+
msgid "Dashboard"
|
230 |
+
msgstr "Консоль"
|
231 |
+
|
232 |
+
#: counter-options.php:807
|
233 |
+
#: counter-options.php:811
|
234 |
+
#@ cpd
|
235 |
+
msgid "How many posts do you want to see on dashboard page?"
|
236 |
+
msgstr "Сколько записей вы хотите видеть на странице консоли?"
|
237 |
+
|
238 |
+
#: counter-options.php:810
|
239 |
+
#@ cpd
|
240 |
+
msgid "Latest Counts - Posts"
|
241 |
+
msgstr "Последние счетчики - Записи"
|
242 |
+
|
243 |
+
#: counter-options.php:814
|
244 |
+
#@ cpd
|
245 |
+
msgid "Latest Counts - Days"
|
246 |
+
msgstr "Последние счетчики - Дни"
|
247 |
+
|
248 |
+
#: counter-options.php:815
|
249 |
+
#: counter-options.php:819
|
250 |
+
#: counter-options.php:841
|
251 |
+
#@ cpd
|
252 |
+
msgid "How many days do you want look back?"
|
253 |
+
msgstr "Насколько дней назад вы хотите видеть статистику?"
|
254 |
+
|
255 |
+
#: counter-options.php:818
|
256 |
+
#@ cpd
|
257 |
+
msgid "Chart - Days"
|
258 |
+
msgstr "Таблица - Дни"
|
259 |
+
|
260 |
+
#: counter-options.php:822
|
261 |
+
#@ cpd
|
262 |
+
msgid "Chart - Height"
|
263 |
+
msgstr "Таблица - Высота"
|
264 |
+
|
265 |
+
#: counter-options.php:823
|
266 |
+
#@ cpd
|
267 |
+
msgid "Height of the biggest bar"
|
268 |
+
msgstr "Высота самого большого столбика"
|
269 |
+
|
270 |
+
#: counter-options.php:855
|
271 |
+
#@ cpd
|
272 |
+
msgid "Show in lists"
|
273 |
+
msgstr "Показать в списках"
|
274 |
+
|
275 |
+
#: counter-options.php:856
|
276 |
+
#@ cpd
|
277 |
+
msgid "Show \"Reads per Post\" in a new column in post management views."
|
278 |
+
msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
|
279 |
+
|
280 |
+
#: counter-options.php:658
|
281 |
+
#: counter-options.php:668
|
282 |
+
#@ cpd
|
283 |
+
msgid "Reset the counter"
|
284 |
+
msgstr "Обнулить счетчик"
|
285 |
+
|
286 |
+
#: counter-options.php:661
|
287 |
+
#@ cpd
|
288 |
+
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
289 |
+
msgstr "Вы можете обнулить счетчик путем очистки таблицы. ВСЁ В 0!<br />Сохраните резервную копию если вам необходимы текущие данные"
|
290 |
+
|
291 |
+
#: counter.php:705
|
292 |
+
#, php-format
|
293 |
+
#@ cpd
|
294 |
+
msgid "The %s most visited posts in last %s days:"
|
295 |
+
msgstr "Самое %s посещаемые записи за последние %s дней:"
|
296 |
+
|
297 |
+
#: counter-core.php:615
|
298 |
+
#: counter-options.php:386
|
299 |
+
#: counter-options.php:712
|
300 |
+
#@ default
|
301 |
+
msgid "Settings"
|
302 |
+
msgstr "Настройки"
|
303 |
+
|
304 |
+
#: counter.php:291
|
305 |
+
#@ cpd
|
306 |
+
msgid "Reads per day"
|
307 |
+
msgstr "Прочтений в день"
|
308 |
+
|
309 |
+
#: counter-core.php:680
|
310 |
+
#: counter-options.php:761
|
311 |
+
#: counter.php:186
|
312 |
+
#: counter.php:922
|
313 |
+
#@ cpd
|
314 |
+
msgid "Reads"
|
315 |
+
msgstr "Прочтений"
|
316 |
+
|
317 |
+
#: counter.php:1299
|
318 |
+
#@ cpd
|
319 |
+
msgid "This post"
|
320 |
+
msgstr "Эта запись"
|
321 |
+
|
322 |
+
#: counter-options.php:63
|
323 |
+
#, php-format
|
324 |
+
#@ cpd
|
325 |
+
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
326 |
+
msgstr "Страны обновлены. <b>%s</b> записей в %s осталось без стран "
|
327 |
+
|
328 |
+
#: counter-options.php:66
|
329 |
+
#@ cpd
|
330 |
+
msgid "update next"
|
331 |
+
msgstr "обновить следующий"
|
332 |
+
|
333 |
+
#: counter-options.php:106
|
334 |
+
#, php-format
|
335 |
+
#@ cpd
|
336 |
+
msgid "Mass Bots cleaned. %s counts deleted."
|
337 |
+
msgstr "Таблица ботов очищена. %s записей удалено"
|
338 |
+
|
339 |
+
#: counter-options.php:731
|
340 |
+
#@ cpd
|
341 |
+
msgid "until User Level"
|
342 |
+
msgstr "до уровня пользователя"
|
343 |
+
|
344 |
+
#: counter-options.php:750
|
345 |
+
#@ cpd
|
346 |
+
msgid "Anonymous IP"
|
347 |
+
msgstr "Анонимный IP"
|
348 |
+
|
349 |
+
#: counter-options.php:827
|
350 |
+
#@ cpd
|
351 |
+
msgid "Countries"
|
352 |
+
msgstr "Страны"
|
353 |
+
|
354 |
+
#: counter-options.php:828
|
355 |
+
#@ cpd
|
356 |
+
msgid "How many countries do you want to see on dashboard page?"
|
357 |
+
msgstr "Сколько стран вы хотите видеть в списке?"
|
358 |
+
|
359 |
+
#: counter-options.php:863
|
360 |
+
#@ cpd
|
361 |
+
msgid "Start Values"
|
362 |
+
msgstr "Начальные данные"
|
363 |
+
|
364 |
+
#: counter-options.php:867
|
365 |
+
#@ cpd
|
366 |
+
msgid "Here you can change the date of first count and add a start count."
|
367 |
+
msgstr "Здесь вы можете поменять дату начала отсчета и добавить начальный счетчик"
|
368 |
+
|
369 |
+
#: counter-options.php:871
|
370 |
+
#@ cpd
|
371 |
+
msgid "Start date"
|
372 |
+
msgstr "Дата начала"
|
373 |
+
|
374 |
+
#: counter-options.php:872
|
375 |
+
#@ cpd
|
376 |
+
msgid "Your old Counter starts at?"
|
377 |
+
msgstr "Ваш старый Счетчик начинался с"
|
378 |
+
|
379 |
+
#: counter-options.php:875
|
380 |
+
#: counter-options.php:879
|
381 |
+
#@ cpd
|
382 |
+
msgid "Start count"
|
383 |
+
msgstr "Начало отсчета"
|
384 |
+
|
385 |
+
#: counter-options.php:876
|
386 |
+
#@ cpd
|
387 |
+
msgid "Add this value to \"Total visitors\"."
|
388 |
+
msgstr "Добавить значение к \"Всего посетителей\"."
|
389 |
+
|
390 |
+
#: counter-options.php:608
|
391 |
+
#@ cpd
|
392 |
+
msgid "GeoIP - Countries"
|
393 |
+
msgstr "GeoIP - Страны"
|
394 |
+
|
395 |
+
#: counter-options.php:617
|
396 |
+
#@ cpd
|
397 |
+
msgid "Update old counter data"
|
398 |
+
msgstr "Обновить данные старого счетчика"
|
399 |
+
|
400 |
+
#: counter-options.php:629
|
401 |
+
#@ cpd
|
402 |
+
msgid "Update GeoIP database"
|
403 |
+
msgstr "Обновить базу данных GeoIP"
|
404 |
+
|
405 |
+
#: counter-options.php:624
|
406 |
+
#@ cpd
|
407 |
+
msgid "Download a new version of GeoIP.dat file."
|
408 |
+
msgstr "Скачать новую версию файла GeoIP.dat."
|
409 |
+
|
410 |
+
#: counter-options.php:634
|
411 |
+
#@ cpd
|
412 |
+
msgid "More informations about GeoIP"
|
413 |
+
msgstr "Больше информации про GeoIP"
|
414 |
+
|
415 |
+
#: counter-options.php:402
|
416 |
+
#: massbots.php:36
|
417 |
+
#@ cpd
|
418 |
+
msgid "Mass Bots"
|
419 |
+
msgstr "Вероятные боты"
|
420 |
+
|
421 |
+
#: counter-options.php:406
|
422 |
+
#, php-format
|
423 |
+
#@ cpd
|
424 |
+
msgid "Show all IPs with more than %s page views per day"
|
425 |
+
msgstr "Показать все IP с более чем %s просмотров в сутки"
|
426 |
+
|
427 |
+
#: counter-options.php:407
|
428 |
+
#: notes.php:71
|
429 |
+
#: userperspan.php:44
|
430 |
+
#@ cpd
|
431 |
+
msgid "show"
|
432 |
+
msgstr "показать"
|
433 |
+
|
434 |
+
#: counter-options.php:415
|
435 |
+
#@ cpd
|
436 |
+
msgid "IP"
|
437 |
+
msgstr "IP"
|
438 |
+
|
439 |
+
#: counter-options.php:416
|
440 |
+
#: notes.php:75
|
441 |
+
#@ cpd
|
442 |
+
#@ default
|
443 |
+
msgid "Date"
|
444 |
+
msgstr "Дата"
|
445 |
+
|
446 |
+
#: counter-options.php:417
|
447 |
+
#@ cpd
|
448 |
+
msgid "Client"
|
449 |
+
msgstr "Клиент"
|
450 |
+
|
451 |
+
#: counter-options.php:418
|
452 |
+
#@ cpd
|
453 |
+
msgid "Views"
|
454 |
+
msgstr "Просмотров"
|
455 |
+
|
456 |
+
#: counter-options.php:433
|
457 |
+
#: counter-options.php:449
|
458 |
+
#, php-format
|
459 |
+
#@ cpd
|
460 |
+
msgid "Delete these %s counts"
|
461 |
+
msgstr "Удалить эти %s счетчиков"
|
462 |
+
|
463 |
+
#: counter-options.php:699
|
464 |
+
#@ cpd
|
465 |
+
msgid "Support"
|
466 |
+
msgstr "Поддержка"
|
467 |
+
|
468 |
+
#: counter-core.php:743
|
469 |
+
#, php-format
|
470 |
+
#@ cpd
|
471 |
+
msgid "Time for Count per Day: <code>%s</code>."
|
472 |
+
msgstr "Время для Count per Day: <code>%s</code>"
|
473 |
+
|
474 |
+
#: counter-core.php:744
|
475 |
+
#@ cpd
|
476 |
+
msgid "Bug? Problem? Question? Hint? Praise?"
|
477 |
+
msgstr "Ошибка? Проблема? Вопрос? Совет? Хвала?"
|
478 |
+
|
479 |
+
#: counter-core.php:745
|
480 |
+
#, php-format
|
481 |
+
#@ cpd
|
482 |
+
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
483 |
+
msgstr "Напишите комментарий на <a href=\"%s\">странице плагина</a>"
|
484 |
+
|
485 |
+
#: counter.php:182
|
486 |
+
#: counter.php:1300
|
487 |
+
#@ cpd
|
488 |
+
msgid "Total reads"
|
489 |
+
msgstr "Всего прочтений"
|
490 |
+
|
491 |
+
#: counter.php:183
|
492 |
+
#: counter.php:1301
|
493 |
+
#@ cpd
|
494 |
+
msgid "Reads today"
|
495 |
+
msgstr "Прочтений сегодня"
|
496 |
+
|
497 |
+
#: counter.php:184
|
498 |
+
#: counter.php:1302
|
499 |
+
#@ cpd
|
500 |
+
msgid "Reads yesterday"
|
501 |
+
msgstr "Прочтений вчера"
|
502 |
+
|
503 |
+
#: counter.php:823
|
504 |
+
#: notes.php:42
|
505 |
+
#: notes.php:76
|
506 |
+
#@ cpd
|
507 |
+
msgid "Notes"
|
508 |
+
msgstr "Заметки"
|
509 |
+
|
510 |
+
#: counter.php:821
|
511 |
+
#@ default
|
512 |
+
msgid "Show"
|
513 |
+
msgstr "Показать"
|
514 |
+
|
515 |
+
#: counter.php:861
|
516 |
+
#@ cpd
|
517 |
+
msgid "Other"
|
518 |
+
msgstr "Другие"
|
519 |
+
|
520 |
+
#: counter.php:1034
|
521 |
+
#@ default
|
522 |
+
msgid "Edit Post"
|
523 |
+
msgstr "Редактировать запись"
|
524 |
+
|
525 |
+
#: counter.php:1049
|
526 |
+
#: massbots.php:53
|
527 |
+
#: userperspan.php:63
|
528 |
+
#@ default
|
529 |
+
msgid "Front page displays"
|
530 |
+
msgstr "Отображений главной страницы"
|
531 |
+
|
532 |
+
#: counter-core.php:789
|
533 |
+
#: counter-options.php:832
|
534 |
+
#@ cpd
|
535 |
+
msgid "Browsers"
|
536 |
+
msgstr "Браузеры"
|
537 |
+
|
538 |
+
#: counter-core.php:783
|
539 |
+
#@ cpd
|
540 |
+
msgid "Latest Counts"
|
541 |
+
msgstr "Недавние подсчеты"
|
542 |
+
|
543 |
+
#: counter-core.php:786
|
544 |
+
#@ default
|
545 |
+
msgid "Plugin"
|
546 |
+
msgstr "Плагин"
|
547 |
+
|
548 |
+
#: counter-core.php:794
|
549 |
+
#@ cpd
|
550 |
+
msgid "Reads per Country"
|
551 |
+
msgstr "Прочтений по странам"
|
552 |
+
|
553 |
+
#: counter.php:382
|
554 |
+
#: counter.php:1144
|
555 |
+
#@ cpd
|
556 |
+
msgid "Map"
|
557 |
+
msgstr "Карта"
|
558 |
+
|
559 |
+
#: geoip/geoip.php:90
|
560 |
+
#@ cpd
|
561 |
+
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
562 |
+
msgstr "Приносим извинения, необходимые функции (zlib) не установлена или не включена в php.ini."
|
563 |
+
|
564 |
+
#: geoip/geoip.php:114
|
565 |
+
#@ cpd
|
566 |
+
msgid "New GeoIP database installed."
|
567 |
+
msgstr "Новая база данных GeoIP установлена."
|
568 |
+
|
569 |
+
#: geoip/geoip.php:116
|
570 |
+
#@ cpd
|
571 |
+
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
572 |
+
msgstr "Приносим извинения, произошла ошибка. Попробуйте снова или проверьте что права доступа к папке \"geoip\" - 777"
|
573 |
+
|
574 |
+
#: notes.php:77
|
575 |
+
#@ default
|
576 |
+
msgid "Action"
|
577 |
+
msgstr "Действие"
|
578 |
+
|
579 |
+
#: notes.php:82
|
580 |
+
#@ cpd
|
581 |
+
msgid "add"
|
582 |
+
msgstr "добавить"
|
583 |
+
|
584 |
+
#: notes.php:98
|
585 |
+
#@ cpd
|
586 |
+
msgid "save"
|
587 |
+
msgstr "сохранить"
|
588 |
+
|
589 |
+
#: notes.php:99
|
590 |
+
#@ cpd
|
591 |
+
msgid "delete"
|
592 |
+
msgstr "удалить"
|
593 |
+
|
594 |
+
#: notes.php:110
|
595 |
+
#@ cpd
|
596 |
+
msgid "edit"
|
597 |
+
msgstr "редактировать"
|
598 |
+
|
599 |
+
#: counter-options.php:754
|
600 |
+
#@ cpd
|
601 |
+
msgid "Cache"
|
602 |
+
msgstr "Кэш"
|
603 |
+
|
604 |
+
#: counter-options.php:755
|
605 |
+
#@ cpd
|
606 |
+
msgid "I use a cache plugin. Count these visits with ajax."
|
607 |
+
msgstr "Я использую кэшированый плагин. Считать эти посещения при помощи ajax"
|
608 |
+
|
609 |
+
#: counter-options.php:833
|
610 |
+
#@ cpd
|
611 |
+
msgid "Substring of the user agent, separated by comma"
|
612 |
+
msgstr "Подстрока агента пользователя разделенный запятой"
|
613 |
+
|
614 |
+
#: counter-options.php:917
|
615 |
+
#@ cpd
|
616 |
+
msgid "Debug mode"
|
617 |
+
msgstr "Режим отладки"
|
618 |
+
|
619 |
+
#: counter-options.php:919
|
620 |
+
#@ cpd
|
621 |
+
msgid "Show debug informations at the bottom of all pages."
|
622 |
+
msgstr "Добавить отладочную информацию внизу каждой страницы."
|
623 |
+
|
624 |
+
#: counter-core.php:795
|
625 |
+
#@ cpd
|
626 |
+
msgid "Visitors per Country"
|
627 |
+
msgstr "Посетителей по странам"
|
628 |
+
|
629 |
+
#: userperspan.php:38
|
630 |
+
#@ cpd
|
631 |
+
msgid "Start"
|
632 |
+
msgstr "Начало"
|
633 |
+
|
634 |
+
#: userperspan.php:40
|
635 |
+
#@ cpd
|
636 |
+
msgid "End"
|
637 |
+
msgstr "Конец"
|
638 |
+
|
639 |
+
#: userperspan.php:42
|
640 |
+
#@ cpd
|
641 |
+
msgid "PostID"
|
642 |
+
msgstr "ID сообщения"
|
643 |
+
|
644 |
+
#: counter-options.php:880
|
645 |
+
#@ cpd
|
646 |
+
msgid "Add this value to \"Total reads\"."
|
647 |
+
msgstr "Добавить значение к \"Всего прочтений\"."
|
648 |
+
|
649 |
+
#: counter-options.php:611
|
650 |
+
#@ cpd
|
651 |
+
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!"
|
652 |
+
msgstr "Вы можете получить данные стран для всех записей проверив IP адреса заново. Может занять некоторое время!"
|
653 |
+
|
654 |
+
#: userperspan.php:50
|
655 |
+
#@ cpd
|
656 |
+
msgid "no data found"
|
657 |
+
msgstr "ничего не найдено"
|
658 |
+
|
659 |
+
#: counter-options.php:720
|
660 |
+
#@ cpd
|
661 |
+
msgid "Counter"
|
662 |
+
msgstr "Счетчик"
|
663 |
+
|
664 |
+
#: counter-options.php:758
|
665 |
+
#@ cpd
|
666 |
+
msgid "Clients and referrers"
|
667 |
+
msgstr "Клиенты и ссылающиеся сайты"
|
668 |
+
|
669 |
+
#: counter-options.php:761
|
670 |
+
#@ cpd
|
671 |
+
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."
|
672 |
+
msgstr "Сохранить и показать клиентов и ссылающиеся сайты.<br />Требует много дискового пространства в базе данных, но предоставляет более детальную информацию о ваших посетителях."
|
673 |
+
|
674 |
+
#: counter-options.php:844
|
675 |
+
#@ cpd
|
676 |
+
msgid "Local URLs"
|
677 |
+
msgstr "Локальные URL"
|
678 |
+
|
679 |
+
#: counter-options.php:845
|
680 |
+
#@ cpd
|
681 |
+
msgid "Show local referrers too."
|
682 |
+
msgstr "Показывать локальные переходы тоже."
|
683 |
+
|
684 |
+
#: counter-options.php:852
|
685 |
+
#@ default
|
686 |
+
msgid "Posts"
|
687 |
+
msgstr "Записи"
|
688 |
+
|
689 |
+
#: counter-options.php:852
|
690 |
+
#@ default
|
691 |
+
msgid "Pages"
|
692 |
+
msgstr "Страницы"
|
693 |
+
|
694 |
+
#: counter.php:185
|
695 |
+
#: counter.php:1303
|
696 |
+
#@ cpd
|
697 |
+
msgid "Reads last week"
|
698 |
+
msgstr "Прочтений на прошлой неделе"
|
699 |
+
|
700 |
+
#: counter.php:1043
|
701 |
+
#@ default
|
702 |
+
msgid "Category"
|
703 |
+
msgstr "Категория"
|
704 |
+
|
705 |
+
#: counter.php:1046
|
706 |
+
#@ default
|
707 |
+
msgid "Tag"
|
708 |
+
msgstr "Тег"
|
709 |
+
|
710 |
+
#: counter-core.php:746
|
711 |
+
#@ default
|
712 |
+
msgid "License"
|
713 |
+
msgstr "Лицензия"
|
714 |
+
|
715 |
+
#: counter-core.php:781
|
716 |
+
#: counter.php:1304
|
717 |
+
#@ cpd
|
718 |
+
msgid "Reads per month"
|
719 |
+
msgstr "Прочтений за месяц"
|
720 |
+
|
721 |
+
#: counter-core.php:790
|
722 |
+
#@ cpd
|
723 |
+
msgid "Referrer"
|
724 |
+
msgstr "Ссылающийся сайт"
|
725 |
+
|
726 |
+
#: counter-options.php:836
|
727 |
+
#@ cpd
|
728 |
+
msgid "Referrers - Entries"
|
729 |
+
msgstr "Ссылающиеся сайты - Вхождения"
|
730 |
+
|
731 |
+
#: counter-options.php:837
|
732 |
+
#@ cpd
|
733 |
+
msgid "How many referrers do you want to see on dashboard page?"
|
734 |
+
msgstr "Сколько ссылающихся сайтов вы хотите увидеть на странице статистики?"
|
735 |
+
|
736 |
+
#: counter-options.php:840
|
737 |
+
#@ cpd
|
738 |
+
msgid "Referrers - Days"
|
739 |
+
msgstr "Ссылающиеся сайты - Дни"
|
740 |
+
|
741 |
+
#: counter.php:892
|
742 |
+
#, php-format
|
743 |
+
#@ cpd
|
744 |
+
msgid "The %s referrers in last %s days:"
|
745 |
+
msgstr "%s ссылающихся сайтов за последние %s дней:"
|
746 |
+
|
747 |
+
#: counter-core.php:779
|
748 |
+
#@ cpd
|
749 |
+
msgid "Visitors online"
|
750 |
+
msgstr "Посетителей на сайте"
|
751 |
+
|
752 |
+
#: counter-core.php:228
|
753 |
+
#, php-format
|
754 |
+
#@ cpd
|
755 |
+
msgid "\"Count per Day\" updated to version %s."
|
756 |
+
msgstr "\"Count per Day\" обновлен до версии %s"
|
757 |
+
|
758 |
+
#: counter-core.php:980
|
759 |
+
#@ cpd
|
760 |
+
msgid "Backup failed! Cannot open file"
|
761 |
+
msgstr "Обновление не удалось! Не могу открыть файл"
|
762 |
+
|
763 |
+
#: counter-core.php:1007
|
764 |
+
#, php-format
|
765 |
+
#@ cpd
|
766 |
+
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
767 |
+
msgstr "Происходит резервное соранение %s записей. Каждой точке соответствует %s записей."
|
768 |
+
|
769 |
+
#: counter-core.php:1098
|
770 |
+
#: counter-core.php:1106
|
771 |
+
#, php-format
|
772 |
+
#@ cpd
|
773 |
+
msgid "Backup of counter table saved in %s."
|
774 |
+
msgstr "Резервная копия таблицы счетчика сохранена в %s"
|
775 |
+
|
776 |
+
#: counter-core.php:1100
|
777 |
+
#: counter-core.php:1108
|
778 |
+
#, php-format
|
779 |
+
#@ cpd
|
780 |
+
msgid "Backup of counter options and collection saved in %s."
|
781 |
+
msgstr "Резервная копия настроек счетчика и коллекции сохранены в %s"
|
782 |
+
|
783 |
+
#: counter-options.php:169
|
784 |
+
#@ cpd
|
785 |
+
msgid "Collection in progress..."
|
786 |
+
msgstr "Происходит сбор данных..."
|
787 |
+
|
788 |
+
#: counter-options.php:263
|
789 |
+
#@ cpd
|
790 |
+
msgid "Get Visitors per Post..."
|
791 |
+
msgstr "Получить посетителей по записям..."
|
792 |
+
|
793 |
+
#: counter-options.php:284
|
794 |
+
#@ cpd
|
795 |
+
msgid "Delete old data..."
|
796 |
+
msgstr "Удалить старые данные..."
|
797 |
+
|
798 |
+
#: counter-options.php:308
|
799 |
+
#, php-format
|
800 |
+
#@ cpd
|
801 |
+
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
802 |
+
msgstr "Записи счетчика до %s собраны и оптимизирована таблица счетчика %s (размер перед = %s > размер после = %s)."
|
803 |
+
|
804 |
+
#: counter-options.php:317
|
805 |
+
#@ cpd
|
806 |
+
msgid "Installation of \"Count per Day\" checked"
|
807 |
+
msgstr "Установка \"Count per Day\" проверена"
|
808 |
+
|
809 |
+
#: counter-options.php:385
|
810 |
+
#: counter-options.php:711
|
811 |
+
#@ default
|
812 |
+
msgid "Tools"
|
813 |
+
msgstr "Инструменты"
|
814 |
+
|
815 |
+
#: counter-options.php:763
|
816 |
+
#@ cpd
|
817 |
+
msgid "Save URL only, no query string."
|
818 |
+
msgstr "Сохранять только URL без строки запроса."
|
819 |
+
|
820 |
+
#: counter-options.php:787
|
821 |
+
#@ cpd
|
822 |
+
msgid "Who can see it"
|
823 |
+
msgstr "Кто может это видеть"
|
824 |
+
|
825 |
+
#: counter-options.php:796
|
826 |
+
#@ cpd
|
827 |
+
msgid "custom"
|
828 |
+
msgstr "пользовательский"
|
829 |
+
|
830 |
+
#: counter-options.php:798
|
831 |
+
#@ cpd
|
832 |
+
msgid "and higher are allowed to see the statistics page."
|
833 |
+
msgstr "и выше могут видеть статистику страницы."
|
834 |
+
|
835 |
+
#: counter-options.php:800
|
836 |
+
#, php-format
|
837 |
+
#@ cpd
|
838 |
+
msgid "Set the %s capability %s a user need:"
|
839 |
+
msgstr "Установить %s права % необходимые пользователю:"
|
840 |
+
|
841 |
+
#: counter-options.php:887
|
842 |
+
#@ cpd
|
843 |
+
msgid "Stylesheet"
|
844 |
+
msgstr "Стили"
|
845 |
+
|
846 |
+
#: counter-options.php:890
|
847 |
+
#@ cpd
|
848 |
+
msgid "NO Stylesheet in Frontend"
|
849 |
+
msgstr "НЕ использовать стили в интерфейсе"
|
850 |
+
|
851 |
+
#: counter-options.php:891
|
852 |
+
#@ cpd
|
853 |
+
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
854 |
+
msgstr "Не загружать файл стилей \"counter.css\" для интерфейса."
|
855 |
+
|
856 |
+
#: counter-options.php:461
|
857 |
+
#: counter-options.php:898
|
858 |
+
#@ cpd
|
859 |
+
msgid "Backup"
|
860 |
+
msgstr "Резервирование"
|
861 |
+
|
862 |
+
#: counter-options.php:901
|
863 |
+
#@ cpd
|
864 |
+
msgid "Entries per pass"
|
865 |
+
msgstr "Записей за один проход"
|
866 |
+
|
867 |
+
#: counter-options.php:904
|
868 |
+
#@ cpd
|
869 |
+
msgid "How many entries should be saved per pass? Default: 10000"
|
870 |
+
msgstr "Сколько записей сохранять за один проход? По умолчанию: 10000"
|
871 |
+
|
872 |
+
#: counter-options.php:909
|
873 |
+
#@ cpd
|
874 |
+
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
875 |
+
msgstr "Если ограничение памяти вашего PHP меньше 50 MB и вы получаете белую страницу или сообщения об ошибках, то попробуйте меньшее значение."
|
876 |
+
|
877 |
+
#: counter-options.php:465
|
878 |
+
#, php-format
|
879 |
+
#@ cpd
|
880 |
+
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
881 |
+
msgstr "Создать резервную копию таблицы счетчика %s в вашей папке wp-content (если она не только для чтения)"
|
882 |
+
|
883 |
+
#: counter-options.php:472
|
884 |
+
#@ cpd
|
885 |
+
msgid "Backup the database"
|
886 |
+
msgstr "Резервирование базы данных"
|
887 |
+
|
888 |
+
#: counter-options.php:563
|
889 |
+
#: counter-options.php:595
|
890 |
+
#@ cpd
|
891 |
+
msgid "Collect old data"
|
892 |
+
msgstr "Собрать старые данные"
|
893 |
+
|
894 |
+
#: counter-options.php:568
|
895 |
+
#, php-format
|
896 |
+
#@ cpd
|
897 |
+
msgid "Current size of your counter table %s is %s."
|
898 |
+
msgstr "Текущий размер вашей таблицы счетчика %s : %s."
|
899 |
+
|
900 |
+
#: counter-options.php:570
|
901 |
+
#@ cpd
|
902 |
+
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."
|
903 |
+
msgstr "Вы можете собрать старые данные и очистить таблицу счетчика.<br/>Прочтения и посетители будут сохранены за каждый месяц, по стране и по записям.<br/>Клиенты и ссылающиеся сайты будут удалены."
|
904 |
+
|
905 |
+
#: counter-options.php:575
|
906 |
+
#, php-format
|
907 |
+
#@ cpd
|
908 |
+
msgid "Currently your collection contains data until %s."
|
909 |
+
msgstr "Сейчас ваша коллекция содержит данные до %s."
|
910 |
+
|
911 |
+
#: counter-options.php:579
|
912 |
+
#@ cpd
|
913 |
+
msgid "Normally new data will be added to the collection."
|
914 |
+
msgstr "Если все пройдет успешно, то новые данные будут добавлены в коллекцию."
|
915 |
+
|
916 |
+
#: counter-options.php:585
|
917 |
+
#@ cpd
|
918 |
+
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
919 |
+
msgstr "Удалить старую коллекцию и создать новую, которая содержит только данные, которые сейчас в таблице счетчика."
|
920 |
+
|
921 |
+
#: counter-options.php:586
|
922 |
+
#, php-format
|
923 |
+
#@ cpd
|
924 |
+
msgid "All collected data until %s will deleted."
|
925 |
+
msgstr "Все данные до %s будут удалены."
|
926 |
+
|
927 |
+
#: counter-options.php:591
|
928 |
+
#, php-format
|
929 |
+
#@ cpd
|
930 |
+
msgid "Keep entries of last %s full months + current month in counter table."
|
931 |
+
msgstr "Сохранить записи за последние %s полные месяца + текущий месяц в таблице счетчика."
|
932 |
+
|
933 |
+
#: counter-options.php:642
|
934 |
+
#@ cpd
|
935 |
+
msgid "ReActivation"
|
936 |
+
msgstr "Переактивация"
|
937 |
+
|
938 |
+
#: counter-options.php:645
|
939 |
+
#@ cpd
|
940 |
+
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
941 |
+
msgstr "Здесь вы можете запустить функции установки вручную.<br/>Точно также, как и деактивация и активация плагина."
|
942 |
+
|
943 |
+
#: counter-options.php:650
|
944 |
+
#@ cpd
|
945 |
+
msgid "ReActivate the plugin"
|
946 |
+
msgstr "Переактивировать плагин"
|
947 |
+
|
948 |
+
#: counter.php:192
|
949 |
+
#: counter.php:946
|
950 |
+
#@ cpd
|
951 |
+
msgid "Visitors"
|
952 |
+
msgstr "Посетителей"
|
953 |
+
|
954 |
+
#: counter.php:195
|
955 |
+
#: counter.php:196
|
956 |
+
#@ cpd
|
957 |
+
msgid "Most visited day"
|
958 |
+
msgstr "Самый посещаемый день"
|
959 |
+
|
960 |
+
#: counter.php:1323
|
961 |
+
#@ default
|
962 |
+
msgid "Title"
|
963 |
+
msgstr "Заголовок"
|
964 |
+
|
965 |
+
#: counter.php:1342
|
966 |
+
#@ cpd
|
967 |
+
msgid "drag and drop to sort"
|
968 |
+
msgstr "перетащите для сортировки"
|
969 |
+
|
970 |
+
#: counter-core.php:785
|
971 |
+
#: counter-options.php:836
|
972 |
+
#: counter-options.php:840
|
973 |
+
#@ cpd
|
974 |
+
msgid "Search strings"
|
975 |
+
msgstr "Строки поиска"
|
976 |
+
|
977 |
+
#: counter-core.php:1094
|
978 |
+
#@ cpd
|
979 |
+
msgid "Your can download the backup files here and now."
|
980 |
+
msgstr "Вы можете скачать резервные файлы здесь и сейчас."
|
981 |
+
|
982 |
+
#: counter-core.php:1164
|
983 |
+
#@ cpd
|
984 |
+
msgid "Error while reading backup file!"
|
985 |
+
msgstr "Ошибка при чтении резервного файла."
|
986 |
+
|
987 |
+
#: counter-core.php:1168
|
988 |
+
#, php-format
|
989 |
+
#@ cpd
|
990 |
+
msgid "The backup was added to counter table %s."
|
991 |
+
msgstr "Резервная копия была добавлена в таблицу счетчика %s."
|
992 |
+
|
993 |
+
#: counter-core.php:1170
|
994 |
+
#, php-format
|
995 |
+
#@ cpd
|
996 |
+
msgid "The counter table %s was restored from backup."
|
997 |
+
msgstr "Таблица счетчика %s была восстановлена из резервной копии."
|
998 |
+
|
999 |
+
#: counter-core.php:1187
|
1000 |
+
#@ cpd
|
1001 |
+
msgid "Options restored from backup."
|
1002 |
+
msgstr "Опции восстановлены из резервной копии."
|
1003 |
+
|
1004 |
+
#: counter-options.php:332
|
1005 |
+
#@ cpd
|
1006 |
+
msgid "Old search strings deleted"
|
1007 |
+
msgstr "Старые строки поиска были удалены"
|
1008 |
+
|
1009 |
+
#: counter-options.php:468
|
1010 |
+
#@ cpd
|
1011 |
+
msgid "Download only"
|
1012 |
+
msgstr "Только скачать"
|
1013 |
+
|
1014 |
+
#: counter-options.php:500
|
1015 |
+
#@ cpd
|
1016 |
+
msgid "Settings and collections"
|
1017 |
+
msgstr "Настройки и наборы данных"
|
1018 |
+
|
1019 |
+
#: counter-options.php:505
|
1020 |
+
#, php-format
|
1021 |
+
#@ cpd
|
1022 |
+
msgid "Counter table %s"
|
1023 |
+
msgstr "Таблица счетчика %s"
|
1024 |
+
|
1025 |
+
#: counter-options.php:512
|
1026 |
+
#, php-format
|
1027 |
+
#@ cpd
|
1028 |
+
msgid "Add data from the backup file %s to existing counter table?"
|
1029 |
+
msgstr "Добавить данные из резервного файла %s к существующей таблице счетчика?"
|
1030 |
+
|
1031 |
+
#: counter-options.php:512
|
1032 |
+
#@ cpd
|
1033 |
+
msgid "Add"
|
1034 |
+
msgstr "Добавить"
|
1035 |
+
|
1036 |
+
#: counter-options.php:516
|
1037 |
+
#, php-format
|
1038 |
+
#@ cpd
|
1039 |
+
msgid "Restore data from the backup file %s ?"
|
1040 |
+
msgstr "Восстановить данные из резервного файла %s ?"
|
1041 |
+
|
1042 |
+
#: counter-options.php:516
|
1043 |
+
#@ default
|
1044 |
+
msgid "Restore"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: counter-options.php:518
|
1048 |
+
#@ default
|
1049 |
+
msgid "Delete"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: counter-options.php:519
|
1053 |
+
#, php-format
|
1054 |
+
#@ cpd
|
1055 |
+
msgid "Delete the backup file %s ?"
|
1056 |
+
msgstr "Удалить резервный файл %s ?"
|
1057 |
+
|
1058 |
+
#: counter-options.php:525
|
1059 |
+
#@ cpd
|
1060 |
+
msgid "add backup to current counter table"
|
1061 |
+
msgstr "добавить резервную копию к существующей таблице счетчика"
|
1062 |
+
|
1063 |
+
#: counter-options.php:526
|
1064 |
+
#@ cpd
|
1065 |
+
msgid "replace current counter table with with backup"
|
1066 |
+
msgstr "заменить текущую таблицу счетчика резервной копией"
|
1067 |
+
|
1068 |
+
#: counter-options.php:527
|
1069 |
+
#@ cpd
|
1070 |
+
msgid "delete backup file"
|
1071 |
+
msgstr "удалить резервный файл"
|
1072 |
+
|
1073 |
+
#: counter-options.php:552
|
1074 |
+
#, php-format
|
1075 |
+
#@ cpd
|
1076 |
+
msgid "Delete search strings older than %s days."
|
1077 |
+
msgstr "Удалить строки поиска старше %s дней."
|
1078 |
+
|
1079 |
+
#: counter-options.php:554
|
1080 |
+
#@ cpd
|
1081 |
+
msgid "Delete search strings"
|
1082 |
+
msgstr "Удалить строки поиска."
|
1083 |
+
|
1084 |
+
#: counter.php:1089
|
1085 |
+
#, php-format
|
1086 |
+
#@ cpd
|
1087 |
+
msgid "The %s most searched strings:"
|
1088 |
+
msgstr "Самые часто запрашиваемые строки поиска %s :"
|
1089 |
+
|
1090 |
+
#: counter.php:1098
|
1091 |
+
#, php-format
|
1092 |
+
#@ cpd
|
1093 |
+
msgid "The search strings of the last %s days:"
|
1094 |
+
msgstr "Строки поиска за последние %s дней:"
|
1095 |
+
|
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.4.1
|
6 |
-
Stable tag: 3.2
|
7 |
License: Postcardware :)
|
8 |
Donate link: http://www.tomsdimension.de/postcards
|
9 |
|
@@ -24,12 +24,15 @@ Visit Counter, shows reads and visitors per page, visitors today, yesterday, las
|
|
24 |
= Languages, Translators =
|
25 |
|
26 |
- up to date translations:
|
|
|
27 |
- German - Tom - http://www.tomsdimension.de
|
|
|
|
|
|
|
28 |
|
29 |
- older, incomplete translations:
|
30 |
- Azerbaijani - Bohdan Zograf - http://wwww.webhostingrating.com
|
31 |
- Belarusian - Alexander Alexandrov - http://www.designcontest.com
|
32 |
-
- Bulgarian - joro - http://www.joro711.com
|
33 |
- Dansk - Jonas Thomsen - http://jonasthomsen.com
|
34 |
- Dutch NL - Rene - http://wpwebshop.com
|
35 |
- Espanol - Juan Carlos del Río -
|
@@ -38,13 +41,10 @@ Visit Counter, shows reads and visitors per page, visitors today, yesterday, las
|
|
38 |
- Greek - Essetai_Imar - http://www.elliniki-grothia.com
|
39 |
- Hindi - Love Chandel - http://outshinesolutions.com
|
40 |
- Italian - Gianni Diurno - http://gidibao.net
|
41 |
-
- Japanese - Juno Hayami http://juno.main.jp/blog/
|
42 |
- Lithuanian - Nata Strazda - http://www.webhostinghub.com
|
43 |
- Norwegian - Stein Ivar Johnsen - http://iDyrøy.no
|
44 |
- Polish - LeXuS - http://intrakardial.de
|
45 |
-
- Portuguese - Beto Ribeiro - http://www.sevenarts.com.br
|
46 |
- Romanian - Alexander Ovsov - http://webhostinggeeks.com
|
47 |
-
- Russian - Ilya Pshenichny - http://iluhis.com
|
48 |
- Swedish - Magnus Suther - http://www.magnussuther.se
|
49 |
- Turkish - Emrullah Tahir Ekmekçi - http://emrullahekmekci.com.tr
|
50 |
- Ukrainian - Iflexion design - http://iflexion.com
|
@@ -82,6 +82,7 @@ read and write comments on http://www.tomsdimension.de/wp-plugins/count-per-day
|
|
82 |
|
83 |
You can use these shortcodes in the content of your posts to show a number or list
|
84 |
or in your theme files while adding e.g. '<?php echo do_shortcode("[THE_SHORTCODE]"); ?>'.
|
|
|
85 |
|
86 |
[CPD_READS_THIS]
|
87 |
[CPD_READS_TOTAL]
|
@@ -291,8 +292,17 @@ to check if plugin is activated.
|
|
291 |
|
292 |
== Changelog ==
|
293 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
= 3.2 =
|
295 |
-
+ New: save search
|
296 |
+ New shortcode: CPD_COUNTRIES_USERS
|
297 |
+ New: flags for Bahamas, Mongolia, Cameroon and Kazakhstan
|
298 |
+ Bugfix: can't move widgets
|
3 |
Tags: counter, count, posts, visits, reads, dashboard, widget, shortcode
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.4.1
|
6 |
+
Stable tag: 3.2.1
|
7 |
License: Postcardware :)
|
8 |
Donate link: http://www.tomsdimension.de/postcards
|
9 |
|
24 |
= Languages, Translators =
|
25 |
|
26 |
- up to date translations:
|
27 |
+
- Bulgarian - joro - http://www.joro711.com
|
28 |
- German - Tom - http://www.tomsdimension.de
|
29 |
+
- Japanese - Juno Hayami http://juno.main.jp/blog/
|
30 |
+
- Portuguese - Beto Ribeiro - http://www.sevenarts.com.br
|
31 |
+
- Russian - Ilya Pshenichny - http://iluhis.com
|
32 |
|
33 |
- older, incomplete translations:
|
34 |
- Azerbaijani - Bohdan Zograf - http://wwww.webhostingrating.com
|
35 |
- Belarusian - Alexander Alexandrov - http://www.designcontest.com
|
|
|
36 |
- Dansk - Jonas Thomsen - http://jonasthomsen.com
|
37 |
- Dutch NL - Rene - http://wpwebshop.com
|
38 |
- Espanol - Juan Carlos del Río -
|
41 |
- Greek - Essetai_Imar - http://www.elliniki-grothia.com
|
42 |
- Hindi - Love Chandel - http://outshinesolutions.com
|
43 |
- Italian - Gianni Diurno - http://gidibao.net
|
|
|
44 |
- Lithuanian - Nata Strazda - http://www.webhostinghub.com
|
45 |
- Norwegian - Stein Ivar Johnsen - http://iDyrøy.no
|
46 |
- Polish - LeXuS - http://intrakardial.de
|
|
|
47 |
- Romanian - Alexander Ovsov - http://webhostinggeeks.com
|
|
|
48 |
- Swedish - Magnus Suther - http://www.magnussuther.se
|
49 |
- Turkish - Emrullah Tahir Ekmekçi - http://emrullahekmekci.com.tr
|
50 |
- Ukrainian - Iflexion design - http://iflexion.com
|
82 |
|
83 |
You can use these shortcodes in the content of your posts to show a number or list
|
84 |
or in your theme files while adding e.g. '<?php echo do_shortcode("[THE_SHORTCODE]"); ?>'.
|
85 |
+
To use the shortcodes within a textwidget you have to add 'add_filter("widget_text", "do_shortcode");' to the 'functions.php' of your theme.
|
86 |
|
87 |
[CPD_READS_THIS]
|
88 |
[CPD_READS_TOTAL]
|
292 |
|
293 |
== Changelog ==
|
294 |
|
295 |
+
= 3.2.1 =
|
296 |
+
+ Bugfix: massbot delete error
|
297 |
+
+ Bugfix: search words array sometimes corrupt
|
298 |
+
+ Bugfix: add collected data to reads per post, thanks to http://is.gd/VWNyLq http://yumeneko.pmfan.jp
|
299 |
+
+ Language update: Japanese, thanks to Juno Hayami
|
300 |
+
+ Language update: Portuguese, thanks to Beto Ribeiro
|
301 |
+
+ Language update: Russian, thanks to Ilya Pshenichny
|
302 |
+
+ Language update: Bulgarian, thanks to joro
|
303 |
+
|
304 |
= 3.2 =
|
305 |
+
+ New: save search words
|
306 |
+ New shortcode: CPD_COUNTRIES_USERS
|
307 |
+ New: flags for Bahamas, Mongolia, Cameroon and Kazakhstan
|
308 |
+ Bugfix: can't move widgets
|