WP Statistics - Version 3.1.0

Version Description

  • Bug Fix: Statistics Menu bar.
  • Bug Fix: Referral link of the last visitors.
  • Added: Latest all search words with full details.
  • Added: Recent all visitors with full details.
  • Enhancement: Optimized View Statistics.
  • Language: updated.
  • Language: Arabic was updated.
  • Remove: IP Information in setting page.
Download this release

Release Info

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

Code changes from version 3.0.2 to 3.1.0

images/map.png ADDED
Binary file
includes/class/pagination.class.php ADDED
@@ -0,0 +1,550 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Pagination Class
4
+ *
5
+ * This class displays a pagination navigation bar complete with links to first, last,
6
+ * previous, next, and all pages. This class handles cookie setting, page bounds checking/
7
+ * redirection, appropriate error reporting, CSS styling, and POST/GET retrieval all
8
+ * internally.
9
+ *
10
+ * PHP version 5
11
+ *
12
+ * @author Dane Gardow <dane.g87@gmail.com>
13
+ * @copyright 2013 Dane Gardow
14
+ * @date 01 January 2013
15
+ * @version 1.0
16
+ * @license Free
17
+ *
18
+ ******************************************************************************************/
19
+
20
+ if(!class_exists("Pagination")): // Prevent multiple class definitions
21
+
22
+ class Pagination
23
+ {
24
+ /*******************************************************
25
+ PROPERTIES / DATA MEMBERS
26
+ *******************************************************/
27
+
28
+ // Edit these as you desire
29
+ const DEFAULT_ENTRIES_DISPLAY = 10; // Default number of entries to display per page
30
+ const PAGE_GETVAR_NAME = "page"; // Name of GET variable name for page values (i.e., example.php?page=1)
31
+
32
+ private $_paginationID = "pagination"; // ID Name of pagination object "pagination" is default
33
+ // used also for form name for select options
34
+
35
+ // Do not edit these values; they are simply null initializations
36
+ private $_totalEntries = null; // Total number of entries (usually supplied by MySQL query)
37
+ private $_pagesPerSection = null; // Total number of pages displayed per section (supplied by admin)
38
+ private $_entriesPerPage = null; // Total number of entries displayed per page (supplied by user)
39
+ private $_currentPage = null; // Current page viewed by user
40
+ private $_displayOptions = array(); // Array of options for viewing how many entries per page (supplied by user)
41
+ private $_errors = array(); // Array of encountered error messages
42
+ private $_styles = array(); // Array of CSS styles for pagination navigation display
43
+
44
+
45
+
46
+
47
+ /*******************************************************
48
+ CONSTRUCTOR
49
+ *******************************************************/
50
+
51
+ function __construct($totalEntries, $pagesPerSection, $options = "", $paginationID = "", $stylePageOff = "",
52
+ $stylePageOn = "", $styleErrors = "", $styleSelect = "")
53
+ {
54
+ $this->setPaginationID($paginationID); // Set ID name of pagination object
55
+ $this->setTotalEntries($totalEntries); // Set total entries
56
+ $this->setPagesPerSection($pagesPerSection); // Set pages per section
57
+ $this->setDisplayOptions($options); // Set viewing display options
58
+ $this->setEntriesPerPage(); // Set entries per page (input from POST or cookies)
59
+ $this->setCurrentPage(); // Set current page (input from GET)
60
+ // ! This function must follow after setEntriesPerPage()
61
+ $this->setStyles($stylePageOff, $stylePageOn,
62
+ $styleSelect, $styleErrors); // Set CSS styles for pagination navigation display
63
+ }
64
+
65
+
66
+
67
+ /*******************************************************
68
+ UTILITY FUNCTIONS
69
+ *******************************************************/
70
+
71
+ public function deleteCookie() // deletes the cookie if it exists
72
+ {
73
+ $cookieVar = $this->_getPOSTVarName();
74
+
75
+ if(isset($_COOKIE[$cookieVar])) // If cookie is set
76
+ {
77
+ $_COOKIE[$cookieVar] = ""; // Clear cookie
78
+ setcookie($cookieVar, "", time()-3600, "/"); // Delete cookie
79
+ }
80
+ }
81
+
82
+ private function _getURL($input = 1) // returns appropriate URL with all GET variables intact
83
+ { // updates only the particular GET variable in question
84
+ $getVars = $_GET; // Get all GET variables
85
+
86
+ /* Uncomment this if you need to exclude any GET variables (due to HTACCESS issues, for example) from being
87
+ * processed in the ensuing URL. Simply enter in the GET variable name in the unset(...) function below.
88
+ unset($getVars["foo"], $getVars["bar"], ... ); // Remove any so they do not appear in URL
89
+ */
90
+
91
+ $output = '?'.http_build_query(array_merge($getVars, array($this->_getIDGETVarName()=>$input)));
92
+ $output .= '#'. $this->getPaginationID(); // Add #xxx at the end of URL for auto-scrolling
93
+
94
+ return $output;
95
+ }
96
+
97
+ private function _isError() // determines if an error exists and registers any errors
98
+ {
99
+ if($this->_errors) // If error already exists, return
100
+ return true;
101
+
102
+ if(!$this->_totalEntries) // If total entries not set
103
+ $this->_errors[] = "The value for <strong>total entries</strong> has not been specified.";
104
+
105
+ if(!$this->_displayOptions) // If display options not set
106
+ $this->_errors[] = "The values for <strong>display options</strong> have not been specified.";
107
+
108
+ if(!$this->_entriesPerPage) // If entries per page not set
109
+ $this->_errors[] = "The value for <strong>entries per page</strong> has not been specified.";
110
+
111
+ if(!$this->_currentPage) // If current page not set
112
+ $this->_errors[] = "The value for <strong>current page</strong> has not been specified.";
113
+
114
+ return ($this->_errors) ? true : false;
115
+ }
116
+
117
+ private function _validEntry($input) // determines if input is valid
118
+ {
119
+ if(is_array($input)) // If array
120
+ {
121
+ foreach($input as $element)
122
+ { // Recursion: evaluate each array element
123
+ if(!$this->_validEntry($element)) // If invalid
124
+ return false;
125
+ }
126
+
127
+ return true; // If function makes it to this point, it is valid
128
+ }
129
+ else // If not array
130
+ {
131
+ if( (preg_match("/^\d+$/",$input) && $input > 0) || strtolower($input) == "all") // If positive digit or "all"
132
+ return true;
133
+ else
134
+ return false;
135
+ }
136
+ }
137
+
138
+ private function _navBox($text, $destinationPage, $end = 0) // returns span-encased link for pagination bar
139
+ {
140
+ switch($end)
141
+ {
142
+ case 1:
143
+ $title = "First page";
144
+ break;
145
+ case 2:
146
+ $title = "Previous page";
147
+ break;
148
+ case 3:
149
+ $title = "Next page";
150
+ break;
151
+ case 4:
152
+ $title = "Last page (". $this->getTotalPages() .")";
153
+ break;
154
+ default:
155
+ $title = "";
156
+ break;
157
+ }
158
+
159
+ $title = ($end > 0 && $title != "") ? 'title="' . $title . '"' : '';
160
+
161
+ $style = $this->_styles["pageOff"];
162
+
163
+ // Determine Style
164
+ $style = ($this->_currentPage == $destinationPage && !$end) ? $this->_styles["pageOn"] : $this->_styles["pageOff"];
165
+
166
+ // Determine Link URL/Text
167
+ $url = "";
168
+
169
+ if($this->_currentPage != $destinationPage // If current page is not same as destination page
170
+ && $destinationPage <= $this->getTotalPages() // and destination page does not exceed last page
171
+ && $destinationPage >= 1) // and destination page is not less than first page
172
+ {
173
+ $text = '<a href="'. $this->_getURL($destinationPage) .'">'. $text .'</a>'; // then make $text a link
174
+ }
175
+
176
+ if($style)
177
+ $style = 'class="'. $style .'"';
178
+
179
+ $onClick = ($url) ? "onclick=\"location.href='". $url ."'\"" : ""; // Determine if span element is clickable
180
+
181
+ return '<span '. $style . $title .' '. $onClick .'>'. $text .'</span>';
182
+ }
183
+
184
+
185
+
186
+ /*******************************************************
187
+ DISPLAY FUNCTIONS
188
+ *******************************************************/
189
+
190
+ public function display() // displays the pagination bar
191
+ {
192
+ if($this->_isError()) // If error encountered, do not display, but display errors
193
+ return $this->displayErrors();
194
+
195
+ $firstPage = 1;
196
+ $previousPage = $this->_currentPage - 1;
197
+ $nextPage = $this->_currentPage + 1;
198
+ $lastPage = $this->getTotalPages();
199
+
200
+ $totalpages = $this->getTotalPages();
201
+
202
+ $pagesPerSection = $this->getPagesPerSection();
203
+
204
+ $sectionStart = $this->_currentPage - floor($pagesPerSection / 2); // Section start is current page # minus half the # of pages per section
205
+
206
+ if($sectionStart <= 0) // Adjust section start to 1 (first page) if # pages between 1st page
207
+ $sectionStart = 1; // and current page is less than half the # of pages per section
208
+
209
+ $sectionEnd = $sectionStart + $pagesPerSection - 1; // Section end is # pages per section after section start,
210
+ // minus 1 (otherwise # of pages per section will exceed given amount by 1)
211
+
212
+ if($sectionEnd > $lastPage) // Adjust section end to last page if section end exceeds last page
213
+ $sectionEnd = $lastPage;
214
+
215
+ $sectionStart = $sectionEnd - $pagesPerSection + 1; // Adjust section start to # of pages behind section end
216
+
217
+ $output = $this->_navBox("&lt;&lt;", $firstPage, 1); // First page
218
+ $output .= $this->_navBox("&lt;", $previousPage, 2); // Previous page
219
+
220
+ for($i = $sectionStart; $i <= $sectionEnd; ++$i)
221
+ $output .= $this->_navBox($i, $i); // Pagination
222
+
223
+ $output .= $this->_navBox("&gt;", $nextPage, 3); // Next Page
224
+ $output .= $this->_navBox("&gt;&gt;", $lastPage, 4); // Last Page
225
+
226
+ return $output;
227
+ }
228
+
229
+ public function displayErrors() // displays the errors encountered
230
+ {
231
+ if(!$this->_errors)
232
+ return "No errors were encountered.";
233
+
234
+ $words = (count($this->_errors) > 1) ? "errors were" : "error was";
235
+
236
+ // Determine CSS styling for error reporting
237
+ if($this->_styles["errors"])
238
+ $css = 'class="'. $this->_styles["errors"] .'"';
239
+ else
240
+ $css = '';
241
+
242
+ $output = '
243
+ <div '. $css .'>
244
+ The following '. $words .' encountered while using the '. get_class($this) .' class:<br/><br/>
245
+ <ul>';
246
+
247
+ foreach($this->_errors as $error)
248
+ $output .= '<li>'. $error .'</li>';
249
+
250
+ $output .= '
251
+ </ul>
252
+ </div>';
253
+
254
+ return $output;
255
+ }
256
+
257
+ public function displaySelectInterface() // displays the <select> interface for choosing display amount
258
+ {
259
+ if(count($this->_displayOptions) < 2) // If only 1 or fewer options, do not display
260
+ return;
261
+
262
+ if($this->_isError()) // If error encountered, do not display
263
+ return;
264
+
265
+ static $count = 0; // This counts how many times function is run.
266
+ // This variable value is tacked on the end of the form name which
267
+ // will enable multiple instances of the display interface form
268
+
269
+ $paginationID = $this->getPaginationID();
270
+
271
+ $formName = $paginationID. '_select_form';
272
+
273
+ // Determine CSS styling for <select>
274
+ if($this->_styles["select"])
275
+ $css = 'class="'. $this->_styles["select"] .'"';
276
+ else
277
+ $css = "";
278
+
279
+ $formNumber = ($count) ? $count : "";
280
+
281
+ $output = '
282
+ <form name="'. $formName . $formNumber .'" method="post" style="display:inline-block;" action="'. $this->_getURL($this->_currentPage) .'">
283
+ Show:
284
+ <select '. $css .' name="'. $this->_getPOSTVarName() .'" OnChange ="'. $formName . $formNumber .'.submit()">';
285
+
286
+ foreach($this->_displayOptions as $line)
287
+ {
288
+ if($this->_entriesPerPage == $line || $this->_entriesPerPage == $this->_totalEntries) // If option equals entries per page
289
+ $selected = "selected"; // or entries per page equals total entries
290
+ else // then select option, otherwise
291
+ $selected = ""; // leave unselected
292
+
293
+ $output .= '<option value="'. $line .'" '. $selected .'>'. $line .'</option>';
294
+ }
295
+
296
+ $output .= '
297
+ </select>
298
+ <noscript><input type="submit" name="paginationDisplaySubmit" value="Display"/></noscript>
299
+ </form>';
300
+
301
+ ++$count; // Increase # of times this function has run
302
+
303
+ return $output;
304
+ }
305
+
306
+
307
+
308
+ /*******************************************************
309
+ SET FUNCTIONS
310
+ *******************************************************/
311
+
312
+ public function setCurrentPage() // sets the currently accessed page from GET value
313
+ {
314
+ $idVar = $this->_getIDGETVarName();
315
+
316
+ if(isset($_GET[$idVar])) // If GET set
317
+ $page = $_GET[$idVar]; // Retrieve page from GET
318
+ else
319
+ $page = 1; // Otherwise use first page
320
+
321
+ if($page < 1 || !preg_match("/^\d+$/", $page)) // If page is less than 1 or page value not a digit
322
+ {
323
+ header("Location: ". $this->_getURL()); // No argument for _getURL() sets it to 1 (first page)
324
+ exit;
325
+ }
326
+
327
+ if($page > $this->getTotalPages() && $this->getTotalPages() != 0) // If page exceeds last page
328
+ { // 2nd condition prevents infinite loop should it equal 0
329
+ header("Location: ". $this->_getURL($this->getTotalPages()));
330
+ exit;
331
+ }
332
+
333
+ $this->_currentPage = $page;
334
+ }
335
+
336
+ public function setDisplayOptions($input) // sets the user-specified display amount
337
+ {
338
+ if(!$this->_validEntry($input)) // If invalid entry encountered, register error and exit function
339
+ {
340
+ if(is_array($input)) // If array
341
+ {
342
+ $argument = "";
343
+
344
+ foreach($input as $key=>$element)
345
+ {
346
+ if($key > 0)
347
+ $argument .= ", ";
348
+
349
+ $argument .= $element; // Save all elements in string
350
+ }
351
+ }
352
+ else // If not array
353
+ {
354
+ $argument = $input;
355
+ }
356
+
357
+ $this->_errors[] = "The value(s) set for <strong>display options</strong> is/are invalid: ". $argument;
358
+
359
+ return;
360
+ }
361
+
362
+ if(!is_array($input) && strtolower($input) == "all") // If Not Array and "All" selected
363
+ $input = $this->_totalEntries; // Set total entries value
364
+
365
+ $this->_displayOptions = $input;
366
+ }
367
+
368
+ public function setEntriesPerPage() // sets entries per page amount from POST or COOKIE values
369
+ {
370
+ if($this->_errors) // If an error, quit
371
+ return;
372
+
373
+ $varName = $this->_getPOSTVarName();
374
+
375
+ if(count($this->_displayOptions) > 1) // If more than 1 display option
376
+ {
377
+ $value = $this->_displayOptions[0]; // Default is first selection
378
+
379
+ if(isset($_POST[$varName])) // If POST is set
380
+ {
381
+ if(in_array($_POST[$varName], $this->_displayOptions)) // Check for valid post value
382
+ {
383
+ $value = $_POST[$varName];
384
+ setcookie($varName, $value, 604800 + time(), "/"); // Set cookie
385
+ $_COOKIE[$varName] = $value;
386
+ }
387
+ else // If invalid post value
388
+ {
389
+ $value = self::DEFAULT_ENTRIES_DISPLAY; // Set to default if invalid
390
+ }
391
+ }
392
+ elseif(isset($_COOKIE[$varName])) // If POST not set, but COOKIE set
393
+ {
394
+ // Check for valid cookie value
395
+ if(in_array($_COOKIE[$varName], $this->_displayOptions)) // Check for valid cookie value
396
+ {
397
+ $value = $_COOKIE[$varName]; // Set to value if valid
398
+ }
399
+ else
400
+ {
401
+ $value = self::DEFAULT_ENTRIES_DISPLAY; // Set to default if invalid
402
+ $this->deleteCookie(); // Delete invalid cookie
403
+ }
404
+ }
405
+ }
406
+ else // If only one option, set either to default or displayOptions value
407
+ {
408
+ $value = ($this->_displayOptions) ? $this->_displayOptions : self::DEFAULT_ENTRIES_DISPLAY;
409
+ }
410
+
411
+ if(strtolower($value) == "all") // If set to "All", use total entries
412
+ $value = $this->_totalEntries;
413
+
414
+ $this->_entriesPerPage = $value;
415
+ }
416
+
417
+ public function setPagesPerSection($input) // sets # of pages per section
418
+ {
419
+ if(!$this->_validEntry($input))
420
+ {
421
+ $this->_errors[] = "The value set for <strong>pages per section</strong> is invalid: ". $input;
422
+ return;
423
+ }
424
+
425
+ $this->_pagesPerSection = $input;
426
+ }
427
+
428
+ public function setPaginationID($input)
429
+ {
430
+ if($input)
431
+ {
432
+ if(preg_match("/^\d+$/",$input[0])) // Check if first character is a digit
433
+ {
434
+ $this->_errors[] = "The first character of the <strong>pagination ID</strong> cannot be a number: ". $input;
435
+ return; // cannot be a digit because variable names cannot start with digits,
436
+ } // and this value will be used as a variable name
437
+
438
+ $this->_paginationID = $input;
439
+ }
440
+ }
441
+
442
+ public function setStyles($pageOff = "", $pageOn = "", $select = "", $errors = "") // sets CSS style class names
443
+ {
444
+ $this->_styles = array(
445
+ "pageOff" => $pageOff,
446
+ "pageOn" => $pageOn,
447
+ "select" => $select,
448
+ "errors" => $errors
449
+ );
450
+ }
451
+
452
+ public function setTotalEntries($input) // sets total number of entries
453
+ {
454
+ if(!$this->_validEntry($input))
455
+ {
456
+ $this->_errors[] = "The value set for <strong>total entries</strong> is invalid: ". $input;
457
+ return;
458
+ }
459
+
460
+ $this->_totalEntries = $input;
461
+ }
462
+
463
+
464
+
465
+
466
+ /*******************************************************
467
+ GET FUNCTIONS
468
+ *******************************************************/
469
+
470
+ private function _getIDGETVarName() // returns GET variable name for pagination pages
471
+ {
472
+ return $this->getPaginationID() .'-'. self::PAGE_GETVAR_NAME;
473
+ }
474
+
475
+ private function _getPOSTVarName() // returns POST variable name for select/cookie entities
476
+ {
477
+ return $this->getPaginationID().'Display';
478
+ }
479
+
480
+ public function getCurrentPage() // returns the currently accessed page number
481
+ {
482
+ if(!$this->_currentPage) // If not set, return first page
483
+ return 1;
484
+ else
485
+ return $this->_currentPage;
486
+ }
487
+
488
+ public function getPagesPerSection() // returns the # of pages per section
489
+ {
490
+ if(!$this->_pagesPerSection) // If not set, set error and return 0
491
+ {
492
+ $this->_errors[] = "The value for <strong>pages per section</strong> has not been set.";
493
+ return 0;
494
+ }
495
+
496
+ if($this->_pagesPerSection > $this->getTotalPages()) // If per section is greater than total pages
497
+ return $this->getTotalPages(); // Return total pages
498
+ else
499
+ return $this->_pagesPerSection; // Otherwise return per section
500
+ }
501
+
502
+ public function getPaginationID() // returns ID name for pagination object
503
+ {
504
+ return $this->_paginationID;
505
+ }
506
+
507
+ public function getTotalPages() // returns total pages
508
+ {
509
+ if($this->_errors) // If there is an error, return 0
510
+ return 0;
511
+
512
+ if($this->_entriesPerPage == 0) // Prevent division by zero
513
+ return 0;
514
+
515
+ return ceil($this->_totalEntries / $this->_entriesPerPage); // Total pages: total # of entries divided by total entries per page
516
+ }
517
+
518
+ public function getEntryStart() // returns the start entry for the page
519
+ {
520
+ if($this->_isError()) // If error encountered
521
+ return 0;
522
+
523
+ return ($this->_currentPage - 1) * $this->_entriesPerPage; // Entry start: 1 less than current page multiplied by total entries per page
524
+ }
525
+
526
+ public function getEntryEnd() // returns the last entry for the page
527
+ {
528
+ if($this->_isError()) // If error encountered
529
+ return 0;
530
+
531
+ if($this->_currentPage == $this->getTotalPages()) // If current page is last page
532
+ return $this->_totalEntries - $this->getEntryStart(); // then entry end is total entries minus start entry
533
+ else
534
+ return $this->_entriesPerPage; // otherwise entry end is # of entries per page
535
+ }
536
+
537
+ public function getEntryEndFF() // Flat-file version of the above getEntryEnd() function
538
+ {
539
+ if($this->_isError()) // If error encountered
540
+ return 0;
541
+
542
+ if($this->_currentPage == $this->getTotalPages()) // If current page is last page
543
+ return $this->_totalEntries; // then entry end is total entries minus start entry
544
+ else
545
+ return $this->getEntryStart() + $this->_entriesPerPage; // otherwise entry end is # of entries per page after start
546
+ }
547
+ }
548
+
549
+ endif; // Prevent multiple class definitions
550
+ ?>
includes/class/statistics.class.php CHANGED
@@ -11,9 +11,7 @@
11
 
