Count per Day - Version 3.2.10

Version Description

  • Bugfix: Plugin dir path fixed
  • Bugfix: CSS path fixed
  • Bugfix: search word now case insensitive
  • Bugfix: Translation of widget titles
  • New: world map of current visitors
  • New: check referer agains bot list
  • New: delete clients and referers of older entries
Download this release

Release Info

Developer Tom Braider
Plugin Icon 128x128 Count per Day
Version 3.2.10
Comparing to
See all releases

Code changes from version 3.2.9 to 3.2.10

ajax.php CHANGED
@@ -29,9 +29,9 @@ if ( $_GET['f'] == 'count' )
29
  if ( $f == 'getUserPerDay' )
30
  echo $count_per_day->getUserPerDay($count_per_day->options['dashboard_last_days']);
31
  else if ( $f == 'show' )
32
- echo $count_per_day->show("", "", false, false, '.$page.');
33
  else
34
- echo call_user_func('$count_per_day->'.$f);
35
  echo '|';
36
  }
37
  }
29
  if ( $f == 'getUserPerDay' )
30
  echo $count_per_day->getUserPerDay($count_per_day->options['dashboard_last_days']);
31
  else if ( $f == 'show' )
32
+ echo $count_per_day->show('', '', false, false, $page);
33
  else
34
+ echo $count_per_day->{$f}();
35
  echo '|';
36
  }
37
  }
counter-core.php CHANGED
@@ -49,8 +49,11 @@ function init()
49
  // manual debug mode
50
  if (!empty($_GET['debug']) && WP_DEBUG )
51
  $this->options['debug'] = 1;
 
 
 
 
52
 
53
- $this->dir = get_bloginfo('wpurl').'/'.PLUGINDIR.'/'.$cpd_dir_name;
54
  $this->queries[0] = 0;
55
 
56
  // update online counter
@@ -326,13 +329,16 @@ function getPostID()
326
  * @param string $client USER_AGENT
327
  * @param array $bots strings to check
328
  * @param string $ip IP adress
 
329
  */
330
- function isBot( $client = '', $bots = '', $ip = '' )
331
  {
332
  if ( empty($client) && isset($_SERVER['HTTP_USER_AGENT']) )
333
  $client = $_SERVER['HTTP_USER_AGENT'];
334
  if (empty($ip))
335
  $ip = $_SERVER['REMOTE_ADDR'];
 
 
336
 
337
  // empty/short client -> not normal browser -> bot
338
  if ( empty($client) || strlen($client) < 20 )
@@ -347,7 +353,7 @@ function isBot( $client = '', $bots = '', $ip = '' )
347
  if (!$isBot) // loop until first bot was found only
348
  {
349
  $b = trim($bot);
350
- if ( !empty($b) && ( $ip == $b || strpos( strtolower($client), strtolower($b) ) !== false ) )
351
  $isBot = true;
352
  }
353
  }
@@ -579,8 +585,8 @@ jQuery(document).ready( function()
579
  for(var i = 0; i < cpd_funcs.length; i++)
580
  {
581
  var cpd_daten = cpd_funcs[i].split('===');
582
- var cpd_fields = document.getElementById('cpd_number_' + cpd_daten[0].toLowerCase());
583
- if (!cpd_fields && cpd_fields != null) { cpd_fields.innerHTML = cpd_daten[1]; }
584
  }
585
  });
586
  } );
@@ -628,7 +634,8 @@ function menu($content)
628
  global $cpd_dir_name;
629
  if (function_exists('add_options_page'))
630
  {
631
- $menutitle = '<img src="'.$this->img('cpd_menu.gif').'" alt="/" style="width:9px;height:12px;" /> Count per Day';
 
632
  add_options_page('CountPerDay', $menutitle, 'manage_options', $cpd_dir_name.'/counter-options.php') ;
633
  }
634
  }
@@ -729,7 +736,8 @@ function screenLayoutColumns($columns, $screen)
729
  */
730
  function setAdminMenu()
731
  {
732
- $menutitle = '<img src="'.$this->img('cpd_menu.gif').'" alt="" style="width:12px;height:12px;" /> Count per Day';
 
733
  $this->pagehook = add_submenu_page('index.php', 'CountPerDay', $menutitle, $this->options['whocansee'], CPD_METABOX, array(&$this, 'onShowPage'));
734
  add_action('load-'.$this->pagehook, array(&$this, 'onLoadPage'));
735
  }
49
  // manual debug mode
50
  if (!empty($_GET['debug']) && WP_DEBUG )
51
  $this->options['debug'] = 1;
52
+ // $this->dir = get_bloginfo('wpurl').'/'.PLUGINDIR.'/'.$cpd_dir_name;
53
+ $this->dir = plugins_url('/'.$cpd_dir_name);
54
+ // var_dump($this->dir);
55
+ // content_url()
56
 
 
57
  $this->queries[0] = 0;
58
 
59
  // update online counter
329
  * @param string $client USER_AGENT
330
  * @param array $bots strings to check
331
  * @param string $ip IP adress
332
+ * @param string $ref referrer
333
  */
334
+ function isBot( $client = '', $bots = '', $ip = '', $ref = '' )
335
  {
336
  if ( empty($client) && isset($_SERVER['HTTP_USER_AGENT']) )
337
  $client = $_SERVER['HTTP_USER_AGENT'];
338
  if (empty($ip))
339
  $ip = $_SERVER['REMOTE_ADDR'];
340
+ if ( empty($ref) && isset($_SERVER['HTTP_REFERER']) )
341
+ $ref = $_SERVER['HTTP_REFERER'];
342
 
343
  // empty/short client -> not normal browser -> bot
344
  if ( empty($client) || strlen($client) < 20 )
353
  if (!$isBot) // loop until first bot was found only
354
  {
355
  $b = trim($bot);
356
+ if ( !empty($b) && ( $ip == $b || strpos( strtolower($client), strtolower($b) ) !== false || strpos( strtolower($ref), strtolower($b) ) !== false ) )
357
  $isBot = true;
358
  }
359
  }
585
  for(var i = 0; i < cpd_funcs.length; i++)
586
  {
587
  var cpd_daten = cpd_funcs[i].split('===');
588
+ var cpd_field = document.getElementById('cpd_number_' + cpd_daten[0].toLowerCase());
589
+ if (cpd_field != null) { cpd_field.innerHTML = cpd_daten[1]; }
590
  }
591
  });
592
  } );
634
  global $cpd_dir_name;
635
  if (function_exists('add_options_page'))
636
  {
637
+ // $menutitle = '<img src="'.$this->img('cpd_menu.gif').'" alt="/" style="width:9px;height:12px;" /> Count per Day';
638
+ $menutitle = 'Count per Day';
639
  add_options_page('CountPerDay', $menutitle, 'manage_options', $cpd_dir_name.'/counter-options.php') ;
640
  }
641
  }
736
  */
737
  function setAdminMenu()
738
  {
739
+ // $menutitle = '<img src="'.$this->img('cpd_menu.gif').'" alt="" style="width:12px;height:12px;" /> Count per Day';
740
+ $menutitle = 'Count per Day';
741
  $this->pagehook = add_submenu_page('index.php', 'CountPerDay', $menutitle, $this->options['whocansee'], CPD_METABOX, array(&$this, 'onShowPage'));
742
  add_action('load-'.$this->pagehook, array(&$this, 'onLoadPage'));
743
  }
counter-options.php CHANGED
@@ -330,6 +330,21 @@ if(!empty($_POST['do']))
330
  update_option('count_per_day_search', $searches);
331
  unset($searches);
332
  echo '<div class="updated"><p>'.__('Old search strings deleted', 'cpd').'</p></div>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
 
334
  default:
335
  break;
