WP Statistics - Version 3.0.2

Version Description

  • Added: Hungarian language.
  • Added: Insert value in useronline table by Primary_Values function.
  • Added: Opera browser in get_UserAgent function.
  • Added: prefix wps_ in options.
  • Added: Notices to enable or disable the plugin.
  • Changed: Statistics class to WP_Statistics because Resemblance name.
Download this release

Release Info

Developer mostafa.s1990
Plugin Icon 128x128 WP Statistics
Version 3.0.2
Comparing to
See all releases

Code changes from version 3.0.1 to 3.0.2

images/Opera.png ADDED
Binary file
includes/class/hits.class.php CHANGED
@@ -1,43 +1,11 @@
1
  <?php
2
- class Hits extends Statistics {
3
 
4
  public function __construct() {
5
 
6
  parent::__construct();
7
  }
8
 
9
- public function Primary_Values() {
10
-
11
- $this->result = $this->db->query("SELECT * FROM {$this->tb_prefix}statistics_visit");
12
-
13
- if( !$this->result ) {
14
-
15
- $this->db->insert(
16
- $this->tb_prefix . "statistics_visit",
17
- array(
18
- 'last_visit' => $this->Current_Date(),
19
- 'last_counter' => $this->Current_date('Y-m-d'),
20
- 'visit' => 1
21
- )
22
- );
23
- }
24
-
25
- $this->result = $this->db->query("SELECT * FROM {$this->tb_prefix}statistics_visitor");
26
-
27
- if( !$this->result ) {
28
-
29
- $this->db->insert(
30
- $this->tb_prefix . "statistics_visitor",
31
- array(
32
- 'last_counter' => $this->Current_date('Y-m-d'),
33
- 'referred' => $this->get_Referred(),
34
- 'agent' => $this->get_UserAgent(),
35
- 'ip' => $this->get_IP()
36
- )
37
- );
38
- }
39
- }
40
-
41
  public function Visits() {
42
 
43
  $this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visit ORDER BY `{$this->tb_prefix}statistics_visit`.`ID` DESC");
1
  <?php
2
+ class Hits extends WP_Statistics {
3
 
4
  public function __construct() {
5
 
6
  parent::__construct();
7
  }
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  public function Visits() {
10
 
11
  $this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visit ORDER BY `{$this->tb_prefix}statistics_visit`.`ID` DESC");
includes/class/statistics.class.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- class Statistics {
3
 
4
  protected $db;
5
  protected $tb_prefix;
@@ -19,6 +19,54 @@
19
  $this->tb_prefix = $table_prefix;
20
  }
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  public function get_IP() {
23
 
24
  if (getenv('HTTP_CLIENT_IP')) {
@@ -55,6 +103,8 @@
55
  $agent = 'Android';
56
  } elseif ( stripos($agent, 'Chrome') ) {
57
  $agent = 'Chrome';
 
 
58
  } elseif ( stripos($agent, 'Safari') ) {
59
  $agent = 'Safari';
60
  } else {
1
  <?php
2
+ class WP_Statistics {
3
 
4
  protected $db;
5
  protected $tb_prefix;
19
  $this->tb_prefix = $table_prefix;
20
  }
21
 
22
+ public function Primary_Values() {
23
+
24
+ $this->result = $this->db->query("SELECT * FROM {$this->tb_prefix}statistics_useronline");
25
+
26
+ if( !$this->result ) {
27
+
28
+ $this->db->insert(
29
+ $this->tb_prefix . "statistics_useronline",
30
+ array(
31
+ 'ip' => $this->get_IP(),
32
+ 'timestamp' => $this->timestamp,
33
+ 'date' => $this->Current_Date(),
34
+ 'referred' => $this->get_Referred(),
35
+ 'agent' => $this->get_UserAgent(),
36
+ )
37
+ );
38
+ }
39
+
40
+ $this->result = $this->db->query("SELECT * FROM {$this->tb_prefix}statistics_visit");
41
+
42
+ if( !$this->result ) {
43
+
44
+ $this->db->insert(
45
+ $this->tb_prefix . "statistics_visit",
46
+ array(
47
+ 'last_visit' => $this->Current_Date(),
48
+ 'last_counter' => $this->Current_date('Y-m-d'),
49
+ 'visit' => 1
50
+ )
51
+ );
52
+ }
53
+
54
+ $this->result = $this->db->query("SELECT * FROM {$this->tb_prefix}statistics_visitor");
55
+
56
+ if( !$this->result ) {
57
+
58
+ $this->db->insert(
59
+ $this->tb_prefix . "statistics_visitor",
60
+ array(
61
+ 'last_counter' => $this->Current_date('Y-m-d'),
62
+ 'referred' => $this->get_Referred(),
63
+ 'agent' => $this->get_UserAgent(),
64
+ 'ip' => $this->get_IP()
65
+ )
66
+ );
67
+ }
68
+ }
69
+
70
  public function get_IP() {
71
 
72
  if (getenv('HTTP_CLIENT_IP')) {
103
  $agent = 'Android';
104
  } elseif ( stripos($agent, 'Chrome') ) {
105
  $agent = 'Chrome';
106
+ } elseif ( stripos($agent, 'Opera') ) {
107
+ $agent = 'Opera';
108
  } elseif ( stripos($agent, 'Safari') ) {
109
  $agent = 'Safari';
110
  } else {
includes/class/useronline.class.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- class Useronline extends Statistics {
3
 
4
  private $timestamp;
5
 
1
  <?php
2
+ class Useronline extends WP_Statistics {
3
 
4
  private $timestamp;
5
 
includes/functions/functions.php CHANGED
@@ -10,7 +10,7 @@
10
 
11
  global $wpdb, $table_prefix;
12
 
13
- $s = new Statistics();
14
 
15
  if( $daily == true ) {
16
 
@@ -62,7 +62,7 @@
62
 
63
  global $wpdb, $table_prefix;
64
 
65
- $s = new Statistics();
66
 
67
  if( $daily == true ) {
68
 
@@ -119,7 +119,7 @@
119
 
120
  global $wpdb, $table_prefix;
121
 
122
- $s = new Statistics();
123
 
124
  if( $search_engine == 'google' ) {
125
 
10
 
11
  global $wpdb, $table_prefix;
12
 
13
+ $s = new WP_Statistics();
14
 
15
  if( $daily == true ) {
16
 
62
 
63
  global $wpdb, $table_prefix;
64
 
65
+ $s = new WP_Statistics();
66
 
67
  if( $daily == true ) {
68
 
119
 
120
  global $wpdb, $table_prefix;
121
 
122
+ $s = new WP_Statistics();
123
 
124
  if( $search_engine == 'google' ) {
125
 
includes/log/log.php CHANGED
@@ -375,7 +375,7 @@
375
  <table width="100%" class="widefat table-stats" id="last-visitor">
376
  <tr>
377
  <td width="30%"><?php _e('IP', 'wp_statistics'); ?></td>
378
- <?php if( get_option('ip_information') ) { ?>
379
  <td width="30%"><?php _e('Country', 'wp_statistics'); ?></td>
380
  <td width="20%"><?php _e('Province', 'wp_statistics'); ?></td>
381
  <?php } ?>
@@ -393,7 +393,7 @@
393
  echo "<tr>";
394
  echo "<td>$items->ip</td>";
395
 
396
- if( get_option('ip_information') ) {
397
  if( $s->IP_Location($items->ip)->country_code == 'XX' ) {
398
  echo "<td><img src='".plugins_url('wp-statistics/images/unknown.png')."' title='".__('Unknown', 'wp_statistics')."'/></td>";
399
  } else {
@@ -401,7 +401,7 @@
401
  }
402
  }
403
 
404
- if( get_option('ip_information') ) {
405
  if( $s->IP_Location($items->ip)->city == '(Unknown City?)' || $s->IP_Location($items->ip)->city == '(Unknown city)' ) {
406
  echo "<td>" . __('Unknown', 'wp_statistics') . "</td>";
407
  } else {
375
  <table width="100%" class="widefat table-stats" id="last-visitor">
376
  <tr>
377
  <td width="30%"><?php _e('IP', 'wp_statistics'); ?></td>
378
+ <?php if( get_option('wps_ip_information') ) { ?>
379
  <td width="30%"><?php _e('Country', 'wp_statistics'); ?></td>
380
  <td width="20%"><?php _e('Province', 'wp_statistics'); ?></td>
381
  <?php } ?>
393
  echo "<tr>";
394
  echo "<td>$items->ip</td>";
395
 
396
+ if( get_option('wps_ip_information') ) {
397
  if( $s->IP_Location($items->ip)->country_code == 'XX' ) {
398
  echo "<td><img src='".plugins_url('wp-statistics/images/unknown.png')."' title='".__('Unknown', 'wp_statistics')."'/></td>";
399
  } else {
401
  }
402
  }
403
 
404
+ if( get_option('wps_ip_information') ) {
405
  if( $s->IP_Location($items->ip)->city == '(Unknown City?)' || $s->IP_Location($items->ip)->city == '(Unknown city)' ) {
406
  echo "<td>" . __('Unknown', 'wp_statistics') . "</td>";
407
  } else {
includes/setting/settings.php CHANGED
@@ -15,7 +15,7 @@
15
  </th>
16
 
17
  <th>
18
- <input id="useronline" type="checkbox" value="1" name="useronline" <?php echo get_option('useronline')==true? "checked='checked'":'';?>>
19
  <label for="useronline"><?php _e('Active', 'wp_statistics'); ?></label>
20
  <p class="description"><?php _e('Enable or disable this feature', 'wp_statistics'); ?></p>
21
  </th>
@@ -27,7 +27,7 @@
27
  </th>
28
 
29
  <th>
30
- <input id="visits" type="checkbox" value="1" name="visits" <?php echo get_option('visits')==true? "checked='checked'":'';?>>
31
  <label for="visits"><?php _e('Active', 'wp_statistics'); ?></label>
32
  <p class="description"><?php _e('Enable or disable this feature', 'wp_statistics'); ?></p>
33
  </th>
@@ -39,7 +39,7 @@
39
  </th>
40
 
41
  <th>
42
- <input id="visitors" type="checkbox" value="1" name="visitors" <?php echo get_option('visitors')==true? "checked='checked'":'';?>>
43
  <label for="visitors"><?php _e('Active', 'wp_statistics'); ?></label>
44
  <p class="description"><?php _e('Enable or disable this feature', 'wp_statistics'); ?></p>
45
  </th>
@@ -51,7 +51,7 @@
51
  </th>
52
 
53
  <th>
54
- <input type="text" class="small-text code" id="check_online" name="check_online" value="<?php echo get_option('check_online'); ?>"/>
55
  <?php _e('Secound', 'wp_statistics'); ?>
56
  <p class="description"><?php echo sprintf(__('Time for the check accurate online user in the site. Now: %s Second', 'wp_statistics'), $o->second); ?></p>
57
  </th>
@@ -63,9 +63,9 @@
63
  </th>
64
 
65
  <th>
66
- <select name="menu_bar" id="menu-bar">
67
- <option value="0" <?php selected(get_option('menu_bar'), '0'); ?>><?php _e('No', 'wp_statistics'); ?></option>
68
- <option value="1" <?php selected(get_option('menu_bar'), '1'); ?>><?php _e('Yes', 'wp_statistics'); ?></option>
69
  </select>
70
  <p class="description"><?php _e('Show stats in admin menu bar', 'wp_statistics'); ?></p>
71
  </th>
@@ -77,7 +77,7 @@
77
  </th>
78
 
79
  <th>
80
- <input type="text" class="small-text code" id="coefficient" name="coefficient" value="<?php echo get_option('coefficient'); ?>"/>
81
  <p class="description"><?php echo sprintf(__('For each visit to account for several hits. Currently %s.', 'wp_statistics'), $h->coefficient); ?></p>
82
  </th>
83
  </tr>
@@ -88,7 +88,7 @@
88
  </th>
89
 
90
  <th>
91
- <input id="ip-information" type="checkbox" value="1" name="ip_information" <?php echo get_option('ip_information')==true? "checked='checked'":'';?>>
92
  <label for="ip-information"><?php _e('Active', 'wp_statistics'); ?></label>
93
  <p class="description"><?php _e('Showing the flag country and Visitor province name (May be a bit slow)', 'wp_statistics'); ?></p>
94
  </th>
@@ -104,24 +104,24 @@
104
  </th>
105
 
106
  <th>
107
- <input id="stats-report" type="checkbox" value="1" name="stats_report" <?php echo get_option('stats_report')==true? "checked='checked'":'';?>>
108
  <label for="stats-report"><?php _e('Active', 'wp_statistics'); ?></label>
109
  <p class="description"><?php _e('Enable or disable this feature', 'wp_statistics'); ?></p>
110
  </th>
111
  </tr>
112
 
113
- <?php if( get_option('stats_report') ) { ?>
114
  <tr valign="top">
115
  <th scope="row">
116
  <label for="time-report"><?php _e('Time send', 'wp_statistics'); ?>:</label>
117
  </th>
118
 
119
  <th>
120
- <select name="time_report" id="time-report">
121
- <option value="0" <?php selected(get_option('time_report'), '0'); ?>><?php _e('Please select.', 'wp_statistics'); ?></option>
122
- <option value="hourly" <?php selected(get_option('time_report'), 'hourly'); ?>><?php _e('Hourly', 'wp_statistics'); ?></option>
123
- <option value="twicedaily" <?php selected(get_option('time_report'), 'twicedaily'); ?>><?php _e('Twice daily', 'wp_statistics'); ?></option>
124
- <option value="daily" <?php selected(get_option('time_report'), 'daily'); ?>><?php _e('daily', 'wp_statistics'); ?></option>
125
  </select>
126
  <p class="description"><?php _e('Select when receiving statistics report.', 'wp_statistics'); ?></p>
127
  </th>
@@ -133,14 +133,14 @@
133
  </th>
134
 
135
  <th>
136
- <select name="send_report" id="send-report">
137
- <option value="0" <?php selected(get_option('send_report'), '0'); ?>><?php _e('Please select.', 'wp_statistics'); ?></option>
138
- <option value="mail" <?php selected(get_option('send_report'), 'mail'); ?>><?php _e('Email', 'wp_statistics'); ?></option>
139
- <option value="sms" <?php selected(get_option('send_report'), 'sms'); ?>><?php _e('SMS', 'wp_statistics'); ?></option>
140
  </select>
141
  <p class="description"><?php _e('Type Select Get Status Report.', 'wp_statistics'); ?></p>
142
 
143
- <?php if( get_option('send_report') == 'sms' && !class_exists(get_option('wp_webservice')) ) { ?>
144
  <p class="description note"><?php echo sprintf(__('Note: To send SMS text messages please install the <a href="%s" target="_blank">Wordpress SMS</a> plugin.', 'wp_statistics'), 'http://wordpress.org/extend/plugins/wp-sms/'); ?></p>
145
  <?php } ?>
146
  </th>
@@ -152,7 +152,7 @@
152
  </th>
153
 
154
  <th>
155
- <?php wp_editor( get_option('content_report'), 'content-report', array('media_buttons' => false, 'textarea_name' => 'content_report', 'textarea_rows' => 5) ); ?>
156
  <p class="description"><?php _e('Enter the contents of the reports received.', 'wp_statistics'); ?></p>
157
  <p class="description data">
158
  <?php _e('Input data:', 'wp_statistics'); ?>
15
  </th>
16
 
17
  <th>
18
+ <input id="useronline" type="checkbox" value="1" name="wps_useronline" <?php echo get_option('wps_useronline')==true? "checked='checked'":'';?>>
19
  <label for="useronline"><?php _e('Active', 'wp_statistics'); ?></label>
20
  <p class="description"><?php _e('Enable or disable this feature', 'wp_statistics'); ?></p>
21
  </th>
27
  </th>
28
 
29
  <th>
30
+ <input id="visits" type="checkbox" value="1" name="wps_visits" <?php echo get_option('wps_visits')==true? "checked='checked'":'';?>>
31
  <label for="visits"><?php _e('Active', 'wp_statistics'); ?></label>
32
  <p class="description"><?php _e('Enable or disable this feature', 'wp_statistics'); ?></p>
33
  </th>
39
  </th>
40
 
41
  <th>
42
+ <input id="visitors" type="checkbox" value="1" name="wps_visitors" <?php echo get_option('wps_visitors')==true? "checked='checked'":'';?>>
43
  <label for="visitors"><?php _e('Active', 'wp_statistics'); ?></label>
44
  <p class="description"><?php _e('Enable or disable this feature', 'wp_statistics'); ?></p>
45
  </th>
51
  </th>
52
 
53
  <th>
54
+ <input type="text" class="small-text code" id="check_online" name="wps_check_online" value="<?php echo get_option('wps_check_online'); ?>"/>
55
  <?php _e('Secound', 'wp_statistics'); ?>
56
  <p class="description"><?php echo sprintf(__('Time for the check accurate online user in the site. Now: %s Second', 'wp_statistics'), $o->second); ?></p>
57
  </th>
63
  </th>
64
 
65
  <th>
66
+ <select name="wps_menu_bar" id="menu-bar">
67
+ <option value="0" <?php selected(get_option('wps_menu_bar'), '0'); ?>><?php _e('No', 'wp_statistics'); ?></option>
68
+ <option value="1" <?php selected(get_option('wps_menu_bar'), '1'); ?>><?php _e('Yes', 'wp_statistics'); ?></option>
69
  </select>
70
  <p class="description"><?php _e('Show stats in admin menu bar', 'wp_statistics'); ?></p>
71
  </th>
77
  </th>
78
 
79
  <th>
80
+ <input type="text" class="small-text code" id="coefficient" name="wps_coefficient" value="<?php echo get_option('wps_coefficient'); ?>"/>
81
  <p class="description"><?php echo sprintf(__('For each visit to account for several hits. Currently %s.', 'wp_statistics'), $h->coefficient); ?></p>
82
  </th>
83
  </tr>
88
  </th>
89
 
90
  <th>
91
+ <input id="ip-information" type="checkbox" value="1" name="wps_ip_information" <?php echo get_option('wps_ip_information')==true? "checked='checked'":'';?>>
92
  <label for="ip-information"><?php _e('Active', 'wp_statistics'); ?></label>
93
  <p class="description"><?php _e('Showing the flag country and Visitor province name (May be a bit slow)', 'wp_statistics'); ?></p>
94
  </th>
104
  </th>
105
 
106
  <th>
107
+ <input id="stats-report" type="checkbox" value="1" name="wps_stats_report" <?php echo get_option('wps_stats_report')==true? "checked='checked'":'';?>>
108
  <label for="stats-report"><?php _e('Active', 'wp_statistics'); ?></label>
109
  <p class="description"><?php _e('Enable or disable this feature', 'wp_statistics'); ?></p>
110
  </th>
111
  </tr>
112
 
113
+ <?php if( get_option('wps_stats_report') ) { ?>
114
  <tr valign="top">
115
  <th scope="row">
116
  <label for="time-report"><?php _e('Time send', 'wp_statistics'); ?>:</label>
117
  </th>
118
 
119
  <th>
120
+ <select name="wps_time_report" id="time-report">
121
+ <option value="0" <?php selected(get_option('wps_time_report'), '0'); ?>><?php _e('Please select.', 'wp_statistics'); ?></option>
122
+ <option value="hourly" <?php selected(get_option('wps_time_report'), 'hourly'); ?>><?php _e('Hourly', 'wp_statistics'); ?></option>
123
+ <option value="twicedaily" <?php selected(get_option('wps_time_report'), 'twicedaily'); ?>><?php _e('Twice daily', 'wp_statistics'); ?></option>
124
+ <option value="daily" <?php selected(get_option('wps_time_report'), 'daily'); ?>><?php _e('daily', 'wp_statistics'); ?></option>
125
  </select>
126
  <p class="description"><?php _e('Select when receiving statistics report.', 'wp_statistics'); ?></p>
127
  </th>
133
  </th>
134
 
135
  <th>
136
+ <select name="wps_send_report" id="send-report">
137
+ <option value="0" <?php selected(get_option('wps_send_report'), '0'); ?>><?php _e('Please select.', 'wp_statistics'); ?></option>
138
+ <option value="mail" <?php selected(get_option('wps_send_report'), 'mail'); ?>><?php _e('Email', 'wp_statistics'); ?></option>
139
+ <option value="sms" <?php selected(get_option('wps_send_report'), 'sms'); ?>><?php _e('SMS', 'wp_statistics'); ?></option>
140
  </select>
141
  <p class="description"><?php _e('Type Select Get Status Report.', 'wp_statistics'); ?></p>
142
 
143
+ <?php if( get_option('wps_send_report') == 'sms' && !class_exists(get_option('wp_webservice')) ) { ?>
144
  <p class="description note"><?php echo sprintf(__('Note: To send SMS text messages please install the <a href="%s" target="_blank">Wordpress SMS</a> plugin.', 'wp_statistics'), 'http://wordpress.org/extend/plugins/wp-sms/'); ?></p>
145
  <?php } ?>
146
  </th>
152
  </th>
153
 
154
  <th>
155
+ <?php wp_editor( get_option('wps_content_report'), 'content-report', array('media_buttons' => false, 'textarea_name' => 'wps_content_report', 'textarea_rows' => 5) ); ?>
156
  <p class="description"><?php _e('Enter the contents of the reports received.', 'wp_statistics'); ?></p>
157
  <p class="description data">
158
  <?php _e('Input data:', 'wp_statistics'); ?>
install.php CHANGED
@@ -40,8 +40,8 @@
40
 
41
  add_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
42
 
43
- $h = new Hits();
44
- $h->Primary_Values();
45
  }
46
  }
47
  ?>
40
 
41
  add_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
42
 
43
+ $s = new WP_Statistics();
44
+ $s->Primary_Values();
45
  }
46
  }
47
  ?>
languages/default.mo CHANGED
Binary file
languages/default.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-03 19:30+0330\n"
6
- "PO-Revision-Date: 2013-02-03 19:30+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
@@ -26,7 +26,7 @@ msgstr ""
26
  #: F:\Program
27
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:58
30
  msgid "Statistics"
31
  msgstr ""
32
 
@@ -37,7 +37,7 @@ msgstr ""
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
41
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:14
42
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:159
@@ -165,45 +165,53 @@ msgid "Last Post Date"
165
  msgstr ""
166
 
167
  #: F:\Program
168
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:60
169
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
 
 
 
 
 
 
 
 
170
  msgid "View Stats"
171
  msgstr ""
172
 
173
  #: F:\Program
174
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:61
175
  msgid "Settings"
176
  msgstr ""
177
 
178
  #: F:\Program
179
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
180
  msgid "Today visitor"
181
  msgstr ""
182
 
183
  #: F:\Program
184
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
185
  msgid "Today visit"
186
  msgstr ""
187
 
188
  #: F:\Program
189
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
190
  msgid "Yesterday visitor"
191
  msgstr ""
192
 
193
  #: F:\Program
194
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
195
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
196
  msgid "Yesterday visit"
197
  msgstr ""
198
 
199
  #: F:\Program
200
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
201
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:161
202
  msgid "You do not have sufficient permissions to access this page."
203
  msgstr ""
204
 
205
  #: F:\Program
206
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
207
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
208
  msgstr ""
209
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-05 21:18+0330\n"
6
+ "PO-Revision-Date: 2013-02-05 21:18+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
26
  #: F:\Program
27
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
30
  msgid "Statistics"
31
  msgstr ""
32
 
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:89
41
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:14
42
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:159
165
  msgstr ""
166
 
167
  #: F:\Program
168
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:39
169
+ #, php-format
170
+ msgid ""
171
+ "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
172
+ "\">setting page</a> and enable statistics"
173
+ msgstr ""
174
+
175
+ #: F:\Program
176
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
177
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:114
178
  msgid "View Stats"
179
  msgstr ""
180
 
181
  #: F:\Program
182
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
183
  msgid "Settings"
184
  msgstr ""
185
 
186
  #: F:\Program
187
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:94
188
  msgid "Today visitor"
189
  msgstr ""
190
 
191
  #: F:\Program
192
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:99
193
  msgid "Today visit"
194
  msgstr ""
195
 
196
  #: F:\Program
197
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
198
  msgid "Yesterday visitor"
199
  msgstr ""
200
 
201
  #: F:\Program
202
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:109
203
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
204
  msgid "Yesterday visit"
205
  msgstr ""
206
 
207
  #: F:\Program
208
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:143
209
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:170
210
  msgid "You do not have sufficient permissions to access this page."
211
  msgstr ""
212
 
213
  #: F:\Program
214
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:153
215
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
216
  msgstr ""
217
 
languages/wp_statistics-fa_IR.mo CHANGED
Binary file
languages/wp_statistics-fa_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-03 19:30+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: <mat404@gmail.com>\n"
@@ -26,7 +26,7 @@ msgstr "گزارش آماری"
26
  #: F:\Program
27
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:58
30
  msgid "Statistics"
31
  msgstr "آماره"
32
 
@@ -37,7 +37,7 @@ msgstr "نمایش آمار سایت در ابزارک"
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
41
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:14
42
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:159
@@ -165,45 +165,55 @@ msgid "Last Post Date"
165
  msgstr "تاریخ به‌روزشدن سایت"
166
 
167
  #: F:\Program
168
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:60
169
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
 
 
 
 
 
 
 
 
 
 
170
  msgid "View Stats"
171
  msgstr "نمایش آمار"
172
 
173
  #: F:\Program
174
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:61
175
  msgid "Settings"
176
  msgstr "تنظیمات"
177
 
178
  #: F:\Program
179
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
180
  msgid "Today visitor"
181
  msgstr "بازدید کننده امروز"
182
 
183
  #: F:\Program
184
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
185
  msgid "Today visit"
186
  msgstr "بازدید امروز"
187
 
188
  #: F:\Program
189
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
190
  msgid "Yesterday visitor"
191
  msgstr "بازدید کننده دیروز"
192
 
193
  #: F:\Program
194
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
195
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
196
  msgid "Yesterday visit"
197
  msgstr "بازدید دیروز"
198
 
199
  #: F:\Program
200
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
201
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:161
202
  msgid "You do not have sufficient permissions to access this page."
203
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
204
 
205
  #: F:\Program
206
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
207
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
208
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
209
 
@@ -680,6 +690,21 @@ msgstr "میلادی"
680
  msgid "Persian"
681
  msgstr "شمسی (فارسی)"
682
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
683
  #~ msgid "Donate to this Wordpress Statistics plugin:"
684
  #~ msgstr "حمایت به افزونه آماره‌ی وردپرس:"
685
 
@@ -767,13 +792,6 @@ msgstr "شمسی (فارسی)"
767
  #~ msgid "Plugin home page"
768
  #~ msgstr "خانه‌ی افزونه"
769
 
770
- #~ msgid ""
771
- #~ "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> "
772
- #~ "and enable statistics"
773
- #~ msgstr ""
774
- #~ "افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
775
- #~ "تنظیمات</a> آمارگیر مراجعه کنید"
776
-
777
  #~ msgid "Stats Log"
778
  #~ msgstr "گزارش آمارها"
779
 
@@ -822,9 +840,6 @@ msgstr "شمسی (فارسی)"
822
  #~ msgid "Your total visit minus with this value"
823
  #~ msgstr "کل بازدیدها از این مقدار کم می‌شود"
824
 
825
- #~ msgid "Number item for show Statistics"
826
- #~ msgstr "تعداد آیتم برای نمایش آمار"
827
-
828
  #~ msgid "Default 5"
829
  #~ msgstr "پیش‌فرض 5 است"
830
 
@@ -1007,9 +1022,6 @@ msgstr "شمسی (فارسی)"
1007
  #~ msgid "Your Report"
1008
  #~ msgstr "گزارش شما"
1009
 
1010
- #~ msgid "About Author"
1011
- #~ msgstr "درباره‌ی نویسنده"
1012
-
1013
  #~ msgid "Hide Functions"
1014
  #~ msgstr "مخفی‌کردن تابع‌ها"
1015
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-05 21:18+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: <mat404@gmail.com>\n"
26
  #: F:\Program
27
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
30
  msgid "Statistics"
31
  msgstr "آماره"
32
 
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:89
41
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:14
42
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:159
165
  msgstr "تاریخ به‌روزشدن سایت"
166
 
167
  #: F:\Program
168
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:39
169
+ #, php-format
170
+ msgid ""
171
+ "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
172
+ "\">setting page</a> and enable statistics"
173
+ msgstr ""
174
+ "امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
175
+ "تنظیمات</a> آمارگیر مراجعه کنید."
176
+
177
+ #: F:\Program
178
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
179
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:114
180
  msgid "View Stats"
181
  msgstr "نمایش آمار"
182
 
183
  #: F:\Program
184
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
185
  msgid "Settings"
186
  msgstr "تنظیمات"
187
 
188
  #: F:\Program
189
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:94
190
  msgid "Today visitor"
191
  msgstr "بازدید کننده امروز"
192
 
193
  #: F:\Program
194
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:99
195
  msgid "Today visit"
196
  msgstr "بازدید امروز"
197
 
198
  #: F:\Program
199
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
200
  msgid "Yesterday visitor"
201
  msgstr "بازدید کننده دیروز"
202
 
203
  #: F:\Program
204
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:109
205
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
206
  msgid "Yesterday visit"
207
  msgstr "بازدید دیروز"
208
 
209
  #: F:\Program
210
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:143
211
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:170
212
  msgid "You do not have sufficient permissions to access this page."
213
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
214
 
215
  #: F:\Program
216
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:153
217
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
218
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
219
 
690
  msgid "Persian"
691
  msgstr "شمسی (فارسی)"
692
 
693
+ #~ msgid "Access to Show statistics"
694
+ #~ msgstr "دسترسی برای نمایش آمار"
695
+
696
+ #~ msgid "Contributors"
697
+ #~ msgstr "مشارکت کننده‌ها"
698
+
699
+ #~ msgid "Authors"
700
+ #~ msgstr "نویسنده‌ها"
701
+
702
+ #~ msgid "Editors"
703
+ #~ msgstr "ویرایشگرها"
704
+
705
+ #~ msgid "Only administrators"
706
+ #~ msgstr "فقط مدیرها"
707
+
708
  #~ msgid "Donate to this Wordpress Statistics plugin:"
709
  #~ msgstr "حمایت به افزونه آماره‌ی وردپرس:"
710
 
792
  #~ msgid "Plugin home page"
793
  #~ msgstr "خانه‌ی افزونه"
794
 
 
 
 
 
 
 
 
795
  #~ msgid "Stats Log"
796
  #~ msgstr "گزارش آمارها"
797
 
840
  #~ msgid "Your total visit minus with this value"
841
  #~ msgstr "کل بازدیدها از این مقدار کم می‌شود"
842
 
 
 
 
843
  #~ msgid "Default 5"
844
  #~ msgstr "پیش‌فرض 5 است"
845
 
1022
  #~ msgid "Your Report"
1023
  #~ msgstr "گزارش شما"
1024
 
 
 
 
1025
  #~ msgid "Hide Functions"
1026
  #~ msgstr "مخفی‌کردن تابع‌ها"
1027
 
languages/wp_statistics-hu_HU.mo ADDED
Binary file
languages/wp_statistics-hu_HU.po ADDED
@@ -0,0 +1,672 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp-statistics\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-03 19:30+0330\n"
6
+ "PO-Revision-Date: 2013-02-04 11:57+0100\n"
7
+ "Last-Translator: ZSIMI <forditasok@zsimi.hu>\n"
8
+ "Language-Team: \n"
9
+ "Language: en\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: gettext;gettext_noop;_e;__\n"
14
+ "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
+ "X-Language: hu_HU\n"
17
+ "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\n"
18
+
19
+ #: F:0
20
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
21
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
22
+ msgid "Statistical reporting"
23
+ msgstr "Statisztikai adatszolgáltatás"
24
+
25
+ #: F:0
26
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
27
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
28
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:58
29
+ msgid "Statistics"
30
+ msgstr "Statisztikák"
31
+
32
+ #: F:0
33
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:5
34
+ msgid "Show site stats in sidebar"
35
+ msgstr "Webhelystatisztikák megjelenítése az oldalsávon"
36
+
37
+ #: F:0
38
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
39
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
40
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:14
41
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
42
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:159
43
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
44
+ msgid "User Online"
45
+ msgstr "Jelenlévő felhasználó"
46
+
47
+ #: F:0
48
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:26
49
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:161
50
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
51
+ msgid "Today Visit"
52
+ msgstr "Mai látogatás"
53
+
54
+ #: F:0
55
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:33
56
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:160
57
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
58
+ msgid "Today Visitor"
59
+ msgstr "Mai Látogató"
60
+
61
+ #: F:0
62
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:40
63
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
64
+ msgid "Yesterday Visit"
65
+ msgstr "Tegnapi látogatás"
66
+
67
+ #: F:0
68
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:47
69
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:162
70
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
71
+ msgid "Yesterday Visitor"
72
+ msgstr "Tegnapi Látogató"
73
+
74
+ #: F:0
75
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:54
76
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:24
77
+ msgid "Week Visit"
78
+ msgstr "Heti látogatás"
79
+
80
+ #: F:0
81
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:61
82
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:27
83
+ msgid "Month Visit"
84
+ msgstr "Havi látogatás"
85
+
86
+ #: F:0
87
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:68
88
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:30
89
+ msgid "Years Visit"
90
+ msgstr "Évi látogatás"
91
+
92
+ #: F:0
93
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:75
94
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:165
95
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
96
+ msgid "Total Visit"
97
+ msgstr "Összes látogatás"
98
+
99
+ #: F:0
100
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:82
101
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:164
102
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
103
+ msgid "Total Visitor"
104
+ msgstr "Összes Látogató"
105
+
106
+ #: F:0
107
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:90
108
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
109
+ msgid "Search Engine reffered"
110
+ msgstr "Kereső motor megadása\n"
111
+
112
+ #: F:0
113
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:105
114
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
115
+ msgid "Total Posts"
116
+ msgstr "Összes bejegyzés"
117
+
118
+ #: F:0
119
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:112
120
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
121
+ msgid "Total Pages"
122
+ msgstr "Összes oldal"
123
+
124
+ #: F:0
125
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:119
126
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
127
+ msgid "Total Comments"
128
+ msgstr "Összes hozzászólás"
129
+
130
+ #: F:0
131
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:126
132
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
133
+ msgid "Total Spams"
134
+ msgstr "Összes spam"
135
+
136
+ #: F:0
137
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:133
138
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
139
+ msgid "Total Users"
140
+ msgstr "Összes felhasználó"
141
+
142
+ #: F:0
143
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:140
144
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
145
+ msgid "Average Posts"
146
+ msgstr "Átlagos bejegyzés"
147
+
148
+ #: F:0
149
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:147
150
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
151
+ msgid "Average Comments"
152
+ msgstr "Átlagos hozzászólás"
153
+
154
+ #: F:0
155
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:154
156
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
157
+ msgid "Average Users"
158
+ msgstr "Átlagos felhasználó"
159
+
160
+ #: F:0
161
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:161
162
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
163
+ msgid "Last Post Date"
164
+ msgstr "Utolsó bejegyzés dátuma"
165
+
166
+ #: F:0
167
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:60
168
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
169
+ msgid "View Stats"
170
+ msgstr "Statisztikák megtekintése"
171
+
172
+ #: F:0
173
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:61
174
+ msgid "Settings"
175
+ msgstr "Beállítások"
176
+
177
+ #: F:0
178
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
179
+ msgid "Today visitor"
180
+ msgstr "Mai Látogató"
181
+
182
+ #: F:0
183
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
184
+ msgid "Today visit"
185
+ msgstr "Mai látogatás"
186
+
187
+ #: F:0
188
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
189
+ msgid "Yesterday visitor"
190
+ msgstr "Tegnapi Látogató"
191
+
192
+ #: F:0
193
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
194
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
195
+ msgid "Yesterday visit"
196
+ msgstr "Tegnapi látogatás"
197
+
198
+ #: F:0
199
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
200
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:161
201
+ msgid "You do not have sufficient permissions to access this page."
202
+ msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
203
+
204
+ #: F:0
205
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
206
+ msgid "Table plugin does not exist! Please disable and re-enable the plugin."
207
+ msgstr "A bővítmény táblázata nem létezik! Kérjük, kikapcsolni, és újra indítani a bővítményt."
208
+
209
+ #: F:0
210
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:8
211
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
212
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:165
213
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:207
214
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:242
215
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:332
216
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:372
217
+ msgid "Click to toggle"
218
+ msgstr "Bővebben kikapcsolás/bekapcsolás"
219
+
220
+ #: F:0
221
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:9
222
+ msgid "Summary Statistics"
223
+ msgstr "Statisztikák összegzése"
224
+
225
+ #: F:0
226
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:20
227
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:303
228
+ msgid "Visitor"
229
+ msgstr "Látogató"
230
+
231
+ #: F:0
232
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:21
233
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:313
234
+ msgid "Visit"
235
+ msgstr "Látogatás"
236
+
237
+ #: F:0
238
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:25
239
+ msgid "Today"
240
+ msgstr "Ma"
241
+
242
+ #: F:0
243
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
244
+ msgid "Yesterday"
245
+ msgstr "Tegnap"
246
+
247
+ #: F:0
248
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:37
249
+ msgid "Week"
250
+ msgstr "Hét"
251
+
252
+ #: F:0
253
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
254
+ msgid "Month"
255
+ msgstr "Hónap"
256
+
257
+ #: F:0
258
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:49
259
+ msgid "Year"
260
+ msgstr "Év"
261
+
262
+ #: F:0
263
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:55
264
+ msgid "Total"
265
+ msgstr "Összes"
266
+
267
+ #: F:0
268
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:62
269
+ #, php-format
270
+ msgid "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
271
+ msgstr "Mai dátum: <code dir=\"ltr\">%s</code>, Idő: <code dir=\"ltr\">%s</code>"
272
+
273
+ #: F:0
274
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:64
275
+ msgid "(Adjustment)"
276
+ msgstr "(beállítás)"
277
+
278
+ #: F:0
279
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
280
+ msgid "Browsers"
281
+ msgstr "Böngészők"
282
+
283
+ #: F:0
284
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:101
285
+ msgid "Graph of Browsers"
286
+ msgstr "Böngészők diagramja"
287
+
288
+ #: F:0
289
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:143
290
+ msgid "Browser share"
291
+ msgstr "Böngésző megosztás"
292
+
293
+ #: F:0
294
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:145
295
+ msgid "Firefox"
296
+ msgstr "Firefox"
297
+
298
+ #: F:0
299
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:146
300
+ msgid "IE"
301
+ msgstr "IE"
302
+
303
+ #: F:0
304
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:147
305
+ msgid "Ipad"
306
+ msgstr "Ipad"
307
+
308
+ #: F:0
309
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:148
310
+ msgid "Android"
311
+ msgstr "Android"
312
+
313
+ #: F:0
314
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:149
315
+ msgid "Chrome"
316
+ msgstr "Chrome"
317
+
318
+ #: F:0
319
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:150
320
+ msgid "Safari"
321
+ msgstr "Safari"
322
+
323
+ #: F:0
324
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:151
325
+ msgid "Other"
326
+ msgstr "Egyéb"
327
+
328
+ #: F:0
329
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:166
330
+ msgid "Top referring sites"
331
+ msgstr "Legkeresettebb oldalak"
332
+
333
+ #: F:0
334
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:171
335
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:384
336
+ msgid "Reference"
337
+ msgstr "Referencia"
338
+
339
+ #: F:0
340
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:172
341
+ msgid "Address"
342
+ msgstr "Cím"
343
+
344
+ #: F:0
345
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:208
346
+ msgid "About plugin"
347
+ msgstr "A bővítmény névjegye"
348
+
349
+ #: F:0
350
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:211
351
+ #, php-format
352
+ msgid "Plugin version: %s"
353
+ msgstr "Bővítmény verziója: %s"
354
+
355
+ #: F:0
356
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:212
357
+ msgid "Translation plugin languages"
358
+ msgstr "Bővítmény fordítási nyelvei"
359
+
360
+ #: F:0
361
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:213
362
+ msgid "Support plugin"
363
+ msgstr "Bővítmény támogatása"
364
+
365
+ #: F:0
366
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
367
+ msgid "Weblog"
368
+ msgstr "Weboldal"
369
+
370
+ #: F:0
371
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:219
372
+ msgid "Please donate to the plugin. With the help of plug-ins you can quickly spread."
373
+ msgstr "Kérjük a bővítmény adományozását. Az ön és a plug-inek segítségével gyorsan elterjedt."
374
+
375
+ #: F:0
376
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:222
377
+ msgid "Donate"
378
+ msgstr "Adományozás"
379
+
380
+ #: F:0
381
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
382
+ msgid "Statistical Chart"
383
+ msgstr "Statisztikai ábra"
384
+
385
+ #: F:0
386
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
387
+ msgid "Chart hit in the last 20 days"
388
+ msgstr "Az elmúlt 20 nap találatainak ábrázolása"
389
+
390
+ #: F:0
391
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:277
392
+ msgid "Number of visits and visitors"
393
+ msgstr "Látogatások és a látogatók száma"
394
+
395
+ #: F:0
396
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:333
397
+ msgid "Latest search words"
398
+ msgstr "Legutóbbi keresőszavak"
399
+
400
+ #: F:0
401
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
402
+ msgid "Word"
403
+ msgstr "Szó"
404
+
405
+ #: F:0
406
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
407
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
408
+ msgid "Date"
409
+ msgstr "Dátum"
410
+
411
+ #: F:0
412
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
413
+ msgid "Site"
414
+ msgstr "Oldal"
415
+
416
+ #: F:0
417
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:340
418
+ msgid "Referrer"
419
+ msgstr "Ajánló"
420
+
421
+ #: F:0
422
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:352
423
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
424
+ msgid "Google"
425
+ msgstr "Google"
426
+
427
+ #: F:0
428
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:354
429
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
430
+ msgid "Yahoo!"
431
+ msgstr "Yahoo!"
432
+
433
+ #: F:0
434
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:356
435
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
436
+ msgid "Bing"
437
+ msgstr ""
438
+
439
+ #: F:0
440
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:361
441
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:398
442
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:406
443
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:418
444
+ msgid "Unknown"
445
+ msgstr "Ismeretlen"
446
+
447
+ #: F:0
448
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:373
449
+ msgid "Recent Visitors"
450
+ msgstr "Előző Látogató"
451
+
452
+ #: F:0
453
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
454
+ msgid "IP"
455
+ msgstr "IP"
456
+
457
+ #: F:0
458
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
459
+ msgid "Country"
460
+ msgstr "Ország"
461
+
462
+ #: F:0
463
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
464
+ msgid "Province"
465
+ msgstr "Tartomány"
466
+
467
+ #: F:0
468
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:383
469
+ msgid "Browser"
470
+ msgstr "Böngésző"
471
+
472
+ #: F:0
473
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
474
+ msgid "General Settings"
475
+ msgstr "Általános beállítások"
476
+
477
+ #: F:0
478
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
479
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
480
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
481
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:92
482
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
483
+ msgid "Active"
484
+ msgstr "Aktiválás"
485
+
486
+ #: F:0
487
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
488
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
489
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
490
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
491
+ msgid "Enable or disable this feature"
492
+ msgstr "Engedélyezi vagy letiltja ezt a funkciót"
493
+
494
+ #: F:0
495
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
496
+ msgid "Visits"
497
+ msgstr "Látogatások"
498
+
499
+ #: F:0
500
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
501
+ msgid "Visitors"
502
+ msgstr "Látogatók"
503
+
504
+ #: F:0
505
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
506
+ msgid "Check for online users every"
507
+ msgstr "Minden jelenlegi felhasználó ellenőrzése"
508
+
509
+ #: F:0
510
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:55
511
+ msgid "Secound"
512
+ msgstr "Másodpercenként"
513
+
514
+ #: F:0
515
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
516
+ #, php-format
517
+ msgid "Time for the check accurate online user in the site. Now: %s Second"
518
+ msgstr "Itt az ideje a pontos jelenlévő felhasználók ellenőrzésére az oldalon. Most: %s másodperc"
519
+
520
+ #: F:0
521
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
522
+ msgid "Show stats in menu bar"
523
+ msgstr "Statisztikák megjelenítése a menüsorban"
524
+
525
+ #: F:0
526
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:67
527
+ msgid "No"
528
+ msgstr "Nem"
529
+
530
+ #: F:0
531
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:68
532
+ msgid "Yes"
533
+ msgstr "Igen"
534
+
535
+ #: F:0
536
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:70
537
+ msgid "Show stats in admin menu bar"
538
+ msgstr "Statisztikák megjelenítése az admin menüben"
539
+
540
+ #: F:0
541
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
542
+ msgid "Coefficient per visitor"
543
+ msgstr "Látogatókénti egységesítés"
544
+
545
+ #: F:0
546
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:81
547
+ #, php-format
548
+ msgid "For each visit to account for several hits. Currently %s."
549
+ msgstr "Egy azonosított felhasználó minden egyes találatának egységesítése. Jelenleg %s."
550
+
551
+ #: F:0
552
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:87
553
+ msgid "Display IP Information On-screen statistics"
554
+ msgstr "IP információ a képernyőn megjelenő statisztikák megjelenítése"
555
+
556
+ #: F:0
557
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:93
558
+ msgid "Showing the flag country and Visitor province name (May be a bit slow)"
559
+ msgstr "A látogató országa szerinti zászló és tartomány nevének megjelenítése (Ez kissé lassíthatja az oldal letöltését)"
560
+
561
+ #: F:0
562
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
563
+ msgid "Statistical reporting settings"
564
+ msgstr "Statisztikai adatszolgáltatási beállítások"
565
+
566
+ #: F:0
567
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:116
568
+ msgid "Time send"
569
+ msgstr "Küldési idő periódusa"
570
+
571
+ #: F:0
572
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
573
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:137
574
+ msgid "Please select."
575
+ msgstr "Kérem választani."
576
+
577
+ #: F:0
578
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:122
579
+ msgid "Hourly"
580
+ msgstr "Óránkénti"
581
+
582
+ #: F:0
583
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
584
+ msgid "Twice daily"
585
+ msgstr "Naponta kétszer"
586
+
587
+ #: F:0
588
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:124
589
+ msgid "daily"
590
+ msgstr "napi"
591
+
592
+ #: F:0
593
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
594
+ msgid "Select when receiving statistics report."
595
+ msgstr "Válassza fogadásakor a statisztikai jelentést."
596
+
597
+ #: F:0
598
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
599
+ msgid "Send Statistical reporting to"
600
+ msgstr "Statisztikai jelentés küldése"
601
+
602
+ #: F:0
603
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
604
+ msgid "Email"
605
+ msgstr "Email"
606
+
607
+ #: F:0
608
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
609
+ msgid "SMS"
610
+ msgstr "SMS"
611
+
612
+ #: F:0
613
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:141
614
+ msgid "Type Select Get Status Report."
615
+ msgstr "Állapot jelentés küldésének periodusának kiválasztása."
616
+
617
+ #: F:0
618
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
619
+ #, php-format
620
+ msgid "Note: To send SMS text messages please install the <a href=\"%s\" target=\"_blank\">Wordpress SMS</a> plugin."
621
+ msgstr "Megjegyzés: Az SMS-üzenetek küldéséhez, kérjük telepíteni a<a href=\"%s\" target=\"_blank\">Wordpress SMS</a> bővítményt."
622
+
623
+ #: F:0
624
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
625
+ msgid "Send Content Report"
626
+ msgstr "Tartalom Jelentés küldése"
627
+
628
+ #: F:0
629
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
630
+ msgid "Enter the contents of the reports received."
631
+ msgstr "A beérkezett bejelentések tartalmának megadása."
632
+
633
+ #: F:0
634
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:158
635
+ msgid "Input data:"
636
+ msgstr "Bemeneti adatok:"
637
+
638
+ #: F:0
639
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
640
+ msgid "Name"
641
+ msgstr "Név"
642
+
643
+ #: F:0
644
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
645
+ msgid "Items"
646
+ msgstr "Tételek"
647
+
648
+ #: F:0
649
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
650
+ msgid "Select type of search engine"
651
+ msgstr "Kereső motor típusának kiválasztása"
652
+
653
+ #: F:0
654
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
655
+ msgid "All"
656
+ msgstr "Mind"
657
+
658
+ #: F:0
659
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
660
+ msgid "Type date for last update"
661
+ msgstr "Az utolsó frissítés időpontjának frissítése"
662
+
663
+ #: F:0
664
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
665
+ msgid "English"
666
+ msgstr "Angol"
667
+
668
+ #: F:0
669
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
670
+ msgid "Persian"
671
+ msgstr "Perzsa"
672
+
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://iran98.org/donate/
4
  Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 3.6
7
- Stable tag: 3.0.1
8
 
9
  Complete statistics for your blog.
10
 
@@ -60,6 +60,7 @@ Language Support:
60
  * Serbian [Thanks Radovan Georgijevic](http://www.georgijevic.info/)
61
  * Polish Thanks Tomasz Stulka
62
  * Indonesian [Thanks Agit Amrullah](http://www.facebook.com/agitowblinkerz/)
 
63
 
64
  [Percentage languages ​​translation](http://teamwork.wp-parsi.com/projects/wp-statistics/)
65
  To complete the language deficits of [this section](http://teamwork.wp-parsi.com/projects/wp-statistics/) apply.
@@ -118,6 +119,14 @@ Disable / Enable the plugin.
118
  1. Screen shot (screenshot-3.png) in Widget page.
119
 
120
  == Upgrade Notice ==
 
 
 
 
 
 
 
 
121
  = 3.0.1 =
122
  * Bug Fix: Table plugin problem.
123
 
@@ -262,6 +271,14 @@ Disable / Enable the plugin.
262
  * Start plugin
263
 
264
  == Changelog ==
 
 
 
 
 
 
 
 
265
  = 3.0.1 =
266
  * Bug Fix: Table plugin problem.
267
 
4
  Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 3.6
7
+ Stable tag: 3.0.2
8
 
9
  Complete statistics for your blog.
10
 
60
  * Serbian [Thanks Radovan Georgijevic](http://www.georgijevic.info/)
61
  * Polish Thanks Tomasz Stulka
62
  * Indonesian [Thanks Agit Amrullah](http://www.facebook.com/agitowblinkerz/)
63
+ * Hungarian [Thanks ZSIMI](http://www.zsimi.hu/)
64
 
65
  [Percentage languages ​​translation](http://teamwork.wp-parsi.com/projects/wp-statistics/)
66
  To complete the language deficits of [this section](http://teamwork.wp-parsi.com/projects/wp-statistics/) apply.
119
  1. Screen shot (screenshot-3.png) in Widget page.
120
 
121
  == Upgrade Notice ==
122
+ = 3.0.2 =
123
+ * Added: Hungarian language.
124
+ * Added: Insert value in useronline table by Primary_Values function.
125
+ * Added: Opera browser in get_UserAgent function.
126
+ * Added: prefix wps_ in options.
127
+ * Added: Notices to enable or disable the plugin.
128
+ * Changed: Statistics class to WP_Statistics because Resemblance name.
129
+
130
  = 3.0.1 =
131
  * Bug Fix: Table plugin problem.
132
 
271
  * Start plugin
272
 
273
  == Changelog ==
274
+ = 3.0.2 =
275
+ * Added: Hungarian language.
276
+ * Added: Insert value in useronline table by Primary_Values function.
277
+ * Added: Opera browser in get_UserAgent function.
278
+ * Added: prefix wps_ in options.
279
+ * Added: Notices to enable or disable the plugin.
280
+ * Changed: Statistics class to WP_Statistics because Resemblance name.
281
+
282
  = 3.0.1 =
283
  * Bug Fix: Table plugin problem.
284
 
schedule.php CHANGED
@@ -1,12 +1,12 @@
1
  <?php
2
- if ( !wp_next_scheduled('report_hook') && get_option('stats_report') ) {
3
 
4
- wp_schedule_event(time(), get_option('time_report'), 'report_hook');
5
  }
6
 
7
  function wp_statistics_send_report() {
8
 
9
- $string = get_option('content_report');
10
 
11
  $template_vars = array(
12
  'user_online' => wp_statistics_useronline(),
@@ -20,7 +20,7 @@
20
 
21
  $final_text_report = preg_replace('/%(.*?)%/ime', "\$template_vars['$1']", $string);
22
 
23
- if( get_option('send_report') == 'mail' ) {
24
 
25
  $blogname = get_bloginfo('name');
26
  $blogemail = get_bloginfo('admin_email');
@@ -31,7 +31,7 @@
31
 
32
  wp_mail( get_bloginfo('admin_email'), __('Statistical reporting', 'wp_statistics'), $final_text_report, $headers );
33
 
34
- } else if( get_option('send_report') == 'sms' ) {
35
 
36
  global $obj;
37
 
1
  <?php
2
+ if ( !wp_next_scheduled('report_hook') && get_option('wps_stats_report') ) {
3
 
4
+ wp_schedule_event(time(), get_option('wps_time_report'), 'report_hook');
5
  }
6
 
7
  function wp_statistics_send_report() {
8
 
9
+ $string = get_option('wps_content_report');
10
 
11
  $template_vars = array(
12
  'user_online' => wp_statistics_useronline(),
20
 
21
  $final_text_report = preg_replace('/%(.*?)%/ime', "\$template_vars['$1']", $string);
22
 
23
+ if( get_option('wps_send_report') == 'mail' ) {
24
 
25
  $blogname = get_bloginfo('name');
26
  $blogemail = get_bloginfo('admin_email');
31
 
32
  wp_mail( get_bloginfo('admin_email'), __('Statistical reporting', 'wp_statistics'), $final_text_report, $headers );
33
 
34
+ } else if( get_option('wps_send_report') == 'sms' ) {
35
 
36
  global $obj;
37
 
wp-statistics.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
5
  Description: Summary statistics of blog.
6
- Version: 3.0.1
7
  Author: Mostafa Soufi
8
  Author URI: http://iran98.org/
9
  License: GPL2
@@ -26,7 +26,7 @@ License: GPL2
26
  include_once dirname( __FILE__ ) . '/includes/class/useronline.class.php';
27
  include_once dirname( __FILE__ ) . '/includes/class/hits.class.php';
28
 
29
- $s = new Statistics();
30
  $o = new Useronline();
31
  $h = new Hits();
32
 
@@ -34,21 +34,30 @@ License: GPL2
34
  include_once dirname( __FILE__ ) . '/widget.php';
35
  include_once dirname( __FILE__ ) . '/schedule.php';
36
 
37
- if( get_option('coefficient') ) {
38
- $h->coefficient = get_option('coefficient');
 
 
 
 
 
 
 
 
 
39
  }
40
 
41
- if( get_option('useronline') && !is_admin() )
42
  $o->Check_online();
43
 
44
- if( get_option('visits') && !is_admin() )
45
  $h->Visits();
46
 
47
- if( get_option('visitors') && !is_admin() )
48
  $h->Visitors();
49
 
50
- if( get_option('check_online') ) {
51
- $o->second = get_option('check_online');
52
  }
53
 
54
  function wp_statistics_menu() {
@@ -114,17 +123,17 @@ License: GPL2
114
 
115
  function wp_statistics_register() {
116
 
117
- register_setting('wps_settings', 'useronline');
118
- register_setting('wps_settings', 'visits');
119
- register_setting('wps_settings', 'visitors');
120
- register_setting('wps_settings', 'check_online');
121
- register_setting('wps_settings', 'menu_bar');
122
- register_setting('wps_settings', 'coefficient');
123
- register_setting('wps_settings', 'ip_information');
124
- register_setting('wps_settings', 'stats_report');
125
- register_setting('wps_settings', 'time_report');
126
- register_setting('wps_settings', 'send_report');
127
- register_setting('wps_settings', 'content_report');
128
  }
129
  add_action('admin_init', 'wp_statistics_register');
130
 
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
5
  Description: Summary statistics of blog.
6
+ Version: 3.0.2
7
  Author: Mostafa Soufi
8
  Author URI: http://iran98.org/
9
  License: GPL2
26
  include_once dirname( __FILE__ ) . '/includes/class/useronline.class.php';
27
  include_once dirname( __FILE__ ) . '/includes/class/hits.class.php';
28
 
29
+ $s = new WP_Statistics();
30
  $o = new Useronline();
31
  $h = new Hits();
32
 
34
  include_once dirname( __FILE__ ) . '/widget.php';
35
  include_once dirname( __FILE__ ) . '/schedule.php';
36
 
37
+ function wp_statistics_not_enable() {
38
+ $get_bloginfo_url = get_admin_url() . "admin.php?page=wp-statistics/settings";
39
+ echo '<div class="error"><p>'.sprintf(__('Facilities Wordpress Statistics not enabled! Please go to <a href="%s">setting page</a> and enable statistics', 'wp_statistics'), $get_bloginfo_url).'</p></div>';
40
+ }
41
+
42
+ if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') ) {
43
+ add_action('admin_notices', 'wp_statistics_not_enable');
44
+ }
45
+
46
+ if( get_option('wps_coefficient') ) {
47
+ $h->coefficient = get_option('wps_coefficient');
48
  }
49
 
50
+ if( get_option('wps_useronline') && !is_admin() )
51
  $o->Check_online();
52
 
53
+ if( get_option('wps_visits') && !is_admin() )
54
  $h->Visits();
55
 
56
+ if( get_option('wps_visitors') && !is_admin() )
57
  $h->Visitors();
58
 
59
+ if( get_option('wps_check_online') ) {
60
+ $o->second = get_option('wps_check_online');
61
  }
62
 
63
  function wp_statistics_menu() {
123
 
124
  function wp_statistics_register() {
125
 
126
+ register_setting('wps_settings', 'wps_useronline');
127
+ register_setting('wps_settings', 'wps_visits');
128
+ register_setting('wps_settings', 'wps_visitors');
129
+ register_setting('wps_settings', 'wps_check_online');
130
+ register_setting('wps_settings', 'wps_menu_bar');
131
+ register_setting('wps_settings', 'wps_coefficient');
132
+ register_setting('wps_settings', 'wps_ip_information');
133
+ register_setting('wps_settings', 'wps_stats_report');
134
+ register_setting('wps_settings', 'wps_time_report');
135
+ register_setting('wps_settings', 'wps_send_report');
136
+ register_setting('wps_settings', 'wps_content_report');
137
  }
138
  add_action('admin_init', 'wp_statistics_register');
139