WP Statistics - Version 3.2

Version Description

  • Added: Optimization plugin page.
  • Added: Export data to excel, xml, csv and tsv files.
  • Added: Delete table data.
  • Added: Show memory usage in optimization page.
  • Language: Polish (pl_PL) was updated.
  • Language: updated.
Download this release

Release Info

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

Code changes from version 3.1.4 to 3.2

includes/class/hits.class.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
  class Hits extends WP_Statistics {
 
 
3
 
4
  public function __construct() {
5
 
1
  <?php
2
  class Hits extends WP_Statistics {
3
+
4
+ public $result = null;
5
 
6
  public function __construct() {
7
 
includes/class/php-export-data.class.php ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // php-export-data by Eli Dickinson, http://github.com/elidickinson/php-export-data
3
+
4
+ /**
5
+ * ExportData is the base class for exporters to specific file formats. See other
6
+ * classes below.
7
+ */
8
+ abstract class ExportData {
9
+ protected $exportTo; // Set in constructor to one of 'browser', 'file', 'string'
10
+ protected $stringData; // stringData so far, used if export string mode
11
+ protected $tempFile; // handle to temp file (for export file mode)
12
+ protected $tempFilename; // temp file name and path (for export file mode)
13
+
14
+ public $filename; // file mode: the output file name; browser mode: file name for download; string mode: not used
15
+
16
+ public function __construct($exportTo = "browser", $filename = "exportdata") {
17
+ if(!in_array($exportTo, array('browser','file','string') )) {
18
+ throw new Exception("$exportTo is not a valid ExportData export type");
19
+ }
20
+ $this->exportTo = $exportTo;
21
+ $this->filename = $filename;
22
+ }
23
+
24
+ public function initialize() {
25
+
26
+ switch($this->exportTo) {
27
+ case 'browser':
28
+ $this->sendHttpHeaders();
29
+ break;
30
+ case 'string':
31
+ $this->stringData = '';
32
+ break;
33
+ case 'file':
34
+ $this->tempFilename = tempnam(sys_get_temp_dir(), 'exportdata');
35
+ $this->tempFile = fopen($this->tempFilename, "w");
36
+ break;
37
+ }
38
+
39
+ $this->write($this->generateHeader());
40
+ }
41
+
42
+ public function addRow($row) {
43
+ $this->write($this->generateRow($row));
44
+ }
45
+
46
+ public function finalize() {
47
+
48
+ $this->write($this->generateFooter());
49
+
50
+ switch($this->exportTo) {
51
+ case 'browser':
52
+ flush();
53
+ break;
54
+ case 'string':
55
+ // do nothing
56
+ break;
57
+ case 'file':
58
+ // close temp file and move it to correct location
59
+ fclose($this->tempFile);
60
+ rename($this->tempFilename, $this->filename);
61
+ break;
62
+ }
63
+ }
64
+
65
+ public function getString() {
66
+ return $this->stringData;
67
+ }
68
+
69
+ abstract public function sendHttpHeaders();
70
+
71
+ protected function write($data) {
72
+ switch($this->exportTo) {
73
+ case 'browser':
74
+ echo $data;
75
+ break;
76
+ case 'string':
77
+ $this->stringData .= $data;
78
+ break;
79
+ case 'file':
80
+ fwrite($this->tempFile, $data);
81
+ break;
82
+ }
83
+ }
84
+
85
+ protected function generateHeader() {
86
+ // can be overridden by subclass to return any data that goes at the top of the exported file
87
+ }
88
+
89
+ protected function generateFooter() {
90
+ // can be overridden by subclass to return any data that goes at the bottom of the exported file
91
+ }
92
+
93
+ // In subclasses generateRow will take $row array and return string of it formatted for export type
94
+ abstract protected function generateRow($row);
95
+
96
+ }
97
+
98
+ /**
99
+ * ExportDataTSV - Exports to TSV (tab separated value) format.
100
+ */
101
+ class ExportDataTSV extends ExportData {
102
+
103
+ function generateRow($row) {
104
+ foreach ($row as $key => $value) {
105
+ // Escape inner quotes and wrap all contents in new quotes.
106
+ // Note that we are using \" to escape double quote not ""
107
+ $row[$key] = '"'. str_replace('"', '\"', $value) .'"';
108
+ }
109
+ return implode("\t", $row) . "\n";
110
+ }
111
+
112
+ function sendHttpHeaders() {
113
+ header("Content-type: text/tab-separated-values");
114
+ header("Content-Disposition: attachment; filename=".basename($this->filename));
115
+ }
116
+ }
117
+
118
+ /**
119
+ * ExportDataCSV - Exports to CSV (comma separated value) format.
120
+ */
121
+ class ExportDataCSV extends ExportData {
122
+
123
+ function generateRow($row) {
124
+ foreach ($row as $key => $value) {
125
+ // Escape inner quotes and wrap all contents in new quotes.
126
+ // Note that we are using \" to escape double quote not ""
127
+ $row[$key] = '"'. str_replace('"', '\"', $value) .'"';
128
+ }
129
+ return implode(",", $row) . "\n";
130
+ }
131
+
132
+ function sendHttpHeaders() {
133
+ header("Content-type: text/csv");
134
+ header("Content-Disposition: attachment; filename=".basename($this->filename));
135
+ }
136
+ }
137
+
138
+
139
+ /**
140
+ * ExportDataExcel exports data into an XML format (spreadsheetML) that can be
141
+ * read by MS Excel 2003 and newer as well as OpenOffice
142
+ *
143
+ * Creates a workbook with a single worksheet (title specified by
144
+ * $title).
145
+ *
146
+ * Note that using .XML is the "correct" file extension for these files, but it
147
+ * generally isn't associated with Excel. Using .XLS is tempting, but Excel 2007 will
148
+ * throw a scary warning that the extension doesn't match the file type.
149
+ *
150
+ * Based on Excel XML code from Excel_XML (http://github.com/oliverschwarz/php-excel)
151
+ * by Oliver Schwarz
152
+ */
153
+ class ExportDataExcel extends ExportData {
154
+
155
+ const XmlHeader = "<?xml version=\"1.0\" encoding=\"%s\"?\>\n<Workbook xmlns=\"urn:schemas-microsoft-com:office:spreadsheet\" xmlns:x=\"urn:schemas-microsoft-com:office:excel\" xmlns:ss=\"urn:schemas-microsoft-com:office:spreadsheet\" xmlns:html=\"http://www.w3.org/TR/REC-html40\">";
156
+ const XmlFooter = "</Workbook>";
157
+
158
+ public $encoding = 'UTF-8'; // encoding type to specify in file.
159
+ // Note that you're on your own for making sure your data is actually encoded to this encoding
160
+
161
+ public $title = 'Sheet1'; // title for Worksheet
162
+
163
+ function generateHeader() {
164
+
165
+ // workbook header
166
+ $output = stripslashes(sprintf(self::XmlHeader, $this->encoding)) . "\n";
167
+
168
+ // Set up styles
169
+ $output .= "<Styles>\n";
170
+ $output .= "<Style ss:ID=\"sDT\"><NumberFormat ss:Format=\"Short Date\"/></Style>\n";
171
+ $output .= "</Styles>\n";
172
+
173
+ // worksheet header
174
+ $output .= sprintf("<Worksheet ss:Name=\"%s\">\n <Table>\n", htmlentities($this->title));
175
+
176
+ return $output;
177
+ }
178
+
179
+ function generateFooter() {
180
+ $output = '';
181
+
182
+ // worksheet footer
183
+ $output .= " </Table>\n</Worksheet>\n";
184
+
185
+ // workbook footer
186
+ $output .= self::XmlFooter;
187
+
188
+ return $output;
189
+ }
190
+
191
+ function generateRow($row) {
192
+ $output = '';
193
+ $output .= " <Row>\n";
194
+ foreach ($row as $k => $v) {
195
+ $output .= $this->generateCell($v);
196
+ }
197
+ $output .= " </Row>\n";
198
+ return $output;
199
+ }
200
+
201
+ private function generateCell($item) {
202
+ $output = '';
203
+ $style = '';
204
+
205
+ // Tell Excel to treat as a number. Note that Excel only stores roughly 15 digits, so keep
206
+ // as text if number is longer than that.
207
+ if(preg_match("/^-?\d+(?:[.,]\d+)?$/",$item) && (strlen($item) < 15)) {
208
+ $type = 'Number';
209
+ }
210
+ // Sniff for valid dates; should look something like 2010-07-14 or 7/14/2010 etc. Can
211
+ // also have an optional time after the date.
212
+ //
213
+ // Note we want to be very strict in what we consider a date. There is the possibility
214
+ // of really screwing up the data if we try to reformat a string that was not actually
215
+ // intended to represent a date.
216
+ elseif(preg_match("/^(\d{1,2}|\d{4})[\/\-]\d{1,2}[\/\-](\d{1,2}|\d{4})([^\d].+)?$/",$item) &&
217
+ ($timestamp = strtotime($item)) &&
218
+ ($timestamp > 0) &&
219
+ ($timestamp < strtotime('+500 years'))) {
220
+ $type = 'DateTime';
221
+ $item = strftime("%Y-%m-%dT%H:%M:%S",$timestamp);
222
+ $style = 'sDT'; // defined in header; tells excel to format date for display
223
+ }
224
+ else {
225
+ $type = 'String';
226
+ }
227
+
228
+ $item = str_replace('&#039;', '&apos;', htmlspecialchars($item, ENT_QUOTES));
229
+ $output .= " ";
230
+ $output .= $style ? "<Cell ss:StyleID=\"$style\">" : "<Cell>";
231
+ $output .= sprintf("<Data ss:Type=\"%s\">%s</Data>", $type, $item);
232
+ $output .= "</Cell>\n";
233
+
234
+ return $output;
235
+ }
236
+
237
+ function sendHttpHeaders() {
238
+ header("Content-Type: application/vnd.ms-excel; charset=" . $this->encoding);
239
+ header("Content-Disposition: inline; filename=\"" . basename($this->filename) . "\"");
240
+ }
241
+
242
+ }
includes/class/useronline.class.php CHANGED
@@ -5,6 +5,8 @@
5
 
6
  public $second;
7
 
 
 
8
  public function __construct($second = 30) {
9
 
10
  parent::__construct();
5
 
6
  public $second;
7
 
8
+ public $result = null;
9
+
10
  public function __construct($second = 30) {
11
 
12
  parent::__construct();
includes/functions/functions.php CHANGED
@@ -255,4 +255,25 @@
255
  $days_spend = intval((time() - strtotime($get_first_user) ) / (60*60*24));
256
 
257
  return round($get_total_user / $days_spend, 2);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  }
255
  $days_spend = intval((time() - strtotime($get_first_user) ) / (60*60*24));
256
 
257
  return round($get_total_user / $days_spend, 2);
258
+ }
259
+
260
+ function objectToArray($d) {
261
+ if (is_object($d)) {
262
+ // Gets the properties of the given object
263
+ // with get_object_vars function
264
+ $d = get_object_vars($d);
265
+ }
266
+
267
+ if (is_array($d)) {
268
+ /*
269
+ * Return array converted to object
270
+ * Using __FUNCTION__ (Magic constant)
271
+ * for recursive call
272
+ */
273
+ return array_map(__FUNCTION__, $d);
274
+ }
275
+ else {
276
+ // Return array
277
+ return $d;
278
+ }
279
  }
includes/optimization/empty.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ require('../../../../../wp-blog-header.php');
3
+
4
+ if( !is_super_admin() )
5
+ wp_die(__('Access denied!', 'wp_statistics'));
6
+
7
+ $table_name = $_POST['table_name'];
8
+
9
+ if($table_name) {
10
+
11
+ $result = $wpdb->query("DELETE FROM {$table_prefix}statistics_{$table_name}");
12
+
13
+ if($result) {
14
+
15
+ echo sprintf(__('<code>%s</code> table data deleted successfully.', 'wp_statistics'), "{$table_prefix}statistics_{$table_name}");
16
+
17
+ $s = new WP_Statistics();
18
+
19
+ $s->Primary_Values();
20
+ }
21
+
22
+ } else {
23
+ _e('Please select the desired items.', 'wp_statistics');
24
+ }
25
+ ?>
includes/optimization/export.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ require('../../../../../wp-blog-header.php');
3
+
4
+ if( !is_super_admin() )
5
+ wp_die(__('Access denied!', 'wp_statistics'));
6
+
7
+ $table = $_POST['table-to-export'];
8
+ $type = $_POST['export-file-type'];
9
+
10
+ if($table && $type) {
11
+
12
+ require('../class/php-export-data.class.php');
13
+
14
+ $s = new WP_Statistics();
15
+
16
+ $file_name = WPS_EXPORT_FILE_NAME . '-' . $s->Current_Date('Y-m-d-H:i');
17
+
18
+ $result = $wpdb->get_results("SELECT * FROM {$table_prefix}statistics_{$table}");
19
+
20
+ switch($type) {
21
+ case 'excel':
22
+ $exporter = new ExportDataExcel('browser', "{$file_name}.xls");
23
+ break;
24
+
25
+ case 'xml':
26
+ $exporter = new ExportDataExcel('browser', "{$file_name}.xml");
27
+ break;
28
+
29
+ case 'csv':
30
+ $exporter = new ExportDataCSV('browser', "{$file_name}.csv");
31
+ break;
32
+
33
+ case 'tsv':
34
+ $exporter = new ExportDataTSV('browser', "{$file_name}.tsv");
35
+ break;
36
+ }
37
+
38
+ $exporter->initialize();
39
+
40
+ foreach(objectToArray($result) as $row) {
41
+ $exporter->addRow($row);
42
+ }
43
+
44
+ $exporter->finalize();
45
+
46
+ } else {
47
+ wp_die(__('Please select the desired items.', 'wp_statistics'), false, array('back_link' => true));
48
+ }
49
+ ?>
includes/optimization/optimization.php ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script type="text/javascript">
2
+ jQuery(document).ready(function() {
3
+ jQuery("#empty-table-submit").click(function(){
4
+
5
+ var action = jQuery('#empty-table').val();
6
+
7
+ if(action == 0)
8
+ return false;
9
+
10
+ var agree = confirm('<?php _e('Are you sure?', 'wp_statistics'); ?>');
11
+
12
+ if(!agree)
13
+ return false;
14
+
15
+ var data = new Array();
16
+ data['table-name'] = jQuery("#empty-table").val();
17
+
18
+
19
+ jQuery("#empty-table-submit").attr("disabled", "disabled");
20
+ jQuery("#empty-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
21
+
22
+ jQuery.post("<?php echo plugins_url('empty.php', __FILE__); ?>", {table_name:data['table-name']}, function(result){
23
+ jQuery("#empty-result").html(result);
24
+ jQuery("#empty-table-submit").removeAttr("disabled");
25
+ });
26
+ });
27
+ });
28
+ </script>
29
+ <div class="wrap">
30
+ <?php screen_icon('options-general'); ?>
31
+ <h2><?php echo get_admin_page_title(); ?></h2>
32
+ <form method="post" action="<?php echo plugins_url('export.php', __FILE__); ?>">
33
+ <table class="form-table">
34
+ <tbody>
35
+ <?php settings_fields('wps_settings'); ?>
36
+ <tr valign="top">
37
+ <th scope="row" colspan="2"><h3><?php _e('Resources', 'wp_statistics'); ?></h3></th>
38
+ </tr>
39
+
40
+ <tr valign="top">
41
+ <th scope="row">
42
+ <?php _e('Memory usage in PHP', 'wp_statistics'); ?>:
43
+ </th>
44
+
45
+ <th>
46
+ <strong><?php echo number_format(memory_get_usage()); ?></strong> <?php _e('Byte', 'wp_statistics'); ?>
47
+ <p class="description"><?php _e('Memory usage in PHP', 'wp_statistics'); ?></p>
48
+ </th>
49
+ </tr>
50
+
51
+ <tr valign="top">
52
+ <th scope="row">
53
+ <?php echo sprintf(__('Number of rows in the <code>%sstatistics_useronline</code> table', 'wp_statistics'), $table_prefix); ?>:
54
+ </th>
55
+
56
+ <th>
57
+ <strong><?php echo $result['useronline']; ?></strong> <?php _e('Row', 'wp_statistics'); ?>
58
+ <p class="description"><?php _e('Number of rows', 'wp_statistics'); ?></p>
59
+ </th>
60
+ </tr>
61
+
62
+ <tr valign="top">
63
+ <th scope="row">
64
+ <?php echo sprintf(__('Number of rows in the <code>%sstatistics_visit</code> table', 'wp_statistics'), $table_prefix); ?>:
65
+ </th>
66
+
67
+ <th>
68
+ <strong><?php echo $result['visit']; ?></strong> <?php _e('Row', 'wp_statistics'); ?>
69
+ <p class="description"><?php _e('Number of rows', 'wp_statistics'); ?></p>
70
+ </th>
71
+ </tr>
72
+
73
+ <tr valign="top">
74
+ <th scope="row">
75
+ <?php echo sprintf(__('Number of rows in the <code>%sstatistics_visitor</code> table', 'wp_statistics'), $table_prefix); ?>:
76
+ </th>
77
+
78
+ <th>
79
+ <strong><?php echo $result['visitor']; ?></strong> <?php _e('Row', 'wp_statistics'); ?>
80
+ <p class="description"><?php _e('Number of rows', 'wp_statistics'); ?></p>
81
+ </th>
82
+ </tr>
83
+
84
+ <tr valign="top">
85
+ <th scope="row" colspan="2"><h3><?php _e('Export', 'wp_statistics'); ?></h3></th>
86
+ </tr>
87
+
88
+ <tr valign="top">
89
+ <th scope="row">
90
+ <label for="table-to-export"><?php _e('Export from', 'wp_statistics'); ?>:</label>
91
+ </th>
92
+
93
+ <th>
94
+ <select id="table-to-export" name="table-to-export">
95
+ <option value="0"><?php _e('Please select.', 'wp_statistics'); ?></option>
96
+ <option value="useronline"><?php echo $table_prefix . 'statistics_useronline'; ?></option>
97
+ <option value="visit"><?php echo $table_prefix . 'statistics_visit'; ?></option>
98
+ <option value="visitor"><?php echo $table_prefix . 'statistics_visitor'; ?></option>
99
+ </select>
100
+ <p class="description"><?php _e('Select the table for the output file.', 'wp_statistics'); ?></p>
101
+ </th>
102
+ </tr>
103
+
104
+ <tr valign="top">
105
+ <th scope="row">
106
+ <label for="export-file-type"><?php _e('Export To', 'wp_statistics'); ?>:</label>
107
+ </th>
108
+
109
+ <th>
110
+ <select id="export-file-type" name="export-file-type">
111
+ <option value="0"><?php _e('Please select.', 'wp_statistics'); ?></option>
112
+ <option value="excel">Excel</option>
113
+ <option value="xml">XML</option>
114
+ <option value="csv">CSV</option>
115
+ <option value="tsv">TSV</option>
116
+ </select>
117
+ <p class="description"><?php _e('Select the output file type.', 'wp_statistics'); ?></p>
118
+ <?php submit_button(__('Start Now!', 'wp_statistics'), 'primary', 'export-file-submit'); ?>
119
+ </th>
120
+ </tr>
121
+
122
+ <tr valign="top">
123
+ <th scope="row" colspan="2"><h3><?php _e('Empty', 'wp_statistics'); ?></h3></th>
124
+ </tr>
125
+
126
+ <tr valign="top">
127
+ <th scope="row">
128
+ <label for="empty-table"><?php _e('Empty Table', 'wp_statistics'); ?>:</label>
129
+ </th>
130
+
131
+ <th>
132
+ <select id="empty-table" name="empty-table">
133
+ <option value="0"><?php _e('Please select.', 'wp_statistics'); ?></option>
134
+ <option value="useronline"><?php echo $table_prefix . 'statistics_useronline'; ?></option>
135
+ <option value="visit"><?php echo $table_prefix . 'statistics_visit'; ?></option>
136
+ <option value="visitor"><?php echo $table_prefix . 'statistics_visitor'; ?></option>
137
+ </select>
138
+ <p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
139
+ <input id="empty-table-submit" class="button button-primary" type="submit" value="<?php _e('Clear now!', 'wp_statistics'); ?>" name="empty-table-submit" Onclick="return false;">
140
+
141
+ <span id="empty-result"></span>
142
+ </th>
143
+ </tr>
144
+ </tbody>
145
+ </table>
146
+ </form>
147
+ </div>
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-07-16 17:25+0330\n"
6
- "PO-Revision-Date: 2013-07-16 17:25+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
@@ -26,7 +26,7 @@ msgstr ""
26
  #: F:\Program
27
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:68
30
  msgid "Statistics"
31
  msgstr ""
32
 
@@ -37,7 +37,7 @@ msgstr ""
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
41
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
42
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
@@ -166,7 +166,7 @@ msgid "Last Post Date"
166
  msgstr ""
167
 
168
  #: F:\Program
169
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:40
170
  #, php-format
171
  msgid ""
172
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
@@ -174,45 +174,51 @@ msgid ""
174
  msgstr ""
175
 
176
  #: F:\Program
177
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
178
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
179
  msgid "View Stats"
180
  msgstr ""
181
 
182
  #: F:\Program
183
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:71
 
 
 
 
 
184
  msgid "Settings"
185
  msgstr ""
186
 
187
  #: F:\Program
188
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
189
  msgid "Today visitor"
190
  msgstr ""
191
 
192
  #: F:\Program
193
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
194
  msgid "Today visit"
195
  msgstr ""
196
 
197
  #: F:\Program
198
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
199
  msgid "Yesterday visitor"
200
  msgstr ""
201
 
202
  #: F:\Program
203
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
204
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
205
  msgid "Yesterday visit"
206
  msgstr ""
207
 
208
  #: F:\Program
209
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:145
210
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:218
 
211
  msgid "You do not have sufficient permissions to access this page."
212
  msgstr ""
213
 
214
  #: F:\Program
215
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:155
216
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
217
  msgstr ""
218
 
@@ -542,6 +548,137 @@ msgstr ""
542
  msgid "Referring sites from"
543
  msgstr ""
544
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
545
  #: F:\Program
546
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
547
  msgid "General Settings"
@@ -630,13 +767,6 @@ msgstr ""
630
  msgid "Chart type"
631
  msgstr ""
632
 
633
- #: F:\Program
634
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
635
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
636
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
637
- msgid "Please select."
638
- msgstr ""
639
-
640
  #: F:\Program
641
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
642
  msgid "Line"
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-07 16:27+0330\n"
6
+ "PO-Revision-Date: 2013-08-07 16:27+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
26
  #: F:\Program
27
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
30
  msgid "Statistics"
31
  msgstr ""
32
 
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:93
41
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
42
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
166
  msgstr ""
167
 
168
  #: F:\Program
169
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
170
  #, php-format
171
  msgid ""
172
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
174
  msgstr ""
175
 
176
  #: F:\Program
177
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:72
178
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:118
179
  msgid "View Stats"
180
  msgstr ""
181
 
182
  #: F:\Program
183
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:73
184
+ msgid "Optimization"
185
+ msgstr ""
186
+
187
+ #: F:\Program
188
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:74
189
  msgid "Settings"
190
  msgstr ""
191
 
192
  #: F:\Program
193
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:98
194
  msgid "Today visitor"
195
  msgstr ""
196
 
197
  #: F:\Program
198
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
199
  msgid "Today visit"
200
  msgstr ""
201
 
202
  #: F:\Program
203
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:108
204
  msgid "Yesterday visitor"
205
  msgstr ""
206
 
207
  #: F:\Program
208
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:113
209
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
210
  msgid "Yesterday visit"
211
  msgstr ""
212
 
213
  #: F:\Program
214
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:148
215
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:221
216
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:237
217
  msgid "You do not have sufficient permissions to access this page."
218
  msgstr ""
219
 
220
  #: F:\Program
221
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:158
222
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
223
  msgstr ""
224
 
548
  msgid "Referring sites from"
549
  msgstr ""
550
 
551
+ #: F:\Program
552
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
553
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
554
+ msgid "Access denied!"
555
+ msgstr ""
556
+
557
+ #: F:\Program
558
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:15
559
+ #, php-format
560
+ msgid "<code>%s</code> table data deleted successfully."
561
+ msgstr ""
562
+
563
+ #: F:\Program
564
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:23
565
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
566
+ msgid "Please select the desired items."
567
+ msgstr ""
568
+
569
+ #: F:\Program
570
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
571
+ msgid "Are you sure?"
572
+ msgstr ""
573
+
574
+ #: F:\Program
575
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:37
576
+ msgid "Resources"
577
+ msgstr ""
578
+
579
+ #: F:\Program
580
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:42
581
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:47
582
+ msgid "Memory usage in PHP"
583
+ msgstr ""
584
+
585
+ #: F:\Program
586
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:46
587
+ msgid "Byte"
588
+ msgstr ""
589
+
590
+ #: F:\Program
591
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:53
592
+ #, php-format
593
+ msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
594
+ msgstr ""
595
+
596
+ #: F:\Program
597
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:57
598
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:68
599
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:79
600
+ msgid "Row"
601
+ msgstr ""
602
+
603
+ #: F:\Program
604
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:58
605
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:69
606
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:80
607
+ msgid "Number of rows"
608
+ msgstr ""
609
+
610
+ #: F:\Program
611
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:64
612
+ #, php-format
613
+ msgid "Number of rows in the <code>%sstatistics_visit</code> table"
614
+ msgstr ""
615
+
616
+ #: F:\Program
617
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:75
618
+ #, php-format
619
+ msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
620
+ msgstr ""
621
+
622
+ #: F:\Program
623
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:85
624
+ msgid "Export"
625
+ msgstr ""
626
+
627
+ #: F:\Program
628
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:90
629
+ msgid "Export from"
630
+ msgstr ""
631
+
632
+ #: F:\Program
633
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:95
634
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:111
635
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:133
636
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
637
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
638
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
639
+ msgid "Please select."
640
+ msgstr ""
641
+
642
+ #: F:\Program
643
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:100
644
+ msgid "Select the table for the output file."
645
+ msgstr ""
646
+
647
+ #: F:\Program
648
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:106
649
+ msgid "Export To"
650
+ msgstr ""
651
+
652
+ #: F:\Program
653
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:117
654
+ msgid "Select the output file type."
655
+ msgstr ""
656
+
657
+ #: F:\Program
658
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
659
+ msgid "Start Now!"
660
+ msgstr ""
661
+
662
+ #: F:\Program
663
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:123
664
+ msgid "Empty"
665
+ msgstr ""
666
+
667
+ #: F:\Program
668
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:128
669
+ msgid "Empty Table"
670
+ msgstr ""
671
+
672
+ #: F:\Program
673
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:138
674
+ msgid "All data table will be lost."
675
+ msgstr ""
676
+
677
+ #: F:\Program
678
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:139
679
+ msgid "Clear now!"
680
+ msgstr ""
681
+
682
  #: F:\Program
683
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
684
  msgid "General Settings"
767
  msgid "Chart type"
768
  msgstr ""
769
 
 
 
 
 
 
 
 
770
  #: F:\Program
771
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
772
  msgid "Line"
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-04-11 20:04+0330\n"
6
- "PO-Revision-Date: 2013-04-13 00:53+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,13 +14,13 @@ 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.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\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
23
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
24
  msgid "Statistical reporting"
25
  msgstr "تقارير الإحصائيات"
26
 
@@ -41,34 +41,34 @@ msgstr "إظهار إحصائيات الموقع في الشريط الجانب
41
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
42
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
43
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
44
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:147
45
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
46
  msgid "User Online"
47
  msgstr "المتواجدين الآن"
48
 
49
  #: F:\Program
50
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
51
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
52
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
53
  msgid "Today Visit"
54
  msgstr "زيارات اليوم"
55
 
56
  #: F:\Program
57
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
58
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:148
59
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
60
  msgid "Today Visitor"
61
  msgstr "زوار اليوم"
62
 
63
  #: F:\Program
64
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
65
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
66
  msgid "Yesterday Visit"
67
  msgstr "زيارات الأمس"
68
 
69
  #: F:\Program
70
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
71
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
72
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
73
  msgid "Yesterday Visitor"
74
  msgstr "زوار الأمس"
@@ -93,20 +93,21 @@ msgstr "زيارات السنة"
93
 
94
  #: F:\Program
95
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
96
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
97
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
98
  msgid "Total Visit"
99
  msgstr "مجموع الزيارات"
100
 
101
  #: F:\Program
102
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
103
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:152
104
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
105
  msgid "Total Visitor"
106
  msgstr "مجموع الزوار"
107
 
108
  #: F:\Program
109
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
 
110
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
111
  msgid "Search Engine reffered"
112
  msgstr "محركات البحث"
@@ -208,13 +209,13 @@ msgid "Yesterday visit"
208
  msgstr "زيارات الأمس"
209
 
210
  #: F:\Program
211
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
212
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
213
  msgid "You do not have sufficient permissions to access this page."
214
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
215
 
216
  #: F:\Program
217
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:154
218
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
219
  msgstr ""
220
  "هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
@@ -224,43 +225,51 @@ msgstr ""
224
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
225
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
226
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
 
227
  msgid "To be added soon"
228
  msgstr "تضاف قريبا"
229
 
230
  #: F:\Program
231
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
232
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
233
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:343
234
  msgid "Latest search words"
235
  msgstr "آخر كلمات البحث"
236
 
237
  #: F:\Program
238
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
239
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
 
240
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
241
  msgid "All"
242
  msgstr "الكل"
243
 
244
  #: F:\Program
245
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
246
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:59
247
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:361
 
 
248
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
249
  msgid "Google"
250
  msgstr "Google"
251
 
252
  #: F:\Program
253
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
254
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
255
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:363
 
 
256
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
257
  msgid "Yahoo!"
258
  msgstr "Yahoo!"
259
 
260
  #: F:\Program
261
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
262
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
263
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:365
 
 
264
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
265
  msgid "Bing"
266
  msgstr "Bing"
@@ -269,75 +278,80 @@ msgstr "Bing"
269
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
270
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
271
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
272
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
273
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
274
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:215
275
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:251
276
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:341
277
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
 
 
278
  msgid "Click to toggle"
279
  msgstr "انقر للتبديل"
280
 
281
  #: F:\Program
282
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:56
283
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
284
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:358
285
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:397
 
286
  msgid "Map"
287
  msgstr "خريطة"
288
 
289
  #: F:\Program
290
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:79
291
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
 
292
  msgid "Page"
293
  msgstr "صفحة"
294
 
295
  #: F:\Program
296
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:79
297
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
 
298
  msgid "From"
299
  msgstr "من"
300
 
301
  #: F:\Program
302
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
303
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
304
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
305
  msgid "Recent Visitors"
306
  msgstr "الزيارات الأخيرة"
307
 
308
  #: F:\Program
309
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
310
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:153
311
  msgid "Firefox"
312
  msgstr " فَيَرفُكس"
313
 
314
  #: F:\Program
315
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
316
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:154
317
  msgid "IE"
318
  msgstr "اكسبلورر"
319
 
320
  #: F:\Program
321
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
322
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:155
323
  msgid "Ipad"
324
  msgstr "آيباد"
325
 
326
  #: F:\Program
327
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
328
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:156
329
  msgid "Android"
330
  msgstr "آندرويد"
331
 
332
  #: F:\Program
333
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
334
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:157
335
  msgid "Chrome"
336
  msgstr "كروم"
337
 
338
  #: F:\Program
339
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
340
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
341
  msgid "Safari"
342
  msgstr "سفاري"
343
 
@@ -348,7 +362,7 @@ msgstr "أوبرا"
348
 
349
  #: F:\Program
350
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
351
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:159
352
  msgid "Other"
353
  msgstr "أخرى"
354
 
@@ -359,23 +373,25 @@ msgstr "ملخص الاحصائيات"
359
 
360
  #: F:\Program
361
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
362
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:312
363
  msgid "Visitor"
364
  msgstr "زائر"
365
 
366
  #: F:\Program
367
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
368
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:322
369
  msgid "Visit"
370
  msgstr "زيارة"
371
 
372
  #: F:\Program
373
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
 
374
  msgid "Today"
375
  msgstr "اليوم"
376
 
377
  #: F:\Program
378
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
 
379
  msgid "Yesterday"
380
  msgstr "الأمس"
381
 
@@ -396,11 +412,12 @@ msgstr "سنة"
396
 
397
  #: F:\Program
398
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
 
399
  msgid "Total"
400
  msgstr "المجموع"
401
 
402
  #: F:\Program
403
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
404
  #, php-format
405
  msgid ""
406
  "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
@@ -408,73 +425,88 @@ msgstr ""
408
  "تاريخ اليوم: <code dir=\"rtl\">%s</code>, الوقت: <code dir=\"rtl\">%s</code>"
409
 
410
  #: F:\Program
411
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:72
412
  msgid "(Adjustment)"
413
  msgstr "(التوافق)"
414
 
415
  #: F:\Program
416
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:78
417
  msgid "Browsers"
418
  msgstr "المتصفحات"
419
 
420
  #: F:\Program
421
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:109
422
  msgid "Graph of Browsers"
423
  msgstr "الرسم البياني من المتصفحات"
424
 
425
  #: F:\Program
426
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:151
427
  msgid "Browser share"
428
  msgstr "مشاركة بالمتصفح"
429
 
430
  #: F:\Program
431
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:174
 
 
432
  msgid "Top referring sites"
433
  msgstr "أعلى المواقع زيارة"
434
 
435
  #: F:\Program
436
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:179
 
 
 
 
 
 
 
 
437
  msgid "Reference"
438
  msgstr "المرجع"
439
 
440
  #: F:\Program
441
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:180
442
  msgid "Address"
443
  msgstr "العنوان"
444
 
445
  #: F:\Program
446
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
447
  msgid "About plugin"
448
  msgstr "عن الإضافة"
449
 
450
  #: F:\Program
451
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:219
452
  #, php-format
453
  msgid "Plugin version: %s"
454
  msgstr "إصدار الإضافة: %s"
455
 
456
  #: F:\Program
457
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:220
458
  msgid "Translations"
459
  msgstr "الترجمات"
460
 
461
  #: F:\Program
462
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:221
463
- msgid "Support plugin"
464
- msgstr "دعم البرنامج المساعد"
465
 
466
  #: F:\Program
467
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:222
 
 
 
 
 
468
  msgid "Facebook"
469
  msgstr "فيس بوك"
470
 
471
  #: F:\Program
472
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:223
473
  msgid "Weblog"
474
  msgstr "مدونتنا"
475
 
476
  #: F:\Program
477
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:228
478
  msgid ""
479
  "Please donate to the plugin. With the help of plug-ins you can quickly "
480
  "spread."
@@ -483,30 +515,40 @@ msgstr ""
483
  "في أسرع وقت."
484
 
485
  #: F:\Program
486
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:231
487
  msgid "Donate"
488
  msgstr "تبرع"
489
 
490
  #: F:\Program
491
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:252
 
492
  msgid "Statistical Chart"
493
  msgstr "إحصائية الرسم البياني"
494
 
495
  #: F:\Program
496
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:267
497
- msgid "Chart hit in the last 20 days"
498
- msgstr "المخطط البياني في الأيام الـ 20 الماضية"
499
 
500
  #: F:\Program
501
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
502
  msgid "Number of visits and visitors"
503
  msgstr "عدد الزيارات والزوار"
504
 
505
  #: F:\Program
506
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:343
507
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
508
- msgid "(See more)"
509
- msgstr "(عرض المزيد)"
 
 
 
 
 
 
 
 
 
510
 
511
  #: F:\Program
512
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
@@ -517,7 +559,7 @@ msgstr "إعدادات عامة"
517
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
518
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
519
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
520
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
521
  msgid "Active"
522
  msgstr "نشط"
523
 
@@ -525,7 +567,7 @@ msgstr "نشط"
525
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
526
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
527
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
528
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
529
  msgid "Enable or disable this feature"
530
  msgstr "تمكين أو تعطيل هذه الميزة"
531
 
@@ -588,62 +630,113 @@ msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
588
 
589
  #: F:\Program
590
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
591
- msgid "Statistical reporting settings"
592
- msgstr "إعدادات تقارير الإحصائيات"
593
 
594
  #: F:\Program
595
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
596
- msgid "Time send"
597
- msgstr "وقت الارسال"
598
 
599
  #: F:\Program
600
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
601
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:125
 
602
  msgid "Please select."
603
  msgstr "الرجاء اختيار."
604
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
605
  #: F:\Program
606
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
 
 
 
 
 
 
 
 
 
 
607
  msgid "Hourly"
608
  msgstr "كل ساعة"
609
 
610
  #: F:\Program
611
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:111
612
  msgid "Twice daily"
613
  msgstr "مرتين يوميا"
614
 
615
  #: F:\Program
616
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:112
617
  msgid "daily"
618
  msgstr "يوميا"
619
 
620
  #: F:\Program
621
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:114
622
  msgid "Select when receiving statistics report."
623
  msgstr "حدد عند استلام إحصاءات التقرير."
624
 
625
  #: F:\Program
626
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
627
  msgid "Send Statistical reporting to"
628
  msgstr "إرسال تقارير الإحصائيات إلى"
629
 
630
  #: F:\Program
631
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
632
  msgid "Email"
633
  msgstr "البريد الإلكتروني"
634
 
635
  #: F:\Program
636
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:127
637
  msgid "SMS"
638
  msgstr "رسائل نصية"
639
 
640
  #: F:\Program
641
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:129
642
  msgid "Type Select Get Status Report."
643
  msgstr "حدد نوع الحصول على التقرير."
644
 
645
  #: F:\Program
646
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
647
  #, php-format
648
  msgid ""
649
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
@@ -653,17 +746,17 @@ msgstr ""
653
  "\" target=\"_blank\">Wordpress SMS</a>."
654
 
655
  #: F:\Program
656
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
657
  msgid "Send Content Report"
658
  msgstr "أرسل المحتوى"
659
 
660
  #: F:\Program
661
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
662
  msgid "Enter the contents of the reports received."
663
  msgstr "أدخل محتويات التقارير الواردة."
664
 
665
  #: F:\Program
666
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:146
667
  msgid "Input data:"
668
  msgstr "إدخال البيانات:"
669
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-16 17:25+0330\n"
6
+ "PO-Revision-Date: 2013-07-20 21:15+0300\n"
7
+ "Last-Translator: Hammad Alshammari <al3zz@hotmail.com>\n"
8
  "Language-Team: ABU HATIM <al3zz.com@gmail.com>\n"
9
  "Language: ar_SA\n"
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.7\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\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
23
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:115
24
  msgid "Statistical reporting"
25
  msgstr "تقارير الإحصائيات"
26
 
41
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
42
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
43
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
44
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
45
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
46
  msgid "User Online"
47
  msgstr "المتواجدين الآن"
48
 
49
  #: F:\Program
50
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
51
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:173
52
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
53
  msgid "Today Visit"
54
  msgstr "زيارات اليوم"
55
 
56
  #: F:\Program
57
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
58
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:172
59
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
60
  msgid "Today Visitor"
61
  msgstr "زوار اليوم"
62
 
63
  #: F:\Program
64
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
65
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
66
  msgid "Yesterday Visit"
67
  msgstr "زيارات الأمس"
68
 
69
  #: F:\Program
70
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
71
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
72
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
73
  msgid "Yesterday Visitor"
74
  msgstr "زوار الأمس"
93
 
94
  #: F:\Program
95
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
96
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:177
97
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
98
  msgid "Total Visit"
99
  msgstr "مجموع الزيارات"
100
 
101
  #: F:\Program
102
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
103
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:176
104
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
105
  msgid "Total Visitor"
106
  msgstr "مجموع الزوار"
107
 
108
  #: F:\Program
109
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
110
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
111
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
112
  msgid "Search Engine reffered"
113
  msgstr "محركات البحث"
209
  msgstr "زيارات الأمس"
210
 
211
  #: F:\Program
212
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:145
213
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:218
214
  msgid "You do not have sufficient permissions to access this page."
215
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
216
 
217
  #: F:\Program
218
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:155
219
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
220
  msgstr ""
221
  "هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
225
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
226
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
227
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
228
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
229
  msgid "To be added soon"
230
  msgstr "تضاف قريبا"
231
 
232
  #: F:\Program
233
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
234
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
235
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
236
  msgid "Latest search words"
237
  msgstr "آخر كلمات البحث"
238
 
239
  #: F:\Program
240
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
241
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
242
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
243
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
244
  msgid "All"
245
  msgstr "الكل"
246
 
247
  #: F:\Program
248
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
249
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
250
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:79
251
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:441
252
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:502
253
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
254
  msgid "Google"
255
  msgstr "Google"
256
 
257
  #: F:\Program
258
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
259
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
260
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:85
261
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:451
262
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:504
263
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
264
  msgid "Yahoo!"
265
  msgstr "Yahoo!"
266
 
267
  #: F:\Program
268
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
269
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
270
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:91
271
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:461
272
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:506
273
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
274
  msgid "Bing"
275
  msgstr "Bing"
278
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
279
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
280
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
281
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:110
282
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:208
283
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:252
284
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
285
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
286
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:480
287
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:521
288
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:22
289
  msgid "Click to toggle"
290
  msgstr "انقر للتبديل"
291
 
292
  #: F:\Program
293
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:58
294
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
295
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:499
296
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:538
297
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
298
  msgid "Map"
299
  msgstr "خريطة"
300
 
301
  #: F:\Program
302
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
303
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
304
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
305
  msgid "Page"
306
  msgstr "صفحة"
307
 
308
  #: F:\Program
309
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
310
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
311
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
312
  msgid "From"
313
  msgstr "من"
314
 
315
  #: F:\Program
316
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
317
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
318
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:523
319
  msgid "Recent Visitors"
320
  msgstr "الزيارات الأخيرة"
321
 
322
  #: F:\Program
323
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
324
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:188
325
  msgid "Firefox"
326
  msgstr " فَيَرفُكس"
327
 
328
  #: F:\Program
329
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
330
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:189
331
  msgid "IE"
332
  msgstr "اكسبلورر"
333
 
334
  #: F:\Program
335
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
336
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:190
337
  msgid "Ipad"
338
  msgstr "آيباد"
339
 
340
  #: F:\Program
341
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
342
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:191
343
  msgid "Android"
344
  msgstr "آندرويد"
345
 
346
  #: F:\Program
347
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
348
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:192
349
  msgid "Chrome"
350
  msgstr "كروم"
351
 
352
  #: F:\Program
353
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
354
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:193
355
  msgid "Safari"
356
  msgstr "سفاري"
357
 
362
 
363
  #: F:\Program
364
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
365
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:194
366
  msgid "Other"
367
  msgstr "أخرى"
368
 
373
 
374
  #: F:\Program
375
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
376
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:350
377
  msgid "Visitor"
378
  msgstr "زائر"
379
 
380
  #: F:\Program
381
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
382
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:360
383
  msgid "Visit"
384
  msgstr "زيارة"
385
 
386
  #: F:\Program
387
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
388
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:74
389
  msgid "Today"
390
  msgstr "اليوم"
391
 
392
  #: F:\Program
393
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
394
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:75
395
  msgid "Yesterday"
396
  msgstr "الأمس"
397
 
412
 
413
  #: F:\Program
414
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
415
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:97
416
  msgid "Total"
417
  msgstr "المجموع"
418
 
419
  #: F:\Program
420
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:103
421
  #, php-format
422
  msgid ""
423
  "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
425
  "تاريخ اليوم: <code dir=\"rtl\">%s</code>, الوقت: <code dir=\"rtl\">%s</code>"
426
 
427
  #: F:\Program
428
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:105
429
  msgid "(Adjustment)"
430
  msgstr "(التوافق)"
431
 
432
  #: F:\Program
433
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:111
434
  msgid "Browsers"
435
  msgstr "المتصفحات"
436
 
437
  #: F:\Program
438
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
439
  msgid "Graph of Browsers"
440
  msgstr "الرسم البياني من المتصفحات"
441
 
442
  #: F:\Program
443
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:186
444
  msgid "Browser share"
445
  msgstr "مشاركة بالمتصفح"
446
 
447
  #: F:\Program
448
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
449
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:11
450
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
451
  msgid "Top referring sites"
452
  msgstr "أعلى المواقع زيارة"
453
 
454
  #: F:\Program
455
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
456
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
457
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:523
458
+ msgid "(See more)"
459
+ msgstr "(عرض المزيد)"
460
+
461
+ #: F:\Program
462
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
463
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
464
  msgid "Reference"
465
  msgstr "المرجع"
466
 
467
  #: F:\Program
468
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
469
  msgid "Address"
470
  msgstr "العنوان"
471
 
472
  #: F:\Program
473
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:253
474
  msgid "About plugin"
475
  msgstr "عن الإضافة"
476
 
477
  #: F:\Program
478
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:256
479
  #, php-format
480
  msgid "Plugin version: %s"
481
  msgstr "إصدار الإضافة: %s"
482
 
483
  #: F:\Program
484
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
485
  msgid "Translations"
486
  msgstr "الترجمات"
487
 
488
  #: F:\Program
489
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
490
+ msgid "Support"
491
+ msgstr "دعم"
492
 
493
  #: F:\Program
494
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
495
+ msgid "Farsi"
496
+ msgstr "فارسي"
497
+
498
+ #: F:\Program
499
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:259
500
  msgid "Facebook"
501
  msgstr "فيس بوك"
502
 
503
  #: F:\Program
504
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:260
505
  msgid "Weblog"
506
  msgstr "مدونتنا"
507
 
508
  #: F:\Program
509
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:265
510
  msgid ""
511
  "Please donate to the plugin. With the help of plug-ins you can quickly "
512
  "spread."
515
  "في أسرع وقت."
516
 
517
  #: F:\Program
518
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:268
519
  msgid "Donate"
520
  msgstr "تبرع"
521
 
522
  #: F:\Program
523
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:289
524
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
525
  msgid "Statistical Chart"
526
  msgstr "إحصائية الرسم البياني"
527
 
528
  #: F:\Program
529
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:305
530
+ msgid "Hits chart in the last 20 days"
531
+ msgstr "مخطط الفعاليات في الـ20 يوماً الماضية"
532
 
533
  #: F:\Program
534
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:324
535
  msgid "Number of visits and visitors"
536
  msgstr "عدد الزيارات والزوار"
537
 
538
  #: F:\Program
539
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:396
540
+ msgid "Referrer search engine chart in the last 20 days"
541
+ msgstr "مرجعية محرك البحث التخطيطي في الـ20 يوما الماضية"
542
+
543
+ #: F:\Program
544
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:415
545
+ msgid "Number of referrer"
546
+ msgstr "عدد الإحالات"
547
+
548
+ #: F:\Program
549
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
550
+ msgid "Referring sites from"
551
+ msgstr "مواقع اشارة من"
552
 
553
  #: F:\Program
554
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
559
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
560
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
561
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
562
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
563
  msgid "Active"
564
  msgstr "نشط"
565
 
567
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
568
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
569
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
570
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
571
  msgid "Enable or disable this feature"
572
  msgstr "تمكين أو تعطيل هذه الميزة"
573
 
630
 
631
  #: F:\Program
632
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
633
+ msgid "Chart Settings"
634
+ msgstr "إعدادات الرسم البياني"
635
 
636
  #: F:\Program
637
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
638
+ msgid "Chart type"
639
+ msgstr "نوع الرسم البياني"
640
 
641
  #: F:\Program
642
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
643
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
644
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
645
  msgid "Please select."
646
  msgstr "الرجاء اختيار."
647
 
648
+ #: F:\Program
649
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
650
+ msgid "Line"
651
+ msgstr "سطر"
652
+
653
+ #: F:\Program
654
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
655
+ msgid "Spline"
656
+ msgstr "شريحة"
657
+
658
+ #: F:\Program
659
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
660
+ msgid "Area"
661
+ msgstr "منطقة"
662
+
663
+ #: F:\Program
664
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:100
665
+ msgid "Area Spline"
666
+ msgstr "منطقة منحنية"
667
+
668
+ #: F:\Program
669
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:101
670
+ msgid "Column"
671
+ msgstr "عمود"
672
+
673
+ #: F:\Program
674
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:102
675
+ msgid "Bar"
676
+ msgstr "شريط"
677
+
678
+ #: F:\Program
679
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
680
+ msgid "Scatter"
681
+ msgstr "تبعثر"
682
+
683
+ #: F:\Program
684
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:105
685
+ msgid "Chart type in view stats."
686
+ msgstr "نوع الرسم البياني في مشاهدة البيانات."
687
+
688
  #: F:\Program
689
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
690
+ msgid "Statistical reporting settings"
691
+ msgstr "إعدادات تقارير الإحصائيات"
692
+
693
+ #: F:\Program
694
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:128
695
+ msgid "Time send"
696
+ msgstr "وقت الارسال"
697
+
698
+ #: F:\Program
699
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:134
700
  msgid "Hourly"
701
  msgstr "كل ساعة"
702
 
703
  #: F:\Program
704
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:135
705
  msgid "Twice daily"
706
  msgstr "مرتين يوميا"
707
 
708
  #: F:\Program
709
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:136
710
  msgid "daily"
711
  msgstr "يوميا"
712
 
713
  #: F:\Program
714
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
715
  msgid "Select when receiving statistics report."
716
  msgstr "حدد عند استلام إحصاءات التقرير."
717
 
718
  #: F:\Program
719
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
720
  msgid "Send Statistical reporting to"
721
  msgstr "إرسال تقارير الإحصائيات إلى"
722
 
723
  #: F:\Program
724
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
725
  msgid "Email"
726
  msgstr "البريد الإلكتروني"
727
 
728
  #: F:\Program
729
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
730
  msgid "SMS"
731
  msgstr "رسائل نصية"
732
 
733
  #: F:\Program
734
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
735
  msgid "Type Select Get Status Report."
736
  msgstr "حدد نوع الحصول على التقرير."
737
 
738
  #: F:\Program
739
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
740
  #, php-format
741
  msgid ""
742
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
746
  "\" target=\"_blank\">Wordpress SMS</a>."
747
 
748
  #: F:\Program
749
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
750
  msgid "Send Content Report"
751
  msgstr "أرسل المحتوى"
752
 
753
  #: F:\Program
754
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:168
755
  msgid "Enter the contents of the reports received."
756
  msgstr "أدخل محتويات التقارير الواردة."
757
 
758
  #: F:\Program
759
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:170
760
  msgid "Input data:"
761
  msgstr "إدخال البيانات:"
762
 
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-07-16 17:20+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: <mat404@gmail.com>\n"
@@ -26,7 +26,7 @@ msgstr "گزارش آماری"
26
  #: F:\Program
27
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:68
30
  msgid "Statistics"
31
  msgstr "آماره"
32
 
@@ -37,7 +37,7 @@ msgstr "نمایش آمار سایت در ابزارک"
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
41
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
42
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
@@ -166,7 +166,7 @@ msgid "Last Post Date"
166
  msgstr "تاریخ به‌روزشدن سایت"
167
 
168
  #: F:\Program
169
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:40
170
  #, php-format
171
  msgid ""
172
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
@@ -176,45 +176,51 @@ msgstr ""
176
  "تنظیمات</a> آمارگیر مراجعه کنید."
177
 
178
  #: F:\Program
179
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
180
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
181
  msgid "View Stats"
182
  msgstr "نمایش آمار"
183
 
184
  #: F:\Program
185
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:71
 
 
 
 
 
186
  msgid "Settings"
187
  msgstr "تنظیمات"
188
 
189
  #: F:\Program
190
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
191
  msgid "Today visitor"
192
  msgstr "بازدید کننده امروز"
193
 
194
  #: F:\Program
195
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
196
  msgid "Today visit"
197
  msgstr "بازدید امروز"
198
 
199
  #: F:\Program
200
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
201
  msgid "Yesterday visitor"
202
  msgstr "بازدید کننده دیروز"
203
 
204
  #: F:\Program
205
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
206
  #: Files\xampp\htdocs\cms\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\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:145
212
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:218
 
213
  msgid "You do not have sufficient permissions to access this page."
214
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
215
 
216
  #: F:\Program
217
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:155
218
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
219
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
220
 
@@ -546,6 +552,137 @@ msgstr "تعداد ورودی"
546
  msgid "Referring sites from"
547
  msgstr "سایت های ارجاع دهنده از"
548
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
549
  #: F:\Program
550
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
551
  msgid "General Settings"
@@ -634,13 +771,6 @@ msgstr "تنظیمات نمودار"
634
  msgid "Chart type"
635
  msgstr "نوع نمودار"
636
 
637
- #: F:\Program
638
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
639
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
640
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
641
- msgid "Please select."
642
- msgstr "لطفا انتخاب کنید."
643
-
644
  #: F:\Program
645
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
646
  msgid "Line"
@@ -786,6 +916,15 @@ msgstr "میلادی"
786
  msgid "Persian"
787
  msgstr "شمسی (فارسی)"
788
 
 
 
 
 
 
 
 
 
 
789
  #, fuzzy
790
  #~ msgid "Search engine"
791
  #~ msgstr "ورودی موتور جستجو"
@@ -902,9 +1041,6 @@ msgstr "شمسی (فارسی)"
902
  #~ msgid "low value"
903
  #~ msgstr "کم شد"
904
 
905
- #~ msgid "Access is Denied!"
906
- #~ msgstr "دسترسی غیرمجاز!"
907
-
908
  #~ msgid "Report a problem for WP Statistics"
909
  #~ msgstr "گزارش مشکل برای افزونه WP Statistics"
910
 
@@ -938,9 +1074,6 @@ msgstr "شمسی (فارسی)"
938
  #~ msgid "Users Online"
939
  #~ msgstr "کاربران حاضر"
940
 
941
- #~ msgid "Are you sure?"
942
- #~ msgstr "آیا مطمئن هستید؟"
943
-
944
  #~ msgid "Configuration"
945
  #~ msgstr "پیکربندی"
946
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-07 16:27+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: <mat404@gmail.com>\n"
26
  #: F:\Program
27
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
30
  msgid "Statistics"
31
  msgstr "آماره"
32
 
37
 
38
  #: F:\Program
39
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:93
41
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
42
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
166
  msgstr "تاریخ به‌روزشدن سایت"
167
 
168
  #: F:\Program
169
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
170
  #, php-format
171
  msgid ""
172
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
176
  "تنظیمات</a> آمارگیر مراجعه کنید."
177
 
178
  #: F:\Program
179
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:72
180
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:118
181
  msgid "View Stats"
182
  msgstr "نمایش آمار"
183
 
184
  #: F:\Program
185
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:73
186
+ msgid "Optimization"
187
+ msgstr "بهینه سازی"
188
+
189
+ #: F:\Program
190
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:74
191
  msgid "Settings"
192
  msgstr "تنظیمات"
193
 
194
  #: F:\Program
195
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:98
196
  msgid "Today visitor"
197
  msgstr "بازدید کننده امروز"
198
 
199
  #: F:\Program
200
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
201
  msgid "Today visit"
202
  msgstr "بازدید امروز"
203
 
204
  #: F:\Program
205
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:108
206
  msgid "Yesterday visitor"
207
  msgstr "بازدید کننده دیروز"
208
 
209
  #: F:\Program
210
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:113
211
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
212
  msgid "Yesterday visit"
213
  msgstr "بازدید دیروز"
214
 
215
  #: F:\Program
216
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:148
217
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:221
218
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:237
219
  msgid "You do not have sufficient permissions to access this page."
220
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
221
 
222
  #: F:\Program
223
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:158
224
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
225
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
226
 
552
  msgid "Referring sites from"
553
  msgstr "سایت های ارجاع دهنده از"
554
 
555
+ #: F:\Program
556
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
557
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
558
+ msgid "Access denied!"
559
+ msgstr "دسترسی غیرمجاز!"
560
+
561
+ #: F:\Program
562
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:15
563
+ #, php-format
564
+ msgid "<code>%s</code> table data deleted successfully."
565
+ msgstr "داده‌های جدول <code>%s</code> با موفقیت حذف شد."
566
+
567
+ #: F:\Program
568
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:23
569
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
570
+ msgid "Please select the desired items."
571
+ msgstr "لطفا موارد مورد نظر را انتخاب کنید."
572
+
573
+ #: F:\Program
574
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
575
+ msgid "Are you sure?"
576
+ msgstr "آیا مطمئن هستید؟"
577
+
578
+ #: F:\Program
579
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:37
580
+ msgid "Resources"
581
+ msgstr "منابع"
582
+
583
+ #: F:\Program
584
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:42
585
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:47
586
+ msgid "Memory usage in PHP"
587
+ msgstr "حافظه استفاده شده در پی‌اچ‌پی"
588
+
589
+ #: F:\Program
590
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:46
591
+ msgid "Byte"
592
+ msgstr "بایت"
593
+
594
+ #: F:\Program
595
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:53
596
+ #, php-format
597
+ msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
598
+ msgstr "تعداد ردیف‌ها در جدول <code>%sstatistics_useronline</code>"
599
+
600
+ #: F:\Program
601
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:57
602
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:68
603
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:79
604
+ msgid "Row"
605
+ msgstr "ردیف"
606
+
607
+ #: F:\Program
608
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:58
609
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:69
610
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:80
611
+ msgid "Number of rows"
612
+ msgstr "تعداد ردیف‌های موجود"
613
+
614
+ #: F:\Program
615
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:64
616
+ #, php-format
617
+ msgid "Number of rows in the <code>%sstatistics_visit</code> table"
618
+ msgstr "تعداد ردیف‌ها در جدول <code>%sstatistics_visit</code>"
619
+
620
+ #: F:\Program
621
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:75
622
+ #, php-format
623
+ msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
624
+ msgstr "تعداد ردیف‌ها در جدول <code>%sstatistics_visitor</code>"
625
+
626
+ #: F:\Program
627
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:85
628
+ msgid "Export"
629
+ msgstr "برون‌بری"
630
+
631
+ #: F:\Program
632
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:90
633
+ msgid "Export from"
634
+ msgstr "برون‌بری از"
635
+
636
+ #: F:\Program
637
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:95
638
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:111
639
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:133
640
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
641
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
642
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
643
+ msgid "Please select."
644
+ msgstr "لطفا انتخاب کنید."
645
+
646
+ #: F:\Program
647
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:100
648
+ msgid "Select the table for the output file."
649
+ msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
650
+
651
+ #: F:\Program
652
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:106
653
+ msgid "Export To"
654
+ msgstr "برون‌بری به"
655
+
656
+ #: F:\Program
657
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:117
658
+ msgid "Select the output file type."
659
+ msgstr "نوع فایل خروجی را انتخاب کنید."
660
+
661
+ #: F:\Program
662
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
663
+ msgid "Start Now!"
664
+ msgstr "شروع کن!"
665
+
666
+ #: F:\Program
667
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:123
668
+ msgid "Empty"
669
+ msgstr "خالی کردن"
670
+
671
+ #: F:\Program
672
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:128
673
+ msgid "Empty Table"
674
+ msgstr "خالی کردن جدول"
675
+
676
+ #: F:\Program
677
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:138
678
+ msgid "All data table will be lost."
679
+ msgstr "تمامی دادههای جدول از بین خواهد رفت."
680
+
681
+ #: F:\Program
682
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:139
683
+ msgid "Clear now!"
684
+ msgstr "پاک کن!"
685
+
686
  #: F:\Program
687
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
688
  msgid "General Settings"
771
  msgid "Chart type"
772
  msgstr "نوع نمودار"
773
 
 
 
 
 
 
 
 
774
  #: F:\Program
775
  #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
776
  msgid "Line"
916
  msgid "Persian"
917
  msgstr "شمسی (فارسی)"
918
 
919
+ #~ msgid "Empty Now!"
920
+ #~ msgstr "پاک کن!"
921
+
922
+ #~ msgid "Export Settings"
923
+ #~ msgstr "تنظیمات برون‌بری"
924
+
925
+ #~ msgid "Backup Settings"
926
+ #~ msgstr "تنظیمات نسخه پشتیبان"
927
+
928
  #, fuzzy
929
  #~ msgid "Search engine"
930
  #~ msgstr "ورودی موتور جستجو"
1041
  #~ msgid "low value"
1042
  #~ msgstr "کم شد"
1043
 
 
 
 
1044
  #~ msgid "Report a problem for WP Statistics"
1045
  #~ msgstr "گزارش مشکل برای افزونه WP Statistics"
1046
 
1074
  #~ msgid "Users Online"
1075
  #~ msgstr "کاربران حاضر"
1076
 
 
 
 
1077
  #~ msgid "Configuration"
1078
  #~ msgstr "پیکربندی"
1079
 
languages/wp_statistics-pl_PL.mo CHANGED
Binary file
languages/wp_statistics-pl_PL.po CHANGED
@@ -2,896 +2,789 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-01-28 19:10+0330\n"
6
- "PO-Revision-Date: 2013-01-28 19:10+0330\n"
7
- "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;_e;__\n"
14
- "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
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
- #, fuzzy
24
  msgid "Statistical reporting"
25
- msgstr "Konfiguracja statystyk w czasie rzeczywistym"
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:58
31
  msgid "Statistics"
32
  msgstr "Statystyki"
33
 
34
  #: F:\Program
35
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:5
36
  msgid "Show site stats in sidebar"
37
- msgstr "Pokaż statystyki strony w pasku bocznym"
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:80
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
45
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
46
  msgid "User Online"
47
- msgstr "Użytkowników Online"
48
 
49
  #: F:\Program
50
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:26
51
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:161
52
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
53
  msgid "Today Visit"
54
- msgstr "Wizyty dzisiaj"
55
 
56
  #: F:\Program
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
- #, fuzzy
61
  msgid "Today Visitor"
62
- msgstr "Wizyty dzisiaj"
63
 
64
  #: F:\Program
65
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:40
66
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
67
  msgid "Yesterday Visit"
68
- msgstr "Wizyty wczoraj"
69
 
70
  #: F:\Program
71
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:47
72
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:162
73
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
74
- #, fuzzy
75
  msgid "Yesterday Visitor"
76
- msgstr "Wizyty wczoraj"
77
 
78
  #: F:\Program
79
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:54
80
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:24
81
  msgid "Week Visit"
82
- msgstr "Wizyty w bieżącym tygodniu"
83
 
84
  #: F:\Program
85
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:61
86
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:27
87
  msgid "Month Visit"
88
- msgstr "Wizyty w bieżącym miesiącu"
89
 
90
  #: F:\Program
91
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:68
92
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:30
93
  msgid "Years Visit"
94
- msgstr "Wizyty w bieżącym roku"
95
 
96
  #: F:\Program
97
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:75
98
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:165
99
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
100
  msgid "Total Visit"
101
- msgstr "Wszystkich wizyt"
102
 
103
  #: F:\Program
104
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:82
105
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:164
106
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
107
- #, fuzzy
108
  msgid "Total Visitor"
109
- msgstr "Wszystkich wizyt"
110
 
111
  #: F:\Program
112
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:90
113
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
 
114
  msgid "Search Engine reffered"
115
- msgstr "Z wyszukiwarki"
116
 
117
  #: F:\Program
118
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:105
119
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
120
  msgid "Total Posts"
121
- msgstr "Wszystkich postów"
122
 
123
  #: F:\Program
124
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:112
125
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
126
  msgid "Total Pages"
127
  msgstr "Wszystkich stron"
128
 
129
  #: F:\Program
130
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:119
131
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
132
  msgid "Total Comments"
133
  msgstr "Wszystkich komentarzy"
134
 
135
  #: F:\Program
136
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:126
137
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
138
  msgid "Total Spams"
139
- msgstr "Wszystkich wiadomości-śmieci"
140
 
141
  #: F:\Program
142
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:133
143
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
144
  msgid "Total Users"
145
  msgstr "Wszystkich użytkowników"
146
 
147
  #: F:\Program
148
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:140
149
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
150
  msgid "Average Posts"
151
- msgstr "Postów średnio"
152
 
153
  #: F:\Program
154
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:147
155
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
156
  msgid "Average Comments"
157
- msgstr "Komentarzy średnio"
158
 
159
  #: F:\Program
160
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:154
161
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
162
  msgid "Average Users"
163
- msgstr "Użytkowników średnio"
164
 
165
  #: F:\Program
166
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:161
167
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
168
  msgid "Last Post Date"
169
- msgstr "Data ostatniego postu"
170
 
171
  #: F:\Program
172
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:60
173
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
174
- msgid "View Stats"
 
 
175
  msgstr ""
 
 
176
 
177
  #: F:\Program
178
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:61
 
 
 
 
 
 
179
  msgid "Settings"
180
  msgstr "Ustawienia"
181
 
182
  #: F:\Program
183
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
184
- #, fuzzy
185
  msgid "Today visitor"
186
- msgstr "Wizyty dzisiaj"
187
 
188
  #: F:\Program
189
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
190
- #, fuzzy
191
  msgid "Today visit"
192
- msgstr "Wizyty dzisiaj"
193
 
194
  #: F:\Program
195
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
196
- #, fuzzy
197
  msgid "Yesterday visitor"
198
- msgstr "Wczorajsza wizyta"
199
 
200
  #: F:\Program
201
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
202
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
203
  msgid "Yesterday visit"
204
- msgstr "Wczorajsza wizyta"
205
 
206
  #: F:\Program
207
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
208
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:151
209
  msgid "You do not have sufficient permissions to access this page."
210
- msgstr "Nie posiadasz wystarczających uprawnień aby oglądać stronę"
211
-
212
- #: F:\Program
213
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:8
214
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
215
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:165
216
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:209
217
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:244
218
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:334
219
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:374
220
- msgid "Click to toggle"
221
- msgstr ""
222
-
223
- #: F:\Program
224
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:9
225
- #, fuzzy
226
- msgid "Summary Statistics"
227
- msgstr "Statystyki"
228
-
229
- #: F:\Program
230
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:20
231
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:305
232
- msgid "Visitor"
233
- msgstr ""
234
 
235
  #: F:\Program
236
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:21
237
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:315
238
- #, fuzzy
239
- msgid "Visit"
240
- msgstr "Wizyty w bieżącym tygodniu"
241
 
242
  #: F:\Program
243
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:25
244
- #, fuzzy
245
- msgid "Today"
246
- msgstr "Wizyty dzisiaj"
 
 
247
 
248
  #: F:\Program
249
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
250
- #, fuzzy
251
- msgid "Yesterday"
252
- msgstr "Wizyty wczoraj"
 
253
 
254
  #: F:\Program
255
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:37
256
- msgid "Week"
257
- msgstr ""
 
 
 
258
 
259
  #: F:\Program
260
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
261
- #, fuzzy
262
- msgid "Month"
263
- msgstr "Wizyty w bieżącym miesiącu"
 
 
 
 
264
 
265
  #: F:\Program
266
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:49
267
- msgid "Year"
268
- msgstr ""
 
 
 
 
 
269
 
270
  #: F:\Program
271
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:55
272
- #, fuzzy
273
- msgid "Total"
274
- msgstr "Wszystkich wizyt"
 
 
 
 
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:342
346
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:386
347
- #, fuzzy
348
- msgid "Reference"
349
- msgstr "Przekierowanie z adresu"
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:210
358
- #, fuzzy
359
- msgid "About plugin"
360
- msgstr "Wyłącz wtyczkę"
361
 
362
  #: F:\Program
363
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:213
364
- #, fuzzy, php-format
365
- msgid "Plugin version: %s"
366
- msgstr "Tłumacze wtyczki"
367
 
368
  #: F:\Program
369
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
370
- msgid "Translation plugin languages"
371
- msgstr ""
372
 
373
  #: F:\Program
374
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:215
375
- msgid "Support plugin"
376
- msgstr ""
377
 
378
  #: F:\Program
379
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
380
- msgid "Weblog"
381
- msgstr ""
382
 
383
  #: F:\Program
384
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:221
 
 
 
 
 
 
 
385
  msgid ""
386
- "Please donate to the plugin. With the help of plug-ins you can quickly "
387
- "spread."
388
  msgstr ""
 
 
389
 
390
  #: F:\Program
391
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:224
392
- msgid "Donate"
393
- msgstr ""
394
 
395
  #: F:\Program
396
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:245
397
- #, fuzzy
398
- msgid "Statistical Chart"
399
- msgstr "Statystyki"
400
 
401
  #: F:\Program
402
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:260
403
- msgid "Chart hit in the last 20 days"
404
- msgstr ""
405
 
406
  #: F:\Program
407
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:279
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:335
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:339
418
- msgid "Word"
419
- msgstr ""
 
 
420
 
421
  #: F:\Program
422
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:340
423
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:384
424
- msgid "Date"
425
- msgstr ""
426
 
427
  #: F:\Program
428
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:341
429
- msgid "Site"
430
- msgstr ""
431
 
432
  #: F:\Program
433
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:354
434
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
435
- msgid "Google"
436
- msgstr "Google"
437
 
438
  #: F:\Program
439
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:356
440
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
441
- msgid "Yahoo!"
442
- msgstr "Yahoo!"
443
 
444
  #: F:\Program
445
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:358
446
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
447
- msgid "Bing"
448
- msgstr "Bing"
449
 
450
  #: F:\Program
451
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:363
452
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:400
453
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:408
454
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:420
455
- msgid "Unknown"
456
- msgstr ""
457
 
458
  #: F:\Program
459
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:375
460
- #, fuzzy
461
- msgid "Recent Visitors"
462
- msgstr "Wizyty w bieżącym tygodniu"
463
 
464
  #: F:\Program
465
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
466
- msgid "IP"
467
- msgstr "IP"
468
 
469
  #: F:\Program
470
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:381
471
- msgid "Country"
472
- msgstr ""
473
 
474
  #: F:\Program
475
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
476
- msgid "Province"
 
 
477
  msgstr ""
 
 
478
 
479
  #: F:\Program
480
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:385
481
- msgid "Browser"
482
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
483
 
484
  #: F:\Program
485
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
486
- #, fuzzy
 
 
 
 
 
 
 
 
 
487
  msgid "General Settings"
488
- msgstr "Ustawienia"
489
 
490
  #: F:\Program
491
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
492
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
493
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
494
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:92
495
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
496
  msgid "Active"
497
- msgstr ""
498
 
499
  #: F:\Program
500
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
501
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
502
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
503
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
504
  msgid "Enable or disable this feature"
505
- msgstr ""
506
 
507
  #: F:\Program
508
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
509
- #, fuzzy
510
  msgid "Visits"
511
- msgstr "Wizyty w bieżącym tygodniu"
512
 
513
  #: F:\Program
514
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
515
  msgid "Visitors"
516
- msgstr ""
517
 
518
  #: F:\Program
519
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
520
  msgid "Check for online users every"
521
- msgstr "Sprawdź obecność użytkowników online co"
522
 
523
  #: F:\Program
524
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:55
525
- #, fuzzy
526
  msgid "Secound"
527
  msgstr "Sekund"
528
 
529
  #: F:\Program
530
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
531
- #, fuzzy, php-format
532
  msgid "Time for the check accurate online user in the site. Now: %s Second"
533
- msgstr ""
534
- "Co jaki czas sprawdzana jest ilość użytkowników na steonie. Domślnie: 60 "
535
- "sekund"
536
 
537
  #: F:\Program
538
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
539
  msgid "Show stats in menu bar"
540
- msgstr "Pokaż statystyki w pasku menu"
541
 
542
  #: F:\Program
543
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:67
544
  msgid "No"
545
- msgstr "Nr"
546
 
547
  #: F:\Program
548
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:68
549
  msgid "Yes"
550
  msgstr "Tak"
551
 
552
  #: F:\Program
553
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:70
554
  msgid "Show stats in admin menu bar"
555
- msgstr "Pokaż statystyki w pasku menu administracyjnego"
556
 
557
  #: F:\Program
558
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
559
  msgid "Coefficient per visitor"
560
  msgstr "Współczynnik dla użytkownika"
561
 
562
  #: F:\Program
563
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:81
564
- #, fuzzy, php-format
565
  msgid "For each visit to account for several hits. Currently %s."
566
- msgstr "Dla każdego udwiedzającego swoje konto dla kilku odwiedzin."
567
 
568
  #: F:\Program
569
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:87
570
- msgid "Display IP Information On-screen statistics"
571
- msgstr ""
572
 
573
  #: F:\Program
574
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:93
575
- msgid "Showing the flag country and Visitor province name (May be a bit slow)"
576
- msgstr ""
577
 
578
  #: F:\Program
579
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
580
- msgid "Statistical reporting settings"
581
- msgstr ""
 
 
582
 
583
  #: F:\Program
584
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:116
585
- #, fuzzy
586
- msgid "Time send"
587
- msgstr "Czas"
588
 
589
  #: F:\Program
590
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
591
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:137
592
- #, fuzzy
593
- msgid "Please select."
594
- msgstr "Proszę podać wartość!"
 
 
 
 
 
 
 
 
 
 
 
 
 
595
 
596
  #: F:\Program
597
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
598
  msgid "Hourly"
599
- msgstr ""
600
 
601
  #: F:\Program
602
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
603
  msgid "Twice daily"
604
- msgstr ""
605
 
606
  #: F:\Program
607
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:124
608
  msgid "daily"
609
- msgstr ""
610
 
611
  #: F:\Program
612
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
613
  msgid "Select when receiving statistics report."
614
- msgstr ""
615
 
616
  #: F:\Program
617
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
618
  msgid "Send Statistical reporting to"
619
- msgstr ""
620
 
621
  #: F:\Program
622
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
623
  msgid "Email"
624
- msgstr ""
625
 
626
  #: F:\Program
627
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
628
  msgid "SMS"
629
- msgstr ""
630
 
631
  #: F:\Program
632
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:141
633
  msgid "Type Select Get Status Report."
634
- msgstr ""
635
 
636
  #: F:\Program
637
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
638
  #, php-format
639
  msgid ""
640
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
641
  "\"_blank\">Wordpress SMS</a> plugin."
642
  msgstr ""
 
 
643
 
644
  #: F:\Program
645
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
646
  msgid "Send Content Report"
647
- msgstr ""
648
 
649
  #: F:\Program
650
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
651
  msgid "Enter the contents of the reports received."
652
- msgstr ""
653
 
654
  #: F:\Program
655
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:158
656
  msgid "Input data:"
657
- msgstr ""
658
 
659
  #: F:\Program
660
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
661
  msgid "Name"
662
  msgstr "Nazwa"
663
 
664
  #: F:\Program
665
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
666
  msgid "Items"
667
- msgstr "Elementy"
668
 
669
  #: F:\Program
670
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
671
  msgid "Select type of search engine"
672
  msgstr "Wybierz typ wyszukiwarki"
673
 
674
  #: F:\Program
675
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
676
- msgid "All"
677
- msgstr "Wszystkie"
678
-
679
- #: F:\Program
680
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
681
  msgid "Type date for last update"
682
  msgstr "Wpisz datę ostatniej aktualizacji"
683
 
684
  #: F:\Program
685
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
686
  msgid "English"
687
  msgstr "Angielski"
688
 
689
  #: F:\Program
690
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
691
  msgid "Persian"
692
  msgstr "Perski"
693
-
694
- #~ msgid "Added"
695
- #~ msgstr "Dodano"
696
-
697
- #~ msgid "value"
698
- #~ msgstr "wartość"
699
-
700
- #~ msgid "Was"
701
- #~ msgstr "Było"
702
-
703
- #~ msgid "low value"
704
- #~ msgstr "niska ilość"
705
-
706
- #~ msgid "Access is Denied!"
707
- #~ msgstr "Dostęp zabroniony!"
708
-
709
- #~ msgid "Thanks for your report!"
710
- #~ msgstr "Dziękujemy za informacje!"
711
-
712
- #~ msgid "Error! Please Enter all field"
713
- #~ msgstr "Błąd! Proszę wypełnić wszystkie pola"
714
-
715
- #~ msgid "deleted!"
716
- #~ msgstr "usunięte!"
717
-
718
- #~ msgid "All plugin data is deleted"
719
- #~ msgstr "Wszystkie dane wtyczki zostały usunięte"
720
-
721
- #~ msgid "plugin options have been deleted"
722
- #~ msgstr "opcje wtyczki zostały usunięte"
723
-
724
- #~ msgid "WP-Statistics"
725
- #~ msgstr "Statystyki-WP"
726
-
727
- #~ msgid "Plugin home page"
728
- #~ msgstr "Strona domowa wtyczki"
729
-
730
- #~ msgid ""
731
- #~ "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> "
732
- #~ "and enable statistics"
733
- #~ msgstr ""
734
- #~ "WP-Statistics nie jest aktywny! Prosimy o przejście do <a href=\"%s"
735
- #~ "\">strony ustawień</a> aby uruchomić statystyki"
736
-
737
- #~ msgid "Stats Log"
738
- #~ msgstr "Log statystyk"
739
-
740
- #~ msgid "Users Online"
741
- #~ msgstr "Użytkowników Online"
742
-
743
- #~ msgid "Are you sure?"
744
- #~ msgstr "Czy jesteś pewien?"
745
-
746
- #~ msgid "Configuration"
747
- #~ msgstr "Konfiguracja"
748
-
749
- #~ msgid "Enable Statistics"
750
- #~ msgstr "Włącz statystyki"
751
-
752
- #~ msgid "Statistics are enabled."
753
- #~ msgstr "Statystyki są włączone."
754
-
755
- #~ msgid "Statistics are disabled!"
756
- #~ msgstr "Statystyki są wyłączone!"
757
-
758
- #~ msgid "General configuration"
759
- #~ msgstr "Ustawienia ogólne"
760
-
761
- #~ msgid "Show decimals number"
762
- #~ msgstr "Pokaż wartości dziesiętne"
763
-
764
- #~ msgid "Show number stats with decimal. For examle: 3,500"
765
- #~ msgstr ""
766
- #~ "Pokaż wartość statystyk w jednostkach dziesiętnych. Na przykład: 3,500"
767
-
768
- #~ msgid "Daily referer of search engines"
769
- #~ msgstr "Dzienne przekierowania z wyszukiwarek"
770
-
771
- #~ msgid "Can be calculated daily or total search engines"
772
- #~ msgstr "Mogą być liczone dziennie lub całościowo z wyszukiwarek"
773
-
774
- #~ msgid "Increase value of the total hits by"
775
- #~ msgstr "Zwiększ wartość licznika o"
776
-
777
- #~ msgid "Done"
778
- #~ msgstr "Zakończono"
779
-
780
- #~ msgid "Your total visit sum with this value"
781
- #~ msgstr "Wartość licznika odwiedzin zostanie zwiększona o tą wartość"
782
-
783
- #~ msgid "Reduce value of the total hits by"
784
- #~ msgstr "Zmniejsz wartość licznika o"
785
-
786
- #~ msgid "Your total visit minus with this value"
787
- #~ msgstr "Wartość licznika zostanie zmniejszona o tą wartość"
788
-
789
- #~ msgid "Number item for show Statistics"
790
- #~ msgstr "Ilość elementów do wyświetlenia w statystykach"
791
-
792
- #~ msgid "Default 5"
793
- #~ msgstr "Domyślnie 5"
794
-
795
- #~ msgid "Number for submit item in Database and show that"
796
- #~ msgstr "Liczba zatwierdzonych elementów w bazie danych i pokazywanych"
797
-
798
- #~ msgid "Default 1"
799
- #~ msgstr "Domyślnie 1"
800
-
801
- #~ msgid "Refresh Stats every"
802
- #~ msgstr "Odświerz statystyki co"
803
-
804
- #~ msgid "Second(s)"
805
- #~ msgstr "Sekund(s)"
806
-
807
- #~ msgid "Recommended"
808
- #~ msgstr "Rekomendowane"
809
-
810
- #~ msgid "To reduce pressure on the server, this defaults to 10 sec"
811
- #~ msgstr "Aby zmniejszyć obciążenie serwera, domyślnie 10 sek"
812
-
813
- #~ msgid "Pagerank configuration"
814
- #~ msgstr "Konfiguracja Pagerank"
815
-
816
- #~ msgid "Your url for Google pagerank check"
817
- #~ msgstr "Twój link do Google pagerank"
818
-
819
- #~ msgid "If empty. you website url is used"
820
- #~ msgstr "Jeśli pozostawisz pole puste zostanie użyty adres Twojej strony"
821
-
822
- #~ msgid "Your url for Alexa pagerank check"
823
- #~ msgstr "Twój link do Alexa pagerank"
824
-
825
- #~ msgid "Update"
826
- #~ msgstr "Uaktualnij"
827
-
828
- #~ msgid "This plugin created by"
829
- #~ msgstr "Ta wtyczka została stworzona przez"
830
-
831
- #~ msgid "from"
832
- #~ msgstr "od"
833
-
834
- #~ msgid "group"
835
- #~ msgstr "grupa"
836
-
837
- #~ msgid "Language"
838
- #~ msgstr "Język"
839
-
840
- #~ msgid "by"
841
- #~ msgstr "przez"
842
-
843
- #~ msgid "for translate language files. please send files for"
844
- #~ msgstr ""
845
- #~ "Jeżeli stworzyłeś tłumaczenie wtyczki proszę prześlij pliki na adres"
846
-
847
- #~ msgid "Show Functions"
848
- #~ msgstr "Pokaż funkcje"
849
-
850
- #~ msgid "Report Problem"
851
- #~ msgstr "Zgłoś problem"
852
-
853
- #~ msgid "User Online Live"
854
- #~ msgstr "Użytkownicy Online"
855
-
856
- #~ msgid "Total Visit Live"
857
- #~ msgstr "Wszystkich wizyt"
858
-
859
- #~ msgid "Total Feedburner Subscribe"
860
- #~ msgstr "Wszystkich subskrybentów"
861
-
862
- #~ msgid "Google Pagerank"
863
- #~ msgstr "Google Pagerank"
864
-
865
- #~ msgid "Alexa Pagerank"
866
- #~ msgstr "Alexa Pagerank"
867
-
868
- #~ msgid "Hide"
869
- #~ msgstr "Ukryj"
870
-
871
- #~ msgid "Your Name"
872
- #~ msgstr "Twoje Imię"
873
-
874
- #~ msgid "Description Problem"
875
- #~ msgstr "Opis problemu"
876
-
877
- #~ msgid "Send Problem"
878
- #~ msgstr "Wyślij problem"
879
-
880
- #~ msgid "Unistall plugin"
881
- #~ msgstr "Odinstaluj wtyczkę"
882
-
883
- #~ msgid "Delete all data, including tables and plugin options"
884
- #~ msgstr ""
885
- #~ "Usuń wszystkie dane włącznie z tabelami bazy danych i ustawieniami wtyczki"
886
-
887
- #~ msgid "Uninstall"
888
- #~ msgstr "Odinstaluj"
889
-
890
- #~ msgid "Stats weblog"
891
- #~ msgstr "Weblog statystyk"
892
-
893
- #~ msgid "Agent"
894
- #~ msgstr "Agent"
895
-
896
- #~ msgid "Referrer"
897
- #~ msgstr "Referer"
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-16 17:25+0330\n"
6
+ "PO-Revision-Date: 2013-07-30 09:46+0100\n"
7
+ "Last-Translator: Marcin Tymków <tymciom@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;_e;__\n"
14
+ "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\cms\\wordpress\\wp-"
15
+ "content\\plugins\\wp-statistics\n"
16
+ "X-Generator: Poedit 1.5.7\n"
17
+ "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\cms\\wordpress\\wp-"
18
  "content\\plugins\\wp-statistics\n"
19
 
20
  #: F:\Program
21
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
22
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:115
 
23
  msgid "Statistical reporting"
24
+ msgstr "Raporty statystyk"
25
 
26
  #: F:\Program
27
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:68
30
  msgid "Statistics"
31
  msgstr "Statystyki"
32
 
33
  #: F:\Program
34
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
35
  msgid "Show site stats in sidebar"
36
+ msgstr "Pokaż statystyki stron w menu bocznym"
37
 
38
  #: F:\Program
39
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
40
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
41
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
42
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
43
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
44
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
45
  msgid "User Online"
46
+ msgstr "Użytkowników online"
47
 
48
  #: F:\Program
49
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
50
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:173
51
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
52
  msgid "Today Visit"
53
+ msgstr "Odwiedzin dzisiaj"
54
 
55
  #: F:\Program
56
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
57
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:172
58
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
 
59
  msgid "Today Visitor"
60
+ msgstr "Odwiedzających dzisiaj"
61
 
62
  #: F:\Program
63
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
64
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
65
  msgid "Yesterday Visit"
66
+ msgstr "Odwiedzin wczoraj"
67
 
68
  #: F:\Program
69
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
70
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
71
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
 
72
  msgid "Yesterday Visitor"
73
+ msgstr "Odwiedzających wczoraj"
74
 
75
  #: F:\Program
76
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
77
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:24
78
  msgid "Week Visit"
79
+ msgstr "Odwiedzin w tygodniu"
80
 
81
  #: F:\Program
82
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
83
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:27
84
  msgid "Month Visit"
85
+ msgstr "Odwiedzin w miesiącu"
86
 
87
  #: F:\Program
88
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
89
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:30
90
  msgid "Years Visit"
91
+ msgstr "Odwiedzin w roku"
92
 
93
  #: F:\Program
94
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
95
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:177
96
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
97
  msgid "Total Visit"
98
+ msgstr "Całkowita liczba odwiedzin"
99
 
100
  #: F:\Program
101
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
102
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:176
103
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
 
104
  msgid "Total Visitor"
105
+ msgstr "Całkowita liczba odwiedzających"
106
 
107
  #: F:\Program
108
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
109
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
110
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
111
  msgid "Search Engine reffered"
112
+ msgstr "Odwiedziny z wyszukiwarek"
113
 
114
  #: F:\Program
115
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:105
116
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
117
  msgid "Total Posts"
118
+ msgstr "Wszystkich wpisów"
119
 
120
  #: F:\Program
121
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:112
122
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
123
  msgid "Total Pages"
124
  msgstr "Wszystkich stron"
125
 
126
  #: F:\Program
127
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:119
128
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
129
  msgid "Total Comments"
130
  msgstr "Wszystkich komentarzy"
131
 
132
  #: F:\Program
133
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:126
134
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
135
  msgid "Total Spams"
136
+ msgstr "Całkowita ilość spamu"
137
 
138
  #: F:\Program
139
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:133
140
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
141
  msgid "Total Users"
142
  msgstr "Wszystkich użytkowników"
143
 
144
  #: F:\Program
145
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:140
146
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
147
  msgid "Average Posts"
148
+ msgstr "Średnio wpisów"
149
 
150
  #: F:\Program
151
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:147
152
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
153
  msgid "Average Comments"
154
+ msgstr "Średnio komentarzy"
155
 
156
  #: F:\Program
157
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:154
158
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
159
  msgid "Average Users"
160
+ msgstr "Średnio użytkowników"
161
 
162
  #: F:\Program
163
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:161
164
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
165
  msgid "Last Post Date"
166
+ msgstr "Data ostatniego wpisu"
167
 
168
  #: F:\Program
169
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:40
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
+ "Pobieranie statystyk nie jest uruchomine! Przedjdź do <a href=\"%s"
176
+ "\">ustawień</a> i uruchom je."
177
 
178
  #: F:\Program
179
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
180
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
181
+ msgid "View Stats"
182
+ msgstr "Zobacz statystyki"
183
+
184
+ #: F:\Program
185
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:71
186
  msgid "Settings"
187
  msgstr "Ustawienia"
188
 
189
  #: F:\Program
190
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
 
191
  msgid "Today visitor"
192
+ msgstr "Odwiedzający dzisiaj"
193
 
194
  #: F:\Program
195
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
 
196
  msgid "Today visit"
197
+ msgstr "Odwiedzin dzisiaj"
198
 
199
  #: F:\Program
200
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
 
201
  msgid "Yesterday visitor"
202
+ msgstr "Odwiedzający wczoraj"
203
 
204
  #: F:\Program
205
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
206
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
207
  msgid "Yesterday visit"
208
+ msgstr "Odwiedzin wczoraj"
209
 
210
  #: F:\Program
211
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:145
212
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:218
213
  msgid "You do not have sufficient permissions to access this page."
214
+ msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić stronę."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
 
216
  #: F:\Program
217
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:155
218
+ msgid "Table plugin does not exist! Please disable and re-enable the plugin."
219
+ msgstr "Tabela wtyczki nie istnieje! Proszę wyłącz i włącz wtyczkę."
 
 
220
 
221
  #: F:\Program
222
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
223
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
224
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
225
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
226
+ msgid "To be added soon"
227
+ msgstr "Zostanie dodane w najbliższym czasie"
228
 
229
  #: F:\Program
230
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
231
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
232
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
233
+ msgid "Latest search words"
234
+ msgstr "Ostatnio wyszukiwane słowa"
235
 
236
  #: F:\Program
237
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
238
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
239
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
240
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
241
+ msgid "All"
242
+ msgstr "Wszystkie"
243
 
244
  #: F:\Program
245
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
246
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
247
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:79
248
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:441
249
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:502
250
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
251
+ msgid "Google"
252
+ msgstr "Google"
253
 
254
  #: F:\Program
255
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
256
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
257
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:85
258
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:451
259
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:504
260
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
261
+ msgid "Yahoo!"
262
+ msgstr "Yahoo!"
263
 
264
  #: F:\Program
265
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
266
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
267
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:91
268
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:461
269
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:506
270
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
271
+ msgid "Bing"
272
+ msgstr "Bing"
273
 
274
  #: F:\Program
275
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
276
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
277
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
278
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:110
279
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:208
280
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:252
281
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
282
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
283
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:480
284
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:521
285
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:22
286
+ msgid "Click to toggle"
287
+ msgstr "Naciśnij by przełączyć"
288
 
289
  #: F:\Program
290
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:58
291
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
292
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:499
293
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:538
294
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
295
+ msgid "Map"
296
+ msgstr "Mapa"
297
 
298
  #: F:\Program
299
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
300
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
301
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
302
+ msgid "Page"
303
+ msgstr "Strona"
304
 
305
  #: F:\Program
306
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
307
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
308
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
309
+ msgid "From"
310
+ msgstr "Z"
311
 
312
  #: F:\Program
313
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
314
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
315
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:523
316
+ msgid "Recent Visitors"
317
+ msgstr "Powracający odwiedzający"
318
 
319
  #: F:\Program
320
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
321
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:188
322
  msgid "Firefox"
323
+ msgstr "Firefox"
324
 
325
  #: F:\Program
326
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
327
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:189
328
  msgid "IE"
329
+ msgstr "IE"
330
 
331
  #: F:\Program
332
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
333
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:190
334
  msgid "Ipad"
335
+ msgstr "Ipad"
336
 
337
  #: F:\Program
338
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
339
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:191
340
  msgid "Android"
341
+ msgstr "Android"
342
 
343
  #: F:\Program
344
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
345
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:192
346
  msgid "Chrome"
347
+ msgstr "Chrome"
348
 
349
  #: F:\Program
350
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
351
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:193
352
  msgid "Safari"
353
+ msgstr "Safari"
354
+
355
+ #: F:\Program
356
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:20
357
+ msgid "Opera"
358
+ msgstr "Opera"
359
 
360
  #: F:\Program
361
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
362
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:194
363
  msgid "Other"
364
+ msgstr "Inne"
365
 
366
  #: F:\Program
367
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:17
368
+ msgid "Summary Statistics"
369
+ msgstr "Podsumowanie statystyk"
370
 
371
+ # Ewentualnie można zmienić z Odwiedzający na Gość
372
  #: F:\Program
373
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
374
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:350
375
+ msgid "Visitor"
376
+ msgstr "Odwiedzający"
 
 
377
 
378
  #: F:\Program
379
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
380
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:360
381
+ msgid "Visit"
382
+ msgstr "Odwiedziny"
383
 
384
  #: F:\Program
385
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
386
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:74
387
+ msgid "Today"
388
+ msgstr "Dzisiaj"
389
 
390
  #: F:\Program
391
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
392
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:75
393
+ msgid "Yesterday"
394
+ msgstr "Wczoraj"
395
 
396
  #: F:\Program
397
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:45
398
+ msgid "Week"
399
+ msgstr "Tydzień"
400
 
401
  #: F:\Program
402
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:51
403
+ msgid "Month"
404
+ msgstr "Miesiąc"
405
 
406
  #: F:\Program
407
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:57
408
+ msgid "Year"
409
+ msgstr "Rok"
410
 
411
  #: F:\Program
412
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
413
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:97
414
+ msgid "Total"
415
+ msgstr "Całkowite"
416
+
417
+ #: F:\Program
418
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:103
419
+ #, php-format
420
  msgid ""
421
+ "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
 
422
  msgstr ""
423
+ "Dzisiejsza data: <code dir=\"ltr\">%s</code>, Godzina: <code dir=\"ltr\">%s</"
424
+ "code>"
425
 
426
  #: F:\Program
427
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:105
428
+ msgid "(Adjustment)"
429
+ msgstr "(Ustawienia)"
430
 
431
  #: F:\Program
432
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:111
433
+ msgid "Browsers"
434
+ msgstr "Przeglądarki"
 
435
 
436
  #: F:\Program
437
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
438
+ msgid "Graph of Browsers"
439
+ msgstr "Wykres przeglądarek"
440
 
441
  #: F:\Program
442
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:186
443
+ msgid "Browser share"
444
+ msgstr "Udział przeglądarek"
445
 
446
  #: F:\Program
447
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
448
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:11
449
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
450
+ msgid "Top referring sites"
451
+ msgstr "Top stron odsyłających"
452
 
453
  #: F:\Program
454
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
455
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
456
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:523
457
+ msgid "(See more)"
458
+ msgstr "(Zobacz więcej)"
459
 
460
  #: F:\Program
461
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
462
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
463
+ msgid "Reference"
464
+ msgstr "Odesłań"
465
 
466
  #: F:\Program
467
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
468
+ msgid "Address"
469
+ msgstr "Adres"
470
 
471
  #: F:\Program
472
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:253
473
+ msgid "About plugin"
474
+ msgstr "O wtyczce"
 
475
 
476
  #: F:\Program
477
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:256
478
+ #, php-format
479
+ msgid "Plugin version: %s"
480
+ msgstr "Wersja wtyczki: %s"
481
 
482
  #: F:\Program
483
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
484
+ msgid "Translations"
485
+ msgstr "Tłumaczenia"
 
486
 
487
  #: F:\Program
488
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
489
+ msgid "Support"
490
+ msgstr "Wsparcie"
 
 
 
491
 
492
  #: F:\Program
493
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
494
+ msgid "Farsi"
495
+ msgstr "Farsi"
 
496
 
497
  #: F:\Program
498
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:259
499
+ msgid "Facebook"
500
+ msgstr "Facebook"
501
 
502
  #: F:\Program
503
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:260
504
+ msgid "Weblog"
505
+ msgstr "Facebook"
506
 
507
  #: F:\Program
508
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:265
509
+ msgid ""
510
+ "Please donate to the plugin. With the help of plug-ins you can quickly "
511
+ "spread."
512
  msgstr ""
513
+ "Prosimy o wsparcie finansowe. Twoja pomoc znacznie przyspieszy rozwój "
514
+ "wtyczek."
515
 
516
  #: F:\Program
517
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:268
518
+ msgid "Donate"
519
+ msgstr "Dotacja"
520
+
521
+ #: F:\Program
522
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:289
523
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
524
+ msgid "Statistical Chart"
525
+ msgstr "Wykres statystyk"
526
+
527
+ #: F:\Program
528
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:305
529
+ msgid "Hits chart in the last 20 days"
530
+ msgstr "Wykres odwiedzin z ostatnich 20 dni"
531
+
532
+ #: F:\Program
533
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:324
534
+ msgid "Number of visits and visitors"
535
+ msgstr "Ilość odwiedzin i odwiedzających"
536
+
537
+ #: F:\Program
538
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:396
539
+ msgid "Referrer search engine chart in the last 20 days"
540
+ msgstr "Wykres odwiedzin pochodzących z wyszukiwarek"
541
 
542
  #: F:\Program
543
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:415
544
+ msgid "Number of referrer"
545
+ msgstr "Ilość odwiedzin"
546
+
547
+ #: F:\Program
548
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
549
+ msgid "Referring sites from"
550
+ msgstr "Witryny odsyłające"
551
+
552
+ #: F:\Program
553
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
554
  msgid "General Settings"
555
+ msgstr "Główne ustawienia"
556
 
557
  #: F:\Program
558
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
559
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
560
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
561
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
 
562
  msgid "Active"
563
+ msgstr "Aktywne"
564
 
565
  #: F:\Program
566
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
567
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
568
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
569
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
570
  msgid "Enable or disable this feature"
571
+ msgstr "Aktywuj lub deaktywuj tę opcję"
572
 
573
  #: F:\Program
574
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
 
575
  msgid "Visits"
576
+ msgstr "Odwiedzin"
577
 
578
  #: F:\Program
579
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
580
  msgid "Visitors"
581
+ msgstr "Odwiedzających"
582
 
583
  #: F:\Program
584
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
585
  msgid "Check for online users every"
586
+ msgstr "Sprawdź użytkowników online co"
587
 
588
  #: F:\Program
589
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:55
 
590
  msgid "Secound"
591
  msgstr "Sekund"
592
 
593
  #: F:\Program
594
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
595
+ #, php-format
596
  msgid "Time for the check accurate online user in the site. Now: %s Second"
597
+ msgstr "Czas sprawdzania liczby użytkowników online. Aktualnie: %s sekund."
 
 
598
 
599
  #: F:\Program
600
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
601
  msgid "Show stats in menu bar"
602
+ msgstr "Wyświetl statystyki w pasku menu"
603
 
604
  #: F:\Program
605
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:67
606
  msgid "No"
607
+ msgstr "Nie"
608
 
609
  #: F:\Program
610
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:68
611
  msgid "Yes"
612
  msgstr "Tak"
613
 
614
  #: F:\Program
615
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:70
616
  msgid "Show stats in admin menu bar"
617
+ msgstr "Wyświetl statystyki w pasku menu administratora"
618
 
619
  #: F:\Program
620
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
621
  msgid "Coefficient per visitor"
622
  msgstr "Współczynnik dla użytkownika"
623
 
624
  #: F:\Program
625
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:81
626
+ #, php-format
627
  msgid "For each visit to account for several hits. Currently %s."
628
+ msgstr "Dla każdej odwiedziny z jednego konta. Aktualnie %s."
629
 
630
  #: F:\Program
631
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
632
+ msgid "Chart Settings"
633
+ msgstr "Ustawienia wykresów"
634
 
635
  #: F:\Program
636
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
637
+ msgid "Chart type"
638
+ msgstr "Typ wykresów"
639
 
640
  #: F:\Program
641
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
642
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
643
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
644
+ msgid "Please select."
645
+ msgstr "Proszę wybrać."
646
 
647
  #: F:\Program
648
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
649
+ msgid "Line"
650
+ msgstr "Liniowy"
 
651
 
652
  #: F:\Program
653
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
654
+ msgid "Spline"
655
+ msgstr "Interpolowany"
656
+
657
+ #: F:\Program
658
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
659
+ msgid "Area"
660
+ msgstr "Powierzchniowy"
661
+
662
+ #: F:\Program
663
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:100
664
+ msgid "Area Spline"
665
+ msgstr "Interpolowany powierzchniowy"
666
+
667
+ #: F:\Program
668
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:101
669
+ msgid "Column"
670
+ msgstr "Słupkowy"
671
 
672
  #: F:\Program
673
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:102
674
+ msgid "Bar"
675
+ msgstr "Kolumnowy"
676
+
677
+ #: F:\Program
678
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
679
+ msgid "Scatter"
680
+ msgstr "Punktowy"
681
+
682
+ #: F:\Program
683
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:105
684
+ msgid "Chart type in view stats."
685
+ msgstr "Typ wykresu w podglądzie statystyk"
686
+
687
+ #: F:\Program
688
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
689
+ msgid "Statistical reporting settings"
690
+ msgstr "Ustawienia raportów statystycznych"
691
+
692
+ #: F:\Program
693
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:128
694
+ msgid "Time send"
695
+ msgstr "Czas wysłania"
696
+
697
+ #: F:\Program
698
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:134
699
  msgid "Hourly"
700
+ msgstr "Co godzinę"
701
 
702
  #: F:\Program
703
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:135
704
  msgid "Twice daily"
705
+ msgstr "2 razy dziennie"
706
 
707
  #: F:\Program
708
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:136
709
  msgid "daily"
710
+ msgstr "Codziennie"
711
 
712
  #: F:\Program
713
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
714
  msgid "Select when receiving statistics report."
715
+ msgstr "Wybierz kiedy otrzymywać raporty statystyczne."
716
 
717
  #: F:\Program
718
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
719
  msgid "Send Statistical reporting to"
720
+ msgstr "Wysyłaj raport statystyk do"
721
 
722
  #: F:\Program
723
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
724
  msgid "Email"
725
+ msgstr "E-mail"
726
 
727
  #: F:\Program
728
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
729
  msgid "SMS"
730
+ msgstr "SMS"
731
 
732
  #: F:\Program
733
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
734
  msgid "Type Select Get Status Report."
735
+ msgstr "Sposób wysyłania raportów"
736
 
737
  #: F:\Program
738
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
739
  #, php-format
740
  msgid ""
741
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
742
  "\"_blank\">Wordpress SMS</a> plugin."
743
  msgstr ""
744
+ "Ważne: By wysyłać wiadomości SMS zainstaluj wtyczkę <a href=\"%s\" target="
745
+ "\"_blank\">Wordpress SMS</a>."
746
 
747
  #: F:\Program
748
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
749
  msgid "Send Content Report"
750
+ msgstr "Wyślij raport z przygotowaną treścią"
751
 
752
  #: F:\Program
753
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:168
754
  msgid "Enter the contents of the reports received."
755
+ msgstr "Przygotuj treść raportu"
756
 
757
  #: F:\Program
758
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:170
759
  msgid "Input data:"
760
+ msgstr "Wprowadź dane:"
761
 
762
  #: F:\Program
763
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
764
  msgid "Name"
765
  msgstr "Nazwa"
766
 
767
  #: F:\Program
768
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
769
  msgid "Items"
770
+ msgstr "Obiekty"
771
 
772
  #: F:\Program
773
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
774
  msgid "Select type of search engine"
775
  msgstr "Wybierz typ wyszukiwarki"
776
 
777
  #: F:\Program
778
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
 
 
 
 
 
779
  msgid "Type date for last update"
780
  msgstr "Wpisz datę ostatniej aktualizacji"
781
 
782
  #: F:\Program
783
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
784
  msgid "English"
785
  msgstr "Angielski"
786
 
787
  #: F:\Program
788
+ #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
789
  msgid "Persian"
790
  msgstr "Perski"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.1.4
8
 
9
  Complete statistics for your blog.
10
 
@@ -126,10 +126,19 @@ Disable / Enable the plugin.
126
  1. Screen shot (screenshot-2.png) in view latest search words.
127
  1. Screen shot (screenshot-3.png) in view recent visitors page.
128
  1. Screen shot (screenshot-4.png) in view top referrer site page.
129
- 1. Screen shot (screenshot-5.png) in settings page.
130
- 1. Screen shot (screenshot-6.png) in widget page.
 
131
 
132
  == Upgrade Notice ==
 
 
 
 
 
 
 
 
133
  = 3.1.4 =
134
  * Added: Chart Type in the settings plugin.
135
  * Added: Search Engine referrer chart in the view stats page.
@@ -321,6 +330,14 @@ Disable / Enable the plugin.
321
  * Start plugin
322
 
323
  == Changelog ==
 
 
 
 
 
 
 
 
324
  = 3.1.4 =
325
  * Added: Chart Type in the settings plugin.
326
  * Added: Search Engine referrer chart in the view stats page.
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.2
8
 
9
  Complete statistics for your blog.
10
 
126
  1. Screen shot (screenshot-2.png) in view latest search words.
127
  1. Screen shot (screenshot-3.png) in view recent visitors page.
128
  1. Screen shot (screenshot-4.png) in view top referrer site page.
129
+ 1. Screen shot (screenshot-5.png) in optimization page.
130
+ 1. Screen shot (screenshot-6.png) in settings page.
131
+ 1. Screen shot (screenshot-7.png) in widget page.
132
 
133
  == Upgrade Notice ==
134
+ = 3.2 =
135
+ * Added: Optimization plugin page.
136
+ * Added: Export data to excel, xml, csv and tsv files.
137
+ * Added: Delete table data.
138
+ * Added: Show memory usage in optimization page.
139
+ * Language: Polish (pl_PL) was updated.
140
+ * Language: updated.
141
+
142
  = 3.1.4 =
143
  * Added: Chart Type in the settings plugin.
144
  * Added: Search Engine referrer chart in the view stats page.
330
  * Start plugin
331
 
332
  == Changelog ==
333
+ = 3.2 =
334
+ * Added: Optimization plugin page.
335
+ * Added: Export data to excel, xml, csv and tsv files.
336
+ * Added: Delete table data.
337
+ * Added: Show memory usage in optimization page.
338
+ * Language: Polish (pl_PL) was updated.
339
+ * Language: updated.
340
+
341
  = 3.1.4 =
342
  * Added: Chart Type in the settings plugin.
343
  * Added: Search Engine referrer chart in the view stats page.
screenshot-5.png CHANGED
Binary file
screenshot-6.png CHANGED
Binary file
screenshot-7.png ADDED
Binary file
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.1.4
7
  Author: Mostafa Soufi
8
  Author URI: http://iran98.org/
9
  License: GPL2
@@ -13,7 +13,9 @@ License: GPL2
13
  date_default_timezone_set( get_option('timezone_string') );
14
  }
15
 
16
- define('WP_STATISTICS_VERSION', '3.1.4');
 
 
17
  update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
18
 
19
  load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
@@ -68,6 +70,7 @@ License: GPL2
68
  add_menu_page(__('Statistics', 'wp_statistics'), __('Statistics', 'wp_statistics'), 'manage_options', __FILE__, 'wp_statistics_log', plugin_dir_url( __FILE__ ).'/images/icon.png');
69
 
70
  add_submenu_page(__FILE__, __('View Stats', 'wp_statistics'), __('View Stats', 'wp_statistics'), 'manage_options', __FILE__, 'wp_statistics_log');
 
71
  add_submenu_page(__FILE__, __('Settings', 'wp_statistics'), __('Settings', 'wp_statistics'), 'manage_options', 'wp-statistics/settings', 'wp_statistics_settings');
72
  }
73
  }
@@ -212,6 +215,22 @@ License: GPL2
212
 
213
  }
214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  function wp_statistics_settings() {
216
 
217
  if (!current_user_can('manage_options')) {
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
5
  Description: Summary statistics of blog.
6
+ Version: 3.2
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.2');
17
+ define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
18
+
19
  update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
20
 
21
  load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
70
  add_menu_page(__('Statistics', 'wp_statistics'), __('Statistics', 'wp_statistics'), 'manage_options', __FILE__, 'wp_statistics_log', plugin_dir_url( __FILE__ ).'/images/icon.png');
71
 
72
  add_submenu_page(__FILE__, __('View Stats', 'wp_statistics'), __('View Stats', 'wp_statistics'), 'manage_options', __FILE__, 'wp_statistics_log');
73
+ add_submenu_page(__FILE__, __('Optimization', 'wp_statistics'), __('Optimization', 'wp_statistics'), 'manage_options', 'wp-statistics/optimization', 'wp_statistics_optimization');
74
  add_submenu_page(__FILE__, __('Settings', 'wp_statistics'), __('Settings', 'wp_statistics'), 'manage_options', 'wp-statistics/settings', 'wp_statistics_settings');
75
  }
76
  }
215
 
216
  }
217
 
218
+ function wp_statistics_optimization() {
219
+
220
+ if (!current_user_can('manage_options')) {
221
+ wp_die(__('You do not have sufficient permissions to access this page.'));
222
+ }
223
+
224
+ global $wpdb, $table_prefix;
225
+
226
+ $result['useronline'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_useronline`");
227
+ $result['visit'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visit`");
228
+ $result['visitor'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
229
+
230
+ include_once dirname( __FILE__ ) . '/includes/optimization/optimization.php';
231
+
232
+ }
233
+
234
  function wp_statistics_settings() {
235
 
236
  if (!current_user_can('manage_options')) {