WP Statistics - Version 5.3

Version Description

  • Robots list updated, please either go to "Statistics->Settings->IP/Robot Exclusions", "Reset to Default" and then save or manually make the changes which can be found in the change log details.
Download this release

Release Info

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

Code changes from version 5.2 to 5.3

includes/classes/statistics.class.php CHANGED
@@ -78,20 +78,38 @@
78
 
79
  public function get_IP() {
80
 
 
 
 
 
 
 
81
  if (getenv('HTTP_CLIENT_IP')) {
82
- $this->ip = getenv('HTTP_CLIENT_IP');
83
  } elseif (getenv('HTTP_X_FORWARDED_FOR')) {
84
- $this->ip = getenv('HTTP_X_FORWARDED_FOR');
85
  } elseif (getenv('HTTP_X_FORWARDED')) {
86
- $this->ip = getenv('HTTP_X_FORWARDED');
87
  } elseif (getenv('HTTP_FORWARDED_FOR')) {
88
- $this->ip = getenv('HTTP_FORWARDED_FOR');
89
  } elseif (getenv('HTTP_FORWARDED')) {
90
- $this->ip = getenv('HTTP_FORWARDED');
91
- } else {
92
- $this->ip = $_SERVER['REMOTE_ADDR'];
 
 
 
 
 
 
 
 
 
 
93
  }
94
 
 
 
95
  return $this->ip;
96
  }
97
 
78
 
79
  public function get_IP() {
80
 
81
+ // By default we use the remote address the server has.
82
+ $temp_ip = $_SERVER['REMOTE_ADDR'];
83
+
84
+ // Check to see if any of the HTTP headers are set to identify the remote user.
85
+ // These often given better results as they can identify the remote user even through firewalls etc,
86
+ // but are sometimes used in SQL injection attacks.
87
  if (getenv('HTTP_CLIENT_IP')) {
88
+ $temp_ip = getenv('HTTP_CLIENT_IP');
89
  } elseif (getenv('HTTP_X_FORWARDED_FOR')) {
90
+ $temp_ip = getenv('HTTP_X_FORWARDED_FOR');
91
  } elseif (getenv('HTTP_X_FORWARDED')) {
92
+ $temp_ip = getenv('HTTP_X_FORWARDED');
93
  } elseif (getenv('HTTP_FORWARDED_FOR')) {
94
+ $temp_ip = getenv('HTTP_FORWARDED_FOR');
95
  } elseif (getenv('HTTP_FORWARDED')) {
96
+ $temp_ip = getenv('HTTP_FORWARDED');
97
+ }
98
+
99
+ // If http headers exist, use them.
100
+ if( $temp_ip != $_SERVER['REMOTE_ADDR'] ) {
101
+ // Check to make sure the http header is actually an IP address and not some kind of SQL injection attack.
102
+ $long = ip2long($this->ip);
103
+
104
+ // ip2long returns either -1 or FALSE if it is not a valid IP address depending on the PHP version, so check for both.
105
+ if($long == -1 || $long === FALSE) {
106
+ // If the headers are invalid, use the server variable which should be good always.
107
+ $temp_ip = $_SERVER['REMOTE_ADDR'];
108
+ }
109
  }
110
 
111
+ $this->ip = $temp_ip;
112
+
113
  return $this->ip;
114
  }
115
 
includes/functions/functions.php CHANGED
@@ -185,8 +185,11 @@
185
  return $result;
186
  }
187
 
188
- function wp_statistics_searchengine_list() {
189
  // This function returns an array or array's which define what search engines we should look for.
 
 
 
190
  // Each sub array is made up of the following items:
191
  // name = The proper name of the search engine
192
  // tag = a short one word, all lower case, representation of the search engine
@@ -195,7 +198,7 @@
195
  // querykey = the URL key that contains the search string for the search engine
196
  // image = the name of the image file to associate with this search engine (just the filename, no path info)
197
  //
198
- return array (
199
  'baidu' => array( 'name' => 'Baidu', 'tag' => 'baidu', 'sqlpattern' => '%baidu.com%', 'regexpattern' => 'baidu\.com', 'querykey' => 'wd', 'image' => 'baidu.png' ),
200
  'bing' => array( 'name' => 'Bing', 'tag' => 'bing', 'sqlpattern' => '%bing.com%', 'regexpattern' =>'bing\.com', 'querykey' => 'q', 'image' => 'bing.png' ),
201
  'duckduckgo' => array( 'name' => 'DuckDuckGo', 'tag' => 'duckduckgo', 'sqlpattern' => array('%duckduckgo.com%', '%ddg.gg%'), 'regexpattern' => array('duckduckgo\.com','ddg\.gg'), 'querykey' => 'q', 'image' => 'duckduckgo.png' ),
@@ -203,6 +206,17 @@
203
  'yahoo' => array( 'name' => 'Yahoo!', 'tag' => 'yahoo', 'sqlpattern' => '%yahoo.com%', 'regexpattern' => 'yahoo\.com', 'querykey' => 'p', 'image' => 'yahoo.png' ),
204
  'yandex' => array( 'name' => 'Yandex', 'tag' => 'yandex', 'sqlpattern' => '%yandex.ru%', 'regexpattern' => 'yandex\.ru', 'querykey' => 'text', 'image' => 'yandex.png' )
205
  );
 
 
 
 
 
 
 
 
 
 
 
206
  }
207
 
208
  function wp_statistics_searchword_query ($search_engine = 'all') {
@@ -555,4 +569,26 @@
555
  } else {
556
  return "<img src='".plugins_url('wp-statistics/assets/images/')."{$icon_name}.png'/>";
557
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
558
  }
185
  return $result;
186
  }
187
 
188
+ function wp_statistics_searchengine_list( $all = false ) {
189
  // This function returns an array or array's which define what search engines we should look for.
190
+ //
191
+ // By default will only return ones that have not been disabled by the user, this can be overridden by the $all parameter.
192
+ //
193
  // Each sub array is made up of the following items:
194
  // name = The proper name of the search engine
195
  // tag = a short one word, all lower case, representation of the search engine
198
  // querykey = the URL key that contains the search string for the search engine
199
  // image = the name of the image file to associate with this search engine (just the filename, no path info)
200
  //
201
+ $default = $engines = array (
202
  'baidu' => array( 'name' => 'Baidu', 'tag' => 'baidu', 'sqlpattern' => '%baidu.com%', 'regexpattern' => 'baidu\.com', 'querykey' => 'wd', 'image' => 'baidu.png' ),
203
  'bing' => array( 'name' => 'Bing', 'tag' => 'bing', 'sqlpattern' => '%bing.com%', 'regexpattern' =>'bing\.com', 'querykey' => 'q', 'image' => 'bing.png' ),
204
  'duckduckgo' => array( 'name' => 'DuckDuckGo', 'tag' => 'duckduckgo', 'sqlpattern' => array('%duckduckgo.com%', '%ddg.gg%'), 'regexpattern' => array('duckduckgo\.com','ddg\.gg'), 'querykey' => 'q', 'image' => 'duckduckgo.png' ),
206
  'yahoo' => array( 'name' => 'Yahoo!', 'tag' => 'yahoo', 'sqlpattern' => '%yahoo.com%', 'regexpattern' => 'yahoo\.com', 'querykey' => 'p', 'image' => 'yahoo.png' ),
207
  'yandex' => array( 'name' => 'Yandex', 'tag' => 'yandex', 'sqlpattern' => '%yandex.ru%', 'regexpattern' => 'yandex\.ru', 'querykey' => 'text', 'image' => 'yandex.png' )
208
  );
209
+
210
+ if( $all == false ) {
211
+ foreach( $engines as $key => $engine ) {
212
+ if( get_option( 'wps_disable_se_' . $engine['tag'] ) ) { unset( $engines[$key] ); }
213
+ }
214
+
215
+ // If we've disabled all the search engines, reset the list back to default.
216
+ if( count( $engines ) == 0 ) { $engines = $default; }
217
+ }
218
+
219
+ return $engines;
220
  }
221
 
222
  function wp_statistics_searchword_query ($search_engine = 'all') {
569
  } else {
570
  return "<img src='".plugins_url('wp-statistics/assets/images/')."{$icon_name}.png'/>";
571
  }
572
+ }
573
+
574
+ function wp_statistics_geoip_supported() {
575
+ // Check to see if we can support the GeoIP code, requirements are:
576
+ $enabled = true;
577
+
578
+ // PHP 5.3
579
+ if( !version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) { $enabled = false; }
580
+
581
+ // PHP's cURL extension installed
582
+ if( !function_exists('curl_init') ) { $enabled = false; }
583
+
584
+ // PHP's bcadd extension installed
585
+ if( !function_exists('bcadd') ) { $enabled = false; }
586
+
587
+ // PHP NOT running in safe mode
588
+ if( ini_get('safe_mode') ) {
589
+ // Double check php version, 5.4 and above don't support safe mode but the ini value may still be set after an upgrade.
590
+ if( !version_compare(phpversion(), "5.4", '<') ) { $enabled = false; }
591
+ }
592
+
593
+ return $enabled;
594
  }
includes/optimization/export.php CHANGED
@@ -6,6 +6,7 @@
6
 
7
  $table = $_POST['table-to-export'];
8
  $type = $_POST['export-file-type'];
 
9
 