12
  public function __construct() {
13
 
14
- global $wpdb;
15
-
16
- global $table_prefix;
17
 
18
  $this->db = $wpdb;
19
  $this->tb_prefix = $table_prefix;
@@ -174,7 +172,7 @@
174
 
175
  public function IP_Location($ip) {
176
 
177
- $this->result = file_get_contents("http://api.hostip.info/get_json.php?ip={$ip}&position=true");
178
 
179
  $this->result = json_decode($this->result);
180
 
11
 
12
  public function __construct() {
13
 
14
+ global $wpdb, $table_prefix;
 
 
15
 
16
  $this->db = $wpdb;
17
  $this->tb_prefix = $table_prefix;
172
 
173
  public function IP_Location($ip) {
174
 
175
+ $this->result = file_get_contents("http://freegeoip.net/json/{$ip}");
176
 
177
  $this->result = json_decode($this->result);
178
 
includes/log/last-search.php ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script type="text/javascript">
2
+ jQuery(document).ready(function(){
3
+ jQuery('.show-map').click(function(){
4
+ alert('<?php _e('To be added soon', 'wp_statistics'); ?>');
5
+ });
6
+ });
7
+ </script>
8
+
9
+ <div class="wrap">
10
+ <?php screen_icon('options-general'); ?>
11
+ <h2><?php _e('Latest search words', 'wp_statistics'); ?></h2>
12
+ <ul class="subsubsub">
13
+ <li class="all"><a <?php if(!$referred) { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-search"><?php _e('All', 'wp_statistics'); ?> <span class="count">(<?php echo $result['all']; ?>)</span></a>|</li>
14
+ <li><a <?php if($referred == 'google.com') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=google.com"> <?php echo _e('Google', 'wp_statistics'); ?> <span class="count">(<?php echo $result['google']; ?>)</span></a>|</li>
15
+ <li><a <?php if($referred == 'yahoo.com') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=yahoo.com"> <?php echo _e('Yahoo!', 'wp_statistics'); ?> <span class="count">(<?php echo $result['yahoo']; ?>)</span></a>|</li>
16
+ <li><a <?php if($referred == 'bing.com') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=bing.com"> <?php echo _e('Bing', 'wp_statistics'); ?> <span class="count">(<?php echo $result['bing']; ?>)</span></a></li>
17
+ </ul>
18
+ <div class="postbox-container" id="last-log">
19
+ <div class="metabox-holder">
20
+ <div class="meta-box-sortables">
21
+ <div class="postbox">
22
+ <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
23
+ <h3 class="hndle"><span><?php _e('Latest search words', 'wp_statistics'); ?></span></h3>
24
+ <div class="inside">
25
+ <?php
26
+ global $s;
27
+
28
+ // Instantiate pagination object with appropriate arguments
29
+ $pagesPerSection = 10;
30
+ $options = array(25, "All");
31
+ $stylePageOff = "pageOff";
32
+ $stylePageOn = "pageOn";
33
+ $styleErrors = "paginationErrors";
34
+ $styleSelect = "paginationSelect";
35
+
36
+ $Pagination = new Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
37
+
38
+ $start = $Pagination->getEntryStart();
39
+ $end = $Pagination->getEntryEnd();
40
+
41
+ // Retrieve MySQL data
42
+ if( $referred ) {
43
+ $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%{$referred}%' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
44
+ } else {
45
+ $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%google.com%' OR `referred` LIKE '%yahoo.com%' OR `referred` LIKE '%bing.com%' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
46
+ }
47
+
48
+ echo "<div class='log-latest'>";
49
+
50
+ foreach($result as $items) {
51
+
52
+ echo "<div class='log-item'>";
53
+ echo "<div class='log-referred'>{$s->Search_Engine_QueryString($items->referred)}</div>";
54
+ echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
55
+ echo "<div class='clear'></div>";
56
+ echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
57
+
58
+ if( $s->Check_Search_Engines('google.com', $items->referred) ) {
59
+ 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>";
60
+ } else if( $s->Check_Search_Engines('yahoo.com', $items->referred) ) {
61
+ 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>";
62
+ } else if( $s->Check_Search_Engines('bing.com', $items->referred) ) {
63
+ 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>";
64
+ }
65
+
66
+ echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
67
+ echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 150)."[...]</a></div>";
68
+ echo "</div>";
69
+
70
+ }
71
+
72
+ echo "</div>";
73
+ ?>
74
+ </div>
75
+ </div>
76
+
77
+ <div class="pagination-log">
78
+ <?php echo $Pagination->display(); ?>
79
+ <p id="result-log"><?php echo ' ' . __('Page', 'wp_statistics') . ' ' . $Pagination->getCurrentPage() . ' ' . __('From', 'wp_statistics') . ' ' . $Pagination->getTotalPages(); ?></p>
80
+ </div>
81
+ </div>
82
+ </div>
83
+ </div>
84
+ </div>
includes/log/last-visitor.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script type="text/javascript">
2
+ jQuery(document).ready(function(){
3
+ jQuery('.show-map').click(function(){
4
+ alert('<?php _e('To be added soon', 'wp_statistics'); ?>');
5
+ });
6
+ });
7
+ </script>
8
+
9
+ <div class="wrap">
10
+ <?php screen_icon('options-general'); ?>
11
+ <h2><?php _e('Recent Visitors', 'wp_statistics'); ?></h2>
12
+ <ul class="subsubsub">
13
+ <li class="all"><a <?php if(!$agent) { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-visitor"><?php _e('All', 'wp_statistics'); ?> <span class="count">(<?php echo $result[2]; ?>)</span></a>|</li>
14
+ <li><a <?php if($agent == 'Firefox') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent=Firefox"> <?php echo _e('Firefox', 'wp_statistics'); ?> <span class="count">(<?php echo wp_statistics_useragent('Firefox'); ?>)</span></a>|</li>
15
+ <li><a <?php if($agent == 'IE') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent=IE"> <?php echo _e('IE', 'wp_statistics'); ?> <span class="count">(<?php echo wp_statistics_useragent('IE'); ?>)</span></a>|</li>
16
+ <li><a <?php if($agent == 'Ipad') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent=Ipad"> <?php echo _e('Ipad', 'wp_statistics'); ?> <span class="count">(<?php echo wp_statistics_useragent('Ipad'); ?>)</span></a>|</li>
17
+ <li><a <?php if($agent == 'Android') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent=Android"> <?php echo _e('Android', 'wp_statistics'); ?> <span class="count">(<?php echo wp_statistics_useragent('Android'); ?>)</span></a>|</li>
18
+ <li><a <?php if($agent == 'Chrome') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent=Chrome"> <?php echo _e('Chrome', 'wp_statistics'); ?> <span class="count">(<?php echo wp_statistics_useragent('Chrome'); ?>)</span></a>|</li>
19
+ <li><a <?php if($agent == 'Safari') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent=Safari"> <?php echo _e('Safari', 'wp_statistics'); ?> <span class="count">(<?php echo wp_statistics_useragent('Safari'); ?>)</span></a>|</li>
20
+ <li><a <?php if($agent == 'Opera') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent=Opera"> <?php echo _e('Opera', 'wp_statistics'); ?> <span class="count">(<?php echo wp_statistics_useragent('Opera'); ?>)</span></a>|</li>
21
+ <li><a <?php if($agent == 'unknown') { echo 'class="current"'; } ?>href="?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent=unknown"> <?php echo _e('Other', 'wp_statistics'); ?> <span class="count">(<?php echo wp_statistics_useragent('unknown'); ?>)</span></a></li>
22
+ </ul>
23
+ <div class="postbox-container" id="last-log">
24
+ <div class="metabox-holder">
25
+ <div class="meta-box-sortables">
26
+ <div class="postbox">
27
+ <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
28
+ <h3 class="hndle"><span><?php _e('Recent Visitors', 'wp_statistics'); ?></span></h3>
29
+ <div class="inside">
30
+ <?php
31
+ global $s;
32
+
33
+ // Instantiate pagination object with appropriate arguments
34
+ $pagesPerSection = 10;
35
+ $options = array(25, "All");
36
+ $stylePageOff = "pageOff";
37
+ $stylePageOn = "pageOn";
38
+ $styleErrors = "paginationErrors";
39
+ $styleSelect = "paginationSelect";
40
+
41
+ $Pagination = new Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
42
+
43
+ $start = $Pagination->getEntryStart();
44
+ $end = $Pagination->getEntryEnd();
45
+
46
+ // Retrieve MySQL data
47
+ if( $agent ) {
48
+ $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `agent` LIKE '%{$agent}%' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
49
+ } else {
50
+ $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
51
+ }
52
+
53
+ echo "<div class='log-latest'>";
54
+
55
+ foreach($result as $items) {
56
+
57
+ echo "<div class='log-item'>";
58
+ echo "<div class='log-referred'><a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
59
+ echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
60
+ echo "<div class='clear'></div>";
61
+ echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
62
+ echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
63
+ echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 150)."[...]</a></div>";
64
+ echo "</div>";
65
+
66
+ }
67
+
68
+ echo "</div>";
69
+ ?>
70
+ </div>
71
+ </div>
72
+
73
+ <div class="pagination-log">
74
+ <?php echo $Pagination->display(); ?>
75
+ <p id="result-log"><?php echo ' ' . __('Page', 'wp_statistics') . ' ' . $Pagination->getCurrentPage() . ' ' . __('From', 'wp_statistics') . ' ' . $Pagination->getTotalPages(); ?></p>
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </div>
80
+ </div>
includes/log/log.php CHANGED
@@ -1,3 +1,11 @@
 
 
 
 
 
 
 
 
1
  <div class="wrap">
2
  <?php screen_icon('options-general'); ?>
3
  <h2><?php echo get_admin_page_title(); ?></h2>
@@ -208,9 +216,10 @@
208
  <h3 class="hndle"><span><?php _e('About plugin', 'wp_statistics'); ?></span></h3>
209
  <div class="inside">
210
  <div id="about-links">
211
- <p><?php echo sprintf(__('Plugin version: %s', 'wp_statistics'), WP_STATISTICS_VERSION); ?></p>|
212
- <p><a href="http://teamwork.wp-parsi.com/projects/wp-statistics/" target="_blank"><?php _e('Translation plugin languages', 'wp_statistics'); ?></a></p>|
213
- <p><a href="http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/" target="_blank"><?php _e('Support plugin', 'wp_statistics'); ?></a></p>|
 
214
  <p><a href="http://iran98.org/" target="_blank"><?php _e('Weblog', 'wp_statistics'); ?></a></p>
215
  </div>
216
 
@@ -225,9 +234,9 @@
225
  <div class="clear"></div>
226
 
227
  <div class="ads">
228
- <a href="http://ads.iran98.org/view/link/11" target="_blank" alt="ads-link" title="محل نمایش تبلیغات - افزونه آماره وردپرس"><img src="http://ads.iran98.org/view/banner/11" alt="ads-img" title="محل نمایش تبلیغات - افزونه آماره وردپرس"/></a>
229
- <a href="http://ads.iran98.org/view/link/12" target="_blank" alt="ads-link" title="محل نمایش تبلیغات 2 - افزونه آماره وردپرس"><img src="http://ads.iran98.org/view/banner/12" alt="ads-img" title="محل نمایش تبلیغات 2 - افزونه آماره وردپرس"/></a>
230
- <a href="http://ads.iran98.org/view/link/13" target="_blank" alt="ads-link" title="محل نمایش تبلیغات 3 - افزونه آماره وردپرس"><img src="http://ads.iran98.org/view/banner/13" alt="ads-img" title="محل نمایش تبلیغات 3 - افزونه آماره وردپرس"/></a>
231
  </div>
232
  </div>
233
  </div>
@@ -330,100 +339,70 @@
330
 
331
  <div class="postbox">
332
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
333
- <h3 class="hndle"><span><?php _e('Latest search words', 'wp_statistics'); ?></span></h3>
 
 
334
  <div class="inside">
335
- <table width="100%" class="widefat table-stats" id="last-search">
336
- <tr>
337
- <td width="80%"><?php _e('Word', 'wp_statistics'); ?></td>
338
- <td width="10%"><?php _e('Date', 'wp_statistics'); ?></td>
339
- <td width="5%"><?php _e('Site', 'wp_statistics'); ?></td>
340
- <td width="5%"><?php _e('Referrer', 'wp_statistics'); ?></td>
341
- </tr>
342
 
343
  <?php
344
- $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%google.com%' OR `referred` LIKE '%yahoo.com%' OR `referred` LIKE '%bing.com%' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT 0, 15");
 
 
345
 
346
  foreach($result as $items) {
347
 
348
- echo "<tr>";
349
- echo "<td class='td-align'>".$s->Search_Engine_QueryString($items->referred)."</td>";
350
- echo "<td>$items->last_counter</td>";
351
- if( $s->Check_Search_Engines('google.com', $items->referred) ) {
352
- echo "<td><img src='".plugins_url('wp-statistics/images/google.com.png')."' title='".__('Google', 'wp_statistics')."'/></td>";
353
- } else if( $s->Check_Search_Engines('yahoo.com', $items->referred) ) {
354
- echo "<td><img src='".plugins_url('wp-statistics/images/yahoo.com.png')."' title='".__('Yahoo!', 'wp_statistics')."'/></td>";
355
- } else if( $s->Check_Search_Engines('bing.com', $items->referred) ) {
356
- echo "<td><img src='".plugins_url('wp-statistics/images/bing.com.png')."' title='".__('Bing', 'wp_statistics')."'/></td>";
357
- }
358
- if($items->referred){
359
- echo "<td><a href='$items->referred'><img src='".plugins_url('wp-statistics/images/link.png')."' title='".$items->referred."'/></a></td>";
360
- } else {
361
- echo "<td><img src='".plugins_url('wp-statistics/images/unknown.png')."' title='".__('Unknown', 'wp_statistics')."'/></td>";
362
- }
363
- echo "</tr>";
364
- echo "</tr>";
 
365
  }
 
 
366
  ?>
367
- </table>
368
  </div>
369
  </div>
370
 
371
  <div class="postbox">
372
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
373
- <h3 class="hndle"><span><?php _e('Recent Visitors', 'wp_statistics'); ?></span></h3>
 
 
374
  <div class="inside">
375
- <table width="100%" class="widefat table-stats" id="last-visitor">
376
- <tr>
377
- <td width="30%"><?php _e('IP', 'wp_statistics'); ?></td>
378
- <?php if( get_option('wps_ip_information') ) { ?>
379
- <td width="30%"><?php _e('Country', 'wp_statistics'); ?></td>
380
- <td width="20%"><?php _e('Province', 'wp_statistics'); ?></td>
381
- <?php } ?>
382
- <td width="10%"><?php _e('Date', 'wp_statistics'); ?></td>
383
- <td width="5%"><?php _e('Browser', 'wp_statistics'); ?></td>
384
- <td width="5%"><?php _e('Reference', 'wp_statistics'); ?></td>
385
- </tr>
386
 
387
  <?php
388
- global $ipLite;
389
 
390
- $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT 0, 15");
391
 
392
  foreach($result as $items) {
393
- echo "<tr>";
394
- echo "<td>$items->ip</td>";
395
-
396
- if( get_option('wps_ip_information') ) {
397
- if( $s->IP_Location($items->ip)->country_code == 'XX' ) {
398
- echo "<td><img src='".plugins_url('wp-statistics/images/unknown.png')."' title='".__('Unknown', 'wp_statistics')."'/></td>";
399
- } else {
400
- echo "<td><img src='".plugins_url('wp-statistics/images/flags/').$s->IP_Location($items->ip)->country_code.".png' title='".$s->IP_Location($items->ip)->country_name."'/></td>";
401
- }
402
- }
403
-
404
- if( get_option('wps_ip_information') ) {
405
- if( $s->IP_Location($items->ip)->city == '(Unknown City?)' || $s->IP_Location($items->ip)->city == '(Unknown city)' ) {
406
- echo "<td>" . __('Unknown', 'wp_statistics') . "</td>";
407
- } else {
408
- echo "<td>{$s->IP_Location($items->ip)->city}</td>";
409
- }
410
- }
411
-
412
- echo "<td>$items->last_counter</td>";
413
- echo "<td><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' title='".$items->agent."'/></td>";
414
-
415
- if($items->referred){
416
- echo "<td><a href='$items->referred'><img src='".plugins_url('wp-statistics/images/link.png')."' title='".$items->referred."'/></a></td>";
417
- } else {
418
- echo "<td><img src='".plugins_url('wp-statistics/images/unknown.png')."' title='".__('Unknown', 'wp_statistics')."'/></td>";
419
- }
420
-
421
- echo "</tr>";
422
 
423
  }
 
 
424
  ?>
425
-
426
- </table>
427
  </div>
428
  </div>
429
  </div>
1
+ <script type="text/javascript">
2
+ jQuery(document).ready(function(){
3
+ jQuery('.show-map').click(function(){
4
+ alert('<?php _e('To be added soon', 'wp_statistics'); ?>');
5
+ });
6
+ });
7
+ </script>
8
+
9
  <div class="wrap">
10
  <?php screen_icon('options-general'); ?>
11
  <h2><?php echo get_admin_page_title(); ?></h2>
216
  <h3 class="hndle"><span><?php _e('About plugin', 'wp_statistics'); ?></span></h3>
217
  <div class="inside">
218
  <div id="about-links">
219
+ <p><?php echo sprintf(__('Plugin version: %s', 'wp_statistics'), WP_STATISTICS_VERSION); ?></p> |
220
+ <p><a href="http://teamwork.wp-parsi.com/projects/wp-statistics/" target="_blank"><?php _e('Translations', 'wp_statistics'); ?></a></p> |
221
+ <p><a href="http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/" target="_blank"><?php _e('Support plugin', 'wp_statistics'); ?></a></p> |
222
+ <p><a href="https://www.facebook.com/pages/Wordpress-Statistics/546922341997898?ref=stream" target="_blank"><?php _e('Facebook', 'wp_statistics'); ?></a></p> |
223
  <p><a href="http://iran98.org/" target="_blank"><?php _e('Weblog', 'wp_statistics'); ?></a></p>
224
  </div>
225
 
234
  <div class="clear"></div>
235
 
236
  <div class="ads">
237
+ <a href="http://ads.iran98.org/view/link/11" target="_blank" alt="ads-link"><img src="http://ads.iran98.org/view/banner/11"/></a>
238
+ <a href="http://ads.iran98.org/view/link/12" target="_blank" alt="ads-link"><img src="http://ads.iran98.org/view/banner/12"/></a>
239
+ <a href="http://ads.iran98.org/view/link/13" target="_blank" alt="ads-link"><img src="http://ads.iran98.org/view/banner/13"/></a>
240
  </div>
241
  </div>
242
  </div>
339
 
340
  <div class="postbox">
341
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
342
+ <h3 class="hndle">
343
+ <span><?php _e('Latest search words', 'wp_statistics'); ?> <a href="?page=wp-statistics/wp-statistics.php&type=last-all-search"><?php _e('(See more)', 'wp_statistics'); ?></a></span>
344
+ </h3>
345
  <div class="inside">
 
 
 
 
 
 
 
346
 
347
  <?php
348
+ $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%google.com%' OR `referred` LIKE '%yahoo.com%' OR `referred` LIKE '%bing.com%' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT 0, 10");
349
+
350
+ echo "<div class='log-latest'>";
351
 
352
  foreach($result as $items) {
353
 
354
+ echo "<div class='log-item'>";
355
+ echo "<div class='log-referred'>{$s->Search_Engine_QueryString($items->referred)}</div>";
356
+ echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
357
+ echo "<div class='clear'></div>";
358
+ echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
359
+
360
+ if( $s->Check_Search_Engines('google.com', $items->referred) ) {
361
+ 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>";
362
+ } else if( $s->Check_Search_Engines('yahoo.com', $items->referred) ) {
363
+ 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>";
364
+ } else if( $s->Check_Search_Engines('bing.com', $items->referred) ) {
365
+ 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>";
366
+ }
367
+
368
+ echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
369
+ echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
370
+ echo "</div>";
371
+
372
  }
373
+
374
+ echo "</div>";
375
  ?>
 
376
  </div>
377
  </div>
378
 
379
  <div class="postbox">
380
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
381
+ <h3 class="hndle">
382
+ <span><?php _e('Recent Visitors', 'wp_statistics'); ?> <a href="?page=wp-statistics/wp-statistics.php&type=last-all-visitor"><?php _e('(See more)', 'wp_statistics'); ?></a></span>
383
+ </h3>
384
  <div class="inside">
 
 
 
 
 
 
 
 
 
 
 
385
 
386
  <?php
387
+ $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT 0, 10");
388
 
389
+ echo "<div class='log-latest'>";
390
 
391
  foreach($result as $items) {
392
+
393
+ echo "<div class='log-item'>";
394
+ echo "<div class='log-referred'><a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
395
+ echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
396
+ echo "<div class='clear'></div>";
397
+ echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
398
+ echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
399
+ echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
400
+ echo "</div>";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
401
 
402
  }
403
+
404
+ echo "</div>";
405
  ?>
 
 
406
  </div>
407
  </div>
408
  </div>
includes/setting/settings.php CHANGED
@@ -82,18 +82,6 @@
82
  </th>
83
  </tr>
84
 
85
- <tr valign="top">
86
- <th scope="row">
87
- <label for="ip-information"><?php _e('Display IP Information On-screen statistics', 'wp_statistics'); ?>:</label>
88
- </th>
89
-
90
- <th>
91
- <input id="ip-information" type="checkbox" value="1" name="wps_ip_information" <?php echo get_option('wps_ip_information')==true? "checked='checked'":'';?>>
92
- <label for="ip-information"><?php _e('Active', 'wp_statistics'); ?></label>
93
- <p class="description"><?php _e('Showing the flag country and Visitor province name (May be a bit slow)', 'wp_statistics'); ?></p>
94
- </th>
95
- </tr>
96
-
97
  <tr valign="top">
98
  <th scope="row" colspan="2"><h3><?php _e('Statistical reporting settings', 'wp_statistics'); ?></h3></th>
99
  </tr>
82
  </th>
83
  </tr>
84
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  <tr valign="top">
86
  <th scope="row" colspan="2"><h3><?php _e('Statistical reporting settings', 'wp_statistics'); ?></h3></th>
87
  </tr>
languages/default.mo CHANGED
Binary file
languages/default.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-05 21:18+0330\n"
6
- "PO-Revision-Date: 2013-02-05 21:18+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
@@ -13,20 +13,20 @@ msgstr ""
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;_e;__\n"
14
  "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
15
  "\\plugins\\wp-statistics\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
18
  "content\\plugins\\wp-statistics\n"
19
 
20
  #: F:\Program
21
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
22
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
23
  msgid "Statistical reporting"
24
  msgstr ""
25
 
26
  #: F:\Program
27
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
30
  msgid "Statistics"
31
  msgstr ""
32
 
@@ -37,37 +37,37 @@ msgstr ""
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:89
41
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:14
42
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:159
44
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
45
  msgid "User Online"
46
  msgstr ""
47
 
48
  #: F:\Program
49
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:26
50
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:161
51
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
52
  msgid "Today Visit"
53
  msgstr ""
54
 
55
  #: F:\Program
56
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:33
57
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:160
58
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
59
  msgid "Today Visitor"
60
  msgstr ""
61
 
62
  #: F:\Program
63
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:40
64
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
65
  msgid "Yesterday Visit"
66
  msgstr ""
67
 
68
  #: F:\Program
69
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:47
70
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:162
71
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
72
  msgid "Yesterday Visitor"
73
  msgstr ""
@@ -92,14 +92,14 @@ msgstr ""
92
 
93
  #: F:\Program
94
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:75
95
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:165
96
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
97
  msgid "Total Visit"
98
  msgstr ""
99
 
100
  #: F:\Program
101
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:82
102
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:164
103
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
104
  msgid "Total Visitor"
105
  msgstr ""
@@ -165,7 +165,7 @@ msgid "Last Post Date"
165
  msgstr ""
166
 
167
  #: F:\Program
168
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:39
169
  #, php-format
170
  msgid ""
171
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
@@ -173,312 +173,331 @@ msgid ""
173
  msgstr ""
174
 
175
  #: F:\Program
176
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
177
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:114
178
  msgid "View Stats"
179
  msgstr ""
180
 
181
  #: F:\Program
182
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
183
  msgid "Settings"
184
  msgstr ""
185
 
186
  #: F:\Program
187
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:94
188
  msgid "Today visitor"
189
  msgstr ""
190
 
191
  #: F:\Program
192
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:99
193
  msgid "Today visit"
194
  msgstr ""
195
 
196
  #: F:\Program
197
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
198
  msgid "Yesterday visitor"
199
  msgstr ""
200
 
201
  #: F:\Program
202
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:109
203
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
204
  msgid "Yesterday visit"
205
  msgstr ""
206
 
207
  #: F:\Program
208
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:143
209
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:170
210
  msgid "You do not have sufficient permissions to access this page."
211
  msgstr ""
212
 
213
  #: F:\Program
214
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:153
215
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
216
  msgstr ""
217
 
218
  #: F:\Program
219
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:8
220
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
221
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:165
222
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:207
223
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:242
224
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:332
225
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:372
226
- msgid "Click to toggle"
227
  msgstr ""
228
 
229
  #: F:\Program
230
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:9
231
- msgid "Summary Statistics"
232
- msgstr ""
233
-
234
- #: F:\Program
235
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:20
236
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:303
237
- msgid "Visitor"
238
  msgstr ""
239
 
240
  #: F:\Program
241
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:21
242
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:313
243
- msgid "Visit"
 
244
  msgstr ""
245
 
246
  #: F:\Program
247
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:25
248
- msgid "Today"
 
 
 
249
  msgstr ""
250
 
251
  #: F:\Program
252
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
253
- msgid "Yesterday"
 
 
 
254
  msgstr ""
255
 
256
  #: F:\Program
257
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:37
258
- msgid "Week"
 
 
 
259
  msgstr ""
260
 
261
  #: F:\Program
262
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
263
- msgid "Month"
 
 
 
 
 
 
 
 
264
  msgstr ""
265
 
266
  #: F:\Program
267
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:49
268
- msgid "Year"
 
 
 
269
  msgstr ""
270
 
271
  #: F:\Program
272
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:55
273
- msgid "Total"
 
274
  msgstr ""
275
 
276
  #: F:\Program
277
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:62
278
- #, php-format
279
- msgid ""
280
- "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
281
  msgstr ""
282
 
283
  #: F:\Program
284
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:64
285
- msgid "(Adjustment)"
 
 
286
  msgstr ""
287
 
288
  #: F:\Program
289
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
290
- msgid "Browsers"
 
291
  msgstr ""
292
 
293
  #: F:\Program
294
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:101
295
- msgid "Graph of Browsers"
 
296
  msgstr ""
297
 
298
  #: F:\Program
299
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:143
300
- msgid "Browser share"
 
301
  msgstr ""
302
 
303
  #: F:\Program
304
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:145
305
- msgid "Firefox"
 
306
  msgstr ""
307
 
308
  #: F:\Program
309
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:146
310
- msgid "IE"
 
311
  msgstr ""
312
 
313
  #: F:\Program
314
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:147
315
- msgid "Ipad"
 
316
  msgstr ""
317
 
318
  #: F:\Program
319
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:148
320
- msgid "Android"
321
  msgstr ""
322
 
323
  #: F:\Program
324
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:149
325
- msgid "Chrome"
 
326
  msgstr ""
327
 
328
  #: F:\Program
329
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:150
330
- msgid "Safari"
331
  msgstr ""
332
 
333
  #: F:\Program
334
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:151
335
- msgid "Other"
 
336
  msgstr ""
337
 
338
  #: F:\Program
339
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:166
340
- msgid "Top referring sites"
 
341
  msgstr ""
342
 
343
  #: F:\Program
344
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:171
345
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:384
346
- msgid "Reference"
347
  msgstr ""
348
 
349
  #: F:\Program
350
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:172
351
- msgid "Address"
352
  msgstr ""
353
 
354
  #: F:\Program
355
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:208
356
- msgid "About plugin"
357
  msgstr ""
358
 
359
  #: F:\Program
360
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:211
361
- #, php-format
362
- msgid "Plugin version: %s"
363
  msgstr ""
364
 
365
  #: F:\Program
366
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:212
367
- msgid "Translation plugin languages"
368
  msgstr ""
369
 
370
  #: F:\Program
371
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:213
372
- msgid "Support plugin"
373
  msgstr ""
374
 
375
  #: F:\Program
376
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
377
- msgid "Weblog"
 
 
378
  msgstr ""
379
 
380
  #: F:\Program
381
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:219
382
- msgid ""
383
- "Please donate to the plugin. With the help of plug-ins you can quickly "
384
- "spread."
385
  msgstr ""
386
 
387
  #: F:\Program
388
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:222
389
- msgid "Donate"
390
  msgstr ""
391
 
392
  #: F:\Program
393
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
394
- msgid "Statistical Chart"
395
  msgstr ""
396
 
397
  #: F:\Program
398
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
399
- msgid "Chart hit in the last 20 days"
400
  msgstr ""
401
 
402
  #: F:\Program
403
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:277
404
- msgid "Number of visits and visitors"
405
  msgstr ""
406
 
407
  #: F:\Program
408
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:333
409
- msgid "Latest search words"
410
  msgstr ""
411
 
412
  #: F:\Program
413
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
414
- msgid "Word"
415
  msgstr ""
416
 
417
  #: F:\Program
418
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
419
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
420
- msgid "Date"
421
  msgstr ""
422
 
423
  #: F:\Program
424
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
425
- msgid "Site"
 
426
  msgstr ""
427
 
428
  #: F:\Program
429
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:340
430
- msgid "Referrer"
431
  msgstr ""
432
 
433
  #: F:\Program
434
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:352
435
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
436
- msgid "Google"
437
  msgstr ""
438
 
439
  #: F:\Program
440
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:354
441
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
442
- msgid "Yahoo!"
443
  msgstr ""
444
 
445
  #: F:\Program
446
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:356
447
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
448
- msgid "Bing"
449
  msgstr ""
450
 
451
  #: F:\Program
452
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:361
453
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:398
454
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:406
455
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:418
456
- msgid "Unknown"
457
  msgstr ""
458
 
459
  #: F:\Program
460
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:373
461
- msgid "Recent Visitors"
462
  msgstr ""
463
 
464
  #: F:\Program
465
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
466
- msgid "IP"
467
  msgstr ""
468
 
469
  #: F:\Program
470
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
471
- msgid "Country"
472
  msgstr ""
473
 
474
  #: F:\Program
475
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
476
- msgid "Province"
477
  msgstr ""
478
 
479
  #: F:\Program
480
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:383
481
- msgid "Browser"
 
482
  msgstr ""
483
 
484
  #: F:\Program
@@ -490,8 +509,7 @@ msgstr ""
490
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
491
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
492
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
493
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:92
494
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
495
  msgid "Active"
496
  msgstr ""
497
 
@@ -499,7 +517,7 @@ msgstr ""
499
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
500
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
501
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
502
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
503
  msgid "Enable or disable this feature"
504
  msgstr ""
505
 
@@ -561,73 +579,63 @@ msgid "For each visit to account for several hits. Currently %s."
561
  msgstr ""
562
 
563
  #: F:\Program
564
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:87
565
- msgid "Display IP Information On-screen statistics"
566
- msgstr ""
567
-
568
- #: F:\Program
569
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:93
570
- msgid "Showing the flag country and Visitor province name (May be a bit slow)"
571
- msgstr ""
572
-
573
- #: F:\Program
574
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
575
  msgid "Statistical reporting settings"
576
  msgstr ""
577
 
578
  #: F:\Program
579
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:116
580
  msgid "Time send"
581
  msgstr ""
582
 
583
  #: F:\Program
584
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
585
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:137
586
  msgid "Please select."
587
  msgstr ""
588
 
589
  #: F:\Program
590
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:122
591
  msgid "Hourly"
592
  msgstr ""
593
 
594
  #: F:\Program
595
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
596
  msgid "Twice daily"
597
  msgstr ""
598
 
599
  #: F:\Program
600
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:124
601
  msgid "daily"
602
  msgstr ""
603
 
604
  #: F:\Program
605
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
606
  msgid "Select when receiving statistics report."
607
  msgstr ""
608
 
609
  #: F:\Program
610
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
611
  msgid "Send Statistical reporting to"
612
  msgstr ""
613
 
614
  #: F:\Program
615
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
616
  msgid "Email"
617
  msgstr ""
618
 
619
  #: F:\Program
620
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
621
  msgid "SMS"
622
  msgstr ""
623
 
624
  #: F:\Program
625
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:141
626
  msgid "Type Select Get Status Report."
627
  msgstr ""
628
 
629
  #: F:\Program
630
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
631
  #, php-format
632
  msgid ""
633
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
@@ -635,17 +643,17 @@ msgid ""
635
  msgstr ""
636
 
637
  #: F:\Program
638
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
639
  msgid "Send Content Report"
640
  msgstr ""
641
 
642
  #: F:\Program
643
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
644
  msgid "Enter the contents of the reports received."
645
  msgstr ""
646
 
647
  #: F:\Program
648
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:158
649
  msgid "Input data:"
650
  msgstr ""
651
 
@@ -664,11 +672,6 @@ msgstr ""
664
  msgid "Select type of search engine"
665
  msgstr ""
666
 
667
- #: F:\Program
668
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
669
- msgid "All"
670
- msgstr ""
671
-
672
  #: F:\Program
673
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
674
  msgid "Type date for last update"
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-03 16:59+0330\n"
6
+ "PO-Revision-Date: 2013-04-03 16:59+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;_e;__\n"
14
  "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
15
  "\\plugins\\wp-statistics\n"
16
+ "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
18
  "content\\plugins\\wp-statistics\n"
19
 
20
  #: F:\Program
21
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
22
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
23
  msgid "Statistical reporting"
24
  msgstr ""
25
 
26
  #: F:\Program
27
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:68
30
  msgid "Statistics"
31
  msgstr ""
32
 
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
41
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
42
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:147
44
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
45
  msgid "User Online"
46
  msgstr ""
47
 
48
  #: F:\Program
49
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:26
50
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
51
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
52
  msgid "Today Visit"
53
  msgstr ""
54
 
55
  #: F:\Program
56
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:33
57
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:148
58
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
59
  msgid "Today Visitor"
60
  msgstr ""
61
 
62
  #: F:\Program
63
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:40
64
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
65
  msgid "Yesterday Visit"
66
  msgstr ""
67
 
68
  #: F:\Program
69
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:47
70
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
71
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
72
  msgid "Yesterday Visitor"
73
  msgstr ""
92
 
93
  #: F:\Program
94
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:75
95
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
96
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
97
  msgid "Total Visit"
98
  msgstr ""
99
 
100
  #: F:\Program
101
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:82
102
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:152
103
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
104
  msgid "Total Visitor"
105
  msgstr ""
165
  msgstr ""
166
 
167
  #: F:\Program
168
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:40
169
  #, php-format
170
  msgid ""
171
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
173
  msgstr ""
174
 
175
  #: F:\Program
176
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
177
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
178
  msgid "View Stats"
179
  msgstr ""
180
 
181
  #: F:\Program
182
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:71
183
  msgid "Settings"
184
  msgstr ""
185
 
186
  #: F:\Program
187
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
188
  msgid "Today visitor"
189
  msgstr ""
190
 
191
  #: F:\Program
192
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
193
  msgid "Today visit"
194
  msgstr ""
195
 
196
  #: F:\Program
197
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
198
  msgid "Yesterday visitor"
199
  msgstr ""
200
 
201
  #: F:\Program
202
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
203
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
204
  msgid "Yesterday visit"
205
  msgstr ""
206
 
207
  #: F:\Program
208
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
209
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
210
  msgid "You do not have sufficient permissions to access this page."
211
  msgstr ""
212
 
213
  #: F:\Program
214
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:154
215
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
216
  msgstr ""
217
 
218
  #: F:\Program
219
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
220
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
221
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
222
+ msgid "To be added soon"
 
 
 
 
223
  msgstr ""
224
 
225
  #: F:\Program
226
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
227
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
228
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:343
229
+ msgid "Latest search words"
 
 
 
 
230
  msgstr ""
231
 
232
  #: F:\Program
233
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
234
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
235
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
236
+ msgid "All"
237
  msgstr ""
238
 
239
  #: F:\Program
240
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
241
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:59
242
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:361
243
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
244
+ msgid "Google"
245
  msgstr ""
246
 
247
  #: F:\Program
248
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
249
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
250
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:363
251
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
252
+ msgid "Yahoo!"
253
  msgstr ""
254
 
255
  #: F:\Program
256
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
257
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
258
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:365
259
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
260
+ msgid "Bing"
261
  msgstr ""
262
 
263
  #: F:\Program
264
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
265
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
266
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
267
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
268
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
269
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:215
270
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:251
271
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:341
272
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
273
+ msgid "Click to toggle"
274
  msgstr ""
275
 
276
  #: F:\Program
277
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:56
278
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
279
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:358
280
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:397
281
+ msgid "Map"
282
  msgstr ""
283
 
284
  #: F:\Program
285
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:79
286
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
287
+ msgid "Page"
288
  msgstr ""
289
 
290
  #: F:\Program
291
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:79
292
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
293
+ msgid "From"
 
294
  msgstr ""
295
 
296
  #: F:\Program
297
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
298
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
299
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
300
+ msgid "Recent Visitors"
301
  msgstr ""
302
 
303
  #: F:\Program
304
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
305
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:153
306
+ msgid "Firefox"
307
  msgstr ""
308
 
309
  #: F:\Program
310
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
311
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:154
312
+ msgid "IE"
313
  msgstr ""
314
 
315
  #: F:\Program
316
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
317
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:155
318
+ msgid "Ipad"
319
  msgstr ""
320
 
321
  #: F:\Program
322
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
323
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:156
324
+ msgid "Android"
325
  msgstr ""
326
 
327
  #: F:\Program
328
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
329
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:157
330
+ msgid "Chrome"
331
  msgstr ""
332
 
333
  #: F:\Program
334
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
335
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
336
+ msgid "Safari"
337
  msgstr ""
338
 
339
  #: F:\Program
340
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:20
341
+ msgid "Opera"
342
  msgstr ""
343
 
344
  #: F:\Program
345
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
346
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:159
347
+ msgid "Other"
348
  msgstr ""
349
 
350
  #: F:\Program
351
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:17
352
+ msgid "Summary Statistics"
353
  msgstr ""
354
 
355
  #: F:\Program
356
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
357
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:312
358
+ msgid "Visitor"
359
  msgstr ""
360
 
361
  #: F:\Program
362
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
363
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:322
364
+ msgid "Visit"
365
  msgstr ""
366
 
367
  #: F:\Program
368
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
369
+ msgid "Today"
 
370
  msgstr ""
371
 
372
  #: F:\Program
373
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
374
+ msgid "Yesterday"
375
  msgstr ""
376
 
377
  #: F:\Program
378
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:45
379
+ msgid "Week"
380
  msgstr ""
381
 
382
  #: F:\Program
383
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:51
384
+ msgid "Month"
 
385
  msgstr ""
386
 
387
  #: F:\Program
388
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:57
389
+ msgid "Year"
390
  msgstr ""
391
 
392
  #: F:\Program
393
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
394
+ msgid "Total"
395
  msgstr ""
396
 
397
  #: F:\Program
398
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
399
+ #, php-format
400
+ msgid ""
401
+ "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
402
  msgstr ""
403
 
404
  #: F:\Program
405
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:72
406
+ msgid "(Adjustment)"
 
 
407
  msgstr ""
408
 
409
  #: F:\Program
410
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:78
411
+ msgid "Browsers"
412
  msgstr ""
413
 
414
  #: F:\Program
415
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:109
416
+ msgid "Graph of Browsers"
417
  msgstr ""
418
 
419
  #: F:\Program
420
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:151
421
+ msgid "Browser share"
422
  msgstr ""
423
 
424
  #: F:\Program
425
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:174
426
+ msgid "Top referring sites"
427
  msgstr ""
428
 
429
  #: F:\Program
430
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:179
431
+ msgid "Reference"
432
  msgstr ""
433
 
434
  #: F:\Program
435
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:180
436
+ msgid "Address"
437
  msgstr ""
438
 
439
  #: F:\Program
440
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
441
+ msgid "About plugin"
 
442
  msgstr ""
443
 
444
  #: F:\Program
445
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:219
446
+ #, php-format
447
+ msgid "Plugin version: %s"
448
  msgstr ""
449
 
450
  #: F:\Program
451
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:220
452
+ msgid "Translations"
453
  msgstr ""
454
 
455
  #: F:\Program
456
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:221
457
+ msgid "Support plugin"
 
458
  msgstr ""
459
 
460
  #: F:\Program
461
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:222
462
+ msgid "Facebook"
 
463
  msgstr ""
464
 
465
  #: F:\Program
466
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:223
467
+ msgid "Weblog"
 
468
  msgstr ""
469
 
470
  #: F:\Program
471
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:228
472
+ msgid ""
473
+ "Please donate to the plugin. With the help of plug-ins you can quickly "
474
+ "spread."
 
475
  msgstr ""
476
 
477
  #: F:\Program
478
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:231
479
+ msgid "Donate"
480
  msgstr ""
481
 
482
  #: F:\Program
483
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:252
484
+ msgid "Statistical Chart"
485
  msgstr ""
486
 
487
  #: F:\Program
488
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:267
489
+ msgid "Chart hit in the last 20 days"
490
  msgstr ""
491
 
492
  #: F:\Program
493
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
494
+ msgid "Number of visits and visitors"
495
  msgstr ""
496
 
497
  #: F:\Program
498
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:343
499
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
500
+ msgid "(See more)"
501
  msgstr ""
502
 
503
  #: F:\Program
509
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
510
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
511
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
512
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
 
513
  msgid "Active"
514
  msgstr ""
515
 
517
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
518
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
519
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
520
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
521
  msgid "Enable or disable this feature"
522
  msgstr ""
523
 
579
  msgstr ""
580
 
581
  #: F:\Program
582
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
 
 
 
 
 
 
 
 
 
 
583
  msgid "Statistical reporting settings"
584
  msgstr ""
585
 
586
  #: F:\Program
587
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
588
  msgid "Time send"
589
  msgstr ""
590
 
591
  #: F:\Program
592
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
593
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:125
594
  msgid "Please select."
595
  msgstr ""
596
 
597
  #: F:\Program
598
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
599
  msgid "Hourly"
600
  msgstr ""
601
 
602
  #: F:\Program
603
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:111
604
  msgid "Twice daily"
605
  msgstr ""
606
 
607
  #: F:\Program
608
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:112
609
  msgid "daily"
610
  msgstr ""
611
 
612
  #: F:\Program
613
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:114
614
  msgid "Select when receiving statistics report."
615
  msgstr ""
616
 
617
  #: F:\Program
618
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
619
  msgid "Send Statistical reporting to"
620
  msgstr ""
621
 
622
  #: F:\Program
623
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
624
  msgid "Email"
625
  msgstr ""
626
 
627
  #: F:\Program
628
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:127
629
  msgid "SMS"
630
  msgstr ""
631
 
632
  #: F:\Program
633
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:129
634
  msgid "Type Select Get Status Report."
635
  msgstr ""
636
 
637
  #: F:\Program
638
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
639
  #, php-format
640
  msgid ""
641
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
643
  msgstr ""
644
 
645
  #: F:\Program
646
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
647
  msgid "Send Content Report"
648
  msgstr ""
649
 
650
  #: F:\Program
651
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
652
  msgid "Enter the contents of the reports received."
653
  msgstr ""
654
 
655
  #: F:\Program
656
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:146
657
  msgid "Input data:"
658
  msgstr ""
659
 
672
  msgid "Select type of search engine"
673
  msgstr ""
674
 
 
 
 
 
 
675
  #: F:\Program
676
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
677
  msgid "Type date for last update"
languages/wp_statistics-ar.mo CHANGED
Binary file
languages/wp_statistics-ar.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-01-28 18:59+0330\n"
6
- "PO-Revision-Date: 2013-01-28 18:59+0330\n"
7
- "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: ABU HATIM <al3zz.com@gmail.com>\n"
9
  "Language: ar_SA\n"
10
  "MIME-Version: 1.0\n"
@@ -14,21 +14,20 @@ msgstr ""
14
  "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
15
  "\\plugins\\wp-statistics\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Generator: Poedit 1.5.4\n"
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\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
23
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
24
- #, fuzzy
25
  msgid "Statistical reporting"
26
- msgstr "إعدادات الاحصائيات المباشرة"
27
 
28
  #: F:\Program
29
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
30
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
31
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:58
32
  msgid "Statistics"
33
  msgstr "الإحصائيات"
34
 
@@ -39,7 +38,7 @@ msgstr "إظهار إحصائيات الموقع في الشريط الجانب
39
 
40
  #: F:\Program
41
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
42
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
43
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:14
44
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
45
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:159
@@ -58,9 +57,8 @@ msgstr "زيارات اليوم"
58
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:33
59
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:160
60
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
61
- #, fuzzy
62
  msgid "Today Visitor"
63
- msgstr "زيارات اليوم"
64
 
65
  #: F:\Program
66
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:40
@@ -72,9 +70,8 @@ msgstr "زيارات الأمس"
72
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:47
73
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:162
74
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
75
- #, fuzzy
76
  msgid "Yesterday Visitor"
77
- msgstr "زيارات الأمس"
78
 
79
  #: F:\Program
80
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:54
@@ -105,9 +102,8 @@ msgstr "مجموع الزيارات"
105
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:82
106
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:164
107
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
108
- #, fuzzy
109
  msgid "Total Visitor"
110
- msgstr "مجموع الزيارات"
111
 
112
  #: F:\Program
113
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:90
@@ -170,109 +166,117 @@ msgid "Last Post Date"
170
  msgstr "تاريخ آخر مشاركة"
171
 
172
  #: F:\Program
173
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:60
174
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
175
- msgid "View Stats"
 
 
176
  msgstr ""
 
 
177
 
178
  #: F:\Program
179
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:61
 
 
 
 
 
 
180
  msgid "Settings"
181
  msgstr "الإعدادات"
182
 
183
  #: F:\Program
184
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
185
- #, fuzzy
186
  msgid "Today visitor"
187
- msgstr "زيارات اليوم"
188
 
189
  #: F:\Program
190
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
191
- #, fuzzy
192
  msgid "Today visit"
193
  msgstr "زيارات اليوم"
194
 
195
  #: F:\Program
196
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
197
- #, fuzzy
198
  msgid "Yesterday visitor"
199
  msgstr "زيارات الأمس"
200
 
201
  #: F:\Program
202
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
203
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
204
  msgid "Yesterday visit"
205
  msgstr "زيارات الأمس"
206
 
207
  #: F:\Program
208
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
209
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:151
210
  msgid "You do not have sufficient permissions to access this page."
211
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
212
 
 
 
 
 
 
 
 
213
  #: F:\Program
214
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:8
215
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
216
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:165
217
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:209
218
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:244
219
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:334
220
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:374
221
  msgid "Click to toggle"
222
- msgstr ""
223
 
224
  #: F:\Program
225
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:9
226
- #, fuzzy
227
  msgid "Summary Statistics"
228
- msgstr "الإحصائيات"
229
 
230
  #: F:\Program
231
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:20
232
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:305
233
  msgid "Visitor"
234
- msgstr ""
235
 
236
  #: F:\Program
237
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:21
238
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:315
239
- #, fuzzy
240
  msgid "Visit"
241
- msgstr "زيارات الأسبوع"
242
 
243
  #: F:\Program
244
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:25
245
- #, fuzzy
246
  msgid "Today"
247
- msgstr "زيارات اليوم"
248
 
249
  #: F:\Program
250
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
251
- #, fuzzy
252
  msgid "Yesterday"
253
- msgstr "زيارات الأمس"
254
 
255
  #: F:\Program
256
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:37
257
  msgid "Week"
258
- msgstr ""
259
 
260
  #: F:\Program
261
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
262
- #, fuzzy
263
  msgid "Month"
264
- msgstr "زيارات الشهر"
265
 
266
  #: F:\Program
267
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:49
268
  msgid "Year"
269
- msgstr ""
270
 
271
  #: F:\Program
272
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:55
273
- #, fuzzy
274
  msgid "Total"
275
- msgstr "مجموع الزيارات"
276
 
277
  #: F:\Program
278
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:62
@@ -280,213 +284,215 @@ msgstr "مجموع الزيارات"
280
  msgid ""
281
  "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
282
  msgstr ""
 
283
 
284
  #: F:\Program
285
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:64
286
  msgid "(Adjustment)"
287
- msgstr ""
288
 
289
  #: F:\Program
290
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
291
  msgid "Browsers"
292
- msgstr ""
293
 
294
  #: F:\Program
295
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:101
296
  msgid "Graph of Browsers"
297
- msgstr ""
298
 
299
  #: F:\Program
300
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:143
301
  msgid "Browser share"
302
- msgstr ""
303
 
304
  #: F:\Program
305
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:145
306
  msgid "Firefox"
307
- msgstr ""
308
 
309
  #: F:\Program
310
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:146
311
  msgid "IE"
312
- msgstr ""
313
 
314
  #: F:\Program
315
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:147
316
  msgid "Ipad"
317
- msgstr ""
318
 
319
  #: F:\Program
320
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:148
321
  msgid "Android"
322
- msgstr ""
323
 
324
  #: F:\Program
325
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:149
326
  msgid "Chrome"
327
- msgstr ""
328
 
329
  #: F:\Program
330
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:150
331
  msgid "Safari"
332
- msgstr ""
333
 
334
  #: F:\Program
335
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:151
336
  msgid "Other"
337
- msgstr ""
338
 
339
  #: F:\Program
340
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:166
341
  msgid "Top referring sites"
342
- msgstr ""
343
 
344
  #: F:\Program
345
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:171
346
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:342
347
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:386
348
- #, fuzzy
349
  msgid "Reference"
350
- msgstr "مشاره"
351
 
352
  #: F:\Program
353
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:172
354
  msgid "Address"
355
- msgstr ""
356
 
357
  #: F:\Program
358
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
359
- #, fuzzy
360
  msgid "About plugin"
361
- msgstr "تعطيل الإضافة"
362
 
363
  #: F:\Program
364
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:213
365
- #, fuzzy, php-format
366
  msgid "Plugin version: %s"
367
- msgstr "مترجمين الإضافة"
368
 
369
  #: F:\Program
370
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
371
  msgid "Translation plugin languages"
372
- msgstr ""
373
 
374
  #: F:\Program
375
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:215
376
  msgid "Support plugin"
377
- msgstr ""
378
 
379
  #: F:\Program
380
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
381
  msgid "Weblog"
382
- msgstr ""
383
 
384
  #: F:\Program
385
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:221
386
  msgid ""
387
  "Please donate to the plugin. With the help of plug-ins you can quickly "
388
  "spread."
389
  msgstr ""
 
 
390
 
391
  #: F:\Program
392
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:224
393
  msgid "Donate"
394
- msgstr ""
395
 
396
  #: F:\Program
397
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:245
398
- #, fuzzy
399
  msgid "Statistical Chart"
400
- msgstr "الإحصائيات"
401
 
402
  #: F:\Program
403
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:260
404
  msgid "Chart hit in the last 20 days"
405
- msgstr ""
406
 
407
  #: F:\Program
408
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:279
409
  msgid "Number of visits and visitors"
410
- msgstr ""
411
 
412
  #: F:\Program
413
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:335
414
  msgid "Latest search words"
415
- msgstr ""
416
 
417
  #: F:\Program
418
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
419
  msgid "Word"
420
- msgstr ""
421
 
422
  #: F:\Program
423
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:340
424
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:384
425
  msgid "Date"
426
- msgstr ""
427
 
428
  #: F:\Program
429
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:341
430
  msgid "Site"
431
- msgstr ""
432
 
433
  #: F:\Program
434
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:354
 
 
 
 
 
435
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
436
  msgid "Google"
437
  msgstr "Google"
438
 
439
  #: F:\Program
440
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:356
441
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
442
  msgid "Yahoo!"
443
  msgstr "Yahoo!"
444
 
445
  #: F:\Program
446
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:358
447
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
448
  msgid "Bing"
449
  msgstr "Bing"
450
 
451
  #: F:\Program
452
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:363
453
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:400
454
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:408
455
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:420
456
  msgid "Unknown"
457
- msgstr ""
458
 
459
  #: F:\Program
460
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:375
461
- #, fuzzy
462
  msgid "Recent Visitors"
463
- msgstr "زيارات الأسبوع"
464
 
465
  #: F:\Program
466
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
467
  msgid "IP"
468
  msgstr "IP"
469
 
470
  #: F:\Program
471
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:381
472
  msgid "Country"
473
- msgstr ""
474
 
475
  #: F:\Program
476
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
477
  msgid "Province"
478
- msgstr ""
479
 
480
  #: F:\Program
481
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:385
482
  msgid "Browser"
483
- msgstr ""
484
 
485
  #: F:\Program
486
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
487
- #, fuzzy
488
  msgid "General Settings"
489
- msgstr "الإعدادات"
490
 
491
  #: F:\Program
492
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
@@ -495,7 +501,7 @@ msgstr "الإعدادات"
495
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:92
496
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
497
  msgid "Active"
498
- msgstr ""
499
 
500
  #: F:\Program
501
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
@@ -503,18 +509,17 @@ msgstr ""
503
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
504
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
505
  msgid "Enable or disable this feature"
506
- msgstr ""
507
 
508
  #: F:\Program
509
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
510
- #, fuzzy
511
  msgid "Visits"
512
- msgstr "زيارات الأسبوع"
513
 
514
  #: F:\Program
515
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
516
  msgid "Visitors"
517
- msgstr ""
518
 
519
  #: F:\Program
520
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
@@ -523,15 +528,14 @@ msgstr "تحقق من المتصلين في الموقع في كل"
523
 
524
  #: F:\Program
525
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:55
526
- #, fuzzy
527
  msgid "Secound"
528
  msgstr "ثانية"
529
 
530
  #: F:\Program
531
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
532
- #, fuzzy, php-format
533
  msgid "Time for the check accurate online user in the site. Now: %s Second"
534
- msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الإفتراضي: 60 ثانية"
535
 
536
  #: F:\Program
537
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
@@ -556,81 +560,79 @@ msgstr "اظهار الاحصائيات في شريط القوائم الإدا
556
  #: F:\Program
557
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
558
  msgid "Coefficient per visitor"
559
- msgstr "مسمى لكل زائر"
560
 
561
  #: F:\Program
562
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:81
563
- #, fuzzy, php-format
564
  msgid "For each visit to account for several hits. Currently %s."
565
- msgstr "حساب توجيه النقرات لكل زائر."
566
 
567
  #: F:\Program
568
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:87
569
  msgid "Display IP Information On-screen statistics"
570
- msgstr ""
571
 
572
  #: F:\Program
573
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:93
574
  msgid "Showing the flag country and Visitor province name (May be a bit slow)"
575
- msgstr ""
576
 
577
  #: F:\Program
578
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
579
  msgid "Statistical reporting settings"
580
- msgstr ""
581
 
582
  #: F:\Program
583
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:116
584
- #, fuzzy
585
  msgid "Time send"
586
- msgstr "الوقت"
587
 
588
  #: F:\Program
589
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
590
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:137
591
- #, fuzzy
592
  msgid "Please select."
593
- msgstr "الرجاء أدخل قيمة!"
594
 
595
  #: F:\Program
596
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:122
597
  msgid "Hourly"
598
- msgstr ""
599
 
600
  #: F:\Program
601
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
602
  msgid "Twice daily"
603
- msgstr ""
604
 
605
  #: F:\Program
606
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:124
607
  msgid "daily"
608
- msgstr ""
609
 
610
  #: F:\Program
611
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
612
  msgid "Select when receiving statistics report."
613
- msgstr ""
614
 
615
  #: F:\Program
616
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
617
  msgid "Send Statistical reporting to"
618
- msgstr ""
619
 
620
  #: F:\Program
621
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
622
  msgid "Email"
623
- msgstr ""
624
 
625
  #: F:\Program
626
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
627
  msgid "SMS"
628
- msgstr ""
629
 
630
  #: F:\Program
631
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:141
632
  msgid "Type Select Get Status Report."
633
- msgstr ""
634
 
635
  #: F:\Program
636
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
@@ -639,21 +641,23 @@ msgid ""
639
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
640
  "\"_blank\">Wordpress SMS</a> plugin."
641
  msgstr ""
 
 
642
 
643
  #: F:\Program
644
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
645
  msgid "Send Content Report"
646
- msgstr ""
647
 
648
  #: F:\Program
649
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
650
  msgid "Enter the contents of the reports received."
651
- msgstr ""
652
 
653
  #: F:\Program
654
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:158
655
  msgid "Input data:"
656
- msgstr ""
657
 
658
  #: F:\Program
659
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
@@ -723,13 +727,6 @@ msgstr "الفارسية"
723
  #~ msgid "Plugin home page"
724
  #~ msgstr "موقع الإضافة"
725
 
726
- #~ msgid ""
727
- #~ "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> "
728
- #~ "and enable statistics"
729
- #~ msgstr ""
730
- #~ "إضافة WP-Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s\">صفحة "
731
- #~ "الإعدادات</a> وقم بتفعيلها"
732
-
733
  #~ msgid "Stats Log"
734
  #~ msgstr "دخول الإحصائيات"
735
 
@@ -892,8 +889,5 @@ msgstr "الفارسية"
892
  #~ msgid "Agent"
893
  #~ msgstr "وكيل"
894
 
895
- #~ msgid "Referrer"
896
- #~ msgstr "المرجع"
897
-
898
  #~ msgid "WP-Statistics"
899
  #~ msgstr "الإحصائيات"
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-05 21:18+0330\n"
6
+ "PO-Revision-Date: 2013-02-09 19:29+0300\n"
7
+ "Last-Translator: ABU HATIM (@Hammadsaud) <al3zz@hotmail.com>\n"
8
  "Language-Team: ABU HATIM <al3zz.com@gmail.com>\n"
9
  "Language: ar_SA\n"
10
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
15
  "\\plugins\\wp-statistics\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Generator: Poedit 1.5.5\n"
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\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
23
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
 
24
  msgid "Statistical reporting"
25
+ msgstr "تقارير الإحصائيات"
26
 
27
  #: F:\Program
28
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
29
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
30
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
31
  msgid "Statistics"
32
  msgstr "الإحصائيات"
33
 
38
 
39
  #: F:\Program
40
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
41
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:89
42
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:14
43
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
44
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:159
57
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:33
58
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:160
59
  #: Files\xampp\htdocs\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\wordpress\wp-content\plugins\wp-statistics/widget.php:40
70
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:47
71
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:162
72
  #: Files\xampp\htdocs\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\wordpress\wp-content\plugins\wp-statistics/widget.php:54
102
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:82
103
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:164
104
  #: Files\xampp\htdocs\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\wordpress\wp-content\plugins\wp-statistics/widget.php:90
166
  msgstr "تاريخ آخر مشاركة"
167
 
168
  #: F:\Program
169
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:39
170
+ #, php-format
171
+ msgid ""
172
+ "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
173
+ "\">setting page</a> and enable statistics"
174
  msgstr ""
175
+ "إضافة Wordpress Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s\">صفحة "
176
+ "الإعدادات</a> وقم بتفعيلها"
177
 
178
  #: F:\Program
179
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
180
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:114
181
+ msgid "View Stats"
182
+ msgstr "عرض الإحصائيات"
183
+
184
+ #: F:\Program
185
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
186
  msgid "Settings"
187
  msgstr "الإعدادات"
188
 
189
  #: F:\Program
190
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:94
 
191
  msgid "Today visitor"
192
+ msgstr "زوار اليوم"
193
 
194
  #: F:\Program
195
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:99
 
196
  msgid "Today visit"
197
  msgstr "زيارات اليوم"
198
 
199
  #: F:\Program
200
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
 
201
  msgid "Yesterday visitor"
202
  msgstr "زيارات الأمس"
203
 
204
  #: F:\Program
205
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:109
206
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
207
  msgid "Yesterday visit"
208
  msgstr "زيارات الأمس"
209
 
210
  #: F:\Program
211
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:143
212
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:170
213
  msgid "You do not have sufficient permissions to access this page."
214
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
215
 
216
+ #: F:\Program
217
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:153
218
+ msgid "Table plugin does not exist! Please disable and re-enable the plugin."
219
+ msgstr ""
220
+ "هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
221
+ "تفعيلة مرة أخرى."
222
+
223
  #: F:\Program
224
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:8
225
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
226
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:165
227
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:207
228
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:242
229
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:332
230
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:372
231
  msgid "Click to toggle"
232
+ msgstr "انقر للتبديل"
233
 
234
  #: F:\Program
235
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:9
 
236
  msgid "Summary Statistics"
237
+ msgstr "ملخص الاحصائيات"
238
 
239
  #: F:\Program
240
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:20
241
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:303
242
  msgid "Visitor"
243
+ msgstr "زائر"
244
 
245
  #: F:\Program
246
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:21
247
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:313
 
248
  msgid "Visit"
249
+ msgstr "زيارة"
250
 
251
  #: F:\Program
252
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:25
 
253
  msgid "Today"
254
+ msgstr "اليوم"
255
 
256
  #: F:\Program
257
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
 
258
  msgid "Yesterday"
259
+ msgstr "الأمس"
260
 
261
  #: F:\Program
262
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:37
263
  msgid "Week"
264
+ msgstr "أسبوع"
265
 
266
  #: F:\Program
267
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
 
268
  msgid "Month"
269
+ msgstr "الشهر"
270
 
271
  #: F:\Program
272
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:49
273
  msgid "Year"
274
+ msgstr "سنة"
275
 
276
  #: F:\Program
277
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:55
 
278
  msgid "Total"
279
+ msgstr "المجموع"
280
 
281
  #: F:\Program
282
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:62
284
  msgid ""
285
  "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
286
  msgstr ""
287
+ "تاريخ اليوم: <code dir=\"rtl\">%s</code>, الوقت: <code dir=\"rtl\">%s</code>"
288
 
289
  #: F:\Program
290
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:64
291
  msgid "(Adjustment)"
292
+ msgstr "(التوافق)"
293
 
294
  #: F:\Program
295
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
296
  msgid "Browsers"
297
+ msgstr "المتصفحات"
298
 
299
  #: F:\Program
300
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:101
301
  msgid "Graph of Browsers"
302
+ msgstr "الرسم البياني من المتصفحات"
303
 
304
  #: F:\Program
305
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:143
306
  msgid "Browser share"
307
+ msgstr "مشاركة بالمتصفح"
308
 
309
  #: F:\Program
310
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:145
311
  msgid "Firefox"
312
+ msgstr " فَيَرفُكس"
313
 
314
  #: F:\Program
315
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:146
316
  msgid "IE"
317
+ msgstr "اكسبلورر"
318
 
319
  #: F:\Program
320
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:147
321
  msgid "Ipad"
322
+ msgstr "آيباد"
323
 
324
  #: F:\Program
325
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:148
326
  msgid "Android"
327
+ msgstr "آندرويد"
328
 
329
  #: F:\Program
330
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:149
331
  msgid "Chrome"
332
+ msgstr "كروم"
333
 
334
  #: F:\Program
335
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:150
336
  msgid "Safari"
337
+ msgstr "سفاري"
338
 
339
  #: F:\Program
340
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:151
341
  msgid "Other"
342
+ msgstr "أخرى"
343
 
344
  #: F:\Program
345
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:166
346
  msgid "Top referring sites"
347
+ msgstr "أعلى المواقع زيارة"
348
 
349
  #: F:\Program
350
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:171
351
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:384
 
 
352
  msgid "Reference"
353
+ msgstr "المرجع"
354
 
355
  #: F:\Program
356
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:172
357
  msgid "Address"
358
+ msgstr "العنوان"
359
 
360
  #: F:\Program
361
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:208
 
362
  msgid "About plugin"
363
+ msgstr "عن الإضافة"
364
 
365
  #: F:\Program
366
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:211
367
+ #, php-format
368
  msgid "Plugin version: %s"
369
+ msgstr "إصدار الإضافة: %s"
370
 
371
  #: F:\Program
372
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:212
373
  msgid "Translation plugin languages"
374
+ msgstr "لغات البرنامج"
375
 
376
  #: F:\Program
377
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:213
378
  msgid "Support plugin"
379
+ msgstr "دعم البرنامج المساعد"
380
 
381
  #: F:\Program
382
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
383
  msgid "Weblog"
384
+ msgstr "مدونتنا"
385
 
386
  #: F:\Program
387
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:219
388
  msgid ""
389
  "Please donate to the plugin. With the help of plug-ins you can quickly "
390
  "spread."
391
  msgstr ""
392
+ "يرجى التبرع لهذا البرنامج المساعد. وذلك لمساعدتنا في إضافة المكونات الاضافية "
393
+ "في أسرع وقت."
394
 
395
  #: F:\Program
396
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:222
397
  msgid "Donate"
398
+ msgstr "تبرع"
399
 
400
  #: F:\Program
401
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
 
402
  msgid "Statistical Chart"
403
+ msgstr "إحصائية الرسم البياني"
404
 
405
  #: F:\Program
406
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
407
  msgid "Chart hit in the last 20 days"
408
+ msgstr "المخطط البياني في الأيام الـ 20 الماضية"
409
 
410
  #: F:\Program
411
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:277
412
  msgid "Number of visits and visitors"
413
+ msgstr "عدد الزيارات والزوار"
414
 
415
  #: F:\Program
416
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:333
417
  msgid "Latest search words"
418
+ msgstr "آخر كلمات البحث"
419
 
420
  #: F:\Program
421
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
422
  msgid "Word"
423
+ msgstr "كلمة"
424
 
425
  #: F:\Program
426
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
427
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
428
  msgid "Date"
429
+ msgstr "التاريخ"
430
 
431
  #: F:\Program
432
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
433
  msgid "Site"
434
+ msgstr "الموقع"
435
 
436
  #: F:\Program
437
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:340
438
+ msgid "Referrer"
439
+ msgstr "المرجع"
440
+
441
+ #: F:\Program
442
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:352
443
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
444
  msgid "Google"
445
  msgstr "Google"
446
 
447
  #: F:\Program
448
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:354
449
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
450
  msgid "Yahoo!"
451
  msgstr "Yahoo!"
452
 
453
  #: F:\Program
454
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:356
455
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
456
  msgid "Bing"
457
  msgstr "Bing"
458
 
459
  #: F:\Program
460
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:361
461
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:398
462
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:406
463
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:418
464
  msgid "Unknown"
465
+ msgstr "غير معروف"
466
 
467
  #: F:\Program
468
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:373
 
469
  msgid "Recent Visitors"
470
+ msgstr "الزيارات الأخيرة"
471
 
472
  #: F:\Program
473
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
474
  msgid "IP"
475
  msgstr "IP"
476
 
477
  #: F:\Program
478
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
479
  msgid "Country"
480
+ msgstr "الدولة"
481
 
482
  #: F:\Program
483
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
484
  msgid "Province"
485
+ msgstr "الولاية"
486
 
487
  #: F:\Program
488
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:383
489
  msgid "Browser"
490
+ msgstr "المتصفح"
491
 
492
  #: F:\Program
493
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
 
494
  msgid "General Settings"
495
+ msgstr "إعدادات عامة"
496
 
497
  #: F:\Program
498
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
501
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:92
502
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
503
  msgid "Active"
504
+ msgstr "نشط"
505
 
506
  #: F:\Program
507
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
509
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
510
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
511
  msgid "Enable or disable this feature"
512
+ msgstr "تمكين أو تعطيل هذه الميزة"
513
 
514
  #: F:\Program
515
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
 
516
  msgid "Visits"
517
+ msgstr "مرة"
518
 
519
  #: F:\Program
520
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
521
  msgid "Visitors"
522
+ msgstr "الزوار"
523
 
524
  #: F:\Program
525
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
528
 
529
  #: F:\Program
530
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:55
 
531
  msgid "Secound"
532
  msgstr "ثانية"
533
 
534
  #: F:\Program
535
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
536
+ #, php-format
537
  msgid "Time for the check accurate online user in the site. Now: %s Second"
538
+ msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
539
 
540
  #: F:\Program
541
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
560
  #: F:\Program
561
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
562
  msgid "Coefficient per visitor"
563
+ msgstr "درجة لكل زائر"
564
 
565
  #: F:\Program
566
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:81
567
+ #, php-format
568
  msgid "For each visit to account for several hits. Currently %s."
569
+ msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
570
 
571
  #: F:\Program
572
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:87
573
  msgid "Display IP Information On-screen statistics"
574
+ msgstr "عرض معلومات IP على شاشة الاحصائيات"
575
 
576
  #: F:\Program
577
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:93
578
  msgid "Showing the flag country and Visitor province name (May be a bit slow)"
579
+ msgstr "عرض علم الدولة و محافظات الزوار (قد يكون بطئ بعض الشي)"
580
 
581
  #: F:\Program
582
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
583
  msgid "Statistical reporting settings"
584
+ msgstr "إعدادات تقارير الإحصائيات"
585
 
586
  #: F:\Program
587
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:116
 
588
  msgid "Time send"
589
+ msgstr "وقت الارسال"
590
 
591
  #: F:\Program
592
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
593
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:137
 
594
  msgid "Please select."
595
+ msgstr "الرجاء اختيار."
596
 
597
  #: F:\Program
598
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:122
599
  msgid "Hourly"
600
+ msgstr "كل ساعة"
601
 
602
  #: F:\Program
603
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
604
  msgid "Twice daily"
605
+ msgstr "مرتين يوميا"
606
 
607
  #: F:\Program
608
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:124
609
  msgid "daily"
610
+ msgstr "يوميا"
611
 
612
  #: F:\Program
613
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
614
  msgid "Select when receiving statistics report."
615
+ msgstr "حدد عند استلام إحصاءات التقرير."
616
 
617
  #: F:\Program
618
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
619
  msgid "Send Statistical reporting to"
620
+ msgstr "إرسال تقارير الإحصائيات إلى"
621
 
622
  #: F:\Program
623
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
624
  msgid "Email"
625
+ msgstr "البريد الإلكتروني"
626
 
627
  #: F:\Program
628
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
629
  msgid "SMS"
630
+ msgstr "رسائل نصية"
631
 
632
  #: F:\Program
633
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:141
634
  msgid "Type Select Get Status Report."
635
+ msgstr "حدد نوع الحصول على التقرير."
636
 
637
  #: F:\Program
638
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
641
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
642
  "\"_blank\">Wordpress SMS</a> plugin."
643
  msgstr ""
644
+ "ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href=\"%s"
645
+ "\" target=\"_blank\">Wordpress SMS</a>."
646
 
647
  #: F:\Program
648
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
649
  msgid "Send Content Report"
650
+ msgstr "أرسل المحتوى"
651
 
652
  #: F:\Program
653
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
654
  msgid "Enter the contents of the reports received."
655
+ msgstr "أدخل محتويات التقارير الواردة."
656
 
657
  #: F:\Program
658
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:158
659
  msgid "Input data:"
660
+ msgstr "إدخال البيانات:"
661
 
662
  #: F:\Program
663
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
727
  #~ msgid "Plugin home page"
728
  #~ msgstr "موقع الإضافة"
729
 
 
 
 
 
 
 
 
730
  #~ msgid "Stats Log"
731
  #~ msgstr "دخول الإحصائيات"
732
 
889
  #~ msgid "Agent"
890
  #~ msgstr "وكيل"
891
 
 
 
 
892
  #~ msgid "WP-Statistics"
893
  #~ msgstr "الإحصائيات"
languages/wp_statistics-fa_IR.mo CHANGED
Binary file
languages/wp_statistics-fa_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-05 21:18+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: <mat404@gmail.com>\n"
@@ -13,20 +13,20 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
15
  "\\plugins\\wp-statistics\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
18
  "content\\plugins\\wp-statistics\n"
19
 
20
  #: F:\Program
21
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
22
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
23
  msgid "Statistical reporting"
24
  msgstr "گزارش آماری"
25
 
26
  #: F:\Program
27
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
30
  msgid "Statistics"
31
  msgstr "آماره"
32
 
@@ -37,37 +37,37 @@ msgstr "نمایش آمار سایت در ابزارک"
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:89
41
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:14
42
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:159
44
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
45
  msgid "User Online"
46
  msgstr "کاربران حاضر"
47
 
48
  #: F:\Program
49
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:26
50
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:161
51
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
52
  msgid "Today Visit"
53
  msgstr "بازدید امروز"
54
 
55
  #: F:\Program
56
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:33
57
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:160
58
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
59
  msgid "Today Visitor"
60
  msgstr "بازدیدکننده امروز"
61
 
62
  #: F:\Program
63
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:40
64
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
65
  msgid "Yesterday Visit"
66
  msgstr "بازدید دیروز"
67
 
68
  #: F:\Program
69
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:47
70
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:162
71
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
72
  msgid "Yesterday Visitor"
73
  msgstr "بازدید کننده دیروز"
@@ -92,14 +92,14 @@ msgstr "بازدید سال"
92
 
93
  #: F:\Program
94
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:75
95
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:165
96
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
97
  msgid "Total Visit"
98
  msgstr "کل بازدیدها"
99
 
100
  #: F:\Program
101
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:82
102
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:164
103
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
104
  msgid "Total Visitor"
105
  msgstr "کل بازدیدکننده‌گان"
@@ -165,7 +165,7 @@ msgid "Last Post Date"
165
  msgstr "تاریخ به‌روزشدن سایت"
166
 
167
  #: F:\Program
168
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:39
169
  #, php-format
170
  msgid ""
171
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
@@ -175,212 +175,302 @@ msgstr ""
175
  "تنظیمات</a> آمارگیر مراجعه کنید."
176
 
177
  #: F:\Program
178
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
179
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:114
180
  msgid "View Stats"
181
  msgstr "نمایش آمار"
182
 
183
  #: F:\Program
184
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
185
  msgid "Settings"
186
  msgstr "تنظیمات"
187
 
188
  #: F:\Program
189
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:94
190
  msgid "Today visitor"
191
  msgstr "بازدید کننده امروز"
192
 
193
  #: F:\Program
194
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:99
195
  msgid "Today visit"
196
  msgstr "بازدید امروز"
197
 
198
  #: F:\Program
199
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
200
  msgid "Yesterday visitor"
201
  msgstr "بازدید کننده دیروز"
202
 
203
  #: F:\Program
204
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:109
205
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
206
  msgid "Yesterday visit"
207
  msgstr "بازدید دیروز"
208
 
209
  #: F:\Program
210
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:143
211
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:170
212
  msgid "You do not have sufficient permissions to access this page."
213
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
214
 
215
  #: F:\Program
216
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:153
217
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
218
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
219
 
220
  #: F:\Program
221
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:8
222
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
223
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:165
224
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:207
225
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:242
226
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:332
227
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:372
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  msgid "Click to toggle"
229
  msgstr "برای باز و بستن کلیک کنید"
230
 
231
  #: F:\Program
232
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  msgid "Summary Statistics"
234
  msgstr "خلاصه آمار"
235
 
236
  #: F:\Program
237
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:20
238
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:303
239
  msgid "Visitor"
240
  msgstr "بازدیدکننده"
241
 
242
  #: F:\Program
243
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:21
244
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:313
245
  msgid "Visit"
246
  msgstr "بازدید"
247
 
248
  #: F:\Program
249
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:25
250
  msgid "Today"
251
  msgstr "امروز"
252
 
253
  #: F:\Program
254
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
255
  msgid "Yesterday"
256
  msgstr "دیروز"
257
 
258
  #: F:\Program
259
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:37
260
  msgid "Week"
261
  msgstr "هفته"
262
 
263
  #: F:\Program
264
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
265
  msgid "Month"
266
  msgstr "ماه"
267
 
268
  #: F:\Program
269
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:49
270
  msgid "Year"
271
  msgstr "سال"
272
 
273
  #: F:\Program
274
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:55
275
  msgid "Total"
276
  msgstr "کل"
277
 
278
  #: F:\Program
279
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:62
280
  #, php-format
281
  msgid ""
282
  "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
283
  msgstr "امروز: <code dir=\"ltr\">%s</code>, ساعت: <code dir=\"ltr\">%s</code>"
284
 
285
  #: F:\Program
286
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:64
287
  msgid "(Adjustment)"
288
  msgstr "(تنظیم)"
289
 
290
  #: F:\Program
291
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
292
  msgid "Browsers"
293
  msgstr "مرورگرها"
294
 
295
  #: F:\Program
296
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:101
297
  msgid "Graph of Browsers"
298
  msgstr "نمودار سهم مرورگرها"
299
 
300
  #: F:\Program
301
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:143
302
  msgid "Browser share"
303
  msgstr "سهم مرورگر"
304
 
305
  #: F:\Program
306
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:145
307
- msgid "Firefox"
308
- msgstr "فایرفاکس"
309
-
310
- #: F:\Program
311
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:146
312
- msgid "IE"
313
- msgstr "اینترنت اکسپلورر"
314
-
315
- #: F:\Program
316
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:147
317
- msgid "Ipad"
318
- msgstr "آی‌پَد"
319
-
320
- #: F:\Program
321
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:148
322
- msgid "Android"
323
- msgstr "اندروید"
324
-
325
- #: F:\Program
326
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:149
327
- msgid "Chrome"
328
- msgstr "کروم"
329
-
330
- #: F:\Program
331
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:150
332
- msgid "Safari"
333
- msgstr "سافاری"
334
-
335
- #: F:\Program
336
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:151
337
- msgid "Other"
338
- msgstr "بقیه"
339
-
340
- #: F:\Program
341
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:166
342
  msgid "Top referring sites"
343
  msgstr "بهترین سایت های ارجاع دهنده"
344
 
345
  #: F:\Program
346
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:171
347
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:384
348
  msgid "Reference"
349
  msgstr "ارجاع"
350
 
351
  #: F:\Program
352
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:172
353
  msgid "Address"
354
  msgstr "آدرس"
355
 
356
  #: F:\Program
357
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:208
358
  msgid "About plugin"
359
  msgstr "درباره افزونه آماره"
360
 
361
  #: F:\Program
362
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:211
363
  #, php-format
364
  msgid "Plugin version: %s"
365
  msgstr "نگارش افزونه: %s"
366
 
367
  #: F:\Program
368
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:212
369
- msgid "Translation plugin languages"
370
- msgstr "ترجمه زبان‌های افزونه"
371
 
372
  #: F:\Program
373
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:213
374
  msgid "Support plugin"
375
  msgstr "پشتیبانی افزونه"
376
 
377
  #: F:\Program
378
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
 
 
 
 
 
379
  msgid "Weblog"
380
  msgstr "وبلاگ"
381
 
382
  #: F:\Program
383
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:219
384
  msgid ""
385
  "Please donate to the plugin. With the help of plug-ins you can quickly "
386
  "spread."
@@ -389,101 +479,30 @@ msgstr ""
389
  "گسترش یابد."
390
 
391
  #: F:\Program
392
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:222
393
  msgid "Donate"
394
  msgstr "حمایت"
395
 
396
  #: F:\Program
397
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
398
  msgid "Statistical Chart"
399
  msgstr "نمودارهای آماری"
400
 
401
  #: F:\Program
402
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
403
  msgid "Chart hit in the last 20 days"
404
  msgstr "نمودار آمار در 20 روز گذشته"
405
 
406
  #: F:\Program
407
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:277
408
  msgid "Number of visits and visitors"
409
  msgstr "تعداد بازدید و بازدید کننده"
410
 
411
  #: F:\Program
412
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:333
413
- msgid "Latest search words"
414
- msgstr "آخرین کلمات جستجو شده"
415
-
416
- #: F:\Program
417
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
418
- msgid "Word"
419
- msgstr "کلمه"
420
-
421
- #: F:\Program
422
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
423
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
424
- msgid "Date"
425
- msgstr "تاریخ"
426
-
427
- #: F:\Program
428
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
429
- msgid "Site"
430
- msgstr "سایت"
431
-
432
- #: F:\Program
433
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:340
434
- msgid "Referrer"
435
- msgstr "ارجاع"
436
-
437
- #: F:\Program
438
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:352
439
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
440
- msgid "Google"
441
- msgstr "گوگل"
442
-
443
- #: F:\Program
444
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:354
445
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
446
- msgid "Yahoo!"
447
- msgstr "یاهو!"
448
-
449
- #: F:\Program
450
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:356
451
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
452
- msgid "Bing"
453
- msgstr "بینگ"
454
-
455
- #: F:\Program
456
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:361
457
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:398
458
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:406
459
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:418
460
- msgid "Unknown"
461
- msgstr "نا معلوم"
462
-
463
- #: F:\Program
464
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:373
465
- msgid "Recent Visitors"
466
- msgstr "آخرین بازدیدکنندگان"
467
-
468
- #: F:\Program
469
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
470
- msgid "IP"
471
- msgstr "آی‌پی"
472
-
473
- #: F:\Program
474
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
475
- msgid "Country"
476
- msgstr "کشور"
477
-
478
- #: F:\Program
479
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
480
- msgid "Province"
481
- msgstr "استان"
482
-
483
- #: F:\Program
484
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:383
485
- msgid "Browser"
486
- msgstr "مرورگر"
487
 
488
  #: F:\Program
489
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
@@ -494,8 +513,7 @@ msgstr "تنظیمات عمومی"
494
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
495
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
496
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
497
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:92
498
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
499
  msgid "Active"
500
  msgstr "فعال"
501
 
@@ -503,7 +521,7 @@ msgstr "فعال"
503
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
504
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
505
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
506
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
507
  msgid "Enable or disable this feature"
508
  msgstr "فعال یا غیرفعال کردن این امکان"
509
 
@@ -565,73 +583,63 @@ msgid "For each visit to account for several hits. Currently %s."
565
  msgstr "تعداد محاسبه برای هربازدید. درحال حاظر %s است."
566
 
567
  #: F:\Program
568
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:87
569
- msgid "Display IP Information On-screen statistics"
570
- msgstr "نمایش اطلاعات آی پی در صفحه نمایش آمار"
571
-
572
- #: F:\Program
573
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:93
574
- msgid "Showing the flag country and Visitor province name (May be a bit slow)"
575
- msgstr "نمایش پرچم کشور و نام استان بازدید کننده (ممکن است کمی سرعت بگیرد)"
576
-
577
- #: F:\Program
578
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
579
  msgid "Statistical reporting settings"
580
  msgstr "تنظیمات گزارش آماری"
581
 
582
  #: F:\Program
583
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:116
584
  msgid "Time send"
585
  msgstr "زمان ارسال"
586
 
587
  #: F:\Program
588
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
589
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:137
590
  msgid "Please select."
591
  msgstr "لطفا انتخاب کنید."
592
 
593
  #: F:\Program
594
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:122
595
  msgid "Hourly"
596
  msgstr "هرساعت"
597
 
598
  #: F:\Program
599
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
600
  msgid "Twice daily"
601
  msgstr "2 بار در روز"
602
 
603
  #: F:\Program
604
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:124
605
  msgid "daily"
606
  msgstr "روزانه"
607
 
608
  #: F:\Program
609
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
610
  msgid "Select when receiving statistics report."
611
  msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
612
 
613
  #: F:\Program
614
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
615
  msgid "Send Statistical reporting to"
616
  msgstr "ارسال گزارش آمار به"
617
 
618
  #: F:\Program
619
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
620
  msgid "Email"
621
  msgstr "پست الکترونیک"
622
 
623
  #: F:\Program
624
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
625
  msgid "SMS"
626
  msgstr "پیامک"
627
 
628
  #: F:\Program
629
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:141
630
  msgid "Type Select Get Status Report."
631
  msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
632
 
633
  #: F:\Program
634
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
635
  #, php-format
636
  msgid ""
637
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
@@ -641,17 +649,17 @@ msgstr ""
641
  "وردپرس</a> را نصب کنید."
642
 
643
  #: F:\Program
644
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
645
  msgid "Send Content Report"
646
  msgstr "محتوای ارسال گزارش"
647
 
648
  #: F:\Program
649
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
650
  msgid "Enter the contents of the reports received."
651
  msgstr "محتوای دریافت گزارش را وارد کنید."
652
 
653
  #: F:\Program
654
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:158
655
  msgid "Input data:"
656
  msgstr "داده‌های ورودی:"
657
 
@@ -670,11 +678,6 @@ msgstr "آیتم‌ها"
670
  msgid "Select type of search engine"
671
  msgstr "انتخاب نوع موتورجستجو"
672
 
673
- #: F:\Program
674
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
675
- msgid "All"
676
- msgstr "همه"
677
-
678
  #: F:\Program
679
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
680
  msgid "Type date for last update"
@@ -690,6 +693,43 @@ msgstr "میلادی"
690
  msgid "Persian"
691
  msgstr "شمسی (فارسی)"
692
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693
  #~ msgid "Access to Show statistics"
694
  #~ msgstr "دسترسی برای نمایش آمار"
695
 
@@ -725,9 +765,6 @@ msgstr "شمسی (فارسی)"
725
  #~ msgid "Chart Stats in 1 month"
726
  #~ msgstr "نمودار آمار در ۱ ماه گذشته"
727
 
728
- #~ msgid "Opera"
729
- #~ msgstr "اوپِرا"
730
-
731
  #~ msgid "Words"
732
  #~ msgstr "کلمات"
733
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-03 16:56+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: <mat404@gmail.com>\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
15
  "\\plugins\\wp-statistics\n"
16
+ "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
18
  "content\\plugins\\wp-statistics\n"
19
 
20
  #: F:\Program
21
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
22
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
23
  msgid "Statistical reporting"
24
  msgstr "گزارش آماری"
25
 
26
  #: F:\Program
27
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:68
30
  msgid "Statistics"
31
  msgstr "آماره"
32
 
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
41
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
42
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:147
44
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
45
  msgid "User Online"
46
  msgstr "کاربران حاضر"
47
 
48
  #: F:\Program
49
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:26
50
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
51
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
52
  msgid "Today Visit"
53
  msgstr "بازدید امروز"
54
 
55
  #: F:\Program
56
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:33
57
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:148
58
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
59
  msgid "Today Visitor"
60
  msgstr "بازدیدکننده امروز"
61
 
62
  #: F:\Program
63
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:40
64
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
65
  msgid "Yesterday Visit"
66
  msgstr "بازدید دیروز"
67
 
68
  #: F:\Program
69
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:47
70
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
71
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
72
  msgid "Yesterday Visitor"
73
  msgstr "بازدید کننده دیروز"
92
 
93
  #: F:\Program
94
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:75
95
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
96
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
97
  msgid "Total Visit"
98
  msgstr "کل بازدیدها"
99
 
100
  #: F:\Program
101
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:82
102
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:152
103
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
104
  msgid "Total Visitor"
105
  msgstr "کل بازدیدکننده‌گان"
165
  msgstr "تاریخ به‌روزشدن سایت"
166
 
167
  #: F:\Program
168
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:40
169
  #, php-format
170
  msgid ""
171
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
175
  "تنظیمات</a> آمارگیر مراجعه کنید."
176
 
177
  #: F:\Program
178
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
179
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
180
  msgid "View Stats"
181
  msgstr "نمایش آمار"
182
 
183
  #: F:\Program
184
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:71
185
  msgid "Settings"
186
  msgstr "تنظیمات"
187
 
188
  #: F:\Program
189
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
190
  msgid "Today visitor"
191
  msgstr "بازدید کننده امروز"
192
 
193
  #: F:\Program
194
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
195
  msgid "Today visit"
196
  msgstr "بازدید امروز"
197
 
198
  #: F:\Program
199
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
200
  msgid "Yesterday visitor"
201
  msgstr "بازدید کننده دیروز"
202
 
203
  #: F:\Program
204
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
205
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
206
  msgid "Yesterday visit"
207
  msgstr "بازدید دیروز"
208
 
209
  #: F:\Program
210
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
211
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
212
  msgid "You do not have sufficient permissions to access this page."
213
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
214
 
215
  #: F:\Program
216
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:154
217
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
218
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
219
 
220
  #: F:\Program
221
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
222
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
223
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
224
+ msgid "To be added soon"
225
+ msgstr "به زودی اضافه می شود"
226
+
227
+ #: F:\Program
228
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
229
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
230
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:343
231
+ msgid "Latest search words"
232
+ msgstr "آخرین کلمات جستجو شده"
233
+
234
+ #: F:\Program
235
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
236
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
237
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
238
+ msgid "All"
239
+ msgstr "همه"
240
+
241
+ #: F:\Program
242
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
243
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:59
244
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:361
245
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
246
+ msgid "Google"
247
+ msgstr "گوگل"
248
+
249
+ #: F:\Program
250
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
251
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
252
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:363
253
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
254
+ msgid "Yahoo!"
255
+ msgstr "یاهو!"
256
+
257
+ #: F:\Program
258
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
259
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
260
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:365
261
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
262
+ msgid "Bing"
263
+ msgstr "بینگ"
264
+
265
+ #: F:\Program
266
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
267
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
268
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
269
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
270
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
271
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:215
272
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:251
273
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:341
274
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
275
  msgid "Click to toggle"
276
  msgstr "برای باز و بستن کلیک کنید"
277
 
278
  #: F:\Program
279
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:56
280
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
281
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:358
282
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:397
283
+ msgid "Map"
284
+ msgstr "نقشه"
285
+
286
+ #: F:\Program
287
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:79
288
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
289
+ msgid "Page"
290
+ msgstr "صفحه"
291
+
292
+ #: F:\Program
293
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:79
294
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
295
+ msgid "From"
296
+ msgstr "از"
297
+
298
+ #: F:\Program
299
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
300
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
301
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
302
+ msgid "Recent Visitors"
303
+ msgstr "آخرین بازدیدکنندگان"
304
+
305
+ #: F:\Program
306
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
307
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:153
308
+ msgid "Firefox"
309
+ msgstr "فایرفاکس"
310
+
311
+ #: F:\Program
312
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
313
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:154
314
+ msgid "IE"
315
+ msgstr "اینترنت اکسپلورر"
316
+
317
+ #: F:\Program
318
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
319
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:155
320
+ msgid "Ipad"
321
+ msgstr "آی‌پَد"
322
+
323
+ #: F:\Program
324
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
325
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:156
326
+ msgid "Android"
327
+ msgstr "اندروید"
328
+
329
+ #: F:\Program
330
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
331
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:157
332
+ msgid "Chrome"
333
+ msgstr "کروم"
334
+
335
+ #: F:\Program
336
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
337
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
338
+ msgid "Safari"
339
+ msgstr "سافاری"
340
+
341
+ #: F:\Program
342
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:20
343
+ msgid "Opera"
344
+ msgstr "اوپِرا"
345
+
346
+ #: F:\Program
347
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
348
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:159
349
+ msgid "Other"
350
+ msgstr "بقیه"
351
+
352
+ #: F:\Program
353
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:17
354
  msgid "Summary Statistics"
355
  msgstr "خلاصه آمار"
356
 
357
  #: F:\Program
358
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
359
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:312
360
  msgid "Visitor"
361
  msgstr "بازدیدکننده"
362
 
363
  #: F:\Program
364
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
365
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:322
366
  msgid "Visit"
367
  msgstr "بازدید"
368
 
369
  #: F:\Program
370
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
371
  msgid "Today"
372
  msgstr "امروز"
373
 
374
  #: F:\Program
375
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
376
  msgid "Yesterday"
377
  msgstr "دیروز"
378
 
379
  #: F:\Program
380
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:45
381
  msgid "Week"
382
  msgstr "هفته"
383
 
384
  #: F:\Program
385
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:51
386
  msgid "Month"
387
  msgstr "ماه"
388
 
389
  #: F:\Program
390
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:57
391
  msgid "Year"
392
  msgstr "سال"
393
 
394
  #: F:\Program
395
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
396
  msgid "Total"
397
  msgstr "کل"
398
 
399
  #: F:\Program
400
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
401
  #, php-format
402
  msgid ""
403
  "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
404
  msgstr "امروز: <code dir=\"ltr\">%s</code>, ساعت: <code dir=\"ltr\">%s</code>"
405
 
406
  #: F:\Program
407
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:72
408
  msgid "(Adjustment)"
409
  msgstr "(تنظیم)"
410
 
411
  #: F:\Program
412
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:78
413
  msgid "Browsers"
414
  msgstr "مرورگرها"
415
 
416
  #: F:\Program
417
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:109
418
  msgid "Graph of Browsers"
419
  msgstr "نمودار سهم مرورگرها"
420
 
421
  #: F:\Program
422
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:151
423
  msgid "Browser share"
424
  msgstr "سهم مرورگر"
425
 
426
  #: F:\Program
427
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
  msgid "Top referring sites"
429
  msgstr "بهترین سایت های ارجاع دهنده"
430
 
431
  #: F:\Program
432
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:179
 
433
  msgid "Reference"
434
  msgstr "ارجاع"
435
 
436
  #: F:\Program
437
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:180
438
  msgid "Address"
439
  msgstr "آدرس"
440
 
441
  #: F:\Program
442
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
443
  msgid "About plugin"
444
  msgstr "درباره افزونه آماره"
445
 
446
  #: F:\Program
447
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:219
448
  #, php-format
449
  msgid "Plugin version: %s"
450
  msgstr "نگارش افزونه: %s"
451
 
452
  #: F:\Program
453
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:220
454
+ msgid "Translations"
455
+ msgstr "ترجمه‌ها"
456
 
457
  #: F:\Program
458
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:221
459
  msgid "Support plugin"
460
  msgstr "پشتیبانی افزونه"
461
 
462
  #: F:\Program
463
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:222
464
+ msgid "Facebook"
465
+ msgstr "فیس‌بوک"
466
+
467
+ #: F:\Program
468
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:223
469
  msgid "Weblog"
470
  msgstr "وبلاگ"
471
 
472
  #: F:\Program
473
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:228
474
  msgid ""
475
  "Please donate to the plugin. With the help of plug-ins you can quickly "
476
  "spread."
479
  "گسترش یابد."
480
 
481
  #: F:\Program
482
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:231
483
  msgid "Donate"
484
  msgstr "حمایت"
485
 
486
  #: F:\Program
487
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:252
488
  msgid "Statistical Chart"
489
  msgstr "نمودارهای آماری"
490
 
491
  #: F:\Program
492
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:267
493
  msgid "Chart hit in the last 20 days"
494
  msgstr "نمودار آمار در 20 روز گذشته"
495
 
496
  #: F:\Program
497
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
498
  msgid "Number of visits and visitors"
499
  msgstr "تعداد بازدید و بازدید کننده"
500
 
501
  #: F:\Program
502
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:343
 
 
 
 
 
 
 
 
 
 
503
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
504
+ msgid "(See more)"
505
+ msgstr "(مشاهده بیشتر)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
506
 
507
  #: F:\Program
508
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
513
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
514
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
515
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
516
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
 
517
  msgid "Active"
518
  msgstr "فعال"
519
 
521
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
522
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
523
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
524
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
525
  msgid "Enable or disable this feature"
526
  msgstr "فعال یا غیرفعال کردن این امکان"
527
 
583
  msgstr "تعداد محاسبه برای هربازدید. درحال حاظر %s است."
584
 
585
  #: F:\Program
586
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
 
 
 
 
 
 
 
 
 
 
587
  msgid "Statistical reporting settings"
588
  msgstr "تنظیمات گزارش آماری"
589
 
590
  #: F:\Program
591
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
592
  msgid "Time send"
593
  msgstr "زمان ارسال"
594
 
595
  #: F:\Program
596
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
597
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:125
598
  msgid "Please select."
599
  msgstr "لطفا انتخاب کنید."
600
 
601
  #: F:\Program
602
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
603
  msgid "Hourly"
604
  msgstr "هرساعت"
605
 
606
  #: F:\Program
607
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:111
608
  msgid "Twice daily"
609
  msgstr "2 بار در روز"
610
 
611
  #: F:\Program
612
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:112
613
  msgid "daily"
614
  msgstr "روزانه"
615
 
616
  #: F:\Program
617
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:114
618
  msgid "Select when receiving statistics report."
619
  msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
620
 
621
  #: F:\Program
622
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
623
  msgid "Send Statistical reporting to"
624
  msgstr "ارسال گزارش آمار به"
625
 
626
  #: F:\Program
627
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
628
  msgid "Email"
629
  msgstr "پست الکترونیک"
630
 
631
  #: F:\Program
632
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:127
633
  msgid "SMS"
634
  msgstr "پیامک"
635
 
636
  #: F:\Program
637
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:129
638
  msgid "Type Select Get Status Report."
639
  msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
640
 
641
  #: F:\Program
642
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
643
  #, php-format
644
  msgid ""
645
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
649
  "وردپرس</a> را نصب کنید."
650
 
651
  #: F:\Program
652
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
653
  msgid "Send Content Report"
654
  msgstr "محتوای ارسال گزارش"
655
 
656
  #: F:\Program
657
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
658
  msgid "Enter the contents of the reports received."
659
  msgstr "محتوای دریافت گزارش را وارد کنید."
660
 
661
  #: F:\Program
662
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:146
663
  msgid "Input data:"
664
  msgstr "داده‌های ورودی:"
665
 
678
  msgid "Select type of search engine"
679
  msgstr "انتخاب نوع موتورجستجو"
680
 
 
 
 
 
 
681
  #: F:\Program
682
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
683
  msgid "Type date for last update"
693
  msgid "Persian"
694
  msgstr "شمسی (فارسی)"
695
 
696
+ #~ msgid "Display IP Information On-screen statistics"
697
+ #~ msgstr "نمایش اطلاعات آی پی در صفحه نمایش آمار"
698
+
699
+ #~ msgid ""
700
+ #~ "Showing the flag country and Visitor province name (May be a bit slow)"
701
+ #~ msgstr "نمایش پرچم کشور و نام استان بازدید کننده (ممکن است کمی سرعت بگیرد)"
702
+
703
+ #~ msgid "IP"
704
+ #~ msgstr "آی‌پی"
705
+
706
+ #~ msgid "Country"
707
+ #~ msgstr "کشور"
708
+
709
+ #~ msgid "Province"
710
+ #~ msgstr "استان"
711
+
712
+ #~ msgid "Date"
713
+ #~ msgstr "تاریخ"
714
+
715
+ #~ msgid "Browser"
716
+ #~ msgstr "مرورگر"
717
+
718
+ #~ msgid "Unknown"
719
+ #~ msgstr "نا معلوم"
720
+
721
+ #~ msgid "Result: "
722
+ #~ msgstr "نتیجه:"
723
+
724
+ #~ msgid "Word"
725
+ #~ msgstr "کلمه"
726
+
727
+ #~ msgid "Site"
728
+ #~ msgstr "سایت"
729
+
730
+ #~ msgid "Referrer"
731
+ #~ msgstr "ارجاع"
732
+
733
  #~ msgid "Access to Show statistics"
734
  #~ msgstr "دسترسی برای نمایش آمار"
735
 
765
  #~ msgid "Chart Stats in 1 month"
766
  #~ msgstr "نمودار آمار در ۱ ماه گذشته"
767
 
 
 
 
768
  #~ msgid "Words"
769
  #~ msgstr "کلمات"
770
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://iran98.org/donate/
4
  Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 3.6
7
- Stable tag: 3.0.2
8
 
9
  Complete statistics for your blog.
10
 
@@ -67,6 +67,8 @@ To complete the language deficits of [this section](http://teamwork.wp-parsi.com
67
  Support Forum in [WordPress support forum Persian](http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/)
68
  [Donate to this plugin](http://iran98.org/donate/)
69
 
 
 
70
  == Installation ==
71
  1. Upload `wp-statistics` to the `/wp-content/plugins/` directory.
72
  2. Activate the plugin through the 'Plugins' menu in WordPress.
@@ -114,11 +116,23 @@ Get Plugin updates via Automatic only.
114
  Disable / Enable the plugin.
115
 
116
  == Screenshots ==
117
- 1. Screen shot (screenshot-1.png) in View stats page.
118
- 1. Screen shot (screenshot-2.png) in Settings page.
119
- 1. Screen shot (screenshot-3.png) in Widget page.
 
 
120
 
121
  == Upgrade Notice ==
 
 
 
 
 
 
 
 
 
 
122
  = 3.0.2 =
123
  * Added: Hungarian language.
124
  * Added: Insert value in useronline table by Primary_Values function.
@@ -271,6 +285,16 @@ Disable / Enable the plugin.
271
  * Start plugin
272
 
273
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
274
  = 3.0.2 =
275
  * Added: Hungarian language.
276
  * Added: Insert value in useronline table by Primary_Values function.
4
  Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 3.6
7
+ Stable tag: 3.1.0
8
 
9
  Complete statistics for your blog.
10
 
67
  Support Forum in [WordPress support forum Persian](http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/)
68
  [Donate to this plugin](http://iran98.org/donate/)
69
 
70
+ [Plugin Facebook page](https://www.facebook.com/pages/Wordpress-Statistics/546922341997898?ref=stream)
71
+
72
  == Installation ==
73
  1. Upload `wp-statistics` to the `/wp-content/plugins/` directory.
74
  2. Activate the plugin through the 'Plugins' menu in WordPress.
116
  Disable / Enable the plugin.
117
 
118
  == Screenshots ==
119
+ 1. Screen shot (screenshot-1.png) in view stats page.
120
+ 1. Screen shot (screenshot-2.png) in view latest search words.
121
+ 1. Screen shot (screenshot-3.png) in view recent visitors page.
122
+ 1. Screen shot (screenshot-4.png) in settings page.
123
+ 1. Screen shot (screenshot-5.png) in widget page.
124
 
125
  == Upgrade Notice ==
126
+ = 3.1.0 =
127
+ * Bug Fix: Statistics Menu bar.
128
+ * Bug Fix: Referral link of the last visitors.
129
+ * Added: Latest all search words with full details.
130
+ * Added: Recent all visitors with full details.
131
+ * Enhancement: Optimized View Statistics.
132
+ * Language: updated.
133
+ * Language: Arabic was updated.
134
+ * Remove: IP Information in setting page.
135
+
136
  = 3.0.2 =
137
  * Added: Hungarian language.
138
  * Added: Insert value in useronline table by Primary_Values function.
285
  * Start plugin
286
 
287
  == Changelog ==
288
+ = 3.1.0 =
289
+ * Bug Fix: Statistics Menu bar.
290
+ * Bug Fix: Referral link of the last visitors.
291
+ * Added: Latest all search words with full details.
292
+ * Added: Recent all visitors with full details.
293
+ * Enhancement: Optimized View Statistics.
294
+ * Language: updated.
295
+ * Language: Arabic was updated.
296
+ * Remove: IP Information in setting page.
297
+
298
  = 3.0.2 =
299
  * Added: Hungarian language.
300
  * Added: Insert value in useronline table by Primary_Values function.
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
screenshot-4.png ADDED
Binary file
screenshot-5.png ADDED
Binary file
styles/log.css CHANGED
@@ -6,7 +6,10 @@
6
  margin: 0 0 0 1%;
7
  width: 68%;
8
  }
9
- #right-log a, #left-log a {
 
 
 
10
  text-decoration: none;
11
  }
12
  #summary-stats {
@@ -58,6 +61,47 @@
58
  .td-align {
59
  text-align: left;
60
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  #time_zone a {
62
  font-size: 11px;
63
  text-decoration: none;
6
  margin: 0 0 0 1%;
7
  width: 68%;
8
  }
9
+ #last-log{
10
+ width: 100%;
11
+ }
12
+ #right-log a, #left-log a, #last-log a{
13
  text-decoration: none;
14
  }
15
  #summary-stats {
61
  .td-align {
62
  text-align: left;
63
  }
64
+ .td-url {
65
+ color: #009936 !important;
66
+ direction: ltr;
67
+ font-size: 10px !important;
68
+ text-align: left;
69
+ white-space: nowrap;
70
+ }
71
+ .log-latest {
72
+ }
73
+ .log-item {
74
+ border-bottom: 1px solid #D3CDCD;
75
+ border-top: 1px solid #FFFFFF;
76
+ height: 40px;
77
+ padding: 3px 7px;
78
+ }
79
+ .log-item:hover {
80
+ background: none repeat scroll 0 0 #EEEEEE;
81
+ }
82
+ .log-referred {
83
+ float: left;
84
+ width: 80%;
85
+ }
86
+ .log-ip {
87
+ direction: ltr;
88
+ float: right;
89
+ font-size: 10px;
90
+ margin-bottom: 5px;
91
+ width: 20%;
92
+ }
93
+ .log-tools {
94
+ float: left;
95
+ margin: 0 2px;
96
+ }
97
+ .log-url {
98
+ direction: ltr;
99
+ float: left;
100
+ font-size: 10px;
101
+ width: 90%;
102
+ }
103
+ .log-url img {
104
+ }
105
  #time_zone a {
106
  font-size: 11px;
107
  text-decoration: none;
styles/pagination.css ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ .pagination-log {
3
+ border-top: 1px solid #F2F2F2;
4
+ direction: ltr;
5
+ padding: 14px 0 0;
6
+ text-align: center;
7
+ }
8
+ .pageOn {
9
+ background: none repeat scroll 0 0 #4DCDFF;
10
+ border: 1px solid #60A8FF;
11
+ border-radius: 4px 4px 4px 4px;
12
+ box-shadow: 0 1px 0 #C8E8FF inset;
13
+ color: #FFF4F4;
14
+ margin: 2px;
15
+ padding: 5px 10px;
16
+ }
17
+ .pageOff {
18
+ background: none repeat scroll 0 0 #EEEEEE;
19
+ border: 1px solid #DADADA;
20
+ border-radius: 4px 4px 4px 4px;
21
+ color: #AAAAAA;
22
+ margin: 2px;
23
+ padding: 5px 2px;
24
+ text-shadow: 1px 1px #FFFFFF;
25
+ }
26
+ .pageOff:hover {
27
+ background: none repeat scroll 0 0 #EDE9E9;
28
+ cursor: pointer;
29
+ }
30
+ .pageOff a {
31
+ box-shadow: 0 1px 0 #FFFFFF inset;
32
+ color: #AAAAAA;
33
+ padding: 5px 8px;
34
+ }
35
+ .paginationSelect {
36
+ background: none repeat scroll 0 0 #EEEEEE;
37
+ }
38
+ .paginationErrors {
39
+ background: none repeat scroll 0 0 #FFDD99;
40
+ border: 2px dashed #DD9900;
41
+ clear: both;
42
+ color: #AA4400;
43
+ margin: 40px auto;
44
+ padding: 10px;
45
+ text-align: left;
46
+ width: 70%;
47
+ }
48
+ #result-log {
49
+ color: #148E00;
50
+ direction: rtl;
51
+ font-weight: bold;
52
+ }
styles/rtl.css CHANGED
@@ -7,3 +7,9 @@
7
  #donate-button{
8
  float: left;
9
  }
 
 
 
 
 
 
7
  #donate-button{
8
  float: left;
9
  }
10
+ .log-referred{
11
+ float: right;
12
+ }
13
+ .log-ip{
14
+ float: left;
15
+ }
wp-statistics.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
5
  Description: Summary statistics of blog.
6
- Version: 3.0.2
7
  Author: Mostafa Soufi
8
  Author URI: http://iran98.org/
9
  License: GPL2
@@ -13,7 +13,8 @@ License: GPL2
13
  date_default_timezone_set( get_option('timezone_string') );
14
  }
