WP Statistics - Version 4.1

Version Description

  • Language: Arabic (ar) was updated
  • Fixed: small bug in moved the GeoIP database.
  • Updated: update to the spiders list.
Download this release

Release Info

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

Code changes from version 4.0 to 4.1

includes/class/statistics.class.php CHANGED
@@ -17,6 +17,10 @@
17
  $this->db = $wpdb;
18
  $this->tb_prefix = $table_prefix;
19
  $this->agent = $this->get_UserAgent();
 
 
 
 
20
  }
21
 
22
  public function Primary_Values() {
@@ -117,7 +121,7 @@
117
 
118
  public function Check_Spiders() {
119
 
120
- $spiders = array("AbachoBOT","accoona","AcoiRobot","AhrefsBot","alexa","AltaVista","appie","Ask Jeeves","ASPSeek","Baiduspider","bingbot","Butterfly","clam antivirus","crawler","CrocCrawler","Dumbot","eStyle","ezooms.bot","FAST","FAST-WebCrawler","Feedfetcher-Google","Firefly","froogle","GeonaBot","Gigabot","girafabot","Googlebot","ia_archiver","IDBot","InfoSeek","inktomi","linkdexbot","looksmart","Lycos","Mail.RU_Bot","Me.dium","Mediapartners-Google","MJ12bot","msnbot","MSRBOT","NationalDirectory","nutch","Openbot","proximic","rabaz","Rambler","Rankivabot","Scooter","Scrubby","Slurp","SocialSearch","Sogou web spider","Spade","TechnoratiSnoop","TECNOSEEK","Teoma","TweetmemeBot","Twiceler","Twitturls","URL_Spider_SQL","WebAlta Crawler","WebBug","WebFindBot","www.galaxy.com","yandex","Yahoo","Yammybot","ZyBorg");
121
 
122
  foreach($spiders as $spider) {
123
  if(stripos($_SERVER['HTTP_USER_AGENT'], $spider) !== FALSE)
17
  $this->db = $wpdb;
18
  $this->tb_prefix = $table_prefix;
19
  $this->agent = $this->get_UserAgent();
20
+ if( get_option('wps_coefficient') ) {
21
+ $this->coefficient = get_option('wps_coefficient');
22
+ }
23
+
24
  }
25
 
26
  public function Primary_Values() {
121
 
122
  public function Check_Spiders() {
123
 
124
+ $spiders = array("A6-Indexer","AbachoBOT","accoona","AcoiRobot","AddThis.com","ADmantX","AhrefsBot","alexa","AltaVista","appie","Ask Jeeves","ASPSeek","Baiduspider","Benjojo","bingbot","Butterfly","ccbot","clam antivirus","crawler","CrocCrawler","Dumbot","eStyle","ezooms.bot","facebookexternalhit","FAST","Feedfetcher-Google","Firefly","froogle","GeonaBot","Gigabot","girafabot","Googlebot","ia_archiver","IDBot","InfoSeek","inktomi","linkdexbot","looksmart","Lycos","Mail.RU_Bot","Me.dium","Mediapartners-Google","MJ12bot","msnbot","MSRBOT","NationalDirectory","nutch","Openbot","proximic","rabaz","Rambler","Rankivabot","Scooter","Scrubby","SeznamBot","Slurp","SocialSearch","Sogou web spider","Spade","TechnoratiSnoop","TECNOSEEK","Teoma","TweetmemeBot","Twiceler","Twitturls","URL_Spider_SQL","WebAlta Crawler","WebBug","WebFindBot","WeSEE:Search","www.galaxy.com","yandex","Yahoo","Yammybot","ZyBorg");
125
 
126
  foreach($spiders as $spider) {
127
  if(stripos($_SERVER['HTTP_USER_AGENT'], $spider) !== FALSE)
includes/class/useronline.class.php CHANGED
@@ -14,6 +14,10 @@
14
  $this->timestamp = date('U');
15
 
16
  $this->second = $second;
 
 
 
 
17
  }
18
 
19
  public function Is_user() {
14
  $this->timestamp = date('U');
15
 
16
  $this->second = $second;
17
+
18
+ if( get_option('wps_check_online') ) {
19
+ $this->second = get_option('wps_check_online');
20
+ }
21
  }
22
 
23
  public function Is_user() {
includes/log/last-search.php CHANGED
@@ -25,7 +25,7 @@
25
  <h3 class="hndle"><span><?php _e('Latest search words', 'wp_statistics'); ?></span></h3>
26
  <div class="inside">
27
  <?php
28
- global $s;
29
 
30
  // Instantiate pagination object with appropriate arguments
31
  $pagesPerSection = 10;
@@ -51,19 +51,19 @@
51
 
52
  foreach($result as $items) {
53
 
54
- if( !$s->Search_Engine_QueryString($items->referred) ) continue;
55
 
56
  echo "<div class='log-item'>";
57
- echo "<div class='log-referred'>".substr($s->Search_Engine_QueryString($items->referred), 0, 100)."</div>";
58
  echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
59
  echo "<div class='clear'></div>";
60
  echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
61
 
62
- if( $s->Check_Search_Engines('google.com', $items->referred) ) {
63
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=google.com'><img src='".plugins_url('wp-statistics/images/google.com.png')."' class='log-tools' title='".__('Google', 'wp_statistics')."'/></a>";
64
- } else if( $s->Check_Search_Engines('yahoo.com', $items->referred) ) {
65
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=yahoo.com'><img src='".plugins_url('wp-statistics/images/yahoo.com.png')."' class='log-tools' title='".__('Yahoo!', 'wp_statistics')."'/></a>";
66
- } else if( $s->Check_Search_Engines('bing.com', $items->referred) ) {
67
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=bing.com'><img src='".plugins_url('wp-statistics/images/bing.com.png')."' class='log-tools' title='".__('Bing', 'wp_statistics')."'/></a>";
68
  }
69
 
25
  <h3 class="hndle"><span><?php _e('Latest search words', 'wp_statistics'); ?></span></h3>
26
  <div class="inside">
27
  <?php
28
+ $wpstats = new WP_Statistics();
29
 
30
  // Instantiate pagination object with appropriate arguments
31
  $pagesPerSection = 10;
51
 
52
  foreach($result as $items) {
53
 
54
+ if( !$wpstats->Search_Engine_QueryString($items->referred) ) continue;
55
 
56
  echo "<div class='log-item'>";
57
+ echo "<div class='log-referred'>".substr($wpstats->Search_Engine_QueryString($items->referred), 0, 100)."</div>";
58
  echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
59
  echo "<div class='clear'></div>";
60
  echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
61
 
62
+ if( $wpstats->Check_Search_Engines('google.com', $items->referred) ) {
63
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=google.com'><img src='".plugins_url('wp-statistics/images/google.com.png')."' class='log-tools' title='".__('Google', 'wp_statistics')."'/></a>";
64
+ } else if( $wpstats->Check_Search_Engines('yahoo.com', $items->referred) ) {
65
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=yahoo.com'><img src='".plugins_url('wp-statistics/images/yahoo.com.png')."' class='log-tools' title='".__('Yahoo!', 'wp_statistics')."'/></a>";
66
+ } else if( $wpstats->Check_Search_Engines('bing.com', $items->referred) ) {
67
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=bing.com'><img src='".plugins_url('wp-statistics/images/bing.com.png')."' class='log-tools' title='".__('Bing', 'wp_statistics')."'/></a>";
68
  }
69
 
includes/log/last-visitor.php CHANGED
@@ -36,8 +36,6 @@
36
  <h3 class="hndle"><span><?php _e('Recent Visitors', 'wp_statistics'); ?></span></h3>
37
  <div class="inside">
38
  <?php
39
- global $s;
40
-
41
  // Instantiate pagination object with appropriate arguments
42
  $pagesPerSection = 10;
43
  $options = array(25, "All");
36
  <h3 class="hndle"><span><?php _e('Recent Visitors', 'wp_statistics'); ?></span></h3>
37
  <div class="inside">
38
  <?php
 
 
39
  // Instantiate pagination object with appropriate arguments
40
  $pagesPerSection = 10;
41
  $options = array(25, "All");
includes/log/log.php CHANGED
@@ -102,7 +102,7 @@
102
  </tbody>
103
  </table>
104
 
105
- <strong><?php global $s; echo sprintf(__('Today date: <code dir="ltr">%s</code>, Time: <code dir="ltr">%s</code>', 'wp_statistics'), $s->Current_Date(get_option('date_format')), $s->Current_Date(get_option('time_format'))); ?></strong>
106
 
107
  <span id="time_zone"><a href="<?php echo admin_url('options-general.php'); ?>"><?php _e('(Adjustment)', 'wp_statistics'); ?></a></span>
108
  </div>
@@ -374,7 +374,7 @@
374
  categories: [
375
  <?php
376
  for( $i=20; $i>=0; $i--) {
377
- echo '"'.$s->Current_Date('M d', '-'.$i).'"';
378
  echo ", ";
379
  }
380
  ?>]
@@ -469,7 +469,7 @@
469
  categories: [
470
  <?php
471
  for( $i=20; $i>=0; $i--) {
472
- echo '"'.$s->Current_Date('M d', '-'.$i).'"';
473
  echo ", ";
474
  }
475
  ?>]
@@ -556,19 +556,19 @@
556
 
557
  foreach($result as $items) {
558
 
559
- if( !$s->Search_Engine_QueryString($items->referred) ) continue;
560
 
561
  echo "<div class='log-item'>";
562
- echo "<div class='log-referred'>".substr($s->Search_Engine_QueryString($items->referred), 0, 80)."</div>";
563
  echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
564
  echo "<div class='clear'></div>";
565
  echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
566
 
567
- if( $s->Check_Search_Engines('google.com', $items->referred) ) {
568
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=google.com'><img src='".plugins_url('wp-statistics/images/google.com.png')."' class='log-tools' title='".__('Google', 'wp_statistics')."'/></a>";
569
- } else if( $s->Check_Search_Engines('yahoo.com', $items->referred) ) {
570
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=yahoo.com'><img src='".plugins_url('wp-statistics/images/yahoo.com.png')."' class='log-tools' title='".__('Yahoo!', 'wp_statistics')."'/></a>";
571
- } else if( $s->Check_Search_Engines('bing.com', $items->referred) ) {
572
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=bing.com'><img src='".plugins_url('wp-statistics/images/bing.com.png')."' class='log-tools' title='".__('Bing', 'wp_statistics')."'/></a>";
573
  }
574
 
102
  </tbody>
103
  </table>
104
 
105
+ <strong><?php $wpstats = new WP_Statistics(); echo sprintf(__('Today date: <code dir="ltr">%s</code>, Time: <code dir="ltr">%s</code>', 'wp_statistics'), $wpstats->Current_Date(get_option('date_format')), $wpstats->Current_Date(get_option('time_format'))); ?></strong>
106
 
107
  <span id="time_zone"><a href="<?php echo admin_url('options-general.php'); ?>"><?php _e('(Adjustment)', 'wp_statistics'); ?></a></span>
108
  </div>
374
  categories: [
375
  <?php
376
  for( $i=20; $i>=0; $i--) {
377
+ echo '"'.$wpstats->Current_Date('M d', '-'.$i).'"';
378
  echo ", ";
379
  }
380
  ?>]
469
  categories: [
470
  <?php
471
  for( $i=20; $i>=0; $i--) {
472
+ echo '"'.$wpstats->Current_Date('M d', '-'.$i).'"';
473
  echo ", ";
474
  }
475
  ?>]
556
 
557
  foreach($result as $items) {
558
 
559
+ if( !$wpstats->Search_Engine_QueryString($items->referred) ) continue;
560
 
561
  echo "<div class='log-item'>";
562
+ echo "<div class='log-referred'>".substr($wpstats->Search_Engine_QueryString($items->referred), 0, 80)."</div>";
563
  echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
564
  echo "<div class='clear'></div>";
565
  echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
566
 
567
+ if( $wpstats->Check_Search_Engines('google.com', $items->referred) ) {
568
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=google.com'><img src='".plugins_url('wp-statistics/images/google.com.png')."' class='log-tools' title='".__('Google', 'wp_statistics')."'/></a>";
569
+ } else if( $wpstats->Check_Search_Engines('yahoo.com', $items->referred) ) {
570
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=yahoo.com'><img src='".plugins_url('wp-statistics/images/yahoo.com.png')."' class='log-tools' title='".__('Yahoo!', 'wp_statistics')."'/></a>";
571
+ } else if( $wpstats->Check_Search_Engines('bing.com', $items->referred) ) {
572
  echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=bing.com'><img src='".plugins_url('wp-statistics/images/bing.com.png')."' class='log-tools' title='".__('Bing', 'wp_statistics')."'/></a>";
573
  }
574
 
includes/log/top-referring.php CHANGED
@@ -29,8 +29,6 @@
29
  <?php } ?>
30
  <div class="inside">
31
  <?php
32
- global $s;
33
-
34
  // Instantiate pagination object with appropriate arguments
35
  $pagesPerSection = 10;
36
  $options = array(25, "All");
29
  <?php } ?>
30
  <div class="inside">
31
  <?php
 
 
32
  // Instantiate pagination object with appropriate arguments
33
  $pagesPerSection = 10;
34
  $options = array(25, "All");
includes/setting/settings.php CHANGED
@@ -70,7 +70,7 @@
70
 
71
  <td>
72
  <input type="text" class="small-text code" id="check_online" name="wps_check_online" value="<?php echo get_option('wps_check_online'); ?>"/>
73
- <?php _e('Secound', 'wp_statistics'); ?>
74
  <p class="description"><?php echo sprintf(__('Time for the check accurate online user in the site. Now: %s Second', 'wp_statistics'), $o->second); ?></p>
75
  </td>
76
  </tr>
70
 
71
  <td>
72
  <input type="text" class="small-text code" id="check_online" name="wps_check_online" value="<?php echo get_option('wps_check_online'); ?>"/>
73
+ <?php _e('Second', 'wp_statistics'); ?>
74
  <p class="description"><?php echo sprintf(__('Time for the check accurate online user in the site. Now: %s Second', 'wp_statistics'), $o->second); ?></p>
75
  </td>
76
  </tr>
languages/wp_statistics-ar.mo CHANGED
Binary file
languages/wp_statistics-ar.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-07-16 17:25+0330\n"
6
- "PO-Revision-Date: 2013-07-20 21:15+0300\n"
7
  "Last-Translator: Hammad Alshammari <al3zz@hotmail.com>\n"
8
  "Language-Team: ABU HATIM <al3zz.com@gmail.com>\n"
9
  "Language: ar_SA\n"
@@ -18,156 +18,132 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
19
  "content\\plugins\\wp-statistics\n"
20
 
21
- #: F:\Program
22
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
23
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:115
24
  msgid "Statistical reporting"
25
  msgstr "تقارير الإحصائيات"
26
 
27
- #: F:\Program
28
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
29
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
30
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:68
31
  msgid "Statistics"
32
  msgstr "الإحصائيات"
33
 
34
- #: F:\Program
35
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
36
  msgid "Show site stats in sidebar"
37
  msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
38
 
39
- #: F:\Program
40
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
41
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
42
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
43
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
44
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
45
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
46
  msgid "User Online"
47
  msgstr "المتواجدين الآن"
48
 
49
- #: F:\Program
50
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
51
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:173
52
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
53
  msgid "Today Visit"
54
  msgstr "زيارات اليوم"
55
 
56
- #: F:\Program
57
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
58
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:172
59
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
60
  msgid "Today Visitor"
61
  msgstr "زوار اليوم"
62
 
63
- #: F:\Program
64
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
65
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
66
  msgid "Yesterday Visit"
67
  msgstr "زيارات الأمس"
68
 
69
- #: F:\Program
70
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
71
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
72
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
73
  msgid "Yesterday Visitor"
74
  msgstr "زوار الأمس"
75
 
76
- #: F:\Program
77
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
78
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:24
79
  msgid "Week Visit"
80
  msgstr "زيارات الأسبوع"
81
 
82
- #: F:\Program
83
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
84
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:27
85
  msgid "Month Visit"
86
  msgstr "زيارات الشهر"
87
 
88
- #: F:\Program
89
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
90
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:30
91
  msgid "Years Visit"
92
  msgstr "زيارات السنة"
93
 
94
- #: F:\Program
95
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
96
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:177
97
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
98
  msgid "Total Visit"
99
  msgstr "مجموع الزيارات"
100
 
101
- #: F:\Program
102
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
103
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:176
104
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
105
  msgid "Total Visitor"
106
  msgstr "مجموع الزوار"
107
 
108
- #: F:\Program
109
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
110
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
111
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
112
  msgid "Search Engine reffered"
113
  msgstr "محركات البحث"
114
 
115
- #: F:\Program
116
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:105
117
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
118
  msgid "Total Posts"
119
  msgstr "إجمالي المشاركات"
120
 
121
- #: F:\Program
122
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:112
123
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
124
  msgid "Total Pages"
125
  msgstr "إجمالي الصفحات"
126
 
127
- #: F:\Program
128
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:119
129
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
130
  msgid "Total Comments"
131
  msgstr "إجمالي التعليقات"
132
 
133
- #: F:\Program
134
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:126
135
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
136
  msgid "Total Spams"
137
  msgstr "إجمالي السبام"
138
 
139
- #: F:\Program
140
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:133
141
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
142
  msgid "Total Users"
143
  msgstr "عدد الاعضاء"
144
 
145
- #: F:\Program
146
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:140
147
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
148
  msgid "Average Posts"
149
  msgstr "متوسط المشاركات"
150
 
151
- #: F:\Program
152
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:147
153
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
154
  msgid "Average Comments"
155
  msgstr "متوسط التعليقات"
156
 
157
- #: F:\Program
158
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:154
159
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
160
  msgid "Average Users"
161
  msgstr "متوسط الاعضاء"
162
 
163
- #: F:\Program
164
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:161
165
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
166
  msgid "Last Post Date"
167
  msgstr "تاريخ آخر مشاركة"
168
 
169
- #: F:\Program
170
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:40
171
  #, php-format
172
  msgid ""
173
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
@@ -176,567 +152,790 @@ msgstr ""
176
  "إضافة Wordpress Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s\">صفحة "
177
  "الإعدادات</a> وقم بتفعيلها"
178
 
179
- #: F:\Program
180
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
181
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
182
  msgid "View Stats"
183
  msgstr "عرض الإحصائيات"
184
 
185
- #: F:\Program
186
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:71
 
 
 
187
  msgid "Settings"
188
  msgstr "الإعدادات"
189
 
190
- #: F:\Program
191
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
192
  msgid "Today visitor"
193
  msgstr "زوار اليوم"
194
 
195
- #: F:\Program
196
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
197
  msgid "Today visit"
198
  msgstr "زيارات اليوم"
199
 
200
- #: F:\Program
201
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
202
  msgid "Yesterday visitor"
203
  msgstr "زيارات الأمس"
204
 
205
- #: F:\Program
206
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
207
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
208
  msgid "Yesterday visit"
209
  msgstr "زيارات الأمس"
210
 
211
- #: F:\Program
212
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:145
213
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:218
214
  msgid "You do not have sufficient permissions to access this page."
215
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
216
 
217
- #: F:\Program
218
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:155
219
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
220
  msgstr ""
221
  "هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
222
  "تفعيلة مرة أخرى."
223
 
224
- #: F:\Program
225
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
226
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
227
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
228
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  msgid "To be added soon"
230
  msgstr "تضاف قريبا"
231
 
232
- #: F:\Program
233
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
234
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
235
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
236
  msgid "Latest search words"
237
  msgstr "آخر كلمات البحث"
238
 
239
- #: F:\Program
240
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
241
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
242
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
243
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
244
  msgid "All"
245
  msgstr "الكل"
246
 
247
- #: F:\Program
248
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
249
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
250
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:79
251
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:441
252
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:502
253
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
254
  msgid "Google"
255
- msgstr "Google"
256
-
257
- #: F:\Program
258
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
259
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
260
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:85
261
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:451
262
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:504
263
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
264
  msgid "Yahoo!"
265
- msgstr "Yahoo!"
266
-
267
- #: F:\Program
268
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
269
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
270
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:91
271
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:461
272
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:506
273
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
274
  msgid "Bing"
275
- msgstr "Bing"
276
-
277
- #: F:\Program
278
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
279
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
280
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
281
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:110
282
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:208
283
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:252
284
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
285
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
286
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:480
287
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:521
288
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:22
289
- msgid "Click to toggle"
290
- msgstr "انقر للتبديل"
291
 
292
- #: F:\Program
293
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:58
294
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
295
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:499
296
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:538
297
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
298
  msgid "Map"
299
  msgstr "خريطة"
300
 
301
- #: F:\Program
302
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
303
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
304
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
305
  msgid "Page"
306
  msgstr "صفحة"
307
 
308
- #: F:\Program
309
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
310
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
311
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
312
  msgid "From"
313
  msgstr "من"
314
 
315
- #: F:\Program
316
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
317
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
318
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:523
319
  msgid "Recent Visitors"
320
  msgstr "الزيارات الأخيرة"
321
 
322
- #: F:\Program
323
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
324
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:188
325
- msgid "Firefox"
326
- msgstr " فَيَرفُكس"
327
-
328
- #: F:\Program
329
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
330
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:189
331
- msgid "IE"
332
- msgstr "اكسبلورر"
333
-
334
- #: F:\Program
335
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
336
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:190
337
- msgid "Ipad"
338
- msgstr "آيباد"
339
-
340
- #: F:\Program
341
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
342
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:191
343
- msgid "Android"
344
- msgstr "آندرويد"
345
-
346
- #: F:\Program
347
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
348
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:192
349
- msgid "Chrome"
350
- msgstr "كروم"
351
-
352
- #: F:\Program
353
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
354
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:193
355
- msgid "Safari"
356
- msgstr "سفاري"
357
-
358
- #: F:\Program
359
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:20
360
- msgid "Opera"
361
- msgstr "أوبرا"
362
-
363
- #: F:\Program
364
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
365
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:194
366
- msgid "Other"
367
- msgstr "أخرى"
368
-
369
- #: F:\Program
370
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:17
371
  msgid "Summary Statistics"
372
  msgstr "ملخص الاحصائيات"
373
 
374
- #: F:\Program
375
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
376
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:350
377
- msgid "Visitor"
378
- msgstr "زائر"
379
-
380
- #: F:\Program
381
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
382
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:360
383
- msgid "Visit"
384
- msgstr "زيارة"
385
-
386
- #: F:\Program
387
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
388
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:74
389
  msgid "Today"
390
  msgstr "اليوم"
391
 
392
- #: F:\Program
393
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
394
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:75
395
  msgid "Yesterday"
396
  msgstr "الأمس"
397
 
398
- #: F:\Program
399
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:45
400
  msgid "Week"
401
  msgstr "أسبوع"
402
 
403
- #: F:\Program
404
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:51
405
  msgid "Month"
406
  msgstr "الشهر"
407
 
408
- #: F:\Program
409
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:57
410
  msgid "Year"
411
  msgstr "سنة"
412
 
413
- #: F:\Program
414
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
415
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:97
416
  msgid "Total"
417
  msgstr "المجموع"
418
 
419
- #: F:\Program
420
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:103
421
  #, php-format
422
  msgid ""
423
  "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
424
  msgstr ""
425
  "تاريخ اليوم: <code dir=\"rtl\">%s</code>, الوقت: <code dir=\"rtl\">%s</code>"
426
 
427
- #: F:\Program
428
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:105
429
  msgid "(Adjustment)"
430
  msgstr "(التوافق)"
431
 
432
- #: F:\Program
433
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:111
434
- msgid "Browsers"
435
- msgstr "المتصفحات"
 
 
 
 
 
436
 
437
- #: F:\Program
438
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
439
  msgid "Graph of Browsers"
440
  msgstr "الرسم البياني من المتصفحات"
441
 
442
- #: F:\Program
443
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:186
444
- msgid "Browser share"
445
- msgstr "مشاركة بالمتصفح"
446
-
447
- #: F:\Program
448
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
449
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:11
450
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
451
  msgid "Top referring sites"
452
  msgstr "أعلى المواقع زيارة"
453
 
454
- #: F:\Program
455
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
456
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
457
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:523
458
- msgid "(See more)"
459
- msgstr "(عرض المزيد)"
460
-
461
- #: F:\Program
462
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
463
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
464
  msgid "Reference"
465
  msgstr "المرجع"
466
 
467
- #: F:\Program
468
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
469
  msgid "Address"
470
  msgstr "العنوان"
471
 
472
- #: F:\Program
473
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:253
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
474
  msgid "About plugin"
475
  msgstr "عن الإضافة"
476
 
477
- #: F:\Program
478
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:256
479
  #, php-format
480
  msgid "Plugin version: %s"
481
  msgstr "إصدار الإضافة: %s"
482
 
483
- #: F:\Program
484
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
485
  msgid "Translations"
486
  msgstr "الترجمات"
487
 
488
- #: F:\Program
489
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
490
  msgid "Support"
491
  msgstr "دعم"
492
 
493
- #: F:\Program
494
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
495
  msgid "Farsi"
496
  msgstr "فارسي"
497
 
498
- #: F:\Program
499
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:259
500
  msgid "Facebook"
501
  msgstr "فيس بوك"
502
 
503
- #: F:\Program
504
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:260
505
  msgid "Weblog"
506
  msgstr "مدونتنا"
507
 
508
- #: F:\Program
509
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:265
510
  msgid ""
511
- "Please donate to the plugin. With the help of plug-ins you can quickly "
512
- "spread."
513
  msgstr ""
514
- "يرجى التبرع لهذا البرنامج المساعد. وذلك لمساعدتنا في إضافة المكونات الاضافية "
515
- "في أسرع وقت."
516
 
517
- #: F:\Program
518
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:268
519
  msgid "Donate"
520
  msgstr "تبرع"
521
 
522
- #: F:\Program
523
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:289
524
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
525
- msgid "Statistical Chart"
526
- msgstr "إحصائية الرسم البياني"
527
-
528
- #: F:\Program
529
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:305
530
  msgid "Hits chart in the last 20 days"
531
  msgstr "مخطط الفعاليات في الـ20 يوماً الماضية"
532
 
533
- #: F:\Program
534
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:324
535
- msgid "Number of visits and visitors"
536
- msgstr "عدد الزيارات والزوار"
537
 
538
- #: F:\Program
539
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:396
540
  msgid "Referrer search engine chart in the last 20 days"
541
  msgstr "مرجعية محرك البحث التخطيطي في الـ20 يوما الماضية"
542
 
543
- #: F:\Program
544
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:415
545
  msgid "Number of referrer"
546
  msgstr "عدد الإحالات"
547
 
548
- #: F:\Program
549
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
 
 
 
 
 
 
 
 
 
 
 
550
  msgid "Referring sites from"
551
  msgstr "مواقع اشارة من"
552
 
553
- #: F:\Program
554
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
555
  msgid "General Settings"
556
  msgstr "إعدادات عامة"
557
 
558
- #: F:\Program
559
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
560
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
561
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
562
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
 
563
  msgid "Active"
564
- msgstr "نشط"
565
 
566
- #: F:\Program
567
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
568
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
569
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
570
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
571
  msgid "Enable or disable this feature"
572
  msgstr "تمكين أو تعطيل هذه الميزة"
573
 
574
- #: F:\Program
575
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
576
  msgid "Visits"
577
  msgstr "مرة"
578
 
579
- #: F:\Program
580
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
581
  msgid "Visitors"
582
  msgstr "الزوار"
583
 
584
- #: F:\Program
585
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
 
 
 
 
 
 
 
586
  msgid "Check for online users every"
587
  msgstr "تحقق من المتصلين في الموقع في كل"
588
 
589
- #: F:\Program
590
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:55
591
  msgid "Secound"
592
  msgstr "ثانية"
593
 
594
- #: F:\Program
595
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
596
  #, php-format
597
  msgid "Time for the check accurate online user in the site. Now: %s Second"
598
  msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
599
 
600
- #: F:\Program
601
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
602
  msgid "Show stats in menu bar"
603
  msgstr "إظهار الاحصائيات في شريط القوائم"
604
 
605
- #: F:\Program
606
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:67
607
  msgid "No"
608
  msgstr "لا"
609
 
610
- #: F:\Program
611
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:68
612
  msgid "Yes"
613
  msgstr "نعم"
614
 
615
- #: F:\Program
616
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:70
617
  msgid "Show stats in admin menu bar"
618
  msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
619
 
620
- #: F:\Program
621
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
622
  msgid "Coefficient per visitor"
623
  msgstr "درجة لكل زائر"
624
 
625
- #: F:\Program
626
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:81
627
  #, php-format
628
  msgid "For each visit to account for several hits. Currently %s."
629
  msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
630
 
631
- #: F:\Program
632
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
633
  msgid "Chart Settings"
634
  msgstr "إعدادات الرسم البياني"
635
 
636
- #: F:\Program
637
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
638
  msgid "Chart type"
639
  msgstr "نوع الرسم البياني"
640
 
641
- #: F:\Program
642
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
643
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
644
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
645
- msgid "Please select."
646
- msgstr "الرجاء اختيار."
647
-
648
- #: F:\Program
649
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
650
  msgid "Line"
651
  msgstr "سطر"
652
 
653
- #: F:\Program
654
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
655
  msgid "Spline"
656
  msgstr "شريحة"
657
 
658
- #: F:\Program
659
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
660
  msgid "Area"
661
  msgstr "منطقة"
662
 
663
- #: F:\Program
664
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:100
665
  msgid "Area Spline"
666
  msgstr "منطقة منحنية"
667
 
668
- #: F:\Program
669
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:101
670
  msgid "Column"
671
  msgstr "عمود"
672
 
673
- #: F:\Program
674
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:102
675
  msgid "Bar"
676
  msgstr "شريط"
677
 
678
- #: F:\Program
679
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
680
  msgid "Scatter"
681
  msgstr "تبعثر"
682
 
683
- #: F:\Program
684
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:105
685
  msgid "Chart type in view stats."
686
  msgstr "نوع الرسم البياني في مشاهدة البيانات."
687
 
688
- #: F:\Program
689
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
690
  msgid "Statistical reporting settings"
691
  msgstr "إعدادات تقارير الإحصائيات"
692
 
693
- #: F:\Program
694
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:128
695
  msgid "Time send"
696
  msgstr "وقت الارسال"
697
 
698
- #: F:\Program
699
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:134
700
  msgid "Hourly"
701
  msgstr "كل ساعة"
702
 
703
- #: F:\Program
704
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:135
705
  msgid "Twice daily"
706
  msgstr "مرتين يوميا"
707
 
708
- #: F:\Program
709
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:136
710
  msgid "daily"
711
  msgstr "يوميا"
712
 
713
- #: F:\Program
714
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
715
  msgid "Select when receiving statistics report."
716
  msgstr "حدد عند استلام إحصاءات التقرير."
717
 
718
- #: F:\Program
719
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
720
  msgid "Send Statistical reporting to"
721
  msgstr "إرسال تقارير الإحصائيات إلى"
722
 
723
- #: F:\Program
724
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
725
  msgid "Email"
726
  msgstr "البريد الإلكتروني"
727
 
728
- #: F:\Program
729
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
730
  msgid "SMS"
731
  msgstr "رسائل نصية"
732
 
733
- #: F:\Program
734
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
735
  msgid "Type Select Get Status Report."
736
  msgstr "حدد نوع الحصول على التقرير."
737
 
738
- #: F:\Program
739
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
740
  #, php-format
741
  msgid ""
742
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
@@ -745,51 +944,93 @@ msgstr ""
745
  "ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href=\"%s"
746
  "\" target=\"_blank\">Wordpress SMS</a>."
747
 
748
- #: F:\Program
749
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
750
  msgid "Send Content Report"
751
  msgstr "أرسل المحتوى"
752
 
753
- #: F:\Program
754
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:168
755
  msgid "Enter the contents of the reports received."
756
  msgstr "أدخل محتويات التقارير الواردة."
757
 
758
- #: F:\Program
759
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:170
760
  msgid "Input data:"
761
  msgstr "إدخال البيانات:"
762
 
763
- #: F:\Program
764
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
765
  msgid "Name"
766
  msgstr "الأسم"
767
 
768
- #: F:\Program
769
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
770
  msgid "Items"
771
  msgstr "البنود"
772
 
773
- #: F:\Program
774
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
775
  msgid "Select type of search engine"
776
  msgstr "حدد نوع من محرك البحث"
777
 
778
- #: F:\Program
779
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
780
  msgid "Type date for last update"
781
  msgstr "اكتب تاريخ آخر تحديث"
782
 
783
- #: F:\Program
784
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
785
  msgid "English"
786
  msgstr "الانجليزية"
787
 
788
- #: F:\Program
789
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
790
  msgid "Persian"
791
  msgstr "الفارسية"
792
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
793
  #~ msgid "Word"
794
  #~ msgstr "كلمة"
795
 
@@ -808,9 +1049,6 @@ msgstr "الفارسية"
808
  #~ msgid "IP"
809
  #~ msgstr "IP"
810
 
811
- #~ msgid "Country"
812
- #~ msgstr "الدولة"
813
-
814
  #~ msgid "Province"
815
  #~ msgstr "الولاية"
816
 
@@ -836,18 +1074,12 @@ msgstr "الفارسية"
836
  #~ msgid "low value"
837
  #~ msgstr "تخفيض القيمة"
838
 
839
- #~ msgid "Access is Denied!"
840
- #~ msgstr "تم رفض الوصول!"
841
-
842
  #~ msgid "Thanks for your report!"
843
  #~ msgstr "شكرا على التقرير الخاص بك!"
844
 
845
  #~ msgid "Error! Please Enter all field"
846
  #~ msgstr "خطأ! الرجاء إدخال جميع الحقول"
847
 
848
- #~ msgid "deleted!"
849
- #~ msgstr "حذفت"
850
-
851
  #~ msgid "All plugin data is deleted"
852
  #~ msgstr "تم حذف جميع بيانات الإضافة"
853
 
@@ -863,9 +1095,6 @@ msgstr "الفارسية"
863
  #~ msgid "Users Online"
864
  #~ msgstr "الإعضاء المتواجدين"
865
 
866
- #~ msgid "Are you sure?"
867
- #~ msgstr "هل أنت متأكد؟"
868
-
869
  #~ msgid "Configuration"
870
  #~ msgstr "التكوين"
871
 
@@ -974,9 +1203,6 @@ msgstr "الفارسية"
974
  #~ msgid "Show Functions"
975
  #~ msgstr "عرض وظائف"
976
 
977
- #~ msgid "Report Problem"
978
- #~ msgstr "تقرير مشكلة"
979
-
980
  #~ msgid "User Online Live"
981
  #~ msgstr "المتواجدين الآن"
982
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-12-20 21:55+0330\n"
6
+ "PO-Revision-Date: 2013-12-22 14:23+0300\n"
7
  "Last-Translator: Hammad Alshammari <al3zz@hotmail.com>\n"
8
  "Language-Team: ABU HATIM <al3zz.com@gmail.com>\n"
9
  "Language: ar_SA\n"
18
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
19
  "content\\plugins\\wp-statistics\n"
20
 
21
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
22
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
 
23
  msgid "Statistical reporting"
24
  msgstr "تقارير الإحصائيات"
25
 
26
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
27
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
28
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:76
 
29
  msgid "Statistics"
30
  msgstr "الإحصائيات"
31
 
32
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
 
33
  msgid "Show site stats in sidebar"
34
  msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
35
 
36
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
37
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:99
38
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
39
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
40
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:189
41
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
 
42
  msgid "User Online"
43
  msgstr "المتواجدين الآن"
44
 
45
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
46
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:191
47
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
 
48
  msgid "Today Visit"
49
  msgstr "زيارات اليوم"
50
 
51
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
52
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:190
53
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
 
54
  msgid "Today Visitor"
55
  msgstr "زوار اليوم"
56
 
57
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
58
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:193
 
59
  msgid "Yesterday Visit"
60
  msgstr "زيارات الأمس"
61
 
62
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
63
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:192
64
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
 
65
  msgid "Yesterday Visitor"
66
  msgstr "زوار الأمس"
67
 
68
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
69
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:24
 
70
  msgid "Week Visit"
71
  msgstr "زيارات الأسبوع"
72
 
73
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
74
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:27
 
75
  msgid "Month Visit"
76
  msgstr "زيارات الشهر"
77
 
78
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
79
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:30
 
80
  msgid "Years Visit"
81
  msgstr "زيارات السنة"
82
 
83
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
84
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:195
85
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
 
86
  msgid "Total Visit"
87
  msgstr "مجموع الزيارات"
88
 
89
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
90
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:194
91
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
 
92
  msgid "Total Visitor"
93
  msgstr "مجموع الزوار"
94
 
95
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
96
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:71
97
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
 
98
  msgid "Search Engine reffered"
99
  msgstr "محركات البحث"
100
 
101
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:105
102
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
 
103
  msgid "Total Posts"
104
  msgstr "إجمالي المشاركات"
105
 
106
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:112
107
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
 
108
  msgid "Total Pages"
109
  msgstr "إجمالي الصفحات"
110
 
111
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:119
112
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
 
113
  msgid "Total Comments"
114
  msgstr "إجمالي التعليقات"
115
 
116
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:126
117
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
 
118
  msgid "Total Spams"
119
  msgstr "إجمالي السبام"
120
 
121
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:133
122
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
 
123
  msgid "Total Users"
124
  msgstr "عدد الاعضاء"
125
 
126
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:140
127
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
 
128
  msgid "Average Posts"
129
  msgstr "متوسط المشاركات"
130
 
131
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:147
132
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
 
133
  msgid "Average Comments"
134
  msgstr "متوسط التعليقات"
135
 
136
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:154
137
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
 
138
  msgid "Average Users"
139
  msgstr "متوسط الاعضاء"
140
 
141
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:161
142
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
 
143
  msgid "Last Post Date"
144
  msgstr "تاريخ آخر مشاركة"
145
 
146
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:48
 
147
  #, php-format
148
  msgid ""
149
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
152
  "إضافة Wordpress Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s\">صفحة "
153
  "الإعدادات</a> وقم بتفعيلها"
154
 
155
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:78
156
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
 
157
  msgid "View Stats"
158
  msgstr "عرض الإحصائيات"
159
 
160
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:79
161
+ msgid "Optimization"
162
+ msgstr "التحسين"
163
+
164
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
165
  msgid "Settings"
166
  msgstr "الإعدادات"
167
 
168
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
 
169
  msgid "Today visitor"
170
  msgstr "زوار اليوم"
171
 
172
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:109
 
173
  msgid "Today visit"
174
  msgstr "زيارات اليوم"
175
 
176
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:114
 
177
  msgid "Yesterday visitor"
178
  msgstr "زيارات الأمس"
179
 
180
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:119
181
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
 
182
  msgid "Yesterday visit"
183
  msgstr "زيارات الأمس"
184
 
185
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:156
186
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
187
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:269
188
  msgid "You do not have sufficient permissions to access this page."
189
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
190
 
191
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:166
 
192
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
193
  msgstr ""
194
  "هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
195
  "تفعيلة مرة أخرى."
196
 
197
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
198
+ msgid "Browser Statistics"
199
+ msgstr "إحصائيات المتصفح"
200
+
201
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
202
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:120
203
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:265
204
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
205
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:24
206
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:35
207
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:18
208
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:112
209
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:212
210
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:256
211
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:300
212
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:345
213
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:440
214
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:546
215
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:587
216
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
217
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
218
+ msgid "Click to toggle"
219
+ msgstr "انقر للتبديل"
220
+
221
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
222
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
223
+ msgid "Browsers"
224
+ msgstr "المتصفحات"
225
+
226
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:46
227
+ msgid "Browsers by Type"
228
+ msgstr "المتصفحات حسب النوع"
229
+
230
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:90
231
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:188
232
+ msgid "Browser share"
233
+ msgstr "مشاركة بالمتصفح"
234
+
235
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:121
236
+ msgid "Platform"
237
+ msgstr "المنصة"
238
+
239
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:141
240
+ msgid "Browsers by Platform"
241
+ msgstr "المتصفحات حسب المنصة"
242
+
243
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:185
244
+ msgid "Platform share"
245
+ msgstr "مشاركة المنصة"
246
+
247
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:266
248
+ #, php-format
249
+ msgid "%s Version"
250
+ msgstr "الإصدار %s"
251
+
252
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:330
253
+ msgid "Browser version share"
254
+ msgstr "نسخة متصفح المشارك"
255
+
256
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
257
+ msgid "Hit Statistics"
258
+ msgstr "احصائية النقرات"
259
+
260
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
261
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:12
262
+ msgid "10 Days"
263
+ msgstr "10 أيام"
264
+
265
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
266
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:13
267
+ msgid "20 Days"
268
+ msgstr "20 يوم"
269
+
270
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
271
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:14
272
+ msgid "30 Days"
273
+ msgstr "30 يو م"
274
+
275
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
276
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
277
+ msgid "2 Months"
278
+ msgstr "شهرين"
279
+
280
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
281
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
282
+ msgid "3 Months"
283
+ msgstr "3 أشهر"
284
+
285
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
286
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
287
+ msgid "6 Months"
288
+ msgstr "6 أشهر"
289
+
290
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
291
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
292
+ msgid "9 Months"
293
+ msgstr "9 أشهر"
294
+
295
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
296
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
297
+ msgid "1 Year"
298
+ msgstr "سنة"
299
+
300
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
301
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:346
302
+ msgid "Hits Statistical Chart"
303
+ msgstr "الرسم البياني لعدد النقرات"
304
+
305
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:43
306
+ msgid "Hits chart in the last"
307
+ msgstr "الرسم البياني في هذه المشاركة"
308
+
309
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:43
310
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:43
311
+ msgid "days"
312
+ msgstr "أيام"
313
+
314
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
315
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:385
316
+ msgid "Number of visits and visitors"
317
+ msgstr "عدد الزيارات والزوار"
318
+
319
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:93
320
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
321
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:411
322
+ msgid "Visitor"
323
+ msgstr "زائر"
324
+
325
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:103
326
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
327
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:421
328
+ msgid "Visit"
329
+ msgstr "زيارة"
330
+
331
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
332
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
333
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
334
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
335
  msgid "To be added soon"
336
  msgstr "تضاف قريبا"
337
 
338
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
339
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:25
340
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:548
 
341
  msgid "Latest search words"
342
  msgstr "آخر كلمات البحث"
343
 
344
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
345
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
346
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:15
347
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
 
348
  msgid "All"
349
  msgstr "الكل"
350
 
351
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
352
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
353
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:81
354
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:506
355
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:568
356
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:93
357
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
358
  msgid "Google"
359
+ msgstr "جوجل"
360
+
361
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:17
362
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
363
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
364
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:516
365
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:570
366
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:103
367
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
368
  msgid "Yahoo!"
369
+ msgstr "ياهو!"
370
+
371
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:18
372
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
373
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
374
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:526
375
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:572
376
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:113
377
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
378
  msgid "Bing"
379
+ msgstr "بينج"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
380
 
381
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:60
382
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
383
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:565
384
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:604
385
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:59
 
386
  msgid "Map"
387
  msgstr "خريطة"
388
 
389
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:83
390
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:100
391
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:105
 
392
  msgid "Page"
393
  msgstr "صفحة"
394
 
395
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:83
396
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:100
397
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:105
 
398
  msgid "From"
399
  msgstr "من"
400
 
401
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
402
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:36
403
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:589
 
404
  msgid "Recent Visitors"
405
  msgstr "الزيارات الأخيرة"
406
 
407
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:76
408
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:266
409
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
410
+ msgid "Country"
411
+ msgstr "الدولة"
412
+
413
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
414
  msgid "Summary Statistics"
415
  msgstr "ملخص الاحصائيات"
416
 
417
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:35
418
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
419
  msgid "Today"
420
  msgstr "اليوم"
421
 
422
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:41
423
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
 
424
  msgid "Yesterday"
425
  msgstr "الأمس"
426
 
427
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:47
 
428
  msgid "Week"
429
  msgstr "أسبوع"
430
 
431
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:53
 
432
  msgid "Month"
433
  msgstr "الشهر"
434
 
435
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:59
 
436
  msgid "Year"
437
  msgstr "سنة"
438
 
439
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:65
440
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:99
 
441
  msgid "Total"
442
  msgstr "المجموع"
443
 
444
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:105
 
445
  #, php-format
446
  msgid ""
447
  "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
448
  msgstr ""
449
  "تاريخ اليوم: <code dir=\"rtl\">%s</code>, الوقت: <code dir=\"rtl\">%s</code>"
450
 
451
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:107
 
452
  msgid "(Adjustment)"
453
  msgstr "(التوافق)"
454
 
455
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
456
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
457
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
458
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:346
459
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:441
460
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:548
461
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:589
462
+ msgid "(See more)"
463
+ msgstr "(عرض المزيد)"
464
 
465
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:144
 
466
  msgid "Graph of Browsers"
467
  msgstr "الرسم البياني من المتصفحات"
468
 
469
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
470
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
471
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:28
 
 
 
 
 
 
472
  msgid "Top referring sites"
473
  msgstr "أعلى المواقع زيارة"
474
 
475
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:220
476
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:90
 
 
 
 
 
 
 
 
477
  msgid "Reference"
478
  msgstr "المرجع"
479
 
480
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:221
 
481
  msgid "Address"
482
  msgstr "العنوان"
483
 
484
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
485
+ msgid "Top 10 Countries"
486
+ msgstr "أعلى 10 دول"
487
+
488
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:264
489
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:18
490
+ msgid "Rank"
491
+ msgstr "الترتيب"
492
+
493
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:265
494
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
495
+ msgid "Flag"
496
+ msgstr "العلم"
497
+
498
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:267
499
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
500
+ msgid "Visitor Count"
501
+ msgstr "عدد الزوار"
502
+
503
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:301
504
  msgid "About plugin"
505
  msgstr "عن الإضافة"
506
 
507
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:304
 
508
  #, php-format
509
  msgid "Plugin version: %s"
510
  msgstr "إصدار الإضافة: %s"
511
 
512
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:305
 
513
  msgid "Translations"
514
  msgstr "الترجمات"
515
 
516
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:306
 
517
  msgid "Support"
518
  msgstr "دعم"
519
 
520
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:306
 
521
  msgid "Farsi"
522
  msgstr "فارسي"
523
 
524
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:307
 
525
  msgid "Facebook"
526
  msgstr "فيس بوك"
527
 
528
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:308
 
529
  msgid "Weblog"
530
  msgstr "مدونتنا"
531
 
532
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:313
 
533
  msgid ""
534
+ "Please donate to WP Statistics. With your help WP Statistics will rule the "
535
+ "world!"
536
  msgstr ""
537
+ "يرجى التبرع لمنتج WP Statistics, فبتبرعكم سوف نصل بمنتج WP Statistics الى "
538
+ "سيادة الووردبريس."
539
 
540
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:316
 
541
  msgid "Donate"
542
  msgstr "تبرع"
543
 
544
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:362
 
 
 
 
 
 
 
545
  msgid "Hits chart in the last 20 days"
546
  msgstr "مخطط الفعاليات في الـ20 يوماً الماضية"
547
 
548
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:441
549
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
550
+ msgid "Search Engine Referrers Statistical Chart"
551
+ msgstr "الرسم البياني لمحركات البحث"
552
 
553
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:457
 
554
  msgid "Referrer search engine chart in the last 20 days"
555
  msgstr "مرجعية محرك البحث التخطيطي في الـ20 يوما الماضية"
556
 
557
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:480
558
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:67
559
  msgid "Number of referrer"
560
  msgstr "عدد الإحالات"
561
 
562
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:8
563
+ msgid "Search Engine Referrers Statistics"
564
+ msgstr "احصائيات محركات البحث"
565
+
566
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:43
567
+ msgid "Referrer search engine chart in the last"
568
+ msgstr "الرسم البياني لمحرك بحث المرجعية في الماضي"
569
+
570
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:9
571
+ msgid "Top Countries"
572
+ msgstr "أفضل الدول"
573
+
574
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
575
  msgid "Referring sites from"
576
  msgstr "مواقع اشارة من"
577
 
578
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
579
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
580
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
581
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
582
+ msgid "Access denied!"
583
+ msgstr "تم رفض الوصول!"
584
+
585
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
586
+ #, php-format
587
+ msgid "<code>%s</code> agent data deleted successfully."
588
+ msgstr "<code>%s</code> حذف بيانات الوكيل بنجاح."
589
+
590
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
591
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
592
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:23
593
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
594
+ msgid "Please select the desired items."
595
+ msgstr "يرجى تحديد العناصر المطلوبة."
596
+
597
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
598
+ #, php-format
599
+ msgid "<code>%s</code> platform data deleted successfully."
600
+ msgstr "<code>%s</code> حذف بيانات المنصة بنجاح."
601
+
602
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:15
603
+ #, php-format
604
+ msgid "<code>%s</code> table data deleted successfully."
605
+ msgstr "<code>%s</code> حذف بيانات الجدول بنجاح."
606
+
607
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:10
608
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:35
609
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:62
610
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
611
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:35
612
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:62
613
+ msgid "Are you sure?"
614
+ msgstr "هل أنت متأكد؟"
615
+
616
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:120
617
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
618
+ msgid "Resources"
619
+ msgstr "الموارد"
620
+
621
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:125
622
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:130
623
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:97
624
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:102
625
+ msgid "Memory usage in PHP"
626
+ msgstr "استخدام الذاكرة في PHP"
627
+
628
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:129
629
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:101
630
+ msgid "Byte"
631
+ msgstr "بايت"
632
+
633
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:136
634
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:108
635
+ #, php-format
636
+ msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
637
+ msgstr "عدد الصفوف في الجدول <code>%sstatistics_useronline</code>"
638
+
639
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:140
640
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:151
641
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:162
642
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:112
643
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:123
644
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:134
645
+ msgid "Row"
646
+ msgstr "صف"
647
+
648
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:141
649
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:152
650
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:163
651
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:113
652
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:124
653
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:135
654
+ msgid "Number of rows"
655
+ msgstr "عدد الصفوف"
656
+
657
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:147
658
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:119
659
+ #, php-format
660
+ msgid "Number of rows in the <code>%sstatistics_visit</code> table"
661
+ msgstr "عدد الصفوف في الجدول <code>%sstatistics_visit</code>"
662
+
663
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:158
664
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:130
665
+ #, php-format
666
+ msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
667
+ msgstr "عدد الصفوف في الجدول <code>%sstatistics_visitor</code>"
668
+
669
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:168
670
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:140
671
+ msgid "Export"
672
+ msgstr "تصدير"
673
+
674
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:173
675
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:145
676
+ msgid "Export from"
677
+ msgstr "التصدير من"
678
+
679
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:178
680
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:194
681
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:216
682
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:239
683
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:263
684
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:150
685
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:166
686
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:188
687
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:211
688
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:235
689
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:114
690
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
691
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:167
692
+ msgid "Please select."
693
+ msgstr "الرجاء اختيار."
694
+
695
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:183
696
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:155
697
+ msgid "Select the table for the output file."
698
+ msgstr "حدد الجدول لملف الإخراج."
699
+
700
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:189
701
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:161
702
+ msgid "Export To"
703
+ msgstr "التصدير إلى"
704
+
705
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:200
706
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:172
707
+ msgid "Select the output file type."
708
+ msgstr "حدد نوع ملف الإخراج."
709
+
710
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:201
711
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:173
712
+ msgid "Start Now!"
713
+ msgstr "ابدأ الآن!"
714
+
715
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:206
716
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:178
717
+ msgid "Empty"
718
+ msgstr "تفريغ"
719
+
720
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:211
721
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:183
722
+ msgid "Empty Table"
723
+ msgstr "تفريغ الجدول"
724
+
725
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:221
726
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:193
727
+ msgid "All data table will be lost."
728
+ msgstr "سيتم فقدان جميع البيانات الجدول."
729
+
730
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:222
731
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:194
732
+ msgid "Clear now!"
733
+ msgstr "مسح الآن!"
734
+
735
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:229
736
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:201
737
+ msgid "Delete User Agent Types"
738
+ msgstr "حذف أنواع وكيل العضو"
739
+
740
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:234
741
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:206
742
+ msgid "Delete Agents"
743
+ msgstr "حذف الوكلاء"
744
+
745
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:249
746
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:221
747
+ msgid "All visitor data will be lost for this agent type."
748
+ msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
749
+
750
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:250
751
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:274
752
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:222
753
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:246
754
+ msgid "Delete now!"
755
+ msgstr "حذف الآن!"
756
+
757
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:258
758
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:230
759
+ msgid "Delete Platforms"
760
+ msgstr "حذف المنصات"
761
+
762
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:273
763
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:245
764
+ msgid "All visitor data will be lost for this platform type."
765
+ msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
766
+
767
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:282
768
+ msgid "GeoIP Options"
769
+ msgstr "خيارات GeoIP"
770
+
771
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:287
772
+ msgid "Populate Location"
773
+ msgstr "تعبئة الموقع"
774
+
775
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:291
776
+ msgid "Populate now!"
777
+ msgstr "تعبئة الآن!"
778
+
779
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:292
780
+ msgid "Populate any missing location fields, this may take a while."
781
+ msgstr "ملء جميع مواقع الحقول المفقودة، وهذا قد يستغرق بعض الوقت."
782
+
783
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:15
784
  msgid "General Settings"
785
  msgstr "إعدادات عامة"
786
 
787
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:25
788
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:37
789
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:49
790
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:61
791
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
792
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:220
793
  msgid "Active"
794
+ msgstr "تنشيط"
795
 
796
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
797
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
798
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
799
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
800
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:221
801
  msgid "Enable or disable this feature"
802
  msgstr "تمكين أو تعطيل هذه الميزة"
803
 
804
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
 
805
  msgid "Visits"
806
  msgstr "مرة"
807
 
808
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
 
809
  msgid "Visitors"
810
  msgstr "الزوار"
811
 
812
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
813
+ msgid "Store entire user agent string"
814
+ msgstr "تخزين كامل سلسلة عامل المستخدم"
815
+
816
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
817
+ msgid "Only enabled for debugging"
818
+ msgstr "تمكين فقط من أجل التصحيح"
819
+
820
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:68
821
  msgid "Check for online users every"
822
  msgstr "تحقق من المتصلين في الموقع في كل"
823
 
824
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:73
 
825
  msgid "Secound"
826
  msgstr "ثانية"
827
 
828
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:74
 
829
  #, php-format
830
  msgid "Time for the check accurate online user in the site. Now: %s Second"
831
  msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
832
 
833
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:80
 
834
  msgid "Show stats in menu bar"
835
  msgstr "إظهار الاحصائيات في شريط القوائم"
836
 
837
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:85
 
838
  msgid "No"
839
  msgstr "لا"
840
 
841
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
 
842
  msgid "Yes"
843
  msgstr "نعم"
844
 
845
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:88
 
846
  msgid "Show stats in admin menu bar"
847
  msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
848
 
849
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:94
 
850
  msgid "Coefficient per visitor"
851
  msgstr "درجة لكل زائر"
852
 
853
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
 
854
  #, php-format
855
  msgid "For each visit to account for several hits. Currently %s."
856
  msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
857
 
858
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
 
859
  msgid "Chart Settings"
860
  msgstr "إعدادات الرسم البياني"
861
 
862
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
 
863
  msgid "Chart type"
864
  msgstr "نوع الرسم البياني"
865
 
866
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:115
 
 
 
 
 
 
 
 
867
  msgid "Line"
868
  msgstr "سطر"
869
 
870
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:116
 
871
  msgid "Spline"
872
  msgstr "شريحة"
873
 
874
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:117
 
875
  msgid "Area"
876
  msgstr "منطقة"
877
 
878
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:118
 
879
  msgid "Area Spline"
880
  msgstr "منطقة منحنية"
881
 
882
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:119
 
883
  msgid "Column"
884
  msgstr "عمود"
885
 
886
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
 
887
  msgid "Bar"
888
  msgstr "شريط"
889
 
890
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
 
891
  msgid "Scatter"
892
  msgstr "تبعثر"
893
 
894
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
 
895
  msgid "Chart type in view stats."
896
  msgstr "نوع الرسم البياني في مشاهدة البيانات."
897
 
898
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:128
 
899
  msgid "Statistical reporting settings"
900
  msgstr "إعدادات تقارير الإحصائيات"
901
 
902
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:146
 
903
  msgid "Time send"
904
  msgstr "وقت الارسال"
905
 
906
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:152
 
907
  msgid "Hourly"
908
  msgstr "كل ساعة"
909
 
910
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
 
911
  msgid "Twice daily"
912
  msgstr "مرتين يوميا"
913
 
914
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:154
 
915
  msgid "daily"
916
  msgstr "يوميا"
917
 
918
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
 
919
  msgid "Select when receiving statistics report."
920
  msgstr "حدد عند استلام إحصاءات التقرير."
921
 
922
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:162
 
923
  msgid "Send Statistical reporting to"
924
  msgstr "إرسال تقارير الإحصائيات إلى"
925
 
926
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:168
 
927
  msgid "Email"
928
  msgstr "البريد الإلكتروني"
929
 
930
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:169
 
931
  msgid "SMS"
932
  msgstr "رسائل نصية"
933
 
934
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
 
935
  msgid "Type Select Get Status Report."
936
  msgstr "حدد نوع الحصول على التقرير."
937
 
938
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
 
939
  #, php-format
940
  msgid ""
941
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
944
  "ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href=\"%s"
945
  "\" target=\"_blank\">Wordpress SMS</a>."
946
 
947
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:181
 
948
  msgid "Send Content Report"
949
  msgstr "أرسل المحتوى"
950
 
951
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:186
 
952
  msgid "Enter the contents of the reports received."
953
  msgstr "أدخل محتويات التقارير الواردة."
954
 
955
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:188
 
956
  msgid "Input data:"
957
  msgstr "إدخال البيانات:"
958
 
959
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:201
960
+ msgid "GeoIP settings"
961
+ msgstr "إعدادات GeoIP"
962
+
963
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:215
964
+ msgid "GeoIP collection"
965
+ msgstr "مجموعة GeoIP"
966
+
967
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:227
968
+ msgid "Update GeoIP Info"
969
+ msgstr "تحديث معلومات GeoIP"
970
+
971
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:232
972
+ msgid "Download GeoIP Database"
973
+ msgstr "تحميل قاعدة بيانات GeoIP"
974
+
975
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:233
976
+ msgid "Save changes on this page to download the update."
977
+ msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
978
+
979
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
980
  msgid "Name"
981
  msgstr "الأسم"
982
 
983
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
 
984
  msgid "Items"
985
  msgstr "البنود"
986
 
987
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
 
988
  msgid "Select type of search engine"
989
  msgstr "حدد نوع من محرك البحث"
990
 
991
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
 
992
  msgid "Type date for last update"
993
  msgstr "اكتب تاريخ آخر تحديث"
994
 
995
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
 
996
  msgid "English"
997
  msgstr "الانجليزية"
998
 
999
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
 
1000
  msgid "Persian"
1001
  msgstr "الفارسية"
1002
 
1003
+ #~ msgid "Firefox"
1004
+ #~ msgstr " فَيَرفُكس"
1005
+
1006
+ #~ msgid "IE"
1007
+ #~ msgstr "اكسبلورر"
1008
+
1009
+ #~ msgid "Ipad"
1010
+ #~ msgstr "آيباد"
1011
+
1012
+ #~ msgid "Android"
1013
+ #~ msgstr "آندرويد"
1014
+
1015
+ #~ msgid "Chrome"
1016
+ #~ msgstr "كروم"
1017
+
1018
+ #~ msgid "Safari"
1019
+ #~ msgstr "سفاري"
1020
+
1021
+ #~ msgid "Opera"
1022
+ #~ msgstr "أوبرا"
1023
+
1024
+ #~ msgid "Other"
1025
+ #~ msgstr "أخرى"
1026
+
1027
+ #~ msgid ""
1028
+ #~ "Please donate to the plugin. With the help of plug-ins you can quickly "
1029
+ #~ "spread."
1030
+ #~ msgstr ""
1031
+ #~ "يرجى التبرع لهذا البرنامج المساعد. وذلك لمساعدتنا في إضافة المكونات "
1032
+ #~ "الاضافية في أسرع وقت."
1033
+
1034
  #~ msgid "Word"
1035
  #~ msgstr "كلمة"
1036
 
1049
  #~ msgid "IP"
1050
  #~ msgstr "IP"
1051
 
 
 
 
1052
  #~ msgid "Province"
1053
  #~ msgstr "الولاية"
1054
 
1074
  #~ msgid "low value"
1075
  #~ msgstr "تخفيض القيمة"
1076
 
 
 
 
1077
  #~ msgid "Thanks for your report!"
1078
  #~ msgstr "شكرا على التقرير الخاص بك!"
1079
 
1080
  #~ msgid "Error! Please Enter all field"
1081
  #~ msgstr "خطأ! الرجاء إدخال جميع الحقول"
1082
 
 
 
 
1083
  #~ msgid "All plugin data is deleted"
1084
  #~ msgstr "تم حذف جميع بيانات الإضافة"
1085
 
1095
  #~ msgid "Users Online"
1096
  #~ msgstr "الإعضاء المتواجدين"
1097
 
 
 
 
1098
  #~ msgid "Configuration"
1099
  #~ msgstr "التكوين"
1100
 
1203
  #~ msgid "Show Functions"
1204
  #~ msgstr "عرض وظائف"
1205
 
 
 
 
1206
  #~ msgid "User Online Live"
1207
  #~ msgstr "المتواجدين الآن"
1208
 
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.7.1
7
- Stable tag: 4.0
8
  License: GPL2
9
 
10
  Complete statistics for your blog.
@@ -159,6 +159,11 @@ The webcrawler detection code has be fixed and will now exclude them from your s
159
  * As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser catagory and the number of hits your site gets.
160
 
161
  == Changelog ==
 
 
 
 
 
162
  = 4.0 =
163
  * Added: GeoIP location support for visitors country.
164
  * Added: Download option in settings for GeoIP database.
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.7.1
7
+ Stable tag: 4.1
8
  License: GPL2
9
 
10
  Complete statistics for your blog.
159
  * As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser catagory and the number of hits your site gets.
160
 
161
  == Changelog ==
162
+ = 4.1 =
163
+ * Language: Arabic (ar) was updated
164
+ * Fixed: small bug in moved the GeoIP database.
165
+ * Updated: update to the spiders list.
166
+
167
  = 4.0 =
168
  * Added: GeoIP location support for visitors country.
169
  * Added: Download option in settings for GeoIP database.
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: 4.0
7
  Author: Mostafa Soufi
8
  Author URI: http://iran98.org/
9
  License: GPL2
@@ -13,7 +13,7 @@ License: GPL2
13
  date_default_timezone_set( get_option('timezone_string') );
14
  }
15
 
16
- define('WP_STATISTICS_VERSION', '4.0');
17
  define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
18
 
19
  load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
@@ -35,10 +35,6 @@ License: GPL2
35
  include_once dirname( __FILE__ ) . '/includes/class/hits.class.php';
36
  }
37
 
38
- $s = new WP_Statistics();
39
- $o = new Useronline();
40
- $h = new Hits();
41
-
42
  include_once dirname( __FILE__ ) . '/includes/functions/functions.php';
43
  include_once dirname( __FILE__ ) . '/widget.php';
44
  include_once dirname( __FILE__ ) . '/schedule.php';
@@ -51,22 +47,27 @@ License: GPL2
51
  if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') ) {
52
  add_action('admin_notices', 'wp_statistics_not_enable');
53
  }
 
 
 
 
54
 
55
- if( get_option('wps_coefficient') ) {
56
- $h->coefficient = get_option('wps_coefficient');
57
- }
58
 
59
- if( get_option('wps_useronline') && !is_admin() )
60
- $o->Check_online();
61
 
62
- if( get_option('wps_visits') && !is_admin() )
63
- $h->Visits();
64
 
65
- if( get_option('wps_visitors') && !is_admin() )
66
- $h->Visitors();
67
 
68
- if( get_option('wps_check_online') ) {
69
- $o->second = get_option('wps_check_online');
 
70
  }
71
 
72
  function wp_statistics_menu() {
@@ -269,8 +270,6 @@ License: GPL2
269
  wp_die(__('You do not have sufficient permissions to access this page.'));
270
  }
271
 
272
- global $o, $h;
273
-
274
  wp_enqueue_style('log-css', plugin_dir_url(__FILE__) . 'styles/style.css', true, '1.0');
275
 
276
  if( get_option('wps_update_geoip') == true ) {
@@ -283,37 +282,37 @@ License: GPL2
283
  $TempFile = download_url( $download_url );
284
  if (is_wp_error( $TempFile ) ) {
285
  print "<div class='updated settings-error'><p><strong>Error downloading GeoIP database from: " . $download_url . "</strong></p></div>\n";
286
- return;
287
  }
 
 
 
 
288
 
289
- // Ungzip File
290
- $ZipHandle = gzopen( $TempFile, 'rb' );
291
- $DBfh = fopen( $DBFile, 'wb' );
 
 
 
 
 
 
 
 
 
 
292
 
293
- if( ! $ZipHandle ) {
294
- print "<div class='updated settings-error'><p><strong>Error could not open downloaded GeoIP database for reading: " . $TempFile . "</strong></p></div>\n";
295
- unlink( $TempFile );
296
- return;
297
- }
298
 
299
- if( !$DBfh ) {
300
- print "<div class='updated settings-error'><p><strong>Error could not open destination GeoIP database for writing: " . $DBFile . "</strong></p></div>\n";
301
- unlink( $TempFile );
302
- return;
303
- }
304
 
305
- while( ( $data = gzread( $ZipHandle, 4096 ) ) != false ) {
306
- fwrite( $DBfh, $data );
 
 
 
307
  }
308
-
309
- gzclose( $ZipHandle );
310
- fclose( $DBfh );
311
-
312
- unlink( $TempFile );
313
-
314
- print "<div class='updated settings-error'><p><strong>GeoIP Database updated successfully!</strong></p></div>\n";
315
-
316
- update_option('wps_update_geoip', false);
317
  }
318
 
319
  include_once dirname( __FILE__ ) . '/includes/setting/settings.php';
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
5
  Description: Summary statistics of blog.
6
+ Version: 4.1
7
  Author: Mostafa Soufi
8
  Author URI: http://iran98.org/
9
  License: GPL2
13
  date_default_timezone_set( get_option('timezone_string') );
14
  }
15
 
16
+ define('WP_STATISTICS_VERSION', '4.1');
17
  define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
18
 
19
  load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
35
  include_once dirname( __FILE__ ) . '/includes/class/hits.class.php';
36
  }
37
 
 
 
 
 
38
  include_once dirname( __FILE__ ) . '/includes/functions/functions.php';
39
  include_once dirname( __FILE__ ) . '/widget.php';
40
  include_once dirname( __FILE__ ) . '/schedule.php';
47
  if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') ) {
48
  add_action('admin_notices', 'wp_statistics_not_enable');
49
  }
50
+
51
+ // We can wait untill the very end of the page to process the statistics, that way the page loads and displays
52
+ // quickly.
53
+ add_action('shutdown', 'wp_statistics_shutdown_action');
54
 
55
+ function wp_statistics_shutdown_action() {
56
+ $o = new Useronline();
57
+ $h = new Hits();
58
 
59
+ if( get_option('wps_useronline') && !is_admin() )
60
+ $o->Check_online();
61
 
62
+ if( get_option('wps_visits') && !is_admin() )
63
+ $h->Visits();
64
 
65
+ if( get_option('wps_visitors') && !is_admin() )
66
+ $h->Visitors();
67
 
68
+ if( get_option('wps_check_online') ) {
69
+ $o->second = get_option('wps_check_online');
70
+ }
71
  }
72
 
73
  function wp_statistics_menu() {
270
  wp_die(__('You do not have sufficient permissions to access this page.'));
271
  }
272
 
 
 
273
  wp_enqueue_style('log-css', plugin_dir_url(__FILE__) . 'styles/style.css', true, '1.0');
274
 
275
  if( get_option('wps_update_geoip') == true ) {
282
  $TempFile = download_url( $download_url );
283
  if (is_wp_error( $TempFile ) ) {
284
  print "<div class='updated settings-error'><p><strong>Error downloading GeoIP database from: " . $download_url . "</strong></p></div>\n";
 
285
  }
286
+ else {
287
+ // Ungzip File
288
+ $ZipHandle = gzopen( $TempFile, 'rb' );
289
+ $DBfh = fopen( $DBFile, 'wb' );
290
 
291
+ if( ! $ZipHandle ) {
292
+ print "<div class='updated settings-error'><p><strong>Error could not open downloaded GeoIP database for reading: " . $TempFile . "</strong></p></div>\n";
293
+ unlink( $TempFile );
294
+ }
295
+ else {
296
+ if( !$DBfh ) {
297
+ print "<div class='updated settings-error'><p><strong>Error could not open destination GeoIP database for writing: " . $DBFile . "</strong></p></div>\n";
298
+ unlink( $TempFile );
299
+ }
300
+ else {
301
+ while( ( $data = gzread( $ZipHandle, 4096 ) ) != false ) {
302
+ fwrite( $DBfh, $data );
303
+ }
304
 
305
+ gzclose( $ZipHandle );
306
+ fclose( $DBfh );
 
 
 
307
 
308
+ unlink( $TempFile );
 
 
 
 
309
 
310
+ print "<div class='updated settings-error'><p><strong>GeoIP Database updated successfully!</strong></p></div>\n";
311
+
312
+ update_option('wps_update_geoip', false);
313
+ }
314
+ }
315
  }
 
 
 
 
 
 
 
 
 
316
  }
317
 
318
  include_once dirname( __FILE__ ) . '/includes/setting/settings.php';