10
  if($table && $type) {
11
 
@@ -15,7 +16,7 @@
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':
@@ -37,7 +38,12 @@
37
 
38
  $exporter->initialize();
39
 
40
- foreach(objectToArray($result) as $row) {
 
 
 
 
 
41
  $exporter->addRow($row);
42
  }
43
 
6
 
7
  $table = $_POST['table-to-export'];
8
  $type = $_POST['export-file-type'];
9
+ $headers = $_POST['export-headers'];
10
 
11
  if($table && $type) {
12
 
16
 
17
  $file_name = WPS_EXPORT_FILE_NAME . '-' . $s->Current_Date('Y-m-d-H:i');
18
 
19
+ $result = $wpdb->get_results("SELECT * FROM {$table_prefix}statistics_{$table}", ARRAY_A);
20
 
21
  switch($type) {
22
  case 'excel':
38
 
39
  $exporter->initialize();
40
 
41
+ if( $headers ) {
42
+ foreach( $result[0] as $key => $col ) { $columns[] = $key; }
43
+ $exporter->addRow($columns);
44
+ }
45
+
46
+ foreach($result as $row) {
47
  $exporter->addRow($row);
48
  }
49
 
includes/optimization/templates/wps-optimization-export.php CHANGED
@@ -45,9 +45,21 @@
45
  <option value="tsv">TSV</option>
46
  </select>
47
  <p class="description"><?php _e('Select the output file type.', 'wp_statistics'); ?></p>
 
 
 
 
 
 
 
 
 
 
 
48
  <?php submit_button(__('Start Now!', 'wp_statistics'), 'primary', 'export-file-submit'); ?>
49
  </td>
50
  </tr>
 
51
  </tbody>
52
  </table>
53
  </form>
45
  <option value="tsv">TSV</option>
46
  </select>
47
  <p class="description"><?php _e('Select the output file type.', 'wp_statistics'); ?></p>
48
+ </td>
49
+ </tr>
50
+
51
+ <tr valign="top">
52
+ <th scope="row">
53
+ <label for="export-headers"><?php _e('Include Header Row', 'wp_statistics'); ?>:</label>
54
+ </th>
55
+
56
+ <td>
57
+ <input id="export-headers" type="checkbox" value="1" name="export-headers">
58
+ <p class="description"><?php _e('Include a header row as the first line of the exported file.', 'wp_statistics'); ?></p>
59
  <?php submit_button(__('Start Now!', 'wp_statistics'), 'primary', 'export-file-submit'); ?>
60
  </td>
61
  </tr>
62
+
63
  </tbody>
64
  </table>
65
  </form>
includes/optimization/templates/wps-optimization.php CHANGED
@@ -84,6 +84,17 @@
84
  </td>
85
  </tr>
86
 
 
 
 
 
 
 
 
 
 
 
 
87
  <tr valign="top">
88
  <th scope="row">
89
  <?php _e('jQuery Version', 'wp_statistics'); ?>:
84
  </td>
85
  </tr>
86
 
87
+ <tr valign="top">
88
+ <th scope="row">
89
+ <?php _e('PHP Safe Mode', 'wp_statistics'); ?>:
90
+ </th>
91
+
92
+ <td>
93
+ <strong><?php if( ini_get('safe_mode') ) { echo 'Yes'; } else { echo 'No'; } ?></strong>
94
+ <p class="description"><?php _e('Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode.', 'wp_statistics'); ?></p>
95
+ </td>
96
+ </tr>
97
+
98
  <tr valign="top">
99
  <th scope="row">
100
  <?php _e('jQuery Version', 'wp_statistics'); ?>:
includes/settings/wps-access-level.php CHANGED
@@ -148,7 +148,7 @@
148
  <th scope="row"><?php _e('Excluded IP Address List', 'wp_statistics'); ?>:</th>
149
  <td>
150
  <textarea id="wps_exclude_ip" name="wps_exclude_ip" rows="5" cols="60" class="code" dir="ltr"><?php echo get_option('wps_exclude_ip');?></textarea>
151
- <p class="description"><?php echo __('A list of IP addresses and (optional) subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, do not add any subnet value.', 'wp_statistics'); ?></p>
152
  <a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n10.0.0.0/8' ); }" class="button"><?php _e('Add 10.0.0.0', 'wp_statistics');?></a>
153
  <a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n172.16.0.0/12' ); }" class="button"><?php _e('Add 172.16.0.0', 'wp_statistics');?></a>
154
  <a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n192.168.0.0/16' ); }" class="button"><?php _e('Add 192.168.0.0', 'wp_statistics');?></a>
148
  <th scope="row"><?php _e('Excluded IP Address List', 'wp_statistics'); ?>:</th>
149
  <td>
150
  <textarea id="wps_exclude_ip" name="wps_exclude_ip" rows="5" cols="60" class="code" dir="ltr"><?php echo get_option('wps_exclude_ip');?></textarea>
151
+ <p class="description"><?php echo __('A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255.255.', 'wp_statistics'); ?></p>
152
  <a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n10.0.0.0/8' ); }" class="button"><?php _e('Add 10.0.0.0', 'wp_statistics');?></a>
153
  <a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n172.16.0.0/12' ); }" class="button"><?php _e('Add 172.16.0.0', 'wp_statistics');?></a>
154
  <a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n192.168.0.0/16' ); }" class="button"><?php _e('Add 192.168.0.0', 'wp_statistics');?></a>
includes/settings/wps-geoip.php CHANGED
@@ -37,7 +37,7 @@
37
  </th>
38
  </tr>
39
 
40
- <?php if( version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') && function_exists('curl_init') && function_exists('bcadd') ) {?>
41
  <tr valign="top">
42
  <th scope="row">
43
  <label for="geoip-enable"><?php _e('GeoIP collection', 'wp_statistics'); ?>:</label>
@@ -113,18 +113,28 @@
113
  <tr valign="top">
114
  <th scope="row" colspan="2">
115
  <?php
 
 
116
  if( !version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {
117
- printf( __('GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being ', 'wp_statistics'), '<code>' . WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION . '</code>' ); echo '<code>' . phpversion() . '</code>.<br>';
118
  }
119
 
120
  if( !function_exists('curl_init') ) {
 
 
121
  echo '<br>';
122
- _e('GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!','wp_statistics');
123
  }
124
 
125
  if( !function_exists('bcadd') ) {
 
 
 
 
 
 
 
 
126
  echo '<br>';
127
- _e('GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!','wp_statistics');
128
  }
129
  ?>
130
  </th>
37
  </th>
38
  </tr>
39
 
40
+ <?php if( wp_statistics_geoip_supported() ) {?>
41
  <tr valign="top">
42
  <th scope="row">
43
  <label for="geoip-enable"><?php _e('GeoIP collection', 'wp_statistics'); ?>:</label>
113
  <tr valign="top">
114
  <th scope="row" colspan="2">
115
  <?php
116
+ echo __('GeoIP collection is disabled due to the following reasons:', 'wp_statistics') . '<br><br>';
117
+
118
  if( !version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {
119
+ printf( '&nbsp;&nbsp;&nbsp;&nbsp;* ' . __('GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being ', 'wp_statistics'), '<code>' . WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION . '</code>' ); echo '<code>' . phpversion() . '</code>.<br>';
120
  }
121
 
122
  if( !function_exists('curl_init') ) {
123
+ echo '<br>&nbsp;&nbsp;&nbsp;&nbsp;* ';
124
+ _e('GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!','wp_statistics');
125
  echo '<br>';
 
126
  }
127
 
128
  if( !function_exists('bcadd') ) {
129
+ echo '<br>&nbsp;&nbsp;&nbsp;&nbsp;* ';
130
+ _e('GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!','wp_statistics');
131
+ echo '<br>';
132
+ }
133
+
134
+ if( ini_get('safe_mode') ) {
135
+ echo '<br>&nbsp;&nbsp;&nbsp;&nbsp;* ';
136
+ _e('PHP safe mode detected! GeoIP collection is not supported with PHP\'s safe mode enabled!','wp_statistics');
137
  echo '<br>';
 
138
  }
139
  ?>
140
  </th>
includes/settings/wps-settings.php CHANGED
@@ -117,6 +117,44 @@
117
  </td>
118
  </tr>
119
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  <tr valign="top">
121
  <th scope="row" colspan="2"><h3><?php _e('Charts', 'wp_statistics'); ?></h3></th>
122
  </tr>
@@ -270,7 +308,7 @@
270
 
271
  <p class="submit">
272
  <input type="hidden" name="action" value="update" />
273
- <input type="hidden" name="page_options" value="wps_useronline,wps_visits,wps_visitors,wps_check_online,wps_menu_bar,wps_coefficient,wps_chart_type,wps_stats_report,wps_time_report,wps_send_report,wps_content_report,wps_chart_totals,wps_google_coordinates,wps_store_ua,wps_disable_map,wps_map_location" />
274
  <input type="submit" class="button-primary" name="Submit" value="<?php _e('Update', 'wp-sms'); ?>" />
275
  </p>
276
  </form>
117
  </td>
118
  </tr>
119
 
120
+ <tr valign="top">
121
+ <th scope="row">
122
+ <label for="hide_notices"><?php _e('Hide admin notices about non active features', 'wp_statistics'); ?>:</label>
123
+ </th>
124
+
125
+ <td>
126
+ <input id="hide_notices" type="checkbox" value="1" name="wps_hide_notices" <?php echo get_option('wps_hide_notices')==true? "checked='checked'":'';?>>
127
+ <label for="store_ua"><?php _e('Active', 'wp_statistics'); ?></label>
128
+ <p class="description"><?php _e('By default WP Statistics displays an alert if any of the core features are disbaled on every admin page, this option will disable these notices.', 'wp_statistics'); ?></p>
129
+ </td>
130
+ </tr>
131
+
132
+ <tr valign="top">
133
+ <th scope="row" colspan="2"><h3><?php _e('Search Enginges', 'wp_statistics'); ?></h3></th>
134
+ </tr>
135
+
136
+ <tr valign="top">
137
+ <th scope="row" colspan="2">
138
+ <p class="description"><?php _e('Disabling all search engines is not allowed, doing so will result in all search engines being active.', 'wp_statistics');?></p>
139
+ </th>
140
+ </tr>
141
+ <?php
142
+ $selist = wp_statistics_searchengine_list( true );
143
+
144
+ foreach( $selist as $se ) {
145
+ $option_name = 'wps_disable_se_' . $se['tag'];
146
+ $se_option_list .= $option_name . ',';
147
+ ?>
148
+
149
+ <tr valign="top">
150
+ <th scope="row"><label for="<?php echo $option_name;?>"><?php _e($se['name'], 'wp_statistics'); ?>:</label></th>
151
+ <td>
152
+ <input id="<?php echo $option_name;?>" type="checkbox" value="1" name="<?php echo $option_name;?>" <?php echo get_option($option_name)==true? "checked='checked'":'';?>><label for="<?php echo $option_name;?>"><?php _e('disable', 'wp_statistics'); ?></label>
153
+ <p class="description"><?php echo sprintf(__('Disable %s from data collection and reporting.', 'wp_statistics'), $se['name']); ?></p>
154
+ </td>
155
+ </tr>
156
+ <?php } ?>
157
+
158
  <tr valign="top">
159
  <th scope="row" colspan="2"><h3><?php _e('Charts', 'wp_statistics'); ?></h3></th>
160
  </tr>
308
 
309
  <p class="submit">
310
  <input type="hidden" name="action" value="update" />
311
+ <input type="hidden" name="page_options" value="<?php echo $se_option_list;?>wps_useronline,wps_visits,wps_visitors,wps_check_online,wps_menu_bar,wps_coefficient,wps_chart_type,wps_stats_report,wps_time_report,wps_send_report,wps_content_report,wps_chart_totals,wps_google_coordinates,wps_store_ua,wps_disable_map,wps_map_location,wps_hide_notices" />
312
  <input type="submit" class="button-primary" name="Submit" value="<?php _e('Update', 'wp-sms'); ?>" />
313
  </p>
314
  </form>
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: 2014-03-10 10:55+0330\n"
6
- "PO-Revision-Date: 2014-03-10 10:55+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
@@ -18,14 +18,14 @@ msgstr ""
18
  "content\\plugins\\wp-statistics\n"
19
 
20
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
21
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
22
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
23
  msgid "Statistical reporting"
24
  msgstr ""
25
 
26
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
27
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
28
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:122
29
  msgid "Statistics"
30
  msgstr ""
31
 
@@ -34,34 +34,34 @@ msgid "Show site stats in sidebar"
34
  msgstr ""
35
 
36
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
37
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:175
38
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
39
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
40
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
41
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
42
  msgid "User Online"
43
  msgstr ""
44
 
45
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
46
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
47
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
48
  msgid "Today Visit"
49
  msgstr ""
50
 
51
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
52
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
53
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
54
  msgid "Today Visitor"
55
  msgstr ""
56
 
57
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
58
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:262
59
  msgid "Yesterday Visit"
60
  msgstr ""
61
 
62
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
63
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
64
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
65
  msgid "Yesterday Visitor"
66
  msgstr ""
67
 
@@ -82,19 +82,18 @@ msgstr ""
82
 
83
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
84
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
85
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:264
86
  msgid "Total Visit"
87
  msgstr ""
88
 
89
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
90
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
91
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
92
  msgid "Total Visitor"
93
  msgstr ""
94
 
95
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
96
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
97
- msgid "Search Engine reffered"
98
  msgstr ""
99
 
100
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
@@ -150,126 +149,126 @@ msgstr ""
150
  msgid "Complete statistics for your blog."
151
  msgstr ""
152
 
153
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
154
  #, php-format
155
  msgid ""
156
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
157
  "\">setting page</a> and enable statistics"
158
  msgstr ""
159
 
160
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
161
  #, php-format
162
  msgid ""
163
  "GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
164
  "GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
165
  msgstr ""
166
 
167
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
168
  msgid "Overview"
169
  msgstr ""
170
 
171
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
172
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
173
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
174
  msgid "Browsers"
175
  msgstr ""
176
 
177
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
178
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
179
  msgid "Countries"
180
  msgstr ""
181
 
182
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:129
183
  msgid "Hits"
184
  msgstr ""
185
 
186
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
187
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
188
  msgid "Exclusions"
189
  msgstr ""
190
 
191
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
192
  msgid "Referers"
193
  msgstr ""
194
 
195
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
196
  msgid "Searches"
197
  msgstr ""
198
 
199
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
200
  msgid "Search Words"
201
  msgstr ""
202
 
203
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
204
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
205
  msgid "Visitors"
206
  msgstr ""
207
 
208
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
209
  msgid "Optimization"
210
  msgstr ""
211
 
212
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
213
  msgid "Settings"
214
  msgstr ""
215
 
216
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:180
217
  msgid "Today visitor"
218
  msgstr ""
219
 
220
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:185
221
  msgid "Today visit"
222
  msgstr ""
223
 
224
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:190
225
  msgid "Yesterday visitor"
226
  msgstr ""
227
 
228
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
229
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
230
  msgid "Yesterday visit"
231
  msgstr ""
232
 
233
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:200
234
  msgid "View Stats"
235
  msgstr ""
236
 
237
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
238
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
239
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:416
240
  msgid "You do not have sufficient permissions to access this page."
241
  msgstr ""
242
 
243
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:274
244
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
245
  msgstr ""
246
 
247
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
248
  #, php-format
249
  msgid "Error downloading GeoIP database from: %s"
250
  msgstr ""
251
 
252
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
253
  #, php-format
254
  msgid "Error could not open downloaded GeoIP database for reading: %s"
255
  msgstr ""
256
 
257
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:384
258
  #, php-format
259
  msgid "Error could not open destination GeoIP database for writing %s"
260
  msgstr ""
261
 
262
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
263
  msgid "GeoIP Database updated successfully!"
264
  msgstr ""
265
 
266
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:19
267
  msgid ""
268
  "Unable to load the GeoIP database, make sure you have downloaded it in the "
269
  "settings page."
270
  msgstr ""
271
 
272
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:36
273
  #, php-format
274
  msgid "Updated %s GeoIP records in the visitors database."
275
  msgstr ""
@@ -457,7 +456,7 @@ msgstr ""
457
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
458
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
459
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
460
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:157
461
  msgid "Map"
462
  msgstr ""
463
 
@@ -695,7 +694,7 @@ msgstr ""
695
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
696
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
697
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
698
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
699
  msgid "Please select the desired items."
700
  msgstr ""
701
 
@@ -769,9 +768,9 @@ msgstr ""
769
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
770
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
771
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
772
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
773
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:220
774
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:236
775
  msgid "Please select."
776
  msgstr ""
777
 
@@ -787,7 +786,15 @@ msgstr ""
787
  msgid "Select the output file type."
788
  msgstr ""
789
 
790
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:48
 
 
 
 
 
 
 
 
791
  msgid "Start Now!"
792
  msgstr ""
793
 
@@ -950,62 +957,70 @@ msgid "The PHP version you are running."
950
  msgstr ""
951
 
952
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
953
- msgid "jQuery Version"
954
  msgstr ""
955
 
956
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
957
- msgid "The jQuery version you are running."
958
  msgstr ""
959
 
960
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
 
 
 
 
 
 
 
 
961
  msgid "cURL Version"
962
  msgstr ""
963
 
964
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
965
  msgid "cURL not installed"
966
  msgstr ""
967
 
968
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
969
  msgid ""
970
  "The PHP cURL Extension version you are running. cURL is required for the "
971
  "GeoIP code, if it is not installed GeoIP will be disabled."
972
  msgstr ""
973
 
974
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:111
975
  msgid "BC Math"
976
  msgstr ""
977
 
978
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
979
  msgid "Installed"
980
  msgstr ""
981
 
982
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
983
  msgid "Not installed"
984
  msgstr ""
985
 
986
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
987
  msgid ""
988
  "If the PHP BC Math Extension is installed. BC Math is required for the "
989
  "GeoIP code, if it is not installed GeoIP will be disabled."
990
  msgstr ""
991
 
992
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:121
993
  msgid "Client Info"
994
  msgstr ""
995
 
996
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
997
  msgid "Client IP"
998
  msgstr ""
999
 
1000
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:131
1001
  msgid "The client IP address."
1002
  msgstr ""
1003
 
1004
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:137
1005
  msgid "User Agent"
1006
  msgstr ""
1007
 
1008
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:142
1009
  msgid "The client user agent string."
1010
  msgstr ""
1011
 
@@ -1017,6 +1032,10 @@ msgstr ""
1017
  msgid "Items"
1018
  msgstr ""
1019
 
 
 
 
 
1020
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
1021
  msgid "Select type of search engine"
1022
  msgstr ""
@@ -1153,10 +1172,10 @@ msgstr ""
1153
 
1154
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
1155
  msgid ""
1156
- "A list of IP addresses and (optional) subnet masks (one per line) to exclude "
1157
- "from statistics collection (both 192.168.0.0/24 and "
1158
- "192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address "
1159
- "only, do not add any subnet value."
1160
  msgstr ""
1161
 
1162
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:152
@@ -1192,9 +1211,9 @@ msgid "Exclude the admin pages for registering as a hit."
1192
  msgstr ""
1193
 
1194
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1195
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:139
1196
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1197
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
1198
  msgid "Update"
1199
  msgstr ""
1200
 
@@ -1214,11 +1233,12 @@ msgstr ""
1214
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
1215
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
1216
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
1217
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:151
1218
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:167
1219
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:179
1220
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:191
1221
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:207
 
1222
  msgid "Active"
1223
  msgstr ""
1224
 
@@ -1269,25 +1289,35 @@ msgstr ""
1269
  msgid "Update any missing GeoIP data after downloading a new database."
1270
  msgstr ""
1271
 
1272
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:117
 
 
 
 
1273
  #, php-format
1274
  msgid ""
1275
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1276
  "the installed PHP version being "
1277
  msgstr ""
1278
 
1279
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:122
1280
  msgid ""
1281
  "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1282
  "your version of PHP!"
1283
  msgstr ""
1284
 
1285
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:127
1286
  msgid ""
1287
  "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1288
  "your version of PHP!"
1289
  msgstr ""
1290
 
 
 
 
 
 
 
1291
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1292
  msgid "Database Maintenance"
1293
  msgstr ""
@@ -1323,7 +1353,7 @@ msgstr ""
1323
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
1324
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
1325
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
1326
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:208
1327
  msgid "Enable or disable this feature"
1328
  msgstr ""
1329
 
@@ -1377,134 +1407,163 @@ msgstr ""
1377
  msgid "For each visit to account for several hits. Currently %s."
1378
  msgstr ""
1379
 
1380
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1381
  msgid "Charts"
1382
  msgstr ""
1383
 
1384
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:126
1385
  msgid "Chart type"
1386
  msgstr ""
1387
 
1388
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:132
1389
  msgid "Line"
1390
  msgstr ""
1391
 
1392
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:133
1393
  msgid "Spline"
1394
  msgstr ""
1395
 
1396
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:134
1397
  msgid "Area"
1398
  msgstr ""
1399
 
1400
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:135
1401
  msgid "Area Spline"
1402
  msgstr ""
1403
 
1404
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:136
1405
  msgid "Column"
1406
  msgstr ""
1407
 
1408
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:137
1409
  msgid "Bar"
1410
  msgstr ""
1411
 
1412
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:138
1413
  msgid "Scatter"
1414
  msgstr ""
1415
 
1416
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:140
1417
  msgid "Chart type in view stats."
1418
  msgstr ""
1419
 
1420
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:146
1421
  msgid "Include totals"
1422
  msgstr ""
1423
 
1424
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
1425
  msgid ""
1426
  "Add a total line to charts with multiple values, like the search engine "
1427
  "referrals"
1428
  msgstr ""
1429
 
1430
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:162
1431
  msgid "Disable map"
1432
  msgstr ""
1433
 
1434
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:168
1435
  msgid "Disable the map display"
1436
  msgstr ""
1437
 
1438
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
1439
  msgid "Alternate map location"
1440
  msgstr ""
1441
 
1442
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:180
1443
  msgid ""
1444
  "Place the map above the recent visitors area instead of at the top of the "
1445
  "page."
1446
  msgstr ""
1447
 
1448
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:186
1449
  msgid "Get country location from Google"
1450
  msgstr ""
1451
 
1452
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:192
1453
  msgid ""
1454
  "This feature may cause a performance degradation when viewing statistics."
1455
  msgstr ""
1456
 
1457
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:215
1458
  msgid "Time send"
1459
  msgstr ""
1460
 
1461
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:221
1462
  msgid "Hourly"
1463
  msgstr ""
1464
 
1465
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
1466
  msgid "Twice daily"
1467
  msgstr ""
1468
 
1469
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:223
1470
  msgid "daily"
1471
  msgstr ""
1472
 
1473
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:225
1474
  msgid "Select when receiving statistics report."
1475
  msgstr ""
1476
 
1477
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:231
1478
  msgid "Send Statistical reporting to"
1479
  msgstr ""
1480
 
1481
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:237
1482
  msgid "Email"
1483
  msgstr ""
1484
 
1485
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:238
1486
  msgid "SMS"
1487
  msgstr ""
1488
 
1489
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
1490
  msgid "Type Select Get Status Report."
1491
  msgstr ""
1492
 
1493
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:243
1494
  #, php-format
1495
  msgid ""
1496
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
1497
  "\"_blank\">Wordpress SMS</a> plugin."
1498
  msgstr ""
1499
 
1500
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:250
1501
  msgid "Send Content Report"
1502
  msgstr ""
1503
 
1504
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:255
1505
  msgid "Enter the contents of the reports received."
1506
  msgstr ""
1507
 
1508
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:257
1509
  msgid "Input data:"
1510
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-28 13:33+0330\n"
6
+ "PO-Revision-Date: 2014-05-28 13:33+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
18
  "content\\plugins\\wp-statistics\n"
19
 
20
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
21
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:235
22
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
23
  msgid "Statistical reporting"
24
  msgstr ""
25
 
26
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
27
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
28
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
29
  msgid "Statistics"
30
  msgstr ""
31
 
34
  msgstr ""
35
 
36
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
37
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:178
38
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
39
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
40
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
41
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:296
42
  msgid "User Online"
43
  msgstr ""
44
 
45
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
46
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
47
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:298
48
  msgid "Today Visit"
49
  msgstr ""
50
 
51
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
52
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
53
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:297
54
  msgid "Today Visitor"
55
  msgstr ""
56
 
57
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
58
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:300
59
  msgid "Yesterday Visit"
60
  msgstr ""
61
 
62
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
63
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
64
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:299
65
  msgid "Yesterday Visitor"
66
  msgstr ""
67
 
82
 
83
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
84
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
85
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:302
86
  msgid "Total Visit"
87
  msgstr ""
88
 
89
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
90
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
91
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:301
92
  msgid "Total Visitor"
93
  msgstr ""
94
 
95
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
96
+ msgid "Search Engine referred"
 
97
  msgstr ""
98
 
99
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
149
  msgid "Complete statistics for your blog."
150
  msgstr ""
151
 
152
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:66
153
  #, php-format
154
  msgid ""
155
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
156
  "\">setting page</a> and enable statistics"
157
  msgstr ""
158
 
159
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
160
  #, php-format
161
  msgid ""
162
  "GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
163
  "GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
164
  msgstr ""
165
 
166
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
167
  msgid "Overview"
168
  msgstr ""
169
 
170
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:128
171
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
172
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
173
  msgid "Browsers"
174
  msgstr ""
175
 
176
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
177
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
178
  msgid "Countries"
179
  msgstr ""
180
 
181
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
182
  msgid "Hits"
183
  msgstr ""
184
 
185
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
186
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
187
  msgid "Exclusions"
188
  msgstr ""
189
 
190
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
191
  msgid "Referers"
192
  msgstr ""
193
 
194
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:135
195
  msgid "Searches"
196
  msgstr ""
197
 
198
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
199
  msgid "Search Words"
200
  msgstr ""
201
 
202
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
203
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
204
  msgid "Visitors"
205
  msgstr ""
206
 
207
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:139
208
  msgid "Optimization"
209
  msgstr ""
210
 
211
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:140
212
  msgid "Settings"
213
  msgstr ""
214
 
215
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:183
216
  msgid "Today visitor"
217
  msgstr ""
218
 
219
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:188
220
  msgid "Today visit"
221
  msgstr ""
222
 
223
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:193
224
  msgid "Yesterday visitor"
225
  msgstr ""
226
 
227
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:198
228
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
229
  msgid "Yesterday visit"
230
  msgstr ""
231
 
232
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
233
  msgid "View Stats"
234
  msgstr ""
235
 
236
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:265
237
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:331
238
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:421
239
  msgid "You do not have sufficient permissions to access this page."
240
  msgstr ""
241
 
242
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:277
243
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
244
  msgstr ""
245
 
246
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
247
  #, php-format
248
  msgid "Error downloading GeoIP database from: %s"
249
  msgstr ""
250
 
251
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:383
252
  #, php-format
253
  msgid "Error could not open downloaded GeoIP database for reading: %s"
254
  msgstr ""
255
 
256
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:389
257
  #, php-format
258
  msgid "Error could not open destination GeoIP database for writing %s"
259
  msgstr ""
260
 
261
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:402
262
  msgid "GeoIP Database updated successfully!"
263
  msgstr ""
264
 
265
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:16
266
  msgid ""
267
  "Unable to load the GeoIP database, make sure you have downloaded it in the "
268
  "settings page."
269
  msgstr ""
270
 
271
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:33
272
  #, php-format
273
  msgid "Updated %s GeoIP records in the visitors database."
274
  msgstr ""
456
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
457
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
458
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
459
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:195
460
  msgid "Map"
461
  msgstr ""
462
 
694
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
695
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
696
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
697
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:53
698
  msgid "Please select the desired items."
699
  msgstr ""
700
 
768
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
769
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
770
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
771
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:169
772
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
773
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
774
  msgid "Please select."
775
  msgstr ""
776
 
786
  msgid "Select the output file type."
787
  msgstr ""
788
 
789
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:53
790
+ msgid "Include Header Row"
791
+ msgstr ""
792
+
793
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:58
794
+ msgid "Include a header row as the first line of the exported file."
795
+ msgstr ""
796
+
797
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:59
798
  msgid "Start Now!"
799
  msgstr ""
800
 
957
  msgstr ""
958
 
959
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
960
+ msgid "PHP Safe Mode"
961
  msgstr ""
962
 
963
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
964
+ msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
965
  msgstr ""
966
 
967
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
968
+ msgid "jQuery Version"
969
+ msgstr ""
970
+
971
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
972
+ msgid "The jQuery version you are running."
973
+ msgstr ""
974
+
975
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:111
976
  msgid "cURL Version"
977
  msgstr ""
978
 
979
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
980
  msgid "cURL not installed"
981
  msgstr ""
982
 
983
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
984
  msgid ""
985
  "The PHP cURL Extension version you are running. cURL is required for the "
986
  "GeoIP code, if it is not installed GeoIP will be disabled."
987
  msgstr ""
988
 
989
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:122
990
  msgid "BC Math"
991
  msgstr ""
992
 
993
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
994
  msgid "Installed"
995
  msgstr ""
996
 
997
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
998
  msgid "Not installed"
999
  msgstr ""
1000
 
1001
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:127
1002
  msgid ""
1003
  "If the PHP BC Math Extension is installed. BC Math is required for the "
1004
  "GeoIP code, if it is not installed GeoIP will be disabled."
1005
  msgstr ""
1006
 
1007
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:132
1008
  msgid "Client Info"
1009
  msgstr ""
1010
 
1011
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:137
1012
  msgid "Client IP"
1013
  msgstr ""
1014
 
1015
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:142
1016
  msgid "The client IP address."
1017
  msgstr ""
1018
 
1019
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:148
1020
  msgid "User Agent"
1021
  msgstr ""
1022
 
1023
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:153
1024
  msgid "The client user agent string."
1025
  msgstr ""
1026
 
1032
  msgid "Items"
1033
  msgstr ""
1034
 
1035
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
1036
+ msgid "Search Engine reffered"
1037
+ msgstr ""
1038
+
1039
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
1040
  msgid "Select type of search engine"
1041
  msgstr ""
1172
 
1173
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
1174
  msgid ""
1175
+ "A list of IP addresses and subnet masks (one per line) to exclude from "
1176
+ "statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
1177
+ "formats are accepted). To specify an IP address only, use a subnet value of "
1178
+ "32 or 255.255.255.255.255."
1179
  msgstr ""
1180
 
1181
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:152
1211
  msgstr ""
1212
 
1213
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1214
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:149
1215
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1216
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:312
1217
  msgid "Update"
1218
  msgstr ""
1219
 
1233
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
1234
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
1235
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
1236
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:127
1237
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:189
1238
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:205
1239
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:217
1240
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:229
1241
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:245
1242
  msgid "Active"
1243
  msgstr ""
1244
 
1289
  msgid "Update any missing GeoIP data after downloading a new database."
1290
  msgstr ""
1291
 
1292
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:116
1293
+ msgid "GeoIP collection is disabled due to the following reasons:"
1294
+ msgstr ""
1295
+
1296
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:119
1297
  #, php-format
1298
  msgid ""
1299
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1300
  "the installed PHP version being "
1301
  msgstr ""
1302
 
1303
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:124
1304
  msgid ""
1305
  "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1306
  "your version of PHP!"
1307
  msgstr ""
1308
 
1309
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:130
1310
  msgid ""
1311
  "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1312
  "your version of PHP!"
1313
  msgstr ""
1314
 
1315
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:136
1316
+ msgid ""
1317
+ "PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
1318
+ "mode enabled!"
1319
+ msgstr ""
1320
+
1321
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1322
  msgid "Database Maintenance"
1323
  msgstr ""
1353
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
1354
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
1355
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
1356
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:246
1357
  msgid "Enable or disable this feature"
1358
  msgstr ""
1359
 
1407
  msgid "For each visit to account for several hits. Currently %s."
1408
  msgstr ""
1409
 
1410
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:122
1411
+ msgid "Hide admin notices about non active features"
1412
+ msgstr ""
1413
+
1414
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:128
1415
+ msgid ""
1416
+ "By default WP Statistics displays an alert if any of the core features are "
1417
+ "disbaled on every admin page, this option will disable these notices."
1418
+ msgstr ""
1419
+
1420
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:133
1421
+ msgid "Search Enginges"
1422
+ msgstr ""
1423
+
1424
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:138
1425
+ msgid ""
1426
+ "Disabling all search engines is not allowed, doing so will result in all "
1427
+ "search engines being active."
1428
+ msgstr ""
1429
+
1430
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
1431
+ msgid "disable"
1432
+ msgstr ""
1433
+
1434
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:153
1435
+ #, php-format
1436
+ msgid "Disable %s from data collection and reporting."
1437
+ msgstr ""
1438
+
1439
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:159
1440
  msgid "Charts"
1441
  msgstr ""
1442
 
1443
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:164
1444
  msgid "Chart type"
1445
  msgstr ""
1446
 
1447
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:170
1448
  msgid "Line"
1449
  msgstr ""
1450
 
1451
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:171
1452
  msgid "Spline"
1453
  msgstr ""
1454
 
1455
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:172
1456
  msgid "Area"
1457
  msgstr ""
1458
 
1459
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:173
1460
  msgid "Area Spline"
1461
  msgstr ""
1462
 
1463
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
1464
  msgid "Column"
1465
  msgstr ""
1466
 
1467
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:175
1468
  msgid "Bar"
1469
  msgstr ""
1470
 
1471
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:176
1472
  msgid "Scatter"
1473
  msgstr ""
1474
 
1475
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:178
1476
  msgid "Chart type in view stats."
1477
  msgstr ""
1478
 
1479
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:184
1480
  msgid "Include totals"
1481
  msgstr ""
1482
 
1483
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:190
1484
  msgid ""
1485
  "Add a total line to charts with multiple values, like the search engine "
1486
  "referrals"
1487
  msgstr ""
1488
 
1489
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:200
1490
  msgid "Disable map"
1491
  msgstr ""
1492
 
1493
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:206
1494
  msgid "Disable the map display"
1495
  msgstr ""
1496
 
1497
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:212
1498
  msgid "Alternate map location"
1499
  msgstr ""
1500
 
1501
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:218
1502
  msgid ""
1503
  "Place the map above the recent visitors area instead of at the top of the "
1504
  "page."
1505
  msgstr ""
1506
 
1507
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:224
1508
  msgid "Get country location from Google"
1509
  msgstr ""
1510
 
1511
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:230
1512
  msgid ""
1513
  "This feature may cause a performance degradation when viewing statistics."
1514
  msgstr ""
1515
 
1516
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:253
1517
  msgid "Time send"
1518
  msgstr ""
1519
 
1520
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
1521
  msgid "Hourly"
1522
  msgstr ""
1523
 
1524
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
1525
  msgid "Twice daily"
1526
  msgstr ""
1527
 
1528
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
1529
  msgid "daily"
1530
  msgstr ""
1531
 
1532
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
1533
  msgid "Select when receiving statistics report."
1534
  msgstr ""
1535
 
1536
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:269
1537
  msgid "Send Statistical reporting to"
1538
  msgstr ""
1539
 
1540
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:275
1541
  msgid "Email"
1542
  msgstr ""
1543
 
1544
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:276
1545
  msgid "SMS"
1546
  msgstr ""
1547
 
1548
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:278
1549
  msgid "Type Select Get Status Report."
1550
  msgstr ""
1551
 
1552
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:281
1553
  #, php-format
1554
  msgid ""
1555
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
1556
  "\"_blank\">Wordpress SMS</a> plugin."
1557
  msgstr ""
1558
 
1559
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:288
1560
  msgid "Send Content Report"
1561
  msgstr ""
1562
 
1563
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:293
1564
  msgid "Enter the contents of the reports received."
1565
  msgstr ""
1566
 
1567
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:295
1568
  msgid "Input data:"
1569
  msgstr ""
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: 2014-03-02 10:12+0330\n"
6
- "PO-Revision-Date: 2014-03-02 23:24+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,19 +14,19 @@ 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.6.4\n"
18
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
19
  "content\\plugins\\wp-statistics\n"
20
 
21
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
22
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
23
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
24
  msgid "Statistical reporting"
25
  msgstr "تقارير الإحصائيات"
26
 
27
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:122
30
  msgid "Statistics"
31
  msgstr "الاحصائيات"
32
 
@@ -35,34 +35,34 @@ msgid "Show site stats in sidebar"
35
  msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
36
 
37
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
38
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:175
39
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
40
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
41
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
42
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
43
  msgid "User Online"
44
  msgstr "المتواجدين الآن"
45
 
46
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
47
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
48
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
49
  msgid "Today Visit"
50
  msgstr "زيارات اليوم"
51
 
52
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
53
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
54
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
55
  msgid "Today Visitor"
56
  msgstr "زوار اليوم"
57
 
58
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
59
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:262
60
  msgid "Yesterday Visit"
61
  msgstr "زيارات الأمس"
62
 
63
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
64
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
65
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
66
  msgid "Yesterday Visitor"
67
  msgstr "زوار الأمس"
68
 
@@ -83,20 +83,19 @@ msgstr "زيارات السنة"
83
 
84
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
85
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
86
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:264
87
  msgid "Total Visit"
88
  msgstr "مجموع الزيارات"
89
 
90
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
91
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
92
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
93
  msgid "Total Visitor"
94
  msgstr "مجموع الزوار"
95
 
96
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
97
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
98
- msgid "Search Engine reffered"
99
- msgstr "محركات البحث"
100
 
101
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
102
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:59
@@ -151,7 +150,7 @@ msgstr "احصائيات ووردبريس"
151
  msgid "Complete statistics for your blog."
152
  msgstr "الإحصائيات الكاملة للمدونة الخاصة بك."
153
 
154
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
155
  #, php-format
156
  msgid ""
157
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
@@ -160,7 +159,7 @@ msgstr ""
160
  "إضافة Wordpress Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s\">صفحة "
161
  "الإعدادات</a> وقم بتفعيلها"
162
 
163
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
164
  #, php-format
165
  msgid ""
166
  "GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
@@ -169,108 +168,116 @@ msgstr ""
169
  "مجموعة GeoIP غير نشطة! يرجى الذهاب الى <a href=\"%s\">صفحة الإعدادات > "
170
  "GeoIP</a> وقم بتمكين هذه الميزة (GeoIP يمكن الكشف عن بلد آخر)"
171
 
172
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
173
  msgid "Overview"
174
  msgstr "نظرة عامة"
175
 
176
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
177
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
178
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
179
  msgid "Browsers"
180
  msgstr "المتصفحات"
181
 
182
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
183
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
184
  msgid "Countries"
185
  msgstr "الدول"
186
 
187
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:129
188
  msgid "Hits"
189
  msgstr "نقرات"
190
 
191
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
192
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
193
  msgid "Exclusions"
194
  msgstr "الاستثناءات"
195
 
196
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
197
  msgid "Referers"
198
  msgstr "المراجع"
199
 
200
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
201
  msgid "Searches"
202
  msgstr "عمليات البحث"
203
 
204
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
205
  msgid "Search Words"
206
  msgstr "كلمات البحث"
207
 
208
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
209
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
210
  msgid "Visitors"
211
  msgstr "الزوار"
212
 
213
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
214
  msgid "Optimization"
215
  msgstr "التحسين"
216
 
217
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
218
  msgid "Settings"
219
  msgstr "الإعدادات"
220
 
221
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:180
222
  msgid "Today visitor"
223
  msgstr "زوار اليوم"
224
 
225
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:185
226
  msgid "Today visit"
227
  msgstr "زيارات اليوم"
228
 
229
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:190
230
  msgid "Yesterday visitor"
231
  msgstr "زيارات الأمس"
232
 
233
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
234
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
235
  msgid "Yesterday visit"
236
  msgstr "زيارات الأمس"
237
 
238
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:200
239
  msgid "View Stats"
240
  msgstr "عرض الإحصائيات"
241
 
242
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
243
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
244
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:411
245
  msgid "You do not have sufficient permissions to access this page."
246
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
247
 
248
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:274
249
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
250
  msgstr ""
251
  "هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
252
  "تفعيلة مرة أخرى."
253
 
254
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
255
  #, php-format
256
  msgid "Error downloading GeoIP database from: %s"
257
  msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s"
258
 
259
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
260
  #, php-format
261
  msgid "Error could not open downloaded GeoIP database for reading: %s"
262
  msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
263
 
264
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
265
  #, php-format
266
  msgid "Error could not open destination GeoIP database for writing %s"
267
  msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
268
 
269
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
270
  msgid "GeoIP Database updated successfully!"
271
  msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
272
 
273
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:28
 
 
 
 
 
 
 
 
274
  #, php-format
275
  msgid "Updated %s GeoIP records in the visitors database."
276
  msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
@@ -460,7 +467,7 @@ msgstr "آخر كلمات البحث"
460
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
461
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
462
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
463
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:157
464
  msgid "Map"
465
  msgstr "خريطة"
466
 
@@ -700,7 +707,7 @@ msgstr "<code>%s</code> حذف بيانات الوكيل بنجاح."
700
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
701
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
702
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
703
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
704
  msgid "Please select the desired items."
705
  msgstr "يرجى تحديد العناصر المطلوبة."
706
 
@@ -775,9 +782,9 @@ msgstr "التصدير من"
775
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
776
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
777
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
778
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
779
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:220
780
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:236
781
  msgid "Please select."
782
  msgstr "الرجاء اختيار."
783
 
@@ -793,7 +800,15 @@ msgstr "التصدير إلى"
793
  msgid "Select the output file type."
794
  msgstr "حدد نوع ملف الإخراج."
795
 
796
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:48
 
 
 
 
 
 
 
 
797
  msgid "Start Now!"
798
  msgstr "ابدأ الآن!"
799
 
@@ -869,27 +884,31 @@ msgstr "معلومات ملف GeoIP"
869
  msgid "File Date"
870
  msgstr "ملف التاريخ"
871
 
872
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:35
 
 
 
 
873
  msgid "The file date of the GeoIP database."
874
  msgstr "تاريخ الملف من قاعدة البيانات GeoIP."
875
 
876
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:41
877
  msgid "File Size"
878
  msgstr "حجم الملف"
879
 
880
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:58
881
  msgid "The file size of the GeoIP database."
882
  msgstr "حجم ملف قاعدة البيانات GeoIP."
883
 
884
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
885
  msgid "GeoIP Options"
886
  msgstr "خيارات GeoIP"
887
 
888
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:72
889
  msgid "Update Now!"
890
  msgstr "تحديث الآن!"
891
 
892
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
893
  msgid "Get updates for the location and the countries, this may take a while"
894
  msgstr "الحصول على تحديثات للموقع والدول، وهذا قد يستغرق بعض الوقت"
895
 
@@ -954,30 +973,74 @@ msgid "The PHP version you are running."
954
  msgstr "إصدار PHP."
955
 
956
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
 
 
 
 
 
 
 
 
957
  msgid "jQuery Version"
958
  msgstr "نسخة jQuery"
959
 
960
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
961
  msgid "The jQuery version you are running."
962
  msgstr "إصدار jQuery."
963
 
964
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
965
  msgid "Client Info"
966
  msgstr "معلومات العميل"
967
 
968
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
969
  msgid "Client IP"
970
  msgstr "IP العميل"
971
 
972
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:109
973
  msgid "The client IP address."
974
  msgstr "عنوان IP للعميل."
975
 
976
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
977
  msgid "User Agent"
978
  msgstr "وكيل المستخدم"
979
 
980
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:120
981
  msgid "The client user agent string."
982
  msgstr "سلسلة عامل المستخدم العميل."
983
 
@@ -989,6 +1052,10 @@ msgstr "الأسم"
989
  msgid "Items"
990
  msgstr "البنود"
991
 
 
 
 
 
992
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
993
  msgid "Select type of search engine"
994
  msgstr "حدد نوع من محرك البحث"
@@ -1139,14 +1206,15 @@ msgstr "استبعاد قائمة العناوين IP"
1139
 
1140
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
1141
  msgid ""
1142
- "A list of IP addresses and (optional) subnet masks (one per line) to exclude "
1143
- "from statistics collection (both 192.168.0.0/24 and "
1144
- "192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address "
1145
- "only, do not add any subnet value."
1146
  msgstr ""
1147
- "(يتم قبول كل من 192.168.0.0/24 و192.168.0.0/255.255.255.0 صيغ) قائمة عناوين "
1148
- "IP و(اختياري) أقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جمع "
1149
- "الإحصاءات. لتحديد عنوان IP فقط، لا تضيف أي قيمة الشبكة الفرعية."
 
1150
 
1151
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:152
1152
  msgid "Add 10.0.0.0"
@@ -1181,9 +1249,9 @@ msgid "Exclude the admin pages for registering as a hit."
1181
  msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
1182
 
1183
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1184
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
1185
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1186
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
1187
  msgid "Update"
1188
  msgstr "تحديث"
1189
 
@@ -1203,11 +1271,12 @@ msgstr "مجموعة GeoIP"
1203
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
1204
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
1205
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
1206
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:151
1207
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:167
1208
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:179
1209
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:191
1210
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:207
 
1211
  msgid "Active"
1212
  msgstr "تفعيل"
1213
 
@@ -1264,7 +1333,11 @@ msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث
1264
  msgid "Update any missing GeoIP data after downloading a new database."
1265
  msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
1266
 
1267
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:115
 
 
 
 
1268
  #, php-format
1269
  msgid ""
1270
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
@@ -1272,6 +1345,26 @@ msgid ""
1272
  msgstr ""
1273
  "جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
1274
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1275
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1276
  msgid "Database Maintenance"
1277
  msgstr "صيانة قاعدة البيانات"
@@ -1311,7 +1404,7 @@ msgstr "عام"
1311
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
1312
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
1313
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
1314
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:208
1315
  msgid "Enable or disable this feature"
1316
  msgstr "تمكين أو تعطيل هذه الميزة"
1317
 
@@ -1365,121 +1458,153 @@ msgstr "درجة لكل زائر"
1365
  msgid "For each visit to account for several hits. Currently %s."
1366
  msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
1367
 
1368
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1369
  msgid "Charts"
1370
  msgstr "الرسوم البيانية"
1371
 
1372
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:126
1373
  msgid "Chart type"
1374
  msgstr "نوع الرسم البياني"
1375
 
1376
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:132
1377
  msgid "Line"
1378
  msgstr "سطر"
1379
 
1380
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:133
1381
  msgid "Spline"
1382
  msgstr "شريحة"
1383
 
1384
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:134
1385
  msgid "Area"
1386
  msgstr "منطقة"
1387
 
1388
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:135
1389
  msgid "Area Spline"
1390
  msgstr "منطقة منحنية"
1391
 
1392
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:136
1393
  msgid "Column"
1394
  msgstr "عمود"
1395
 
1396
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:137
1397
  msgid "Bar"
1398
  msgstr "شريط"
1399
 
1400
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:138
1401
  msgid "Scatter"
1402
  msgstr "تبعثر"
1403
 
1404
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:140
1405
  msgid "Chart type in view stats."
1406
  msgstr "نوع الرسم البياني في مشاهدة البيانات."
1407
 
1408
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:146
1409
  msgid "Include totals"
1410
  msgstr "تتضمن الاجماليات"
1411
 
1412
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
1413
  msgid ""
1414
  "Add a total line to charts with multiple values, like the search engine "
1415
  "referrals"
1416
  msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
1417
 
1418
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:162
1419
  msgid "Disable map"
1420
  msgstr "تعطيل الخريطة"
1421
 
1422
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:168
1423
  msgid "Disable the map display"
1424
  msgstr "تعطيل عرض الخريطة"
1425
 
1426
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
1427
  msgid "Alternate map location"
1428
  msgstr "خريطة الموقع البديل"
1429
 
1430
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:180
1431
  msgid ""
1432
  "Place the map above the recent visitors area instead of at the top of the "
1433
  "page."
1434
  msgstr ""
1435
  "وضع الخريطة فوق منطقة الزوار الأخيرة بدلا من في الجزء العلوي من الصفحة."
1436
 
1437
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:186
1438
  msgid "Get country location from Google"
1439
  msgstr "الحصول على موقع البلد من جوجل"
1440
 
1441
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:192
1442
  msgid ""
1443
  "This feature may cause a performance degradation when viewing statistics."
1444
  msgstr "قد تسبب هذه الميزة انخفاض أداء الموقع عند عرض الإحصائيات."
1445
 
1446
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:215
1447
  msgid "Time send"
1448
  msgstr "وقت الارسال"
1449
 
1450
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:221
1451
  msgid "Hourly"
1452
  msgstr "كل ساعة"
1453
 
1454
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
1455
  msgid "Twice daily"
1456
  msgstr "مرتين يوميا"
1457
 
1458
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:223
1459
  msgid "daily"
1460
  msgstr "يوميا"
1461
 
1462
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:225
1463
  msgid "Select when receiving statistics report."
1464
  msgstr "حدد عند استلام إحصاءات التقرير."
1465
 
1466
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:231
1467
  msgid "Send Statistical reporting to"
1468
  msgstr "إرسال تقارير الإحصائيات إلى"
1469
 
1470
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:237
1471
  msgid "Email"
1472
  msgstr "البريد الإلكتروني"
1473
 
1474
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:238
1475
  msgid "SMS"
1476
  msgstr "رسائل نصية"
1477
 
1478
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
1479
  msgid "Type Select Get Status Report."
1480
  msgstr "حدد نوع الحصول على التقرير."
1481
 
1482
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:243
1483
  #, php-format
1484
  msgid ""
1485
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
@@ -1488,15 +1613,15 @@ msgstr ""
1488
  "ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href=\"%s"
1489
  "\" target=\"_blank\">Wordpress SMS</a>."
1490
 
1491
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:250
1492
  msgid "Send Content Report"
1493
  msgstr "أرسل المحتوى"
1494
 
1495
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:255
1496
  msgid "Enter the contents of the reports received."
1497
  msgstr "أدخل محتويات التقارير الواردة."
1498
 
1499
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:257
1500
  msgid "Input data:"
1501
  msgstr "إدخال البيانات:"
1502
 
@@ -1760,8 +1885,5 @@ msgstr "إدخال البيانات:"
1760
  #~ msgid "Delete all data, including tables and plugin options"
1761
  #~ msgstr "حذف جميع البيانات ، بما في ذلك الجداول وخيارات البرنامج المساعد"
1762
 
1763
- #~ msgid "Uninstall"
1764
- #~ msgstr "إلغاء التنصيب"
1765
-
1766
  #~ msgid "Stats weblog"
1767
  #~ msgstr "احصائيات المدونة"
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-16 13:40+0330\n"
6
+ "PO-Revision-Date: 2014-05-18 13:47+0300\n"
7
+ "Last-Translator: Hammad Saud <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.6.5\n"
18
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
19
  "content\\plugins\\wp-statistics\n"
20
 
21
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
22
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:235
23
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
24
  msgid "Statistical reporting"
25
  msgstr "تقارير الإحصائيات"
26
 
27
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
30
  msgid "Statistics"
31
  msgstr "الاحصائيات"
32
 
35
  msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
36
 
37
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
38
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:178
39
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
40
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
41
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
42
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:296
43
  msgid "User Online"
44
  msgstr "المتواجدين الآن"
45
 
46
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
47
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
48
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:298
49
  msgid "Today Visit"
50
  msgstr "زيارات اليوم"
51
 
52
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
53
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
54
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:297
55
  msgid "Today Visitor"
56
  msgstr "زوار اليوم"
57
 
58
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
59
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:300
60
  msgid "Yesterday Visit"
61
  msgstr "زيارات الأمس"
62
 
63
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
64
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
65
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:299
66
  msgid "Yesterday Visitor"
67
  msgstr "زوار الأمس"
68
 
83
 
84
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
85
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
86
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:302
87
  msgid "Total Visit"
88
  msgstr "مجموع الزيارات"
89
 
90
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
91
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
92
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:301
93
  msgid "Total Visitor"
94
  msgstr "مجموع الزوار"
95
 
96
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
97
+ msgid "Search Engine referred"
98
+ msgstr "محرك البحث المشار"
 
99
 
100
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
101
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:59
150
  msgid "Complete statistics for your blog."
151
  msgstr "الإحصائيات الكاملة للمدونة الخاصة بك."
152
 
153
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:66
154
  #, php-format
155
  msgid ""
156
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
159
  "إضافة Wordpress Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s\">صفحة "
160
  "الإعدادات</a> وقم بتفعيلها"
161
 
162
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
163
  #, php-format
164
  msgid ""
165
  "GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
168
  "مجموعة GeoIP غير نشطة! يرجى الذهاب الى <a href=\"%s\">صفحة الإعدادات > "
169
  "GeoIP</a> وقم بتمكين هذه الميزة (GeoIP يمكن الكشف عن بلد آخر)"
170
 
171
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
172
  msgid "Overview"
173
  msgstr "نظرة عامة"
174
 
175
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:128
176
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
177
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
178
  msgid "Browsers"
179
  msgstr "المتصفحات"
180
 
181
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
182
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
183
  msgid "Countries"
184
  msgstr "الدول"
185
 
186
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
187
  msgid "Hits"
188
  msgstr "نقرات"
189
 
190
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
191
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
192
  msgid "Exclusions"
193
  msgstr "الاستثناءات"
194
 
195
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
196
  msgid "Referers"
197
  msgstr "المراجع"
198
 
199
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:135
200
  msgid "Searches"
201
  msgstr "عمليات البحث"
202
 
203
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
204
  msgid "Search Words"
205
  msgstr "كلمات البحث"
206
 
207
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
208
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
209
  msgid "Visitors"
210
  msgstr "الزوار"
211
 
212
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:139
213
  msgid "Optimization"
214
  msgstr "التحسين"
215
 
216
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:140
217
  msgid "Settings"
218
  msgstr "الإعدادات"
219
 
220
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:183
221
  msgid "Today visitor"
222
  msgstr "زوار اليوم"
223
 
224
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:188
225
  msgid "Today visit"
226
  msgstr "زيارات اليوم"
227
 
228
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:193
229
  msgid "Yesterday visitor"
230
  msgstr "زيارات الأمس"
231
 
232
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:198
233
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
234
  msgid "Yesterday visit"
235
  msgstr "زيارات الأمس"
236
 
237
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
238
  msgid "View Stats"
239
  msgstr "عرض الإحصائيات"
240
 
241
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:265
242
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:331
243
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:421
244
  msgid "You do not have sufficient permissions to access this page."
245
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
246
 
247
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:277
248
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
249
  msgstr ""
250
  "هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
251
  "تفعيلة مرة أخرى."
252
 
253
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
254
  #, php-format
255
  msgid "Error downloading GeoIP database from: %s"
256
  msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s"
257
 
258
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:383
259
  #, php-format
260
  msgid "Error could not open downloaded GeoIP database for reading: %s"
261
  msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
262
 
263
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:389
264
  #, php-format
265
  msgid "Error could not open destination GeoIP database for writing %s"
266
  msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
267
 
268
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:402
269
  msgid "GeoIP Database updated successfully!"
270
  msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
271
 
272
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:16
273
+ msgid ""
274
+ "Unable to load the GeoIP database, make sure you have downloaded it in the "
275
+ "settings page."
276
+ msgstr ""
277
+ "غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة "
278
+ "الإعدادات."
279
+
280
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:33
281
  #, php-format
282
  msgid "Updated %s GeoIP records in the visitors database."
283
  msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
467
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
468
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
469
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
470
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:195
471
  msgid "Map"
472
  msgstr "خريطة"
473
 
707
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
708
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
709
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
710
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:53
711
  msgid "Please select the desired items."
712
  msgstr "يرجى تحديد العناصر المطلوبة."
713
 
782
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
783
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
784
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
785
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:169
786
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
787
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
788
  msgid "Please select."
789
  msgstr "الرجاء اختيار."
790
 
800
  msgid "Select the output file type."
801
  msgstr "حدد نوع ملف الإخراج."
802
 
803
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:53
804
+ msgid "Include Header Row"
805
+ msgstr "تضمين رأس الصف"
806
+
807
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:58
808
+ msgid "Include a header row as the first line of the exported file."
809
+ msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
810
+
811
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:59
812
  msgid "Start Now!"
813
  msgstr "ابدأ الآن!"
814
 
884
  msgid "File Date"
885
  msgstr "ملف التاريخ"
886
 
887
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:36
888
+ msgid "Database file does not exist."
889
+ msgstr "لا وجود لملف قاعدة البيانات."
890
+
891
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:40
892
  msgid "The file date of the GeoIP database."
893
  msgstr "تاريخ الملف من قاعدة البيانات GeoIP."
894
 
895
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:46
896
  msgid "File Size"
897
  msgstr "حجم الملف"
898
 
899
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
900
  msgid "The file size of the GeoIP database."
901
  msgstr "حجم ملف قاعدة البيانات GeoIP."
902
 
903
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
904
  msgid "GeoIP Options"
905
  msgstr "خيارات GeoIP"
906
 
907
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:77
908
  msgid "Update Now!"
909
  msgstr "تحديث الآن!"
910
 
911
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:78
912
  msgid "Get updates for the location and the countries, this may take a while"
913
  msgstr "الحصول على تحديثات للموقع والدول، وهذا قد يستغرق بعض الوقت"
914
 
973
  msgstr "إصدار PHP."
974
 
975
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
976
+ msgid "PHP Safe Mode"
977
+ msgstr "الوضع الآمن PHP"
978
+
979
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
980
+ msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
981
+ msgstr "الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
982
+
983
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
984
  msgid "jQuery Version"
985
  msgstr "نسخة jQuery"
986
 
987
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
988
  msgid "The jQuery version you are running."
989
  msgstr "إصدار jQuery."
990
 
991
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:111
992
+ msgid "cURL Version"
993
+ msgstr "إصدار cURL"
994
+
995
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
996
+ msgid "cURL not installed"
997
+ msgstr "cURL غير مثبت"
998
+
999
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
1000
+ msgid ""
1001
+ "The PHP cURL Extension version you are running. cURL is required for the "
1002
+ "GeoIP code, if it is not installed GeoIP will be disabled."
1003
+ msgstr ""
1004
+ "نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وغذا لم يتم "
1005
+ "تثبيته يتم تعطيل GeoIP."
1006
+
1007
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:122
1008
+ msgid "BC Math"
1009
+ msgstr "BC Math"
1010
+
1011
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
1012
+ msgid "Installed"
1013
+ msgstr "مثبت"
1014
+
1015
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
1016
+ msgid "Not installed"
1017
+ msgstr "غير مثبت"
1018
+
1019
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:127
1020
+ msgid ""
1021
+ "If the PHP BC Math Extension is installed. BC Math is required for the "
1022
+ "GeoIP code, if it is not installed GeoIP will be disabled."
1023
+ msgstr ""
1024
+ "إذا تم تثبيت الملحق PHP BC Math. فأن كود GeoIP مطلوب في BC Math, واذا لم "
1025
+ "يتم تثبيته يتم تعطيل GeoIP."
1026
+
1027
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:132
1028
  msgid "Client Info"
1029
  msgstr "معلومات العميل"
1030
 
1031
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:137
1032
  msgid "Client IP"
1033
  msgstr "IP العميل"
1034
 
1035
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:142
1036
  msgid "The client IP address."
1037
  msgstr "عنوان IP للعميل."
1038
 
1039
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:148
1040
  msgid "User Agent"
1041
  msgstr "وكيل المستخدم"
1042
 
1043
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:153
1044
  msgid "The client user agent string."
1045
  msgstr "سلسلة عامل المستخدم العميل."
1046
 
1052
  msgid "Items"
1053
  msgstr "البنود"
1054
 
1055
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
1056
+ msgid "Search Engine reffered"
1057
+ msgstr "محركات البحث"
1058
+
1059
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
1060
  msgid "Select type of search engine"
1061
  msgstr "حدد نوع من محرك البحث"
1206
 
1207
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
1208
  msgid ""
1209
+ "A list of IP addresses and subnet masks (one per line) to exclude from "
1210
+ "statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
1211
+ "formats are accepted). To specify an IP address only, use a subnet value of "
1212
+ "32 or 255.255.255.255.255."
1213
  msgstr ""
1214
+ "قائمة عناوين IP وأقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جميع "
1215
+ "الإحصائيات (وتقبل الأشكال كل من 192.168.0.0/24 و "
1216
+ "192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية "
1217
+ "32 أو 255.255.255.255.255."
1218
 
1219
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:152
1220
  msgid "Add 10.0.0.0"
1249
  msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
1250
 
1251
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1252
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:149
1253
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1254
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:312
1255
  msgid "Update"
1256
  msgstr "تحديث"
1257
 
1271
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
1272
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
1273
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
1274
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:127
1275
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:189
1276
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:205
1277
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:217
1278
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:229
1279
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:245
1280
  msgid "Active"
1281
  msgstr "تفعيل"
1282
 
1333
  msgid "Update any missing GeoIP data after downloading a new database."
1334
  msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
1335
 
1336
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:116
1337
+ msgid "GeoIP collection is disabled due to the following reasons:"
1338
+ msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
1339
+
1340
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:119
1341
  #, php-format
1342
  msgid ""
1343
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1345
  msgstr ""
1346
  "جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
1347
 
1348
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:124
1349
+ msgid ""
1350
+ "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1351
+ "your version of PHP!"
1352
+ msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
1353
+
1354
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:130
1355
+ msgid ""
1356
+ "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1357
+ "your version of PHP!"
1358
+ msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
1359
+
1360
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:136
1361
+ msgid ""
1362
+ "PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
1363
+ "mode enabled!"
1364
+ msgstr ""
1365
+ "تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع "
1366
+ "الآمن في PHP!"
1367
+
1368
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1369
  msgid "Database Maintenance"
1370
  msgstr "صيانة قاعدة البيانات"
1404
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
1405
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
1406
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
1407
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:246
1408
  msgid "Enable or disable this feature"
1409
  msgstr "تمكين أو تعطيل هذه الميزة"
1410
 
1458
  msgid "For each visit to account for several hits. Currently %s."
1459
  msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
1460
 
1461
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:122
1462
+ msgid "Hide admin notices about non active features"
1463
+ msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
1464
+
1465
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:128
1466
+ msgid ""
1467
+ "By default WP Statistics displays an alert if any of the core features are "
1468
+ "disbaled on every admin page, this option will disable these notices."
1469
+ msgstr ""
1470
+ "افتراضيا احصائيات ووردبريس يعرض تنبيها اذا تم تعطيل أي من الميزات الأساسية "
1471
+ "على كل مشرف, فإن هذا الخيار يقوم بتعطيل الإشعارات."
1472
+
1473
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:133
1474
+ msgid "Search Enginges"
1475
+ msgstr "محرك البحث"
1476
+
1477
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:138
1478
+ msgid ""
1479
+ "Disabling all search engines is not allowed, doing so will result in all "
1480
+ "search engines being active."
1481
+ msgstr ""
1482
+ "تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
1483
+
1484
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
1485
+ msgid "disable"
1486
+ msgstr "تعطيل"
1487
+
1488
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:153
1489
+ #, php-format
1490
+ msgid "Disable %s from data collection and reporting."
1491
+ msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
1492
+
1493
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:159
1494
  msgid "Charts"
1495
  msgstr "الرسوم البيانية"
1496
 
1497
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:164
1498
  msgid "Chart type"
1499
  msgstr "نوع الرسم البياني"
1500
 
1501
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:170
1502
  msgid "Line"
1503
  msgstr "سطر"
1504
 
1505
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:171
1506
  msgid "Spline"
1507
  msgstr "شريحة"
1508
 
1509
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:172
1510
  msgid "Area"
1511
  msgstr "منطقة"
1512
 
1513
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:173
1514
  msgid "Area Spline"
1515
  msgstr "منطقة منحنية"
1516
 
1517
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
1518
  msgid "Column"
1519
  msgstr "عمود"
1520
 
1521
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:175
1522
  msgid "Bar"
1523
  msgstr "شريط"
1524
 
1525
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:176
1526
  msgid "Scatter"
1527
  msgstr "تبعثر"
1528
 
1529
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:178
1530
  msgid "Chart type in view stats."
1531
  msgstr "نوع الرسم البياني في مشاهدة البيانات."
1532
 
1533
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:184
1534
  msgid "Include totals"
1535
  msgstr "تتضمن الاجماليات"
1536
 
1537
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:190
1538
  msgid ""
1539
  "Add a total line to charts with multiple values, like the search engine "
1540
  "referrals"
1541
  msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
1542
 
1543
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:200
1544
  msgid "Disable map"
1545
  msgstr "تعطيل الخريطة"
1546
 
1547
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:206
1548
  msgid "Disable the map display"
1549
  msgstr "تعطيل عرض الخريطة"
1550
 
1551
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:212
1552
  msgid "Alternate map location"
1553
  msgstr "خريطة الموقع البديل"
1554
 
1555
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:218
1556
  msgid ""
1557
  "Place the map above the recent visitors area instead of at the top of the "
1558
  "page."
1559
  msgstr ""
1560
  "وضع الخريطة فوق منطقة الزوار الأخيرة بدلا من في الجزء العلوي من الصفحة."
1561
 
1562
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:224
1563
  msgid "Get country location from Google"
1564
  msgstr "الحصول على موقع البلد من جوجل"
1565
 
1566
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:230
1567
  msgid ""
1568
  "This feature may cause a performance degradation when viewing statistics."
1569
  msgstr "قد تسبب هذه الميزة انخفاض أداء الموقع عند عرض الإحصائيات."
1570
 
1571
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:253
1572
  msgid "Time send"
1573
  msgstr "وقت الارسال"
1574
 
1575
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
1576
  msgid "Hourly"
1577
  msgstr "كل ساعة"
1578
 
1579
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
1580
  msgid "Twice daily"
1581
  msgstr "مرتين يوميا"
1582
 
1583
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
1584
  msgid "daily"
1585
  msgstr "يوميا"
1586
 
1587
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
1588
  msgid "Select when receiving statistics report."
1589
  msgstr "حدد عند استلام إحصاءات التقرير."
1590
 
1591
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:269
1592
  msgid "Send Statistical reporting to"
1593
  msgstr "إرسال تقارير الإحصائيات إلى"
1594
 
1595
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:275
1596
  msgid "Email"
1597
  msgstr "البريد الإلكتروني"
1598
 
1599
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:276
1600
  msgid "SMS"
1601
  msgstr "رسائل نصية"
1602
 
1603
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:278
1604
  msgid "Type Select Get Status Report."
1605
  msgstr "حدد نوع الحصول على التقرير."
1606
 
1607
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:281
1608
  #, php-format
1609
  msgid ""
1610
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
1613
  "ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href=\"%s"
1614
  "\" target=\"_blank\">Wordpress SMS</a>."
1615
 
1616
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:288
1617
  msgid "Send Content Report"
1618
  msgstr "أرسل المحتوى"
1619
 
1620
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:293
1621
  msgid "Enter the contents of the reports received."
1622
  msgstr "أدخل محتويات التقارير الواردة."
1623
 
1624
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:295
1625
  msgid "Input data:"
1626
  msgstr "إدخال البيانات:"
1627
 
1885
  #~ msgid "Delete all data, including tables and plugin options"
1886
  #~ msgstr "حذف جميع البيانات ، بما في ذلك الجداول وخيارات البرنامج المساعد"
1887
 
 
 
 
1888
  #~ msgid "Stats weblog"
1889
  #~ msgstr "احصائيات المدونة"
languages/wp_statistics-fa_IR.mo CHANGED
Binary file
languages/wp_statistics-fa_IR.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP Statistics\n"
6
- "POT-Creation-Date: 2014-03-10 11:13+0330\n"
7
- "PO-Revision-Date: 2014-03-10 11:13+0330\n"
8
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
@@ -19,14 +19,14 @@ msgstr ""
19
  "content\\plugins\\wp-statistics\n"
20
 
21
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
22
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
23
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
24
  msgid "Statistical reporting"
25
  msgstr "گزارش آماری"
26
 
27
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:122
30
  msgid "Statistics"
31
  msgstr "آماره"
32
 
@@ -35,34 +35,34 @@ msgid "Show site stats in sidebar"
35
  msgstr "نمایش آمار سایت در ابزارک"
36
 
37
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
38
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:175
39
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
40
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
41
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
42
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
43
  msgid "User Online"
44
  msgstr "کاربران حاضر"
45
 
46
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
47
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
48
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
49
  msgid "Today Visit"
50
  msgstr "بازدید امروز"
51
 
52
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
53
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
54
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
55
  msgid "Today Visitor"
56
  msgstr "بازدیدکننده امروز"
57
 
58
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
59
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:262
60
  msgid "Yesterday Visit"
61
  msgstr "بازدید دیروز"
62
 
63
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
64
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
65
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
66
  msgid "Yesterday Visitor"
67
  msgstr "بازدید کننده دیروز"
68
 
@@ -83,19 +83,18 @@ msgstr "بازدید سال"
83
 
84
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
85
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
86
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:264
87
  msgid "Total Visit"
88
  msgstr "کل بازدیدها"
89
 
90
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
91
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
92
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
93
  msgid "Total Visitor"
94
  msgstr "کل بازدیدکننده‌گان"
95
 
96
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
97
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
98
- msgid "Search Engine reffered"
99
  msgstr "ورودی موتور جستجو"
100
 
101
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
@@ -151,7 +150,7 @@ msgstr "آماره وردپرس"
151
  msgid "Complete statistics for your blog."
152
  msgstr "آماری کامل برای وب‌لاگ شما."
153
 
154
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
155
  #, php-format
156
  msgid ""
157
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
@@ -160,7 +159,7 @@ msgstr ""
160
  "امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
161
  "تنظیمات</a> آمارگیر مراجعه کنید."
162
 
163
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
164
  #, php-format
165
  msgid ""
166
  "GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
@@ -170,102 +169,102 @@ msgstr ""
170
  "مراجعه کنید و این ویژگی را فعال کنید. (این ویژگی می‌تواند کشور بازدیدکنندگان "
171
  "را شناسایی کند.)"
172
 
173
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
174
  msgid "Overview"
175
  msgstr "مرور کلی"
176
 
177
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
178
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
179
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
180
  msgid "Browsers"
181
  msgstr "مرورگرها"
182
 
183
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
184
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
185
  msgid "Countries"
186
  msgstr "کشورها"
187
 
188
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:129
189
  msgid "Hits"
190
  msgstr "بازدیدها"
191
 
192
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
193
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
194
  msgid "Exclusions"
195
  msgstr "استثنائات"
196
 
197
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
198
  msgid "Referers"
199
  msgstr "ارجاع‌دهنده‌ها"
200
 
201
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
202
  msgid "Searches"
203
  msgstr "جستجوها"
204
 
205
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
206
  msgid "Search Words"
207
  msgstr "کلمات جستجو شده"
208
 
209
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
210
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
211
  msgid "Visitors"
212
  msgstr "بازدیدکننده‌گان"
213
 
214
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
215
  msgid "Optimization"
216
  msgstr "بهینه سازی"
217
 
218
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
219
  msgid "Settings"
220
  msgstr "تنظیمات"
221
 
222
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:180
223
  msgid "Today visitor"
224
  msgstr "بازدید کننده امروز"
225
 
226
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:185
227
  msgid "Today visit"
228
  msgstr "بازدید امروز"
229
 
230
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:190
231
  msgid "Yesterday visitor"
232
  msgstr "بازدید کننده دیروز"
233
 
234
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
235
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
236
  msgid "Yesterday visit"
237
  msgstr "بازدید دیروز"
238
 
239
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:200
240
  msgid "View Stats"
241
  msgstr "نمایش آمار"
242
 
243
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
244
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
245
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:416
246
  msgid "You do not have sufficient permissions to access this page."
247
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
248
 
249
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:274
250
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
251
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
252
 
253
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
254
  #, php-format
255
  msgid "Error downloading GeoIP database from: %s"
256
  msgstr "خطای دریافت پایگاه‌داده GeoIP از: %s"
257
 
258
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
259
  #, php-format
260
  msgid "Error could not open downloaded GeoIP database for reading: %s"
261
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای خواندن: %s"
262
 
263
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:384
264
  #, php-format
265
  msgid "Error could not open destination GeoIP database for writing %s"
266
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای نوشتن: %s"
267
 
268
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
269
  msgid "GeoIP Database updated successfully!"
270
  msgstr "پایگاه‌داده GeoIP با موفقیت به‌روز شد!"
271
 
@@ -467,7 +466,7 @@ msgstr "آخرین کلمات جستجو شده"
467
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
468
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
469
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
470
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:157
471
  msgid "Map"
472
  msgstr "نقشه"
473
 
@@ -705,7 +704,7 @@ msgstr "مرورگر <code>%s</code> با موفقیت حذف شد."
705
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
706
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
707
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
708
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
709
  msgid "Please select the desired items."
710
  msgstr "لطفا موارد مورد نظر را انتخاب کنید."
711
 
@@ -781,9 +780,9 @@ msgstr "برون‌بری از"
781
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
782
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
783
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
784
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
785
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:220
786
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:236
787
  msgid "Please select."
788
  msgstr "لطفا انتخاب کنید."
789
 
@@ -799,7 +798,15 @@ msgstr "برون‌بری به"
799
  msgid "Select the output file type."
800
  msgstr "نوع فایل خروجی را انتخاب کنید."
801
 
802
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:48
 
 
 
 
 
 
 
 
803
  msgid "Start Now!"
804
  msgstr "شروع کن!"
805
 
@@ -964,41 +971,49 @@ msgid "The PHP version you are running."
964
  msgstr "نگارش PHP در حال اجرای شما."
965
 
966
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
 
 
 
 
 
 
 
 
967
  msgid "jQuery Version"
968
  msgstr "نگارش جی‌کوئری"
969
 
970
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
971
  msgid "The jQuery version you are running."
972
  msgstr "نگارش جی‌کوئری در حال اجرای شما."
973
 
974
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
975
  msgid "cURL Version"
976
  msgstr "نسخه cURL"
977
 
978
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
979
  msgid "cURL not installed"
980
  msgstr "cURL نصب نیست"
981
 
982
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
983
  msgid ""
984
  "The PHP cURL Extension version you are running. cURL is required for the "
985
  "GeoIP code, if it is not installed GeoIP will be disabled."
986
  msgstr ""
987
  "ماژول cURL در PHP شما در حال اجراست. اگر نصب نیست GeoIP غیرفعال خواهد شد."
988
 
989
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:111
990
  msgid "BC Math"
991
  msgstr "BC Math"
992
 
993
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
994
  msgid "Installed"
995
  msgstr "نصب شده"
996
 
997
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
998
  msgid "Not installed"
999
  msgstr "نصب نشده"
1000
 
1001
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
1002
  msgid ""
1003
  "If the PHP BC Math Extension is installed. BC Math is required for the "
1004
  "GeoIP code, if it is not installed GeoIP will be disabled."
@@ -1006,23 +1021,23 @@ msgstr ""
1006
  "اگر BC Math در PHP نصب شده باشد. GeoIP برای کدکردن نیازمند آن است، اگر نصب "
1007
  "نیست، GeoIP غیرفعال خواهد شد."
1008
 
1009
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:121
1010
  msgid "Client Info"
1011
  msgstr "اطلاعات کاربر"
1012
 
1013
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
1014
  msgid "Client IP"
1015
  msgstr "آی‌پی کاربر"
1016
 
1017
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:131
1018
  msgid "The client IP address."
1019
  msgstr "آدرس آی‌پی کاربر."
1020
 
1021
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:137
1022
  msgid "User Agent"
1023
  msgstr "عامل کاربر"
1024
 
1025
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:142
1026
  msgid "The client user agent string."
1027
  msgstr "رشته‌ی عامل کاربری"
1028
 
@@ -1034,6 +1049,10 @@ msgstr "نام"
1034
  msgid "Items"
1035
  msgstr "آیتم‌ها"
1036
 
 
 
 
 
1037
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
1038
  msgid "Select type of search engine"
1039
  msgstr "انتخاب نوع موتورجستجو"
@@ -1183,10 +1202,10 @@ msgstr "لیست آدرس آی‌پی‌های محروم"
1183
 
1184
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
1185
  msgid ""
1186
- "A list of IP addresses and (optional) subnet masks (one per line) to exclude "
1187
- "from statistics collection (both 192.168.0.0/24 and "
1188
- "192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address "
1189
- "only, do not add any subnet value."
1190
  msgstr ""
1191
  "یک لیست از آدرس آی‌پی‌ و Subnet Maskهای (اختیاری) برای جلوگیری در محاسبه "
1192
  "آمارگیر (هردو فرمت 192.168.0.0/24 و 192.168.0.0/255.255.255.0 قابل قبول و در "
@@ -1226,9 +1245,9 @@ msgid "Exclude the admin pages for registering as a hit."
1226
  msgstr "نادیده گرفتن برگه‌های مدیریت برای نام‌نویسی به‌عنوان محاسبه در آمار"
1227
 
1228
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1229
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:139
1230
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1231
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
1232
  msgid "Update"
1233
  msgstr "به‌روز رسانی"
1234
 
@@ -1248,11 +1267,12 @@ msgstr "مجموعه GeoIP"
1248
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
1249
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
1250
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
1251
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:151
1252
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:167
1253
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:179
1254
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:191
1255
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:207
 
1256
  msgid "Active"
1257
  msgstr "فعال"
1258
 
@@ -1308,7 +1328,11 @@ msgid "Update any missing GeoIP data after downloading a new database."
1308
  msgstr ""
1309
  "به‌روز رسانی هر داده‌ی از دست‌رفته‌ی GeoIP بعد از دریافت پایگاه داده‌ی جدید."
1310
 
1311
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:117
 
 
 
 
1312
  #, php-format
1313
  msgid ""
1314
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
@@ -1317,7 +1341,7 @@ msgstr ""
1317
  "مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین "
1318
  "بودن نسخه PHP شما، غیرفعال است"
1319
 
1320
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:122
1321
  msgid ""
1322
  "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1323
  "your version of PHP!"
@@ -1325,7 +1349,7 @@ msgstr ""
1325
  "مجموعه‌ی GeoIP نیاز به ماژول cURL در PHP دارد و نمی‌تواند در نگارش PHP شما "
1326
  "بارگزاری شود!"
1327
 
1328
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:127
1329
  msgid ""
1330
  "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1331
  "your version of PHP!"
@@ -1333,6 +1357,13 @@ msgstr ""
1333
  "مجموعه‌ی GeoIP نیاز به ماژول BC Math در PHP دارد و نمی‌تواند در نگارش PHP شما "
1334
  "بارگزاری شود!"
1335
 
 
 
 
 
 
 
 
1336
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1337
  msgid "Database Maintenance"
1338
  msgstr "تعمیر و نگه‌داری پایگاه‌داده"
@@ -1372,7 +1403,7 @@ msgstr "عمومی"
1372
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
1373
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
1374
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
1375
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:208
1376
  msgid "Enable or disable this feature"
1377
  msgstr "فعال یا غیرفعال کردن این امکان"
1378
 
@@ -1426,120 +1457,153 @@ msgstr "ضریب محاسبه هر بازدیدکننده"
1426
  msgid "For each visit to account for several hits. Currently %s."
1427
  msgstr "ضریب محاسبه هر بازدید کننده را در آمار مشخص می‌کند. درحال حاضر %s است."
1428
 
1429
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1430
  msgid "Charts"
1431
  msgstr "نمودار"
1432
 
1433
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:126
1434
  msgid "Chart type"
1435
  msgstr "نوع نمودار"
1436
 
1437
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:132
1438
  msgid "Line"
1439
  msgstr "خطی"
1440
 
1441
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:133
1442
  msgid "Spline"
1443
  msgstr "نوار باریک"
1444
 
1445
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:134
1446
  msgid "Area"
1447
  msgstr "خطی توپُر"
1448
 
1449
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:135
1450
  msgid "Area Spline"
1451
  msgstr "نوار توپُر"
1452
 
1453
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:136
1454
  msgid "Column"
1455
  msgstr "ستونی"
1456
 
1457
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:137
1458
  msgid "Bar"
1459
  msgstr "شِمشی"
1460
 
1461
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:138
1462
  msgid "Scatter"
1463
  msgstr "پراکنده"
1464
 
1465
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:140
1466
  msgid "Chart type in view stats."
1467
  msgstr "نوع نمودار در نمایش آمار."
1468
 
1469
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:146
1470
  msgid "Include totals"
1471
  msgstr "جمع کل"
1472
 
1473
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
1474
  msgid ""
1475
  "Add a total line to charts with multiple values, like the search engine "
1476
  "referrals"
1477
  msgstr "اضافه شدن جمع کل به نمودار آمار ورودی از موتورهای جستجو"
1478
 
1479
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:162
1480
  msgid "Disable map"
1481
  msgstr "غیرفعال کردن نقشه"
1482
 
1483
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:168
1484
  msgid "Disable the map display"
1485
  msgstr "غیرفعال کردن نمایش نقشه"
1486
 
1487
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
1488
  msgid "Alternate map location"
1489
  msgstr "محل نمایش نقشه"
1490
 
1491
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:180
1492
  msgid ""
1493
  "Place the map above the recent visitors area instead of at the top of the "
1494
  "page."
1495
  msgstr "نمایش نقشه در بالای بازدیدکنندگان به جای نمایش آن در بالای برگه."
1496
 
1497
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:186
1498
  msgid "Get country location from Google"
1499
  msgstr "دریافت مختصات کشورها از گوگل"
1500
 
1501
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:192
1502
  msgid ""
1503
  "This feature may cause a performance degradation when viewing statistics."
1504
  msgstr "این ویژگی ممکن است مشاهده آمار را با کندی مواجه کند."
1505
 
1506
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:215
1507
  msgid "Time send"
1508
  msgstr "زمان ارسال"
1509
 
1510
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:221
1511
  msgid "Hourly"
1512
  msgstr "هرساعت"
1513
 
1514
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
1515
  msgid "Twice daily"
1516
  msgstr "2 بار در روز"
1517
 
1518
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:223
1519
  msgid "daily"
1520
  msgstr "روزانه"
1521
 
1522
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:225
1523
  msgid "Select when receiving statistics report."
1524
  msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
1525
 
1526
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:231
1527
  msgid "Send Statistical reporting to"
1528
  msgstr "ارسال گزارش آمار به"
1529
 
1530
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:237
1531
  msgid "Email"
1532
  msgstr "پست الکترونیک"
1533
 
1534
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:238
1535
  msgid "SMS"
1536
  msgstr "پیامک"
1537
 
1538
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
1539
  msgid "Type Select Get Status Report."
1540
  msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
1541
 
1542
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:243
1543
  #, php-format
1544
  msgid ""
1545
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
@@ -1548,15 +1612,15 @@ msgstr ""
1548
  "نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
1549
  "وردپرس</a> را نصب کنید."
1550
 
1551
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:250
1552
  msgid "Send Content Report"
1553
  msgstr "محتوای ارسال گزارش"
1554
 
1555
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:255
1556
  msgid "Enter the contents of the reports received."
1557
  msgstr "محتوای دریافت گزارش را وارد کنید."
1558
 
1559
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:257
1560
  msgid "Input data:"
1561
  msgstr "داده‌های ورودی:"
1562
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP Statistics\n"
6
+ "POT-Creation-Date: 2014-05-28 13:33+0330\n"
7
+ "PO-Revision-Date: 2014-05-28 13:33+0330\n"
8
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
19
  "content\\plugins\\wp-statistics\n"
20
 
21
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
22
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:235
23
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
24
  msgid "Statistical reporting"
25
  msgstr "گزارش آماری"
26
 
27
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
28
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
29
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
30
  msgid "Statistics"
31
  msgstr "آماره"
32
 
35
  msgstr "نمایش آمار سایت در ابزارک"
36
 
37
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
38
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:178
39
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
40
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
41
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
42
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:296
43
  msgid "User Online"
44
  msgstr "کاربران حاضر"
45
 
46
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
47
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
48
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:298
49
  msgid "Today Visit"
50
  msgstr "بازدید امروز"
51
 
52
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
53
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
54
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:297
55
  msgid "Today Visitor"
56
  msgstr "بازدیدکننده امروز"
57
 
58
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
59
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:300
60
  msgid "Yesterday Visit"
61
  msgstr "بازدید دیروز"
62
 
63
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
64
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
65
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:299
66
  msgid "Yesterday Visitor"
67
  msgstr "بازدید کننده دیروز"
68
 
83
 
84
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
85
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
86
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:302
87
  msgid "Total Visit"
88
  msgstr "کل بازدیدها"
89
 
90
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
91
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
92
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:301
93
  msgid "Total Visitor"
94
  msgstr "کل بازدیدکننده‌گان"
95
 
96
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
97
+ msgid "Search Engine referred"
 
98
  msgstr "ورودی موتور جستجو"
99
 
100
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
150
  msgid "Complete statistics for your blog."
151
  msgstr "آماری کامل برای وب‌لاگ شما."
152
 
153
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:66
154
  #, php-format
155
  msgid ""
156
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
159
  "امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
160
  "تنظیمات</a> آمارگیر مراجعه کنید."
161
 
162
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
163
  #, php-format
164
  msgid ""
165
  "GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
169
  "مراجعه کنید و این ویژگی را فعال کنید. (این ویژگی می‌تواند کشور بازدیدکنندگان "
170
  "را شناسایی کند.)"
171
 
172
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
173
  msgid "Overview"
174
  msgstr "مرور کلی"
175
 
176
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:128
177
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
178
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
179
  msgid "Browsers"
180
  msgstr "مرورگرها"
181
 
182
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
183
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
184
  msgid "Countries"
185
  msgstr "کشورها"
186
 
187
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
188
  msgid "Hits"
189
  msgstr "بازدیدها"
190
 
191
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
192
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
193
  msgid "Exclusions"
194
  msgstr "استثنائات"
195
 
196
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
197
  msgid "Referers"
198
  msgstr "ارجاع‌دهنده‌ها"
199
 
200
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:135
201
  msgid "Searches"
202
  msgstr "جستجوها"
203
 
204
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
205
  msgid "Search Words"
206
  msgstr "کلمات جستجو شده"
207
 
208
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
209
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
210
  msgid "Visitors"
211
  msgstr "بازدیدکننده‌گان"
212
 
213
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:139
214
  msgid "Optimization"
215
  msgstr "بهینه سازی"
216
 
217
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:140
218
  msgid "Settings"
219
  msgstr "تنظیمات"
220
 
221
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:183
222
  msgid "Today visitor"
223
  msgstr "بازدید کننده امروز"
224
 
225
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:188
226
  msgid "Today visit"
227
  msgstr "بازدید امروز"
228
 
229
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:193
230
  msgid "Yesterday visitor"
231
  msgstr "بازدید کننده دیروز"
232
 
233
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:198
234
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
235
  msgid "Yesterday visit"
236
  msgstr "بازدید دیروز"
237
 
238
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
239
  msgid "View Stats"
240
  msgstr "نمایش آمار"
241
 
242
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:265
243
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:331
244
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:421
245
  msgid "You do not have sufficient permissions to access this page."
246
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
247
 
248
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:277
249
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
250
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
251
 
252
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
253
  #, php-format
254
  msgid "Error downloading GeoIP database from: %s"
255
  msgstr "خطای دریافت پایگاه‌داده GeoIP از: %s"
256
 
257
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:383
258
  #, php-format
259
  msgid "Error could not open downloaded GeoIP database for reading: %s"
260
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای خواندن: %s"
261
 
262
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:389
263
  #, php-format
264
  msgid "Error could not open destination GeoIP database for writing %s"
265
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای نوشتن: %s"
266
 
267
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:402
268
  msgid "GeoIP Database updated successfully!"
269
  msgstr "پایگاه‌داده GeoIP با موفقیت به‌روز شد!"
270
 
466
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
467
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
468
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
469
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:195
470
  msgid "Map"
471
  msgstr "نقشه"
472
 
704
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
705
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
706
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
707
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:53
708
  msgid "Please select the desired items."
709
  msgstr "لطفا موارد مورد نظر را انتخاب کنید."
710
 
780
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
781
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
782
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
783
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:169
784
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
785
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
786
  msgid "Please select."
787
  msgstr "لطفا انتخاب کنید."
788
 
798
  msgid "Select the output file type."
799
  msgstr "نوع فایل خروجی را انتخاب کنید."
800
 
801
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:53
802
+ msgid "Include Header Row"
803
+ msgstr "شامل بودن سربرگ ردیف"
804
+
805
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:58
806
+ msgid "Include a header row as the first line of the exported file."
807
+ msgstr "شامل شدن سربرگ ردیف در خط اول فایل برون‌بری شده."
808
+
809
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:59
810
  msgid "Start Now!"
811
  msgstr "شروع کن!"
812
 
971
  msgstr "نگارش PHP در حال اجرای شما."
972
 
973
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
974
+ msgid "PHP Safe Mode"
975
+ msgstr "حالت ایمن PHP"
976
+
977
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
978
+ msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
979
+ msgstr "حالت ایمنی PHP فعال است. کدهای GeoIP در حالت امن پشتیبانی نمی‌شوند."
980
+
981
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
982
  msgid "jQuery Version"
983
  msgstr "نگارش جی‌کوئری"
984
 
985
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
986
  msgid "The jQuery version you are running."
987
  msgstr "نگارش جی‌کوئری در حال اجرای شما."
988
 
989
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:111
990
  msgid "cURL Version"
991
  msgstr "نسخه cURL"
992
 
993
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
994
  msgid "cURL not installed"
995
  msgstr "cURL نصب نیست"
996
 
997
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
998
  msgid ""
999
  "The PHP cURL Extension version you are running. cURL is required for the "
1000
  "GeoIP code, if it is not installed GeoIP will be disabled."
1001
  msgstr ""
1002
  "ماژول cURL در PHP شما در حال اجراست. اگر نصب نیست GeoIP غیرفعال خواهد شد."
1003
 
1004
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:122
1005
  msgid "BC Math"
1006
  msgstr "BC Math"
1007
 
1008
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
1009
  msgid "Installed"
1010
  msgstr "نصب شده"
1011
 
1012
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
1013
  msgid "Not installed"
1014
  msgstr "نصب نشده"
1015
 
1016
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:127
1017
  msgid ""
1018
  "If the PHP BC Math Extension is installed. BC Math is required for the "
1019
  "GeoIP code, if it is not installed GeoIP will be disabled."
1021
  "اگر BC Math در PHP نصب شده باشد. GeoIP برای کدکردن نیازمند آن است، اگر نصب "
1022
  "نیست، GeoIP غیرفعال خواهد شد."
1023
 
1024
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:132
1025
  msgid "Client Info"
1026
  msgstr "اطلاعات کاربر"
1027
 
1028
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:137
1029
  msgid "Client IP"
1030
  msgstr "آی‌پی کاربر"
1031
 
1032
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:142
1033
  msgid "The client IP address."
1034
  msgstr "آدرس آی‌پی کاربر."
1035
 
1036
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:148
1037
  msgid "User Agent"
1038
  msgstr "عامل کاربر"
1039
 
1040
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:153
1041
  msgid "The client user agent string."
1042
  msgstr "رشته‌ی عامل کاربری"
1043
 
1049
  msgid "Items"
1050
  msgstr "آیتم‌ها"
1051
 
1052
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
1053
+ msgid "Search Engine reffered"
1054
+ msgstr "ورودی موتور جستجو"
1055
+
1056
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
1057
  msgid "Select type of search engine"
1058
  msgstr "انتخاب نوع موتورجستجو"
1202
 
1203
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
1204
  msgid ""
1205
+ "A list of IP addresses and subnet masks (one per line) to exclude from "
1206
+ "statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
1207
+ "formats are accepted). To specify an IP address only, use a subnet value of "
1208
+ "32 or 255.255.255.255.255."
1209
  msgstr ""
1210
  "یک لیست از آدرس آی‌پی‌ و Subnet Maskهای (اختیاری) برای جلوگیری در محاسبه "
1211
  "آمارگیر (هردو فرمت 192.168.0.0/24 و 192.168.0.0/255.255.255.0 قابل قبول و در "
1245
  msgstr "نادیده گرفتن برگه‌های مدیریت برای نام‌نویسی به‌عنوان محاسبه در آمار"
1246
 
1247
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1248
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:149
1249
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1250
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:312
1251
  msgid "Update"
1252
  msgstr "به‌روز رسانی"
1253
 
1267
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
1268
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
1269
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
1270
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:127
1271
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:189
1272
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:205
1273
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:217
1274
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:229
1275
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:245
1276
  msgid "Active"
1277
  msgstr "فعال"
1278
 
1328
  msgstr ""
1329
  "به‌روز رسانی هر داده‌ی از دست‌رفته‌ی GeoIP بعد از دریافت پایگاه داده‌ی جدید."
1330
 
1331
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:116
1332
+ msgid "GeoIP collection is disabled due to the following reasons:"
1333
+ msgstr "مجموعه GeoIP با توجه به دلایل زیر غیرفعال شده است:"
1334
+
1335
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:119
1336
  #, php-format
1337
  msgid ""
1338
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1341
  "مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین "
1342
  "بودن نسخه PHP شما، غیرفعال است"
1343
 
1344
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:124
1345
  msgid ""
1346
  "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1347
  "your version of PHP!"
1349
  "مجموعه‌ی GeoIP نیاز به ماژول cURL در PHP دارد و نمی‌تواند در نگارش PHP شما "
1350
  "بارگزاری شود!"
1351
 
1352
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:130
1353
  msgid ""
1354
  "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1355
  "your version of PHP!"
1357
  "مجموعه‌ی GeoIP نیاز به ماژول BC Math در PHP دارد و نمی‌تواند در نگارش PHP شما "
1358
  "بارگزاری شود!"
1359
 
1360
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:136
1361
+ msgid ""
1362
+ "PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
1363
+ "mode enabled!"
1364
+ msgstr ""
1365
+ "حالت ایمنی PHP شناسایی نشد! مجموعه GeoIP توسط حالت ایمنی PHP پشتیبانی نمی‌شود!"
1366
+
1367
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1368
  msgid "Database Maintenance"
1369
  msgstr "تعمیر و نگه‌داری پایگاه‌داده"
1403
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
1404
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
1405
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
1406
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:246
1407
  msgid "Enable or disable this feature"
1408
  msgstr "فعال یا غیرفعال کردن این امکان"
1409
 
1457
  msgid "For each visit to account for several hits. Currently %s."
1458
  msgstr "ضریب محاسبه هر بازدید کننده را در آمار مشخص می‌کند. درحال حاضر %s است."
1459
 
1460
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:122
1461
+ msgid "Hide admin notices about non active features"
1462
+ msgstr "غیرفعال شدن اطلاعیه‌های مدیریت درمورد فعال بودن امکانات"
1463
+
1464
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:128
1465
+ msgid ""
1466
+ "By default WP Statistics displays an alert if any of the core features are "
1467
+ "disbaled on every admin page, this option will disable these notices."
1468
+ msgstr ""
1469
+ "به‌طور پیش‌فرض آماره‌وردپرس امکاناتی که در افزونه غیرفعال باشد را به صورت اخطار "
1470
+ "در برگه‌های مدیریت نمایان می‌کند، این گزینه این ویژگی را غیرفعال می‌کند."
1471
+
1472
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:133
1473
+ msgid "Search Enginges"
1474
+ msgstr "موتورهای جستجوگر"
1475
+
1476
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:138
1477
+ msgid ""
1478
+ "Disabling all search engines is not allowed, doing so will result in all "
1479
+ "search engines being active."
1480
+ msgstr ""
1481
+ "از کار انداختن موتورهای جستجویی که نیازی به آنها نیست، این عمل در نتیجه کل "
1482
+ "موتورهای جستجو تأثیر می‌گذارد."
1483
+
1484
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
1485
+ msgid "disable"
1486
+ msgstr "غیرفعال"
1487
+
1488
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:153
1489
+ #, php-format
1490
+ msgid "Disable %s from data collection and reporting."
1491
+ msgstr "غیرفعال کردن %s از جمع آوری داده‌ها و گزارش."
1492
+
1493
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:159
1494
  msgid "Charts"
1495
  msgstr "نمودار"
1496
 
1497
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:164
1498
  msgid "Chart type"
1499
  msgstr "نوع نمودار"
1500
 
1501
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:170
1502
  msgid "Line"
1503
  msgstr "خطی"
1504
 
1505
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:171
1506
  msgid "Spline"
1507
  msgstr "نوار باریک"
1508
 
1509
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:172
1510
  msgid "Area"
1511
  msgstr "خطی توپُر"
1512
 
1513
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:173
1514
  msgid "Area Spline"
1515
  msgstr "نوار توپُر"
1516
 
1517
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
1518
  msgid "Column"
1519
  msgstr "ستونی"
1520
 
1521
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:175
1522
  msgid "Bar"
1523
  msgstr "شِمشی"
1524
 
1525
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:176
1526
  msgid "Scatter"
1527
  msgstr "پراکنده"
1528
 
1529
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:178
1530
  msgid "Chart type in view stats."
1531
  msgstr "نوع نمودار در نمایش آمار."
1532
 
1533
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:184
1534
  msgid "Include totals"
1535
  msgstr "جمع کل"
1536
 
1537
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:190
1538
  msgid ""
1539
  "Add a total line to charts with multiple values, like the search engine "
1540
  "referrals"
1541
  msgstr "اضافه شدن جمع کل به نمودار آمار ورودی از موتورهای جستجو"
1542
 
1543
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:200
1544
  msgid "Disable map"
1545
  msgstr "غیرفعال کردن نقشه"
1546
 
1547
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:206
1548
  msgid "Disable the map display"
1549
  msgstr "غیرفعال کردن نمایش نقشه"
1550
 
1551
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:212
1552
  msgid "Alternate map location"
1553
  msgstr "محل نمایش نقشه"
1554
 
1555
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:218
1556
  msgid ""
1557
  "Place the map above the recent visitors area instead of at the top of the "
1558
  "page."
1559
  msgstr "نمایش نقشه در بالای بازدیدکنندگان به جای نمایش آن در بالای برگه."
1560
 
1561
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:224
1562
  msgid "Get country location from Google"
1563
  msgstr "دریافت مختصات کشورها از گوگل"
1564
 
1565
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:230
1566
  msgid ""
1567
  "This feature may cause a performance degradation when viewing statistics."
1568
  msgstr "این ویژگی ممکن است مشاهده آمار را با کندی مواجه کند."
1569
 
1570
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:253
1571
  msgid "Time send"
1572
  msgstr "زمان ارسال"
1573
 
1574
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
1575
  msgid "Hourly"
1576
  msgstr "هرساعت"
1577
 
1578
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
1579
  msgid "Twice daily"
1580
  msgstr "2 بار در روز"
1581
 
1582
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
1583
  msgid "daily"
1584
  msgstr "روزانه"
1585
 
1586
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
1587
  msgid "Select when receiving statistics report."
1588
  msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
1589
 
1590
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:269
1591
  msgid "Send Statistical reporting to"
1592
  msgstr "ارسال گزارش آمار به"
1593
 
1594
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:275
1595
  msgid "Email"
1596
  msgstr "پست الکترونیک"
1597
 
1598
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:276
1599
  msgid "SMS"
1600
  msgstr "پیامک"
1601
 
1602
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:278
1603
  msgid "Type Select Get Status Report."
1604
  msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
1605
 
1606
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:281
1607
  #, php-format
1608
  msgid ""
1609
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
1612
  "نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
1613
  "وردپرس</a> را نصب کنید."
1614
 
1615
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:288
1616
  msgid "Send Content Report"
1617
  msgstr "محتوای ارسال گزارش"
1618
 
1619
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:293
1620
  msgid "Enter the contents of the reports received."
1621
  msgstr "محتوای دریافت گزارش را وارد کنید."
1622
 
1623
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:295
1624
  msgid "Input data:"
1625
  msgstr "داده‌های ورودی:"
1626
 
languages/wp_statistics-fr_FR.mo CHANGED
Binary file
languages/wp_statistics-fr_FR.po CHANGED
@@ -1,992 +1,1553 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: wp-statistics\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-12-20 21:55+0330\n"
6
- "PO-Revision-Date: 2013-12-21 17:43+0100\n"
7
- "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
- "Language-Team: SuivezLeGeek.fr\n"
9
- "Language: fr\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:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-content"
15
- "\\plugins\\wp-statistics\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
- "X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
18
- "content\\plugins\\wp-statistics\n"
19
-
20
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
21
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
22
- msgid "Statistical reporting"
23
- msgstr "Rapports statistiques"
24
-
25
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
26
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
27
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:76
28
- msgid "Statistics"
29
- msgstr "Statistiques"
30
-
31
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
32
- msgid "Show site stats in sidebar"
33
- msgstr "Afficher les stats du site dans la barre latérale"
34
-
35
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
36
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:99
37
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
38
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
39
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:189
40
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
41
- msgid "User Online"
42
- msgstr "Utilisateurs en ligne "
43
-
44
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
45
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:191
46
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
47
- msgid "Today Visit"
48
- msgstr "Visites d'aujourd'hui "
49
-
50
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
51
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:190
52
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
53
- msgid "Today Visitor"
54
- msgstr "Visiteurs d'aujourd'hui "
55
-
56
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
57
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:193
58
- msgid "Yesterday Visit"
59
- msgstr "Visites d'hier "
60
-
61
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
62
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:192
63
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
64
- msgid "Yesterday Visitor"
65
- msgstr "Visiteurs d'hier "
66
-
67
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
68
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:24
69
- msgid "Week Visit"
70
- msgstr "Visites de la semaine "
71
-
72
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
73
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:27
74
- msgid "Month Visit"
75
- msgstr "Visites du mois "
76
-
77
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
78
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:30
79
- msgid "Years Visit"
80
- msgstr "Visites de l'année "
81
-
82
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
83
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:195
84
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
85
- msgid "Total Visit"
86
- msgstr "Totale des visites "
87
-
88
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
89
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:194
90
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
91
- msgid "Total Visitor"
92
- msgstr "Visiteurs totale "
93
-
94
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
95
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:71
96
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
97
- msgid "Search Engine reffered"
98
- msgstr "Référencement des moteurs de recherche "
99
-
100
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:105
101
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
102
- msgid "Total Posts"
103
- msgstr " Nombre d'articles "
104
-
105
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:112
106
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
107
- msgid "Total Pages"
108
- msgstr " Nombre de pages "
109
-
110
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:119
111
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
112
- msgid "Total Comments"
113
- msgstr "Nombre de commentaires "
114
-
115
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:126
116
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
117
- msgid "Total Spams"
118
- msgstr "Nombre de spams "
119
-
120
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:133
121
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
122
- msgid "Total Users"
123
- msgstr "Nombre d'utilisateurs "
124
-
125
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:140
126
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
127
- msgid "Average Posts"
128
- msgstr "Moyenne des articles "
129
-
130
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:147
131
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
132
- msgid "Average Comments"
133
- msgstr "Moyenne des commentaires "
134
-
135
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:154
136
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
137
- msgid "Average Users"
138
- msgstr "Moyenne des utilisateurs "
139
-
140
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:161
141
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
142
- msgid "Last Post Date"
143
- msgstr "Date du dernier article "
144
-
145
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:48
146
- #, php-format
147
- msgid ""
148
- "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
149
- "\">setting page</a> and enable statistics"
150
- msgstr ""
151
-
152
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:78
153
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
154
- msgid "View Stats"
155
- msgstr "Voir les stats"
156
-
157
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:79
158
- msgid "Optimization"
159
- msgstr "Optimisation"
160
-
161
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
162
- msgid "Settings"
163
- msgstr "Paramètres"
164
-
165
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
166
- msgid "Today visitor"
167
- msgstr "Visiteurs d'aujourd'hui "
168
-
169
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:109
170
- msgid "Today visit"
171
- msgstr "Visites d'aujourd'hui "
172
-
173
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:114
174
- msgid "Yesterday visitor"
175
- msgstr "Visiteurs d'hier "
176
-
177
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:119
178
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
179
- msgid "Yesterday visit"
180
- msgstr "Visites d'hier "
181
-
182
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:156
183
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
184
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:269
185
- msgid "You do not have sufficient permissions to access this page."
186
- msgstr ""
187
-
188
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:166
189
- msgid "Table plugin does not exist! Please disable and re-enable the plugin."
190
- msgstr ""
191
-
192
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
193
- msgid "Browser Statistics"
194
- msgstr ""
195
-
196
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
197
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:120
198
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:265
199
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
200
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:24
201
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:35
202
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:18
203
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:112
204
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:212
205
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:256
206
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:300
207
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:345
208
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:440
209
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:546
210
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:587
211
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
212
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
213
- msgid "Click to toggle"
214
- msgstr "Cliquez pour basculer"
215
-
216
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
217
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
218
- msgid "Browsers"
219
- msgstr "Navigateur"
220
-
221
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:46
222
- msgid "Browsers by Type"
223
- msgstr ""
224
-
225
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:90
226
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:188
227
- msgid "Browser share"
228
- msgstr ""
229
-
230
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:121
231
- msgid "Platform"
232
- msgstr ""
233
-
234
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:141
235
- msgid "Browsers by Platform"
236
- msgstr ""
237
-
238
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:185
239
- msgid "Platform share"
240
- msgstr ""
241
-
242
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:266
243
- #, php-format
244
- msgid "%s Version"
245
- msgstr "%s Version"
246
-
247
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:330
248
- msgid "Browser version share"
249
- msgstr ""
250
-
251
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
252
- msgid "Hit Statistics"
253
- msgstr ""
254
-
255
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
256
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:12
257
- msgid "10 Days"
258
- msgstr "10 Jours"
259
-
260
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
261
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:13
262
- msgid "20 Days"
263
- msgstr "20 Jours"
264
-
265
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
266
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:14
267
- msgid "30 Days"
268
- msgstr "30 Jours"
269
-
270
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
271
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
272
- msgid "2 Months"
273
- msgstr "2 Mois"
274
-
275
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
276
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
277
- msgid "3 Months"
278
- msgstr "3 Mois"
279
-
280
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
281
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
282
- msgid "6 Months"
283
- msgstr "6 Mois"
284
-
285
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
286
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
287
- msgid "9 Months"
288
- msgstr "9 Mois"
289
-
290
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
291
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
292
- msgid "1 Year"
293
- msgstr "1 An"
294
-
295
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
296
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:346
297
- msgid "Hits Statistical Chart"
298
- msgstr "Graphique des statistiques des clics"
299
-
300
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:43
301
- msgid "Hits chart in the last"
302
- msgstr ""
303
-
304
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:43
305
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:43
306
- msgid "days"
307
- msgstr "jours"
308
-
309
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
310
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:385
311
- msgid "Number of visits and visitors"
312
- msgstr "Nombre de visites et visiteurs"
313
-
314
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:93
315
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
316
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:411
317
- msgid "Visitor"
318
- msgstr "Visiteur"
319
-
320
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:103
321
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
322
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:421
323
- msgid "Visit"
324
- msgstr "Visite"
325
-
326
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
327
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
328
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
329
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
330
- msgid "To be added soon"
331
- msgstr ""
332
-
333
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
334
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:25
335
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:548
336
- msgid "Latest search words"
337
- msgstr "Derniers mots de recherche"
338
-
339
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
340
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
341
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:15
342
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
343
- msgid "All"
344
- msgstr "Tout"
345
-
346
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
347
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
348
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:81
349
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:506
350
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:568
351
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:93
352
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
353
- msgid "Google"
354
- msgstr "Google"
355
-
356
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:17
357
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
358
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
359
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:516
360
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:570
361
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:103
362
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
363
- msgid "Yahoo!"
364
- msgstr "Yahoo !"
365
-
366
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:18
367
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
368
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
369
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:526
370
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:572
371
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:113
372
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
373
- msgid "Bing"
374
- msgstr "Bing"
375
-
376
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:60
377
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
378
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:565
379
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:604
380
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:59
381
- msgid "Map"
382
- msgstr "Map"
383
-
384
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:83
385
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:100
386
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:105
387
- msgid "Page"
388
- msgstr "Page"
389
-
390
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:83
391
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:100
392
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:105
393
- msgid "From"
394
- msgstr "De"
395
-
396
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
397
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:36
398
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:589
399
- msgid "Recent Visitors"
400
- msgstr "Derniers visiteurs"
401
-
402
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:76
403
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:266
404
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
405
- msgid "Country"
406
- msgstr "Pays"
407
-
408
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:19
409
- msgid "Summary Statistics"
410
- msgstr "Résumé des statistiques"
411
-
412
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:35
413
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:76
414
- msgid "Today"
415
- msgstr "Aujourd'hui"
416
-
417
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:41
418
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
419
- msgid "Yesterday"
420
- msgstr "Hier"
421
-
422
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:47
423
- msgid "Week"
424
- msgstr "Semaine"
425
-
426
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:53
427
- msgid "Month"
428
- msgstr "Mois"
429
-
430
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:59
431
- msgid "Year"
432
- msgstr "Année"
433
-
434
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:65
435
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:99
436
- msgid "Total"
437
- msgstr "Total"
438
-
439
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:105
440
- #, php-format
441
- msgid ""
442
- "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
443
- msgstr ""
444
-
445
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:107
446
- msgid "(Adjustment)"
447
- msgstr ""
448
-
449
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
450
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
451
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
452
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:346
453
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:441
454
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:548
455
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:589
456
- msgid "(See more)"
457
- msgstr "(Voir plus)"
458
-
459
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:144
460
- msgid "Graph of Browsers"
461
- msgstr "Graphique des navigateurs"
462
-
463
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
464
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
465
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:28
466
- msgid "Top referring sites"
467
- msgstr "Top sites référents"
468
-
469
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:220
470
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:90
471
- msgid "Reference"
472
- msgstr ""
473
-
474
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:221
475
- msgid "Address"
476
- msgstr ""
477
-
478
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
479
- msgid "Top 10 Countries"
480
- msgstr "Top 10 des pays"
481
-
482
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:264
483
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:18
484
- msgid "Rank"
485
- msgstr "Rang"
486
-
487
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:265
488
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
489
- msgid "Flag"
490
- msgstr "Drapeau"
491
-
492
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:267
493
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
494
- msgid "Visitor Count"
495
- msgstr "Nombre de visiteurs"
496
-
497
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:301
498
- msgid "About plugin"
499
- msgstr "A propos du plugin"
500
-
501
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:304
502
- #, php-format
503
- msgid "Plugin version: %s"
504
- msgstr "Plugin version : %s"
505
-
506
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:305
507
- msgid "Translations"
508
- msgstr "Traductions"
509
-
510
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:306
511
- msgid "Support"
512
- msgstr "Facebook"
513
-
514
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:306
515
- msgid "Farsi"
516
- msgstr "Farsi"
517
-
518
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:307
519
- msgid "Facebook"
520
- msgstr "Facebook"
521
-
522
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:308
523
- msgid "Weblog"
524
- msgstr ""
525
-
526
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:313
527
- msgid ""
528
- "Please donate to WP Statistics. With your help WP Statistics will rule the "
529
- "world!"
530
- msgstr ""
531
-
532
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:316
533
- msgid "Donate"
534
- msgstr "Donner"
535
-
536
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:362
537
- msgid "Hits chart in the last 20 days"
538
- msgstr ""
539
-
540
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:441
541
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
542
- msgid "Search Engine Referrers Statistical Chart"
543
- msgstr ""
544
-
545
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:457
546
- msgid "Referrer search engine chart in the last 20 days"
547
- msgstr ""
548
-
549
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:480
550
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:67
551
- msgid "Number of referrer"
552
- msgstr ""
553
-
554
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:8
555
- msgid "Search Engine Referrers Statistics"
556
- msgstr ""
557
-
558
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:43
559
- msgid "Referrer search engine chart in the last"
560
- msgstr ""
561
-
562
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:9
563
- msgid "Top Countries"
564
- msgstr "Principaux pays"
565
-
566
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
567
- msgid "Referring sites from"
568
- msgstr ""
569
-
570
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
571
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
572
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
573
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
574
- msgid "Access denied!"
575
- msgstr "Accès refusé !"
576
-
577
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
578
- #, php-format
579
- msgid "<code>%s</code> agent data deleted successfully."
580
- msgstr ""
581
-
582
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
583
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
584
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:23
585
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
586
- msgid "Please select the desired items."
587
- msgstr ""
588
-
589
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
590
- #, php-format
591
- msgid "<code>%s</code> platform data deleted successfully."
592
- msgstr ""
593
-
594
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:15
595
- #, php-format
596
- msgid "<code>%s</code> table data deleted successfully."
597
- msgstr ""
598
-
599
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:10
600
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:35
601
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:62
602
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
603
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:35
604
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:62
605
- msgid "Are you sure?"
606
- msgstr "Etes-vous sûr ?"
607
-
608
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:120
609
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
610
- msgid "Resources"
611
- msgstr ""
612
-
613
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:125
614
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:130
615
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:97
616
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:102
617
- msgid "Memory usage in PHP"
618
- msgstr "Utilisation de la mémoire PHP"
619
-
620
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:129
621
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:101
622
- msgid "Byte"
623
- msgstr "Octet"
624
-
625
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:136
626
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:108
627
- #, php-format
628
- msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
629
- msgstr ""
630
-
631
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:140
632
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:151
633
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:162
634
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:112
635
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:123
636
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:134
637
- msgid "Row"
638
- msgstr ""
639
-
640
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:141
641
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:152
642
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:163
643
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:113
644
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:124
645
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:135
646
- msgid "Number of rows"
647
- msgstr ""
648
-
649
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:147
650
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:119
651
- #, php-format
652
- msgid "Number of rows in the <code>%sstatistics_visit</code> table"
653
- msgstr ""
654
-
655
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:158
656
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:130
657
- #, php-format
658
- msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
659
- msgstr ""
660
-
661
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:168
662
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:140
663
- msgid "Export"
664
- msgstr ""
665
-
666
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:173
667
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:145
668
- msgid "Export from"
669
- msgstr ""
670
-
671
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:178
672
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:194
673
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:216
674
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:239
675
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:263
676
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:150
677
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:166
678
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:188
679
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:211
680
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:235
681
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:114
682
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
683
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:167
684
- msgid "Please select."
685
- msgstr "Sélectionnez une valeur"
686
-
687
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:183
688
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:155
689
- msgid "Select the table for the output file."
690
- msgstr ""
691
-
692
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:189
693
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:161
694
- msgid "Export To"
695
- msgstr ""
696
-
697
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:200
698
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:172
699
- msgid "Select the output file type."
700
- msgstr ""
701
-
702
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:201
703
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:173
704
- msgid "Start Now!"
705
- msgstr "Commencez dès maintenant !"
706
-
707
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:206
708
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:178
709
- msgid "Empty"
710
- msgstr "Vide"
711
-
712
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:211
713
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:183
714
- msgid "Empty Table"
715
- msgstr "Tableau vide"
716
-
717
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:221
718
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:193
719
- msgid "All data table will be lost."
720
- msgstr ""
721
-
722
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:222
723
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:194
724
- msgid "Clear now!"
725
- msgstr "Effacer maintenant !"
726
-
727
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:229
728
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:201
729
- msgid "Delete User Agent Types"
730
- msgstr ""
731
-
732
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:234
733
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:206
734
- msgid "Delete Agents"
735
- msgstr ""
736
-
737
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:249
738
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:221
739
- msgid "All visitor data will be lost for this agent type."
740
- msgstr ""
741
-
742
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:250
743
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:274
744
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:222
745
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:246
746
- msgid "Delete now!"
747
- msgstr "Supprimer maintenant !"
748
-
749
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:258
750
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:230
751
- msgid "Delete Platforms"
752
- msgstr ""
753
-
754
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:273
755
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:245
756
- msgid "All visitor data will be lost for this platform type."
757
- msgstr ""
758
-
759
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:282
760
- msgid "GeoIP Options"
761
- msgstr "Options GeoIP"
762
-
763
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:287
764
- msgid "Populate Location"
765
- msgstr "Remplissez Lieu"
766
-
767
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:291
768
- msgid "Populate now!"
769
- msgstr "Remplissez maintenant !"
770
-
771
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:292
772
- msgid "Populate any missing location fields, this may take a while."
773
- msgstr ""
774
-
775
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:15
776
- msgid "General Settings"
777
- msgstr "Paramètres"
778
-
779
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:25
780
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:37
781
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:49
782
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:61
783
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
784
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:220
785
- msgid "Active"
786
- msgstr "Actif"
787
-
788
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
789
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
790
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
791
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
792
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:221
793
- msgid "Enable or disable this feature"
794
- msgstr ""
795
-
796
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
797
- msgid "Visits"
798
- msgstr "Visites"
799
-
800
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
801
- msgid "Visitors"
802
- msgstr "Visiteurs"
803
-
804
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
805
- msgid "Store entire user agent string"
806
- msgstr ""
807
-
808
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
809
- msgid "Only enabled for debugging"
810
- msgstr ""
811
-
812
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:68
813
- msgid "Check for online users every"
814
- msgstr "Vérifier les utilisateurs en ligne toute les"
815
-
816
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:73
817
- msgid "Secound"
818
- msgstr "Seconde"
819
-
820
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:74
821
- #, php-format
822
- msgid "Time for the check accurate online user in the site. Now: %s Second"
823
- msgstr ""
824
-
825
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:80
826
- msgid "Show stats in menu bar"
827
- msgstr ""
828
-
829
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:85
830
- msgid "No"
831
- msgstr "Non"
832
-
833
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
834
- msgid "Yes"
835
- msgstr "Oui"
836
-
837
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:88
838
- msgid "Show stats in admin menu bar"
839
- msgstr ""
840
-
841
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:94
842
- msgid "Coefficient per visitor"
843
- msgstr ""
844
-
845
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
846
- #, php-format
847
- msgid "For each visit to account for several hits. Currently %s."
848
- msgstr ""
849
-
850
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
851
- msgid "Chart Settings"
852
- msgstr ""
853
-
854
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
855
- msgid "Chart type"
856
- msgstr ""
857
-
858
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:115
859
- msgid "Line"
860
- msgstr "Ligne"
861
-
862
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:116
863
- msgid "Spline"
864
- msgstr ""
865
-
866
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:117
867
- msgid "Area"
868
- msgstr ""
869
-
870
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:118
871
- msgid "Area Spline"
872
- msgstr ""
873
-
874
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:119
875
- msgid "Column"
876
- msgstr "Colonne"
877
-
878
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
879
- msgid "Bar"
880
- msgstr ""
881
-
882
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
883
- msgid "Scatter"
884
- msgstr ""
885
-
886
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
887
- msgid "Chart type in view stats."
888
- msgstr ""
889
-
890
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:128
891
- msgid "Statistical reporting settings"
892
- msgstr ""
893
-
894
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:146
895
- msgid "Time send"
896
- msgstr "Temps d'envoi"
897
-
898
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:152
899
- msgid "Hourly"
900
- msgstr "Une fois par heure"
901
-
902
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
903
- msgid "Twice daily"
904
- msgstr "Deux fois par jour"
905
-
906
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:154
907
- msgid "daily"
908
- msgstr "quotidien"
909
-
910
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
911
- msgid "Select when receiving statistics report."
912
- msgstr ""
913
-
914
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:162
915
- msgid "Send Statistical reporting to"
916
- msgstr ""
917
-
918
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:168
919
- msgid "Email"
920
- msgstr "Email"
921
-
922
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:169
923
- msgid "SMS"
924
- msgstr "SMS"
925
-
926
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
927
- msgid "Type Select Get Status Report."
928
- msgstr ""
929
-
930
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
931
- #, php-format
932
- msgid ""
933
- "Note: To send SMS text messages please install the <a href=\"%s\" target="
934
- "\"_blank\">Wordpress SMS</a> plugin."
935
- msgstr ""
936
-
937
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:181
938
- msgid "Send Content Report"
939
- msgstr "Envoyer un rapport contenu"
940
-
941
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:186
942
- msgid "Enter the contents of the reports received."
943
- msgstr "Entrez le contenu des rapports reçus."
944
-
945
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:188
946
- msgid "Input data:"
947
- msgstr "données d'entrée :"
948
-
949
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:201
950
- msgid "GeoIP settings"
951
- msgstr "Paramètres GeoIP"
952
-
953
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:215
954
- msgid "GeoIP collection"
955
- msgstr "Collection GeoIP"
956
-
957
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:227
958
- msgid "Update GeoIP Info"
959
- msgstr "Mise à jour des infos GeoIP"
960
-
961
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:232
962
- msgid "Download GeoIP Database"
963
- msgstr "Télécharger la base de données GeoIP"
964
-
965
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:233
966
- msgid "Save changes on this page to download the update."
967
- msgstr ""
968
- "Enregistrer les modifications sur cette page pour télécharger la mise à jour."
969
-
970
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
971
- msgid "Name"
972
- msgstr "Nom"
973
-
974
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
975
- msgid "Items"
976
- msgstr "Eléments"
977
-
978
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
979
- msgid "Select type of search engine"
980
- msgstr "Sélectionnez le moteur de recherche"
981
-
982
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
983
- msgid "Type date for last update"
984
- msgstr "Entrez la date de dernière mise à jour"
985
-
986
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
987
- msgid "English"
988
- msgstr "Anglais"
989
-
990
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
991
- msgid "Persian"
992
- msgstr "Perse"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp-statistics\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-03-10 10:55+0330\n"
6
+ "PO-Revision-Date: 2014-03-23 11:09+0100\n"
7
+ "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
+ "Language-Team: SuivezLeGeek.fr\n"
9
+ "Language: fr\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:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-content"
15
+ "\\plugins\\wp-statistics\n"
16
+ "X-Generator: Poedit 1.6.4\n"
17
+ "X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
18
+ "content\\plugins\\wp-statistics\n"
19
+
20
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
21
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
22
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
23
+ msgid "Statistical reporting"
24
+ msgstr "Rapports statistiques"
25
+
26
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
27
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
28
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:122
29
+ msgid "Statistics"
30
+ msgstr "Statistiques"
31
+
32
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
33
+ msgid "Show site stats in sidebar"
34
+ msgstr "Afficher les stats du site dans la barre latérale"
35
+
36
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
37
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:175
38
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
39
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
40
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
41
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
42
+ msgid "User Online"
43
+ msgstr "Utilisateurs en ligne "
44
+
45
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
46
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
47
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
48
+ msgid "Today Visit"
49
+ msgstr "Visites d'aujourd'hui "
50
+
51
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
52
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
53
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
54
+ msgid "Today Visitor"
55
+ msgstr "Visiteurs d'aujourd'hui "
56
+
57
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
58
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:262
59
+ msgid "Yesterday Visit"
60
+ msgstr "Visites d'hier "
61
+
62
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
63
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
64
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
65
+ msgid "Yesterday Visitor"
66
+ msgstr "Visiteurs d'hier "
67
+
68
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
69
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
70
+ msgid "Week Visit"
71
+ msgstr "Visites de la semaine "
72
+
73
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
74
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
75
+ msgid "Month Visit"
76
+ msgstr "Visites du mois "
77
+
78
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
79
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:30
80
+ msgid "Years Visit"
81
+ msgstr "Visites de l'année "
82
+
83
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
84
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
85
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:264
86
+ msgid "Total Visit"
87
+ msgstr "Totale des visites "
88
+
89
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
90
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
91
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
92
+ msgid "Total Visitor"
93
+ msgstr "Visiteurs totale "
94
+
95
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
96
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
97
+ msgid "Search Engine reffered"
98
+ msgstr "Référencement des moteurs de recherche "
99
+
100
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
101
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:59
102
+ msgid "Total Posts"
103
+ msgstr " Nombre d'articles "
104
+
105
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:104
106
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:62
107
+ msgid "Total Pages"
108
+ msgstr " Nombre de pages "
109
+
110
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:111
111
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:65
112
+ msgid "Total Comments"
113
+ msgstr "Nombre de commentaires "
114
+
115
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:118
116
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:68
117
+ msgid "Total Spams"
118
+ msgstr "Nombre de spams "
119
+
120
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:125
121
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:71
122
+ msgid "Total Users"
123
+ msgstr "Nombre d'utilisateurs "
124
+
125
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:132
126
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:74
127
+ msgid "Average Posts"
128
+ msgstr "Moyenne des articles "
129
+
130
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:139
131
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:77
132
+ msgid "Average Comments"
133
+ msgstr "Moyenne des commentaires "
134
+
135
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:146
136
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:80
137
+ msgid "Average Users"
138
+ msgstr "Moyenne des utilisateurs "
139
+
140
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:153
141
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:83
142
+ msgid "Last Post Date"
143
+ msgstr "Date du dernier article "
144
+
145
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:23
146
+ msgid "Wordpress Statistics"
147
+ msgstr "Wordpress Statistics"
148
+
149
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:24
150
+ msgid "Complete statistics for your blog."
151
+ msgstr "Statistique complète pour votre blog."
152
+
153
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
154
+ #, php-format
155
+ msgid ""
156
+ "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
157
+ "\">setting page</a> and enable statistics"
158
+ msgstr ""
159
+
160
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
161
+ #, php-format
162
+ msgid ""
163
+ "GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
164
+ "GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
165
+ msgstr ""
166
+
167
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
168
+ msgid "Overview"
169
+ msgstr "Vue d'ensemble"
170
+
171
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
172
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
173
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
174
+ msgid "Browsers"
175
+ msgstr "Navigateur"
176
+
177
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
178
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
179
+ msgid "Countries"
180
+ msgstr "Pays"
181
+
182
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:129
183
+ msgid "Hits"
184
+ msgstr "Clics"
185
+
186
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
187
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
188
+ msgid "Exclusions"
189
+ msgstr "Exclure"
190
+
191
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
192
+ msgid "Referers"
193
+ msgstr "Sites réferents"
194
+
195
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
196
+ msgid "Searches"
197
+ msgstr "Moteurs de recherche"
198
+
199
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
200
+ msgid "Search Words"
201
+ msgstr "Mots de recherche"
202
+
203
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
204
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
205
+ msgid "Visitors"
206
+ msgstr "Visiteurs"
207
+
208
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
209
+ msgid "Optimization"
210
+ msgstr "Optimisation"
211
+
212
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
213
+ msgid "Settings"
214
+ msgstr "Paramètres"
215
+
216
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:180
217
+ msgid "Today visitor"
218
+ msgstr "Visiteurs d'aujourd'hui "
219
+
220
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:185
221
+ msgid "Today visit"
222
+ msgstr "Visites d'aujourd'hui "
223
+
224
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:190
225
+ msgid "Yesterday visitor"
226
+ msgstr "Visiteurs d'hier "
227
+
228
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
229
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
230
+ msgid "Yesterday visit"
231
+ msgstr "Visites d'hier "
232
+
233
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:200
234
+ msgid "View Stats"
235
+ msgstr "Voir les stats"
236
+
237
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
238
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
239
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:416
240
+ msgid "You do not have sufficient permissions to access this page."
241
+ msgstr ""
242
+ "Vous n'avez pas les permissions suffisantes pour avoir accès à cette page."
243
+
244
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:274
245
+ msgid "Table plugin does not exist! Please disable and re-enable the plugin."
246
+ msgstr "Le plug-in de la table n'existe pas! Désactivez-le et réactivez-le."
247
+
248
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
249
+ #, php-format
250
+ msgid "Error downloading GeoIP database from: %s"
251
+ msgstr "Error downloading GeoIP database from: %s"
252
+
253
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
254
+ #, php-format
255
+ msgid "Error could not open downloaded GeoIP database for reading: %s"
256
+ msgstr ""
257
+
258
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:384
259
+ #, php-format
260
+ msgid "Error could not open destination GeoIP database for writing %s"
261
+ msgstr ""
262
+
263
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
264
+ msgid "GeoIP Database updated successfully!"
265
+ msgstr "La base de données GeoIP a été mise à jour avec succès!"
266
+
267
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:19
268
+ msgid ""
269
+ "Unable to load the GeoIP database, make sure you have downloaded it in the "
270
+ "settings page."
271
+ msgstr ""
272
+
273
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:36
274
+ #, php-format
275
+ msgid "Updated %s GeoIP records in the visitors database."
276
+ msgstr ""
277
+
278
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:17
279
+ msgid "Browser Statistics"
280
+ msgstr "Statistique Navigateur"
281
+
282
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
283
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
284
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
285
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
286
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
287
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
288
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:59
289
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
290
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:141
291
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:241
292
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
293
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:331
294
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
295
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:472
296
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:582
297
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:631
298
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:680
299
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
300
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
301
+ msgid "Click to toggle"
302
+ msgstr "Cliquez pour basculer"
303
+
304
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:55
305
+ msgid "Browsers by Type"
306
+ msgstr "Type de Navigateur"
307
+
308
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
309
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
310
+ msgid "Browser share"
311
+ msgstr "Pourcentage Navigateur"
312
+
313
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:130
314
+ msgid "Platform"
315
+ msgstr "Système Exploitation"
316
+
317
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:150
318
+ msgid "Browsers by Platform"
319
+ msgstr "Navigateurs par Système Exploitation"
320
+
321
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:194
322
+ msgid "Platform share"
323
+ msgstr "Pourcentage par Système Eploitation"
324
+
325
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:274
326
+ #, php-format
327
+ msgid "%s Version"
328
+ msgstr "%s Version"
329
+
330
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:338
331
+ msgid "Browser version share"
332
+ msgstr "Pourcentage de navigateur par version"
333
+
334
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
335
+ msgid ""
336
+ "Attention: Exclusion are not currently set to be recorded, the results below "
337
+ "may not reflect current statistics!"
338
+ msgstr ""
339
+
340
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:50
341
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
342
+ msgid "Hit Statistics"
343
+ msgstr "Statistiques des clics"
344
+
345
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:53
346
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
347
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
348
+ msgid "10 Days"
349
+ msgstr "10 Jours"
350
+
351
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
352
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
353
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
354
+ msgid "20 Days"
355
+ msgstr "20 Jours"
356
+
357
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:55
358
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
359
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
360
+ msgid "30 Days"
361
+ msgstr "30 Jours"
362
+
363
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
364
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
365
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
366
+ msgid "2 Months"
367
+ msgstr "2 Mois"
368
+
369
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
370
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
371
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
372
+ msgid "3 Months"
373
+ msgstr "3 Mois"
374
+
375
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
376
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
377
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
378
+ msgid "6 Months"
379
+ msgstr "6 Mois"
380
+
381
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
382
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
383
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
384
+ msgid "9 Months"
385
+ msgstr "9 Mois"
386
+
387
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
388
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
389
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
390
+ msgid "1 Year"
391
+ msgstr "1 An"
392
+
393
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
394
+ #, php-format
395
+ msgid "Total Exclusions: %s"
396
+ msgstr ""
397
+
398
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:71
399
+ msgid "Exclusions Statistical Chart"
400
+ msgstr "Exclusions Statistical Chart"
401
+
402
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
403
+ msgid "Excluded hits chart in the last"
404
+ msgstr "Excluded hits chart in the last"
405
+
406
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
407
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
408
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
409
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
410
+ msgid "days"
411
+ msgstr "jours"
412
+
413
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:111
414
+ msgid "Number of excluded hits"
415
+ msgstr ""
416
+
417
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
418
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
419
+ msgid "Hits Statistical Chart"
420
+ msgstr "Graphique des statistiques des clics"
421
+
422
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
423
+ msgid "Hits chart in the last"
424
+ msgstr "Graphique des statistiques des clics depuis"
425
+
426
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
427
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:417
428
+ msgid "Number of visits and visitors"
429
+ msgstr "Nombre de visites et visiteurs"
430
+
431
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:102
432
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:42
433
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:443
434
+ msgid "Visitor"
435
+ msgstr "Visiteur"
436
+
437
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:112
438
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
439
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:453
440
+ msgid "Visit"
441
+ msgstr "Visite"
442
+
443
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
444
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
445
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
446
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
447
+ msgid "To be added soon"
448
+ msgstr ""
449
+
450
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
451
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
452
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
453
+ msgid "Latest search words"
454
+ msgstr "Derniers mots de recherche"
455
+
456
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:103
457
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
458
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
459
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
460
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
461
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:157
462
+ msgid "Map"
463
+ msgstr "Map"
464
+
465
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
466
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
467
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
468
+ msgid "Page"
469
+ msgstr "Page"
470
+
471
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
472
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
473
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
474
+ msgid "From"
475
+ msgstr "De"
476
+
477
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
478
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
479
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
480
+ msgid "Recent Visitors"
481
+ msgstr "Derniers visiteurs"
482
+
483
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:34
484
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
485
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:141
486
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:55
487
+ msgid "All"
488
+ msgstr "Tout"
489
+
490
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
491
+ msgid "Search for"
492
+ msgstr "Recherche"
493
+
494
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
495
+ msgid "Summary Statistics"
496
+ msgstr "Résumé des statistiques"
497
+
498
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:47
499
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:92
500
+ msgid "Today"
501
+ msgstr "Aujourd'hui"
502
+
503
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:53
504
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
505
+ msgid "Yesterday"
506
+ msgstr "Hier"
507
+
508
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:59
509
+ msgid "Week"
510
+ msgstr "Semaine"
511
+
512
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:65
513
+ msgid "Month"
514
+ msgstr "Mois"
515
+
516
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:71
517
+ msgid "Year"
518
+ msgstr "Année"
519
+
520
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
521
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
522
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:559
523
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:123
524
+ msgid "Total"
525
+ msgstr "Total"
526
+
527
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
528
+ msgid "Search Engine Referrals"
529
+ msgstr "Référence des moteurs de recherche"
530
+
531
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:111
532
+ msgid "Daily Total"
533
+ msgstr "Total du jour"
534
+
535
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:125
536
+ msgid "Current Time and Date"
537
+ msgstr "Heure et date actuelle"
538
+
539
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:125
540
+ msgid "(Adjustment)"
541
+ msgstr "(Options)"
542
+
543
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:129
544
+ #, fuzzy, php-format
545
+ msgid "Date: <code dir=\"ltr\">%s</code></code>"
546
+ msgstr ""
547
+ "Date aujourd'hui: <code dir=\"ltr\">%s</code>, Heure: <code dir=\"ltr\">%s</"
548
+ "code>"
549
+
550
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:133
551
+ #, php-format
552
+ msgid "Time: <code dir=\"ltr\">%s</code>"
553
+ msgstr "Heure: <code dir=\"ltr\">%s</code>"
554
+
555
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
556
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
557
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
558
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
559
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
560
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
561
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
562
+ msgid "More"
563
+ msgstr "Voir plus"
564
+
565
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
566
+ msgid "Graph of Browsers"
567
+ msgstr "Graphique des navigateurs"
568
+
569
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
570
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:34
571
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:49
572
+ msgid "Top referring sites"
573
+ msgstr "Top sites référents"
574
+
575
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
576
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:117
577
+ msgid "Reference"
578
+ msgstr "Référence"
579
+
580
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:250
581
+ msgid "Address"
582
+ msgstr "Adresse"
583
+
584
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
585
+ msgid "Top 10 Countries"
586
+ msgstr "Top 10 des pays"
587
+
588
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:294
589
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:28
590
+ msgid "Rank"
591
+ msgstr "Rang"
592
+
593
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:295
594
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:29
595
+ msgid "Flag"
596
+ msgstr "Drapeau"
597
+
598
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:296
599
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
600
+ msgid "Country"
601
+ msgstr "Pays"
602
+
603
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:297
604
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
605
+ msgid "Visitor Count"
606
+ msgstr "Nombre de visiteurs"
607
+
608
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:332
609
+ msgid "About plugin"
610
+ msgstr "A propos du plugin"
611
+
612
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:335
613
+ #, php-format
614
+ msgid "Plugin version: %s"
615
+ msgstr "Plugin version : %s"
616
+
617
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:336
618
+ msgid "Translations"
619
+ msgstr "Traductions"
620
+
621
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
622
+ msgid "Support"
623
+ msgstr "Facebook"
624
+
625
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
626
+ msgid "Farsi"
627
+ msgstr "Farsi"
628
+
629
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
630
+ msgid "Facebook"
631
+ msgstr "Facebook"
632
+
633
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
634
+ msgid "Weblog"
635
+ msgstr "Blog"
636
+
637
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:344
638
+ msgid ""
639
+ "Please donate to WP Statistics. With your help WP Statistics will rule the "
640
+ "world!"
641
+ msgstr ""
642
+ "Faites s'il vous plaît un don à Statistique WP. Avec votre aide WP "
643
+ "Statistique gouvernera le monde!"
644
+
645
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:357
646
+ msgid "Donate"
647
+ msgstr "Donner"
648
+
649
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:394
650
+ msgid "Hits chart in the last 20 days"
651
+ msgstr "Statistiques des clics depuis les 20 derniers jours"
652
+
653
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
654
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
655
+ msgid "Search Engine Referrers Statistical Chart"
656
+ msgstr "Graphique des passages des moteurs de recherche"
657
+
658
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:489
659
+ msgid "Referrer search engine chart in the last 20 days"
660
+ msgstr "Passages des moteurs de recherche depuis les 20 derniers jours"
661
+
662
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:512
663
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
664
+ msgid "Number of referrer"
665
+ msgstr "Total passage des moteurs de recherche"
666
+
667
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:681
668
+ msgid "Today visitors on map"
669
+ msgstr "Visiteurs d'aujourd'hui sur la map"
670
+
671
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
672
+ msgid "Search Engine Referrers Statistics"
673
+ msgstr "Statistique Passage moteur de recherche"
674
+
675
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
676
+ msgid "Referrer search engine chart in the last"
677
+ msgstr ""
678
+
679
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
680
+ msgid "Top Countries"
681
+ msgstr "Principaux pays"
682
+
683
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:47
684
+ msgid "Referring sites from"
685
+ msgstr "Référence de sites de"
686
+
687
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
688
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
689
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
690
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
691
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:5
692
+ msgid "Access denied!"
693
+ msgstr "Accès refusé !"
694
+
695
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
696
+ #, php-format
697
+ msgid "<code>%s</code> agent data deleted successfully."
698
+ msgstr ""
699
+
700
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
701
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
702
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
703
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
704
+ msgid "Please select the desired items."
705
+ msgstr ""
706
+
707
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
708
+ #, php-format
709
+ msgid "<code>%s</code> platform data deleted successfully."
710
+ msgstr ""
711
+
712
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:47
713
+ #, php-format
714
+ msgid "<code>%s</code> table data deleted successfully."
715
+ msgstr ""
716
+
717
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:51
718
+ #, php-format
719
+ msgid "Error, %s not emptied!"
720
+ msgstr ""
721
+
722
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:17
723
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:27
724
+ #, php-format
725
+ msgid ""
726
+ "<code>%s</code> data older than <code>%s</code> days purged successfully."
727
+ msgstr ""
728
+
729
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
730
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
731
+ #, php-format
732
+ msgid "No records found to purge from <code>%s</code>!"
733
+ msgstr ""
734
+
735
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:35
736
+ msgid "Please select a value over 30 days."
737
+ msgstr "Choisissez s'il vous plaît une valeur de plus de 30 jours."
738
+
739
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:3
740
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:116
741
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:11
742
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:3
743
+ #, fuzzy
744
+ msgid "Resources/Information"
745
+ msgstr "Ressources"
746
+
747
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:4
748
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:15
749
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:117
750
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:12
751
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:4
752
+ msgid "Export"
753
+ msgstr "Exporter"
754
+
755
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:5
756
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:118
757
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:13
758
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:5
759
+ msgid "Purging"
760
+ msgstr "Purger"
761
+
762
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:7
763
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:120
764
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:15
765
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:7
766
+ msgid "Updates"
767
+ msgstr "Mise à jours"
768
+
769
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:20
770
+ msgid "Export from"
771
+ msgstr "Exportation de"
772
+
773
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:25
774
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:41
775
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
776
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
777
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
778
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
779
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:220
780
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:236
781
+ msgid "Please select."
782
+ msgstr "Sélectionnez une valeur"
783
+
784
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:30
785
+ msgid "Select the table for the output file."
786
+ msgstr "Choisissez la table pour le fichier de sortie."
787
+
788
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:36
789
+ msgid "Export To"
790
+ msgstr "Exportation depuis"
791
+
792
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:47
793
+ msgid "Select the output file type."
794
+ msgstr ""
795
+
796
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:48
797
+ msgid "Start Now!"
798
+ msgstr "Commencez dès maintenant !"
799
+
800
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:10
801
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:36
802
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:62
803
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:90
804
+ msgid "Are you sure?"
805
+ msgstr "Etes-vous sûr ?"
806
+
807
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:127
808
+ msgid "Data"
809
+ msgstr "Données"
810
+
811
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:132
812
+ msgid "Empty Table"
813
+ msgstr "Tableau vide"
814
+
815
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:143
816
+ msgid "All data table will be lost."
817
+ msgstr "Toute la table de données sera perdue."
818
+
819
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:144
820
+ msgid "Clear now!"
821
+ msgstr "Effacer maintenant !"
822
+
823
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:152
824
+ msgid "Purge records older than"
825
+ msgstr "Supprimer les rapports plus vieux que"
826
+
827
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:158
828
+ msgid ""
829
+ "Deleted user statistics data older than the selected number of days. "
830
+ "Minimum value is 30 days."
831
+ msgstr ""
832
+
833
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:159
834
+ msgid "Purge now!"
835
+ msgstr "Supprimer maintenant !"
836
+
837
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:166
838
+ msgid "Delete User Agent Types"
839
+ msgstr ""
840
+
841
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:171
842
+ msgid "Delete Agents"
843
+ msgstr ""
844
+
845
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:186
846
+ msgid "All visitor data will be lost for this agent type."
847
+ msgstr ""
848
+
849
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:187
850
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:211
851
+ msgid "Delete now!"
852
+ msgstr "Supprimer maintenant !"
853
+
854
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:195
855
+ msgid "Delete Platforms"
856
+ msgstr ""
857
+
858
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:210
859
+ msgid "All visitor data will be lost for this platform type."
860
+ msgstr ""
861
+
862
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
863
+ #, fuzzy
864
+ msgid "GeoIP File Info"
865
+ msgstr "Mise à jour des infos GeoIP"
866
+
867
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:27
868
+ msgid "File Date"
869
+ msgstr "Date du fichier"
870
+
871
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:36
872
+ msgid "Database file does not exist."
873
+ msgstr "Le fichier de la base de données n'existe pas."
874
+
875
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:40
876
+ msgid "The file date of the GeoIP database."
877
+ msgstr "Date du fichier de la base de données GeoIP."
878
+
879
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:46
880
+ msgid "File Size"
881
+ msgstr "Taille du fichier"
882
+
883
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
884
+ msgid "The file size of the GeoIP database."
885
+ msgstr "Taille du fichier de la base de données GeoIP."
886
+
887
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
888
+ msgid "GeoIP Options"
889
+ msgstr "Options GeoIP"
890
+
891
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:77
892
+ #, fuzzy
893
+ msgid "Update Now!"
894
+ msgstr "Commencez dès maintenant !"
895
+
896
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:78
897
+ msgid "Get updates for the location and the countries, this may take a while"
898
+ msgstr ""
899
+
900
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:14
901
+ msgid "Resources"
902
+ msgstr "Ressources"
903
+
904
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:19
905
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:24
906
+ msgid "Memory usage in PHP"
907
+ msgstr "Utilisation de la mémoire PHP"
908
+
909
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:23
910
+ msgid "Byte"
911
+ msgstr "Octet"
912
+
913
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:30
914
+ #, php-format
915
+ msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
916
+ msgstr "Nombre de rangées dans la table <code>%sstatistics_useronline</code>"
917
+
918
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:34
919
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:45
920
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:56
921
+ msgid "Row"
922
+ msgstr "Rangée"
923
+
924
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:35
925
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:46
926
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:57
927
+ msgid "Number of rows"
928
+ msgstr "Nombre de rangée"
929
+
930
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:41
931
+ #, php-format
932
+ msgid "Number of rows in the <code>%sstatistics_visit</code> table"
933
+ msgstr "Nombre de rangées dans la table <code>%sstatistics_visit</code>"
934
+
935
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:52
936
+ #, php-format
937
+ msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
938
+ msgstr "Nombre de rangées dans la table<code>%sstatistics_visitor</code>"
939
+
940
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:62
941
+ #, fuzzy
942
+ msgid "Version Info"
943
+ msgstr "%s Version"
944
+
945
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:67
946
+ #, fuzzy
947
+ msgid "WP Statistics Version"
948
+ msgstr "Rapports statistiques"
949
+
950
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:72
951
+ msgid "The WP Statistics version you are running."
952
+ msgstr "La version de Statistique WP fonctionne"
953
+
954
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:78
955
+ #, fuzzy
956
+ msgid "PHP Version"
957
+ msgstr "%s Version"
958
+
959
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:83
960
+ msgid "The PHP version you are running."
961
+ msgstr ""
962
+
963
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
964
+ #, fuzzy
965
+ msgid "jQuery Version"
966
+ msgstr "%s Version"
967
+
968
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
969
+ msgid "The jQuery version you are running."
970
+ msgstr ""
971
+
972
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
973
+ #, fuzzy
974
+ msgid "cURL Version"
975
+ msgstr "%s Version"
976
+
977
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
978
+ msgid "cURL not installed"
979
+ msgstr "cURL n'est pas installé"
980
+
981
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
982
+ msgid ""
983
+ "The PHP cURL Extension version you are running. cURL is required for the "
984
+ "GeoIP code, if it is not installed GeoIP will be disabled."
985
+ msgstr ""
986
+
987
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:111
988
+ msgid "BC Math"
989
+ msgstr "BC Math"
990
+
991
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
992
+ msgid "Installed"
993
+ msgstr "Installer"
994
+
995
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
996
+ msgid "Not installed"
997
+ msgstr "Pas installer"
998
+
999
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
1000
+ msgid ""
1001
+ "If the PHP BC Math Extension is installed. BC Math is required for the "
1002
+ "GeoIP code, if it is not installed GeoIP will be disabled."
1003
+ msgstr ""
1004
+
1005
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:121
1006
+ msgid "Client Info"
1007
+ msgstr ""
1008
+
1009
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
1010
+ msgid "Client IP"
1011
+ msgstr ""
1012
+
1013
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:131
1014
+ msgid "The client IP address."
1015
+ msgstr ""
1016
+
1017
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:137
1018
+ msgid "User Agent"
1019
+ msgstr ""
1020
+
1021
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:142
1022
+ msgid "The client user agent string."
1023
+ msgstr ""
1024
+
1025
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:2
1026
+ msgid "Name"
1027
+ msgstr "Nom"
1028
+
1029
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:6
1030
+ msgid "Items"
1031
+ msgstr "Eléments"
1032
+
1033
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
1034
+ msgid "Select type of search engine"
1035
+ msgstr "Sélectionnez le moteur de recherche"
1036
+
1037
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:11
1038
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
1039
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
1040
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:11
1041
+ msgid ""
1042
+ "This will permanently delete data from the database each day, are you sure "
1043
+ "you want to enable this option?"
1044
+ msgstr ""
1045
+
1046
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:21
1047
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:21
1048
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:21
1049
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:21
1050
+ msgid "General Settings"
1051
+ msgstr "Paramètres"
1052
+
1053
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:22
1054
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:22
1055
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:22
1056
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:22
1057
+ msgid "Access/Exclusions"
1058
+ msgstr "Autoriser/Exclure"
1059
+
1060
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:23
1061
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:23
1062
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:23
1063
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:23
1064
+ msgid "GeoIP"
1065
+ msgstr "GeoIP"
1066
+
1067
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:24
1068
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:24
1069
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:24
1070
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:24
1071
+ msgid "Maintenance"
1072
+ msgstr "Maintenance"
1073
+
1074
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:32
1075
+ #, fuzzy
1076
+ msgid "Access Levels"
1077
+ msgstr "Accès refusé !"
1078
+
1079
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:61
1080
+ msgid "Required user level to view WP Statistics"
1081
+ msgstr ""
1082
+
1083
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:76
1084
+ msgid "Required user level to manage WP Statistics"
1085
+ msgstr ""
1086
+
1087
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:84
1088
+ #, php-format
1089
+ msgid ""
1090
+ "See the %sWordPress Roles and Capabilities page%s for details on capability "
1091
+ "levels."
1092
+ msgstr ""
1093
+
1094
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:85
1095
+ msgid ""
1096
+ "Hint: manage_network = Super Admin Network, manage_options = Administrator, "
1097
+ "edit_others_posts = Editor, publish_posts = Author, edit_posts = "
1098
+ "Contributor, read = Everyone."
1099
+ msgstr ""
1100
+
1101
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:86
1102
+ msgid ""
1103
+ "Each of the above casscades the rights upwards in the default WordPress "
1104
+ "configuration. So for example selecting publish_posts grants the right to "
1105
+ "Authors, Editors, Admins and Super Admins."
1106
+ msgstr ""
1107
+
1108
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:87
1109
+ #, php-format
1110
+ msgid ""
1111
+ "If you need a more robust solution to delegate access you might want to look "
1112
+ "at %s in the WordPress plugin directory."
1113
+ msgstr ""
1114
+
1115
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:96
1116
+ msgid "Record Exclusions"
1117
+ msgstr ""
1118
+
1119
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:98
1120
+ msgid "Enable"
1121
+ msgstr "Activer"
1122
+
1123
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:99
1124
+ msgid ""
1125
+ "This will record all the excluded hits in a separate table with the reasons "
1126
+ "why it was excluded but no other information. This will generate a lot of "
1127
+ "data but is useful if you want to see the total number of hits your site "
1128
+ "gets, not just actual user visits."
1129
+ msgstr ""
1130
+
1131
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:104
1132
+ msgid "Exclude User Roles"
1133
+ msgstr ""
1134
+
1135
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:120
1136
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:165
1137
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:172
1138
+ msgid "Exclude"
1139
+ msgstr "Exclure"
1140
+
1141
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:121
1142
+ #, php-format
1143
+ msgid "Exclude %s role from data collection."
1144
+ msgstr ""
1145
+
1146
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:127
1147
+ msgid "IP/Robot Exclusions"
1148
+ msgstr ""
1149
+
1150
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:131
1151
+ msgid "Robot List"
1152
+ msgstr "Liste des Robots"
1153
+
1154
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:143
1155
+ msgid ""
1156
+ "A list of words (one per line) to match against to detect robots. Entries "
1157
+ "must be at least 4 characters long or they will be ignored."
1158
+ msgstr ""
1159
+
1160
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:144
1161
+ msgid "Reset to Default"
1162
+ msgstr "Remettre à zero"
1163
+
1164
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:148
1165
+ msgid "Excluded IP Address List"
1166
+ msgstr ""
1167
+
1168
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
1169
+ msgid ""
1170
+ "A list of IP addresses and (optional) subnet masks (one per line) to exclude "
1171
+ "from statistics collection (both 192.168.0.0/24 and "
1172
+ "192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address "
1173
+ "only, do not add any subnet value."
1174
+ msgstr ""
1175
+
1176
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:152
1177
+ msgid "Add 10.0.0.0"
1178
+ msgstr "Ajouter 10.0.0.0"
1179
+
1180
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:153
1181
+ msgid "Add 172.16.0.0"
1182
+ msgstr "Ajouter 172.16.0.0"
1183
+
1184
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:154
1185
+ msgid "Add 192.168.0.0"
1186
+ msgstr "Ajouter 192.168.0.0"
1187
+
1188
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:159
1189
+ msgid "Site URL Exclusions"
1190
+ msgstr "Exclure les URL"
1191
+
1192
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:163
1193
+ msgid "Excluded Login Page"
1194
+ msgstr "Exclure la page login"
1195
+
1196
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:166
1197
+ msgid "Exclude the login page for registering as a hit."
1198
+ msgstr ""
1199
+
1200
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:170
1201
+ msgid "Excluded Admin Pages"
1202
+ msgstr "Exclure la page admnistrateur"
1203
+
1204
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:173
1205
+ msgid "Exclude the admin pages for registering as a hit."
1206
+ msgstr ""
1207
+
1208
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1209
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:139
1210
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1211
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
1212
+ msgid "Update"
1213
+ msgstr "Mise à jour"
1214
+
1215
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:32
1216
+ msgid "GeoIP settings"
1217
+ msgstr "Paramètres GeoIP"
1218
+
1219
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:43
1220
+ msgid "GeoIP collection"
1221
+ msgstr "Collection GeoIP"
1222
+
1223
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:48
1224
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:72
1225
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:106
1226
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:42
1227
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:42
1228
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
1229
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
1230
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
1231
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:151
1232
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:167
1233
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:179
1234
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:191
1235
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:207
1236
+ msgid "Active"
1237
+ msgstr "Actif"
1238
+
1239
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:49
1240
+ msgid ""
1241
+ "For get more information and location (country) from visitor, enable this "
1242
+ "feature."
1243
+ msgstr ""
1244
+
1245
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:55
1246
+ msgid "Update GeoIP Info"
1247
+ msgstr "Mise à jour des infos GeoIP"
1248
+
1249
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:60
1250
+ msgid "Download GeoIP Database"
1251
+ msgstr "Télécharger la base de données GeoIP"
1252
+
1253
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:61
1254
+ msgid "Save changes on this page to download the update."
1255
+ msgstr ""
1256
+ "Enregistrer les modifications sur cette page pour télécharger la mise à jour."
1257
+
1258
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:67
1259
+ msgid "Schedule monthly update of GeoIP DB"
1260
+ msgstr ""
1261
+
1262
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:75
1263
+ msgid "Next update will be"
1264
+ msgstr "La prochaine mise à jour sera"
1265
+
1266
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:94
1267
+ msgid ""
1268
+ "Download of the GeoIP database will be scheduled for 2 days after the first "
1269
+ "Tuesday of the month."
1270
+ msgstr ""
1271
+
1272
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:95
1273
+ msgid ""
1274
+ "This option will also download the database if the local filesize is less "
1275
+ "than 1k (which usually means the stub that comes with the plugin is still in "
1276
+ "place)."
1277
+ msgstr ""
1278
+
1279
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:101
1280
+ msgid "Populate missing GeoIP after update of GeoIP DB"
1281
+ msgstr ""
1282
+
1283
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:107
1284
+ msgid "Update any missing GeoIP data after downloading a new database."
1285
+ msgstr ""
1286
+
1287
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:117
1288
+ #, php-format
1289
+ msgid ""
1290
+ "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1291
+ "the installed PHP version being "
1292
+ msgstr ""
1293
+
1294
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:122
1295
+ msgid ""
1296
+ "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1297
+ "your version of PHP!"
1298
+ msgstr ""
1299
+
1300
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:127
1301
+ msgid ""
1302
+ "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1303
+ "your version of PHP!"
1304
+ msgstr ""
1305
+
1306
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1307
+ msgid "Database Maintenance"
1308
+ msgstr "Maintenance base de donnée"
1309
+
1310
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:37
1311
+ msgid "Run a daily WP Cron job to prune the databases"
1312
+ msgstr ""
1313
+
1314
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:43
1315
+ msgid ""
1316
+ "A WP Cron job will be run daily to prune any data older than a set number of "
1317
+ "days."
1318
+ msgstr ""
1319
+
1320
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:49
1321
+ msgid "Prune data older than"
1322
+ msgstr ""
1323
+
1324
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:54
1325
+ msgid "Days"
1326
+ msgstr "Jour"
1327
+
1328
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:55
1329
+ msgid ""
1330
+ "The number of days to keep statistics for. Minimum value is 30 days. "
1331
+ "Invalid values will disable the daily maintenance."
1332
+ msgstr ""
1333
+
1334
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:32
1335
+ msgid "General"
1336
+ msgstr "Paramètres"
1337
+
1338
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
1339
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
1340
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
1341
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:208
1342
+ msgid "Enable or disable this feature"
1343
+ msgstr "Activer ou désactiver cette fonction"
1344
+
1345
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:49
1346
+ msgid "Visits"
1347
+ msgstr "Visites"
1348
+
1349
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:73
1350
+ msgid "Store entire user agent string"
1351
+ msgstr ""
1352
+
1353
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:79
1354
+ msgid "Only enabled for debugging"
1355
+ msgstr "Seulement permis pour débogage"
1356
+
1357
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:85
1358
+ msgid "Check for online users every"
1359
+ msgstr "Vérifier les utilisateurs en ligne toute les"
1360
+
1361
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:90
1362
+ #, fuzzy
1363
+ msgid "Second"
1364
+ msgstr "Seconde"
1365
+
1366
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:91
1367
+ #, php-format
1368
+ msgid "Time for the check accurate online user in the site. Now: %s Second"
1369
+ msgstr ""
1370
+
1371
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:97
1372
+ msgid "Show stats in menu bar"
1373
+ msgstr "Voir les statistique dans la barre de menus"
1374
+
1375
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
1376
+ msgid "No"
1377
+ msgstr "Non"
1378
+
1379
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
1380
+ msgid "Yes"
1381
+ msgstr "Oui"
1382
+
1383
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
1384
+ msgid "Show stats in admin menu bar"
1385
+ msgstr "Voir les statistique dans la barre de menus administrateur"
1386
+
1387
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:111
1388
+ msgid "Coefficient per visitor"
1389
+ msgstr "Coefficient par visiteur"
1390
+
1391
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:116
1392
+ #, php-format
1393
+ msgid "For each visit to account for several hits. Currently %s."
1394
+ msgstr ""
1395
+
1396
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:121
1397
+ msgid "Charts"
1398
+ msgstr "Type Diagramme"
1399
+
1400
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:126
1401
+ msgid "Chart type"
1402
+ msgstr "Type Diagramme"
1403
+
1404
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:132
1405
+ msgid "Line"
1406
+ msgstr "Ligne"
1407
+
1408
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:133
1409
+ msgid "Spline"
1410
+ msgstr ""
1411
+
1412
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:134
1413
+ msgid "Area"
1414
+ msgstr "Zone"
1415
+
1416
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:135
1417
+ msgid "Area Spline"
1418
+ msgstr ""
1419
+
1420
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:136
1421
+ msgid "Column"
1422
+ msgstr "Colonne"
1423
+
1424
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:137
1425
+ msgid "Bar"
1426
+ msgstr "Barre"
1427
+
1428
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:138
1429
+ msgid "Scatter"
1430
+ msgstr ""
1431
+
1432
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:140
1433
+ msgid "Chart type in view stats."
1434
+ msgstr ""
1435
+
1436
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:146
1437
+ msgid "Include totals"
1438
+ msgstr "Inclure le total"
1439
+
1440
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
1441
+ msgid ""
1442
+ "Add a total line to charts with multiple values, like the search engine "
1443
+ "referrals"
1444
+ msgstr ""
1445
+
1446
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:162
1447
+ msgid "Disable map"
1448
+ msgstr "Désactiver la map"
1449
+
1450
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:168
1451
+ msgid "Disable the map display"
1452
+ msgstr ""
1453
+
1454
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
1455
+ msgid "Alternate map location"
1456
+ msgstr "Remplissez Lieu"
1457
+
1458
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:180
1459
+ msgid ""
1460
+ "Place the map above the recent visitors area instead of at the top of the "
1461
+ "page."
1462
+ msgstr ""
1463
+
1464
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:186
1465
+ msgid "Get country location from Google"
1466
+ msgstr ""
1467
+
1468
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:192
1469
+ msgid ""
1470
+ "This feature may cause a performance degradation when viewing statistics."
1471
+ msgstr ""
1472
+
1473
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:215
1474
+ msgid "Time send"
1475
+ msgstr "Temps d'envoi"
1476
+
1477
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:221
1478
+ msgid "Hourly"
1479
+ msgstr "Une fois par heure"
1480
+
1481
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
1482
+ msgid "Twice daily"
1483
+ msgstr "Deux fois par jour"
1484
+
1485
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:223
1486
+ msgid "daily"
1487
+ msgstr "Quotidien"
1488
+
1489
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:225
1490
+ msgid "Select when receiving statistics report."
1491
+ msgstr ""
1492
+
1493
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:231
1494
+ msgid "Send Statistical reporting to"
1495
+ msgstr "Envoyez le rapport de statistique à"
1496
+
1497
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:237
1498
+ msgid "Email"
1499
+ msgstr "Email"
1500
+
1501
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:238
1502
+ msgid "SMS"
1503
+ msgstr "SMS"
1504
+
1505
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
1506
+ msgid "Type Select Get Status Report."
1507
+ msgstr ""
1508
+
1509
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:243
1510
+ #, php-format
1511
+ msgid ""
1512
+ "Note: To send SMS text messages please install the <a href=\"%s\" target="
1513
+ "\"_blank\">Wordpress SMS</a> plugin."
1514
+ msgstr ""
1515
+
1516
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:250
1517
+ msgid "Send Content Report"
1518
+ msgstr "Envoyer un rapport contenu"
1519
+
1520
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:255
1521
+ msgid "Enter the contents of the reports received."
1522
+ msgstr "Entrez le contenu des rapports reçus."
1523
+
1524
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:257
1525
+ msgid "Input data:"
1526
+ msgstr "Données d'entrée :"
1527
+
1528
+ #~ msgid "Google"
1529
+ #~ msgstr "Google"
1530
+
1531
+ #~ msgid "Yahoo!"
1532
+ #~ msgstr "Yahoo !"
1533
+
1534
+ #~ msgid "Bing"
1535
+ #~ msgstr "Bing"
1536
+
1537
+ #~ msgid "(See more)"
1538
+ #~ msgstr "(Voir plus)"
1539
+
1540
+ #~ msgid "Empty"
1541
+ #~ msgstr "Vide"
1542
+
1543
+ #~ msgid "Chart Settings"
1544
+ #~ msgstr "Option Diagramme"
1545
+
1546
+ #~ msgid "Type date for last update"
1547
+ #~ msgstr "Entrez la date de dernière mise à jour"
1548
+
1549
+ #~ msgid "English"
1550
+ #~ msgstr "Anglais"
1551
+
1552
+ #~ msgid "Persian"
1553
+ #~ msgstr "Perse"
languages/wp_statistics-zh_CN.mo CHANGED
Binary file
languages/wp_statistics-zh_CN.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-06-04 13:37+0330\n"
6
- "PO-Revision-Date: 2013-06-10 06:28+0800\n"
7
  "Last-Translator: Toine Cheung <toine.etoilefilante@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
@@ -11,652 +11,1569 @@ msgstr ""
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.5\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:91
23
  msgid "Statistical reporting"
24
  msgstr "统计报告"
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 "统计"
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 "在边栏显示站点统计"
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:147
44
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
45
  msgid "User Online"
46
  msgstr "在线用户"
47
 
48
- #: F:\Program
49
- #: Files\xampp\htdocs\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:149
51
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
52
  msgid "Today Visit"
53
- msgstr "累计点击"
54
 
55
- #: F:\Program
56
- #: Files\xampp\htdocs\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:148
58
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
59
  msgid "Today Visitor"
60
- msgstr "累计访客"
61
 
62
- #: F:\Program
63
- #: Files\xampp\htdocs\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:151
65
  msgid "Yesterday Visit"
66
- msgstr "昨日点击"
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:150
71
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
72
  msgid "Yesterday Visitor"
73
  msgstr "昨日访客"
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 "本周点击"
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 "本月点击"
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 "本年点击"
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:153
96
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
97
  msgid "Total Visit"
98
- msgstr "累计点击"
99
 
100
- #: F:\Program
101
- #: Files\xampp\htdocs\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:152
103
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
104
  msgid "Total Visitor"
105
  msgstr "累计访客"
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/setting/widget.php:39
110
- msgid "Search Engine reffered"
111
- msgstr ""
112
 
113
- #: F:\Program
114
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:105
115
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
116
  msgid "Total Posts"
117
  msgstr "总计文章"
118
 
119
- #: F:\Program
120
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:112
121
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
122
  msgid "Total Pages"
123
  msgstr "总计页面"
124
 
125
- #: F:\Program
126
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:119
127
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
128
  msgid "Total Comments"
129
  msgstr "总计回响"
130
 
131
- #: F:\Program
132
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:126
133
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
134
  msgid "Total Spams"
135
  msgstr "总计垃圾"
136
 
137
- #: F:\Program
138
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:133
139
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
140
  msgid "Total Users"
141
  msgstr "总计用户"
142
 
143
- #: F:\Program
144
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:140
145
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
146
  msgid "Average Posts"
147
  msgstr "平均文章"
148
 
149
- #: F:\Program
150
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:147
151
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
152
  msgid "Average Comments"
153
  msgstr "平均回响"
154
 
155
- #: F:\Program
156
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:154
157
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
158
  msgid "Average Users"
159
  msgstr "平均用户"
160
 
161
- #: F:\Program
162
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:161
163
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
164
  msgid "Last Post Date"
165
- msgstr "上次发表日期"
 
 
 
 
 
 
 
 
166
 
167
- #: F:\Program
168
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:40
169
  #, php-format
170
  msgid ""
171
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
172
  "\">setting page</a> and enable statistics"
173
  msgstr ""
 
 
174
 
175
- #: F:\Program
176
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
177
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
178
- msgid "View Stats"
179
- msgstr "检阅统计数据"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
 
181
- #: F:\Program
182
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  msgid "Settings"
184
  msgstr "设定"
185
 
186
- #: F:\Program
187
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
188
  msgid "Today visitor"
189
  msgstr "累计访客"
190
 
191
- #: F:\Program
192
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
193
  msgid "Today visit"
194
- msgstr "累计点击"
195
 
196
- #: F:\Program
197
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
198
  msgid "Yesterday visitor"
199
  msgstr "昨日访客"
200
 
201
- #: F:\Program
202
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
203
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
204
  msgid "Yesterday visit"
205
- msgstr "昨日点击"
206
 
207
- #: F:\Program
208
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
209
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:217
 
 
 
 
210
  msgid "You do not have sufficient permissions to access this page."
211
  msgstr "你没有足够权限访问此页"
212
 
213
- #: F:\Program
214
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:154
215
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
216
  msgstr "插件表并不存在!请停用插件,然后再启用它"
217
 
218
- #: F:\Program
219
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
220
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
221
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
222
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "To be added soon"
224
  msgstr "功能快将加入"
225
 
226
- #: F:\Program
227
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
228
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
229
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:347
230
  msgid "Latest search words"
231
  msgstr "最新搜寻关键词"
232
 
233
- #: F:\Program
234
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
235
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
236
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
237
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
238
- msgid "All"
239
- msgstr "全部"
240
-
241
- #: F:\Program
242
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
243
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
244
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:367
245
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
246
- msgid "Google"
247
- msgstr "谷歌 (Google)"
248
-
249
- #: F:\Program
250
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
251
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
252
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:369
253
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
254
- msgid "Yahoo!"
255
- msgstr "雅虎 (Yahoo!)"
256
-
257
- #: F:\Program
258
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
259
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
260
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:371
261
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
262
- msgid "Bing"
263
- msgstr "Bing"
264
-
265
- #: F:\Program
266
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
267
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
268
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
269
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
270
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:175
271
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:219
272
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:255
273
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:345
274
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:386
275
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:22
276
- msgid "Click to toggle"
277
- msgstr ""
278
-
279
- #: F:\Program
280
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:58
281
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
282
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:364
283
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:403
284
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
285
  msgid "Map"
286
  msgstr "地图"
287
 
288
- #: F:\Program
289
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
290
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
291
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
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:81
297
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
298
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
299
  msgid "From"
300
  msgstr "由"
301
 
302
- #: F:\Program
303
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
304
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
305
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:388
306
  msgid "Recent Visitors"
307
  msgstr "最近访客"
308
 
309
- #: F:\Program
310
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
311
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:155
312
- msgid "Firefox"
313
- msgstr "Firefox"
314
-
315
- #: F:\Program
316
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
317
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:156
318
- msgid "IE"
319
- msgstr "IE"
320
-
321
- #: F:\Program
322
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
323
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:157
324
- msgid "Ipad"
325
- msgstr "Ipad"
326
-
327
- #: F:\Program
328
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
329
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
330
- msgid "Android"
331
- msgstr "Android"
332
-
333
- #: F:\Program
334
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
335
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:159
336
- msgid "Chrome"
337
- msgstr "Chrome"
338
-
339
- #: F:\Program
340
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
341
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:160
342
- msgid "Safari"
343
- msgstr "Safari"
344
-
345
- #: F:\Program
346
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:20
347
- msgid "Opera"
348
- msgstr "Opera"
349
-
350
- #: F:\Program
351
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
352
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:161
353
- msgid "Other"
354
- msgstr "其他"
355
-
356
- #: F:\Program
357
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:17
358
- msgid "Summary Statistics"
359
- msgstr "统计小结"
360
 
361
- #: F:\Program
362
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
363
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:316
364
- msgid "Visitor"
365
- msgstr "访客"
366
 
367
- #: F:\Program
368
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
369
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:326
370
- msgid "Visit"
371
- msgstr "点击"
372
 
373
- #: F:\Program
374
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
375
  msgid "Today"
376
  msgstr "今天"
377
 
378
- #: F:\Program
379
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
380
  msgid "Yesterday"
381
  msgstr "昨日"
382
 
383
- #: F:\Program
384
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:45
385
  msgid "Week"
386
  msgstr "本周"
387
 
388
- #: F:\Program
389
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:51
390
  msgid "Month"
391
  msgstr "本月"
392
 
393
- #: F:\Program
394
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:57
395
  msgid "Year"
396
  msgstr "本年"
397
 
398
- #: F:\Program
399
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
 
 
400
  msgid "Total"
401
  msgstr "总计"
402
 
403
- #: F:\Program
404
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
405
- #, php-format
406
- msgid ""
407
- "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
408
- msgstr ""
409
- "今天日期: <code dir=\"ltr\">%s</code>,时间: <code dir=\"ltr\">%s</code>"
410
 
411
- #: F:\Program
412
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:72
 
 
 
413
  msgid "(Adjustment)"
414
  msgstr "(调整)"
415
 
416
- #: F:\Program
417
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:78
418
- msgid "Browsers"
419
- msgstr "浏览器"
420
 
421
- #: F:\Program
422
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
423
  msgid "Graph of Browsers"
424
  msgstr "图表(浏览器)"
425
 
426
- #: F:\Program
427
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:153
428
- msgid "Browser share"
429
- msgstr "浏览器占百分比"
430
-
431
- #: F:\Program
432
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:177
433
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:11
434
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
435
  msgid "Top referring sites"
436
- msgstr ""
437
-
438
- #: F:\Program
439
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:177
440
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:347
441
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:388
442
- msgid "(See more)"
443
- msgstr "(查看更多)"
444
 
445
- #: F:\Program
446
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:183
447
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
448
  msgid "Reference"
449
- msgstr ""
450
 
451
- #: F:\Program
452
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:184
453
  msgid "Address"
454
  msgstr "网址"
455
 
456
- #: F:\Program
457
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  msgid "About plugin"
459
  msgstr "关于插件"
460
 
461
- #: F:\Program
462
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:223
463
  #, php-format
464
  msgid "Plugin version: %s"
465
  msgstr "插件版本: %s"
466
 
467
- #: F:\Program
468
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:224
469
  msgid "Translations"
470
  msgstr "翻译"
471
 
472
- #: F:\Program
473
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:225
474
  msgid "Support"
475
  msgstr "帮助"
476
 
477
- #: F:\Program
478
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:225
479
  msgid "Farsi"
480
- msgstr ""
481
 
482
- #: F:\Program
483
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:226
484
  msgid "Facebook"
485
  msgstr "Facebook"
486
 
487
- #: F:\Program
488
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:227
489
  msgid "Weblog"
490
  msgstr "Weblog"
491
 
492
- #: F:\Program
493
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:232
494
  msgid ""
495
- "Please donate to the plugin. With the help of plug-ins you can quickly "
496
- "spread."
497
- msgstr "请赞助这件插件"
498
 
499
- #: F:\Program
500
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:235
501
  msgid "Donate"
502
  msgstr "赞助"
503
 
504
- #: F:\Program
505
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:256
506
- msgid "Statistical Chart"
507
- msgstr "统计图表"
508
 
509
- #: F:\Program
510
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:271
511
- msgid "Chart hit in the last 20 days"
512
- msgstr "最近20天的点击或访问"
513
 
514
- #: F:\Program
515
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:290
516
- msgid "Number of visits and visitors"
517
- msgstr "访客或点击数量"
 
 
 
 
 
 
 
 
518
 
519
- #: F:\Program
520
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
 
 
 
 
 
 
 
 
 
 
 
521
  msgid "Referring sites from"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
 
524
- #: F:\Program
525
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
 
 
 
 
 
 
 
 
 
 
 
526
  msgid "General Settings"
527
  msgstr "一般设置"
528
 
529
- #: F:\Program
530
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
531
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
532
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
533
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
534
  msgid "Active"
535
  msgstr "启动"
536
 
537
- #: F:\Program
538
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
539
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
540
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
541
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
542
  msgid "Enable or disable this feature"
543
  msgstr "启用或停用这功能"
544
 
545
- #: F:\Program
546
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
547
  msgid "Visits"
548
  msgstr "点击"
549
 
550
- #: F:\Program
551
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
552
- msgid "Visitors"
553
- msgstr "访客"
554
 
555
- #: F:\Program
556
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
 
 
 
557
  msgid "Check for online users every"
558
  msgstr "检查在线用户间隔"
559
 
560
- #: F:\Program
561
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:55
562
- msgid "Secound"
563
  msgstr "秒"
564
 
565
- #: F:\Program
566
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
567
  #, php-format
568
  msgid "Time for the check accurate online user in the site. Now: %s Second"
569
  msgstr "检查有效在线用户的间隔。现在:每 %s 秒"
570
 
571
- #: F:\Program
572
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
573
  msgid "Show stats in menu bar"
574
  msgstr "在菜单中显示"
575
 
576
- #: F:\Program
577
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:67
578
  msgid "No"
579
  msgstr "否"
580
 
581
- #: F:\Program
582
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:68
583
  msgid "Yes"
584
  msgstr "是"
585
 
586
- #: F:\Program
587
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:70
588
  msgid "Show stats in admin menu bar"
589
  msgstr "在管理菜单中显示"
590
 
591
- #: F:\Program
592
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
593
  msgid "Coefficient per visitor"
594
  msgstr "访客系数"
595
 
596
- #: F:\Program
597
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:81
598
  #, php-format
599
  msgid "For each visit to account for several hits. Currently %s."
600
  msgstr "每一个访问计算多少位访客,现时 %s "
601
 
602
- #: F:\Program
603
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
604
- msgid "Statistical reporting settings"
605
- msgstr "统计报告设定"
606
 
607
- #: F:\Program
608
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
609
- msgid "Time send"
 
610
  msgstr ""
 
 
611
 
612
- #: F:\Program
613
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
614
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:125
615
- msgid "Please select."
616
- msgstr "请选择"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
617
 
618
- #: F:\Program
619
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
620
  msgid "Hourly"
621
  msgstr "每小时"
622
 
623
- #: F:\Program
624
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:111
625
  msgid "Twice daily"
626
  msgstr "每天两次"
627
 
628
- #: F:\Program
629
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:112
630
  msgid "daily"
631
  msgstr "每天"
632
 
633
- #: F:\Program
634
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:114
635
  msgid "Select when receiving statistics report."
636
  msgstr "选择何时接收统计报告"
637
 
638
- #: F:\Program
639
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
640
  msgid "Send Statistical reporting to"
641
  msgstr "发送统计报告至"
642
 
643
- #: F:\Program
644
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
645
  msgid "Email"
646
  msgstr "电子邮件"
647
 
648
- #: F:\Program
649
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:127
650
  msgid "SMS"
651
- msgstr "SMS"
652
 
653
- #: F:\Program
654
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:129
655
  msgid "Type Select Get Status Report."
656
- msgstr ""
657
 
658
- #: F:\Program
659
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
660
  #, php-format
661
  msgid ""
662
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
@@ -665,47 +1582,61 @@ msgstr ""
665
  "注意:要发送SMS文字短讯,请安装 <a href=\"%s\" target=\"_blank\">Wordpress "
666
  "SMS</a> 插件"
667
 
668
- #: F:\Program
669
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
670
  msgid "Send Content Report"
671
- msgstr ""
672
 
673
- #: F:\Program
674
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
675
  msgid "Enter the contents of the reports received."
676
- msgstr ""
677
 
678
- #: F:\Program
679
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:146
680
  msgid "Input data:"
681
  msgstr "输入数据:"
682
 
683
- #: F:\Program
684
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
685
- msgid "Name"
686
- msgstr "名称"
687
 
688
- #: F:\Program
689
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
690
- msgid "Items"
691
- msgstr ""
692
 
693
- #: F:\Program
694
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
695
- msgid "Select type of search engine"
696
- msgstr "选择搜寻引擎种类"
697
 
698
- #: F:\Program
699
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
700
- msgid "Type date for last update"
701
- msgstr ""
702
 
703
- #: F:\Program
704
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
705
- msgid "English"
706
- msgstr "英语"
707
 
708
- #: F:\Program
709
- #: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
710
- msgid "Persian"
711
- msgstr "波斯语"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-28 13:31+0330\n"
6
+ "PO-Revision-Date: 2014-05-28 13:31+0330\n"
7
  "Last-Translator: Toine Cheung <toine.etoilefilante@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\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:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-content"
15
+ "\\plugins\\wp-statistics\n"
16
  "X-Generator: Poedit 1.5.5\n"
17
+ "X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
18
  "content\\plugins\\wp-statistics\n"
19
 
20
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
21
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:235
22
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
23
  msgid "Statistical reporting"
24
  msgstr "统计报告"
25
 
26
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
27
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
28
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
 
29
  msgid "Statistics"
30
  msgstr "统计"
31
 
32
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
 
33
  msgid "Show site stats in sidebar"
34
  msgstr "在边栏显示站点统计"
35
 
36
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
37
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:178
38
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
39
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
40
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
41
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:296
 
42
  msgid "User Online"
43
  msgstr "在线用户"
44
 
45
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
46
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
47
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:298
 
48
  msgid "Today Visit"
49
+ msgstr "今日访问"
50
 
51
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
52
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
53
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:297
 
54
  msgid "Today Visitor"
55
+ msgstr "今日访客"
56
 
57
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
58
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:300
 
59
  msgid "Yesterday Visit"
60
+ msgstr "昨日访问"
61
 
62
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
63
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
64
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:299
 
65
  msgid "Yesterday Visitor"
66
  msgstr "昨日访客"
67
 
68
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
69
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
 
70
  msgid "Week Visit"
71
+ msgstr "本周访问"
72
 
73
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
74
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
 
75
  msgid "Month Visit"
76
+ msgstr "本月访问"
77
 
78
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
79
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:30
 
80
  msgid "Years Visit"
81
+ msgstr "本年访问"
82
 
83
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
84
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
85
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:302
 
86
  msgid "Total Visit"
87
+ msgstr "累计访问"
88
 
89
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
90
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
91
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:301
 
92
  msgid "Total Visitor"
93
  msgstr "累计访客"
94
 
95
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
96
+ msgid "Search Engine referred"
97
+ msgstr "搜索引擎引用次数"
 
 
98
 
99
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
100
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:59
 
101
  msgid "Total Posts"
102
  msgstr "总计文章"
103
 
104
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:104
105
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:62
 
106
  msgid "Total Pages"
107
  msgstr "总计页面"
108
 
109
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:111
110
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:65
 
111
  msgid "Total Comments"
112
  msgstr "总计回响"
113
 
114
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:118
115
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:68
 
116
  msgid "Total Spams"
117
  msgstr "总计垃圾"
118
 
119
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:125
120
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:71
 
121
  msgid "Total Users"
122
  msgstr "总计用户"
123
 
124
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:132
125
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:74
 
126
  msgid "Average Posts"
127
  msgstr "平均文章"
128
 
129
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:139
130
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:77
 
131
  msgid "Average Comments"
132
  msgstr "平均回响"
133
 
134
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:146
135
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:80
 
136
  msgid "Average Users"
137
  msgstr "平均用户"
138
 
139
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:153
140
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:83
 
141
  msgid "Last Post Date"
142
+ msgstr "最后发表日期"
143
+
144
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:23
145
+ msgid "Wordpress Statistics"
146
+ msgstr "统计"
147
+
148
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:24
149
+ msgid "Complete statistics for your blog."
150
+ msgstr "为你的博客进行全面的信息统计。"
151
 
152
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:66
 
153
  #, php-format
154
  msgid ""
155
  "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
156
  "\">setting page</a> and enable statistics"
157
  msgstr ""
158
+ "Wordpress Statistics工具没有启用,请到<a href=\"%s\">setting page</a>使能该工"
159
+ "具。"
160
 
161
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
162
+ #, php-format
163
+ msgid ""
164
+ "GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
165
+ "GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
166
+ msgstr ""
167
+ "GeoIP没有启用,请到<a href=\"%s\">Setting page > GeoIP</a>启用该特性(GeoIP可"
168
+ "以自动检测访客的国家)。"
169
+
170
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
171
+ msgid "Overview"
172
+ msgstr "总览"
173
+
174
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:128
175
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
176
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
177
+ msgid "Browsers"
178
+ msgstr "浏览器"
179
+
180
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
181
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
182
+ msgid "Countries"
183
+ msgstr "国家"
184
+
185
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
186
+ msgid "Hits"
187
+ msgstr "点击数"
188
+
189
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
190
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
191
+ msgid "Exclusions"
192
+ msgstr "过滤"
193
+
194
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
195
+ msgid "Referers"
196
+ msgstr "引用数"
197
 
198
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:135
199
+ msgid "Searches"
200
+ msgstr "搜索"
201
+
202
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
203
+ msgid "Search Words"
204
+ msgstr "词语搜索"
205
+
206
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
207
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
208
+ msgid "Visitors"
209
+ msgstr "访客"
210
+
211
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:139
212
+ msgid "Optimization"
213
+ msgstr "优化"
214
+
215
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:140
216
  msgid "Settings"
217
  msgstr "设定"
218
 
219
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:183
 
220
  msgid "Today visitor"
221
  msgstr "累计访客"
222
 
223
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:188
 
224
  msgid "Today visit"
225
+ msgstr "累计访问"
226
 
227
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:193
 
228
  msgid "Yesterday visitor"
229
  msgstr "昨日访客"
230
 
231
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:198
232
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
 
233
  msgid "Yesterday visit"
234
+ msgstr "昨日访问"
235
 
236
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
237
+ msgid "View Stats"
238
+ msgstr "检阅统计数据"
239
+
240
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:265
241
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:331
242
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:421
243
  msgid "You do not have sufficient permissions to access this page."
244
  msgstr "你没有足够权限访问此页"
245
 
246
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:277
 
247
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
248
  msgstr "插件表并不存在!请停用插件,然后再启用它"
249
 
250
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
251
+ #, php-format
252
+ msgid "Error downloading GeoIP database from: %s"
253
+ msgstr "从%s下载GeoIP数据库错误"
254
+
255
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:383
256
+ #, php-format
257
+ msgid "Error could not open downloaded GeoIP database for reading: %s"
258
+ msgstr "无法读取已下载的GeoIP数据库:%s"
259
+
260
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:389
261
+ #, php-format
262
+ msgid "Error could not open destination GeoIP database for writing %s"
263
+ msgstr "错误:无法打开%s进行GeoIP数据库读写"
264
+
265
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:402
266
+ msgid "GeoIP Database updated successfully!"
267
+ msgstr "GeoIP数据库更新成功!"
268
+
269
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:16
270
+ msgid ""
271
+ "Unable to load the GeoIP database, make sure you have downloaded it in the "
272
+ "settings page."
273
+ msgstr "无法打开GeoIP数据库,请确保你已经在设置页面下载该数据库。"
274
+
275
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:33
276
+ #, php-format
277
+ msgid "Updated %s GeoIP records in the visitors database."
278
+ msgstr "在访客数据库中更新%s GeoIP。"
279
+
280
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:17
281
+ msgid "Browser Statistics"
282
+ msgstr "浏览器统计"
283
+
284
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
285
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
286
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
287
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
288
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
289
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
290
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:59
291
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
292
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:141
293
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:241
294
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
295
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:331
296
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
297
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:472
298
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:582
299
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:631
300
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:680
301
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
302
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
303
+ msgid "Click to toggle"
304
+ msgstr "点击切换"
305
+
306
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:55
307
+ msgid "Browsers by Type"
308
+ msgstr "浏览器类型统计"
309
+
310
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
311
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
312
+ msgid "Browser share"
313
+ msgstr "浏览器占百分比"
314
+
315
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:130
316
+ msgid "Platform"
317
+ msgstr "平台"
318
+
319
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:150
320
+ msgid "Browsers by Platform"
321
+ msgstr "浏览器平台统计"
322
+
323
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:194
324
+ msgid "Platform share"
325
+ msgstr "平台分享"
326
+
327
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:274
328
+ #, php-format
329
+ msgid "%s Version"
330
+ msgstr "%s 版本"
331
+
332
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:338
333
+ msgid "Browser version share"
334
+ msgstr "浏览器版本分享"
335
+
336
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
337
+ msgid ""
338
+ "Attention: Exclusion are not currently set to be recorded, the results below "
339
+ "may not reflect current statistics!"
340
+ msgstr "小心:现在没有设定记录过滤信息,所以下面的结果可能不是当前的统计信息。"
341
+
342
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:50
343
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
344
+ msgid "Hit Statistics"
345
+ msgstr "点击统计"
346
+
347
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:53
348
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
349
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
350
+ msgid "10 Days"
351
+ msgstr "10 天"
352
+
353
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
354
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
355
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
356
+ msgid "20 Days"
357
+ msgstr "20 天"
358
+
359
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:55
360
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
361
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
362
+ msgid "30 Days"
363
+ msgstr "30 天"
364
+
365
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
366
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
367
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
368
+ msgid "2 Months"
369
+ msgstr "2个月"
370
+
371
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
372
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
373
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
374
+ msgid "3 Months"
375
+ msgstr "3个月"
376
+
377
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
378
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
379
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
380
+ msgid "6 Months"
381
+ msgstr "6个月"
382
+
383
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
384
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
385
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
386
+ msgid "9 Months"
387
+ msgstr "9个月"
388
+
389
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
390
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
391
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
392
+ msgid "1 Year"
393
+ msgstr "一年"
394
+
395
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
396
+ #, php-format
397
+ msgid "Total Exclusions: %s"
398
+ msgstr "总共过滤数:%s"
399
+
400
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:71
401
+ msgid "Exclusions Statistical Chart"
402
+ msgstr "过滤统计表"
403
+
404
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
405
+ msgid "Excluded hits chart in the last"
406
+ msgstr "过去过滤掉的点击图表"
407
+
408
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
409
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
410
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
411
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
412
+ msgid "days"
413
+ msgstr "天"
414
+
415
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:111
416
+ msgid "Number of excluded hits"
417
+ msgstr "过滤掉的点击数"
418
+
419
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
420
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
421
+ msgid "Hits Statistical Chart"
422
+ msgstr "点击数统计图表"
423
+
424
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
425
+ msgid "Hits chart in the last"
426
+ msgstr "过去点击图表"
427
+
428
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
429
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:417
430
+ msgid "Number of visits and visitors"
431
+ msgstr "访客或点击数量"
432
+
433
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:102
434
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:42
435
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:443
436
+ msgid "Visitor"
437
+ msgstr "访客"
438
+
439
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:112
440
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
441
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:453
442
+ msgid "Visit"
443
+ msgstr "访问"
444
+
445
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
446
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
447
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
448
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
449
  msgid "To be added soon"
450
  msgstr "功能快将加入"
451
 
452
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
453
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
454
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
 
455
  msgid "Latest search words"
456
  msgstr "最新搜寻关键词"
457
 
458
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:103
459
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
460
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
461
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
462
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
463
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  msgid "Map"
465
  msgstr "地图"
466
 
467
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
468
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
469
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
 
470
  msgid "Page"
471
  msgstr "页面"
472
 
473
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
474
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
475
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
 
476
  msgid "From"
477
  msgstr "由"
478
 
479
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
480
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
481
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
 
482
  msgid "Recent Visitors"
483
  msgstr "最近访客"
484
 
485
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:34
486
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
487
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:141
488
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:55
489
+ msgid "All"
490
+ msgstr "全部"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
491
 
492
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
493
+ msgid "Search for"
494
+ msgstr "搜索"
 
 
495
 
496
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
497
+ msgid "Summary Statistics"
498
+ msgstr "统计小结"
 
 
499
 
500
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:47
501
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:92
502
  msgid "Today"
503
  msgstr "今天"
504
 
505
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:53
506
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
507
  msgid "Yesterday"
508
  msgstr "昨日"
509
 
510
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:59
 
511
  msgid "Week"
512
  msgstr "本周"
513
 
514
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:65
 
515
  msgid "Month"
516
  msgstr "本月"
517
 
518
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:71
 
519
  msgid "Year"
520
  msgstr "本年"
521
 
522
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
523
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
524
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:559
525
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:123
526
  msgid "Total"
527
  msgstr "总计"
528
 
529
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
530
+ msgid "Search Engine Referrals"
531
+ msgstr "搜索引擎引用次数"
532
+
533
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:111
534
+ msgid "Daily Total"
535
+ msgstr "每日总计"
536
 
537
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:125
538
+ msgid "Current Time and Date"
539
+ msgstr "当前时间和日期:"
540
+
541
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:125
542
  msgid "(Adjustment)"
543
  msgstr "(调整)"
544
 
545
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:129
546
+ #, php-format
547
+ msgid "Date: <code dir=\"ltr\">%s</code></code>"
548
+ msgstr "日期: <code dir=\"ltr\">%s</code>"
549
 
550
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:133
551
+ #, php-format
552
+ msgid "Time: <code dir=\"ltr\">%s</code>"
553
+ msgstr "时间: <code dir=\"ltr\">%s</code>"
554
+
555
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
556
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
557
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
558
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
559
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
560
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
561
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
562
+ msgid "More"
563
+ msgstr "更多"
564
+
565
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
566
  msgid "Graph of Browsers"
567
  msgstr "图表(浏览器)"
568
 
569
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
570
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:34
571
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:49
 
 
 
 
 
 
572
  msgid "Top referring sites"
573
+ msgstr "引用最多的网址"
 
 
 
 
 
 
 
574
 
575
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
576
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:117
 
577
  msgid "Reference"
578
+ msgstr "引用"
579
 
580
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:250
 
581
  msgid "Address"
582
  msgstr "网址"
583
 
584
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
585
+ msgid "Top 10 Countries"
586
+ msgstr "前十个国家"
587
+
588
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:294
589
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:28
590
+ msgid "Rank"
591
+ msgstr "排名"
592
+
593
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:295
594
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:29
595
+ msgid "Flag"
596
+ msgstr "标志"
597
+
598
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:296
599
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
600
+ msgid "Country"
601
+ msgstr "国家"
602
+
603
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:297
604
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
605
+ msgid "Visitor Count"
606
+ msgstr "访客技术"
607
+
608
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:332
609
  msgid "About plugin"
610
  msgstr "关于插件"
611
 
612
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:335
 
613
  #, php-format
614
  msgid "Plugin version: %s"
615
  msgstr "插件版本: %s"
616
 
617
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:336
 
618
  msgid "Translations"
619
  msgstr "翻译"
620
 
621
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
 
622
  msgid "Support"
623
  msgstr "帮助"
624
 
625
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
 
626
  msgid "Farsi"
627
+ msgstr "波斯语"
628
 
629
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
 
630
  msgid "Facebook"
631
  msgstr "Facebook"
632
 
633
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
 
634
  msgid "Weblog"
635
  msgstr "Weblog"
636
 
637
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:344
 
638
  msgid ""
639
+ "Please donate to WP Statistics. With your help WP Statistics will rule the "
640
+ "world!"
641
+ msgstr "捐赠WP Statistics,有您的帮助,WP Statistics会发展的更好。"
642
 
643
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:357
 
644
  msgid "Donate"
645
  msgstr "赞助"
646
 
647
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:394
648
+ msgid "Hits chart in the last 20 days"
649
+ msgstr "最近20天的点击统计图表"
 
650
 
651
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
652
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
653
+ msgid "Search Engine Referrers Statistical Chart"
654
+ msgstr "搜索引擎引用统计图表"
655
 
656
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:489
657
+ msgid "Referrer search engine chart in the last 20 days"
658
+ msgstr "过去20天搜索引擎引用统计图表"
659
+
660
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:512
661
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
662
+ msgid "Number of referrer"
663
+ msgstr "引用次数"
664
+
665
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:681
666
+ msgid "Today visitors on map"
667
+ msgstr "地图上今日访客"
668
 
669
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
670
+ msgid "Search Engine Referrers Statistics"
671
+ msgstr "搜索引擎引用统计"
672
+
673
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
674
+ msgid "Referrer search engine chart in the last"
675
+ msgstr "过去搜索引擎引用统计表"
676
+
677
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
678
+ msgid "Top Countries"
679
+ msgstr "前几名的国家"
680
+
681
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:47
682
  msgid "Referring sites from"
683
+ msgstr "来自网址的引用"
684
+
685
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
686
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
687
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
688
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
689
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:5
690
+ msgid "Access denied!"
691
+ msgstr "拒绝访问"
692
+
693
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
694
+ #, php-format
695
+ msgid "<code>%s</code> agent data deleted successfully."
696
+ msgstr "<code>%s</code> 代理缓存数据删除成功。"
697
+
698
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
699
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
700
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
701
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:53
702
+ msgid "Please select the desired items."
703
+ msgstr "请选择期望的条目"
704
+
705
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
706
+ #, php-format
707
+ msgid "<code>%s</code> platform data deleted successfully."
708
+ msgstr "<code>%s</code> 平台缓存数据删除成功。"
709
+
710
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:47
711
+ #, php-format
712
+ msgid "<code>%s</code> table data deleted successfully."
713
+ msgstr "<code>%s</code> 图表缓存数据删除成功。"
714
+
715
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:51
716
+ #, php-format
717
+ msgid "Error, %s not emptied!"
718
+ msgstr "错误,%s 未清空。"
719
+
720
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:17
721
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:27
722
+ #, php-format
723
+ msgid ""
724
+ "<code>%s</code> data older than <code>%s</code> days purged successfully."
725
+ msgstr ""
726
+ "<code>%s</code> data older than <code>%s</code> days purged successfully."
727
+
728
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
729
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
730
+ #, php-format
731
+ msgid "No records found to purge from <code>%s</code>!"
732
+ msgstr "从<code>%s</code>没有找到要清除的信息!"
733
+
734
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:35
735
+ msgid "Please select a value over 30 days."
736
+ msgstr "请选择一个大于30天的值"
737
+
738
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:3
739
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:116
740
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:11
741
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:3
742
+ msgid "Resources/Information"
743
+ msgstr "资源/信息"
744
+
745
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:4
746
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:15
747
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:117
748
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:12
749
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:4
750
+ msgid "Export"
751
+ msgstr "导出"
752
+
753
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:5
754
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:118
755
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:13
756
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:5
757
+ msgid "Purging"
758
+ msgstr "清除"
759
+
760
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:7
761
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:120
762
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:15
763
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:7
764
+ msgid "Updates"
765
+ msgstr "更新"
766
+
767
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:20
768
+ msgid "Export from"
769
+ msgstr "导出来源"
770
+
771
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:25
772
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:41
773
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
774
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
775
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
776
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:169
777
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
778
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
779
+ msgid "Please select."
780
+ msgstr "请选择"
781
+
782
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:30
783
+ msgid "Select the table for the output file."
784
+ msgstr "导出格式"
785
+
786
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:36
787
+ msgid "Export To"
788
+ msgstr "导出到"
789
+
790
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:47
791
+ msgid "Select the output file type."
792
+ msgstr "选择导出文件格式"
793
+
794
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:53
795
+ msgid "Include Header Row"
796
+ msgstr "包含头信息"
797
+
798
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:58
799
+ msgid "Include a header row as the first line of the exported file."
800
+ msgstr "将头信息作为导出文件的第一行"
801
+
802
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:59
803
+ msgid "Start Now!"
804
+ msgstr "开始!"
805
+
806
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:10
807
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:36
808
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:62
809
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:90
810
+ msgid "Are you sure?"
811
+ msgstr "确定?"
812
+
813
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:127
814
+ msgid "Data"
815
+ msgstr "数据"
816
+
817
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:132
818
+ msgid "Empty Table"
819
+ msgstr "空表"
820
+
821
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:143
822
+ msgid "All data table will be lost."
823
+ msgstr "所有的表数据将丢失。"
824
+
825
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:144
826
+ msgid "Clear now!"
827
+ msgstr "马上清除!"
828
+
829
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:152
830
+ msgid "Purge records older than"
831
+ msgstr "清除记录条件选择"
832
+
833
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:158
834
+ msgid ""
835
+ "Deleted user statistics data older than the selected number of days. "
836
+ "Minimum value is 30 days."
837
+ msgstr "清除比所选日期更加久远的统计数据。日期最小值为30天。"
838
+
839
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:159
840
+ msgid "Purge now!"
841
+ msgstr "现在清除。"
842
+
843
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:166
844
+ msgid "Delete User Agent Types"
845
+ msgstr "删除用户代理类型"
846
+
847
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:171
848
+ msgid "Delete Agents"
849
+ msgstr "删除代理"
850
+
851
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:186
852
+ msgid "All visitor data will be lost for this agent type."
853
+ msgstr "该类型的所有访客信息将被删除。"
854
+
855
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:187
856
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:211
857
+ msgid "Delete now!"
858
+ msgstr "现在删除!"
859
+
860
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:195
861
+ msgid "Delete Platforms"
862
+ msgstr "删除平台"
863
+
864
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:210
865
+ msgid "All visitor data will be lost for this platform type."
866
+ msgstr "该平台的所有访客数据都将被删除。"
867
+
868
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
869
+ msgid "GeoIP File Info"
870
+ msgstr "基于IP查询地理位置文件介绍"
871
+
872
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:27
873
+ msgid "File Date"
874
+ msgstr "文件数据"
875
+
876
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:36
877
+ msgid "Database file does not exist."
878
+ msgstr "数据库文件不存在"
879
+
880
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:40
881
+ msgid "The file date of the GeoIP database."
882
+ msgstr "GeoIP数据库文件"
883
+
884
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:46
885
+ msgid "File Size"
886
+ msgstr "文件大小"
887
+
888
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
889
+ msgid "The file size of the GeoIP database."
890
+ msgstr "GeoIP数据库文件大小"
891
+
892
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
893
+ msgid "GeoIP Options"
894
+ msgstr "GeoIP选项"
895
+
896
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:77
897
+ msgid "Update Now!"
898
+ msgstr "现在更新!"
899
+
900
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:78
901
+ msgid "Get updates for the location and the countries, this may take a while"
902
+ msgstr "更新位置和国家,需要花费一会儿时间"
903
+
904
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:14
905
+ msgid "Resources"
906
+ msgstr "资源"
907
+
908
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:19
909
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:24
910
+ msgid "Memory usage in PHP"
911
+ msgstr "PHP中内存使用"
912
+
913
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:23
914
+ msgid "Byte"
915
+ msgstr "字节"
916
+
917
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:30
918
+ #, php-format
919
+ msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
920
+ msgstr "<code>%sstatistics_useronline</code> 表中的行数"
921
+
922
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:34
923
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:45
924
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:56
925
+ msgid "Row"
926
+ msgstr "行"
927
+
928
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:35
929
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:46
930
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:57
931
+ msgid "Number of rows"
932
+ msgstr "行数"
933
+
934
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:41
935
+ #, php-format
936
+ msgid "Number of rows in the <code>%sstatistics_visit</code> table"
937
+ msgstr "<code>%sstatistics_visit</code> 表中的行数"
938
+
939
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:52
940
+ #, php-format
941
+ msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
942
+ msgstr "<code>%sstatistics_visitor</code> 表中的行数"
943
+
944
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:62
945
+ msgid "Version Info"
946
+ msgstr "版本信息"
947
+
948
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:67
949
+ msgid "WP Statistics Version"
950
+ msgstr "WP Statistics 版本"
951
+
952
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:72
953
+ msgid "The WP Statistics version you are running."
954
+ msgstr "你运行的WP Statistics版本"
955
+
956
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:78
957
+ msgid "PHP Version"
958
+ msgstr "PHP版本"
959
+
960
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:83
961
+ msgid "The PHP version you are running."
962
+ msgstr "你使用的PHP版本"
963
+
964
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
965
+ msgid "PHP Safe Mode"
966
+ msgstr "PHP安全模式"
967
+
968
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
969
+ msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
970
+ msgstr "PHP安全模式是否开启。GeoIP代码在安全模式下不能工作。"
971
+
972
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
973
+ msgid "jQuery Version"
974
+ msgstr "jQuery版本"
975
+
976
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
977
+ msgid "The jQuery version you are running."
978
+ msgstr "你使用的jQuery版本"
979
+
980
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:111
981
+ msgid "cURL Version"
982
+ msgstr "cURL版本"
983
+
984
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
985
+ msgid "cURL not installed"
986
+ msgstr "cURL未安装"
987
+
988
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
989
+ msgid ""
990
+ "The PHP cURL Extension version you are running. cURL is required for the "
991
+ "GeoIP code, if it is not installed GeoIP will be disabled."
992
  msgstr ""
993
+ "你使用的PHP cURL扩展版本。GeoIP代码需要cURL,如果cURL没有安装,GeoIP将被禁"
994
+ "用。"
995
+
996
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:122
997
+ msgid "BC Math"
998
+ msgstr "高精度数学"
999
+
1000
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
1001
+ msgid "Installed"
1002
+ msgstr "已安装"
1003
+
1004
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
1005
+ msgid "Not installed"
1006
+ msgstr "未安装"
1007
+
1008
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:127
1009
+ msgid ""
1010
+ "If the PHP BC Math Extension is installed. BC Math is required for the "
1011
+ "GeoIP code, if it is not installed GeoIP will be disabled."
1012
+ msgstr "GeoIP代码需要BC Math扩展,如果没有安装,GeoIP将被禁用。"
1013
+
1014
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:132
1015
+ msgid "Client Info"
1016
+ msgstr "客户端信息"
1017
+
1018
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:137
1019
+ msgid "Client IP"
1020
+ msgstr "客户端IP"
1021
+
1022
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:142
1023
+ msgid "The client IP address."
1024
+ msgstr "客户端IP地址"
1025
+
1026
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:148
1027
+ msgid "User Agent"
1028
+ msgstr "用户代理"
1029
+
1030
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:153
1031
+ msgid "The client user agent string."
1032
+ msgstr "用户代理信息"
1033
+
1034
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:2
1035
+ msgid "Name"
1036
+ msgstr "名称"
1037
+
1038
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:6
1039
+ msgid "Items"
1040
+ msgstr "条目"
1041
+
1042
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
1043
+ msgid "Search Engine reffered"
1044
+ msgstr "搜索引擎引用"
1045
+
1046
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
1047
+ msgid "Select type of search engine"
1048
+ msgstr "选择搜寻引擎种类"
1049
 
1050
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:11
1051
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
1052
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
1053
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:11
1054
+ msgid ""
1055
+ "This will permanently delete data from the database each day, are you sure "
1056
+ "you want to enable this option?"
1057
+ msgstr "该选项会将每天数据库的信息永久删除,你确定要使能该选项吗?"
1058
+
1059
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:21
1060
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:21
1061
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:21
1062
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:21
1063
  msgid "General Settings"
1064
  msgstr "一般设置"
1065
 
1066
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:22
1067
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:22
1068
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:22
1069
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:22
1070
+ msgid "Access/Exclusions"
1071
+ msgstr "访问/过滤"
1072
+
1073
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:23
1074
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:23
1075
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:23
1076
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:23
1077
+ msgid "GeoIP"
1078
+ msgstr "基于IP的地理位置查询(GeoIP)"
1079
+
1080
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:24
1081
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:24
1082
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:24
1083
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:24
1084
+ msgid "Maintenance"
1085
+ msgstr "维护"
1086
+
1087
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:32
1088
+ msgid "Access Levels"
1089
+ msgstr "访问等级"
1090
+
1091
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:61
1092
+ msgid "Required user level to view WP Statistics"
1093
+ msgstr "查看WP Statistics信息需要的用户等级"
1094
+
1095
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:76
1096
+ msgid "Required user level to manage WP Statistics"
1097
+ msgstr "管理WP Statistics所需的用户等级"
1098
+
1099
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:84
1100
+ #, php-format
1101
+ msgid ""
1102
+ "See the %sWordPress Roles and Capabilities page%s for details on capability "
1103
+ "levels."
1104
+ msgstr "请查看%sWordPress Roles and Capabilities page%s了解等级权限。"
1105
+
1106
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:85
1107
+ msgid ""
1108
+ "Hint: manage_network = Super Admin Network, manage_options = Administrator, "
1109
+ "edit_others_posts = Editor, publish_posts = Author, edit_posts = "
1110
+ "Contributor, read = Everyone."
1111
+ msgstr ""
1112
+ "提示:manage_network = Super Admin Network, manage_options = Administrator, "
1113
+ "edit_others_posts = Editor, publish_posts = Author, edit_posts = "
1114
+ "Contributor, read = Everyone."
1115
+
1116
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:86
1117
+ msgid ""
1118
+ "Each of the above casscades the rights upwards in the default WordPress "
1119
+ "configuration. So for example selecting publish_posts grants the right to "
1120
+ "Authors, Editors, Admins and Super Admins."
1121
+ msgstr ""
1122
+ "在WordPress默认的设置中,上面的每个权限都是向下包含的。所以,比如你选择将"
1123
+ "publish_posts权限授予某人,那么他将拥有以下权限:作者,编辑者,管理员和超级管"
1124
+ "理员。"
1125
+
1126
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:87
1127
+ #, php-format
1128
+ msgid ""
1129
+ "If you need a more robust solution to delegate access you might want to look "
1130
+ "at %s in the WordPress plugin directory."
1131
+ msgstr ""
1132
+ "如果你需要一个更加稳妥的解决方案来优雅的访问,那么你可以在WordPress的插件目录"
1133
+ "看一下 %s。"
1134
+
1135
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:96
1136
+ msgid "Record Exclusions"
1137
+ msgstr "过滤记录"
1138
+
1139
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:98
1140
+ msgid "Enable"
1141
+ msgstr "使能"
1142
+
1143
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:99
1144
+ msgid ""
1145
+ "This will record all the excluded hits in a separate table with the reasons "
1146
+ "why it was excluded but no other information. This will generate a lot of "
1147
+ "data but is useful if you want to see the total number of hits your site "
1148
+ "gets, not just actual user visits."
1149
+ msgstr ""
1150
+ "这样会在一个单独的表里面记录所有被过滤掉的点击,但是他不包含其他任何信息。这"
1151
+ "样虽然会产生很多数据,但是却是非常有用的,特别是当你想知道你的网站总的点击数"
1152
+ "时。"
1153
+
1154
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:104
1155
+ msgid "Exclude User Roles"
1156
+ msgstr "过滤用户角色"
1157
+
1158
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:120
1159
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:165
1160
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:172
1161
+ msgid "Exclude"
1162
+ msgstr "过滤"
1163
+
1164
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:121
1165
+ #, php-format
1166
+ msgid "Exclude %s role from data collection."
1167
+ msgstr "从收集到的数据过滤%s."
1168
+
1169
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:127
1170
+ msgid "IP/Robot Exclusions"
1171
+ msgstr "IP/机器人过滤"
1172
+
1173
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:131
1174
+ msgid "Robot List"
1175
+ msgstr "机器人列表"
1176
+
1177
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:143
1178
+ msgid ""
1179
+ "A list of words (one per line) to match against to detect robots. Entries "
1180
+ "must be at least 4 characters long or they will be ignored."
1181
+ msgstr ""
1182
+ "每行的词语用于检测机器人。每个词语必须至少包含4个字符,否则会被忽略掉。"
1183
+
1184
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:144
1185
+ msgid "Reset to Default"
1186
+ msgstr "恢复初始值"
1187
+
1188
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:148
1189
+ msgid "Excluded IP Address List"
1190
+ msgstr "IP地址过滤列表"
1191
+
1192
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
1193
+ msgid ""
1194
+ "A list of IP addresses and subnet masks (one per line) to exclude from "
1195
+ "statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
1196
+ "formats are accepted). To specify an IP address only, use a subnet value of "
1197
+ "32 or 255.255.255.255.255."
1198
+ msgstr ""
1199
+ "根据IP地址及子网掩码来过滤收集信息(192.168.0.0/24和192.168.0.0/255.255.255.0"
1200
+ "两种格式都可以)。为了专门识别某IP地址,可以使用32位的掩码或者"
1201
+ "255.255.255.255."
1202
+
1203
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:152
1204
+ msgid "Add 10.0.0.0"
1205
+ msgstr "增加 10.0.0.0"
1206
+
1207
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:153
1208
+ msgid "Add 172.16.0.0"
1209
+ msgstr "增加 172.16.0.0"
1210
+
1211
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:154
1212
+ msgid "Add 192.168.0.0"
1213
+ msgstr "增加 192.168.1.0"
1214
+
1215
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:159
1216
+ msgid "Site URL Exclusions"
1217
+ msgstr "网址过滤"
1218
+
1219
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:163
1220
+ msgid "Excluded Login Page"
1221
+ msgstr "登录页面过滤"
1222
+
1223
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:166
1224
+ msgid "Exclude the login page for registering as a hit."
1225
+ msgstr "将注册页面的点击过滤掉。"
1226
+
1227
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:170
1228
+ msgid "Excluded Admin Pages"
1229
+ msgstr "过滤掉管理页面"
1230
+
1231
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:173
1232
+ msgid "Exclude the admin pages for registering as a hit."
1233
+ msgstr "将管理界面的那次注册点击过滤掉。"
1234
+
1235
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1236
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:149
1237
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1238
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:312
1239
+ msgid "Update"
1240
+ msgstr "更新"
1241
+
1242
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:32
1243
+ msgid "GeoIP settings"
1244
+ msgstr "GeoIP设置"
1245
+
1246
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:43
1247
+ msgid "GeoIP collection"
1248
+ msgstr "GeoIP收集"
1249
+
1250
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:48
1251
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:72
1252
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:106
1253
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:42
1254
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:42
1255
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
1256
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
1257
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
1258
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:127
1259
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:189
1260
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:205
1261
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:217
1262
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:229
1263
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:245
1264
  msgid "Active"
1265
  msgstr "启动"
1266
 
1267
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:49
1268
+ msgid ""
1269
+ "For get more information and location (country) from visitor, enable this "
1270
+ "feature."
1271
+ msgstr "为了得到更多关于访客的信息和地理位置(国家),请使能该特性。"
1272
+
1273
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:55
1274
+ msgid "Update GeoIP Info"
1275
+ msgstr "更新GeoIP信息"
1276
+
1277
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:60
1278
+ msgid "Download GeoIP Database"
1279
+ msgstr "下载GeoIP数据库"
1280
+
1281
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:61
1282
+ msgid "Save changes on this page to download the update."
1283
+ msgstr "保存这个页面的更改来下载更新。"
1284
+
1285
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:67
1286
+ msgid "Schedule monthly update of GeoIP DB"
1287
+ msgstr "计划每月更新GeoIP数据库"
1288
+
1289
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:75
1290
+ msgid "Next update will be"
1291
+ msgstr "下一次更新"
1292
+
1293
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:94
1294
+ msgid ""
1295
+ "Download of the GeoIP database will be scheduled for 2 days after the first "
1296
+ "Tuesday of the month."
1297
+ msgstr "计划每月第一个周二的未来两天用来下载GeoIP数据库。"
1298
+
1299
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:95
1300
+ msgid ""
1301
+ "This option will also download the database if the local filesize is less "
1302
+ "than 1k (which usually means the stub that comes with the plugin is still in "
1303
+ "place)."
1304
+ msgstr "这个选项将会在本地文件不足1K的前提下依然下载数据库"
1305
+
1306
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:101
1307
+ msgid "Populate missing GeoIP after update of GeoIP DB"
1308
+ msgstr "更新GeoIP数据库后丢失GeoIP信息"
1309
+
1310
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:107
1311
+ msgid "Update any missing GeoIP data after downloading a new database."
1312
+ msgstr "更新任何因为下载新数据而丢失的GeoIP"
1313
+
1314
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:116
1315
+ msgid "GeoIP collection is disabled due to the following reasons:"
1316
+ msgstr "GeoIP因为以下原因被禁用:"
1317
+
1318
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:119
1319
+ #, php-format
1320
+ msgid ""
1321
+ "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1322
+ "the installed PHP version being "
1323
+ msgstr "GeoIP需要以上%s以上的PHP版本,目前GeoIP未启用使用为当前安装的PHP版本为"
1324
+
1325
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:124
1326
+ msgid ""
1327
+ "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1328
+ "your version of PHP!"
1329
+ msgstr "GeoIP需要cURL PHP扩展,但是在您目前的PHP版本中,该扩展没有被加载。"
1330
+
1331
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:130
1332
+ msgid ""
1333
+ "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1334
+ "your version of PHP!"
1335
+ msgstr "GeoIP需要BC Math PHP扩展,但是在您目前的PHP版本中,该扩展没有被加载。"
1336
+
1337
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:136
1338
+ msgid ""
1339
+ "PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
1340
+ "mode enabled!"
1341
+ msgstr "检测到目前处于PHP safe模式。该模式下GeoIP无法运行。"
1342
+
1343
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1344
+ msgid "Database Maintenance"
1345
+ msgstr "数据库维护"
1346
+
1347
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:37
1348
+ msgid "Run a daily WP Cron job to prune the databases"
1349
+ msgstr "运行一个每日的程序来清理数据库"
1350
+
1351
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:43
1352
+ msgid ""
1353
+ "A WP Cron job will be run daily to prune any data older than a set number of "
1354
+ "days."
1355
+ msgstr "计划程序将会永久的删除比设定日期更加久远的数据。"
1356
+
1357
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:49
1358
+ msgid "Prune data older than"
1359
+ msgstr "删除更老的数据"
1360
+
1361
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:54
1362
+ msgid "Days"
1363
+ msgstr "天"
1364
+
1365
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:55
1366
+ msgid ""
1367
+ "The number of days to keep statistics for. Minimum value is 30 days. "
1368
+ "Invalid values will disable the daily maintenance."
1369
+ msgstr "保留统计信息的天数。最小值为30天。不合法的值代表不使用日常维护功能。"
1370
+
1371
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:32
1372
+ msgid "General"
1373
+ msgstr "通用设置"
1374
+
1375
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
1376
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
1377
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
1378
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:246
1379
  msgid "Enable or disable this feature"
1380
  msgstr "启用或停用这功能"
1381
 
1382
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:49
 
1383
  msgid "Visits"
1384
  msgstr "点击"
1385
 
1386
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:73
1387
+ msgid "Store entire user agent string"
1388
+ msgstr "保存所有用户代理信息"
 
1389
 
1390
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:79
1391
+ msgid "Only enabled for debugging"
1392
+ msgstr "只用于调试"
1393
+
1394
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:85
1395
  msgid "Check for online users every"
1396
  msgstr "检查在线用户间隔"
1397
 
1398
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:90
1399
+ msgid "Second"
 
1400
  msgstr "秒"
1401
 
1402
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:91
 
1403
  #, php-format
1404
  msgid "Time for the check accurate online user in the site. Now: %s Second"
1405
  msgstr "检查有效在线用户的间隔。现在:每 %s 秒"
1406
 
1407
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:97
 
1408
  msgid "Show stats in menu bar"
1409
  msgstr "在菜单中显示"
1410
 
1411
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
 
1412
  msgid "No"
1413
  msgstr "否"
1414
 
1415
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
 
1416
  msgid "Yes"
1417
  msgstr "是"
1418
 
1419
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
 
1420
  msgid "Show stats in admin menu bar"
1421
  msgstr "在管理菜单中显示"
1422
 
1423
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:111
 
1424
  msgid "Coefficient per visitor"
1425
  msgstr "访客系数"
1426
 
1427
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:116
 
1428
  #, php-format
1429
  msgid "For each visit to account for several hits. Currently %s."
1430
  msgstr "每一个访问计算多少位访客,现时 %s "
1431
 
1432
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:122
1433
+ msgid "Hide admin notices about non active features"
1434
+ msgstr "不向管理员同志未启用的特性"
 
1435
 
1436
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:128
1437
+ msgid ""
1438
+ "By default WP Statistics displays an alert if any of the core features are "
1439
+ "disbaled on every admin page, this option will disable these notices."
1440
  msgstr ""
1441
+ "默认情况下,在所有的管理页面中,当一些核心的特性被禁用的时候,WP Statistics会"
1442
+ "发出警告,如果该选项启用,则警告会被禁用。"
1443
 
1444
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:133
1445
+ msgid "Search Enginges"
1446
+ msgstr "搜索引擎"
1447
+
1448
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:138
1449
+ msgid ""
1450
+ "Disabling all search engines is not allowed, doing so will result in all "
1451
+ "search engines being active."
1452
+ msgstr "不允许禁用所有搜索引擎,这样做会使所有的搜索引擎启用。"
1453
+
1454
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
1455
+ msgid "disable"
1456
+ msgstr "禁用"
1457
+
1458
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:153
1459
+ #, php-format
1460
+ msgid "Disable %s from data collection and reporting."
1461
+ msgstr "禁用来自%s的数据收集和报告。"
1462
+
1463
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:159
1464
+ msgid "Charts"
1465
+ msgstr "图表"
1466
+
1467
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:164
1468
+ msgid "Chart type"
1469
+ msgstr "图表类型"
1470
+
1471
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:170
1472
+ msgid "Line"
1473
+ msgstr "行"
1474
+
1475
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:171
1476
+ msgid "Spline"
1477
+ msgstr "曲线"
1478
 
1479
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:172
1480
+ msgid "Area"
1481
+ msgstr "面积"
1482
+
1483
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:173
1484
+ msgid "Area Spline"
1485
+ msgstr "区域图"
1486
+
1487
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
1488
+ msgid "Column"
1489
+ msgstr "列"
1490
+
1491
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:175
1492
+ msgid "Bar"
1493
+ msgstr "条形图"
1494
+
1495
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:176
1496
+ msgid "Scatter"
1497
+ msgstr "散点图"
1498
+
1499
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:178
1500
+ msgid "Chart type in view stats."
1501
+ msgstr "视图中的图表类型"
1502
+
1503
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:184
1504
+ msgid "Include totals"
1505
+ msgstr "包含总数"
1506
+
1507
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:190
1508
+ msgid ""
1509
+ "Add a total line to charts with multiple values, like the search engine "
1510
+ "referrals"
1511
+ msgstr "用多个不用的值在图表中增加一个总行,例如像搜索引擎引用数"
1512
+
1513
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:200
1514
+ msgid "Disable map"
1515
+ msgstr "禁用map"
1516
+
1517
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:206
1518
+ msgid "Disable the map display"
1519
+ msgstr "禁用map显示"
1520
+
1521
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:212
1522
+ msgid "Alternate map location"
1523
+ msgstr "可选的地图位置"
1524
+
1525
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:218
1526
+ msgid ""
1527
+ "Place the map above the recent visitors area instead of at the top of the "
1528
+ "page."
1529
+ msgstr "将地图放置在最近访客区域,而不是页面顶部。"
1530
+
1531
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:224
1532
+ msgid "Get country location from Google"
1533
+ msgstr "从谷歌获得国家位置信息"
1534
+
1535
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:230
1536
+ msgid ""
1537
+ "This feature may cause a performance degradation when viewing statistics."
1538
+ msgstr "该特性会使得在查看统计数据时会影响性能。"
1539
+
1540
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:253
1541
+ msgid "Time send"
1542
+ msgstr "发送时间"
1543
+
1544
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
1545
  msgid "Hourly"
1546
  msgstr "每小时"
1547
 
1548
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
 
1549
  msgid "Twice daily"
1550
  msgstr "每天两次"
1551
 
1552
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
 
1553
  msgid "daily"
1554
  msgstr "每天"
1555
 
1556
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
 
1557
  msgid "Select when receiving statistics report."
1558
  msgstr "选择何时接收统计报告"
1559
 
1560
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:269
 
1561
  msgid "Send Statistical reporting to"
1562
  msgstr "发送统计报告至"
1563
 
1564
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:275
 
1565
  msgid "Email"
1566
  msgstr "电子邮件"
1567
 
1568
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:276
 
1569
  msgid "SMS"
1570
+ msgstr "短讯"
1571
 
1572
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:278
 
1573
  msgid "Type Select Get Status Report."
1574
+ msgstr "选择获取状态报告信息的类型。"
1575
 
1576
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:281
 
1577
  #, php-format
1578
  msgid ""
1579
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
1582
  "注意:要发送SMS文字短讯,请安装 <a href=\"%s\" target=\"_blank\">Wordpress "
1583
  "SMS</a> 插件"
1584
 
1585
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:288
 
1586
  msgid "Send Content Report"
1587
+ msgstr "发送内容报告"
1588
 
1589
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:293
 
1590
  msgid "Enter the contents of the reports received."
1591
+ msgstr "输入收到的报告内容。"
1592
 
1593
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:295
 
1594
  msgid "Input data:"
1595
  msgstr "输入数据:"
1596
 
1597
+ #~ msgid "Google"
1598
+ #~ msgstr "谷歌 (Google)"
 
 
1599
 
1600
+ #~ msgid "Yahoo!"
1601
+ #~ msgstr "雅虎 (Yahoo!)"
 
 
1602
 
1603
+ #~ msgid "Bing"
1604
+ #~ msgstr "Bing"
 
 
1605
 
1606
+ #~ msgid "Firefox"
1607
+ #~ msgstr "Firefox"
 
 
1608
 
1609
+ #~ msgid "IE"
1610
+ #~ msgstr "IE"
 
 
1611
 
1612
+ #~ msgid "Ipad"
1613
+ #~ msgstr "Ipad"
1614
+
1615
+ #~ msgid "Android"
1616
+ #~ msgstr "Android"
1617
+
1618
+ #~ msgid "Chrome"
1619
+ #~ msgstr "Chrome"
1620
+
1621
+ #~ msgid "Safari"
1622
+ #~ msgstr "Safari"
1623
+
1624
+ #~ msgid "Opera"
1625
+ #~ msgstr "Opera"
1626
+
1627
+ #~ msgid "Other"
1628
+ #~ msgstr "其他"
1629
+
1630
+ #~ msgid "(See more)"
1631
+ #~ msgstr "(查看更多)"
1632
+
1633
+ #~ msgid ""
1634
+ #~ "Please donate to the plugin. With the help of plug-ins you can quickly "
1635
+ #~ "spread."
1636
+ #~ msgstr "请赞助这件插件"
1637
+
1638
+ #~ msgid "Statistical reporting settings"
1639
+ #~ msgstr "统计报告设定"
1640
+
1641
+ #~ msgid "English"
1642
+ #~ msgstr "英语"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: mostafa.s1990
3
  Donate link: http://mostafa-soufi.ir/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.8
7
- Stable tag: 5.2
8
  License: GPL2
9
 
10
  Complete statistics for your blog.
@@ -55,7 +55,7 @@ This product includes GeoLite2 data created by MaxMind, available from http://ww
55
  * Persian
56
  * Portuguese [Thanks](http://www.musicalmente.info/)
57
  * Romanian [Thanks Luke Tyler](http://www.nobelcom.com/)
58
- * French Thanks Anice Gnampa. Redundancy translated by Nicolas Baudet
59
  * Russian [Thanks Igor Dubilej](http://www.iflexion.com/)
60
  * Spanish Thanks Jose
61
  * Arabic [Thanks Hammad Shammari](http://www.facebook.com/aboHatim)
@@ -167,6 +167,27 @@ Also, if your running an internal test site with non-routable IP addresses (like
167
  = I was using V3.2 and now that I've upgraded my visitors and visits have gone way down? =
168
  The webcrawler detection code has be Fixes and will now exclude them from your stats, don't worry, it now reflects a more accurate view of actual visitors to your site.
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  == Screenshots ==
171
  1. View stats page.
172
  2. View latest search words.
@@ -180,6 +201,9 @@ The webcrawler detection code has be Fixes and will now exclude them from your s
180
  10. View latest search engine referrers Statistics page.
181
 
182
  == Upgrade Notice ==
 
 
 
183
  = 4.8 =
184
  * BACKUP YOUR DATABASE BEFORE INSTALLING!
185
  * This update includes a new database table, you should not lose any data to make sure to backup your database just in case.
@@ -195,6 +219,23 @@ The webcrawler detection code has be Fixes and will now exclude them from your s
195
  * As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
196
 
197
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  = 5.2 =
199
  * Added: Additional checks for BC Math and cURL which are required for the GeoIP code.
200
  * Updated: GeoIP database handling if it is missing or invalid.
3
  Donate link: http://mostafa-soufi.ir/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.9
7
+ Stable tag: 5.3
8
  License: GPL2
9
 
10
  Complete statistics for your blog.
55
  * Persian
56
  * Portuguese [Thanks](http://www.musicalmente.info/)
57
  * Romanian [Thanks Luke Tyler](http://www.nobelcom.com/)
58
+ * French Thanks Anice Gnampa. Additional translations by Nicolas Baudet and eldidi
59
  * Russian [Thanks Igor Dubilej](http://www.iflexion.com/)
60
  * Spanish Thanks Jose
61
  * Arabic [Thanks Hammad Shammari](http://www.facebook.com/aboHatim)
167
  = I was using V3.2 and now that I've upgraded my visitors and visits have gone way down? =
168
  The webcrawler detection code has be Fixes and will now exclude them from your stats, don't worry, it now reflects a more accurate view of actual visitors to your site.
169
 
170
+ = GeoIP is enabled but no hits are being counted? =
171
+ The GeoIP code requires several things to function, PHP 5.3 or above, the bcmath extension, the cURL extension and PHP cannot be running in safe mode. All of these conditions are checked for but there may be additional items required. Check your PHP log files and see if there are any fatal errors listed.
172
+
173
+ = How much memory does PHP Statistics require? =
174
+ This depends on how many hits your site gets. The data collection code is very light weight, however the reporting and statistics code can take a lot of memory to process. The longer you collect data for the more memory you will need to process it. At a bare minimum, a basic WordPress site with WP Statitics should have at least 32g of RAM. Sites with lots of plugins and high traffic should look at significantly increasing that.
175
+
176
+ = I've enabled IP subnet exclusions and now no visitors are recorded? =
177
+ Be very careful to set the subnet mask correctly on the subnet list, it is very easy to catch too much traffic. Likewise if you are excluding a single IP address make sure to include a subnet mask of 32 or 255.255.255.255 otherwise the default subnet of 0 will be used, catching all ip addresses.
178
+
179
+ = I'm not receiving e-mail reports? =
180
+ Make sure you have WordPress configured correctly for SMTP and also check your WP Cron is working correctly. You can use [Cron View](http://wordpress.org/plugins/cron-view) to examine your WP Cron table and see if there are any issues.
181
+
182
+ = Does WP Statistics support multi-site? =
183
+ WP Statistics hasn't been tested with multi-site and there have been some issues reported with getting it enabled correctly on all sites in a network.
184
+
185
+ = Does WP Statistics report on post hits? =
186
+ No, WP Statistics only tracks total hits to your site, not to individual pages.
187
+
188
+ = Does WP Statistics track the time of the hits? =
189
+ No.
190
+
191
  == Screenshots ==
192
  1. View stats page.
193
  2. View latest search words.
201
  10. View latest search engine referrers Statistics page.
202
 
203
  == Upgrade Notice ==
204
+ = 5.3 =
205
+ * Robots list updated, please either go to "Statistics->Settings->IP/Robot Exclusions", "Reset to Default" and then save or manually make the changes which can be found in the change log details.
206
+
207
  = 4.8 =
208
  * BACKUP YOUR DATABASE BEFORE INSTALLING!
209
  * This update includes a new database table, you should not lose any data to make sure to backup your database just in case.
219
  * As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
220
 
221
  == Changelog ==
222
+ = 5.? =
223
+ * Fixed: GeoIP dependency code to ignore safe mode check in PHP 5.4 or newer.
224
+ * Fixed: GeoIP dependency code to properly detect safe mode with PHP 5.3 or older.
225
+ * Updated: get_IP code to better handle malformed IP addresses.
226
+ * Updated: Persian (fa_IR) language.
227
+ * Updated: Arabic (ar) language.
228
+ * Updated: Chinese (zh_CN) language.
229
+
230
+ = 5.3 =
231
+ * Added: New robot's to the robots list: BOT for JCE, Leikibot, LoadTimeBot, NerdyBot, niki-bot, PagesInventory, sees.co, SurveyBot, trendictionbot, Twitterbot, Wotbox, ZemlyaCrawl
232
+ * Added: Check for PHP's Safe Mode as the GeoIP code does not function with it enabled.
233
+ * Added: Option to disable administrative notices of inactive features.
234
+ * Added: Option to export column names as first line of export files.
235
+ * Added: Options to disable search engines from being collected/displayed.
236
+ * Updated: French (fr_FR) language translation.
237
+ * Fixed: Download of the GeoIP database could cause a fatal error message at the end of a page if it was triggered outside the admin area.
238
+
239
  = 5.2 =
240
  * Added: Additional checks for BC Math and cURL which are required for the GeoIP code.
241
  * Updated: GeoIP database handling if it is missing or invalid.
robotslist.php CHANGED
@@ -15,7 +15,8 @@ $wps_robotarray = array(
15
  'ASPSeek',
16
  'Baiduspider',
17
  'Benjojo',
18
- 'bingbot',
 
19
  'Butterfly',
20
  'ccbot',
21
  'clamantivirus',
@@ -36,8 +37,10 @@ $wps_robotarray = array(
36
  'ia_archiver',
37
  'IDBot',
38
  'InfoSeek',
39
- 'inktomi',
40
- 'linkdexbot',
 
 
41
  'looksmart',
42
  'Lycos',
43
  'Mail.RU_Bot',
@@ -48,37 +51,46 @@ $wps_robotarray = array(
48
  'msnbot',
49
  'moreover',
50
  'MRBOT',
51
- 'NationalDirectory',
 
 
52
  'nutch',
53
- 'Openbot',
 
54
  'proximic',
55
  'rabaz',
56
  'Rambler',
57
  'Rankivabot',
58
  'Scooter',
59
- 'Scrubby',
 
60
  'SeznamBot',
61
  'Slurp',
62
  'SocialSearch',
63
  'Sogou web spider',
64
  'Spade',
65
  'spbot',
 
66
  'TechnoratiSnoop',
67
  'TECNOSEEK',
68
- 'Teoma',
 
69
  'TweetmemeBot',
70
- 'Twiceler',
 
71
  'Twitturls',
72
  'URL_Spider_SQL',
73
  'WebAlta Crawler',
74
  'WebBug',
75
  'WebFindBot',
76
- 'WeSEE:Search',
 
77
  'www.galaxy.com',
78
  'yandex',
79
  'Yahoo',
80
  'Yammybot',
81
- 'ZyBorg'
 
82
  );
83
 
84
  $wps_robotslist = implode("\n", $wps_robotarray);
15
  'ASPSeek',
16
  'Baiduspider',
17
  'Benjojo',
18
+ 'bingbot',
19
+ 'BOT for JCE',
20
  'Butterfly',
21
  'ccbot',
22
  'clamantivirus',
37
  'ia_archiver',
38
  'IDBot',
39
  'InfoSeek',
40
+ 'inktomi',
41
+ 'Leikibot',
42
+ 'linkdexbot',
43
+ 'LoadTimeBot',
44
  'looksmart',
45
  'Lycos',
46
  'Mail.RU_Bot',
51
  'msnbot',
52
  'moreover',
53
  'MRBOT',
54
+ 'NationalDirectory',
55
+ 'NerdyBot',
56
+ 'niki-bot',
57
  'nutch',
58
+ 'Openbot',
59
+ 'PagesInventory',
60
  'proximic',
61
  'rabaz',
62
  'Rambler',
63
  'Rankivabot',
64
  'Scooter',
65
+ 'Scrubby',
66
+ 'sees.co',
67
  'SeznamBot',
68
  'Slurp',
69
  'SocialSearch',
70
  'Sogou web spider',
71
  'Spade',
72
  'spbot',
73
+ 'SurveyBot',
74
  'TechnoratiSnoop',
75
  'TECNOSEEK',
76
+ 'Teoma',
77
+ 'trendictionbot',
78
  'TweetmemeBot',
79
+ 'Twiceler',
80
+ 'Twitterbot',
81
  'Twitturls',
82
  'URL_Spider_SQL',
83
  'WebAlta Crawler',
84
  'WebBug',
85
  'WebFindBot',
86
+ 'WeSEE:Search',
87
+ 'Wotbox',
88
  'www.galaxy.com',
89
  'yandex',
90
  'Yahoo',
91
  'Yammybot',
92
+ 'ZyBorg',
93
+ 'ZemlyaCrawl'
94
  );
95
 
96
  $wps_robotslist = implode("\n", $wps_robotarray);
widget.php CHANGED
@@ -87,7 +87,7 @@
87
  if(get_option('ser_widget')) {
88
 
89
  echo "<li>";
90
- echo __('Search Engine reffered', 'wp_statistics'). ": ";
91
  echo wp_statistics_searchengine(get_option('select_se'));
92
  echo "</li>";
93
  }
87
  if(get_option('ser_widget')) {
88
 
89
  echo "<li>";
90
+ echo __('Search Engine referred', 'wp_statistics'). ": ";
91
  echo wp_statistics_searchengine(get_option('select_se'));
92
  echo "</li>";
93
  }
wp-statistics.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://mostafa-soufi.ir/blog/wordpress-statistics
5
  Description: Complete statistics for your blog.
6
- Version: 5.2
7
  Author: Mostafa Soufi
8
  Author URI: http://mostafa-soufi.ir/
9
  Text Domain: wp_statistics
@@ -15,7 +15,7 @@ License: GPL2
15
  date_default_timezone_set( get_option('timezone_string') );
16
  }
17
 
18
- define('WP_STATISTICS_VERSION', '5.2');
19
  define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
20
  define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
21
 
@@ -41,30 +41,33 @@ License: GPL2
41
  }
42
  }
43
 
 
44
  include_once dirname( __FILE__ ) . '/includes/functions/parse-user-agent.php';
45
 
46
  include_once dirname( __FILE__ ) . '/includes/classes/statistics.class.php';
47
  include_once dirname( __FILE__ ) . '/includes/classes/useronline.class.php';
48
 
49
- if( get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') && function_exists('curl_init') && function_exists('bcadd') ) {
50
  include_once dirname( __FILE__ ) . '/includes/classes/hits.geoip.class.php';
51
  } else {
52
  include_once dirname( __FILE__ ) . '/includes/classes/hits.class.php';
53
  }
54
 
55
- include_once dirname( __FILE__ ) . '/includes/functions/functions.php';
56
  include_once dirname( __FILE__ ) . '/widget.php';
57
  include_once dirname( __FILE__ ) . '/shortcode.php';
58
  include_once dirname( __FILE__ ) . '/schedule.php';
59
 
60
  function wp_statistics_not_enable() {
61
- $get_bloginfo_url = get_admin_url() . "admin.php?page=wp-statistics/settings";
62
-
63
- if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') )
64
- echo '<div class="error"><p>'.sprintf(__('Facilities Wordpress Statistics not enabled! Please go to <a href="%s">setting page</a> and enable statistics', 'wp_statistics'), $get_bloginfo_url).'</p></div>';
65
-
66
- if(!get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') && function_exists('curl_init') && function_exists('bcadd'))
67
- echo '<div class="error"><p>'.sprintf(__('GeoIP collection is not active! Please go to <a href="%s">Setting page > GeoIP</a> and enable this feature (GeoIP can detect the visitors country)', 'wp_statistics'), $get_bloginfo_url . '&tab=geoip').'</p></div>';
 
 
 
68
  }
69
 
70
  if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') || !get_option('wps_geoip') ) {
@@ -355,6 +358,8 @@ License: GPL2
355
 
356
  function wp_statistics_download_geoip() {
357
 
 
 
358
  $download_url = 'http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz';
359
 
360
  $upload_dir = wp_upload_dir();
@@ -399,7 +404,7 @@ License: GPL2
399
  update_option('wps_last_geoip_dl', time());
400
  update_option('wps_update_geoip', false);
401
 
402
- if( get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') && function_exists('curl_init') && function_exists('bcadd') && get_option('wps_auto_pop')) {
403
  include_once dirname( __FILE__ ) . '/includes/functions/geoip-populate.php';
404
  $result .= wp_statistics_populate_geoip_info();
405
  }
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://mostafa-soufi.ir/blog/wordpress-statistics
5
  Description: Complete statistics for your blog.
6
+ Version: 5.3
7
  Author: Mostafa Soufi
8
  Author URI: http://mostafa-soufi.ir/
9
  Text Domain: wp_statistics
15
  date_default_timezone_set( get_option('timezone_string') );
16
  }
17
 
18
+ define('WP_STATISTICS_VERSION', '5.3');
19
  define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
20
  define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
21
 
41
  }
42
  }
43
 
44
+ include_once dirname( __FILE__ ) . '/includes/functions/functions.php';
45
  include_once dirname( __FILE__ ) . '/includes/functions/parse-user-agent.php';
46
 
47
  include_once dirname( __FILE__ ) . '/includes/classes/statistics.class.php';
48
  include_once dirname( __FILE__ ) . '/includes/classes/useronline.class.php';
49
 
50
+ if( get_option('wps_geoip') && wp_statistics_geoip_supported() ) {
51
  include_once dirname( __FILE__ ) . '/includes/classes/hits.geoip.class.php';
52
  } else {
53
  include_once dirname( __FILE__ ) . '/includes/classes/hits.class.php';
54
  }
55
 
 
56
  include_once dirname( __FILE__ ) . '/widget.php';
57
  include_once dirname( __FILE__ ) . '/shortcode.php';
58
  include_once dirname( __FILE__ ) . '/schedule.php';
59
 
60
  function wp_statistics_not_enable() {
61
+
62
+ if( !get_option('wps_hide_notices') ) {
63
+ $get_bloginfo_url = get_admin_url() . "admin.php?page=wp-statistics/settings";
64
+
65
+ if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') )
66
+ echo '<div class="error"><p>'.sprintf(__('Facilities Wordpress Statistics not enabled! Please go to <a href="%s">setting page</a> and enable statistics', 'wp_statistics'), $get_bloginfo_url).'</p></div>';
67
+
68
+ if(!get_option('wps_geoip') && wp_statistics_geoip_supported())
69
+ echo '<div class="error"><p>'.sprintf(__('GeoIP collection is not active! Please go to <a href="%s">Setting page > GeoIP</a> and enable this feature (GeoIP can detect the visitors country)', 'wp_statistics'), $get_bloginfo_url . '&tab=geoip').'</p></div>';
70
+ }
71
  }
72
 
73
  if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') || !get_option('wps_geoip') ) {
358
 
359
  function wp_statistics_download_geoip() {
360
 
361
+ if( !function_exists( 'download_url' ) ) { return ''; }
362
+
363
  $download_url = 'http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz';
364
 
365
  $upload_dir = wp_upload_dir();
404
  update_option('wps_last_geoip_dl', time());
405
  update_option('wps_update_geoip', false);
406
 
407
+ if( get_option('wps_geoip') && wp_statistics_geoip_supported() && get_option('wps_auto_pop')) {
408
  include_once dirname( __FILE__ ) . '/includes/functions/geoip-populate.php';
409
  $result .= wp_statistics_populate_geoip_info();
410
  }