15
 
16
- define('WP_STATISTICS_VERSION', '3.0');
 
17
 
18
  load_plugin_textdomain('wp_statistics','wp-content/plugins/wp-statistics/languages');
19
 
@@ -117,7 +118,7 @@ License: GPL2
117
  }
118
  }
119
 
120
- if( get_option('menu_bar') ) {
121
  add_action('admin_bar_menu', 'wp_statistics_menubar', 20);
122
  }
123
 
@@ -154,14 +155,49 @@ License: GPL2
154
  }
155
 
156
  wp_enqueue_script('dashboard');
157
- wp_enqueue_script('highcharts', plugin_dir_url(__FILE__) . 'js/highcharts.js', true, '2.3.5');
158
-
159
- wp_enqueue_style('log-css', plugin_dir_url(__FILE__) . 'styles/log.css', true, '1.0');
160
 
161
  if( is_rtl() )
162
- wp_enqueue_style('rtl-css', plugin_dir_url(__FILE__) . 'styles/rtl.css', true, '1.0');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
 
164
- include_once dirname( __FILE__ ) . '/includes/log/log.php';
165
  }
166
 
167
  function wp_statistics_settings() {
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
5
  Description: Summary statistics of blog.
6
+ Version: 3.1.0
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', '3.1.0');
17
+ update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
18
 
19
  load_plugin_textdomain('wp_statistics','wp-content/plugins/wp-statistics/languages');
20
 
118
  }