@@ -537,10 +552,10 @@ switch($mode) {
537
  <div class="postbox">
538
  <h3><span class="cpd_icon cpd_clean">&nbsp;</span> <?php _e('Clean the database', 'cpd') ?></h3>
539
  <div class="inside">
 
540
  <p>
541
  <?php _e('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.', 'cpd') ?>
542
  </p>
543
- <form method="post" action="<?php echo $mysiteurl ?>">
544
  <p>
545
  <input type="hidden" name="do" value="cpd_clean" />
546
  <input type="submit" name="clean" value="<?php _e('Clean the database', 'cpd') ?>" class="button" />
@@ -548,12 +563,25 @@ switch($mode) {
548
  </form>
549
 
550
  <form method="post" action="<?php echo $mysiteurl ?>">
 
 
 
551
  <p>
552
- <?php printf(__('Delete search strings older than %s days.', 'cpd'), '<input type="text" size="2" name="cpd_keepsearch" value="14" class="code" />') ?><br/>
553
  <input type="hidden" name="do" value="cpd_searchclean" />
554
  <input type="submit" name="clean" value="<?php _e('Delete search strings', 'cpd') ?>" class="button" />
555
  </p>
556
  </form>
 
 
 
 
 
 
 
 
 
 
 
557
  </div>
558
  </div>
559
  <?php endif; ?>
330
  update_option('count_per_day_search', $searches);
331
  unset($searches);
332
  echo '<div class="updated"><p>'.__('Old search strings deleted', 'cpd').'</p></div>';
333
+
334
+
335
+ // delete clients and referers
336
+ case 'cpd_clientsclean' :
337
+ $days = intval($_POST['cpd_keepclients']);
338
+ $deldate = date('Y-m-d', time() - $days * 86400);
339
+
340
+ $cpd_sql = "
341
+ UPDATE $wpdb->cpd_counter
342
+ SET client = '',
343
+ referer = ''
344
+ WHERE date < '$deldate'";
345
+ $count_per_day->mysqlQuery('', $cpd_sql, 'deleteClients '.__LINE__);
346
+
347
+ echo '<div class="updated"><p>'.__('Clients and referers deleted', 'cpd').'</p></div>';
348
 
349
  default:
350
  break;
552
  <div class="postbox">
553
  <h3><span class="cpd_icon cpd_clean">&nbsp;</span> <?php _e('Clean the database', 'cpd') ?></h3>
554
  <div class="inside">
555
+ <form method="post" action="<?php echo $mysiteurl ?>">
556
  <p>
557
  <?php _e('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.', 'cpd') ?>
558
  </p>
 
559
  <p>
560
  <input type="hidden" name="do" value="cpd_clean" />
561
  <input type="submit" name="clean" value="<?php _e('Clean the database', 'cpd') ?>" class="button" />
563
  </form>
564
 
565
  <form method="post" action="<?php echo $mysiteurl ?>">
566
+ <p style="border-top:1px #ddd solid; padding-top:10px">
567
+ <?php printf(__('Delete search strings older than %s days.', 'cpd'), '<input type="text" size="2" name="cpd_keepsearch" value="14" class="code" />') ?>
568
+ </p>
569
  <p>
 
570
  <input type="hidden" name="do" value="cpd_searchclean" />
571
  <input type="submit" name="clean" value="<?php _e('Delete search strings', 'cpd') ?>" class="button" />
572
  </p>
573
  </form>
574
+
575
+ <form method="post" action="<?php echo $mysiteurl ?>">
576
+ <p style="border-top:1px #ddd solid; padding-top:10px">
577
+ <?php printf(__('Current size of your counter table %s is %s.', 'cpd'), '<code>'.$wpdb->cpd_counter.'</code>', $count_per_day->getTableSize($wpdb->cpd_counter));?><br/>
578
+ <?php printf(__('Delete clients and referers older than %s days to reduce the size of the counter table.', 'cpd'), '<input type="text" size="2" name="cpd_keepclients" value="90" class="code" />') ?>
579
+ </p>
580
+ <p>
581
+ <input type="hidden" name="do" value="cpd_clientsclean" />
582
+ <input type="submit" name="clean" value="<?php _e('Delete clients and referers', 'cpd') ?>" class="button" />
583
+ </p>
584
+ </form>
585
  </div>
586
  </div>
587
  <?php endif; ?>
counter.css CHANGED
@@ -169,8 +169,7 @@ h2 .cpd_icon {
169
  .cpd-dashboard li b {
170
  float: right;
171
  text-align: right;
172
- font-family: Georgia,"Times New Roman",Times,serif;
173
- font-size: 18px;
174
  color: #2583ad;
175
  }
176
 
@@ -195,6 +194,12 @@ h2 .cpd_icon {
195
  text-align: right;
196
  }
197
 
 
 
 
 
 
 
198
  /* widget */
199
 
200
  .cpd_widget_item {
169
  .cpd-dashboard li b {
170
  float: right;
171
  text-align: right;
172
+ font-size: 1.2em;
 
173
  color: #2583ad;
174
  }
175
 
194
  text-align: right;
195
  }
196
 
197
+ /* otherwise hidden on little displays */
198
+ .columns-prefs .columns-prefs-3, .columns-prefs .columns-prefs-4 {
199
+ display: inline-block !important;
200
+ }
201
+
202
+
203
  /* widget */
204
 
205
  .cpd_widget_item {
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.9
7
  License: Postcardware
8
  Author: Tom Braider
9
  Author URI: http://www.tomsdimension.de
10
  */
11
 
12
  $cpd_dir_name = 'count-per-day';
13
- $cpd_version = '3.2.9';
14
 
15
  if (strpos($_SERVER['SERVER_NAME'], '.test'))
16
  $cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
@@ -119,6 +119,7 @@ function count( $x, $page = 'x' )
119
  $real_ip = $_SERVER['REMOTE_ADDR'];
120
 
121
  $userip = $this->anonymize_ip($real_ip);
 
122
  $client = ($this->options['referers']) ? wp_strip_all_tags($_SERVER['HTTP_USER_AGENT']) : '';
123
  $referer = ($this->options['referers'] && isset($_SERVER['HTTP_REFERER'])) ? wp_strip_all_tags($_SERVER['HTTP_REFERER']) : '';
124
  if ($this->options['referers_cut'])
@@ -133,6 +134,10 @@ function count( $x, $page = 'x' )
133
  {
134
  // with GeoIP addon save country
135
  $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
 
 
 
 
136
  if ( strpos($userip,'.') !== false && strpos($userip,':') === false)
137
  {
138
  // IPv4
@@ -872,7 +877,7 @@ function getVisitedPostsOnDay( $date = 0, $limit = 0, $show_form = true, $show_n
872
  }
873
  if (isset($note))
874
  echo '<p style="background:#eee; padding:2px;">'.implode(', ', $note).'</p>';
875
- $r = $this->getUserPer_SQL( $sql, 'getVisitedPostsOnDay', $frontend );
876
  if ($return) return $r; else echo $r;
877
  }
878
 
@@ -933,7 +938,7 @@ function getReferers( $limit = 0, $return = false, $days = 0 )
933
 
934
  // local url filter
935
  $dayfiltre = "AND date > DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL $days DAY)";
936
-
937
  $localref = ($this->options['localref']) ? '' : " AND referer NOT LIKE '".get_bloginfo('url')."%%' ";
938
  $res = $this->mysqlQuery('rows', "SELECT COUNT(*) count, referer FROM $wpdb->cpd_counter WHERE referer > '' $dayfiltre $localref GROUP BY referer ORDER BY count DESC LIMIT $limit", 'getReferers '.__LINE__);
939
  $r = '<small>'.sprintf(__('The %s referrers in last %s days:', 'cpd'), $limit, $days).'</small>';
@@ -1086,16 +1091,16 @@ function getUserPer_SQL( $sql, $name = '', $frontend = false, $limit = 0 )
1086
  $r .= '<a href="'.get_bloginfo('url');
1087
  if ( $row->tax == 'category' )
1088
  // category
1089
- $r .= '?cat='.abs($row->post_id).'">- '.$row->tag_cat_name.' ('.__('Category').') -';
1090
  else if ( $row->tax )
1091
  // tag
1092
- $r .= '?tag='.$row->tag_cat_slug.'">- '.$row->tag_cat_name.' ('.__('Tag').') -';
1093
  else if ( $row->post_id == 0 )
1094
  // homepage
1095
- $r .= '">- '.__('Front page displays').' -';
1096
  else
1097
  // post/page
1098
- $r .= '?p='.$row->post_id.'">'.($row->post ? $row->post : '---');
1099
  $r .= '</a>';
1100
 
1101
  $r .= ' <b>'.$row->count.'</b></li>'."\n";
@@ -1125,6 +1130,7 @@ function getSearches( $limit = 0, $days = 0, $return = false )
1125
  if (is_array($strings))
1126
  foreach ( $strings as $s )
1127
  {
 
1128
  if (isset($c[$s]))
1129
  $c[$s]++;
1130
  else
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.10
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.10';
14
 
15
  if (strpos($_SERVER['SERVER_NAME'], '.test'))
16
  $cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
119
  $real_ip = $_SERVER['REMOTE_ADDR'];
120
 
121
  $userip = $this->anonymize_ip($real_ip);
122
+
123
  $client = ($this->options['referers']) ? wp_strip_all_tags($_SERVER['HTTP_USER_AGENT']) : '';
124
  $referer = ($this->options['referers'] && isset($_SERVER['HTTP_REFERER'])) ? wp_strip_all_tags($_SERVER['HTTP_REFERER']) : '';
125
  if ($this->options['referers_cut'])
134
  {
135
  // with GeoIP addon save country
136
  $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
137
+
138
+ if (!filter_var($userip, FILTER_VALIDATE_IP))
139
+ $userip = ' 127.0.0.1';
140
+
141
  if ( strpos($userip,'.') !== false && strpos($userip,':') === false)
142
  {
143
  // IPv4
877
  }
878
  if (isset($note))
879
  echo '<p style="background:#eee; padding:2px;">'.implode(', ', $note).'</p>';
880
+ $r = $this->getUserPer_SQL( $sql, 'getVisitedPostsOnDay', $frontend, $limit );
881
  if ($return) return $r; else echo $r;
882
  }
883
 
938
 
939
  // local url filter
940
  $dayfiltre = "AND date > DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL $days DAY)";
941
+
942
  $localref = ($this->options['localref']) ? '' : " AND referer NOT LIKE '".get_bloginfo('url')."%%' ";
943
  $res = $this->mysqlQuery('rows', "SELECT COUNT(*) count, referer FROM $wpdb->cpd_counter WHERE referer > '' $dayfiltre $localref GROUP BY referer ORDER BY count DESC LIMIT $limit", 'getReferers '.__LINE__);
944
  $r = '<small>'.sprintf(__('The %s referrers in last %s days:', 'cpd'), $limit, $days).'</small>';
1091
  $r .= '<a href="'.get_bloginfo('url');
1092
  if ( $row->tax == 'category' )
1093
  // category
1094
+ $r .= '?cat='.abs($row->post_id).'">- '.__($row->tag_cat_name).' ('.__('Category').') -';
1095
  else if ( $row->tax )
1096
  // tag
1097
+ $r .= '?tag='.$row->tag_cat_slug.'">- '.__($row->tag_cat_name).' ('.__('Tag').') -';
1098
  else if ( $row->post_id == 0 )
1099
  // homepage
1100
+ $r .= '">- '.__('Front page').' -';
1101
  else
1102
  // post/page
1103
+ $r .= '?p='.$row->post_id.'">'.($row->post ? __($row->post) : '---');
1104
  $r .= '</a>';
1105
 
1106
  $r .= ' <b>'.$row->count.'</b></li>'."\n";
1130
  if (is_array($strings))
1131
  foreach ( $strings as $s )
1132
  {
1133
+ $s = strtolower($s);
1134
  if (isset($c[$s]))
1135
  $c[$s]++;
1136
  else
geoip/GeoIP.dat CHANGED
Binary file
geoip/geoip.php CHANGED
@@ -26,11 +26,19 @@ function getCountry( $ip )
26
  $ip = "::$ip";
27
 
28
  $gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
29
- $c = strtolower(cpd_geoip_country_code_by_addr_v6($gi, $ip));
 
 
 
 
 
 
30
 
31
  if ( empty($c) )
 
32
  $c = 'unknown';
33
- $cname = cpd_geoip_country_name_by_addr_v6($gi, $ip);
 
34
  cpd_geoip_close($gi);
35
  $country = array( $c, '<div class="cpd-flag cpd-flag-'.$c.'" title="'.$cname.'"></div>', $cname );
36
  return $country;
26
  $ip = "::$ip";
27
 
28
  $gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
29
+
30
+ // if ( strpos($ip, 'u') !== false ) // 'unknow...'
31
+ if (filter_var($ip, FILTER_VALIDATE_IP))
32
+ {
33
+ $c = strtolower(cpd_geoip_country_code_by_addr_v6($gi, $ip));
34
+ $cname = cpd_geoip_country_name_by_addr_v6($gi, $ip);
35
+ }
36
 
37
  if ( empty($c) )
38
+ {
39
  $c = 'unknown';
40
+ $cname = '';
41
+ }
42
  cpd_geoip_close($gi);
43
  $country = array( $c, '<div class="cpd-flag cpd-flag-'.$c.'" title="'.$cname.'"></div>', $cname );
44
  return $country;
locale/cpd-az_AZ.po CHANGED
@@ -1,972 +1,1122 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Madat <translator.baku@gmail.com>\n"
8
- "Language-Team: Webmestre <translator.baku@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Azerbaijani\n"
14
- "X-Poedit-Country: AZERBAIJAN\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:49
23
- #@ cpd
24
- msgid "Options updated"
25
- msgstr "Opsiyalar yaddaşda saxlanılıb"
26
-
27
- #: counter-options.php:112
28
- #, php-format
29
- #@ cpd
30
- msgid "Database cleaned. %s rows deleted."
31
- msgstr "Məlumat bazası silinib. %s sətir silinib."
32
-
33
- #: counter-options.php:127
34
- #: counter-options.php:810
35
- #@ cpd
36
- msgid "UNINSTALL Count per Day"
37
- msgstr "DEİNSTALYASİYA Gündəlik Sayğac. "
38
-
39
- #: counter-options.php:132
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #, php-format
43
- #@ cpd
44
- msgid "Table %s deleted"
45
- msgstr "Cədvəl %s silinib"
46
-
47
- #: counter-options.php:135
48
- #@ cpd
49
- msgid "Options deleted"
50
- msgstr "Opsiyalar silinib"
51
-
52
- #: counter-options.php:316
53
- #: counter-options.php:796
54
- #@ cpd
55
- msgid "Uninstall"
56
- msgstr "Deinstalyasiya"
57
-
58
- #: counter-options.php:317
59
- #@ cpd
60
- msgid "Click here"
61
- msgstr "Bura basın"
62
-
63
- #: counter-options.php:317
64
- #@ cpd
65
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
- msgstr "deinstalyasiyanı bitirilməsi və \"Gündəlik Sayğac\" deaktivizasiya üçün. "
67
-
68
- #: counter-options.php:355
69
- #@ cpd
70
- msgid "Online time"
71
- msgstr "Onlayn vaxt"
72
-
73
- #: counter-options.php:356
74
- #@ cpd
75
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
- msgstr "Onlayn sayğac üçün saniyələr. \"İnstrumentlər panelində\" \"Onlayn qonaqlar \" üçün istifadə olunur."
77
-
78
- #: counter-options.php:359
79
- #@ cpd
80
- msgid "Logged on Users"
81
- msgstr "Daxil olmuş istifadəçilər"
82
-
83
- #: counter-options.php:361
84
- #@ cpd
85
- msgid "count too"
86
- msgstr "onu da saymaq"
87
-
88
- #: counter-options.php:373
89
- #@ cpd
90
- msgid "Auto counter"
91
- msgstr "Avtomatik sayğac"
92
-
93
- #: counter-options.php:374
94
- #@ cpd
95
- msgid "Counts automatically single-posts and pages, no changes on template needed."
96
- msgstr "Ayrica yazıları səhifələri avtomatik olaraq sayır, heç bir dəyişiklik etmək şablonda lazım olmayacaq."
97
-
98
- #: counter-options.php:377
99
- #@ cpd
100
- msgid "Bots to ignore"
101
- msgstr "Botları əhəmiyyət verməmək"
102
-
103
- #: counter-options.php:561
104
- #@ cpd
105
- msgid "Update options"
106
- msgstr "Opsiyaları yeniləşdirmək"
107
-
108
- #: counter-options.php:656
109
- #: counter-options.php:665
110
- #@ cpd
111
- msgid "Clean the database"
112
- msgstr "Məlumat bazasının silmək"
113
-
114
- #: counter-options.php:659
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 "\"Spam məlumatı \" silərək Siz sayğacını təmizləyə bilərsiniz. <br /> Əgər Siz köhnə \"spam məlumatının \" üstəndən yeni botlarını əlavə etsəniz, Siz məlumat bazasını qorura bilərsiniz. <br /> Burada Siz yenidən bot-filtrı yenidən qoşa bilərsiniz botun baş çəkməsini silə bilərsiniz."
118
-
119
- #: counter-options.php:799
120
- #@ cpd
121
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
- msgstr "Əgər \"Gündəlik sayğac \" aktivizasiya olunubsa, onda cədvəllər məlumat bazasında qorunacaqdır."
123
-
124
- #: counter-options.php:800
125
- #@ cpd
126
- msgid "Here you can delete the tables and disable \"Count per Day\"."
127
- msgstr "Siz burada \"Gündəlik sayğacı\" silə söndürə bilərsiniz."
128
-
129
- #: counter-options.php:803
130
- #@ cpd
131
- msgid "WARNING"
132
- msgstr "DİQQƏT"
133
-
134
- #: counter-options.php:804
135
- #@ cpd
136
- msgid "These tables (with ALL counter data) will be deleted."
137
- msgstr "Bu cədvəllər (Bütün sayğacın məlumatları ilə birlikdə) silinəcəkdirlər."
138
-
139
- #: counter-options.php:806
140
- #@ cpd
141
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
- msgstr " \"Gündəlin sayğac\" yenidən instalyasiya edildikdən sonra, sayğac 0-dan başlayır."
143
-
144
- #: counter-options.php:786
145
- #: counter-options.php:809
146
- #@ cpd
147
- msgid "Yes"
148
- msgstr "Bəli"
149
-
150
- #: counter-options.php:810
151
- #@ cpd
152
- msgid "You are sure to disable Count per Day and delete all data?"
153
- msgstr "Siz əminsiniz ki, \"Gündəlik sayğacı\" söndürmək bütün məlumatları silmək istəyirsiniz?"
154
-
155
- #: counter-core.php:754
156
- #: counter.php:1124
157
- #@ cpd
158
- msgid "Statistics"
159
- msgstr "Statistika"
160
-
161
- #: counter-core.php:723
162
- #: counter.php:160
163
- #: counter.php:1010
164
- #: counter.php:1202
165
- #@ cpd
166
- msgid "Total visitors"
167
- msgstr "Ümümi qonaqların sayı"
168
-
169
- #: counter.php:161
170
- #: counter.php:1208
171
- #@ cpd
172
- msgid "Visitors currently online"
173
- msgstr "İndi qonaqların sayı saytda "
174
-
175
- #: counter.php:162
176
- #: counter.php:1203
177
- #@ cpd
178
- msgid "Visitors today"
179
- msgstr "Qonaqlar sayı bu gün"
180
-
181
- #: counter.php:163
182
- #: counter.php:1204
183
- #@ cpd
184
- msgid "Visitors yesterday"
185
- msgstr "Qonaqların sayı dünən"
186
-
187
- #: counter.php:164
188
- #: counter.php:1205
189
- #@ cpd
190
- msgid "Visitors last week"
191
- msgstr "Qonaqların sayı keçən həftə"
192
-
193
- #: counter.php:167
194
- #: counter.php:825
195
- #: counter.php:1209
196
- #@ cpd
197
- msgid "Counter starts on"
198
- msgstr "Sayğac başlanır -dan"
199
-
200
- #: counter-core.php:729
201
- #: counter.php:166
202
- #: counter.php:263
203
- #: counter.php:1012
204
- #: counter.php:1207
205
- #: userperspan.php:34
206
- #@ cpd
207
- msgid "Visitors per day"
208
- msgstr "Gonaqlarn sayı gündə"
209
-
210
- #: counter-core.php:725
211
- #: counter.php:1206
212
- #@ cpd
213
- msgid "Visitors per month"
214
- msgstr "Qonaqların sayı ayda"
215
-
216
- #: counter-core.php:727
217
- #: counter-options.php:438
218
- #@ cpd
219
- msgid "Visitors per post"
220
- msgstr "Qonaqların sayı yazışa görə"
221
-
222
- #: counter-options.php:122
223
- #@ cpd
224
- msgid "Counter reseted."
225
- msgstr "Sayğac yenidən başlayıb"
226
-
227
- #: counter-options.php:403
228
- #@ default
229
- msgid "Dashboard"
230
- msgstr "Konsol"
231
-
232
- #: counter-options.php:439
233
- #: counter-options.php:443
234
- #@ cpd
235
- msgid "How many posts do you want to see on dashboard page?"
236
- msgstr "Konsol səhifəsində neçə yazı Siz görmək istiyardiniz?"
237
-
238
- #: counter-options.php:442
239
- #@ cpd
240
- msgid "Latest Counts - Posts"
241
- msgstr "Son sayğaclar - Yazılar"
242
-
243
- #: counter-options.php:446
244
- #@ cpd
245
- msgid "Latest Counts - Days"
246
- msgstr "Son sayğaclar - Günlər"
247
-
248
- #: counter-options.php:447
249
- #: counter-options.php:451
250
- #: counter-options.php:473
251
- #@ cpd
252
- msgid "How many days do you want look back?"
253
- msgstr "Necə gün əvvəl olan statistikanı görmək istiyərdiniz?"
254
-
255
- #: counter-options.php:450
256
- #@ cpd
257
- msgid "Chart - Days"
258
- msgstr "Cədvəl - Günlər"
259
-
260
- #: counter-options.php:454
261
- #@ cpd
262
- msgid "Chart - Height"
263
- msgstr "Cədvəl - Hündürlük"
264
-
265
- #: counter-options.php:455
266
- #@ cpd
267
- msgid "Height of the biggest bar"
268
- msgstr "Ən böyük olan sütunun hündürlüyü"
269
-
270
- #: counter-options.php:488
271
- #@ cpd
272
- msgid "Show in lists"
273
- msgstr "Siyahıda göstərmək"
274
-
275
- #: counter-options.php:489
276
- #@ cpd
277
- msgid "Show \"Reads per Post\" in a new column in post management views."
278
- msgstr "Yazılaşların idarəetməsində yeni sütunda \"Məlumatları oxumaq\" göstərmək."
279
-
280
- #: counter-options.php:777
281
- #: counter-options.php:787
282
- #@ cpd
283
- msgid "Reset the counter"
284
- msgstr "Sayğacı yenidən 0 qoymaq"
285
-
286
- #: counter-options.php:780
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 "Cədvəli təmizliyərək Siz sayğacı yenidən 0 qoya bilərsiniz. HAMSI 0!<br />Sizə hazırki məlumatlar lazımdırsan onda rezerv kopiyasını saxlayın!"
290
-
291
- #: counter.php:672
292
- #, php-format
293
- #@ cpd
294
- msgid "The %s most visited posts in last %s days:"
295
- msgstr "Son %s gün ərzində ən çox %s oxunan yazılar %s :"
296
-
297
- #: counter-core.php:575
298
- #: counter-options.php:341
299
- #: counter-options.php:565
300
- #@ default
301
- msgid "Settings"
302
- msgstr "Kökləmələr"
303
-
304
- #: counter.php:262
305
- #@ cpd
306
- msgid "Reads per day"
307
- msgstr "Gün ərzində oxunuş"
308
-
309
- #: counter-core.php:639
310
- #: counter-options.php:392
311
- #: counter.php:159
312
- #: counter.php:875
313
- #@ cpd
314
- msgid "Reads"
315
- msgstr "Oxumalar"
316
-
317
- #: counter.php:1196
318
- #@ cpd
319
- msgid "This post"
320
- msgstr "Bu yazı"
321
-
322
- #: counter-options.php:60
323
- #, php-format
324
- #@ cpd
325
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
- msgstr "Ölkələr yenilənib. %s-da <b>%s</b> yazılar ölkəsiz qalıblar"
327
-
328
- #: counter-options.php:65
329
- #@ cpd
330
- msgid "update next"
331
- msgstr "sonraki yeniləşdirmək"
332
-
333
- #: counter-options.php:102
334
- #, php-format
335
- #@ cpd
336
- msgid "Mass Bots cleaned. %s counts deleted."
337
- msgstr "Bot cədvəli təmizlənib. %s yazılar silinb."
338
-
339
- #: counter-options.php:362
340
- #@ cpd
341
- msgid "until User Level"
342
- msgstr "istifadəçi səviyyəsinə qədər"
343
-
344
- #: counter-options.php:381
345
- #@ cpd
346
- msgid "Anonymous IP"
347
- msgstr "Anonim IP"
348
-
349
- #: counter-options.php:459
350
- #@ cpd
351
- msgid "Countries"
352
- msgstr "Ölkələr"
353
-
354
- #: counter-options.php:460
355
- #@ cpd
356
- msgid "How many countries do you want to see on dashboard page?"
357
- msgstr "Siyahıda neçə ölkə görmək istiyərdiniz?"
358
-
359
- #: counter-options.php:497
360
- #@ cpd
361
- msgid "Start Values"
362
- msgstr "Başlanğıc məlumatlar"
363
-
364
- #: counter-options.php:501
365
- #@ cpd
366
- msgid "Here you can change the date of first count and add a start count."
367
- msgstr "Burada hesablama tarixini başlanğıc sayğacı əlavə edə bilərsiniz."
368
-
369
- #: counter-options.php:505
370
- #@ cpd
371
- msgid "Start date"
372
- msgstr "Başlanğıc tarix"
373
-
374
- #: counter-options.php:506
375
- #@ cpd
376
- msgid "Your old Counter starts at?"
377
- msgstr "Sizin köhnə Sayğacınız başlanır?"
378
-
379
- #: counter-options.php:509
380
- #: counter-options.php:513
381
- #@ cpd
382
- msgid "Start count"
383
- msgstr "Sayın başlanğıcı"
384
-
385
- #: counter-options.php:510
386
- #@ cpd
387
- msgid "Add this value to \"Total visitors\"."
388
- msgstr " \"Ümumi qonaqlar\"-ra dəyər əlavə etmək."
389
-
390
- #: counter-options.php:727
391
- #@ cpd
392
- msgid "GeoIP - Countries"
393
- msgstr "GeoIP - Ölkələr"
394
-
395
- #: counter-options.php:736
396
- #@ cpd
397
- msgid "Update old counter data"
398
- msgstr "Köhnə sayğacların məlumatlarını yeniləşdirmək"
399
-
400
- #: counter-options.php:748
401
- #@ cpd
402
- msgid "Update GeoIP database"
403
- msgstr "GeoIP məlumat bazasını yeniləşdirmək"
404
-
405
- #: counter-options.php:743
406
- #@ cpd
407
- msgid "Download a new version of GeoIP.dat file."
408
- msgstr "Yeni GeoIP.dat. versiya fayılını yükləmək."
409
-
410
- #: counter-options.php:753
411
- #@ cpd
412
- msgid "More informations about GeoIP"
413
- msgstr " GeoIP haqqında daha da çox məlumat"
414
-
415
- #: counter-options.php:580
416
- #: massbots.php:35
417
- #@ cpd
418
- msgid "Mass Bots"
419
- msgstr "Mümkün olan botlar"
420
-
421
- #: counter-options.php:584
422
- #, php-format
423
- #@ cpd
424
- msgid "Show all IPs with more than %s page views per day"
425
- msgstr "Gün ərzində %s daha çox olan baxışların bütün IP-lərini göstərmək"
426
-
427
- #: counter-options.php:585
428
- #: notes.php:71
429
- #: userperspan.php:44
430
- #@ cpd
431
- msgid "show"
432
- msgstr "göstərməkl"
433
-
434
- #: counter-options.php:593
435
- #@ cpd
436
- msgid "IP"
437
- msgstr "IP"
438
-
439
- #: counter-options.php:594
440
- #: notes.php:75
441
- #@ cpd
442
- #@ default
443
- msgid "Date"
444
- msgstr "Tarix"
445
-
446
- #: counter-options.php:595
447
- #@ cpd
448
- msgid "Client"
449
- msgstr "Müştəri"
450
-
451
- #: counter-options.php:596
452
- #@ cpd
453
- msgid "Views"
454
- msgstr "Baxış"
455
-
456
- #: counter-options.php:611
457
- #: counter-options.php:627
458
- #, php-format
459
- #@ cpd
460
- msgid "Delete these %s counts"
461
- msgstr "Bu %s sayğacları silmək"
462
-
463
- #: counter-options.php:714
464
- #@ cpd
465
- msgid "Support"
466
- msgstr "Dəstək"
467
-
468
- #: counter-core.php:689
469
- #, php-format
470
- #@ cpd
471
- msgid "Time for Count per Day: <code>%s</code>."
472
- msgstr " Count per Day üçün vaxt: <code>%s</code>"
473
-
474
- #: counter-core.php:690
475
- #@ cpd
476
- msgid "Bug? Problem? Question? Hint? Praise?"
477
- msgstr "Səhv? Problem? Sual? Məsləhət? Alqış?"
478
-
479
- #: counter-core.php:691
480
- #, php-format
481
- #@ cpd
482
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
483
- msgstr " <a href=\"%s\">plaginin səhifəsinidə</a> kommentariy yazın."
484
-
485
- #: counter.php:155
486
- #: counter.php:1197
487
- #@ cpd
488
- msgid "Total reads"
489
- msgstr "Ümumi oxunuş"
490
-
491
- #: counter.php:156
492
- #: counter.php:1198
493
- #@ cpd
494
- msgid "Reads today"
495
- msgstr "Bu günkü oxunuş"
496
-
497
- #: counter.php:157
498
- #: counter.php:1199
499
- #@ cpd
500
- msgid "Reads yesterday"
501
- msgstr "Dünənki oxunuş"
502
-
503
- #: counter.php:788
504
- #: notes.php:42
505
- #: notes.php:76
506
- #@ cpd
507
- msgid "Notes"
508
- msgstr "Qeydlər"
509
-
510
- #: counter.php:786
511
- #@ default
512
- msgid "Show"
513
- msgstr "Göstərmək"
514
-
515
- #: counter.php:821
516
- #@ cpd
517
- msgid "Other"
518
- msgstr "Digər"
519
-
520
- #: counter.php:976
521
- #@ default
522
- msgid "Edit Post"
523
- msgstr "Yazışı redaktə etmək"
524
-
525
- #: counter.php:991
526
- #: massbots.php:52
527
- #: userperspan.php:63
528
- #@ default
529
- msgid "Front page displays"
530
- msgstr "Əsas səhifənin göstərişi"
531
-
532
- #: counter-core.php:733
533
- #: counter-options.php:464
534
- #@ cpd
535
- msgid "Browsers"
536
- msgstr "Brauzerlər"
537
-
538
- #: counter-core.php:728
539
- #@ cpd
540
- msgid "Latest Counts"
541
- msgstr "Yaxında keçirilmiş hesablamalar"
542
-
543
- #: counter-core.php:730
544
- #@ default
545
- msgid "Plugin"
546
- msgstr "Plagin"
547
-
548
- #: counter-core.php:738
549
- #@ cpd
550
- msgid "Reads per Country"
551
- msgstr "Ölkələr üzrə oxunuşlar"
552
-
553
- #: counter.php:353
554
- #: counter.php:1041
555
- #@ cpd
556
- msgid "Map"
557
- msgstr "Xəritə"
558
-
559
- #: geoip/geoip.php:93
560
- #@ cpd
561
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
562
- msgstr "Bağışlayın, lazım olna funksiyalar (zlib) quraşdırılmayıb yaxud php.ini.-yə daxil olmayıb"
563
-
564
- #: geoip/geoip.php:117
565
- #@ cpd
566
- msgid "New GeoIP database installed."
567
- msgstr "GeoIP-nin yeni məlumat bazası quraşdırılıb."
568
-
569
- #: geoip/geoip.php:119
570
- #@ cpd
571
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
572
- msgstr "Bağışlayin. səhv oldu. Yenidən sınayın yaxud \"geoip\" - 777 papkasına keçidi yoxlayın."
573
-
574
- #: notes.php:77
575
- #@ default
576
- msgid "Action"
577
- msgstr "Hərəkət"
578
-
579
- #: notes.php:82
580
- #@ cpd
581
- msgid "add"
582
- msgstr "əlavə etmək"
583
-
584
- #: notes.php:98
585
- #@ cpd
586
- msgid "save"
587
- msgstr "yaddaşda saxlamaq"
588
-
589
- #: notes.php:99
590
- #@ cpd
591
- msgid "delete"
592
- msgstr "silmək"
593
-
594
- #: notes.php:110
595
- #@ cpd
596
- msgid "edit"
597
- msgstr "redaktə etmək"
598
-
599
- #: counter-options.php:385
600
- #@ cpd
601
- msgid "Cache"
602
- msgstr "Keş"
603
-
604
- #: counter-options.php:386
605
- #@ cpd
606
- msgid "I use a cache plugin. Count these visits with ajax."
607
- msgstr "Mən keş olan plagindən istifadə edirəm. Ajax vasitəsi ilə bu gəlişləri saymaq."
608
-
609
- #: counter-options.php:465
610
- #@ cpd
611
- msgid "Substring of the user agent, separated by comma"
612
- msgstr "İstifadəçinin agentinin sətir altı vergül ilə bölünüb"
613
-
614
- #: counter-options.php:554
615
- #@ cpd
616
- msgid "Debug mode"
617
- msgstr "Düzəliş rejimi"
618
-
619
- #: counter-options.php:556
620
- #@ cpd
621
- msgid "Show debug informations at the bottom of all pages."
622
- msgstr "Hər səhifənin sonunda düzəliş məlıumatını əlavə etmək."
623
-
624
- #: counter-core.php:739
625
- #@ cpd
626
- msgid "Visitors per Country"
627
- msgstr "Ölkə üzrə gəlişlər"
628
-
629
- #: userperspan.php:38
630
- #@ cpd
631
- msgid "Start"
632
- msgstr "Başlamaq"
633
-
634
- #: userperspan.php:40
635
- #@ cpd
636
- msgid "End"
637
- msgstr "Son"
638
-
639
- #: userperspan.php:42
640
- #@ cpd
641
- msgid "PostID"
642
- msgstr "ID məlumatlar"
643
-
644
- #: counter-options.php:514
645
- #@ cpd
646
- msgid "Add this value to \"Total reads\"."
647
- msgstr "\"Ümumi oxunuşlar\" -ra dəyərini əlavə etmək."
648
-
649
- #: counter-options.php:730
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 "Siz IP adreslərini yoxluyaraq bütün yazılar üçün ölkələr üçün məlumatları ala yenidən bilərsiniz. Bir az vaxt tuta bilər!"
653
-
654
- #: userperspan.php:50
655
- #@ cpd
656
- msgid "no data found"
657
- msgstr "heç bir məlumat tapılmayıb"
658
-
659
- #: counter-options.php:351
660
- #@ cpd
661
- msgid "Counter"
662
- msgstr "Sayğac"
663
-
664
- #: counter-options.php:389
665
- #@ cpd
666
- msgid "Clients and referrers"
667
- msgstr "Müştərilər və istinad olan saytlar"
668
-
669
- #: counter-options.php:392
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 "Yaddaşda saxlamaq və müştəriləri və istenad olan saytlarını göstərmək. <br />Məlumat bazasında daha da çox həcm tələb edir, lakin gələn qonaqlar barəsində daha da ətraflı məlumat verir."
673
-
674
- #: counter-options.php:476
675
- #@ cpd
676
- msgid "Local URLs"
677
- msgstr "Lokal URL"
678
-
679
- #: counter-options.php:477
680
- #@ cpd
681
- msgid "Show local referrers too."
682
- msgstr "Lokal keçidləri də göstərmək."
683
-
684
- #: counter-options.php:485
685
- #@ default
686
- msgid "Posts"
687
- msgstr "Yazılar"
688
-
689
- #: counter-options.php:485
690
- #@ default
691
- msgid "Pages"
692
- msgstr "Səhifələr"
693
-
694
- #: counter.php:158
695
- #: counter.php:1200
696
- #@ cpd
697
- msgid "Reads last week"
698
- msgstr "Ötən həftənin oxunuşları"
699
-
700
- #: counter.php:985
701
- #@ default
702
- msgid "Category"
703
- msgstr "Kateqoriyalar"
704
-
705
- #: counter.php:988
706
- #@ default
707
- msgid "Tag"
708
- msgstr "Teq"
709
-
710
- #: counter-core.php:692
711
- #@ default
712
- msgid "License"
713
- msgstr "Lisenziya"
714
-
715
- #: counter-core.php:726
716
- #: counter.php:1201
717
- #@ cpd
718
- msgid "Reads per month"
719
- msgstr "Ay ərzində oxunuşlar"
720
-
721
- #: counter-core.php:734
722
- #@ cpd
723
- msgid "Referrer"
724
- msgstr "İstinad olunan sayt"
725
-
726
- #: counter-options.php:468
727
- #@ cpd
728
- msgid "Referrers - Entries"
729
- msgstr "İstenad olan saytlar - Girişlər"
730
-
731
- #: counter-options.php:469
732
- #@ cpd
733
- msgid "How many referrers do you want to see on dashboard page?"
734
- msgstr "Statistika səhifəsində neçə istenad olan saytları Siz görmək istiyərdiniz?"
735
-
736
- #: counter-options.php:472
737
- #@ cpd
738
- msgid "Referrers - Days"
739
- msgstr "İstenad olan saytlar - Günlər"
740
-
741
- #: counter.php:845
742
- #, php-format
743
- #@ cpd
744
- msgid "The %s referrers in last %s days:"
745
- msgstr "%s istenad olan saytlar son %s günlər:"
746
-
747
- #: counter-core.php:724
748
- #@ cpd
749
- msgid "Visitors online"
750
- msgstr "Qonaq onlayn"
751
-
752
- #: counter.php:1220
753
- #@ default
754
- msgid "Title"
755
- msgstr "Başlıq"
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 &gt; 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
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.2.10\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-05-08 08:13:03+0000\n"
7
+ "Last-Translator: Madat <translator.baku@gmail.com>\n"
8
+ "Language-Team: Webmestre <translator.baku@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Azerbaijani\n"
15
+ "X-Poedit-Country: AZERBAIJAN\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #: counter-options.php:52
24
+ #@ cpd
25
+ msgid "Options updated"
26
+ msgstr "Opsiyalar yaddaşda saxlanılıb"
27
+
28
+ #: counter-options.php:113
29
+ #, php-format
30
+ #@ cpd
31
+ msgid "Database cleaned. %s rows deleted."
32
+ msgstr "Məlumat bazası silinib. %s sətir silinib."
33
+
34
+ #: counter-options.php:128
35
+ #: counter-options.php:719
36
+ #@ cpd
37
+ msgid "UNINSTALL Count per Day"
38
+ msgstr "DEİNSTALYASİYA Gündəlik Sayğac. "
39
+
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
+ #: counter-options.php:135
43
+ #, php-format
44
+ #@ cpd
45
+ msgid "Table %s deleted"
46
+ msgstr "Cədvəl %s silinib"
47
+
48
+ #: counter-options.php:136
49
+ #@ cpd
50
+ msgid "Options deleted"
51
+ msgstr "Opsiyalar silinib"
52
+
53
+ #: counter-options.php:377
54
+ #: counter-options.php:705
55
+ #@ cpd
56
+ msgid "Uninstall"
57
+ msgstr "Deinstalyasiya"
58
+
59
+ #: counter-options.php:378
60
+ #@ cpd
61
+ msgid "Click here"
62
+ msgstr "Bura basın"
63
+
64
+ #: counter-options.php:378
65
+ #@ cpd
66
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
+ msgstr "deinstalyasiyanı bitirilməsi və \"Gündəlik Sayğac\" deaktivizasiya üçün. "
68
+
69
+ #: counter-options.php:752
70
+ #@ cpd
71
+ msgid "Online time"
72
+ msgstr "Onlayn vaxt"
73
+
74
+ #: counter-options.php:753
75
+ #@ cpd
76
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
+ msgstr "Onlayn sayğac üçün saniyələr. \"İnstrumentlər panelində\" \"Onlayn qonaqlar \" üçün istifadə olunur."
78
+
79
+ #: counter-options.php:756
80
+ #@ cpd
81
+ msgid "Logged on Users"
82
+ msgstr "Daxil olmuş istifadəçilər"
83
+
84
+ #: counter-options.php:758
85
+ #@ cpd
86
+ msgid "count too"
87
+ msgstr "onu da saymaq"
88
+
89
+ #: counter-options.php:770
90
+ #@ cpd
91
+ msgid "Auto counter"
92
+ msgstr "Avtomatik sayğac"
93
+
94
+ #: counter-options.php:771
95
+ #@ cpd
96
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
97
+ msgstr "Ayrica yazıları və səhifələri avtomatik olaraq sayır, heç bir dəyişiklik etmək şablonda lazım olmayacaq."
98
+
99
+ #: counter-options.php:774
100
+ #@ cpd
101
+ msgid "Bots to ignore"
102
+ msgstr "Botları əhəmiyyət verməmək"
103
+
104
+ #: counter-options.php:952
105
+ #@ cpd
106
+ msgid "Update options"
107
+ msgstr "Opsiyaları yeniləşdirmək"
108
+
109
+ #: counter-options.php:553
110
+ #: counter-options.php:561
111
+ #@ cpd
112
+ msgid "Clean the database"
113
+ msgstr "Məlumat bazasının silmək"
114
+
115
+ #: counter-options.php:557
116
+ #@ cpd
117
+ 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."
118
+ msgstr "\"Spam məlumatı \" silərək Siz sayğacını təmizləyə bilərsiniz. <br /> Əgər Siz köhnə \"spam məlumatının \" üstəndən yeni botlarını əlavə etsəniz, Siz məlumat bazasını qorura bilərsiniz. <br /> Burada Siz yenidən bot-filtrı yenidən qoşa bilərsiniz və botun baş çəkməsini silə bilərsiniz."
119
+
120
+ #: counter-options.php:708
121
+ #@ cpd
122
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
+ msgstr "Əgər \"Gündəlik sayğac \" aktivizasiya olunubsa, onda cədvəllər məlumat bazasında qorunacaqdır."
124
+
125
+ #: counter-options.php:709
126
+ #@ cpd
127
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
128
+ msgstr "Siz burada \"Gündəlik sayğacı\" silə və söndürə bilərsiniz."
129
+
130
+ #: counter-options.php:712
131
+ #@ cpd
132
+ msgid "WARNING"
133
+ msgstr "DİQQƏT"
134
+
135
+ #: counter-options.php:713
136
+ #@ cpd
137
+ msgid "These tables (with ALL counter data) will be deleted."
138
+ msgstr "Bu cədvəllər (Bütün sayğacın məlumatları ilə birlikdə) silinəcəkdirlər."
139
+
140
+ #: counter-options.php:715
141
+ #@ cpd
142
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
+ msgstr " \"Gündəlin sayğac\" yenidən instalyasiya edildikdən sonra, sayğac 0-dan başlayır."
144
+
145
+ #: counter-options.php:695
146
+ #: counter-options.php:718
147
+ #@ cpd
148
+ msgid "Yes"
149
+ msgstr "Bəli"
150
+
151
+ #: counter-options.php:719
152
+ #@ cpd
153
+ msgid "You are sure to disable Count per Day and delete all data?"
154
+ msgstr "Siz əminsiniz ki, \"Gündəlik sayğacı\" söndürmək və bütün məlumatları silmək istəyirsiniz?"
155
+
156
+ #: counter-core.php:820
157
+ #: counter.php:1283
158
+ #@ cpd
159
+ msgid "Statistics"
160
+ msgstr "Statistika"
161
+
162
+ #: counter-core.php:788
163
+ #: counter.php:223
164
+ #: counter.php:1167
165
+ #: counter.php:1361
166
+ #@ cpd
167
+ msgid "Total visitors"
168
+ msgstr "Ümümi qonaqların sayı"
169
+
170
+ #: counter.php:224
171
+ #: counter.php:1367
172
+ #@ cpd
173
+ msgid "Visitors currently online"
174
+ msgstr "İndi qonaqların sayı saytda "
175
+
176
+ #: counter.php:225
177
+ #: counter.php:1362
178
+ #@ cpd
179
+ msgid "Visitors today"
180
+ msgstr "Qonaqlar sayı bu gün"
181
+
182
+ #: counter.php:226
183
+ #: counter.php:1363
184
+ #@ cpd
185
+ msgid "Visitors yesterday"
186
+ msgstr "Qonaqların sayı dünən"
187
+
188
+ #: counter.php:227
189
+ #: counter.php:1364
190
+ #@ cpd
191
+ msgid "Visitors last week"
192
+ msgstr "Qonaqların sayı keçən həftə"
193
+
194
+ #: counter.php:230
195
+ #: counter.php:924
196
+ #: counter.php:1368
197
+ #@ cpd
198
+ msgid "Counter starts on"
199
+ msgstr "Sayğac başlanır -dan"
200
+
201
+ #: counter-core.php:794
202
+ #: counter.php:229
203
+ #: counter.php:328
204
+ #: counter.php:1169
205
+ #: counter.php:1366
206
+ #: userperspan.php:46
207
+ #@ cpd
208
+ msgid "Visitors per day"
209
+ msgstr "Gonaqlarn sayı gündə"
210
+
211
+ #: counter-core.php:790
212
+ #: counter.php:1365
213
+ #@ cpd
214
+ msgid "Visitors per month"
215
+ msgstr "Qonaqların sayı ayda"
216
+
217
+ #: counter-core.php:792
218
+ #: counter-options.php:834
219
+ #@ cpd
220
+ msgid "Visitors per post"
221
+ msgstr "Qonaqların sayı yazışa görə"
222
+
223
+ #: counter-options.php:123
224
+ #@ cpd
225
+ msgid "Counter reseted."
226
+ msgstr "Sayğac yenidən başlayıb"
227
+
228
+ #: counter-options.php:799
229
+ #@ default
230
+ msgid "Dashboard"
231
+ msgstr "Konsol"
232
+
233
+ #: counter-options.php:835
234
+ #: counter-options.php:839
235
+ #@ cpd
236
+ msgid "How many posts do you want to see on dashboard page?"
237
+ msgstr "Konsol səhifəsində neçə yazı Siz görmək istiyardiniz?"
238
+
239
+ #: counter-options.php:838
240
+ #@ cpd
241
+ msgid "Latest Counts - Posts"
242
+ msgstr "Son sayğaclar - Yazılar"
243
+
244
+ #: counter-options.php:842
245
+ #@ cpd
246
+ msgid "Latest Counts - Days"
247
+ msgstr "Son sayğaclar - Günlər"
248
+
249
+ #: counter-options.php:843
250
+ #: counter-options.php:847
251
+ #: counter-options.php:869
252
+ #@ cpd
253
+ msgid "How many days do you want look back?"
254
+ msgstr "Necə gün əvvəl olan statistikanı görmək istiyərdiniz?"
255
+
256
+ #: counter-options.php:846
257
+ #@ cpd
258
+ msgid "Chart - Days"
259
+ msgstr "Cədvəl - Günlər"
260
+
261
+ #: counter-options.php:850
262
+ #@ cpd
263
+ msgid "Chart - Height"
264
+ msgstr "Cədvəl - Hündürlük"
265
+
266
+ #: counter-options.php:851
267
+ #@ cpd
268
+ msgid "Height of the biggest bar"
269
+ msgstr "Ən böyük olan sütunun hündürlüyü"
270
+
271
+ #: counter-options.php:883
272
+ #@ cpd
273
+ msgid "Show in lists"
274
+ msgstr "Siyahıda göstərmək"
275
+
276
+ #: counter-options.php:884
277
+ #@ cpd
278
+ msgid "Show \"Reads per Post\" in a new column in post management views."
279
+ msgstr "Yazılaşların idarəetməsində yeni sütunda \"Məlumatları oxumaq\" göstərmək."
280
+
281
+ #: counter-options.php:686
282
+ #: counter-options.php:696
283
+ #@ cpd
284
+ msgid "Reset the counter"
285
+ msgstr "Sayğacı yenidən 0 qoymaq"
286
+
287
+ #: counter-options.php:689
288
+ #@ cpd
289
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
290
+ msgstr "Cədvəli təmizliyərək Siz sayğacı yenidən 0 qoya bilərsiniz. HAMSI 0!<br />Sizə hazırki məlumatlar lazımdırsan onda rezerv kopiyasını saxlayın!"
291
+
292
+ #: counter.php:756
293
+ #, php-format
294
+ #@ cpd
295
+ msgid "The %s most visited posts in last %s days:"
296
+ msgstr "Son %s gün ərzində ən çox %s oxunan yazılar %s :"
297
+
298
+ #: counter-core.php:652
299
+ #: counter-options.php:401
300
+ #: counter-options.php:740
301
+ #@ default
302
+ msgid "Settings"
303
+ msgstr "Kökləmələr"
304
+
305
+ #: counter.php:327
306
+ #@ cpd
307
+ msgid "Reads per day"
308
+ msgstr "Gün ərzində oxunuş"
309
+
310
+ #: counter-core.php:1464
311
+ #: counter-options.php:789
312
+ #: counter.php:222
313
+ #: counter.php:974
314
+ #@ cpd
315
+ msgid "Reads"
316
+ msgstr "Oxumalar"
317
+
318
+ #: counter.php:1355
319
+ #@ cpd
320
+ msgid "This post"
321
+ msgstr "Bu yazı"
322
+
323
+ #: counter-options.php:63
324
+ #, php-format
325
+ #@ cpd
326
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
327
+ msgstr "Ölkələr yenilənib. %s-da <b>%s</b> yazılar ölkəsiz qalıblar"
328
+
329
+ #: counter-options.php:66
330
+ #@ cpd
331
+ msgid "update next"
332
+ msgstr "sonraki yeniləşdirmək"
333
+
334
+ #: counter-options.php:106
335
+ #, php-format
336
+ #@ cpd
337
+ msgid "Mass Bots cleaned. %s counts deleted."
338
+ msgstr "Bot cədvəli təmizlənib. %s yazılar silinb."
339
+
340
+ #: counter-options.php:759
341
+ #@ cpd
342
+ msgid "until User Level"
343
+ msgstr "istifadəçi səviyyəsinə qədər"
344
+
345
+ #: counter-options.php:778
346
+ #@ cpd
347
+ msgid "Anonymous IP"
348
+ msgstr "Anonim IP"
349
+
350
+ #: counter-options.php:855
351
+ #@ cpd
352
+ msgid "Countries"
353
+ msgstr "Ölkələr"
354
+
355
+ #: counter-options.php:856
356
+ #@ cpd
357
+ msgid "How many countries do you want to see on dashboard page?"
358
+ msgstr "Siyahıda neçə ölkə görmək istiyərdiniz?"
359
+
360
+ #: counter-options.php:891
361
+ #@ cpd
362
+ msgid "Start Values"
363
+ msgstr "Başlanğıc məlumatlar"
364
+
365
+ #: counter-options.php:895
366
+ #@ cpd
367
+ msgid "Here you can change the date of first count and add a start count."
368
+ msgstr "Burada hesablama tarixini və başlanğıc sayğacı əlavə edə bilərsiniz."
369
+
370
+ #: counter-options.php:899
371
+ #@ cpd
372
+ msgid "Start date"
373
+ msgstr "Başlanğıc tarix"
374
+
375
+ #: counter-options.php:900
376
+ #@ cpd
377
+ msgid "Your old Counter starts at?"
378
+ msgstr "Sizin köhnə Sayğacınız başlanır?"
379
+
380
+ #: counter-options.php:903
381
+ #: counter-options.php:907
382
+ #@ cpd
383
+ msgid "Start count"
384
+ msgstr "Sayın başlanğıcı"
385
+
386
+ #: counter-options.php:904
387
+ #@ cpd
388
+ msgid "Add this value to \"Total visitors\"."
389
+ msgstr " \"Ümumi qonaqlar\"-ra dəyər əlavə etmək."
390
+
391
+ #: counter-options.php:636
392
+ #@ cpd
393
+ msgid "GeoIP - Countries"
394
+ msgstr "GeoIP - Ölkələr"
395
+
396
+ #: counter-options.php:645
397
+ #@ cpd
398
+ msgid "Update old counter data"
399
+ msgstr "Köhnə sayğacların məlumatlarını yeniləşdirmək"
400
+
401
+ #: counter-options.php:657
402
+ #@ cpd
403
+ msgid "Update GeoIP database"
404
+ msgstr "GeoIP məlumat bazasını yeniləşdirmək"
405
+
406
+ #: counter-options.php:652
407
+ #@ cpd
408
+ msgid "Download a new version of GeoIP.dat file."
409
+ msgstr "Yeni GeoIP.dat. versiya fayılını yükləmək."
410
+
411
+ #: counter-options.php:662
412
+ #@ cpd
413
+ msgid "More informations about GeoIP"
414
+ msgstr " GeoIP haqqında daha da çox məlumat"
415
+
416
+ #: counter-options.php:417
417
+ #: massbots.php:46
418
+ #@ cpd
419
+ msgid "Mass Bots"
420
+ msgstr "Mümkün olan botlar"
421
+
422
+ #: counter-options.php:421
423
+ #, php-format
424
+ #@ cpd
425
+ msgid "Show all IPs with more than %s page views per day"
426
+ msgstr "Gün ərzində %s daha çox olan baxışların bütün IP-lərini göstərmək"
427
+
428
+ #: counter-options.php:422
429
+ #: notes.php:84
430
+ #: userperspan.php:56
431
+ #@ cpd
432
+ msgid "show"
433
+ msgstr "göstərməkl"
434
+
435
+ #: counter-options.php:430
436
+ #@ cpd
437
+ msgid "IP"
438
+ msgstr "IP"
439
+
440
+ #: counter-options.php:431
441
+ #: notes.php:88
442
+ #@ cpd
443
+ #@ default
444
+ msgid "Date"
445
+ msgstr "Tarix"
446
+
447
+ #: counter-options.php:432
448
+ #@ cpd
449
+ msgid "Client"
450
+ msgstr "Müştəri"
451
+
452
+ #: counter-options.php:433
453
+ #@ cpd
454
+ msgid "Views"
455
+ msgstr "Baxış"
456
+
457
+ #: counter-options.php:448
458
+ #: counter-options.php:464
459
+ #, php-format
460
+ #@ cpd
461
+ msgid "Delete these %s counts"
462
+ msgstr "Bu %s sayğacları silmək"
463
+
464
+ #: counter-options.php:727
465
+ #@ cpd
466
+ msgid "Support"
467
+ msgstr "Dəstək"
468
+
469
+ #: counter-core.php:753
470
+ #, php-format
471
+ #@ cpd
472
+ msgid "Time for Count per Day: <code>%s</code>."
473
+ msgstr " Count per Day üçün vaxt: <code>%s</code>"
474
+
475
+ #: counter-core.php:754
476
+ #@ cpd
477
+ msgid "Bug? Problem? Question? Hint? Praise?"
478
+ msgstr "Səhv? Problem? Sual? Məsləhət? Alqış?"
479
+
480
+ #: counter-core.php:755
481
+ #, php-format
482
+ #@ cpd
483
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
484
+ msgstr " <a href=\"%s\">plaginin səhifəsinidə</a> kommentariy yazın."
485
+
486
+ #: counter.php:218
487
+ #: counter.php:1356
488
+ #@ cpd
489
+ msgid "Total reads"
490
+ msgstr "Ümumi oxunuş"
491
+
492
+ #: counter.php:219
493
+ #: counter.php:1357
494
+ #@ cpd
495
+ msgid "Reads today"
496
+ msgstr "Bu günkü oxunuş"
497
+
498
+ #: counter.php:220
499
+ #: counter.php:1358
500
+ #@ cpd
501
+ msgid "Reads yesterday"
502
+ msgstr "Dünənki oxunuş"
503
+
504
+ #: counter.php:875
505
+ #: notes.php:55
506
+ #: notes.php:89
507
+ #@ cpd
508
+ msgid "Notes"
509
+ msgstr "Qeydlər"
510
+
511
+ #: counter.php:873
512
+ #@ default
513
+ msgid "Show"
514
+ msgstr "Göstərmək"
515
+
516
+ #: counter.php:913
517
+ #@ cpd
518
+ msgid "Other"
519
+ msgstr "Digər"
520
+
521
+ #: counter.php:1085
522
+ #@ default
523
+ msgid "Edit Post"
524
+ msgstr "Yazışı redaktə etmək"
525
+
526
+ #: massbots.php:63
527
+ #: userperspan.php:75
528
+ #@ default
529
+ msgid "Front page displays"
530
+ msgstr "Əsas səhifənin göstərişi"
531
+
532
+ #: counter-core.php:799
533
+ #: counter-options.php:860
534
+ #@ cpd
535
+ msgid "Browsers"
536
+ msgstr "Brauzerlər"
537
+
538
+ #: counter-core.php:793
539
+ #@ cpd
540
+ msgid "Latest Counts"
541
+ msgstr "Yaxında keçirilmiş hesablamalar"
542
+
543
+ #: counter-core.php:796
544
+ #@ default
545
+ msgid "Plugin"
546
+ msgstr "Plagin"
547
+
548
+ #: counter-core.php:804
549
+ #@ cpd
550
+ msgid "Reads per Country"
551
+ msgstr "Ölkələr üzrə oxunuşlar"
552
+
553
+ #: counter.php:418
554
+ #: counter.php:1198
555
+ #@ cpd
556
+ msgid "Map"
557
+ msgstr "Xəritə"
558
+
559
+ #: geoip/geoip.php:117
560
+ #@ cpd
561
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
562
+ msgstr "Bağışlayın, lazım olna funksiyalar (zlib) quraşdırılmayıb yaxud php.ini.-yə daxil olmayıb"
563
+
564
+ #: geoip/geoip.php:142
565
+ #@ cpd
566
+ msgid "New GeoIP database installed."
567
+ msgstr "GeoIP-nin yeni məlumat bazası quraşdırılıb."
568
+
569
+ #: geoip/geoip.php:144
570
+ #@ cpd
571
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
572
+ msgstr "Bağışlayin. səhv oldu. Yenidən sınayın yaxud \"geoip\" - 777 papkasına keçidi yoxlayın."
573
+
574
+ #: notes.php:90
575
+ #@ default
576
+ msgid "Action"
577
+ msgstr "Hərəkət"
578
+
579
+ #: notes.php:95
580
+ #@ cpd
581
+ msgid "add"
582
+ msgstr "əlavə etmək"
583
+
584
+ #: notes.php:111
585
+ #@ cpd
586
+ msgid "save"
587
+ msgstr "yaddaşda saxlamaq"
588
+
589
+ #: notes.php:112
590
+ #@ cpd
591
+ msgid "delete"
592
+ msgstr "silmək"
593
+
594
+ #: notes.php:123
595
+ #@ cpd
596
+ msgid "edit"
597
+ msgstr "redaktə etmək"
598
+
599
+ #: counter-options.php:782
600
+ #@ cpd
601
+ msgid "Cache"
602
+ msgstr "Keş"
603
+
604
+ #: counter-options.php:783
605
+ #@ cpd
606
+ msgid "I use a cache plugin. Count these visits with ajax."
607
+ msgstr "Mən keş olan plagindən istifadə edirəm. Ajax vasitəsi ilə bu gəlişləri saymaq."
608
+
609
+ #: counter-options.php:861
610
+ #@ cpd
611
+ msgid "Substring of the user agent, separated by comma"
612
+ msgstr "İstifadəçinin agentinin sətir altı vergül ilə bölünüb"
613
+
614
+ #: counter-options.php:945
615
+ #@ cpd
616
+ msgid "Debug mode"
617
+ msgstr "Düzəliş rejimi"
618
+
619
+ #: counter-options.php:947
620
+ #@ cpd
621
+ msgid "Show debug informations at the bottom of all pages."
622
+ msgstr "Hər səhifənin sonunda düzəliş məlıumatını əlavə etmək."
623
+
624
+ #: counter-core.php:805
625
+ #@ cpd
626
+ msgid "Visitors per Country"
627
+ msgstr "Ölkə üzrə gəlişlər"
628
+
629
+ #: userperspan.php:50
630
+ #@ cpd
631
+ msgid "Start"
632
+ msgstr "Başlamaq"
633
+
634
+ #: userperspan.php:52
635
+ #@ cpd
636
+ msgid "End"
637
+ msgstr "Son"
638
+
639
+ #: userperspan.php:54
640
+ #@ cpd
641
+ msgid "PostID"
642
+ msgstr "ID məlumatlar"
643
+
644
+ #: counter-options.php:908
645
+ #@ cpd
646
+ msgid "Add this value to \"Total reads\"."
647
+ msgstr "\"Ümumi oxunuşlar\" -ra dəyərini əlavə etmək."
648
+
649
+ #: counter-options.php:639
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 "Siz IP adreslərini yoxluyaraq bütün yazılar üçün ölkələr üçün məlumatları ala yenidən bilərsiniz. Bir az vaxt tuta bilər!"
653
+
654
+ #: userperspan.php:62
655
+ #@ cpd
656
+ msgid "no data found"
657
+ msgstr "heç bir məlumat tapılmayıb"
658
+
659
+ #: counter-options.php:748
660
+ #@ cpd
661
+ msgid "Counter"
662
+ msgstr "Sayğac"
663
+
664
+ #: counter-options.php:786
665
+ #@ cpd
666
+ msgid "Clients and referrers"
667
+ msgstr "Müştərilər və istinad olan saytlar"
668
+
669
+ #: counter-options.php:789
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 "Yaddaşda saxlamaq və müştəriləri və istenad olan saytlarını göstərmək. <br />Məlumat bazasında daha da çox həcm tələb edir, lakin gələn qonaqlar barəsində daha da ətraflı məlumat verir."
673
+
674
+ #: counter-options.php:872
675
+ #@ cpd
676
+ msgid "Local URLs"
677
+ msgstr "Lokal URL"
678
+
679
+ #: counter-options.php:873
680
+ #@ cpd
681
+ msgid "Show local referrers too."
682
+ msgstr "Lokal keçidləri də göstərmək."
683
+
684
+ #: counter-options.php:880
685
+ #@ default
686
+ msgid "Posts"
687
+ msgstr "Yazılar"
688
+
689
+ #: counter-options.php:880
690
+ #@ default
691
+ msgid "Pages"
692
+ msgstr "Səhifələr"
693
+
694
+ #: counter.php:221
695
+ #: counter.php:1359
696
+ #@ cpd
697
+ msgid "Reads last week"
698
+ msgstr "Ötən həftənin oxunuşları"
699
+
700
+ #: counter.php:1094
701
+ #@ default
702
+ msgid "Category"
703
+ msgstr "Kateqoriyalar"
704
+
705
+ #: counter.php:1097
706
+ #@ default
707
+ msgid "Tag"
708
+ msgstr "Teq"
709
+
710
+ #: counter-core.php:756
711
+ #@ default
712
+ msgid "License"
713
+ msgstr "Lisenziya"
714
+
715
+ #: counter-core.php:791
716
+ #: counter.php:1360
717
+ #@ cpd
718
+ msgid "Reads per month"
719
+ msgstr "Ay ərzində oxunuşlar"
720
+
721
+ #: counter-core.php:800
722
+ #@ cpd
723
+ msgid "Referrer"
724
+ msgstr "İstinad olunan sayt"
725
+
726
+ #: counter-options.php:864
727
+ #@ cpd
728
+ msgid "Referrers - Entries"
729
+ msgstr "İstenad olan saytlar - Girişlər"
730
+
731
+ #: counter-options.php:865
732
+ #@ cpd
733
+ msgid "How many referrers do you want to see on dashboard page?"
734
+ msgstr "Statistika səhifəsində neçə istenad olan saytları Siz görmək istiyərdiniz?"
735
+
736
+ #: counter-options.php:868
737
+ #@ cpd
738
+ msgid "Referrers - Days"
739
+ msgstr "İstenad olan saytlar - Günlər"
740
+
741
+ #: counter.php:944
742
+ #, php-format
743
+ #@ cpd
744
+ msgid "The %s referrers in last %s days:"
745
+ msgstr "%s istenad olan saytlar son %s günlər:"
746
+
747
+ #: counter-core.php:789
748
+ #@ cpd
749
+ msgid "Visitors online"
750
+ msgstr "Qonaq onlayn"
751
+
752
+ #: counter.php:1380
753
+ #@ default
754
+ msgid "Title"
755
+ msgstr "Başlıq"
756
+
757
+ #: counter-core.php:259
758
+ #, php-format
759
+ #@ cpd
760
+ msgid "\"Count per Day\" updated to version %s."
761
+ msgstr ""
762
+
763
+ #: counter-core.php:1000
764
+ #@ cpd
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr ""
767
+
768
+ #: counter-core.php:1027
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:1118
775
+ #: counter-core.php:1126
776
+ #, php-format
777
+ #@ cpd
778
+ msgid "Backup of counter table saved in %s."
779
+ msgstr ""
780
+
781
+ #: counter-core.php:1120
782
+ #: counter-core.php:1128
783
+ #, php-format
784
+ #@ cpd
785
+ msgid "Backup of counter options and collection saved in %s."
786
+ msgstr ""
787
+
788
+ #: counter-options.php:169
789
+ #@ cpd
790
+ msgid "Collection in progress..."
791
+ msgstr ""
792
+
793
+ #: counter-options.php:263
794
+ #@ cpd
795
+ msgid "Get Visitors per Post..."
796
+ msgstr ""
797
+
798
+ #: counter-options.php:284
799
+ #@ cpd
800
+ msgid "Delete old data..."
801
+ msgstr ""
802
+
803
+ #: counter-options.php:308
804
+ #, php-format
805
+ #@ cpd
806
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
+ msgstr ""
808
+
809
+ #: counter-options.php:317
810
+ #@ cpd
811
+ msgid "Installation of \"Count per Day\" checked"
812
+ msgstr ""
813
+
814
+ #: counter-options.php:400
815
+ #: counter-options.php:739
816
+ #@ default
817
+ msgid "Tools"
818
+ msgstr ""
819
+
820
+ #: counter-options.php:791
821
+ #@ cpd
822
+ msgid "Save URL only, no query string."
823
+ msgstr ""
824
+
825
+ #: counter-options.php:815
826
+ #@ cpd
827
+ msgid "Who can see it"
828
+ msgstr ""
829
+
830
+ #: counter-options.php:824
831
+ #@ cpd
832
+ msgid "custom"
833
+ msgstr ""
834
+
835
+ #: counter-options.php:826
836
+ #@ cpd
837
+ msgid "and higher are allowed to see the statistics page."
838
+ msgstr ""
839
+
840
+ #: counter-options.php:828
841
+ #, php-format
842
+ #@ cpd
843
+ msgid "Set the %s capability %s a user need:"
844
+ msgstr ""
845
+
846
+ #: counter-options.php:915
847
+ #@ cpd
848
+ msgid "Stylesheet"
849
+ msgstr ""
850
+
851
+ #: counter-options.php:918
852
+ #@ cpd
853
+ msgid "NO Stylesheet in Frontend"
854
+ msgstr ""
855
+
856
+ #: counter-options.php:919
857
+ #@ cpd
858
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
+ msgstr ""
860
+
861
+ #: counter-options.php:476
862
+ #: counter-options.php:926
863
+ #@ cpd
864
+ msgid "Backup"
865
+ msgstr ""
866
+
867
+ #: counter-options.php:929
868
+ #@ cpd
869
+ msgid "Entries per pass"
870
+ msgstr ""
871
+
872
+ #: counter-options.php:932
873
+ #@ cpd
874
+ msgid "How many entries should be saved per pass? Default: 10000"
875
+ msgstr ""
876
+
877
+ #: counter-options.php:937
878
+ #@ cpd
879
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
+ msgstr ""
881
+
882
+ #: counter-options.php:480
883
+ #, php-format
884
+ #@ cpd
885
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
+ msgstr ""
887
+
888
+ #: counter-options.php:487
889
+ #@ cpd
890
+ msgid "Backup the database"
891
+ msgstr ""
892
+
893
+ #: counter-options.php:591
894
+ #: counter-options.php:623
895
+ #@ cpd
896
+ msgid "Collect old data"
897
+ msgstr ""
898
+
899
+ #: counter-options.php:577
900
+ #: counter-options.php:596
901
+ #, php-format
902
+ #@ cpd
903
+ msgid "Current size of your counter table %s is %s."
904
+ msgstr ""
905
+
906
+ #: counter-options.php:598
907
+ #@ cpd
908
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
909
+ msgstr ""
910
+
911
+ #: counter-options.php:603
912
+ #, php-format
913
+ #@ cpd
914
+ msgid "Currently your collection contains data until %s."
915
+ msgstr ""
916
+
917
+ #: counter-options.php:607
918
+ #@ cpd
919
+ msgid "Normally new data will be added to the collection."
920
+ msgstr ""
921
+
922
+ #: counter-options.php:613
923
+ #@ cpd
924
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
+ msgstr ""
926
+
927
+ #: counter-options.php:614
928
+ #, php-format
929
+ #@ cpd
930
+ msgid "All collected data until %s will deleted."
931
+ msgstr ""
932
+
933
+ #: counter-options.php:619
934
+ #, php-format
935
+ #@ cpd
936
+ msgid "Keep entries of last %s full months + current month in counter table."
937
+ msgstr ""
938
+
939
+ #: counter-options.php:670
940
+ #@ cpd
941
+ msgid "ReActivation"
942
+ msgstr ""
943
+
944
+ #: counter-options.php:673
945
+ #@ cpd
946
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
+ msgstr ""
948
+
949
+ #: counter-options.php:678
950
+ #@ cpd
951
+ msgid "ReActivate the plugin"
952
+ msgstr ""
953
+
954
+ #: counter.php:228
955
+ #: counter.php:998
956
+ #@ cpd
957
+ msgid "Visitors"
958
+ msgstr ""
959
+
960
+ #: counter.php:231
961
+ #: counter.php:232
962
+ #@ cpd
963
+ msgid "Most visited day"
964
+ msgstr ""
965
+
966
+ #: counter.php:1399
967
+ #@ cpd
968
+ msgid "drag and drop to sort"
969
+ msgstr ""
970
+
971
+ #: counter-core.php:795
972
+ #: counter-options.php:864
973
+ #: counter-options.php:868
974
+ #@ cpd
975
+ msgid "Search strings"
976
+ msgstr ""
977
+
978
+ #: counter-core.php:1114
979
+ #@ cpd
980
+ msgid "Your can download the backup files here and now."
981
+ msgstr ""
982
+
983
+ #: counter-core.php:1184
984
+ #@ cpd
985
+ msgid "Error while reading backup file!"
986
+ msgstr ""
987
+
988
+ #: counter-core.php:1188
989
+ #, php-format
990
+ #@ cpd
991
+ msgid "The backup was added to counter table %s."
992
+ msgstr ""
993
+
994
+ #: counter-core.php:1190
995
+ #, php-format
996
+ #@ cpd
997
+ msgid "The counter table %s was restored from backup."
998
+ msgstr ""
999
+
1000
+ #: counter-core.php:1207
1001
+ #@ cpd
1002
+ msgid "Options restored from backup."
1003
+ msgstr ""
1004
+
1005
+ #: counter-options.php:332
1006
+ #@ cpd
1007
+ msgid "Old search strings deleted"
1008
+ msgstr ""
1009
+
1010
+ #: counter-options.php:347
1011
+ #@ cpd
1012
+ msgid "Clients and referers deleted"
1013
+ msgstr ""
1014
+
1015
+ #: counter-options.php:483
1016
+ #@ cpd
1017
+ msgid "Download only"
1018
+ msgstr ""
1019
+
1020
+ #: counter-options.php:515
1021
+ #@ cpd
1022
+ msgid "Settings and collections"
1023
+ msgstr ""
1024
+
1025
+ #: counter-options.php:520
1026
+ #, php-format
1027
+ #@ cpd
1028
+ msgid "Counter table %s"
1029
+ msgstr ""
1030
+
1031
+ #: counter-options.php:527
1032
+ #, php-format
1033
+ #@ cpd
1034
+ msgid "Add data from the backup file %s to existing counter table?"
1035
+ msgstr ""
1036
+
1037
+ #: counter-options.php:527
1038
+ #@ cpd
1039
+ msgid "Add"
1040
+ msgstr ""
1041
+
1042
+ #: counter-options.php:531
1043
+ #, php-format
1044
+ #@ cpd
1045
+ msgid "Restore data from the backup file %s ?"
1046
+ msgstr ""
1047
+
1048
+ #: counter-options.php:531
1049
+ #@ default
1050
+ msgid "Restore"
1051
+ msgstr ""
1052
+
1053
+ #: counter-options.php:533
1054
+ #@ default
1055
+ msgid "Delete"
1056
+ msgstr ""
1057
+
1058
+ #: counter-options.php:534
1059
+ #, php-format
1060
+ #@ cpd
1061
+ msgid "Delete the backup file %s ?"
1062
+ msgstr ""
1063
+
1064
+ #: counter-options.php:540
1065
+ #@ cpd
1066
+ msgid "add backup to current counter table"
1067
+ msgstr ""
1068
+
1069
+ #: counter-options.php:541
1070
+ #@ cpd
1071
+ msgid "replace current counter table with with backup"
1072
+ msgstr ""
1073
+
1074
+ #: counter-options.php:542
1075
+ #@ cpd
1076
+ msgid "delete backup file"
1077
+ msgstr ""
1078
+
1079
+ #: counter-options.php:567
1080
+ #, php-format
1081
+ #@ cpd
1082
+ msgid "Delete search strings older than %s days."
1083
+ msgstr ""
1084
+
1085
+ #: counter-options.php:571
1086
+ #@ cpd
1087
+ msgid "Delete search strings"
1088
+ msgstr ""
1089
+
1090
+ #: counter-options.php:578
1091
+ #, php-format
1092
+ #@ cpd
1093
+ msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1094
+ msgstr ""
1095
+
1096
+ #: counter-options.php:582
1097
+ #@ cpd
1098
+ msgid "Delete clients and referers"
1099
+ msgstr ""
1100
+
1101
+ #: counter.php:1100
1102
+ #@ default
1103
+ msgid "Front page"
1104
+ msgstr ""
1105
+
1106
+ #: counter.php:1142
1107
+ #, php-format
1108
+ #@ cpd
1109
+ msgid "The %s most searched strings:"
1110
+ msgstr ""
1111
+
1112
+ #: counter.php:1151
1113
+ #, php-format
1114
+ #@ cpd
1115
+ msgid "The search strings of the last %s days:"
1116
+ msgstr ""
1117
+
1118
+ #: counter.php:1315
1119
+ #@ default
1120
+ msgid "_name"
1121
+ msgstr ""
1122
+
locale/cpd-be_BY.po CHANGED
@@ -1,784 +1,1122 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: \n"
8
- "Language-Team: Alexandr Alexandrov <yuzver@gmx.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Belarusian\n"
14
- "X-Poedit-Country: BELARUS\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-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:46
23
- msgid "Options updated"
24
- msgstr "Налады захаваныя"
25
-
26
- #@ cpd
27
- #: counter-options.php:111
28
- #, php-format
29
- msgid "Database cleaned. %s rows deleted."
30
- msgstr "База дадзеных ачышчана.%s радкоў выдаленае."
31
-
32
- #@ cpd
33
- #: counter-options.php:121
34
- #: counter-options.php:496
35
- msgid "UNINSTALL Count per Day"
36
- msgstr "Выдаліць Count per Day"
37
-
38
- #@ cpd
39
- #: counter-options.php:126
40
- #: counter-options.php:128
41
- #: counter-options.php:130
42
- #, php-format
43
- msgid "Table %s deleted"
44
- msgstr "Табліца% s выдалена"
45
-
46
- #@ cpd
47
- #: counter-options.php:132
48
- msgid "Options deleted"
49
- msgstr "Налады выдалены"
50
-
51
- #@ cpd
52
- #: counter-options.php:156
53
- #: counter-options.php:481
54
- msgid "Uninstall"
55
- msgstr "Деинсталяция"
56
-
57
- #@ cpd
58
- #: counter-options.php:157
59
- msgid "Click here"
60
- msgstr "Націсніце сюды"
61
-
62
- #@ cpd
63
- #: counter-options.php:157
64
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
- msgstr "Для завяршэння деинсталяции і адключэння \" Штодзённага лічыльніка\"."
66
-
67
- #@ cpd
68
- #: counter-options.php:179
69
- msgid "Options"
70
- msgstr "Налады"
71
-
72
- #@ cpd
73
- #: counter-options.php:190
74
- msgid "Online time"
75
- msgstr "Час онлайн"
76
-
77
- #@ cpd
78
- #: counter-options.php:191
79
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
- msgstr "Сэкунд для онлайн лічыльніка. Выкарыстоўваецца для \" Наведвальнікаў онлайн\"на \" Панэлі інструмэнтаў\"."
81
-
82
- #@ cpd
83
- #: counter-options.php:194
84
- msgid "Logged on Users"
85