119
  }
120
 
121
+ if( get_option('wps_menu_bar') ) {
122
  add_action('admin_bar_menu', 'wp_statistics_menubar', 20);
123
  }
124
 
155
  }
156
 
157
  wp_enqueue_script('dashboard');
158
+ wp_enqueue_style('log-css', plugin_dir_url(__FILE__) . 'styles/log.css', true, '1.1');
159
+ wp_enqueue_style('pagination-css', plugin_dir_url(__FILE__) . 'styles/pagination.css', true, '1.0');
 
160
 
161
  if( is_rtl() )
162
+ wp_enqueue_style('rtl-css', plugin_dir_url(__FILE__) . 'styles/rtl.css', true, '1.1');
163
+
164
+ include_once dirname( __FILE__ ) . '/includes/class/pagination.class.php';
165
+
166
+ $result['google'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%google.com%'");
167
+ $result['yahoo'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%yahoo.com%'");
168
+ $result['bing'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%bing.com%'");
169
+
170
+ if( $_GET['type'] == 'last-all-search' ) {
171
+
172
+ $result['all'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%google.com%' OR `referred` LIKE '%yahoo.com%' OR `referred` LIKE '%bing.com%'");
173
+
174
+ $referred = $_GET['referred'];
175
+ if( $referred ) {
176
+ $total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%{$referred}%'");
177
+ } else {
178
+ $total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%google.com%' OR `referred` LIKE '%yahoo.com%' OR `referred` LIKE '%bing.com%'");
179
+ }
180
+
181
+ include_once dirname( __FILE__ ) . '/includes/log/last-search.php';
182
+
183
+ } else if( $_GET['type'] == 'last-all-visitor' ) {
184
+
185
+ $agent = $_GET['agent'];
186
+ if( $agent ) {
187
+ $total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `agent` LIKE '%{$agent}%'");
188
+ } else {
189
+ $total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
190
+ }
191
+
192
+ include_once dirname( __FILE__ ) . '/includes/log/last-visitor.php';
193
+
194
+ } else {
195
+
196
+ wp_enqueue_script('highcharts', plugin_dir_url(__FILE__) . 'js/highcharts.js', true, '2.3.5');
197
+
198
+ include_once dirname( __FILE__ ) . '/includes/log/log.php';
199
+ }
200
 
 
201
  }
202
 
203
  function wp_statistics_settings() {