Slimstat Analytics - Version 4.2.6

Version Description

  • [New] Reintroduced our beloved Async Mode (Slimstat > Settings > Reports > Functionality). Activate this feature if your reports take a while to load. It breaks down the load on your server into multiple requests, thus avoiding memory issues and performance problems.
  • [New] Turkish localization added. (thank you, Seyit Mehmet oban)
  • [Update] To avoid confusion, we updated the option from 'Delete Records' to 'Archive Records'. Please go make sure it is set according to your needs. (thank you, Steve)
  • [Update] Our premium add-on Network View, now renamed Network Analysis, is now compatible with Slimstat 4.x. Go grab your copy today
  • [Fix] Some charts were not displaying accurate metrics under certain circumstances (filters).
  • [Fix] A PHP warning was being displayed if WP_DEBUG was set to true. (thank you, Salpetriere)
  • [Fix] A fatal error message was being displayed on the login screen if the data structure was not up-to-date or corrupted. (thank you, Chuck)
Download this release

Release Info

Developer coolmann
Plugin Icon 128x128 Slimstat Analytics
Version 4.2.6
Comparing to
See all releases

Code changes from version 4.2.5 to 4.2.6

admin/config/index.php CHANGED
@@ -107,7 +107,7 @@ $options = array(
107
 
108
  'general_database_header' => array('description' => __('Database','wp-slimstat'), 'type' => 'section_header'),
109
  'auto_purge' => array( 'description' => __('Retain data for','wp-slimstat'), 'type' => 'integer', 'long_description' => __("Clean-up log entries older than the number of days specified here above. Enter <strong>0</strong> (number zero) if you want to preserve your data regardless of its age.",'wp-slimstat').( (wp_slimstat::$options[ 'auto_purge' ] > 0)?' '.__('Next clean-up on','wp-slimstat').' <strong>'.date_i18n(get_option('date_format').', '.get_option('time_format'), wp_next_scheduled('wp_slimstat_purge')).'</strong>. '.sprintf(__('Entries logged on or before %s will be archived or deleted according to the option here below.','wp-slimstat'), date_i18n(get_option('date_format'), strtotime('-'.wp_slimstat::$options['auto_purge'].' days'))):''), 'after_input_field' => __('days','wp-slimstat') ),
110
- 'auto_purge_delete' => array( 'description' => __('Delete records','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('If DB space is not an issue, you can decide to archive older records in another table, instead of deleting them. This way performance is preserved, but you will still be able to access your data at a later time, if needed. Please note that the archive table (<code>wp_slim_stats_archive</code>) will be <strong>deleted</strong> along with all the other tables, when Slimstat is uninstalled. Make sure to backup your data before you proceed.','wp-slimstat') )
111
  )
112
  ),
113
 
@@ -178,7 +178,8 @@ $options = array(
178
  'convert_resource_urls_to_titles' => array('description' => __('Use Titles','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Slimstat converts your permalinks into post, page and category titles. Disable this feature if you need to see the URL in your reports.', 'wp-slimstat')),
179
  'convert_ip_addresses' => array('description' => __('Convert IP Addresses','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Display provider names instead of IP addresses.','wp-slimstat')),
180
 
181
- 'reports_functionality_header' => array('description' => __('Functionality','wp-slimstat'), 'type' => 'section_header'),
 
182
  'use_slimscroll' => array('description' => __('SlimScroll','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Enable SlimScroll, a slick jQuery library that replaces the built-in browser scrollbar.','wp-slimstat')),
183
  'expand_details' => array('description' => __('Expand Details','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Expand each row's details by default, insted of on mousehover.",'wp-slimstat')),
184
  'rows_to_show' => array('description' => __('Rows to Display','wp-slimstat'), 'type' => 'integer', 'long_description' => __('Specify the number of items in each report.','wp-slimstat')),
107
 
108
  'general_database_header' => array('description' => __('Database','wp-slimstat'), 'type' => 'section_header'),
109
  'auto_purge' => array( 'description' => __('Retain data for','wp-slimstat'), 'type' => 'integer', 'long_description' => __("Clean-up log entries older than the number of days specified here above. Enter <strong>0</strong> (number zero) if you want to preserve your data regardless of its age.",'wp-slimstat').( (wp_slimstat::$options[ 'auto_purge' ] > 0)?' '.__('Next clean-up on','wp-slimstat').' <strong>'.date_i18n(get_option('date_format').', '.get_option('time_format'), wp_next_scheduled('wp_slimstat_purge')).'</strong>. '.sprintf(__('Entries logged on or before %s will be archived or deleted according to the option here below.','wp-slimstat'), date_i18n(get_option('date_format'), strtotime('-'.wp_slimstat::$options['auto_purge'].' days'))):''), 'after_input_field' => __('days','wp-slimstat') ),
110
+ 'auto_purge_delete' => array( 'description' => __('Archive records','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('If DB space is not an issue, you can decide to archive older records in another table, instead of deleting them. This way performance is preserved, but you will still be able to access your data at a later time, if needed. Please note that the archive table (<code>wp_slim_stats_archive</code>) will be <strong>deleted</strong> along with all the other tables, when Slimstat is uninstalled. Make sure to backup your data before you proceed.','wp-slimstat') )
111
  )
112
  ),
113
 
178
  'convert_resource_urls_to_titles' => array('description' => __('Use Titles','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Slimstat converts your permalinks into post, page and category titles. Disable this feature if you need to see the URL in your reports.', 'wp-slimstat')),
179
  'convert_ip_addresses' => array('description' => __('Convert IP Addresses','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Display provider names instead of IP addresses.','wp-slimstat')),
180
 
181
+ 'reports_functionality_header' => array( 'description' => __( 'Functionality', 'wp-slimstat' ), 'type' => 'section_header' ),
182
+ 'async_load' => array( 'description' => __( 'Async Mode', 'wp-slimstat' ), 'type' => 'yesno', 'long_description' => __( 'Activate this feature if your reports take a while to load. It breaks down the load on your server into multiple requests, thus avoiding memory issues and performance problems.', 'wp-slimstat' ) ),
183
  'use_slimscroll' => array('description' => __('SlimScroll','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Enable SlimScroll, a slick jQuery library that replaces the built-in browser scrollbar.','wp-slimstat')),
184
  'expand_details' => array('description' => __('Expand Details','wp-slimstat'), 'type' => 'yesno', 'long_description' => __("Expand each row's details by default, insted of on mousehover.",'wp-slimstat')),
185
  'rows_to_show' => array('description' => __('Rows to Display','wp-slimstat'), 'type' => 'integer', 'long_description' => __('Specify the number of items in each report.','wp-slimstat')),
admin/config/maintenance.php CHANGED
@@ -103,7 +103,7 @@ if (!empty($_REQUEST['action'])){
103
  wp_slimstat::$wpdb->query("OPTIMIZE TABLE {$GLOBALS['wpdb']->prefix}slim_events");
104
  wp_slimstat::$wpdb->query("DELETE t1 FROM {$GLOBALS['wpdb']->prefix}slim_stats t1");
105
  wp_slimstat::$wpdb->query("OPTIMIZE TABLE {$GLOBALS['wpdb']->prefix}slim_stats");
106
- wp_slimstat_admin::show_alert_message(__('All the records were successfully deleted.','wp-slimstat'), 'wp-ui-highlight below-h2');
107
  break;
108
 
109
  default:
@@ -202,7 +202,7 @@ $suffixes = array('bytes', 'KB', 'MB', 'GB', 'TB');
202
  onclick="return(confirm('<?php _e('Are you sure you want to PERMANENTLY DELETE ALL the records from your database?','wp-slimstat'); ?>'))"><?php _e('Delete All Records','wp-slimstat'); ?></a>
203
  </th>
204
  <td>
205
- <span class="description"><?php _e('Erase all the information collected so far by Slimstat, including the archive. This operation <strong>does not</strong> reset your settings.','wp-slimstat') ?></span>
206
  </td>
207
  </tr>
208
  <tr >
103
  wp_slimstat::$wpdb->query("OPTIMIZE TABLE {$GLOBALS['wpdb']->prefix}slim_events");
104
  wp_slimstat::$wpdb->query("DELETE t1 FROM {$GLOBALS['wpdb']->prefix}slim_stats t1");
105
  wp_slimstat::$wpdb->query("OPTIMIZE TABLE {$GLOBALS['wpdb']->prefix}slim_stats");
106
+ wp_slimstat_admin::show_alert_message( __( 'All the records were successfully deleted.', 'wp-slimstat' ), 'wp-ui-highlight below-h2' );
107
  break;
108
 
109
  default:
202
  onclick="return(confirm('<?php _e('Are you sure you want to PERMANENTLY DELETE ALL the records from your database?','wp-slimstat'); ?>'))"><?php _e('Delete All Records','wp-slimstat'); ?></a>
203
  </th>
204
  <td>
205
+ <span class="description"><?php _e('Erase all the information collected so far by Slimstat, but not the archived records (<code>wp_slim_stats_archive</code>). This operation <strong>does not</strong> reset your settings and it can be undone by manually copying your records from the archive table.','wp-slimstat') ?></span>
206
  </td>
207
  </tr>
208
  <tr >
admin/js/slimstat.admin.js CHANGED
@@ -386,6 +386,15 @@ jQuery(function(){
386
  }
387
  });
388
 
 
 
 
 
 
 
 
 
 
389
  // Hide Admin Notice
390
  jQuery(document).on('click', '#slimstat-hide-admin-notice', function(e){
391
  e.preventDefault();
386
  }
387
  });
388
 
389
+ // Asynchronous Reports
390
+ if (SlimStatAdminParams.async_load == 'yes'){
391
+ jQuery('div[id^=slim_]').each(function(){
392
+ report_id = jQuery(this).attr('id');
393
+ data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val(), current_tab: SlimStatAdminParams.current_tab}
394
+ SlimStatAdmin.refresh_report(report_id, data);
395
+ });
396
+ }
397
+
398
  // Hide Admin Notice
399
  jQuery(document).on('click', '#slimstat-hide-admin-notice', function(e){
400
  e.preventDefault();
admin/view/right-now.php CHANGED
@@ -4,6 +4,10 @@ if ( !function_exists( 'add_action' ) ) {
4
  exit(0);
5
  }
6
 
 
 
 
 
7
  $is_dashboard = empty( $_REQUEST[ 'page' ] ) || $_REQUEST[ 'page' ] != 'slimview1';
8
 
9
  // Available icons
@@ -42,7 +46,7 @@ else {
42
  echo wp_slimstat_reports::report_pagination( $count_page_results, $count_all_results, true, wp_slimstat::$options[ 'number_results_raw_data' ] );
43
 
44
  // Show delete button? (only those who can access the settings can see it)
45
- $current_user_can_delete = current_user_can(wp_slimstat::$options['capability_can_admin']);
46
  $delete_row = '';
47
 
48
  // Loop through the results
@@ -184,7 +188,7 @@ else {
184
  $results[$i][ 'outbound_resource' ] = ( !empty( $results[ $i ][ 'outbound_resource' ] ) ) ? "<a class='inline-icon spaced slimstat-font-logout' target='_blank' title='".htmlentities( __( 'Open this outbound link in a new window', 'wp-slimstat' ), ENT_QUOTES, 'UTF-8' ) . "' href='{$results[$i]['outbound_resource']}'></a> {$results[$i]['outbound_resource']}" : '';
185
  $results[$i][ 'content_type' ] = !empty($results[$i]['content_type'])?"<i class='spaced slimstat-font-doc' title='".__('Content Type','wp-slimstat')."'></i> <a class='slimstat-filter-link' href='".wp_slimstat_reports::fs_url('content_type equals '.$results[$i]['content_type'])."'>{$results[$i]['content_type']}</a> ":'';
186
 
187
- if ($current_user_can_delete){
188
  $delete_row = "<a class='slimstat-delete-entry slimstat-font-cancel' data-pageview-id='{$results[$i]['id']}' title='".htmlentities(__('Delete this pageview','wp-slimstat'), ENT_QUOTES, 'UTF-8')."' href='#'></a>";
189
  }
190
 
4
  exit(0);
5
  }
6
 
7
+ if ( wp_slimstat::$options[ 'async_load' ] == 'yes' && ( !defined( 'DOING_AJAX' ) || !DOING_AJAX ) ) {
8
+ return '';
9
+ }
10
+
11
  $is_dashboard = empty( $_REQUEST[ 'page' ] ) || $_REQUEST[ 'page' ] != 'slimview1';
12
 
13
  // Available icons
46
  echo wp_slimstat_reports::report_pagination( $count_page_results, $count_all_results, true, wp_slimstat::$options[ 'number_results_raw_data' ] );
47
 
48
  // Show delete button? (only those who can access the settings can see it)
49
+ $current_user_can_delete = ( current_user_can( wp_slimstat::$options[ 'capability_can_admin' ] ) && !is_network_admin() );
50
  $delete_row = '';
51
 
52
  // Loop through the results
188
  $results[$i][ 'outbound_resource' ] = ( !empty( $results[ $i ][ 'outbound_resource' ] ) ) ? "<a class='inline-icon spaced slimstat-font-logout' target='_blank' title='".htmlentities( __( 'Open this outbound link in a new window', 'wp-slimstat' ), ENT_QUOTES, 'UTF-8' ) . "' href='{$results[$i]['outbound_resource']}'></a> {$results[$i]['outbound_resource']}" : '';
189
  $results[$i][ 'content_type' ] = !empty($results[$i]['content_type'])?"<i class='spaced slimstat-font-doc' title='".__('Content Type','wp-slimstat')."'></i> <a class='slimstat-filter-link' href='".wp_slimstat_reports::fs_url('content_type equals '.$results[$i]['content_type'])."'>{$results[$i]['content_type']}</a> ":'';
190
 
191
+ if ( $current_user_can_delete ){
192
  $delete_row = "<a class='slimstat-delete-entry slimstat-font-cancel' data-pageview-id='{$results[$i]['id']}' title='".htmlentities(__('Delete this pageview','wp-slimstat'), ENT_QUOTES, 'UTF-8')."' href='#'></a>";
193
  }
194
 
admin/view/wp-slimstat-db.php CHANGED
@@ -682,15 +682,19 @@ class wp_slimstat_db {
682
  }
683
 
684
  // Build the SQL query
685
- $group_by_string = "GROUP BY {$group_by[0]}(CONVERT_TZ(FROM_UNIXTIME(dt), @@session.time_zone, '+00:00')), {$group_by[1]}(CONVERT_TZ(FROM_UNIXTIME(dt), @@session.time_zone, '+00:00'))";
686
  $sql = "
687
  SELECT dt, {$_args[ 'data1' ]} first_metric, {$_args[ 'data2' ]} second_metric
688
  FROM {$GLOBALS['wpdb']->prefix}slim_stats
689
  WHERE {$_args[ 'where' ]} $previous_time_range
690
- $group_by_string";
691
 
692
  // Get the data
693
- $results = self::get_results( $sql, 'blog_id', '', $group_by_string, 'SUM(first_metric) AS first_metric, SUM(second_metric) AS second_metric' );
 
 
 
 
694
 
695
  // Fill the output array
696
  $output[ 'current' ][ 'label' ] = '';
@@ -794,6 +798,9 @@ class wp_slimstat_db {
794
  if ( $_column != '*' ) {
795
  $columns .= ', ip, dt';
796
  }
 
 
 
797
 
798
  if ( !empty( $_more_columns ) ) {
799
  $columns .= ', ' . $_more_columns;
@@ -879,9 +886,9 @@ class wp_slimstat_db {
879
  GROUP BY $_as_column $_having
880
  ORDER BY counthits DESC
881
  LIMIT 0, " . self::$filters_normalized[ 'misc' ][ 'limit_results' ],
882
- ( ( !empty( $_as_column ) && $_as_column != $_column ) ? $_as_column : $_column ).', blog_id',
883
  'counthits DESC',
884
- $_column,
885
  'SUM(counthits) AS counthits' );
886
  }
887
 
682
  }
683
 
684
  // Build the SQL query
685
+ $group_by_string = "{$group_by[0]}(CONVERT_TZ(FROM_UNIXTIME(dt), @@session.time_zone, '+00:00')), {$group_by[1]}(CONVERT_TZ(FROM_UNIXTIME(dt), @@session.time_zone, '+00:00'))";
686
  $sql = "
687
  SELECT dt, {$_args[ 'data1' ]} first_metric, {$_args[ 'data2' ]} second_metric
688
  FROM {$GLOBALS['wpdb']->prefix}slim_stats
689
  WHERE {$_args[ 'where' ]} $previous_time_range
690
+ GROUP BY $group_by_string";
691
 
692
  // Get the data
693
+ $results = self::get_results(
694
+ $sql,
695
+ 'dt',
696
+ '',
697
+ $group_by_string, 'SUM(first_metric) AS first_metric, SUM(second_metric) AS second_metric' );
698
 
699
  // Fill the output array
700
  $output[ 'current' ][ 'label' ] = '';
798
  if ( $_column != '*' ) {
799
  $columns .= ', ip, dt';
800
  }
801
+ else {
802
+ $columns = 'id, ip, other_ip, username, country, referer, resource, searchterms, plugins, notes, visit_id, server_latency, page_performance, browser, browser_version, browser_type, platform, language, user_agent, resolution, screen_width, screen_height, content_type, category, author, content_id, outbound_resource, dt_out, dt';
803
+ }
804
 
805
  if ( !empty( $_more_columns ) ) {
806
  $columns .= ', ' . $_more_columns;
886
  GROUP BY $_as_column $_having
887
  ORDER BY counthits DESC
888
  LIMIT 0, " . self::$filters_normalized[ 'misc' ][ 'limit_results' ],
889
+ ( ( !empty( $_as_column ) && $_as_column != $_column ) ? $_as_column : $_column ),
890
  'counthits DESC',
891
+ ( ( !empty( $_as_column ) && $_as_column != $_column ) ? $_as_column : $_column ),
892
  'SUM(counthits) AS counthits' );
893
  }
894
 
admin/view/wp-slimstat-reports.php CHANGED
@@ -156,7 +156,7 @@ class wp_slimstat_reports {
156
  'tooltip' => __( 'Here a "page" is not just a WordPress page type, but any webpage on your site, including posts, products, categories, and so on. You can set the corresponding filter where Resource Content Type equals cpt:you_cpt_slug_here to get top web pages for a specific custom post type you have.', 'wp-slimstat' )
157
  ),
158
  'slim_p1_10' => array(
159
- 'title' => __('Top Traffic Sources', 'wp-slimstat'),
160
  'callback' => array( __CLASS__, 'raw_results_to_html' ),
161
  'callback_args' => array(
162
  'type' => 'top',
@@ -245,18 +245,30 @@ class wp_slimstat_reports {
245
  'id' => 'slim_p1_19_01',
246
  'chart_data' => array(
247
  'data1' => 'COUNT( searchterms )',
248
- 'data2' => 'COUNT( DISTINCT searchterms )'
 
249
  ),
250
  'chart_labels' => array(
251
  __( 'Search Terms', 'wp-slimstat' ),
252
  __( 'Unique Terms', 'wp-slimstat' )
253
- ),
254
- 'where' => 'searchterms <> "_"'
255
  ),
256
  'classes' => array( 'wide', 'chart' ),
257
  'screens' => array( 'slimview2' ),
258
  'tooltip' => $chart_tooltip
259
  ),
 
 
 
 
 
 
 
 
 
 
 
 
260
 
261
  'slim_p2_01' => array(
262
  'title' => __( 'Human Visits', 'wp-slimstat' ),
@@ -265,13 +277,13 @@ class wp_slimstat_reports {
265
  'id' => 'slim_p2_01',
266
  'chart_data' => array(
267
  'data1' => 'COUNT( DISTINCT visit_id )',
268
- 'data2' => 'COUNT( DISTINCT ip )'
 
269
  ),
270
  'chart_labels' => array(
271
  __( 'Visits', 'wp-slimstat' ),
272
  __( 'Unique IPs', 'wp-slimstat' )
273
- ),
274
- 'where' => '(visit_id > 0 AND browser_type <> 1)'
275
  ),
276
  'classes' => array( 'wide', 'chart' ),
277
  'screens' => array( 'slimview3' ),
@@ -506,13 +518,13 @@ class wp_slimstat_reports {
506
  'id' => 'slim_p3_01',
507
  'chart_data' => array(
508
  'data1' => 'COUNT( DISTINCT referer )',
509
- 'data2' => 'COUNT( DISTINCT ip )'
 
510
  ),
511
  'chart_labels' => array(
512
  __( 'Domains', 'wp-slimstat' ),
513
  __( 'Unique IPs', 'wp-slimstat' )
514
- ),
515
- 'where' => '(referer IS NOT NULL AND referer NOT LIKE "%' . home_url() . '%")'
516
  ),
517
  'classes' => array( 'wide', 'chart' ),
518
  'screens' => array( 'slimview5' ),
@@ -982,7 +994,12 @@ class wp_slimstat_reports {
982
  }
983
 
984
  public static function raw_results_to_html( $_args = array() ) {
 
 
 
 
985
  wp_slimstat_db::$debug_message = '';
 
986
  $all_results = call_user_func( $_args[ 'raw' ] , $_args );
987
 
988
  echo wp_slimstat_db::$debug_message;
@@ -1168,10 +1185,17 @@ class wp_slimstat_reports {
1168
  }
1169
  $element_value = '<a target="_blank" class="slimstat-font-logout" title="'.__('Open this URL in a new window','wp-slimstat').'" href="'.$base_url.htmlentities($results[$i]['resource'], ENT_QUOTES, 'UTF-8').'"></a> '.$base_url.$element_value;
1170
  }
1171
- // if ( $_args[ 'columns' ] == 'referer' && !empty( $_args[ 'type' ] ) && $_args[ 'type' ] == 'top' ) {
1172
- // $element_url = htmlentities( $results[ $i ][ 'referer' ], ENT_QUOTES, 'UTF-8' );
1173
- // $element_value = '<a target="_blank" class="slimstat-font-logout" title="'.__('Open this URL in a new window','wp-slimstat').'" href="'.$element_url.'"></a> '.$element_value;
1174
- // }
 
 
 
 
 
 
 
1175
  if (!empty($results[$i]['ip']) && $_args[ 'columns' ] != 'ip' && wp_slimstat::$options['convert_ip_addresses'] != 'yes'){
1176
  $row_details .= '<br> IP: <a class="slimstat-filter-link" href="'.self::fs_url('ip equals '.$results[$i]['ip']).'">'.$results[$i]['ip'].'</a>'.(!empty($results[$i]['other_ip'])?' / '.$results[$i]['other_ip']:'').'<a title="WHOIS: '.$results[$i]['ip'].'" class="slimstat-font-location-1 whois" href="'.wp_slimstat::$options['ip_lookup_service'].$results[$i]['ip'].'"></a>';
1177
  }
156
  'tooltip' => __( 'Here a "page" is not just a WordPress page type, but any webpage on your site, including posts, products, categories, and so on. You can set the corresponding filter where Resource Content Type equals cpt:you_cpt_slug_here to get top web pages for a specific custom post type you have.', 'wp-slimstat' )
157
  ),
158
  'slim_p1_10' => array(
159
+ 'title' => __('Top Referring Domains', 'wp-slimstat'),
160
  'callback' => array( __CLASS__, 'raw_results_to_html' ),
161
  'callback_args' => array(
162
  'type' => 'top',
245
  'id' => 'slim_p1_19_01',
246
  'chart_data' => array(
247
  'data1' => 'COUNT( searchterms )',
248
+ 'data2' => 'COUNT( DISTINCT searchterms )',
249
+ 'where' => 'searchterms <> "_"'
250
  ),
251
  'chart_labels' => array(
252
  __( 'Search Terms', 'wp-slimstat' ),
253
  __( 'Unique Terms', 'wp-slimstat' )
254
+ )
 
255
  ),
256
  'classes' => array( 'wide', 'chart' ),
257
  'screens' => array( 'slimview2' ),
258
  'tooltip' => $chart_tooltip
259
  ),
260
+ 'slim_p1_20' => array(
261
+ 'title' => __('Top Referring URLs', 'wp-slimstat'),
262
+ 'callback' => array( __CLASS__, 'raw_results_to_html' ),
263
+ 'callback_args' => array(
264
+ 'type' => 'top',
265
+ 'columns' => 'referer',
266
+ 'where' => 'referer NOT LIKE "%' . str_replace( 'www.', '', parse_url( home_url(), PHP_URL_HOST ) ) . '%"',
267
+ 'raw' => array( 'wp_slimstat_db', 'get_top' )
268
+ ),
269
+ 'classes' => array( 'normal' ),
270
+ 'screens' => array( 'slimview2', 'slimview5', 'dashboard' )
271
+ ),
272
 
273
  'slim_p2_01' => array(
274
  'title' => __( 'Human Visits', 'wp-slimstat' ),
277
  'id' => 'slim_p2_01',
278
  'chart_data' => array(
279
  'data1' => 'COUNT( DISTINCT visit_id )',
280
+ 'data2' => 'COUNT( DISTINCT ip )',
281
+ 'where' => '(visit_id > 0 AND browser_type <> 1)'
282
  ),
283
  'chart_labels' => array(
284
  __( 'Visits', 'wp-slimstat' ),
285
  __( 'Unique IPs', 'wp-slimstat' )
286
+ )
 
287
  ),
288
  'classes' => array( 'wide', 'chart' ),
289
  'screens' => array( 'slimview3' ),
518
  'id' => 'slim_p3_01',
519
  'chart_data' => array(
520
  'data1' => 'COUNT( DISTINCT referer )',
521
+ 'data2' => 'COUNT( DISTINCT ip )',
522
+ 'where' => '(referer IS NOT NULL AND referer NOT LIKE "%' . home_url() . '%")'
523
  ),
524
  'chart_labels' => array(
525
  __( 'Domains', 'wp-slimstat' ),
526
  __( 'Unique IPs', 'wp-slimstat' )
527
+ )
 
528
  ),
529
  'classes' => array( 'wide', 'chart' ),
530
  'screens' => array( 'slimview5' ),
994
  }
995
 
996
  public static function raw_results_to_html( $_args = array() ) {
997
+ if ( wp_slimstat::$options[ 'async_load' ] == 'yes' && ( !defined( 'DOING_AJAX' ) || !DOING_AJAX ) ) {
998
+ return '';
999
+ }
1000
+
1001
  wp_slimstat_db::$debug_message = '';
1002
+
1003
  $all_results = call_user_func( $_args[ 'raw' ] , $_args );
1004
 
1005
  echo wp_slimstat_db::$debug_message;
1185
  }
1186
  $element_value = '<a target="_blank" class="slimstat-font-logout" title="'.__('Open this URL in a new window','wp-slimstat').'" href="'.$base_url.htmlentities($results[$i]['resource'], ENT_QUOTES, 'UTF-8').'"></a> '.$base_url.$element_value;
1187
  }
1188
+
1189
+ if ( $_args[ 'columns' ] == 'referer_calculated' && !empty( $_args[ 'type' ] ) && $_args[ 'type' ] == 'top' ) {
1190
+ $element_url = 'http://' . htmlentities( $results[ $i ][ 'referer_calculated' ], ENT_QUOTES, 'UTF-8' );
1191
+ $element_value = '<a target="_blank" class="slimstat-font-logout" title="'.__('Open this URL in a new window','wp-slimstat').'" href="'.$element_url.'"></a> '.$element_value;
1192
+ }
1193
+
1194
+ if ( $_args[ 'columns' ] == 'referer' && !empty( $_args[ 'type' ] ) && $_args[ 'type' ] == 'top' ) {
1195
+ $element_url = htmlentities( $results[ $i ][ 'referer' ], ENT_QUOTES, 'UTF-8' );
1196
+ $element_value = '<a target="_blank" class="slimstat-font-logout" title="'.__('Open this URL in a new window','wp-slimstat').'" href="'.$element_url.'"></a> '.$element_value;
1197
+ }
1198
+
1199
  if (!empty($results[$i]['ip']) && $_args[ 'columns' ] != 'ip' && wp_slimstat::$options['convert_ip_addresses'] != 'yes'){
1200
  $row_details .= '<br> IP: <a class="slimstat-filter-link" href="'.self::fs_url('ip equals '.$results[$i]['ip']).'">'.$results[$i]['ip'].'</a>'.(!empty($results[$i]['other_ip'])?' / '.$results[$i]['other_ip']:'').'<a title="WHOIS: '.$results[$i]['ip'].'" class="slimstat-font-location-1 whois" href="'.wp_slimstat::$options['ip_lookup_service'].$results[$i]['ip'].'"></a>';
1201
  }
admin/wp-slimstat-admin.php CHANGED
@@ -12,8 +12,8 @@ class wp_slimstat_admin {
12
  */
13
  public static function init(){
14
  if ( ( wp_slimstat::$options['enable_ads_network'] == 'yes' || wp_slimstat::$options['enable_ads_network'] == 'no' ) ) {
15
- self::$admin_notice = "The heuristic algorithm in charge of decoding the user agent string has been rewritten from scratch. It now includes a new option (under Settings > Tracker) to choose the approach to be used: the heuristic function is much faster and requires very little memory, but it might be less accurate, and not produce the right match; browscap.ini, the third party database we use, is memory intensive and it uses a bruteforce approach to determine a visitor's browser, but it's very accurate and precise even with the most obscure user agent strings (almost all of them). You decide which one works best for you.";
16
- self::$admin_notice .= '<br/><br/><a id="slimstat-hide-admin-notice" href="#" class="button-secondary">Got it, thanks</a>';
17
  }
18
  else {
19
  self::$admin_notice = "
@@ -430,8 +430,13 @@ class wp_slimstat_admin {
430
  }
431
  // --- END: Updates for version 4.2.1 ---
432
 
 
 
 
 
 
433
  // Now we can update the version stored in the database
434
- wp_slimstat::$options['version'] = wp_slimstat::$version;
435
 
436
  return true;
437
  }
@@ -522,12 +527,13 @@ class wp_slimstat_admin {
522
 
523
  // Pass some information to Javascript
524
  $params = array(
525
- 'datepicker_image' => plugins_url('/admin/images/datepicker.png', dirname(__FILE__)),
526
- 'expand_details' => isset(wp_slimstat::$options['expand_details'])?wp_slimstat::$options['expand_details']:'no',
 
 
527
  'refresh_interval' => intval( wp_slimstat::$options[ 'refresh_interval' ] ),
528
- 'text_direction' => $GLOBALS['wp_locale']->text_direction,
529
- 'use_slimscroll' => !empty( wp_slimstat::$options[ 'use_slimscroll' ] ) ? wp_slimstat::$options[ 'use_slimscroll' ] : 'yes',
530
- 'chart_colors' => !empty( wp_slimstat::$options[ 'chart_colors' ] ) ? wp_slimstat::string_to_array( wp_slimstat::$options[ 'chart_colors' ] ) : array( '#ccc', '#999', '#bbcc44', '#21759b' )
531
  );
532
  wp_localize_script('slimstat_admin', 'SlimStatAdminParams', $params);
533
  }
@@ -542,14 +548,16 @@ class wp_slimstat_admin {
542
  public static function wp_slimstat_add_view_menu( $_s = '' ) {
543
  // If this user is whitelisted, we use the minimum capability
544
  $minimum_capability = 'read';
545
- if (strpos(wp_slimstat::$options['can_view'], $GLOBALS['current_user']->user_login) === false){
546
- $minimum_capability = wp_slimstat::$options['capability_can_view'];
 
 
 
547
  }
548
 
549
  // Get the current report assignments
550
-
551
  $new_entry = array();
552
- if ( wp_slimstat::$options[ 'use_separate_menu' ] == 'yes' ) {
553
  $parent = 'slimview1';
554
  $page_location = 'slimstat';
555
  $new_entry[] = add_menu_page(__('SlimStat','wp-slimstat'), __('SlimStat','wp-slimstat'), $minimum_capability, $parent, array( __CLASS__, 'wp_slimstat_include_view' ) );
12
  */
13
  public static function init(){
14
  if ( ( wp_slimstat::$options['enable_ads_network'] == 'yes' || wp_slimstat::$options['enable_ads_network'] == 'no' ) ) {
15
+ self::$admin_notice = "Dear User,<br/><br/>my name is Dino, Slimstat's lead developer. With me works Luigi, aka Camu, who does an excellent job at taking care of all the support requests we receive on a daily basis. Slimstat was born 10 years ago, and since then we have invested countless hours in our software. What keeps driving us is our passion for WordPress, the open source world and a global community of more than 100,000 users who discover meaningful patterns in their website traffic every single day, free of charge.<br/><br/>Today I am going to ask you to support our work. I was recently involved in a real estate lawsuit that required legal representation. Bills are starting to pile up, and unfortunately this means I will have to stop working on Slimstat for a while, and find something more remunerative to pay those bills. <strong>Unless...</strong> you decide to help. <a style='font-weight:700' target='_blank' href='https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UBYWQYPLU9JUA'>Your donation will allow</a> me and Luigi stay focused on our software. If each single user <a style='font-weight:700' target='_blank' href='https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UBYWQYPLU9JUA'>donated just five dollars</a>, we wouldn't have to worry about this legal setback for many months to come.<br/><br/>Trust me, it was not easy for me to write these words, but I decided to swallow my pride and ask my community to pitch in. Your donation will help us keep Slimstat free for everyone.<br/><br/>Thank you,<br/>Dino and Luigi.";
16
+ self::$admin_notice .= '<br/><br/><a style="font-weight:700" target="_blank" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UBYWQYPLU9JUA" class="button">Donate Now</a> <a id="slimstat-hide-admin-notice" href="#" class="button-secondary">No, thanks</a>';
17
  }
18
  else {
19
  self::$admin_notice = "
430
  }
431
  // --- END: Updates for version 4.2.1 ---
432
 
433
+ // --- Updates for version 4.2.6 ---
434
+ if ( version_compare( wp_slimstat::$options[ 'version' ], '4.2.6', '<' ) ) {
435
+ wp_slimstat::$options[ 'auto_purge_delete' ] = ( wp_slimstat::$options[ 'auto_purge_delete' ] == 'yes' ) ? 'no' : 'yes';
436
+ }
437
+
438
  // Now we can update the version stored in the database
439
+ wp_slimstat::$options[ 'version' ] = wp_slimstat::$version;
440
 
441
  return true;
442
  }
527
 
528
  // Pass some information to Javascript
529
  $params = array(
530
+ 'async_load' => !empty( wp_slimstat::$options[ 'async_load' ] ) ? wp_slimstat::$options[ 'async_load' ] : 'no',
531
+ 'chart_colors' => !empty( wp_slimstat::$options[ 'chart_colors' ] ) ? wp_slimstat::string_to_array( wp_slimstat::$options[ 'chart_colors' ] ) : array( '#ccc', '#999', '#bbcc44', '#21759b' ),
532
+ 'datepicker_image' => plugins_url( '/admin/images/datepicker.png', dirname( __FILE__ ) ),
533
+ 'expand_details' => !empty( wp_slimstat::$options[ 'expand_details' ] ) ? wp_slimstat::$options[ 'expand_details' ] : 'no',
534
  'refresh_interval' => intval( wp_slimstat::$options[ 'refresh_interval' ] ),
535
+ 'text_direction' => $GLOBALS[ 'wp_locale' ]->text_direction,
536
+ 'use_slimscroll' => !empty( wp_slimstat::$options[ 'use_slimscroll' ] ) ? wp_slimstat::$options[ 'use_slimscroll' ] : 'yes'
 
537
  );
538
  wp_localize_script('slimstat_admin', 'SlimStatAdminParams', $params);
539
  }
548
  public static function wp_slimstat_add_view_menu( $_s = '' ) {
549
  // If this user is whitelisted, we use the minimum capability
550
  $minimum_capability = 'read';
551
+ if ( is_network_admin() ) {
552
+ $minimum_capability = 'manage_network';
553
+ }
554
+ else if ( strpos( wp_slimstat::$options[ 'can_view' ], $GLOBALS[ 'current_user' ]->user_login) === false ) {
555
+ $minimum_capability = wp_slimstat::$options[ 'capability_can_view' ];
556
  }
557
 
558
  // Get the current report assignments
 
559
  $new_entry = array();
560
+ if ( wp_slimstat::$options[ 'use_separate_menu' ] == 'yes' || is_network_admin() ) {
561
  $parent = 'slimview1';
562
  $page_location = 'slimstat';
563
  $new_entry[] = add_menu_page(__('SlimStat','wp-slimstat'), __('SlimStat','wp-slimstat'), $minimum_capability, $parent, array( __CLASS__, 'wp_slimstat_include_view' ) );
languages/wp-slimstat-de_DE.mo CHANGED
Binary file
languages/wp-slimstat-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2015-12-24 09:18-0500\n"
5
- "PO-Revision-Date: 2015-12-24 09:18-0500\n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: TechnoViel <klaus@technoviel.de>\n"
8
  "Language: de_DE\n"
@@ -17,17 +17,17 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../admin/config/index.php:50
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
24
  msgstr ""
25
 
26
- #: ../admin/config/index.php:65
27
  msgid "Read access: username not found"
28
  msgstr "Lesezugriff: Benutzername nicht gefunden"
29
 
30
- #: ../admin/config/index.php:75 ../admin/config/index.php:100
31
  #, fuzzy
32
  msgid ""
33
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
@@ -38,34 +38,34 @@ msgstr ""
38
  "\"http://codex.wordpress.org/Roles_and_Capabilities\" target=\"_new\">hier</"
39
  "a>."
40
 
41
- #: ../admin/config/index.php:90
42
  msgid "Config access: username not found"
43
  msgstr "Konfigurationszugriff: Benutzername nicht gefunden."
44
 
45
- #: ../admin/config/index.php:109
46
  msgid "Basic"
47
  msgstr ""
48
 
49
- #: ../admin/config/index.php:111 ../admin/config/index.php:132
50
  #, fuzzy
51
  msgid "Tracker"
52
  msgstr "Benutzer tracken"
53
 
54
- #: ../admin/config/index.php:112
55
  #, fuzzy
56
  msgid "Enable Tracking"
57
  msgstr "Verfolgung aktivieren"
58
 
59
- #: ../admin/config/index.php:112
60
  msgid "Turn the tracker on or off, while keeping the reports accessible."
61
  msgstr ""
62
 
63
- #: ../admin/config/index.php:113
64
  #, fuzzy
65
  msgid "Tracking Mode"
66
  msgstr "Tracking aktiv"
67
 
68
- #: ../admin/config/index.php:113
69
  #, fuzzy
70
  msgid ""
71
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
@@ -80,68 +80,68 @@ msgstr ""
80
  "tzt ignorieren. Ein netter Nebeneffekt: Die meisten Spammer, Suchmaschinen "
81
  "und andere Crawler werden so nicht mehr berücksichtigt."
82
 
83
- #: ../admin/config/index.php:113
84
  msgid "Client Side"
85
  msgstr ""
86
 
87
- #: ../admin/config/index.php:113
88
  #, fuzzy
89
  msgid "Server Side"
90
  msgstr "Serverseitig"
91
 
92
- #: ../admin/config/index.php:114
93
  msgid "Stealth Mode"
94
  msgstr ""
95
 
96
- #: ../admin/config/index.php:114
97
  msgid ""
98
  "Do not add the javascript tracking code to your pages, if tracking mode is "
99
  "set to Server. Please note: if enabled, this will prevent the tracker from "
100
  "collecting information such as screen resolution, outbound links, downloads, "
101
- "etc. This option is ignored is Tracking Mode is set to Client."
102
  msgstr ""
103
 
104
- #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
105
  msgid "Off"
106
  msgstr "Aus"
107
 
108
- #: ../admin/config/index.php:114
109
  msgid "On"
110
  msgstr "An"
111
 
112
- #: ../admin/config/index.php:115
113
  #, fuzzy
114
  msgid "Admin Pages"
115
  msgstr "Verfolgen Admin-Seiten"
116
 
117
  # correct, if admin = admin area
118
- #: ../admin/config/index.php:115
119
  #, fuzzy
120
  msgid "Enable this option to track your users' activity within the admin."
121
  msgstr ""
122
  "Aktivieren Sie diese Option, wenn Sie die Aktivitäten Ihrer Benutzer "
123
  "innerhalb des Adminbereiches verfolgen wollen."
124
 
125
- #: ../admin/config/index.php:115
126
  #, fuzzy
127
  msgid "Track"
128
  msgstr "Benutzer tracken"
129
 
130
- #: ../admin/config/index.php:115
131
  #, fuzzy
132
  msgid "Do not track"
133
  msgstr "Bot oder Crawler"
134
 
135
- #: ../admin/config/index.php:117
136
  msgid "WordPress Integration"
137
  msgstr "WordPress-Integration"
138
 
139
- #: ../admin/config/index.php:118
140
  #, fuzzy
141
  msgid "Menu Position"
142
  msgstr "Suchmaschinenrang"
143
 
144
- #: ../admin/config/index.php:118
145
  #, fuzzy
146
  msgid ""
147
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
@@ -150,20 +150,20 @@ msgstr ""
150
  "Das Dashboard-Men&uuml; kann um ein eigenes WP SlimStat Men&uuml; erg&auml;"
151
  "nzt werden."
152
 
153
- #: ../admin/config/index.php:118
154
  msgid "Side Menu"
155
  msgstr "Seitenmenü"
156
 
157
- #: ../admin/config/index.php:118
158
  msgid "Admin Bar"
159
  msgstr "Adminleiste"
160
 
161
- #: ../admin/config/index.php:119
162
  #, fuzzy
163
  msgid "Posts and Pages"
164
  msgstr "Top-Einstiegsseiten"
165
 
166
- #: ../admin/config/index.php:119
167
  #, fuzzy
168
  msgid ""
169
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
@@ -172,87 +172,87 @@ msgstr ""
172
  "F&uuml;gt eine Spalte in der Beitrags&uuml;bersicht ein, welche die Anzahl "
173
  "der Zugriffe pro Beitrag anzeigt."
174
 
175
- #: ../admin/config/index.php:120
176
  #, fuzzy
177
  msgid "Report Interval"
178
  msgstr "Eindeutige interne Zugriffe"
179
 
180
- #: ../admin/config/index.php:120
181
  msgid ""
182
  "Enter the time range, in days, that should be used to calculate the value "
183
  "here above."
184
  msgstr ""
185
 
186
- #: ../admin/config/index.php:121
187
  #, fuzzy
188
  msgid "Report Type"
189
  msgstr "Auswertungen"
190
 
191
- #: ../admin/config/index.php:121
192
  msgid ""
193
  "Select what kind of information you would like to see displayed on the Posts "
194
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
195
  "IPs consider only one hit per user in the given time range."
196
  msgstr ""
197
 
198
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
199
- #: ../admin/view/wp-slimstat-reports.php:109
200
- #: ../admin/view/wp-slimstat-reports.php:1375
201
- #: ../admin/view/wp-slimstat-reports.php:1533
202
  msgid "Pageviews"
203
  msgstr "Seitenaufrufe"
204
 
205
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
206
- #: ../admin/view/wp-slimstat-reports.php:286
207
- #: ../admin/view/wp-slimstat-reports.php:526
208
- #: ../admin/view/wp-slimstat-reports.php:1390
209
- #: ../admin/view/wp-slimstat-reports.php:1435
210
  msgid "Unique IPs"
211
  msgstr "Eindeutige IPs"
212
 
213
- #: ../admin/config/index.php:122
214
  #, fuzzy
215
  msgid "Dashboard Widgets"
216
  msgstr "&Uuml;bersicht"
217
 
218
- #: ../admin/config/index.php:122
219
  msgid ""
220
  "Choose if you want to have the most important reports on your WordPress "
221
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
222
  msgstr ""
223
 
224
- #: ../admin/config/index.php:123
225
  #, fuzzy
226
  msgid "Hide Add-ons"
227
  msgstr "Add-Ons"
228
 
229
- #: ../admin/config/index.php:123
230
  msgid ""
231
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
232
  "from the list of plugins in WordPress. Please note that you will still "
233
  "receive updates for hidden add-ons."
234
  msgstr ""
235
 
236
- #: ../admin/config/index.php:125
237
  msgid "Database"
238
  msgstr "Datenbank"
239
 
240
- #: ../admin/config/index.php:126
241
  msgid "Retain data for"
242
  msgstr ""
243
 
244
- #: ../admin/config/index.php:126
245
  msgid ""
246
  "Clean-up log entries older than the number of days specified here above. "
247
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
248
  "regardless of its age."
249
  msgstr ""
250
 
251
- #: ../admin/config/index.php:126
252
  msgid "Next clean-up on"
253
  msgstr "N&auml;chste Bereinigung "
254
 
255
- #: ../admin/config/index.php:126
256
  #, fuzzy, php-format
257
  msgid ""
258
  "Entries logged on or before %s will be archived or deleted according to the "
@@ -261,18 +261,18 @@ msgstr ""
261
  "Eintr&auml;ge, die vor dem %s erfasst wurden werden unwiderruflich gel&ouml;"
262
  "scht."
263
 
264
- #: ../admin/config/index.php:126 ../admin/view/index.php:102
265
  #: ../admin/view/wp-slimstat-db.php:79
266
- #: ../admin/view/wp-slimstat-reports.php:1359
267
  msgid "days"
268
  msgstr "Tage"
269
 
270
- #: ../admin/config/index.php:127
271
  #, fuzzy
272
- msgid "Delete records"
273
  msgstr "Datensätze"
274
 
275
- #: ../admin/config/index.php:127
276
  msgid ""
277
  "If DB space is not an issue, you can decide to archive older records in "
278
  "another table, instead of deleting them. This way performance is preserved, "
@@ -282,16 +282,16 @@ msgid ""
282
  "is uninstalled. Make sure to backup your data before you proceed."
283
  msgstr ""
284
 
285
- #: ../admin/config/index.php:134
286
  #, fuzzy
287
  msgid "Advanced Options"
288
  msgstr "Erweiterte Filter"
289
 
290
- #: ../admin/config/index.php:135
291
  msgid "Session Duration"
292
  msgstr "Besuchsdauer"
293
 
294
- #: ../admin/config/index.php:135
295
  #, fuzzy
296
  msgid ""
297
  "How many seconds should a human session last? Google Analytics sets it to "
@@ -300,37 +300,63 @@ msgstr ""
300
  "Definiert, wie viele Sekunden ein Besuch dauern soll. Bei Google Analytics "
301
  "wird hier 1.800 Sekunden vorgeschlagen."
302
 
303
- #: ../admin/config/index.php:135 ../admin/config/index.php:205
304
  msgid "seconds"
305
  msgstr "Sekunden"
306
 
307
- #: ../admin/config/index.php:136
308
  msgid "Extend Session"
309
  msgstr "Sitzung erweitern"
310
 
311
- #: ../admin/config/index.php:136
312
  #, fuzzy
313
  msgid "Extend the duration of a session each time the user visits a new page."
314
  msgstr ""
315
  "Verlängert die Dauer einer Sitzung jedes Mal um die hier eingegebene Zahl an "
316
  "Sekunden, wenn ein Benutzer eine neue Seite aufruft."
317
 
318
- #: ../admin/config/index.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
319
  msgid "Enable CDN"
320
  msgstr "CDN aktivieren"
321
 
322
- #: ../admin/config/index.php:137
323
  msgid ""
324
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
325
  "by serving our tracking code from their fast and reliable network (free "
326
  "service)."
327
  msgstr ""
328
 
329
- #: ../admin/config/index.php:138
330
  msgid "Extensions to Track"
331
  msgstr "Zu verfolgende Erweiterungen"
332
 
333
- #: ../admin/config/index.php:138
334
  #, fuzzy
335
  msgid ""
336
  "List all the file extensions that you want to be treated as Downloads. "
@@ -345,38 +371,38 @@ msgstr ""
345
  "nicht als 'Ausgehende Links' gewertet werden, wenn der Typ in der folgenden "
346
  "Liste enthalten ist."
347
 
348
- #: ../admin/config/index.php:140
349
  #, fuzzy
350
  msgid "Internal and Outbound Links"
351
  msgstr "Letzte ausgehende Links"
352
 
353
- #: ../admin/config/index.php:141
354
  msgid "Track Outbound Clicks"
355
  msgstr "Letzte ausgehende Links"
356
 
357
- #: ../admin/config/index.php:141
358
  msgid ""
359
  "Track when your visitors click on link to external websites. This option "
360
  "required Spy Mode to be enabled."
361
  msgstr ""
362
 
363
- #: ../admin/config/index.php:142
364
  #, fuzzy
365
  msgid "Track Coordinates"
366
  msgstr "Tracking aktiv"
367
 
368
- #: ../admin/config/index.php:142
369
  msgid ""
370
  "Collect mouse coordinates and other information for clicks on internal "
371
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
372
  "this information is only collected for external links."
373
  msgstr ""
374
 
375
- #: ../admin/config/index.php:143
376
  msgid "No Callback"
377
  msgstr ""
378
 
379
- #: ../admin/config/index.php:143
380
  msgid ""
381
  "Track the event but do not invoke the callback function on links marked with "
382
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
@@ -384,34 +410,34 @@ msgid ""
384
  "prevent conflicts with lightbox and similar libraries."
385
  msgstr ""
386
 
387
- #: ../admin/config/index.php:144
388
  msgid "Do Not Track"
389
  msgstr ""
390
 
391
- #: ../admin/config/index.php:144
392
  msgid ""
393
  "Do not track links marked with one of these class names, <em>rel</em> "
394
  "attributes or whose <em>href</em> attribute contains one of these strings "
395
  "(separated by comma)."
396
  msgstr ""
397
 
398
- #: ../admin/config/index.php:146
399
  msgid "Pages not belonging to this site"
400
  msgstr ""
401
 
402
- #: ../admin/config/index.php:147
403
  msgid ""
404
  "Add the following code to all the non-WP pages you want to track, right "
405
  "before the closing BODY tag. Please make sure to change the protocol of all "
406
  "the URLs to HTTPS, if you external site is served over a secure channel."
407
  msgstr ""
408
 
409
- #: ../admin/config/index.php:157
410
  #, fuzzy
411
  msgid "Allow External Domains"
412
  msgstr "Gesamte Seitenaufrufe"
413
 
414
- #: ../admin/config/index.php:157
415
  msgid ""
416
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
417
  "header is present on the requested resource, when using the external "
@@ -422,17 +448,17 @@ msgid ""
422
  "security implications of allowing CORS requests."
423
  msgstr ""
424
 
425
- #: ../admin/config/index.php:158 ../admin/config/index.php:180
426
- #: ../admin/config/index.php:208
427
  msgid "Miscellaneous"
428
  msgstr "Diverse"
429
 
430
- #: ../admin/config/index.php:159
431
  #, fuzzy
432
  msgid "Enable UAN"
433
  msgstr "ADN aktivieren"
434
 
435
- #: ../admin/config/index.php:159
436
  msgid ""
437
  "Send anonymous data about user agents to our server for analysis. This "
438
  "allows us to contribute to the <a href='http://browscap.org/' "
@@ -441,31 +467,31 @@ msgid ""
441
  "ads network. No worries, your site will not be affected in any way."
442
  msgstr ""
443
 
444
- #: ../admin/config/index.php:164
445
  msgid "Filters"
446
  msgstr "Filter"
447
 
448
- #: ../admin/config/index.php:166
449
  #, fuzzy
450
  msgid "Do not track settings"
451
  msgstr "Bot oder Crawler"
452
 
453
- #: ../admin/config/index.php:167
454
  #, fuzzy
455
  msgid "Track Registered Users"
456
  msgstr "Benutzer tracken"
457
 
458
- #: ../admin/config/index.php:167
459
  #, fuzzy
460
  msgid "Enable this option to track logged in users."
461
  msgstr "Ja falls eingeloggte Benutzer getrackt werden sollen."
462
 
463
- #: ../admin/config/index.php:168
464
  #, fuzzy
465
  msgid "Blacklist by Username"
466
  msgstr "IP-Adresse"
467
 
468
- #: ../admin/config/index.php:168
469
  #, fuzzy
470
  msgid ""
471
  "List all the usernames you don't want to track, separated by commas. Please "
@@ -483,12 +509,12 @@ msgstr ""
483
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
484
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
485
 
486
- #: ../admin/config/index.php:169
487
  #, fuzzy
488
  msgid "Blacklist by IP Address"
489
  msgstr "IP-Adresse"
490
 
491
- #: ../admin/config/index.php:169
492
  #, fuzzy
493
  msgid ""
494
  "List all the IP addresses you don't want to track, separated by commas. Each "
@@ -503,12 +529,12 @@ msgstr ""
503
  "(z.B. <em>192.168.0.0/24</em>) definiert werden. Bei inkorrektem Format kann "
504
  "WP SlimStat evtl. nicht die Pageviews korrekt tracken."
505
 
506
- #: ../admin/config/index.php:170
507
  #, fuzzy
508
  msgid "Blacklist by Capability"
509
  msgstr "Benutzer nach Browserf&auml;higkeiten"
510
 
511
- #: ../admin/config/index.php:170
512
  #, fuzzy
513
  msgid ""
514
  "Users having at least one of the <a href='http://codex.wordpress.org/"
@@ -519,15 +545,15 @@ msgstr ""
519
  "wordpress.org/Roles_and_Capabilities' target='_new'>CAPABILITIES</a> haben, "
520
  "werden nicht verfolgt. Bitte Groß-/Kleinschreibung beachten."
521
 
522
- #: ../admin/config/index.php:172
523
  msgid "Profiling"
524
  msgstr ""
525
 
526
- #: ../admin/config/index.php:173
527
  msgid "Ignore Spammers"
528
  msgstr "Spammer ignorieren"
529
 
530
- #: ../admin/config/index.php:173
531
  #, fuzzy
532
  msgid ""
533
  "Enable this option if you don't want to track visits from users identified "
@@ -540,12 +566,12 @@ msgstr ""
540
  "Kommentare später von Ihnen als Spam markiert werden, werden ebenso aus der "
541
  "Datenbank entfernt."
542
 
543
- #: ../admin/config/index.php:174
544
  #, fuzzy
545
  msgid "Ignore Bots"
546
  msgstr "Ignoriere Benutzer"
547
 
548
- #: ../admin/config/index.php:174
549
  msgid ""
550
  "Turn on this feature if you want to have the accuracy level of server-side "
551
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -553,11 +579,11 @@ msgid ""
553
  "note that in Client mode, bots are ignored regardless of this setting."
554
  msgstr ""
555
 
556
- #: ../admin/config/index.php:175
557
  msgid "Permalinks"
558
  msgstr "Permalinks"
559
 
560
- #: ../admin/config/index.php:175
561
  #, fuzzy
562
  msgid ""
563
  "List all the URLs on your website that you don't want to track, separated by "
@@ -576,11 +602,11 @@ msgstr ""
576
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
577
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
578
 
579
- #: ../admin/config/index.php:176
580
  msgid "Countries"
581
  msgstr "L&auml;nder"
582
 
583
- #: ../admin/config/index.php:176
584
  msgid ""
585
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
586
  "track, separated by commas."
@@ -588,11 +614,11 @@ msgstr ""
588
  "Liste der L&auml;dercodes (z.B.: <code>en-us, de, it, es</code>), die nicht "
589
  "mit erfasst werden sollen, getrennt durch Kommata."
590
 
591
- #: ../admin/config/index.php:177
592
  msgid "User Agents"
593
  msgstr "User Agents"
594
 
595
- #: ../admin/config/index.php:177
596
  #, fuzzy
597
  msgid ""
598
  "Browsers (user agents) you don't want to track, separated by commas. You can "
@@ -610,11 +636,11 @@ msgstr ""
610
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
611
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
612
 
613
- #: ../admin/config/index.php:178
614
  msgid "Referring Sites"
615
  msgstr "Verweisende Webseiten"
616
 
617
- #: ../admin/config/index.php:178
618
  #, fuzzy
619
  msgid ""
620
  "Referring URLs that you don't want to track, separated by commas: "
@@ -632,22 +658,22 @@ msgstr ""
632
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
633
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
634
 
635
- #: ../admin/config/index.php:181
636
  msgid "Enable Privacy Mode"
637
  msgstr ""
638
 
639
- #: ../admin/config/index.php:181
640
  #, fuzzy
641
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
642
  msgstr ""
643
  "Diese Option maskiert das letzte Byte der IP-Adressen Ihrere Besucher um die "
644
  "Europ&auml;ischen Datenschutzgesetze zur erf&uuml;llen."
645
 
646
- #: ../admin/config/index.php:182
647
  msgid "Ignore Prefetch Requests"
648
  msgstr ""
649
 
650
- #: ../admin/config/index.php:182
651
  #, fuzzy
652
  msgid ""
653
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
@@ -657,50 +683,50 @@ msgstr ""
657
  "Verhindert, dass WP SlimStat Pageviews trackt, die durch die <a "
658
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' target='_blank'>"
659
 
660
- #: ../admin/config/index.php:187 ../admin/config/index.php:220
661
  msgid "Reports"
662
  msgstr "Auswertungen"
663
 
664
- #: ../admin/config/index.php:189
665
  msgid "Formats and Conversions"
666
  msgstr ""
667
 
668
- #: ../admin/config/index.php:190
669
  msgid "Number Format"
670
  msgstr "Zahlenformat"
671
 
672
- #: ../admin/config/index.php:190
673
  #, fuzzy
674
  msgid "Choose the number format you want to use for your reports."
675
  msgstr "Das zu verwendente Zahlenformat ausw&auml;hlen (metrisch o. imperial)."
676
 
677
- #: ../admin/config/index.php:191
678
  msgid "Date Format"
679
  msgstr "Datum"
680
 
681
- #: ../admin/config/index.php:191
682
  msgid ""
683
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
684
  "Format</a> to use when displaying a pageview's date."
685
  msgstr ""
686
 
687
- #: ../admin/config/index.php:192
688
  #, fuzzy
689
  msgid "Time Format"
690
  msgstr "Zahlenformat"
691
 
692
- #: ../admin/config/index.php:192
693
  msgid ""
694
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
695
  "Format</a> to use when displaying a pageview's time."
696
  msgstr ""
697
 
698
- #: ../admin/config/index.php:193
699
  #, fuzzy
700
  msgid "Use Display Name"
701
  msgstr "Spitznamen anzeigen"
702
 
703
- #: ../admin/config/index.php:193
704
  #, fuzzy
705
  msgid ""
706
  "By default, users are listed by their usernames. Use this option to "
@@ -709,86 +735,86 @@ msgstr ""
709
  "Standardmäßig werden die Benutzernamen aufgelistet. Benutzen Sie diese "
710
  "Option, um dafür stattdessen die Spitznamen anzeigen zu lassen,"
711
 
712
- #: ../admin/config/index.php:194
713
  #, fuzzy
714
  msgid "Use Titles"
715
  msgstr "Titel anzeigen"
716
 
717
- #: ../admin/config/index.php:194
718
  msgid ""
719
  "Slimstat converts your permalinks into post, page and category titles. "
720
  "Disable this feature if you need to see the URL in your reports."
721
  msgstr ""
722
 
723
- #: ../admin/config/index.php:195
724
  msgid "Convert IP Addresses"
725
  msgstr "IP-Adressen umwandeln"
726
 
727
- #: ../admin/config/index.php:195
728
  msgid "Display provider names instead of IP addresses."
729
  msgstr ""
730
 
731
- #: ../admin/config/index.php:197
732
  msgid "Functionality"
733
  msgstr "Funktionalität"
734
 
735
- #: ../admin/config/index.php:198
736
  msgid "SlimScroll"
737
  msgstr ""
738
 
739
- #: ../admin/config/index.php:198
740
  msgid ""
741
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
742
  "scrollbar."
743
  msgstr ""
744
 
745
- #: ../admin/config/index.php:199
746
  msgid "Expand Details"
747
  msgstr "Details anzeigen"
748
 
749
- #: ../admin/config/index.php:199
750
  #, fuzzy
751
  msgid "Expand each row's details by default, insted of on mousehover."
752
  msgstr "Zeigt in allen Zeilen die Details und nicht nur beim Mouse-Over"
753
 
754
- #: ../admin/config/index.php:200 ../admin/config/index.php:206
755
  #, fuzzy
756
  msgid "Rows to Display"
757
  msgstr "keine Daten vorhanden"
758
 
759
- #: ../admin/config/index.php:200
760
  msgid "Specify the number of items in each report."
761
  msgstr ""
762
 
763
- #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
764
  #, fuzzy
765
  msgid "Max Results"
766
  msgstr "Max. Anzahl Ergebnisse"
767
 
768
- #: ../admin/config/index.php:201
769
  msgid ""
770
  "Decide how many records should be retrieved from the database in total. "
771
  "Depending on your server configuration, you may want to fine tune this value "
772
  "to avoid exceeding your PHP memory limit."
773
  msgstr ""
774
 
775
- #: ../admin/config/index.php:202
776
  msgid "IP Lookup"
777
  msgstr "IP Suche"
778
 
779
- #: ../admin/config/index.php:202
780
  msgid "Customize the Geolocation service to be used in the reports."
781
  msgstr ""
782
 
783
- #: ../admin/config/index.php:204
784
  msgid "Activity Log"
785
  msgstr ""
786
 
787
- #: ../admin/config/index.php:205
788
  msgid "Live Stream"
789
  msgstr "Livestream"
790
 
791
- #: ../admin/config/index.php:205
792
  #, fuzzy
793
  msgid ""
794
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
@@ -797,15 +823,15 @@ msgstr ""
797
  "Anzeige der aktuell aktiven Besucher alle X Sekunden aktualisieren. Null "
798
  "deaktiviert diese Funktion."
799
 
800
- #: ../admin/config/index.php:206
801
  msgid "Specify the number of items in the Activity Log."
802
  msgstr ""
803
 
804
- #: ../admin/config/index.php:209
805
  msgid "Custom CSS"
806
  msgstr "Benutzerdefinierte CSS"
807
 
808
- #: ../admin/config/index.php:209
809
  msgid ""
810
  "Paste here your custom stylesheet to personalize the way your reports look. "
811
  "<a href='https://slimstat.freshdesk.com/support/solutions/"
@@ -814,12 +840,12 @@ msgid ""
814
  "a> for more information on how to use this setting."
815
  msgstr ""
816
 
817
- #: ../admin/config/index.php:210
818
  #, fuzzy
819
  msgid "Chart Colors"
820
  msgstr "Diagramm-Einstellungen"
821
 
822
- #: ../admin/config/index.php:210
823
  msgid ""
824
  "Customize the look and feel of your charts by assigning personalized colors "
825
  "to each metric. List 4 hex colors separated by commas, strictly in the "
@@ -827,12 +853,12 @@ msgid ""
827
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
828
  msgstr ""
829
 
830
- #: ../admin/config/index.php:211
831
  #, fuzzy
832
  msgid "Show User Agent"
833
  msgstr "Top Browser"
834
 
835
- #: ../admin/config/index.php:211
836
  #, fuzzy
837
  msgid ""
838
  "Choose if you want to see the browser name or a complete user agent string "
@@ -841,40 +867,26 @@ msgstr ""
841
  "Wählen Sie, ob der Browsername oder ein kompletter USER AGENT STRING "
842
  "angezeigt werden soll, wenn Sie auf die Browsersymbole zeigen."
843
 
844
- #: ../admin/config/index.php:212
845
  msgid "Enable SOV"
846
  msgstr "SOV aktivieren"
847
 
848
- #: ../admin/config/index.php:212
849
  msgid ""
850
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
851
  "the subject, object, and verb of a sentence appear in that order, like in "
852
  "Japanese."
853
  msgstr ""
854
 
855
- #: ../admin/config/index.php:213
856
- msgid "Social Analytics"
857
- msgstr ""
858
-
859
- #: ../admin/config/index.php:213
860
- msgid ""
861
- "Thanks to a <a href='http://getsocial.io/enterprise' "
862
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
863
- "set of analytics for social media where you can identify top performing "
864
- "posts. Track social sharing to understand which of your posts are generating "
865
- "more engagement. When this option is enabled, Slimstat sends a list of all "
866
- "your posts's URLs to their service for analysis once daily."
867
- msgstr ""
868
-
869
- #: ../admin/config/index.php:218
870
  msgid "Access Control"
871
  msgstr ""
872
 
873
- #: ../admin/config/index.php:221
874
  msgid "Restrict Authors"
875
  msgstr "Autoren einschränken"
876
 
877
- #: ../admin/config/index.php:221
878
  #, fuzzy
879
  msgid ""
880
  "Enable this option if you want your authors to only see stats related to "
@@ -883,12 +895,12 @@ msgstr ""
883
  "Aktivieren Sie diese Option, wenn Ihre Autoren nur Statistiken zu Ihrem "
884
  "eigenen Inhalt ansehen können."
885
 
886
- #: ../admin/config/index.php:222 ../admin/config/index.php:226
887
  #, fuzzy
888
  msgid "Capability"
889
  msgstr "Benutzer nach Browserf&auml;higkeiten"
890
 
891
- #: ../admin/config/index.php:222
892
  #, fuzzy
893
  msgid ""
894
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -905,11 +917,11 @@ msgstr ""
905
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
906
  "welche Vorrang über die CAPABILITY hat."
907
 
908
- #: ../admin/config/index.php:223 ../admin/config/index.php:227
909
  msgid "Whitelist"
910
  msgstr "Whitelist"
911
 
912
- #: ../admin/config/index.php:223
913
  #, fuzzy
914
  msgid ""
915
  "List all the users who should have access to the reports, separated by "
@@ -921,13 +933,13 @@ msgstr ""
921
  "angeführt werden. Wenn dieses Feld leer ist der Zugriff <strong>allen Ihren "
922
  "Benutzern</strong> erlaubt. Bitte Groß-/Kleinschreibung beachten."
923
 
924
- #: ../admin/config/index.php:225 ../admin/config/index.php:250
925
- #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
926
- #: ../wp-slimstat.php:1803
927
  msgid "Settings"
928
  msgstr "Einstellungen"
929
 
930
- #: ../admin/config/index.php:226
931
  #, fuzzy
932
  msgid ""
933
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -942,7 +954,7 @@ msgstr ""
942
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
943
  "welche Vorrang über die CAPABILITY hat."
944
 
945
- #: ../admin/config/index.php:227
946
  #, fuzzy
947
  msgid ""
948
  "List all the users who can edit these options, separated by commas. Please "
@@ -956,13 +968,12 @@ msgstr ""
956
  "Benutzer bekommen automatisch auch 'Lesezugriff' auf die WP SlimStat-"
957
  "Berichte. Bitte Groß-/Kleinschreibung beachten."
958
 
959
- #: ../admin/config/index.php:232
960
  msgid "Maintenance"
961
  msgstr "Wartung"
962
 
963
- #: ../admin/config/index.php:237 ../admin/view/addons.php:32
964
- #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
965
- #: ../wp-slimstat.php:1800
966
  msgid "Add-ons"
967
  msgstr "Add-Ons"
968
 
@@ -992,173 +1003,161 @@ msgstr ""
992
  msgid "The geolocation database has been installed on your server."
993
  msgstr ""
994
 
995
- #: ../admin/config/maintenance.php:166
996
- msgid ""
997
- "Your data was successfully imported. You may now drop the old tables: "
998
- "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
999
- "wp_slim_outbound. Please note: if you are using Slimstat in a MU network, "
1000
- "you will need to run the import script on all your sites before you can "
1001
- "delete the old tables."
1002
- msgstr ""
1003
-
1004
- #: ../admin/config/maintenance.php:175
1005
  msgid "Your reports were successfully restored to their default arrangement."
1006
  msgstr ""
1007
 
1008
- #: ../admin/config/maintenance.php:185
1009
  #, fuzzy
1010
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1011
  msgstr ""
1012
  "Ihre WP SlimStat Datenbank wurden erfolgreich ins InnoDB-Format konvertiert."
1013
 
1014
- #: ../admin/config/maintenance.php:191
1015
  #, fuzzy
1016
  msgid "All the archived records were successfully deleted."
1017
  msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1018
 
1019
- #: ../admin/config/maintenance.php:199
1020
  msgid "All the records were successfully deleted."
1021
  msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1022
 
1023
- #: ../admin/config/maintenance.php:221
1024
- msgid "Debugging"
1025
  msgstr ""
1026
 
1027
- #: ../admin/config/maintenance.php:224
1028
  #, fuzzy
1029
  msgid "Tracker Status"
1030
  msgstr "Benutzer tracken"
1031
 
1032
- #: ../admin/config/maintenance.php:226
1033
  #, fuzzy
1034
- msgid "recorded on"
1035
- msgstr "Datensätze"
1036
 
1037
- #: ../admin/config/maintenance.php:226
1038
  msgid "No Errors so far"
1039
  msgstr ""
1040
 
1041
- #: ../admin/config/maintenance.php:227
1042
  msgid ""
1043
  "The information here above is useful to troubleshoot issues with the "
1044
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1045
  "the tracker could not record a pageview and are indicative of some kind of "
1046
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1047
  "most recent pageview was not recorded, based on your settings (filters, "
1048
- "blackslists, etc). Please include this code when sending a support request."
 
1049
  msgstr ""
1050
 
1051
- #: ../admin/config/maintenance.php:233
1052
  #, fuzzy
1053
  msgid "Enable SQL Debug"
1054
  msgstr "SOV aktivieren"
1055
 
1056
- #: ../admin/config/maintenance.php:236
1057
  msgid ""
1058
  "Display the SQL code used to retrieve the data from the database. Useful to "
1059
  "troubleshoot issues with data consistency or missing pageviews."
1060
  msgstr ""
1061
 
1062
- #: ../admin/config/maintenance.php:240
1063
  msgid "Disable SQL Debug"
1064
  msgstr ""
1065
 
1066
- #: ../admin/config/maintenance.php:243
1067
  msgid "Deactivate the SQL output on top of each report."
1068
  msgstr ""
1069
 
1070
- #: ../admin/config/maintenance.php:248
1071
- msgid "Layout"
1072
- msgstr ""
1073
-
1074
- #: ../admin/config/maintenance.php:251
1075
  #, fuzzy
1076
  msgid ""
1077
  "Are you sure you want to restore the default arrangement of your reports?"
1078
  msgstr "Datenbanktabellen wirklich zurücksetzen?"
1079
 
1080
- #: ../admin/config/maintenance.php:251
1081
  msgid "No Panic Button"
1082
  msgstr ""
1083
 
1084
- #: ../admin/config/maintenance.php:253
1085
  msgid ""
1086
  "Reset the default arrangement of your reports. Helpful when, for some "
1087
  "reason, reports disappear from your panels or something doesn't look right "
1088
  "in your views."
1089
  msgstr ""
1090
 
1091
- #: ../admin/config/maintenance.php:257
1092
  msgid "Data Maintenance"
1093
  msgstr "Datenwartung"
1094
 
1095
- #: ../admin/config/maintenance.php:260
1096
  #, fuzzy
1097
  msgid "Delete pageviews where"
1098
  msgstr "Lösche Seitenaufrufe, wo"
1099
 
1100
- #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1101
  msgid "equals"
1102
  msgstr "entspricht"
1103
 
1104
- #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1105
  msgid "is not equal to"
1106
  msgstr "ist ungleich zu"
1107
 
1108
- #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1109
  msgid "contains"
1110
  msgstr "enth&auml;lt"
1111
 
1112
- #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1113
  msgid "is included in"
1114
  msgstr ""
1115
 
1116
- #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1117
  msgid "does not contain"
1118
  msgstr "enth&auml;lt nicht"
1119
 
1120
- #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1121
  msgid "starts with"
1122
  msgstr "beginnt mit"
1123
 
1124
- #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1125
  msgid "ends with"
1126
  msgstr "endet mit"
1127
 
1128
- #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1129
  msgid "sounds like"
1130
  msgstr "&auml;hnelt"
1131
 
1132
- #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1133
  msgid "is greater than"
1134
  msgstr "ist gr&ouml;sser als"
1135
 
1136
- #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1137
  msgid "is less than"
1138
  msgstr "ist kleiner als"
1139
 
1140
- #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1141
  msgid "matches"
1142
  msgstr "entspricht"
1143
 
1144
- #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1145
  msgid "does not match"
1146
  msgstr "entspricht nicht"
1147
 
1148
- #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1149
  msgid "is empty"
1150
  msgstr "ist leer"
1151
 
1152
- #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1153
  msgid "is not empty"
1154
  msgstr "ist nicht leer"
1155
 
1156
- #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1157
  #: ../admin/view/index.php:105
1158
  msgid "Apply"
1159
  msgstr "Anwenden"
1160
 
1161
- #: ../admin/config/maintenance.php:291
1162
  #, fuzzy
1163
  msgid ""
1164
  "Are you sure you want to PERMANENTLY delete these records from your database?"
@@ -1166,7 +1165,7 @@ msgstr ""
1166
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1167
  "Datenbank löschen möchten?"
1168
 
1169
- #: ../admin/config/maintenance.php:298
1170
  #, fuzzy
1171
  msgid ""
1172
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1175,18 +1174,20 @@ msgstr ""
1175
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1176
  "Datenbank löschen möchten?"
1177
 
1178
- #: ../admin/config/maintenance.php:298
1179
  #, fuzzy
1180
  msgid "Delete All Records"
1181
  msgstr "Alle Seitenaufrufe löschen"
1182
 
1183
- #: ../admin/config/maintenance.php:301
1184
  msgid ""
1185
- "Erase all the information collected so far by Slimstat, including the "
1186
- "archive. This operation <strong>does not</strong> reset your settings."
 
 
1187
  msgstr ""
1188
 
1189
- #: ../admin/config/maintenance.php:307
1190
  #, fuzzy
1191
  msgid ""
1192
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1195,20 +1196,20 @@ msgstr ""
1195
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1196
  "Datenbank löschen möchten?"
1197
 
1198
- #: ../admin/config/maintenance.php:307
1199
  #, fuzzy
1200
  msgid "Delete Archive"
1201
  msgstr "Lösche Seitenaufrufe, wo"
1202
 
1203
- #: ../admin/config/maintenance.php:310
1204
  msgid "Erase all the archived records. This operation cannot be undone."
1205
  msgstr ""
1206
 
1207
- #: ../admin/config/maintenance.php:316
1208
  msgid "Improve Performance"
1209
  msgstr "Leistung erhöhen"
1210
 
1211
- #: ../admin/config/maintenance.php:320
1212
  #, fuzzy
1213
  msgid ""
1214
  "Please note that you will need about 30% more DB space to store the extra "
@@ -1218,55 +1219,39 @@ msgstr ""
1218
  "verbessern. Die Datenbank benötigt dafür ca. 30% mehr Speicherplatz, damit "
1219
  "die notwendigen zusätzlichne Informationen gespeichert werden können."
1220
 
1221
- #: ../admin/config/maintenance.php:324
1222
  msgid "Save DB Space"
1223
  msgstr "Datenbank-Speicherplatz sparen"
1224
 
1225
- #: ../admin/config/maintenance.php:327
1226
  msgid ""
1227
  "Please note that by removing table indexes, Slimstat's performance will be "
1228
  "affected."
1229
  msgstr ""
1230
 
1231
- #: ../admin/config/maintenance.php:334
1232
- msgid ""
1233
- "Hold on tight, we are about to import all your old data. Are you sure you "
1234
- "want to proceed?"
1235
- msgstr ""
1236
-
1237
- #: ../admin/config/maintenance.php:334
1238
- msgid "Import old data"
1239
- msgstr ""
1240
-
1241
- #: ../admin/config/maintenance.php:337
1242
- msgid ""
1243
- "Import all the records from the old table structure. No data will be deleted "
1244
- "from your database."
1245
- msgstr ""
1246
-
1247
- #: ../admin/config/maintenance.php:341
1248
  msgid "MaxMind IP to Country"
1249
  msgstr ""
1250
 
1251
- #: ../admin/config/maintenance.php:347
1252
  msgid ""
1253
  "Do you want to download and install the geolocation database from MaxMind's "
1254
  "server?"
1255
  msgstr ""
1256
 
1257
- #: ../admin/config/maintenance.php:347
1258
  msgid "Install GeoLite DB"
1259
  msgstr ""
1260
 
1261
- #: ../admin/config/maintenance.php:350
1262
  msgid "Do you want to uninstall the geolocation database?"
1263
  msgstr ""
1264
 
1265
- #: ../admin/config/maintenance.php:350
1266
  msgid "Uninstall GeoLite DB"
1267
  msgstr ""
1268
 
1269
- #: ../admin/config/maintenance.php:354
1270
  msgid ""
1271
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1272
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1276,42 +1261,42 @@ msgid ""
1276
  "enable this functionality."
1277
  msgstr ""
1278
 
1279
- #: ../admin/config/maintenance.php:359
1280
  msgid "Import and Export"
1281
  msgstr ""
1282
 
1283
- #: ../admin/config/maintenance.php:363
1284
  msgid ""
1285
  "Here below you can find the current configuration string for Slimstat. You "
1286
  "can update your settings by pasting a new string inside the text area and "
1287
  "clicking the Import button."
1288
  msgstr ""
1289
 
1290
- #: ../admin/config/maintenance.php:368
1291
  msgid "Import"
1292
  msgstr "Import"
1293
 
1294
- #: ../admin/config/maintenance.php:369
1295
  msgid "Are you sure you want to OVERWRITE your current settings?"
1296
  msgstr "Derzeitige Einstellungen wirklich zurücksetzen?"
1297
 
1298
- #: ../admin/config/maintenance.php:374
1299
  msgid "Database Information"
1300
  msgstr "Datenbankinformation"
1301
 
1302
  # depends on context:
1303
  # Engine = Maschine, Motor, Triebwerk or Antrieb
1304
  # Search engine = Suchmaschine
1305
- #: ../admin/config/maintenance.php:377
1306
  #, fuzzy
1307
  msgid "Engine"
1308
  msgstr "Suchmaschinen"
1309
 
1310
- #: ../admin/config/maintenance.php:381
1311
  msgid "switch to InnoDB"
1312
  msgstr "zu InnoDB wechseln"
1313
 
1314
- #: ../admin/config/maintenance.php:392
1315
  msgid "records"
1316
  msgstr "Datensätze"
1317
 
@@ -1390,11 +1375,11 @@ msgstr ""
1390
  msgid "Load"
1391
  msgstr ""
1392
 
1393
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1394
  msgid "Today"
1395
  msgstr "heute"
1396
 
1397
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1398
  msgid "Yesterday"
1399
  msgstr "Gestern"
1400
 
@@ -1461,11 +1446,11 @@ msgid ""
1461
  "country of origin."
1462
  msgstr ""
1463
 
1464
- #: ../admin/view/layout.php:40
1465
  msgid "Customize and organize your reports"
1466
  msgstr ""
1467
 
1468
- #: ../admin/view/layout.php:41
1469
  msgid ""
1470
  "Drag and drop report placeholders from one container to another, to "
1471
  "customize the information you want to see right away when you open Slimstat. "
@@ -1477,11 +1462,11 @@ msgid ""
1477
  "(Screen Options tab)."
1478
  msgstr ""
1479
 
1480
- #: ../admin/view/layout.php:53
1481
  msgid "Clone"
1482
  msgstr ""
1483
 
1484
- #: ../admin/view/layout.php:57
1485
  #, fuzzy
1486
  msgid "Delete"
1487
  msgstr "Datensätze"
@@ -1502,8 +1487,8 @@ msgstr "Mobiles Gerät"
1502
  msgid "Syndication Reader"
1503
  msgstr ""
1504
 
1505
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1506
- #: ../admin/view/wp-slimstat-reports.php:1706
1507
  msgid "No data to display"
1508
  msgstr "keine Daten vorhanden"
1509
 
@@ -1512,18 +1497,19 @@ msgid "Date and Time"
1512
  msgstr "Datum und Uhrzeit"
1513
 
1514
  # Unknown
1515
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1516
- #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1517
  msgid "c-"
1518
  msgstr "Unknown"
1519
 
1520
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1521
- #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1522
  msgid "Originating IP"
1523
  msgstr "Ursprüngliche IP"
1524
 
1525
- #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1526
- #: ../admin/view/wp-slimstat-reports.php:1183
 
1527
  msgid "Open this URL in a new window"
1528
  msgstr "Diese URL in einem neuen Fenster &ouml;ffnen"
1529
 
@@ -1531,63 +1517,63 @@ msgstr "Diese URL in einem neuen Fenster &ouml;ffnen"
1531
  msgid "Local search results page"
1532
  msgstr "lokale Suchergebnisse"
1533
 
1534
- #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1535
- #: ../admin/view/wp-slimstat-reports.php:257
1536
- #: ../admin/view/wp-slimstat-reports.php:266
1537
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1538
  msgid "Search Terms"
1539
  msgstr "Suchbegriffe"
1540
 
1541
- #: ../admin/view/right-now.php:162
1542
  msgid "Server Latency and Page Speed in milliseconds"
1543
  msgstr ""
1544
 
1545
- #: ../admin/view/right-now.php:162
1546
  msgid "SL"
1547
  msgstr ""
1548
 
1549
- #: ../admin/view/right-now.php:162
1550
  msgid "PS"
1551
  msgstr ""
1552
 
1553
- #: ../admin/view/right-now.php:169
1554
  #, fuzzy
1555
- msgid "Time spent on this page in seconds"
1556
  msgstr "Seite in neuem Fenster &ouml;ffnen"
1557
 
1558
- #: ../admin/view/right-now.php:179
1559
  msgid "Open this referrer in a new window"
1560
  msgstr "Verweisende Seite in einem neuen Fenster &ouml;ffnen"
1561
 
1562
- #: ../admin/view/right-now.php:180
1563
  msgid "Open this outbound link in a new window"
1564
  msgstr "Wegführender Link in neuem Fenster &ouml;ffnen"
1565
 
1566
- #: ../admin/view/right-now.php:181
1567
  #, fuzzy
1568
  msgid "Content Type"
1569
  msgstr "Inhalt"
1570
 
1571
- #: ../admin/view/right-now.php:184
1572
  #, fuzzy
1573
  msgid "Delete this pageview"
1574
  msgstr "Lösche Seitenaufrufe, wo"
1575
 
1576
- #: ../admin/view/right-now.php:195
1577
  #, fuzzy
1578
  msgid "User Logged In"
1579
  msgstr "User Agent"
1580
 
1581
- #: ../admin/view/right-now.php:205
1582
  #, fuzzy
1583
  msgid "User Logged Out"
1584
  msgstr "User Agent"
1585
 
1586
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1587
  msgid "Browser"
1588
  msgstr "Browser"
1589
 
1590
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1591
  msgid "Country Code"
1592
  msgstr "L&auml;nder-Code"
1593
 
@@ -1595,29 +1581,30 @@ msgstr "L&auml;nder-Code"
1595
  msgid "IP Address"
1596
  msgstr "IP-Adresse"
1597
 
1598
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1599
  msgid "Language Code"
1600
  msgstr "Sprach-Kodierung"
1601
 
1602
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1603
- #: ../admin/wp-slimstat-admin.php:867
1604
  msgid "Operating System"
1605
  msgstr "Betriebssystem"
1606
 
1607
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1608
- #: ../admin/wp-slimstat-admin.php:868
1609
  msgid "Permalink"
1610
  msgstr "Permalink"
1611
 
1612
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1613
  msgid "Referer"
1614
  msgstr "Herkunft"
1615
 
1616
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1617
- msgid "Visitor's Name"
 
1618
  msgstr "Besuchername"
1619
 
1620
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1621
  msgid "Outbound Link"
1622
  msgstr "Ausgehender Link"
1623
 
@@ -1630,19 +1617,19 @@ msgid "-- Advanced filters --"
1630
  msgstr "-- Erweiterte Filter --"
1631
 
1632
  #: ../admin/view/wp-slimstat-db.php:52
1633
- #: ../admin/view/wp-slimstat-reports.php:373
1634
  msgid "Browser Capabilities"
1635
  msgstr "Browser-F&auml;higkeiten"
1636
 
1637
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1638
  msgid "Browser Version"
1639
  msgstr "Browser-Version"
1640
 
1641
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1642
  msgid "Browser Type"
1643
  msgstr "Browser-Typ"
1644
 
1645
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1646
  msgid "User Agent"
1647
  msgstr "User Agent"
1648
 
@@ -1656,15 +1643,15 @@ msgstr "Diagrammanmerkungen"
1656
  msgid "Server Latency"
1657
  msgstr "Latenz"
1658
 
1659
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1660
  msgid "Post Author"
1661
  msgstr "Autor der Seiten"
1662
 
1663
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1664
  msgid "Post Category ID"
1665
  msgstr "Kategorie-ID der Seite"
1666
 
1667
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1668
  msgid "Resource Content Type"
1669
  msgstr "Inhalt der Ressource"
1670
 
@@ -1685,7 +1672,7 @@ msgstr "Bildschirm-Aufl&ouml;sung"
1685
  msgid "Viewport Size"
1686
  msgstr ""
1687
 
1688
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1689
  msgid "Visit ID"
1690
  msgstr "Besuchs-ID"
1691
 
@@ -1731,7 +1718,7 @@ msgid "Event ID"
1731
  msgstr ""
1732
 
1733
  #: ../admin/view/wp-slimstat-db.php:96
1734
- #: ../admin/view/wp-slimstat-reports.php:1720
1735
  msgid "Type"
1736
  msgstr ""
1737
 
@@ -1754,128 +1741,79 @@ msgstr "Macromedia Director"
1754
  msgid "Offset"
1755
  msgstr ""
1756
 
1757
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1758
- #: ../wp-slimstat.php:1793
1759
- msgid "Access Log"
1760
- msgstr ""
1761
-
1762
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1763
- #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1764
- msgid "Overview"
1765
- msgstr "&Uuml;bersicht"
1766
-
1767
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1768
- #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1769
- msgid "Audience"
1770
- msgstr ""
1771
-
1772
- #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1773
- #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1774
- msgid "Site Analysis"
1775
- msgstr ""
1776
-
1777
- #: ../admin/view/wp-slimstat-reports.php:25
1778
- #: ../admin/view/wp-slimstat-reports.php:516
1779
- #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1780
- #: ../wp-slimstat.php:1797
1781
- msgid "Traffic Sources"
1782
- msgstr "Traffic-Ursprung"
1783
-
1784
- #: ../admin/view/wp-slimstat-reports.php:26
1785
- #: ../admin/view/wp-slimstat-reports.php:1364
1786
- #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1787
- #: ../wp-slimstat.php:1798
1788
- #, fuzzy
1789
- msgid "Geolocation"
1790
- msgstr "Macromedia Director"
1791
-
1792
- #: ../admin/view/wp-slimstat-reports.php:27
1793
- #, fuzzy
1794
- msgid "WordPress Dashboard"
1795
- msgstr "WordPress-Integration"
1796
-
1797
- #: ../admin/view/wp-slimstat-reports.php:28
1798
- #, fuzzy
1799
- msgid "Inactive Reports"
1800
- msgstr "Berichte zurücksetzen"
1801
-
1802
- #: ../admin/view/wp-slimstat-reports.php:77
1803
  msgid "Chart controls"
1804
  msgstr "Diagramm-Einstellungen"
1805
 
1806
- #: ../admin/view/wp-slimstat-reports.php:77
1807
  msgid "Use your mouse wheel to zoom in and out"
1808
  msgstr "Verwende das Mausrad zum Zoomen"
1809
 
1810
- #: ../admin/view/wp-slimstat-reports.php:77
1811
  msgid "While zooming in, drag the chart to move to a different area"
1812
  msgstr ""
1813
  "W&auml;hrend des Zooms das Diagramm zu einer anderen Position verschieben."
1814
 
1815
- #: ../admin/view/wp-slimstat-reports.php:80
1816
- msgid "Social Sharing Analytics"
1817
- msgstr ""
1818
-
1819
- #: ../admin/view/wp-slimstat-reports.php:87
1820
  #, fuzzy
1821
  msgid "Visitors Activity"
1822
  msgstr "Besucher"
1823
 
1824
- #: ../admin/view/wp-slimstat-reports.php:96
1825
  msgid "Color codes"
1826
  msgstr "Farbcode"
1827
 
1828
- #: ../admin/view/wp-slimstat-reports.php:96
1829
  #, fuzzy
1830
  msgid "From search result page"
1831
  msgstr "Von einer Suchergebnisseite"
1832
 
1833
- #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
1834
  msgid "Known Visitor"
1835
  msgstr "Bekannte Besucher"
1836
 
1837
- #: ../admin/view/wp-slimstat-reports.php:96
1838
  msgid "Known Users"
1839
  msgstr "Bekannte Benutzer"
1840
 
1841
- #: ../admin/view/wp-slimstat-reports.php:96
1842
  msgid "Other Humans"
1843
  msgstr "Andere echte Besucher"
1844
 
1845
- #: ../admin/view/wp-slimstat-reports.php:96
1846
  msgid "Bot or Crawler"
1847
  msgstr "Bot oder Crawler"
1848
 
1849
- #: ../admin/view/wp-slimstat-reports.php:118
1850
  #, fuzzy
1851
  msgid "About Slimstat"
1852
  msgstr "&Uuml;ber WP SlimStat"
1853
 
1854
- #: ../admin/view/wp-slimstat-reports.php:127
1855
  #, fuzzy
1856
  msgid "Traffic at a Glance"
1857
  msgstr "Auf einen Blick"
1858
 
1859
- #: ../admin/view/wp-slimstat-reports.php:137
1860
  #, fuzzy
1861
  msgid "Currently Online"
1862
  msgstr "Aktuelle Filter:"
1863
 
1864
- #: ../admin/view/wp-slimstat-reports.php:150
1865
  msgid "Recent Search Terms"
1866
  msgstr "Letzte interne Suchbegriffe"
1867
 
1868
- #: ../admin/view/wp-slimstat-reports.php:160
1869
  #, fuzzy
1870
  msgid "Keywords used by your visitors to find your website on a search engine."
1871
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
1872
 
1873
- #: ../admin/view/wp-slimstat-reports.php:163
1874
  #, fuzzy
1875
  msgid "Top Web Pages"
1876
  msgstr "Top-Seiten"
1877
 
1878
- #: ../admin/view/wp-slimstat-reports.php:174
1879
  msgid ""
1880
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1881
  "site, including posts, products, categories, and so on. You can set the "
@@ -1884,23 +1822,24 @@ msgid ""
1884
  "have."
1885
  msgstr ""
1886
 
1887
- #: ../admin/view/wp-slimstat-reports.php:177
1888
- msgid "Top Traffic Sources"
1889
- msgstr "Top-Traffic-Ursprung"
 
1890
 
1891
- #: ../admin/view/wp-slimstat-reports.php:189
1892
  msgid "Top Known Visitors"
1893
  msgstr "Top bekannte Besucher"
1894
 
1895
- #: ../admin/view/wp-slimstat-reports.php:200
1896
  msgid "Top Search Terms"
1897
  msgstr "Top-Suchbegriffe"
1898
 
1899
- #: ../admin/view/wp-slimstat-reports.php:211
1900
  msgid "Top Countries"
1901
  msgstr "Top-L&auml;nder"
1902
 
1903
- #: ../admin/view/wp-slimstat-reports.php:220
1904
  #, fuzzy
1905
  msgid ""
1906
  "You can configure Slimstat to ignore a specific Country by setting the "
@@ -1909,28 +1848,28 @@ msgstr ""
1909
  "Um ein spezifisches Land generell zu ignorieren kann ein entsprechender "
1910
  "Filter unter 'Einstellungen > SlimStat > Filter' gesetzt werden."
1911
 
1912
- #: ../admin/view/wp-slimstat-reports.php:223
1913
  msgid "Rankings"
1914
  msgstr ""
1915
 
1916
- #: ../admin/view/wp-slimstat-reports.php:227
1917
  msgid ""
1918
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1919
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1920
  "set above don't apply to this report."
1921
  msgstr ""
1922
 
1923
- #: ../admin/view/wp-slimstat-reports.php:230
1924
  #, fuzzy
1925
  msgid "Top Language Families"
1926
  msgstr "Top-Sprachen"
1927
 
1928
- #: ../admin/view/wp-slimstat-reports.php:243
1929
  #, fuzzy
1930
  msgid "Users Currently Online"
1931
  msgstr "Aktuelle Filter:"
1932
 
1933
- #: ../admin/view/wp-slimstat-reports.php:254
1934
  #, fuzzy
1935
  msgid ""
1936
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
@@ -1941,45 +1880,50 @@ msgstr ""
1941
  "einen Cookie zu. WP SlimStat erweitert diese Information um die Erkennung "
1942
  "zur&uuml;kkehrender Besucher."
1943
 
1944
- #: ../admin/view/wp-slimstat-reports.php:267
1945
  #, fuzzy
1946
  msgid "Unique Terms"
1947
  msgstr "Eindeutige IPs"
1948
 
1949
- #: ../admin/view/wp-slimstat-reports.php:276
 
 
 
 
 
1950
  msgid "Human Visits"
1951
  msgstr "Echte Besuche"
1952
 
1953
- #: ../admin/view/wp-slimstat-reports.php:285
1954
- #: ../admin/view/wp-slimstat-reports.php:1431
1955
  msgid "Visits"
1956
  msgstr "Besuche"
1957
 
1958
- #: ../admin/view/wp-slimstat-reports.php:295
1959
  #, fuzzy
1960
  msgid "Audience Overview"
1961
  msgstr "&Uuml;bersicht"
1962
 
1963
- #: ../admin/view/wp-slimstat-reports.php:302
1964
  msgid ""
1965
  "Where not otherwise specified, the metrics in this report are referred to "
1966
  "human visitors."
1967
  msgstr ""
1968
 
1969
- #: ../admin/view/wp-slimstat-reports.php:305
1970
  msgid "Top Languages"
1971
  msgstr "Top-Sprachen"
1972
 
1973
- #: ../admin/view/wp-slimstat-reports.php:316
1974
  msgid "Top Browsers"
1975
  msgstr "Top-Browser"
1976
 
1977
- #: ../admin/view/wp-slimstat-reports.php:327
1978
  msgid "Top Service Providers"
1979
  msgstr "Top-Internetprovider"
1980
 
1981
- #: ../admin/view/wp-slimstat-reports.php:336
1982
- #: ../admin/view/wp-slimstat-reports.php:348
1983
  #, fuzzy
1984
  msgid ""
1985
  "Internet Service Provider: a company which provides other companies or "
@@ -1993,24 +1937,24 @@ msgstr ""
1993
  "Adressen generell zu ignorieren kann ein entsprechender Filter unter "
1994
  "'Einstellungen > SlimStat > Filter' gesetzt werden."
1995
 
1996
- #: ../admin/view/wp-slimstat-reports.php:339
1997
  msgid "Top Operating Systems"
1998
  msgstr "Top-Betriebssysteme"
1999
 
2000
- #: ../admin/view/wp-slimstat-reports.php:351
2001
  msgid "Top Screen Resolutions"
2002
  msgstr "Top-Bildschirmaufl&ouml;sungen"
2003
 
2004
- #: ../admin/view/wp-slimstat-reports.php:362
2005
  #, fuzzy
2006
  msgid "Top Viewport Sizes"
2007
  msgstr "Top-Kategorien"
2008
 
2009
- #: ../admin/view/wp-slimstat-reports.php:382
2010
  msgid "Visit Duration"
2011
  msgstr "Besuchsdauer"
2012
 
2013
- #: ../admin/view/wp-slimstat-reports.php:389
2014
  #, fuzzy
2015
  msgid ""
2016
  "All values represent the percentages of pageviews within the corresponding "
@@ -2018,32 +1962,32 @@ msgid ""
2018
  msgstr ""
2019
  "Weltkarte - Werte repr&auml;sentieren die Zugriffe in Prozent aus diesem Land"
2020
 
2021
- #: ../admin/view/wp-slimstat-reports.php:392
2022
  msgid "Recent Countries"
2023
  msgstr "Letzte L&auml;nder"
2024
 
2025
- #: ../admin/view/wp-slimstat-reports.php:403
2026
  #, fuzzy
2027
  msgid "Recent Viewport Sizes"
2028
  msgstr "Letzte Kategorien"
2029
 
2030
- #: ../admin/view/wp-slimstat-reports.php:414
2031
  msgid "Recent Operating Systems"
2032
  msgstr "Letzte Betriebssysteme"
2033
 
2034
- #: ../admin/view/wp-slimstat-reports.php:425
2035
  msgid "Recent Browsers"
2036
  msgstr "Letzte Browser"
2037
 
2038
- #: ../admin/view/wp-slimstat-reports.php:436
2039
  msgid "Recent Languages"
2040
  msgstr "Letzte Sprachen"
2041
 
2042
- #: ../admin/view/wp-slimstat-reports.php:447
2043
  msgid "Top Browser Families"
2044
  msgstr "Top-Browserfamilien"
2045
 
2046
- #: ../admin/view/wp-slimstat-reports.php:456
2047
  msgid ""
2048
  "This report shows you what user agent families (no version considered) are "
2049
  "popular among your visitors."
@@ -2051,11 +1995,11 @@ msgstr ""
2051
  "Dieser Bericht zeigt, welche User Agent-Familien (unabhängig Ihrer Version) "
2052
  "bei Ihren Besuchern populär sind."
2053
 
2054
- #: ../admin/view/wp-slimstat-reports.php:459
2055
  msgid "Top OS Families"
2056
  msgstr "Top-Betriebssysteme"
2057
 
2058
- #: ../admin/view/wp-slimstat-reports.php:470
2059
  msgid ""
2060
  "This report shows you what operating system families (no version considered) "
2061
  "are popular among your visitors."
@@ -2063,83 +2007,88 @@ msgstr ""
2063
  "Dieser Bericht zeigt, welche Betriebssystemfamilien (ohne Berücksichtigung "
2064
  "der Version) hauptsächlich von Ihren Benutzer verwendet werden."
2065
 
2066
- #: ../admin/view/wp-slimstat-reports.php:473
2067
  msgid "Recent Users"
2068
  msgstr "Letzte Benutzer"
2069
 
2070
- #: ../admin/view/wp-slimstat-reports.php:485
2071
  msgid "Top Users"
2072
  msgstr "Top-Benutzer"
2073
 
2074
- #: ../admin/view/wp-slimstat-reports.php:497
2075
- #: ../admin/view/wp-slimstat-reports.php:506
2076
  msgid "Users"
2077
  msgstr "Benutzer"
2078
 
2079
- #: ../admin/view/wp-slimstat-reports.php:507
2080
  #, fuzzy
2081
  msgid "Unique Users"
2082
  msgstr "Eindeutige IPs"
2083
 
2084
- #: ../admin/view/wp-slimstat-reports.php:525
 
 
 
 
 
2085
  msgid "Domains"
2086
  msgstr "Dom&auml;nen"
2087
 
2088
- #: ../admin/view/wp-slimstat-reports.php:535
2089
  #, fuzzy
2090
  msgid "Traffic Summary"
2091
  msgstr "Traffic-Ursprung"
2092
 
2093
- #: ../admin/view/wp-slimstat-reports.php:544
2094
  msgid "Top Referring Search Engines"
2095
  msgstr "Top verweisende Suchmaschinen"
2096
 
2097
- #: ../admin/view/wp-slimstat-reports.php:571
2098
  msgid "Recent Outbound Links"
2099
  msgstr "Letzte ausgehende Links"
2100
 
2101
- #: ../admin/view/wp-slimstat-reports.php:583
2102
  msgid "Recent Posts"
2103
  msgstr "Letzte Artikel"
2104
 
2105
- #: ../admin/view/wp-slimstat-reports.php:611
2106
  msgid "Recent Feeds"
2107
  msgstr "Letzte Feeds"
2108
 
2109
- #: ../admin/view/wp-slimstat-reports.php:623
2110
  msgid "Recent Pages Not Found"
2111
  msgstr ""
2112
 
2113
- #: ../admin/view/wp-slimstat-reports.php:635
2114
  msgid "Recent Internal Searches"
2115
  msgstr "Letzte interne Suchbegriffe"
2116
 
2117
- #: ../admin/view/wp-slimstat-reports.php:645
2118
  #, fuzzy
2119
  msgid "Searches performed using WordPress' built-in search functionality."
2120
  msgstr ""
2121
  "Suchen welche mit der WordPress eigenen Such-Funktion ausgef&uuml;hrt wurden."
2122
 
2123
- #: ../admin/view/wp-slimstat-reports.php:648
2124
  msgid "Top Categories"
2125
  msgstr "Top-Kategorien"
2126
 
2127
- #: ../admin/view/wp-slimstat-reports.php:661
2128
  #, fuzzy
2129
  msgid "Top Downloads"
2130
  msgstr "Letzte Downloads"
2131
 
2132
- #: ../admin/view/wp-slimstat-reports.php:672
2133
  msgid ""
2134
  "You can configure Slimstat to track specific file extensions as downloads."
2135
  msgstr ""
2136
 
2137
- #: ../admin/view/wp-slimstat-reports.php:675
2138
  msgid "Recent Events"
2139
  msgstr "Letzte Ereignisse"
2140
 
2141
- #: ../admin/view/wp-slimstat-reports.php:684
2142
- #: ../admin/view/wp-slimstat-reports.php:708
2143
  #, fuzzy
2144
  msgid ""
2145
  "This report lists any <em>event</em> occurred on your website. Please refer "
@@ -2149,51 +2098,51 @@ msgstr ""
2149
  "stattgefunden hat. Bitte schlagen Sie in der FAQ für weitere Informationen "
2150
  "zur Verwendung dieser Funktionalit&auml;t nach."
2151
 
2152
- #: ../admin/view/wp-slimstat-reports.php:687
2153
  msgid "Top Posts"
2154
  msgstr "Top-Artikel"
2155
 
2156
- #: ../admin/view/wp-slimstat-reports.php:699
2157
  #, fuzzy
2158
  msgid "Top Events"
2159
  msgstr "Top-Seiten"
2160
 
2161
- #: ../admin/view/wp-slimstat-reports.php:711
2162
  msgid "Top Internal Searches"
2163
  msgstr "Top interne Suchbegriffe"
2164
 
2165
- #: ../admin/view/wp-slimstat-reports.php:723
2166
  msgid "Recent Categories"
2167
  msgstr "Letzte Kategorien"
2168
 
2169
- #: ../admin/view/wp-slimstat-reports.php:735
2170
  #, fuzzy
2171
  msgid "Top Pages Not Found"
2172
  msgstr "Top-Seiten"
2173
 
2174
- #: ../admin/view/wp-slimstat-reports.php:747
2175
  msgid "Top Authors"
2176
  msgstr "Top-Autoren"
2177
 
2178
- #: ../admin/view/wp-slimstat-reports.php:758
2179
  #, fuzzy
2180
  msgid "Top Tags"
2181
  msgstr "Top Seiten"
2182
 
2183
- #: ../admin/view/wp-slimstat-reports.php:770
2184
  msgid "Recent Downloads"
2185
  msgstr "Letzte Downloads"
2186
 
2187
- #: ../admin/view/wp-slimstat-reports.php:782
2188
  #, fuzzy
2189
  msgid "Top Outbound Links"
2190
  msgstr "Ausgehender Link"
2191
 
2192
- #: ../admin/view/wp-slimstat-reports.php:794
2193
  msgid "Your Website"
2194
  msgstr "Ihre Webseite"
2195
 
2196
- #: ../admin/view/wp-slimstat-reports.php:801
2197
  msgid ""
2198
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2199
  "this report is not affected by the filters set here above."
@@ -2201,129 +2150,135 @@ msgstr ""
2201
  "Ihr Inhalt auf einen Blick: Posts, Kommentare, Pingbacks, usw. Dieser "
2202
  "Bericht wird nicht durch die oben eingestellten Filter beeinflusst."
2203
 
2204
- #: ../admin/view/wp-slimstat-reports.php:804
2205
  #, fuzzy
2206
  msgid "Top Bounce Pages"
2207
  msgstr "Absprungrate"
2208
 
2209
- #: ../admin/view/wp-slimstat-reports.php:817
2210
  #, fuzzy
2211
  msgid "Top Exit Pages"
2212
  msgstr "Top-Seiten"
2213
 
2214
- #: ../admin/view/wp-slimstat-reports.php:830
2215
  #, fuzzy
2216
  msgid "Top Entry Pages"
2217
  msgstr "Top-Seiten"
2218
 
2219
- #: ../admin/view/wp-slimstat-reports.php:843
2220
- #: ../admin/view/wp-slimstat-reports.php:852
2221
  #, fuzzy
2222
  msgid "Outbound Links"
2223
  msgstr "Ausgehender Link"
2224
 
2225
- #: ../admin/view/wp-slimstat-reports.php:853
2226
  msgid "Unique Outbound"
2227
  msgstr ""
2228
 
2229
- #: ../admin/view/wp-slimstat-reports.php:862
2230
  msgid "World Map"
2231
  msgstr "Weltkarte"
2232
 
2233
- #: ../admin/view/wp-slimstat-reports.php:944
2234
  msgid "Refresh"
2235
  msgstr "Anzeige aktualisieren"
2236
 
2237
- #: ../admin/view/wp-slimstat-reports.php:981
2238
  #, fuzzy, php-format
2239
  msgid "Results %s - %s of %s"
2240
  msgstr "Ergbnisse filtern wo %s ist gleich %s"
2241
 
2242
- #: ../admin/view/wp-slimstat-reports.php:983
2243
  msgid "Refresh in"
2244
  msgstr "Anzeige aktualisieren in"
2245
 
2246
- #: ../admin/view/wp-slimstat-reports.php:1076
2247
  msgid "Category ID"
2248
  msgstr "Kategorie-ID"
2249
 
2250
- #: ../admin/view/wp-slimstat-reports.php:1081
2251
- #: ../admin/view/wp-slimstat-reports.php:1096
2252
  #: ../admin/view/wp-slimstat-reports.php:1102
2253
  #, fuzzy
2254
  msgid "Code"
2255
  msgstr "OS-Code"
2256
 
2257
- #: ../admin/view/wp-slimstat-reports.php:1097
2258
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2259
  msgid "l-"
2260
  msgstr "l-"
2261
 
2262
- #: ../admin/view/wp-slimstat-reports.php:1114
2263
  msgid "URL"
2264
  msgstr ""
2265
 
2266
- #: ../admin/view/wp-slimstat-reports.php:1127
2267
  msgid "Referrer"
2268
  msgstr "Verweis"
2269
 
2270
- #: ../admin/view/wp-slimstat-reports.php:1168
2271
- #: ../admin/view/wp-slimstat-reports.php:1415
2272
- #: ../admin/view/wp-slimstat-reports.php:1471
2273
- #: ../admin/view/wp-slimstat-reports.php:1477
2274
- #: ../admin/view/wp-slimstat-reports.php:1483
2275
- #: ../admin/view/wp-slimstat-reports.php:1489
2276
- #: ../admin/view/wp-slimstat-reports.php:1495
2277
- #: ../admin/view/wp-slimstat-reports.php:1501
2278
- #: ../admin/view/wp-slimstat-reports.php:1507
2279
- #: ../admin/view/wp-slimstat-reports.php:1727
2280
  msgid "Hits"
2281
  msgstr "Zugriffe"
2282
 
2283
- #: ../admin/view/wp-slimstat-reports.php:1342
2284
  #, fuzzy
2285
  msgid "Dataset Size"
2286
  msgstr "Datenbankgr&ouml;&szlig;e"
2287
 
2288
- #: ../admin/view/wp-slimstat-reports.php:1344
2289
  msgid "Total number of records stored in the database."
2290
  msgstr ""
2291
 
2292
- #: ../admin/view/wp-slimstat-reports.php:1346
2293
  msgid "DB Size"
2294
  msgstr "Datenbankgr&ouml;&szlig;e"
2295
 
2296
- #: ../admin/view/wp-slimstat-reports.php:1349
2297
  #, fuzzy
2298
  msgid "Tracking Enabled"
2299
  msgstr "Tracking aktiv"
2300
 
2301
- #: ../admin/view/wp-slimstat-reports.php:1352
2302
  msgid "Javascript Mode"
2303
  msgstr "Tracking per JavaScript"
2304
 
2305
- #: ../admin/view/wp-slimstat-reports.php:1355
2306
  msgid "Tracking Browser Caps"
2307
  msgstr ""
2308
 
2309
- #: ../admin/view/wp-slimstat-reports.php:1358
2310
  msgid "Auto purge"
2311
  msgstr "autom. Datenbank-Reorg."
2312
 
2313
- #: ../admin/view/wp-slimstat-reports.php:1361
2314
  msgid "Oldest pageview"
2315
  msgstr "&Auml;ltester Seitenaufruf"
2316
 
2317
- #: ../admin/view/wp-slimstat-reports.php:1362
2318
  msgid "No visits"
2319
  msgstr "Keine Besuche"
2320
 
2321
- #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
 
2322
  msgid "Date when the MaxMind Geolocation database was last updated."
2323
  msgstr ""
2324
 
2325
- #: ../admin/view/wp-slimstat-reports.php:1377
2326
- #: ../admin/view/wp-slimstat-reports.php:1535
2327
  #, fuzzy
2328
  msgid ""
2329
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
@@ -2333,17 +2288,17 @@ msgstr ""
2333
  "jedesmal einen 'Seitenaufruf' auf, wenn der Tracking-Code ausgef&uuml;hrt "
2334
  "wird."
2335
 
2336
- #: ../admin/view/wp-slimstat-reports.php:1379
2337
  #, fuzzy
2338
  msgid "Days in Range"
2339
  msgstr "Datum und Uhrzeit"
2340
 
2341
- #: ../admin/view/wp-slimstat-reports.php:1382
2342
  #, fuzzy
2343
  msgid "Average Daily Pageviews"
2344
  msgstr "Durchschnittl. Seitenaufrufe"
2345
 
2346
- #: ../admin/view/wp-slimstat-reports.php:1384
2347
  #, fuzzy
2348
  msgid ""
2349
  "How many pages have been visited on average every day during the current "
@@ -2352,11 +2307,11 @@ msgstr ""
2352
  "Wieviele Seiten wurden w&auml;hrend der aktuellen Periode durchschnittlich "
2353
  "besucht?"
2354
 
2355
- #: ../admin/view/wp-slimstat-reports.php:1386
2356
  msgid "From Search Results"
2357
  msgstr "Von Suchergebnissen"
2358
 
2359
- #: ../admin/view/wp-slimstat-reports.php:1388
2360
  msgid ""
2361
  "Visitors who landed on your site after searching for a keyword on Google, "
2362
  "Yahoo, etc."
@@ -2364,7 +2319,7 @@ msgstr ""
2364
  "Besucher, welche nach einer Suche nach einem Suchbegriff auf einer "
2365
  "Suchmaschine auf die Website kamen."
2366
 
2367
- #: ../admin/view/wp-slimstat-reports.php:1392
2368
  msgid ""
2369
  "Used to differentiate between multiple requests to download a file from one "
2370
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2372,11 +2327,11 @@ msgstr ""
2372
  "Benutzt um bei mehreren Downloadanfragen zu unterscheiden, ob sie von einer "
2373
  "oder mehreren verschiedenen Internet-Adressen (IP) stammen"
2374
 
2375
- #: ../admin/view/wp-slimstat-reports.php:1394
2376
  msgid "Last 30 minutes"
2377
  msgstr "Letzte 30 Minuten"
2378
 
2379
- #: ../admin/view/wp-slimstat-reports.php:1433
2380
  msgid ""
2381
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2382
  "multiple times if they perform multiple visits."
@@ -2384,15 +2339,15 @@ msgstr ""
2384
  "Ein Besuch ist eine Session von max. 30 Minuten. Zur&;kkehrende Besucher "
2385
  "werden bei mehrfachen Besuchen auch mehrfach gez&auml;hlt."
2386
 
2387
- #: ../admin/view/wp-slimstat-reports.php:1437
2388
  msgid "It includes only traffic generated by human visitors."
2389
  msgstr ""
2390
 
2391
- #: ../admin/view/wp-slimstat-reports.php:1439
2392
  msgid "Bounce rate"
2393
  msgstr "Absprungrate"
2394
 
2395
- #: ../admin/view/wp-slimstat-reports.php:1441
2396
  msgid ""
2397
  "Percentage of single-page visits, i.e. visits in which the person left your "
2398
  "site from the entrance page."
@@ -2400,78 +2355,78 @@ msgstr ""
2400
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
2401
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
2402
 
2403
- #: ../admin/view/wp-slimstat-reports.php:1443
2404
  msgid "Known visitors"
2405
  msgstr "Bekannte Besucher"
2406
 
2407
- #: ../admin/view/wp-slimstat-reports.php:1445
2408
  msgid "Visitors who had previously left a comment on your blog."
2409
  msgstr ""
2410
  "Besucher, welche fr&uuml;her bereits einen Kommentar hinterlassen haben."
2411
 
2412
- #: ../admin/view/wp-slimstat-reports.php:1447
2413
  msgid "New visitors"
2414
  msgstr "Neue Besucher"
2415
 
2416
- #: ../admin/view/wp-slimstat-reports.php:1449
2417
  msgid "Human users who visited your site only once."
2418
  msgstr "Echte Besucher, welche die Wesite nur einmal besucht haben."
2419
 
2420
- #: ../admin/view/wp-slimstat-reports.php:1451
2421
  msgid "Bots"
2422
  msgstr "Bots"
2423
 
2424
- #: ../admin/view/wp-slimstat-reports.php:1454
2425
  #, fuzzy
2426
  msgid "Pageviews per visit"
2427
  msgstr "Seiten pro Besuch"
2428
 
2429
- #: ../admin/view/wp-slimstat-reports.php:1457
2430
  msgid "Longest visit"
2431
  msgstr "L&auml;ngster Besuch"
2432
 
2433
- #: ../admin/view/wp-slimstat-reports.php:1458
2434
  msgid "hits"
2435
  msgstr "Zugriff"
2436
 
2437
- #: ../admin/view/wp-slimstat-reports.php:1469
2438
  msgid "0 - 30 seconds"
2439
  msgstr "0-30 Sekunden"
2440
 
2441
- #: ../admin/view/wp-slimstat-reports.php:1475
2442
  msgid "31 - 60 seconds"
2443
  msgstr "31-60 Sekunden"
2444
 
2445
- #: ../admin/view/wp-slimstat-reports.php:1481
2446
  msgid "1 - 3 minutes"
2447
  msgstr "1-3 Minuten"
2448
 
2449
- #: ../admin/view/wp-slimstat-reports.php:1487
2450
  msgid "3 - 5 minutes"
2451
  msgstr "3-5 Minuten"
2452
 
2453
- #: ../admin/view/wp-slimstat-reports.php:1493
2454
  msgid "5 - 7 minutes"
2455
  msgstr "5-7 Minuten"
2456
 
2457
- #: ../admin/view/wp-slimstat-reports.php:1499
2458
  msgid "7 - 10 minutes"
2459
  msgstr "7-10 Minuten"
2460
 
2461
- #: ../admin/view/wp-slimstat-reports.php:1505
2462
  msgid "More than 10 minutes"
2463
  msgstr "Mehr als 10 Minuten"
2464
 
2465
- #: ../admin/view/wp-slimstat-reports.php:1517
2466
  #, fuzzy
2467
  msgid "Average visit duration"
2468
  msgstr "Besuchsdauer"
2469
 
2470
- #: ../admin/view/wp-slimstat-reports.php:1537
2471
  msgid "Unique Referrers"
2472
  msgstr "Eindeutige Herkunft"
2473
 
2474
- #: ../admin/view/wp-slimstat-reports.php:1539
2475
  msgid ""
2476
  "A referrer (or referring site) is the site that a visitor previously visited "
2477
  "before following a link to your site."
@@ -2479,11 +2434,11 @@ msgstr ""
2479
  "Eine Herkunft (verweisende Seite) ist die Webseite welche ein Besucher vor "
2480
  "dem Besuch der eigenen Website besucht hat."
2481
 
2482
- #: ../admin/view/wp-slimstat-reports.php:1541
2483
  msgid "Direct Pageviews"
2484
  msgstr "Direkte Seitenaufrufe"
2485
 
2486
- #: ../admin/view/wp-slimstat-reports.php:1543
2487
  msgid ""
2488
  "Visitors who visited the site by typing the URL directly into their browser. "
2489
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2494,22 +2449,22 @@ msgstr ""
2494
  "auch auf Besucher beziehen, welche Lesezeichen/Favoriten verwendet haben "
2495
  "oder Links in E-Mails bzw. Dokumenten gefolgt sind."
2496
 
2497
- #: ../admin/view/wp-slimstat-reports.php:1545
2498
  msgid "From a search result"
2499
  msgstr "Von einem Suchresultat"
2500
 
2501
- #: ../admin/view/wp-slimstat-reports.php:1547
2502
  msgid ""
2503
  "Visitors who came to your site via searches on Google or some other search "
2504
  "engine."
2505
  msgstr ""
2506
  "Besucher welche über eine Suchmaschine auf die eigene Website gekommen sind."
2507
 
2508
- #: ../admin/view/wp-slimstat-reports.php:1549
2509
  msgid "Unique Landing Pages"
2510
  msgstr "Eindeutige Einstiegsseiten"
2511
 
2512
- #: ../admin/view/wp-slimstat-reports.php:1551
2513
  msgid ""
2514
  "The first page that a user views during a session. This is also known as the "
2515
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2519,22 +2474,22 @@ msgstr ""
2519
  "Die erste Seite welche ein Benutzer w&auml;hrend einer Sitzung besucht, die "
2520
  "s.g. Einstiegs- oder Landeseite."
2521
 
2522
- #: ../admin/view/wp-slimstat-reports.php:1553
2523
  msgid "Bounce Pages"
2524
  msgstr "Absprungrate"
2525
 
2526
- #: ../admin/view/wp-slimstat-reports.php:1555
2527
  #, fuzzy
2528
  msgid "Number of single page visits to your site over the selected period."
2529
  msgstr ""
2530
  "Anzahl der Besucher einer einzelnen Seite über die gew&auml;hlte Periode."
2531
 
2532
- #: ../admin/view/wp-slimstat-reports.php:1557
2533
  #, fuzzy
2534
  msgid "New Visitors Rate"
2535
  msgstr "Neue Besucher"
2536
 
2537
- #: ../admin/view/wp-slimstat-reports.php:1559
2538
  #, fuzzy
2539
  msgid ""
2540
  "Percentage of single page visits, i.e. visits in which the person left your "
@@ -2543,11 +2498,11 @@ msgstr ""
2543
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
2544
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
2545
 
2546
- #: ../admin/view/wp-slimstat-reports.php:1561
2547
  msgid "Currently from search engines"
2548
  msgstr "Aktuell von Suchmaschinen"
2549
 
2550
- #: ../admin/view/wp-slimstat-reports.php:1563
2551
  msgid ""
2552
  "Visitors who visited the site in the last 5 minutes coming from a search "
2553
  "engine."
@@ -2555,1319 +2510,1333 @@ msgstr ""
2555
  "Besucher welche innerhalb der letzten 5 Minuten von einer Suchmaschine "
2556
  "gekommen sind."
2557
 
2558
- #: ../admin/view/wp-slimstat-reports.php:1633
2559
  msgid "Number of pages in your site included in Google's index."
2560
  msgstr ""
2561
 
2562
- #: ../admin/view/wp-slimstat-reports.php:1634
2563
  msgid "Google Index"
2564
  msgstr "Google-Index"
2565
 
2566
- #: ../admin/view/wp-slimstat-reports.php:1635
2567
  msgid "Number of pages, according to Google, that link back to your site."
2568
  msgstr ""
2569
 
2570
- #: ../admin/view/wp-slimstat-reports.php:1636
2571
  msgid "Google Backlinks"
2572
  msgstr ""
2573
 
2574
- #: ../admin/view/wp-slimstat-reports.php:1637
2575
  msgid ""
2576
  "How many times the Facebook Like button has been approximately clicked on "
2577
  "your site."
2578
  msgstr ""
2579
 
2580
- #: ../admin/view/wp-slimstat-reports.php:1638
2581
  msgid "Facebook Likes"
2582
  msgstr "Facebook Likes"
2583
 
2584
- #: ../admin/view/wp-slimstat-reports.php:1639
2585
  msgid ""
2586
  "How many times your site has been shared by someone on the social network."
2587
  msgstr ""
2588
 
2589
- #: ../admin/view/wp-slimstat-reports.php:1640
2590
  msgid "Facebook Shares"
2591
  msgstr ""
2592
 
2593
- #: ../admin/view/wp-slimstat-reports.php:1641
2594
  msgid "How many times links to your website have been clicked on Facebook."
2595
  msgstr ""
2596
 
2597
- #: ../admin/view/wp-slimstat-reports.php:1642
2598
  msgid "Facebook Clicks"
2599
  msgstr "Clicks bei Facebook"
2600
 
2601
- #: ../admin/view/wp-slimstat-reports.php:1643
2602
  msgid ""
2603
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2604
  "traffic data."
2605
  msgstr ""
2606
 
2607
- #: ../admin/view/wp-slimstat-reports.php:1644
2608
  msgid "Alexa World Rank"
2609
  msgstr ""
2610
 
2611
- #: ../admin/view/wp-slimstat-reports.php:1645
2612
  msgid "Alexa Country Rank"
2613
  msgstr ""
2614
 
2615
- #: ../admin/view/wp-slimstat-reports.php:1646
2616
  msgid "Alexa Popularity"
2617
  msgstr ""
2618
 
2619
- #: ../admin/view/wp-slimstat-reports.php:1657
2620
  #, fuzzy
2621
  msgid "Content Items"
2622
  msgstr "Inhalt"
2623
 
2624
- #: ../admin/view/wp-slimstat-reports.php:1659
2625
  msgid ""
2626
  "This value includes not only posts, but also custom post types, regardless "
2627
  "of their status"
2628
  msgstr ""
2629
 
2630
- #: ../admin/view/wp-slimstat-reports.php:1661
2631
  #, fuzzy
2632
  msgid "Posts"
2633
  msgstr "Top-Artikel"
2634
 
2635
- #: ../admin/view/wp-slimstat-reports.php:1664
2636
  #, fuzzy
2637
  msgid "Pages"
2638
  msgstr "Top-Seiten"
2639
 
2640
- #: ../admin/view/wp-slimstat-reports.php:1667
2641
  msgid "Attachments"
2642
  msgstr ""
2643
 
2644
- #: ../admin/view/wp-slimstat-reports.php:1670
2645
  #, fuzzy
2646
  msgid "Revisions"
2647
  msgstr "Berechtigungen"
2648
 
2649
- #: ../admin/view/wp-slimstat-reports.php:1673
2650
  #, fuzzy
2651
  msgid "Comments"
2652
  msgstr "Gesamte Kommentare"
2653
 
2654
- #: ../admin/view/wp-slimstat-reports.php:1676
2655
  #, fuzzy
2656
  msgid "Avg Comments per Post"
2657
  msgstr "Spalte bei Beitr&auml;gen hinzuf&uuml;gen"
2658
 
2659
- #: ../admin/view/wp-slimstat-reports.php:1679
2660
  msgid "Avg Server Latency"
2661
  msgstr ""
2662
 
2663
- #: ../admin/view/wp-slimstat-reports.php:1681
2664
  msgid ""
2665
  "Latency is the amount of time it takes for the host server to receive and "
2666
  "process a request for a page object. The amount of latency depends largely "
2667
  "on how far away the user is from the server."
2668
  msgstr ""
2669
 
2670
- #: ../admin/view/wp-slimstat-reports.php:1724
2671
  #, fuzzy
2672
  msgid "Coordinates"
2673
  msgstr "Tracking aktiv"
2674
 
2675
- #: ../admin/view/wp-slimstat-reports.php:1724
2676
  #, fuzzy
2677
  msgid "Date"
2678
  msgstr "Datum/Zeit"
2679
 
2680
- #: ../admin/view/wp-slimstat-reports.php:1761
2681
- msgid "Error contacting the GetSocial endpoint."
2682
- msgstr ""
2683
-
2684
- #: ../admin/view/wp-slimstat-reports.php:1769
2685
- msgid "Error decoding the GetSocial payload."
2686
- msgstr ""
2687
-
2688
- #: ../admin/view/wp-slimstat-reports.php:1801
2689
- msgid ""
2690
- "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2691
- ">social media metrics and identify your top performing posts.<br/> <a "
2692
- "class='button-ajax' title='Enable this functionality' href='"
2693
- msgstr ""
2694
-
2695
  # Unknown
2696
- #: ../admin/view/wp-slimstat-reports.php:1811
2697
  msgid "c-xx"
2698
  msgstr "Unbekannt"
2699
 
2700
  # Afghanistan
2701
- #: ../admin/view/wp-slimstat-reports.php:1811
2702
  msgid "c-af"
2703
  msgstr "Afghanistan"
2704
 
2705
  # Åland Islands
2706
- #: ../admin/view/wp-slimstat-reports.php:1811
2707
  msgid "c-ax"
2708
  msgstr "&Aring;landinseln"
2709
 
2710
  # Albania
2711
- #: ../admin/view/wp-slimstat-reports.php:1811
2712
  msgid "c-al"
2713
  msgstr "Albanien"
2714
 
2715
  # Algeria
2716
- #: ../admin/view/wp-slimstat-reports.php:1811
2717
  msgid "c-dz"
2718
  msgstr "Algerien"
2719
 
2720
  # Andorra
2721
- #: ../admin/view/wp-slimstat-reports.php:1811
2722
  msgid "c-ad"
2723
  msgstr "Andorra"
2724
 
2725
  # Angola
2726
- #: ../admin/view/wp-slimstat-reports.php:1811
2727
  msgid "c-ao"
2728
  msgstr "Angola"
2729
 
2730
  # Anguilla
2731
- #: ../admin/view/wp-slimstat-reports.php:1811
2732
  msgid "c-ai"
2733
  msgstr "Anguilla"
2734
 
2735
  # Antigua and Barbuda
2736
- #: ../admin/view/wp-slimstat-reports.php:1811
2737
  msgid "c-ag"
2738
  msgstr "Antigua und Barbuda"
2739
 
2740
  # Argentina
2741
- #: ../admin/view/wp-slimstat-reports.php:1811
2742
  msgid "c-ar"
2743
  msgstr "Argentinien"
2744
 
2745
  # Armenia
2746
- #: ../admin/view/wp-slimstat-reports.php:1811
2747
  msgid "c-am"
2748
  msgstr "Armenien"
2749
 
2750
  # Aruba
2751
- #: ../admin/view/wp-slimstat-reports.php:1811
2752
  msgid "c-aw"
2753
  msgstr "Aruba"
2754
 
2755
  # Australia
2756
- #: ../admin/view/wp-slimstat-reports.php:1811
2757
  msgid "c-au"
2758
  msgstr "Australien"
2759
 
2760
  # Austria
2761
- #: ../admin/view/wp-slimstat-reports.php:1811
2762
  msgid "c-at"
2763
  msgstr "&Ouml;sterreich"
2764
 
2765
  # Azerbaijan
2766
- #: ../admin/view/wp-slimstat-reports.php:1811
2767
  msgid "c-az"
2768
  msgstr "Aserbaidschan"
2769
 
2770
  # Bahamas
2771
- #: ../admin/view/wp-slimstat-reports.php:1811
2772
  msgid "c-bs"
2773
  msgstr "Bahamas"
2774
 
2775
  # Bahrain
2776
- #: ../admin/view/wp-slimstat-reports.php:1811
2777
  msgid "c-bh"
2778
  msgstr "Bahrain"
2779
 
2780
  # Bangladesh
2781
- #: ../admin/view/wp-slimstat-reports.php:1811
2782
  msgid "c-bd"
2783
  msgstr "Bangladesch"
2784
 
2785
  # Barbados
2786
- #: ../admin/view/wp-slimstat-reports.php:1811
2787
  msgid "c-bb"
2788
  msgstr "Barbados"
2789
 
2790
  # Belarus
2791
- #: ../admin/view/wp-slimstat-reports.php:1811
2792
  msgid "c-by"
2793
  msgstr "Wei&szlig;russland"
2794
 
2795
  # Belgium
2796
- #: ../admin/view/wp-slimstat-reports.php:1811
2797
  msgid "c-be"
2798
  msgstr "Belgien"
2799
 
2800
  # Belize
2801
- #: ../admin/view/wp-slimstat-reports.php:1811
2802
  msgid "c-bz"
2803
  msgstr "Belize"
2804
 
2805
  # Benin
2806
- #: ../admin/view/wp-slimstat-reports.php:1811
2807
  msgid "c-bj"
2808
  msgstr "Benin"
2809
 
2810
  # Bermuda
2811
- #: ../admin/view/wp-slimstat-reports.php:1811
2812
  msgid "c-bm"
2813
  msgstr "Bermuda"
2814
 
2815
  # Bhutan
2816
- #: ../admin/view/wp-slimstat-reports.php:1811
2817
  msgid "c-bt"
2818
  msgstr "Bhutan"
2819
 
2820
  # Bolivia
2821
- #: ../admin/view/wp-slimstat-reports.php:1811
2822
  msgid "c-bo"
2823
  msgstr "Bolivien"
2824
 
2825
  # Bosnia and Herzegovina
2826
- #: ../admin/view/wp-slimstat-reports.php:1811
2827
  msgid "c-ba"
2828
  msgstr "Bosnien Herzegowina"
2829
 
2830
  # Botswana
2831
- #: ../admin/view/wp-slimstat-reports.php:1811
2832
  msgid "c-bw"
2833
  msgstr "Botswana"
2834
 
2835
  # Brazil
2836
- #: ../admin/view/wp-slimstat-reports.php:1811
2837
  msgid "c-br"
2838
  msgstr "Brasilien"
2839
 
2840
  # Brunei Darussalam
2841
- #: ../admin/view/wp-slimstat-reports.php:1811
2842
  msgid "c-bn"
2843
  msgstr "Brunei Darussalam"
2844
 
2845
  # Bulgaria
2846
- #: ../admin/view/wp-slimstat-reports.php:1811
2847
  msgid "c-bg"
2848
  msgstr "Bulgarien"
2849
 
2850
  # Burkina Faso
2851
- #: ../admin/view/wp-slimstat-reports.php:1811
2852
  msgid "c-bf"
2853
  msgstr "Burkina Faso"
2854
 
2855
  # Burundi
2856
- #: ../admin/view/wp-slimstat-reports.php:1811
2857
  msgid "c-bi"
2858
  msgstr "Burundi"
2859
 
2860
  # Cambodia
2861
- #: ../admin/view/wp-slimstat-reports.php:1811
2862
  msgid "c-kh"
2863
  msgstr "Kambodscha"
2864
 
2865
  # Cameroon
2866
- #: ../admin/view/wp-slimstat-reports.php:1811
2867
  msgid "c-cm"
2868
  msgstr "Kamerun"
2869
 
2870
  # Canada
2871
- #: ../admin/view/wp-slimstat-reports.php:1811
2872
  msgid "c-ca"
2873
  msgstr "Kanada"
2874
 
2875
  # Cape Verde
2876
- #: ../admin/view/wp-slimstat-reports.php:1811
2877
  msgid "c-cv"
2878
  msgstr "Kap Verde"
2879
 
2880
  # Cayman Islands
2881
- #: ../admin/view/wp-slimstat-reports.php:1811
2882
  msgid "c-ky"
2883
  msgstr "Kaimaninseln"
2884
 
2885
  # Central African Republic
2886
- #: ../admin/view/wp-slimstat-reports.php:1811
2887
  msgid "c-cf"
2888
  msgstr "Zentralafrika"
2889
 
2890
  # Chad
2891
- #: ../admin/view/wp-slimstat-reports.php:1811
2892
  msgid "c-td"
2893
  msgstr "Tschad"
2894
 
2895
  # Chile
2896
- #: ../admin/view/wp-slimstat-reports.php:1811
2897
  msgid "c-cl"
2898
  msgstr "Chile"
2899
 
2900
  # China
2901
- #: ../admin/view/wp-slimstat-reports.php:1811
2902
  msgid "c-cn"
2903
  msgstr "China"
2904
 
2905
  # Colombia
2906
- #: ../admin/view/wp-slimstat-reports.php:1811
2907
  msgid "c-co"
2908
  msgstr "Kolumbien"
2909
 
2910
  # Comoros
2911
- #: ../admin/view/wp-slimstat-reports.php:1811
2912
  msgid "c-km"
2913
  msgstr "Komoren"
2914
 
2915
  # Congo
2916
- #: ../admin/view/wp-slimstat-reports.php:1811
2917
  msgid "c-cg"
2918
  msgstr "Republik Kongo"
2919
 
2920
  # The Democratic Republic of the Congo
2921
- #: ../admin/view/wp-slimstat-reports.php:1811
2922
  msgid "c-cd"
2923
  msgstr "Demokratische Republik Kongo"
2924
 
2925
  # Costa Rica
2926
- #: ../admin/view/wp-slimstat-reports.php:1811
2927
  msgid "c-cr"
2928
  msgstr "Costa Rica"
2929
 
2930
  # Côte d'Ivoire
2931
- #: ../admin/view/wp-slimstat-reports.php:1811
2932
  msgid "c-ci"
2933
  msgstr "Elfenbeink&uuml;ste"
2934
 
2935
  # Croatia
2936
- #: ../admin/view/wp-slimstat-reports.php:1811
2937
  msgid "c-hr"
2938
  msgstr "Kroatien"
2939
 
2940
  # Cuba
2941
- #: ../admin/view/wp-slimstat-reports.php:1811
2942
  msgid "c-cu"
2943
  msgstr "Kuba"
2944
 
2945
  # Cyprus
2946
- #: ../admin/view/wp-slimstat-reports.php:1811
2947
  msgid "c-cy"
2948
  msgstr "Zypern"
2949
 
2950
  # Czech Republic
2951
- #: ../admin/view/wp-slimstat-reports.php:1811
2952
  msgid "c-cz"
2953
  msgstr "Tschechische Republik"
2954
 
2955
  # Denmark
2956
- #: ../admin/view/wp-slimstat-reports.php:1811
2957
  msgid "c-dk"
2958
  msgstr "D&auml;nemark"
2959
 
2960
  # Djibouti
2961
- #: ../admin/view/wp-slimstat-reports.php:1811
2962
  msgid "c-dj"
2963
  msgstr "Dschibuti"
2964
 
2965
  # Dominica
2966
- #: ../admin/view/wp-slimstat-reports.php:1811
2967
  msgid "c-dm"
2968
  msgstr "Dominica"
2969
 
2970
  # Dominican Republic
2971
- #: ../admin/view/wp-slimstat-reports.php:1811
2972
  msgid "c-do"
2973
  msgstr "Dominikanische Republik"
2974
 
2975
  # Ecuador
2976
- #: ../admin/view/wp-slimstat-reports.php:1811
2977
  msgid "c-ec"
2978
  msgstr "Ecuador"
2979
 
2980
  # Egypt
2981
- #: ../admin/view/wp-slimstat-reports.php:1811
2982
  msgid "c-eg"
2983
  msgstr "&Auml;gypten"
2984
 
2985
  # El Salvador
2986
- #: ../admin/view/wp-slimstat-reports.php:1811
2987
  msgid "c-sv"
2988
  msgstr "El Salvador"
2989
 
2990
  # Equatorial Guinea
2991
- #: ../admin/view/wp-slimstat-reports.php:1811
2992
  msgid "c-gq"
2993
  msgstr "Äquatorialguinea"
2994
 
2995
  # Eritrea
2996
- #: ../admin/view/wp-slimstat-reports.php:1811
2997
  msgid "c-er"
2998
  msgstr "Eritrea"
2999
 
3000
  # Estonia
3001
- #: ../admin/view/wp-slimstat-reports.php:1811
3002
  msgid "c-ee"
3003
  msgstr "Estland"
3004
 
3005
  # Ethiopia
3006
- #: ../admin/view/wp-slimstat-reports.php:1811
3007
  msgid "c-et"
3008
  msgstr "&Auml;thiopien"
3009
 
3010
  # Faroe Islands
3011
- #: ../admin/view/wp-slimstat-reports.php:1811
3012
  msgid "c-fo"
3013
  msgstr "F&auml;r&ouml;er Inseln"
3014
 
3015
  # Falkland Islands (Malvinas)
3016
- #: ../admin/view/wp-slimstat-reports.php:1811
3017
  msgid "c-fk"
3018
  msgstr "Falklandinseln (Malwinen)"
3019
 
3020
  # Fiji
3021
- #: ../admin/view/wp-slimstat-reports.php:1811
3022
  msgid "c-fj"
3023
  msgstr "Republik Fidschi"
3024
 
3025
  # Finland
3026
- #: ../admin/view/wp-slimstat-reports.php:1811
3027
  msgid "c-fi"
3028
  msgstr "Finnland"
3029
 
3030
  # France
3031
- #: ../admin/view/wp-slimstat-reports.php:1811
3032
  msgid "c-fr"
3033
  msgstr "Franz&ouml;sische Republik"
3034
 
3035
  # French Guiana
3036
- #: ../admin/view/wp-slimstat-reports.php:1811
3037
  msgid "c-gf"
3038
  msgstr "Franz&ouml;sisch-Guayana"
3039
 
3040
  # Gabon
3041
- #: ../admin/view/wp-slimstat-reports.php:1811
3042
  msgid "c-ga"
3043
  msgstr "Gabun"
3044
 
3045
  # Gambia
3046
- #: ../admin/view/wp-slimstat-reports.php:1811
3047
  msgid "c-gm"
3048
  msgstr "Gambia"
3049
 
3050
  # Georgia
3051
- #: ../admin/view/wp-slimstat-reports.php:1811
3052
  msgid "c-ge"
3053
  msgstr "Georgien"
3054
 
3055
  # Germany
3056
- #: ../admin/view/wp-slimstat-reports.php:1811
3057
  msgid "c-de"
3058
  msgstr "Bundesrepublik Deutschland"
3059
 
3060
  # Ghana
3061
- #: ../admin/view/wp-slimstat-reports.php:1811
3062
  msgid "c-gh"
3063
  msgstr "Ghana"
3064
 
3065
  # Greece
3066
- #: ../admin/view/wp-slimstat-reports.php:1811
3067
  msgid "c-gr"
3068
  msgstr "Griechenland"
3069
 
3070
  # Greenland
3071
- #: ../admin/view/wp-slimstat-reports.php:1811
3072
  msgid "c-gl"
3073
  msgstr "Gr&ouml;nland"
3074
 
3075
  # Grenada
3076
- #: ../admin/view/wp-slimstat-reports.php:1811
3077
  msgid "c-gd"
3078
  msgstr "Grenada"
3079
 
3080
  # Guadeloupe
3081
- #: ../admin/view/wp-slimstat-reports.php:1811
3082
  msgid "c-gp"
3083
  msgstr "Guadeloupe"
3084
 
3085
  # Guatemala
3086
- #: ../admin/view/wp-slimstat-reports.php:1811
3087
  msgid "c-gt"
3088
  msgstr "Guatemala"
3089
 
3090
  # Guinea
3091
- #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-gn"
3093
  msgstr "Guinea"
3094
 
3095
  # Guinea-Bissau
3096
- #: ../admin/view/wp-slimstat-reports.php:1811
3097
  msgid "c-gw"
3098
  msgstr "Guinea-Bissau"
3099
 
3100
  # Guyana
3101
- #: ../admin/view/wp-slimstat-reports.php:1811
3102
  msgid "c-gy"
3103
  msgstr "Guyana"
3104
 
3105
  # Haiti
3106
- #: ../admin/view/wp-slimstat-reports.php:1811
3107
  msgid "c-ht"
3108
  msgstr "Haiti"
3109
 
3110
  # Honduras
3111
- #: ../admin/view/wp-slimstat-reports.php:1811
3112
  msgid "c-hn"
3113
  msgstr "Honduras"
3114
 
3115
  # Hong Kong
3116
- #: ../admin/view/wp-slimstat-reports.php:1811
3117
  msgid "c-hk"
3118
  msgstr "Hong Kong"
3119
 
3120
  # Hungary
3121
- #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-hu"
3123
  msgstr "Ungarn"
3124
 
3125
  # Iceland
3126
- #: ../admin/view/wp-slimstat-reports.php:1811
3127
  msgid "c-is"
3128
  msgstr "Island"
3129
 
3130
  # India
3131
- #: ../admin/view/wp-slimstat-reports.php:1811
3132
  msgid "c-in"
3133
  msgstr "Indien"
3134
 
3135
  # Indonesia
3136
- #: ../admin/view/wp-slimstat-reports.php:1811
3137
  msgid "c-id"
3138
  msgstr "Indonesien"
3139
 
3140
  # Islamic Republic of Iran
3141
- #: ../admin/view/wp-slimstat-reports.php:1811
3142
  msgid "c-ir"
3143
  msgstr "Islamische Republik Iran"
3144
 
3145
  # Iraq
3146
- #: ../admin/view/wp-slimstat-reports.php:1811
3147
  msgid "c-iq"
3148
  msgstr "Irak"
3149
 
3150
  # Ireland
3151
- #: ../admin/view/wp-slimstat-reports.php:1811
3152
  msgid "c-ie"
3153
  msgstr "Irland"
3154
 
3155
  # Israel
3156
- #: ../admin/view/wp-slimstat-reports.php:1811
3157
  msgid "c-il"
3158
  msgstr "Israel"
3159
 
3160
  # Italy
3161
- #: ../admin/view/wp-slimstat-reports.php:1811
3162
  msgid "c-it"
3163
  msgstr "Italien"
3164
 
3165
  # Jamaica
3166
- #: ../admin/view/wp-slimstat-reports.php:1811
3167
  msgid "c-jm"
3168
  msgstr "Jamaika"
3169
 
3170
  # Japan
3171
- #: ../admin/view/wp-slimstat-reports.php:1811
3172
  msgid "c-jp"
3173
  msgstr "Japan"
3174
 
3175
  # Jordan
3176
- #: ../admin/view/wp-slimstat-reports.php:1811
3177
  msgid "c-jo"
3178
  msgstr "Jordan"
3179
 
3180
  # Kazakhstan
3181
- #: ../admin/view/wp-slimstat-reports.php:1811
3182
  msgid "c-kz"
3183
  msgstr "Kasachstan"
3184
 
3185
  # Kenya
3186
- #: ../admin/view/wp-slimstat-reports.php:1811
3187
  msgid "c-ke"
3188
  msgstr "Kenia"
3189
 
3190
  # Nauru
3191
- #: ../admin/view/wp-slimstat-reports.php:1811
3192
  msgid "c-nr"
3193
  msgstr "Nauru"
3194
 
3195
  # Democratic People's Republic of Korea
3196
- #: ../admin/view/wp-slimstat-reports.php:1811
3197
  msgid "c-kp"
3198
  msgstr "Demokratische Volksrepublik Korea"
3199
 
3200
  # Republic of Korea
3201
- #: ../admin/view/wp-slimstat-reports.php:1811
3202
  msgid "c-kr"
3203
  msgstr "Republik Korea"
3204
 
3205
- #: ../admin/view/wp-slimstat-reports.php:1811
3206
  msgid "c-kv"
3207
  msgstr "Komi"
3208
 
3209
  # Kuwait
3210
- #: ../admin/view/wp-slimstat-reports.php:1811
3211
  msgid "c-kw"
3212
  msgstr "Kuwait"
3213
 
3214
  # Kyrgyzstan
3215
- #: ../admin/view/wp-slimstat-reports.php:1811
3216
  msgid "c-kg"
3217
  msgstr "Kirgistan"
3218
 
3219
  # Lao People's Democratic Republic
3220
- #: ../admin/view/wp-slimstat-reports.php:1811
3221
  msgid "c-la"
3222
  msgstr "Demokratische Volksrepublik Laos"
3223
 
3224
  # Latvia
3225
- #: ../admin/view/wp-slimstat-reports.php:1811
3226
  msgid "c-lv"
3227
  msgstr "Lettland"
3228
 
3229
  # Lebanon
3230
- #: ../admin/view/wp-slimstat-reports.php:1811
3231
  msgid "c-lb"
3232
  msgstr "Libanon"
3233
 
3234
  # Lesotho
3235
- #: ../admin/view/wp-slimstat-reports.php:1811
3236
  msgid "c-ls"
3237
  msgstr "Lesotho"
3238
 
3239
  # Liberia
3240
- #: ../admin/view/wp-slimstat-reports.php:1811
3241
  msgid "c-lr"
3242
  msgstr "Liberia"
3243
 
3244
  # Libyan Arab Jamahiriya
3245
- #: ../admin/view/wp-slimstat-reports.php:1811
3246
  msgid "c-ly"
3247
  msgstr "Libyen"
3248
 
3249
  # Liechtenstein
3250
- #: ../admin/view/wp-slimstat-reports.php:1811
3251
  msgid "c-li"
3252
  msgstr "Liechtenstein"
3253
 
3254
  # Lithuania
3255
- #: ../admin/view/wp-slimstat-reports.php:1811
3256
  msgid "c-lt"
3257
  msgstr "Litauen"
3258
 
3259
  # Luxembourg
3260
- #: ../admin/view/wp-slimstat-reports.php:1811
3261
  msgid "c-lu"
3262
  msgstr "Luxemburg"
3263
 
3264
  # The Former Yugoslav Republic of Macedonia
3265
- #: ../admin/view/wp-slimstat-reports.php:1811
3266
  msgid "c-mk"
3267
  msgstr "Ehemalige Jugoslawische Republik Mazedonien"
3268
 
3269
  # Madagascar
3270
- #: ../admin/view/wp-slimstat-reports.php:1811
3271
  msgid "c-mg"
3272
  msgstr "Madagaskar"
3273
 
3274
  # Malawi
3275
- #: ../admin/view/wp-slimstat-reports.php:1811
3276
  msgid "c-mw"
3277
  msgstr "Malawi"
3278
 
3279
  # Malaysia
3280
- #: ../admin/view/wp-slimstat-reports.php:1811
3281
  msgid "c-my"
3282
  msgstr "Malaysien"
3283
 
3284
  # Mali
3285
- #: ../admin/view/wp-slimstat-reports.php:1811
3286
  msgid "c-ml"
3287
  msgstr "Mali"
3288
 
3289
  # Malta
3290
- #: ../admin/view/wp-slimstat-reports.php:1811
3291
  msgid "c-mt"
3292
  msgstr "Malta"
3293
 
3294
  # Martinique
3295
- #: ../admin/view/wp-slimstat-reports.php:1811
3296
  msgid "c-mq"
3297
  msgstr "Martinique"
3298
 
3299
  # Mauritania
3300
- #: ../admin/view/wp-slimstat-reports.php:1811
3301
  msgid "c-mr"
3302
  msgstr "Mauritanien"
3303
 
3304
  # Mauritius
3305
- #: ../admin/view/wp-slimstat-reports.php:1811
3306
  msgid "c-mu"
3307
  msgstr "Mauritius"
3308
 
3309
  # Mexico
3310
- #: ../admin/view/wp-slimstat-reports.php:1811
3311
  msgid "c-mx"
3312
  msgstr "Mexiko"
3313
 
3314
  # Moldova
3315
- #: ../admin/view/wp-slimstat-reports.php:1811
3316
  msgid "c-md"
3317
  msgstr "Moldawien"
3318
 
3319
  # Mongolia
3320
- #: ../admin/view/wp-slimstat-reports.php:1811
3321
  msgid "c-mn"
3322
  msgstr "Mongolei"
3323
 
3324
  # Montenegro
3325
- #: ../admin/view/wp-slimstat-reports.php:1811
3326
  msgid "c-me"
3327
  msgstr "Montenegro"
3328
 
3329
  # Montserrat
3330
- #: ../admin/view/wp-slimstat-reports.php:1811
3331
  msgid "c-ms"
3332
  msgstr "Montserrat"
3333
 
3334
  # Morocco
3335
- #: ../admin/view/wp-slimstat-reports.php:1811
3336
  msgid "c-ma"
3337
  msgstr "Marokko"
3338
 
3339
  # Mozambique
3340
- #: ../admin/view/wp-slimstat-reports.php:1811
3341
  msgid "c-mz"
3342
  msgstr "Mosambik"
3343
 
3344
  # Myanmar
3345
- #: ../admin/view/wp-slimstat-reports.php:1811
3346
  msgid "c-mm"
3347
  msgstr "Myanmar"
3348
 
3349
  # Namibia
3350
- #: ../admin/view/wp-slimstat-reports.php:1811
3351
  msgid "c-na"
3352
  msgstr "Namibia"
3353
 
3354
  # Nepal
3355
- #: ../admin/view/wp-slimstat-reports.php:1811
3356
  msgid "c-np"
3357
  msgstr "Nepal"
3358
 
3359
  # Netherlands
3360
- #: ../admin/view/wp-slimstat-reports.php:1811
3361
  msgid "c-nl"
3362
  msgstr "Niederlande"
3363
 
3364
  # New Caledonia
3365
- #: ../admin/view/wp-slimstat-reports.php:1811
3366
  msgid "c-nc"
3367
  msgstr "Neukaledonien"
3368
 
3369
  # New Zealand
3370
- #: ../admin/view/wp-slimstat-reports.php:1811
3371
  msgid "c-nz"
3372
  msgstr "Neuseeland"
3373
 
3374
  # Nicaragua
3375
- #: ../admin/view/wp-slimstat-reports.php:1811
3376
  msgid "c-ni"
3377
  msgstr "Nicaragua"
3378
 
3379
  # Niger
3380
- #: ../admin/view/wp-slimstat-reports.php:1811
3381
  msgid "c-ne"
3382
  msgstr "Niger"
3383
 
3384
  # Nigeria
3385
- #: ../admin/view/wp-slimstat-reports.php:1811
3386
  msgid "c-ng"
3387
  msgstr "Nigeria"
3388
 
3389
  # Norway
3390
- #: ../admin/view/wp-slimstat-reports.php:1811
3391
  msgid "c-no"
3392
  msgstr "Norwegen"
3393
 
3394
  # Oman
3395
- #: ../admin/view/wp-slimstat-reports.php:1811
3396
  msgid "c-om"
3397
  msgstr "Oman"
3398
 
3399
  # Pakistan
3400
- #: ../admin/view/wp-slimstat-reports.php:1811
3401
  msgid "c-pk"
3402
  msgstr "Pakistan"
3403
 
3404
  # Palau
3405
- #: ../admin/view/wp-slimstat-reports.php:1811
3406
  msgid "c-pw"
3407
  msgstr "Palau"
3408
 
3409
  # Occupied Palestinian Territory
3410
- #: ../admin/view/wp-slimstat-reports.php:1811
3411
  msgid "c-ps"
3412
  msgstr "Palästinensische Autonomiegebiete"
3413
 
3414
  # Panama
3415
- #: ../admin/view/wp-slimstat-reports.php:1811
3416
  msgid "c-pa"
3417
  msgstr "Panama"
3418
 
3419
  # Papua New Guinea
3420
- #: ../admin/view/wp-slimstat-reports.php:1811
3421
  msgid "c-pg"
3422
  msgstr "Papua Neu Guinea"
3423
 
3424
  # Paraguay
3425
- #: ../admin/view/wp-slimstat-reports.php:1811
3426
  msgid "c-py"
3427
  msgstr "Paraguay"
3428
 
3429
  # Peru
3430
- #: ../admin/view/wp-slimstat-reports.php:1811
3431
  msgid "c-pe"
3432
  msgstr "Peru"
3433
 
3434
  # Philippines
3435
- #: ../admin/view/wp-slimstat-reports.php:1811
3436
  msgid "c-ph"
3437
  msgstr "Philippinen"
3438
 
3439
  # Poland
3440
- #: ../admin/view/wp-slimstat-reports.php:1811
3441
  msgid "c-pl"
3442
  msgstr "Polen"
3443
 
3444
  # Portugal
3445
- #: ../admin/view/wp-slimstat-reports.php:1811
3446
  msgid "c-pt"
3447
  msgstr "Portugal"
3448
 
3449
  # Puerto Rico
3450
- #: ../admin/view/wp-slimstat-reports.php:1811
3451
  msgid "c-pr"
3452
  msgstr "Puerto Rico"
3453
 
3454
  # Qatar
3455
- #: ../admin/view/wp-slimstat-reports.php:1811
3456
  msgid "c-qa"
3457
  msgstr "Katar"
3458
 
3459
  # Réunion
3460
- #: ../admin/view/wp-slimstat-reports.php:1811
3461
  msgid "c-re"
3462
  msgstr "Réunion"
3463
 
3464
  # Romania
3465
- #: ../admin/view/wp-slimstat-reports.php:1811
3466
  msgid "c-ro"
3467
  msgstr "Rum&auml;nien"
3468
 
3469
  # Russian Federation
3470
- #: ../admin/view/wp-slimstat-reports.php:1811
3471
  msgid "c-ru"
3472
  msgstr "Russische Föderation"
3473
 
3474
  # Rwanda
3475
- #: ../admin/view/wp-slimstat-reports.php:1811
3476
  msgid "c-rw"
3477
  msgstr "Ruanda"
3478
 
3479
  # Saint Kitts and Nevis
3480
- #: ../admin/view/wp-slimstat-reports.php:1811
3481
  msgid "c-kn"
3482
  msgstr "St. Kitts und Nevis"
3483
 
3484
  # Saint Lucia
3485
- #: ../admin/view/wp-slimstat-reports.php:1811
3486
  msgid "c-lc"
3487
  msgstr "Saint Lucia"
3488
 
3489
  # Saint Martin
3490
- #: ../admin/view/wp-slimstat-reports.php:1811
3491
  msgid "c-mf"
3492
  msgstr "Saint Martin"
3493
 
3494
  # Saint Vincent and the Grenadines
3495
- #: ../admin/view/wp-slimstat-reports.php:1811
3496
  msgid "c-vc"
3497
  msgstr "St. Vincent und die Grenadinen"
3498
 
3499
  # Samoa
3500
- #: ../admin/view/wp-slimstat-reports.php:1811
3501
  msgid "c-ws"
3502
  msgstr "Samoa"
3503
 
3504
  # Sao Tome and Principe
3505
- #: ../admin/view/wp-slimstat-reports.php:1811
3506
  msgid "c-st"
3507
  msgstr "Sao Tomé und Príncipe"
3508
 
3509
  # Saudi Arabia
3510
- #: ../admin/view/wp-slimstat-reports.php:1811
3511
  msgid "c-sa"
3512
  msgstr "Saudi Arabien"
3513
 
3514
  # Senegal
3515
- #: ../admin/view/wp-slimstat-reports.php:1811
3516
  msgid "c-sn"
3517
  msgstr "Senegal"
3518
 
3519
  # Serbia
3520
- #: ../admin/view/wp-slimstat-reports.php:1811
3521
  msgid "c-rs"
3522
  msgstr "Serbien"
3523
 
3524
  # Sierra Leone
3525
- #: ../admin/view/wp-slimstat-reports.php:1811
3526
  msgid "c-sl"
3527
  msgstr "Sierra Leone"
3528
 
3529
  # Singapore
3530
- #: ../admin/view/wp-slimstat-reports.php:1811
3531
  msgid "c-sg"
3532
  msgstr "Singapur"
3533
 
3534
  # Slovakia
3535
- #: ../admin/view/wp-slimstat-reports.php:1811
3536
  msgid "c-sk"
3537
  msgstr "Slowakei"
3538
 
3539
  # Slovenia
3540
- #: ../admin/view/wp-slimstat-reports.php:1811
3541
  msgid "c-si"
3542
  msgstr "Slowenien"
3543
 
3544
  # Solomon Islands
3545
- #: ../admin/view/wp-slimstat-reports.php:1811
3546
  msgid "c-sb"
3547
  msgstr "Salomonen"
3548
 
3549
  # Somalia
3550
- #: ../admin/view/wp-slimstat-reports.php:1811
3551
  msgid "c-so"
3552
  msgstr "Somalia"
3553
 
3554
  # South Africa
3555
- #: ../admin/view/wp-slimstat-reports.php:1811
3556
  msgid "c-za"
3557
  msgstr "Südafrika"
3558
 
3559
  # South Georgia and the South Sandwich Islands
3560
- #: ../admin/view/wp-slimstat-reports.php:1811
3561
  msgid "c-gs"
3562
  msgstr "Südgeorgien und die Südlichen Sandwichinseln"
3563
 
3564
  # Spain
3565
- #: ../admin/view/wp-slimstat-reports.php:1811
3566
  msgid "c-es"
3567
  msgstr "Spanien"
3568
 
3569
  # Sri Lanka
3570
- #: ../admin/view/wp-slimstat-reports.php:1811
3571
  msgid "c-lk"
3572
  msgstr "Sri Lanka"
3573
 
3574
- #: ../admin/view/wp-slimstat-reports.php:1811
3575
  msgid "c-sc"
3576
  msgstr ""
3577
 
3578
  # Sudan
3579
- #: ../admin/view/wp-slimstat-reports.php:1811
3580
  msgid "c-sd"
3581
  msgstr "Sudan"
3582
 
3583
- #: ../admin/view/wp-slimstat-reports.php:1811
3584
  msgid "c-ss"
3585
  msgstr "Siswati"
3586
 
3587
  # Suriname
3588
- #: ../admin/view/wp-slimstat-reports.php:1811
3589
  msgid "c-sr"
3590
  msgstr "Suriname"
3591
 
3592
  # Svalbard and Jan Mayen
3593
- #: ../admin/view/wp-slimstat-reports.php:1811
3594
  msgid "c-sj"
3595
  msgstr "Spitzbergen und Jan Mayen"
3596
 
3597
  # Swaziland
3598
- #: ../admin/view/wp-slimstat-reports.php:1811
3599
  msgid "c-sz"
3600
  msgstr "Swaziland"
3601
 
3602
  # Sweden
3603
- #: ../admin/view/wp-slimstat-reports.php:1811
3604
  msgid "c-se"
3605
  msgstr "Schweden"
3606
 
3607
  # Switzerland
3608
- #: ../admin/view/wp-slimstat-reports.php:1811
3609
  msgid "c-ch"
3610
  msgstr "Schweiz"
3611
 
3612
  # Syrian Arab Republic
3613
- #: ../admin/view/wp-slimstat-reports.php:1811
3614
  msgid "c-sy"
3615
  msgstr "Arabische Republik Syrien"
3616
 
3617
  # Taiwan, Province of China
3618
- #: ../admin/view/wp-slimstat-reports.php:1811
3619
  msgid "c-tw"
3620
  msgstr "Taiwan"
3621
 
3622
  # Tajikistan
3623
- #: ../admin/view/wp-slimstat-reports.php:1811
3624
  msgid "c-tj"
3625
  msgstr "Tadschikistan"
3626
 
3627
  # United Republic of Tanzania
3628
- #: ../admin/view/wp-slimstat-reports.php:1811
3629
  msgid "c-tz"
3630
  msgstr "Vereinigte Republik Tansania"
3631
 
3632
  # Thailand
3633
- #: ../admin/view/wp-slimstat-reports.php:1811
3634
  msgid "c-th"
3635
  msgstr "Thailand"
3636
 
3637
  # Timor-Leste
3638
- #: ../admin/view/wp-slimstat-reports.php:1811
3639
  msgid "c-tl"
3640
  msgstr "Timor-Leste"
3641
 
3642
  # Togo
3643
- #: ../admin/view/wp-slimstat-reports.php:1811
3644
  msgid "c-tg"
3645
  msgstr "Togo"
3646
 
3647
  # Tonga
3648
- #: ../admin/view/wp-slimstat-reports.php:1811
3649
  msgid "c-to"
3650
  msgstr "Tonga"
3651
 
3652
  # Trinidad and Tobago
3653
- #: ../admin/view/wp-slimstat-reports.php:1811
3654
  msgid "c-tt"
3655
  msgstr "Trinidad und Tobago"
3656
 
3657
  # Tunisia
3658
- #: ../admin/view/wp-slimstat-reports.php:1811
3659
  msgid "c-tn"
3660
  msgstr "Tunesien"
3661
 
3662
  # Turkey
3663
- #: ../admin/view/wp-slimstat-reports.php:1811
3664
  msgid "c-tr"
3665
  msgstr "T&uuml;rkei"
3666
 
3667
  # Turkmenistan
3668
- #: ../admin/view/wp-slimstat-reports.php:1811
3669
  msgid "c-tm"
3670
  msgstr "Turkmenistan"
3671
 
3672
  # Turks and Caicos Islands
3673
- #: ../admin/view/wp-slimstat-reports.php:1811
3674
  msgid "c-tc"
3675
  msgstr "Turks- und Caicosinseln"
3676
 
3677
  # Uganda
3678
- #: ../admin/view/wp-slimstat-reports.php:1811
3679
  msgid "c-ug"
3680
  msgstr "Uganda"
3681
 
3682
  # Ukraine
3683
- #: ../admin/view/wp-slimstat-reports.php:1811
3684
  msgid "c-ua"
3685
  msgstr "Ukraine"
3686
 
3687
  # United Arab Emirates
3688
- #: ../admin/view/wp-slimstat-reports.php:1811
3689
  msgid "c-ae"
3690
  msgstr "Vereinigte Arabische Emirate"
3691
 
3692
  # United Kingdom
3693
- #: ../admin/view/wp-slimstat-reports.php:1811
3694
  msgid "c-gb"
3695
  msgstr "Vereinigtes K&ouml;nigreich"
3696
 
3697
  # United States
3698
- #: ../admin/view/wp-slimstat-reports.php:1811
3699
  msgid "c-us"
3700
  msgstr "Vereinigte Staaten"
3701
 
3702
  # Uruguay
3703
- #: ../admin/view/wp-slimstat-reports.php:1811
3704
  msgid "c-uy"
3705
  msgstr "Uruguay"
3706
 
3707
  # Uzbekistan
3708
- #: ../admin/view/wp-slimstat-reports.php:1811
3709
  msgid "c-uz"
3710
  msgstr "Usbekistan"
3711
 
3712
  # Vanuatu
3713
- #: ../admin/view/wp-slimstat-reports.php:1811
3714
  msgid "c-vu"
3715
  msgstr "Vanuatu"
3716
 
3717
  # Venezuela
3718
- #: ../admin/view/wp-slimstat-reports.php:1811
3719
  msgid "c-ve"
3720
  msgstr "Venezuela"
3721
 
3722
  # Viet Nam
3723
- #: ../admin/view/wp-slimstat-reports.php:1811
3724
  msgid "c-vn"
3725
  msgstr "Vietnam"
3726
 
3727
  # British Virgin Islands
3728
- #: ../admin/view/wp-slimstat-reports.php:1811
3729
  msgid "c-vg"
3730
  msgstr "Jungferninseln"
3731
 
3732
  # U.S. Virgin Islands
3733
- #: ../admin/view/wp-slimstat-reports.php:1811
3734
  msgid "c-vi"
3735
  msgstr "Amerikanische Jungferninseln"
3736
 
3737
  # Western Sahara
3738
- #: ../admin/view/wp-slimstat-reports.php:1811
3739
  msgid "c-eh"
3740
  msgstr "Westsahara"
3741
 
3742
  # Yemen
3743
- #: ../admin/view/wp-slimstat-reports.php:1811
3744
  msgid "c-ye"
3745
  msgstr "Jemen"
3746
 
3747
  # Zambia
3748
- #: ../admin/view/wp-slimstat-reports.php:1811
3749
  msgid "c-zm"
3750
  msgstr "Sambia"
3751
 
3752
  # Zimbabwe
3753
- #: ../admin/view/wp-slimstat-reports.php:1811
3754
  msgid "c-zw"
3755
  msgstr "Zimbabwe"
3756
 
3757
  # Guernsey
3758
- #: ../admin/view/wp-slimstat-reports.php:1811
3759
  msgid "c-gg"
3760
  msgstr "Guernsey"
3761
 
3762
  # Jersey
3763
- #: ../admin/view/wp-slimstat-reports.php:1811
3764
  msgid "c-je"
3765
  msgstr "Jersey"
3766
 
3767
  # Isle of Man
3768
- #: ../admin/view/wp-slimstat-reports.php:1811
3769
  msgid "c-im"
3770
  msgstr "Isle of Man"
3771
 
3772
  # Maldives
3773
- #: ../admin/view/wp-slimstat-reports.php:1811
3774
  msgid "c-mv"
3775
  msgstr "Malediven"
3776
 
3777
- #: ../admin/view/wp-slimstat-reports.php:1812
3778
  msgid "c-eu"
3779
  msgstr ""
3780
 
3781
- #: ../admin/view/wp-slimstat-reports.php:1894
3782
  msgid "src"
3783
  msgstr "src"
3784
 
3785
- #: ../admin/view/wp-slimstat-reports.php:1897
3786
  msgid "serp"
3787
  msgstr "serp"
3788
 
3789
- #: ../admin/view/wp-slimstat-reports.php:1904
3790
  msgid "Go to the referring page"
3791
  msgstr "Verweisende Seite &ouml;ffnen"
3792
 
3793
- #: ../admin/view/wp-slimstat-reports.php:1926
3794
  msgid "Remove filter for"
3795
  msgstr "Entferne Filter f&uuml;r"
3796
 
3797
- #: ../admin/view/wp-slimstat-reports.php:1930
3798
  msgid "Save"
3799
  msgstr ""
3800
 
3801
- #: ../admin/view/wp-slimstat-reports.php:1933
3802
  #, fuzzy
3803
  msgid "Reset All"
3804
  msgstr "Datenbanktabellen zurücksetzen"
3805
 
3806
- #: ../admin/view/wp-slimstat-reports.php:1937
3807
  msgid "Current filters:"
3808
  msgstr "Aktuelle Filter:"
3809
 
3810
- #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3811
- #: ../admin/wp-slimstat-admin.php:495
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3812
  #, fuzzy
3813
  msgid "SlimStat"
3814
  msgstr "&Uuml;ber WP SlimStat"
3815
 
3816
- #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3817
- #: ../wp-slimstat.php:1799
3818
  #, fuzzy
3819
- msgid "Customize"
3820
- msgstr "Benutzerdefinierte CSS"
3821
 
3822
- #: ../admin/wp-slimstat-admin.php:587
3823
  #, fuzzy
3824
  msgid "Pageviews in the last "
3825
  msgstr "Seitenaufrufe (Diagramm)"
3826
 
3827
- #: ../admin/wp-slimstat-admin.php:590
3828
  #, fuzzy
3829
  msgid "Unique IPs in the last "
3830
  msgstr "Eindeutige interne Zugriffe"
3831
 
3832
- #: ../admin/wp-slimstat-admin.php:644
3833
  msgid "Show on screen"
3834
  msgstr "Anzeigen"
3835
 
3836
- #: ../admin/wp-slimstat-admin.php:725
3837
  msgid "Already saved"
3838
  msgstr ""
3839
 
3840
- #: ../admin/wp-slimstat-admin.php:733
3841
  msgid "Saved"
3842
  msgstr ""
3843
 
3844
- #: ../admin/wp-slimstat-admin.php:753
3845
  #, fuzzy
3846
  msgid "Delete this filter"
3847
  msgstr "Lösche Seitenaufrufe, wo"
3848
 
3849
- #: ../admin/wp-slimstat-admin.php:797
3850
  msgid "There was an error updating the following options:"
3851
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
3852
 
3853
- #: ../admin/wp-slimstat-admin.php:800
3854
  #, fuzzy
3855
  msgid "Your changes have been saved."
3856
  msgstr "Optionen erfolgreich aktualisiert."
3857
 
3858
- #: ../admin/wp-slimstat-admin.php:823
3859
  msgid "Save Changes"
3860
  msgstr "Änderungen speichern"
3861
 
3862
- #: ../admin/wp-slimstat-admin.php:839
3863
  msgid "Definitions"
3864
  msgstr "Definitionen"
3865
 
3866
- #: ../admin/wp-slimstat-admin.php:842
3867
  msgid "Pageview"
3868
  msgstr "Seitenaufrufe"
3869
 
3870
- #: ../admin/wp-slimstat-admin.php:842
3871
  #, fuzzy
3872
  msgid ""
3873
  "A request to load a single HTML file (\"page\"). This should be contrasted "
@@ -3878,11 +3847,11 @@ msgstr ""
3878
  "jedesmal einen 'Seitenaufruf' auf wenn der Tracking-Code ausgef&uuml;hrt "
3879
  "wird."
3880
 
3881
- #: ../admin/wp-slimstat-admin.php:843
3882
  msgid "(Human) Visit"
3883
  msgstr "Echte Besuche"
3884
 
3885
- #: ../admin/wp-slimstat-admin.php:843
3886
  msgid ""
3887
  "A period of interaction between a visitor's browser and your website, ending "
3888
  "when the browser is closed or when the user has been inactive on that site "
@@ -3892,7 +3861,7 @@ msgstr ""
3892
  "Diese endet wenn der Browser geschlossen wird oder der Besucher 30 Minuten "
3893
  "lang nicht auf der Website aktiv war"
3894
 
3895
- #: ../admin/wp-slimstat-admin.php:844
3896
  msgid ""
3897
  "Any user who has left a comment on your blog, and is thus identified by "
3898
  "Wordpress as a returning visitor"
@@ -3900,11 +3869,11 @@ msgstr ""
3900
  "Jeder Benutzer, der einen Kommentar auf Ihrer Website hinterlassen hat und "
3901
  "damit als wiederkehrender Besucher erkannt wird."
3902
 
3903
- #: ../admin/wp-slimstat-admin.php:845
3904
  msgid "Unique IP"
3905
  msgstr "Eindeutige IPs"
3906
 
3907
- #: ../admin/wp-slimstat-admin.php:845
3908
  msgid ""
3909
  "Used to differentiate between multiple requests to download a file from one "
3910
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3916,7 +3885,7 @@ msgstr ""
3916
  "Adresse von der ein Seitenaufruf stammt achtet, ist es nützlich, aber nicht "
3917
  "perfekt."
3918
 
3919
- #: ../admin/wp-slimstat-admin.php:846
3920
  msgid ""
3921
  "the originating IP address of a client connecting to a web server through an "
3922
  "HTTP proxy or load balancer"
@@ -3924,11 +3893,11 @@ msgstr ""
3924
  "Die ursprüngliche IP-Adresse eines Clients, der sich durch einen HTTP Proxy "
3925
  "oder Load Balancer mit dem Server verbunden hat."
3926
 
3927
- #: ../admin/wp-slimstat-admin.php:847
3928
  msgid "Direct Traffic"
3929
  msgstr "Direkter Besuch"
3930
 
3931
- #: ../admin/wp-slimstat-admin.php:847
3932
  msgid ""
3933
  "All those people showing up to your Web site by typing in the URL of your "
3934
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -3938,11 +3907,11 @@ msgstr ""
3938
  "oder ein Lesezeichen erreichen; auch \"default traffic\" oder \"ambient "
3939
  "traffic\" genannt."
3940
 
3941
- #: ../admin/wp-slimstat-admin.php:848
3942
  msgid "Search Engine"
3943
  msgstr "Suchmaschinen"
3944
 
3945
- #: ../admin/wp-slimstat-admin.php:848
3946
  msgid ""
3947
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3948
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -3950,15 +3919,15 @@ msgstr ""
3950
  "Google, Yahoo, MSN, Ask usw.; hiwer ist sowohl organischer als auch "
3951
  "bezahlter (PPC/SEM) Traffic enthalten."
3952
 
3953
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
3954
  msgid "Keywords used by your visitors to find your website on a search engine"
3955
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
3956
 
3957
- #: ../admin/wp-slimstat-admin.php:850
3958
  msgid "SERP"
3959
  msgstr "SERP"
3960
 
3961
- #: ../admin/wp-slimstat-admin.php:850
3962
  msgid ""
3963
  "Short for search engine results page, the Web page that a search engine "
3964
  "returns with the results of its search. The value shown represents your rank "
@@ -3967,7 +3936,7 @@ msgstr ""
3967
  "\"Search Engine Result Pages\" - Suchmaschinenranking. Der Wert "
3968
  "repräsentiert Ihren Rang (die Postition) in den Suchergebnissen."
3969
 
3970
- #: ../admin/wp-slimstat-admin.php:851
3971
  msgid ""
3972
  "Any program used for accessing a website; this includes browsers, robots, "
3973
  "spiders and any other program that was used to retrieve information from the "
@@ -3977,7 +3946,7 @@ msgstr ""
3977
  "usw.), 'Robots' und 'Spider' sowie jedes andere Programm welches "
3978
  "Informationen von einer Website abruft."
3979
 
3980
- #: ../admin/wp-slimstat-admin.php:852
3981
  msgid ""
3982
  "A link from one domain to another is said to be outbound from its source "
3983
  "anchor and inbound to its target. This report lists all the links to other "
@@ -3986,27 +3955,27 @@ msgstr ""
3986
  "Ausgehende Links sind links zu einer anderen Domain. Dieser Report zeigt "
3987
  "alle Links zu anderen Websites die Ihre Besucher verfolgt haben."
3988
 
3989
- #: ../admin/wp-slimstat-admin.php:859
3990
  msgid "Basic Filters"
3991
  msgstr "Einfache Filter"
3992
 
3993
- #: ../admin/wp-slimstat-admin.php:862
3994
  msgid "User agent (Firefox, Chrome, ...)"
3995
  msgstr "Browser (Firefox, Chrome ...)"
3996
 
3997
- #: ../admin/wp-slimstat-admin.php:863
3998
  msgid "2-letter code (us, ru, de, it, ...)"
3999
  msgstr "Länder-Code (us, ru, de, it...)"
4000
 
4001
- #: ../admin/wp-slimstat-admin.php:864
4002
  msgid "IP"
4003
  msgstr "IP"
4004
 
4005
- #: ../admin/wp-slimstat-admin.php:864
4006
  msgid "Visitor's public IP address"
4007
  msgstr "&Ouml;ffentliche IP-Adresse des Besuchers"
4008
 
4009
- #: ../admin/wp-slimstat-admin.php:866
4010
  msgid ""
4011
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4012
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -4015,7 +3984,7 @@ msgstr ""
4015
  "Siehe <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
4016
  "ee825488(v=cs.20).aspx\">Tabelle von Sprach-Kodierungen</a> "
4017
 
4018
- #: ../admin/wp-slimstat-admin.php:867
4019
  msgid ""
4020
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4021
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -4025,16 +3994,20 @@ msgstr ""
4025
  "gibt es auf <a href=\"http://php.net/manual/de/function.get-browser.php\" "
4026
  "target=\"_blank\">dieser Seite</a>"
4027
 
4028
- #: ../admin/wp-slimstat-admin.php:868
4029
  msgid "URL accessed on your site"
4030
  msgstr "URL, die auf Ihrer Seite besucht wurde"
4031
 
4032
- #: ../admin/wp-slimstat-admin.php:869
4033
  #, fuzzy
4034
  msgid "Complete address of the referrer page"
4035
  msgstr "Verweisende Seite &ouml;ffnen"
4036
 
4037
- #: ../admin/wp-slimstat-admin.php:870
 
 
 
 
4038
  msgid ""
4039
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4040
  "comment"
@@ -4042,15 +4015,15 @@ msgstr ""
4042
  "Besuchername laut Cookie, welches Wordpress beim hinterlassen eines "
4043
  "Kommentars anlegt"
4044
 
4045
- #: ../admin/wp-slimstat-admin.php:878
4046
  msgid "Advanced Filters"
4047
  msgstr "Erweiterte Filter"
4048
 
4049
- #: ../admin/wp-slimstat-admin.php:881
4050
  msgid "user agent version (9.0, 11, ...)"
4051
  msgstr "Browser-Version (9.0, 11, ...)"
4052
 
4053
- #: ../admin/wp-slimstat-admin.php:882
4054
  msgid ""
4055
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4056
  "all others"
@@ -4058,11 +4031,11 @@ msgstr ""
4058
  "1 = Suchmaschinen Crawler, 2 = Mobiles Gerät, 3 = Feed-Reader, 0 = alle "
4059
  "anderen"
4060
 
4061
- #: ../admin/wp-slimstat-admin.php:883
4062
  msgid "Pageview Attributes"
4063
  msgstr "Eigenschaften Seitenaufrufe"
4064
 
4065
- #: ../admin/wp-slimstat-admin.php:883
4066
  msgid ""
4067
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4068
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -4072,19 +4045,19 @@ msgstr ""
4072
  "target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4073
  "Link_prefetching_FAQ\">Link Prefetching</a> oder eine &auml;hnliche "
4074
 
4075
- #: ../admin/wp-slimstat-admin.php:884
4076
  msgid "author associated to that post/page when the resource was accessed"
4077
  msgstr "Der dem Artikel / der Seite zugeordnete Autor"
4078
 
4079
- #: ../admin/wp-slimstat-admin.php:885
4080
  msgid "ID of the category/term associated to the resource, when available"
4081
  msgstr "ID der zugeordneten Kategorie, falls vorhanden"
4082
 
4083
- #: ../admin/wp-slimstat-admin.php:886
4084
  msgid "visitor's originating IP address, if available"
4085
  msgstr "IP-Adresse des Besuchers, falls bekannt"
4086
 
4087
- #: ../admin/wp-slimstat-admin.php:887
4088
  msgid ""
4089
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4090
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -4097,15 +4070,15 @@ msgstr ""
4097
  "feed, home; F&uuml;r mehr Infos s. <a target=\"_blank\" href=\"http://codex."
4098
  "wordpress.org/Conditional_Tags\">Conditional Tags</a>."
4099
 
4100
- #: ../admin/wp-slimstat-admin.php:888
4101
  msgid "Screen Resolution"
4102
  msgstr "Bildschirm-Aufl&ouml;sung"
4103
 
4104
- #: ../admin/wp-slimstat-admin.php:888
4105
  msgid "viewport width and height (1024x768, 800x600, ...)"
4106
  msgstr "Breite und H&ouml;he des sichtbaren Bereiches"
4107
 
4108
- #: ../admin/wp-slimstat-admin.php:889
4109
  msgid ""
4110
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4111
  "visitors"
@@ -4113,11 +4086,11 @@ msgstr ""
4113
  "Meist im Zusammenhang mit <em>nicht leer</em> verwendet, kennzeichnet echte "
4114
  "Besucher"
4115
 
4116
- #: ../admin/wp-slimstat-admin.php:890
4117
  msgid "Date Filters"
4118
  msgstr "Datumsfilter"
4119
 
4120
- #: ../admin/wp-slimstat-admin.php:890
4121
  msgid ""
4122
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4123
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -4127,26 +4100,26 @@ msgstr ""
4127
  "-1 erzeugt ein Intervall seit Beginn des Jahres / Monats, z.B. Tag=1, "
4128
  "Monat=1, Jahr leer, Intervall=-1 erzeugt einen 'seit Jahresbeginn' Filter."
4129
 
4130
- #: ../admin/wp-slimstat-admin.php:891
4131
  msgid "SERP Position"
4132
  msgstr "Suchmaschinenrang"
4133
 
4134
- #: ../admin/wp-slimstat-admin.php:891
4135
  msgid ""
4136
  "set the filter to Referer contains cd=N&, where N is the position you are "
4137
  "looking for"
4138
  msgstr ""
4139
  "Filter nach Herkunft mit cd=N& setzen, wobei N die gesuchte Position ist"
4140
 
4141
- #: ../admin/wp-slimstat-admin.php:918
4142
  msgid "Yes"
4143
  msgstr "Ja"
4144
 
4145
- #: ../admin/wp-slimstat-admin.php:919
4146
  msgid "No"
4147
  msgstr "Nein"
4148
 
4149
- #: ../admin/wp-slimstat-admin.php:920
4150
  msgid "Site Specific"
4151
  msgstr ""
4152
 
@@ -4175,1621 +4148,1723 @@ msgid "blackberry os"
4175
  msgstr "Blackberry OS"
4176
 
4177
  #: ../languages/dynamic_strings.php:11
 
 
 
 
 
4178
  msgid "chromeos"
4179
  msgstr ""
4180
 
4181
- #: ../languages/dynamic_strings.php:12
 
 
 
 
4182
  msgid "cygwin"
4183
  msgstr "Cygwin"
4184
 
4185
- #: ../languages/dynamic_strings.php:13
4186
  msgid "debian"
4187
  msgstr "Debian"
4188
 
4189
- #: ../languages/dynamic_strings.php:14
4190
  msgid "digital unix"
4191
  msgstr "Digital Unix"
4192
 
4193
- #: ../languages/dynamic_strings.php:15
 
 
 
 
4194
  msgid "firefoxos"
4195
  msgstr ""
4196
 
4197
- #: ../languages/dynamic_strings.php:16
4198
  msgid "freebsd"
4199
  msgstr "FreeBSD"
4200
 
4201
- #: ../languages/dynamic_strings.php:17
 
 
 
 
4202
  msgid "hp-ux"
4203
  msgstr "HP-UX"
4204
 
4205
- #: ../languages/dynamic_strings.php:18
4206
  msgid "ios"
4207
  msgstr "iPhone OS"
4208
 
4209
- #: ../languages/dynamic_strings.php:19
 
 
 
 
 
4210
  msgid "iphone osx"
4211
  msgstr "iPhone OS X"
4212
 
4213
- #: ../languages/dynamic_strings.php:20
4214
  msgid "irix"
4215
  msgstr "IRIX"
4216
 
4217
- #: ../languages/dynamic_strings.php:21
4218
  msgid "java"
4219
  msgstr "Java"
4220
 
4221
- #: ../languages/dynamic_strings.php:22
 
 
 
 
 
 
 
 
4222
  msgid "linux"
4223
  msgstr "Linux"
4224
 
4225
- #: ../languages/dynamic_strings.php:23
4226
  msgid "mac"
4227
  msgstr "Mac"
4228
 
4229
- #: ../languages/dynamic_strings.php:24
4230
  msgid "mac68k"
4231
  msgstr "Mac 68k"
4232
 
4233
- #: ../languages/dynamic_strings.php:25
4234
  msgid "macosx"
4235
  msgstr "Mac OS X"
4236
 
4237
- #: ../languages/dynamic_strings.php:26
4238
  msgid "macppc"
4239
  msgstr "Mac PowerPC"
4240
 
4241
- #: ../languages/dynamic_strings.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4242
  msgid "netbsd"
4243
  msgstr "NetBSD"
4244
 
4245
- #: ../languages/dynamic_strings.php:28
 
 
 
 
4246
  msgid "openbsd"
4247
  msgstr "OpenBSD"
4248
 
4249
- #: ../languages/dynamic_strings.php:29
4250
  msgid "openvms"
4251
  msgstr "OpenVMS"
4252
 
4253
- #: ../languages/dynamic_strings.php:30
4254
  msgid "os/2"
4255
  msgstr "IBM OS/2"
4256
 
4257
- #: ../languages/dynamic_strings.php:31
4258
  msgid "palm"
4259
  msgstr "Palm"
4260
 
4261
- #: ../languages/dynamic_strings.php:32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4262
  msgid "powertv"
4263
  msgstr "PowerTV"
4264
 
4265
- #: ../languages/dynamic_strings.php:33
 
 
 
 
4266
  msgid "rim os"
4267
  msgstr ""
4268
 
4269
- #: ../languages/dynamic_strings.php:34
4270
  msgid "risc os"
4271
  msgstr "Risc OS"
4272
 
4273
- #: ../languages/dynamic_strings.php:35
 
 
 
 
4274
  msgid "solaris"
4275
  msgstr "Solaris"
4276
 
4277
- #: ../languages/dynamic_strings.php:36
4278
  msgid "sunos"
4279
  msgstr "Sun OS"
4280
 
4281
- #: ../languages/dynamic_strings.php:37
 
 
 
 
4282
  msgid "symbianos"
4283
  msgstr "Symbian OS"
4284
 
4285
- #: ../languages/dynamic_strings.php:38
4286
  msgid "ubuntu"
4287
  msgstr ""
4288
 
4289
- #: ../languages/dynamic_strings.php:39
4290
  msgid "unix"
4291
  msgstr "Unix"
4292
 
4293
- #: ../languages/dynamic_strings.php:40
4294
  msgid "unknown"
4295
  msgstr "Unbekannt"
4296
 
4297
- #: ../languages/dynamic_strings.php:41
 
 
 
 
 
4298
  msgid "wap"
4299
  msgstr "WAP"
4300
 
4301
- #: ../languages/dynamic_strings.php:42
4302
  msgid "webos"
4303
  msgstr "WebOS"
4304
 
4305
- #: ../languages/dynamic_strings.php:43
4306
  #, fuzzy
4307
  msgid "win10"
4308
  msgstr "Windows 16-bit"
4309
 
4310
- #: ../languages/dynamic_strings.php:44
4311
  msgid "win16"
4312
  msgstr "Windows 16-bit"
4313
 
4314
- #: ../languages/dynamic_strings.php:45
4315
  msgid "win2000"
4316
  msgstr "Windows 2000"
4317
 
4318
- #: ../languages/dynamic_strings.php:46
4319
  msgid "win2003"
4320
  msgstr "Windows 2003"
4321
 
4322
- #: ../languages/dynamic_strings.php:47
4323
  msgid "win31"
4324
  msgstr "Windows 3.1"
4325
 
4326
- #: ../languages/dynamic_strings.php:48
4327
  msgid "win32"
4328
  msgstr "Windows 32-bit"
4329
 
4330
- #: ../languages/dynamic_strings.php:49 ../languages/dynamic_strings.php:50
4331
  msgid "win7"
4332
  msgstr "Windows 7"
4333
 
4334
- #: ../languages/dynamic_strings.php:51
4335
  msgid "win8"
4336
  msgstr "Windows 8"
4337
 
4338
- #: ../languages/dynamic_strings.php:52
4339
  msgid "win8.1"
4340
  msgstr "Windows 8.1"
4341
 
4342
- #: ../languages/dynamic_strings.php:53
4343
  msgid "win95"
4344
  msgstr "Windows 95"
4345
 
4346
- #: ../languages/dynamic_strings.php:54
4347
  msgid "win98"
4348
  msgstr "Windows 98"
4349
 
4350
- #: ../languages/dynamic_strings.php:55
4351
  msgid "wince"
4352
  msgstr "Windows CE"
4353
 
4354
- #: ../languages/dynamic_strings.php:56
4355
- #, fuzzy
4356
- msgid "windows phone"
4357
- msgstr "Windows Phone"
4358
-
4359
- #: ../languages/dynamic_strings.php:57
4360
  msgid "winme"
4361
  msgstr "Windows ME"
4362
 
4363
- #: ../languages/dynamic_strings.php:58
4364
  msgid "winnt"
4365
  msgstr "Windows NT"
4366
 
4367
- #: ../languages/dynamic_strings.php:59
4368
  msgid "winphone7"
4369
  msgstr "Windows Phone"
4370
 
4371
- #: ../languages/dynamic_strings.php:60
4372
  #, fuzzy
4373
  msgid "winphone7.5"
4374
  msgstr "Windows Phone"
4375
 
4376
- #: ../languages/dynamic_strings.php:61
4377
  #, fuzzy
4378
  msgid "winphone8"
4379
  msgstr "Windows Phone"
4380
 
4381
- #: ../languages/dynamic_strings.php:62
4382
  #, fuzzy
4383
  msgid "winphone8.1"
4384
  msgstr "Windows Phone"
4385
 
4386
- #: ../languages/dynamic_strings.php:63
 
 
 
 
4387
  msgid "winvista"
4388
  msgstr "Windows Vista"
4389
 
4390
- #: ../languages/dynamic_strings.php:64
4391
  msgid "winxp"
4392
  msgstr "Windows XP"
4393
 
4394
- #: ../languages/dynamic_strings.php:65
4395
  msgid "wyderos"
4396
  msgstr "WyderOS"
4397
 
4398
- #: ../languages/dynamic_strings.php:68
 
 
 
 
4399
  msgid "acrobat"
4400
  msgstr "Acrobat Reader"
4401
 
4402
- #: ../languages/dynamic_strings.php:69
4403
  msgid "director"
4404
  msgstr "Macromedia Director"
4405
 
4406
- #: ../languages/dynamic_strings.php:70
4407
  msgid "flash"
4408
  msgstr "Adobe Flash Player"
4409
 
4410
- #: ../languages/dynamic_strings.php:71
4411
  msgid "mediaplayer"
4412
  msgstr "Microsoft Media Player"
4413
 
4414
- #: ../languages/dynamic_strings.php:72
4415
  msgid "quicktime"
4416
  msgstr "QuickTime"
4417
 
4418
- #: ../languages/dynamic_strings.php:73
4419
  msgid "real"
4420
  msgstr "Real Player"
4421
 
4422
- #: ../languages/dynamic_strings.php:74
4423
  msgid "silverlight"
4424
  msgstr "Microsoft Silverlight"
4425
 
4426
- #: ../languages/dynamic_strings.php:77
4427
  msgid "p-and"
4428
  msgstr "Android"
4429
 
4430
- #: ../languages/dynamic_strings.php:78
4431
  msgid "p-bla"
4432
  msgstr "BlackBerry"
4433
 
4434
- #: ../languages/dynamic_strings.php:79
4435
  msgid "p-chr"
4436
  msgstr "Chrome OS"
4437
 
4438
- #: ../languages/dynamic_strings.php:80
4439
  msgid "p-fir"
4440
  msgstr ""
4441
 
4442
- #: ../languages/dynamic_strings.php:81
4443
  msgid "p-fre"
4444
  msgstr "Linux FreeBSD"
4445
 
4446
- #: ../languages/dynamic_strings.php:82
4447
  msgid "p-ios"
4448
  msgstr "Apple iOS"
4449
 
4450
- #: ../languages/dynamic_strings.php:83
4451
  msgid "p-jav"
4452
  msgstr "Java-based OS"
4453
 
4454
- #: ../languages/dynamic_strings.php:84
4455
  msgid "p-lin"
4456
  msgstr "Linux"
4457
 
4458
- #: ../languages/dynamic_strings.php:85
4459
  msgid "p-mac"
4460
  msgstr "Apple"
4461
 
4462
- #: ../languages/dynamic_strings.php:86
4463
  msgid "p-rim"
4464
  msgstr ""
4465
 
4466
- #: ../languages/dynamic_strings.php:87
4467
  msgid "p-sym"
4468
  msgstr "Symbian OS"
4469
 
4470
- #: ../languages/dynamic_strings.php:88
4471
  msgid "p-ubu"
4472
  msgstr ""
4473
 
4474
- #: ../languages/dynamic_strings.php:89
4475
  msgid "p-unk"
4476
  msgstr "Unbekannt"
4477
 
4478
- #: ../languages/dynamic_strings.php:90
4479
  msgid "p-win"
4480
  msgstr "Microsoft"
4481
 
4482
  # Afrikaans
4483
- #: ../languages/dynamic_strings.php:93
4484
  msgid "l-af"
4485
  msgstr "Afrikaans"
4486
 
4487
  # Afrikaans
4488
- #: ../languages/dynamic_strings.php:94
4489
  #, fuzzy
4490
  msgid "l-af-za"
4491
  msgstr "Afrikaans"
4492
 
4493
  # Arabic
4494
- #: ../languages/dynamic_strings.php:95
4495
  msgid "l-ar"
4496
  msgstr "Arabic"
4497
 
4498
  # Arabic (United Arab Emirates)
4499
- #: ../languages/dynamic_strings.php:96
4500
  msgid "l-ar-ae"
4501
  msgstr "Arabic (United Arab Emirates)"
4502
 
4503
  # Arabic (Bahrain)
4504
- #: ../languages/dynamic_strings.php:97
4505
  msgid "l-ar-bh"
4506
  msgstr "Arabic (Bahrain)"
4507
 
4508
  # Arabic (Algeria)
4509
- #: ../languages/dynamic_strings.php:98
4510
  msgid "l-ar-dz"
4511
  msgstr "Arabic (Algeria)"
4512
 
4513
  # Arabic (Egypt)
4514
- #: ../languages/dynamic_strings.php:99
4515
  msgid "l-ar-eg"
4516
  msgstr "Arabic (Egypt)"
4517
 
4518
  # Arabic (Iraq)
4519
- #: ../languages/dynamic_strings.php:100
4520
  msgid "l-ar-iq"
4521
  msgstr "Arabic (Iraq)"
4522
 
4523
  # Arabic (Jordan)
4524
- #: ../languages/dynamic_strings.php:101
4525
  msgid "l-ar-jo"
4526
  msgstr "Arabic (Jordan)"
4527
 
4528
  # Arabic (Kuwait)
4529
- #: ../languages/dynamic_strings.php:102
4530
  msgid "l-ar-kw"
4531
  msgstr "Arabic (Kuwait)"
4532
 
4533
  # Arabic (Lebanon)
4534
- #: ../languages/dynamic_strings.php:103
4535
  msgid "l-ar-lb"
4536
  msgstr "Arabic (Lebanon)"
4537
 
4538
  # Arabic (Libya)
4539
- #: ../languages/dynamic_strings.php:104
4540
  msgid "l-ar-ly"
4541
  msgstr "Arabic (Libya)"
4542
 
4543
  # Arabic (Morocco)
4544
- #: ../languages/dynamic_strings.php:105
4545
  msgid "l-ar-ma"
4546
  msgstr "Arabic (Morocco)"
4547
 
4548
  # Arabic (Oman)
4549
- #: ../languages/dynamic_strings.php:106
4550
  msgid "l-ar-om"
4551
  msgstr "Arabic (Oman)"
4552
 
4553
  # Arabic (Qatar)
4554
- #: ../languages/dynamic_strings.php:107
4555
  msgid "l-ar-qa"
4556
  msgstr "Arabic (Qatar)"
4557
 
4558
  # Arabic (Saudi Arabia)
4559
- #: ../languages/dynamic_strings.php:108
4560
  msgid "l-ar-sa"
4561
  msgstr "Arabic (Saudi Arabia)"
4562
 
4563
  # Arabic (Syria)
4564
- #: ../languages/dynamic_strings.php:109
4565
  msgid "l-ar-sy"
4566
  msgstr "Arabic (Syria)"
4567
 
4568
  # Arabic (Tunisia)
4569
- #: ../languages/dynamic_strings.php:110
4570
  msgid "l-ar-tn"
4571
  msgstr "Arabic (Tunisia)"
4572
 
4573
  # Arabic (Yemen)
4574
- #: ../languages/dynamic_strings.php:111
4575
  msgid "l-ar-ye"
4576
  msgstr "Arabic (Yemen)"
4577
 
4578
  # Azerbaijani
4579
- #: ../languages/dynamic_strings.php:112
4580
  msgid "l-az"
4581
  msgstr "Azerbaijani"
4582
 
4583
  # Azerbaijani
4584
- #: ../languages/dynamic_strings.php:113
4585
  #, fuzzy
4586
  msgid "l-az-az"
4587
  msgstr "Azerbaijani"
4588
 
4589
  # Belarusian
4590
- #: ../languages/dynamic_strings.php:114
4591
  msgid "l-be"
4592
  msgstr "Belarusian"
4593
 
4594
  # Belarusian
4595
- #: ../languages/dynamic_strings.php:115
4596
  #, fuzzy
4597
  msgid "l-be-by"
4598
  msgstr "Belarusian"
4599
 
4600
  # Bulgarian
4601
- #: ../languages/dynamic_strings.php:116
4602
  msgid "l-bg"
4603
  msgstr "Bulgarian"
4604
 
4605
  # Bulgarian
4606
- #: ../languages/dynamic_strings.php:117
4607
  #, fuzzy
4608
  msgid "l-bg-bg"
4609
  msgstr "Bulgarian"
4610
 
4611
  # Bosnian
4612
- #: ../languages/dynamic_strings.php:118
4613
  #, fuzzy
4614
  msgid "l-bs-ba"
4615
  msgstr "Bosnian"
4616
 
4617
  # Catalan; Valencian
4618
- #: ../languages/dynamic_strings.php:119
4619
  msgid "l-ca"
4620
  msgstr "Catalan; Valencian"
4621
 
4622
  # Catalan; Valencian
4623
- #: ../languages/dynamic_strings.php:120
4624
  #, fuzzy
4625
  msgid "l-ca-es"
4626
  msgstr "Catalan; Valencian"
4627
 
4628
  # Czech
4629
- #: ../languages/dynamic_strings.php:121
4630
  msgid "l-cs"
4631
  msgstr "Czech"
4632
 
4633
  # Czech
4634
- #: ../languages/dynamic_strings.php:122
4635
  #, fuzzy
4636
  msgid "l-cs-cz"
4637
  msgstr "Czech"
4638
 
4639
  # Welsh
4640
- #: ../languages/dynamic_strings.php:123
4641
  msgid "l-cy"
4642
  msgstr "Welsh"
4643
 
4644
  # Welsh
4645
- #: ../languages/dynamic_strings.php:124
4646
  #, fuzzy
4647
  msgid "l-cy-gb"
4648
  msgstr "Welsh"
4649
 
4650
  # Danish
4651
- #: ../languages/dynamic_strings.php:125
4652
  msgid "l-da"
4653
  msgstr "Danish"
4654
 
4655
  # Danish
4656
- #: ../languages/dynamic_strings.php:126
4657
  #, fuzzy
4658
  msgid "l-da-dk"
4659
  msgstr "Danish"
4660
 
4661
  # German
4662
- #: ../languages/dynamic_strings.php:127
4663
  msgid "l-de"
4664
  msgstr "German"
4665
 
4666
  # German (Austria)
4667
- #: ../languages/dynamic_strings.php:128
4668
  msgid "l-de-at"
4669
  msgstr "German (Austria)"
4670
 
4671
  # German (Switzerland)
4672
- #: ../languages/dynamic_strings.php:129
4673
  msgid "l-de-ch"
4674
  msgstr "German (Switzerland)"
4675
 
4676
  # German (Germany)
4677
- #: ../languages/dynamic_strings.php:130
4678
  msgid "l-de-de"
4679
  msgstr "German (Germany)"
4680
 
4681
  # German (Liechtenstein)
4682
- #: ../languages/dynamic_strings.php:131
4683
  msgid "l-de-li"
4684
  msgstr "German (Liechtenstein)"
4685
 
4686
  # German (Luxembourg)
4687
- #: ../languages/dynamic_strings.php:132
4688
  msgid "l-de-lu"
4689
  msgstr "German (Luxembourg)"
4690
 
4691
  # Dhivehi; Divehi; Maldivian
4692
- #: ../languages/dynamic_strings.php:133
4693
  msgid "l-dv"
4694
  msgstr "Dhivehi; Divehi; Maldivian"
4695
 
4696
  # Dhivehi; Divehi; Maldivian
4697
- #: ../languages/dynamic_strings.php:134
4698
  #, fuzzy
4699
  msgid "l-dv-mv"
4700
  msgstr "Dhivehi; Divehi; Maldivian"
4701
 
4702
  # Modern Greek (1453-)
4703
- #: ../languages/dynamic_strings.php:135
4704
  msgid "l-el"
4705
  msgstr "Modern Greek (1453-)"
4706
 
4707
  # Greek (Greece)
4708
- #: ../languages/dynamic_strings.php:136
4709
  msgid "l-el-gr"
4710
  msgstr "Greek (Greece)"
4711
 
4712
  # English
4713
- #: ../languages/dynamic_strings.php:137
4714
  msgid "l-en"
4715
  msgstr "English"
4716
 
4717
  # English (Australia)
4718
- #: ../languages/dynamic_strings.php:138
4719
  msgid "l-en-au"
4720
  msgstr "English (Australia)"
4721
 
4722
  # English (Belize)
4723
- #: ../languages/dynamic_strings.php:139
4724
  msgid "l-en-bz"
4725
  msgstr "English (Belize)"
4726
 
4727
  # English (Canada)
4728
- #: ../languages/dynamic_strings.php:140
4729
  msgid "l-en-ca"
4730
  msgstr "English (Canada)"
4731
 
4732
  # English (Canada)
4733
- #: ../languages/dynamic_strings.php:141
4734
  #, fuzzy
4735
  msgid "l-en-cb"
4736
  msgstr "English (Canada)"
4737
 
4738
  # English (United Kingdom)
4739
- #: ../languages/dynamic_strings.php:142
4740
  msgid "l-en-gb"
4741
  msgstr "English (United Kingdom)"
4742
 
4743
  # English (Ireland)
4744
- #: ../languages/dynamic_strings.php:143
4745
  msgid "l-en-ie"
4746
  msgstr "English (Ireland)"
4747
 
4748
  # English (Jamaica)
4749
- #: ../languages/dynamic_strings.php:144
4750
  msgid "l-en-jm"
4751
  msgstr "English (Jamaica)"
4752
 
4753
  # English (New Zealand)
4754
- #: ../languages/dynamic_strings.php:145
4755
  msgid "l-en-nz"
4756
  msgstr "English (New Zealand)"
4757
 
4758
  # English
4759
- #: ../languages/dynamic_strings.php:146
4760
  #, fuzzy
4761
  msgid "l-en-ph"
4762
  msgstr "English"
4763
 
4764
  # English (Trinidad)
4765
- #: ../languages/dynamic_strings.php:147
4766
  msgid "l-en-tt"
4767
  msgstr "English (Trinidad)"
4768
 
4769
  # English (United States)
4770
- #: ../languages/dynamic_strings.php:148
4771
  msgid "l-en-us"
4772
  msgstr "English (United States)"
4773
 
4774
  # English (South Africa)
4775
- #: ../languages/dynamic_strings.php:149
4776
  msgid "l-en-za"
4777
  msgstr "English (South Africa)"
4778
 
4779
  # English (South Africa)
4780
- #: ../languages/dynamic_strings.php:150
4781
  #, fuzzy
4782
  msgid "l-en-zw"
4783
  msgstr "English (South Africa)"
4784
 
4785
  # Esperanto
4786
- #: ../languages/dynamic_strings.php:151
4787
  msgid "l-eo"
4788
  msgstr "Esperanto"
4789
 
4790
  # Spanish; Castilian
4791
- #: ../languages/dynamic_strings.php:152
4792
  msgid "l-es"
4793
  msgstr "Spanish; Castilian"
4794
 
4795
  # Spanish (Argentina)
4796
- #: ../languages/dynamic_strings.php:153
4797
  msgid "l-es-ar"
4798
  msgstr "Spanish (Argentina)"
4799
 
4800
  # Spanish (Bolivia)
4801
- #: ../languages/dynamic_strings.php:154
4802
  msgid "l-es-bo"
4803
  msgstr "Spanish (Bolivia)"
4804
 
4805
  # Spanish (Chile)
4806
- #: ../languages/dynamic_strings.php:155
4807
  msgid "l-es-cl"
4808
  msgstr "Spanish (Chile)"
4809
 
4810
  # Spanish (Colombia)
4811
- #: ../languages/dynamic_strings.php:156
4812
  msgid "l-es-co"
4813
  msgstr "Spanish (Colombia)"
4814
 
4815
  # Spanish (Costa Rica)
4816
- #: ../languages/dynamic_strings.php:157
4817
  msgid "l-es-cr"
4818
  msgstr "Spanish (Costa Rica)"
4819
 
4820
  # Spanish (Dominican Republic)
4821
- #: ../languages/dynamic_strings.php:158
4822
  msgid "l-es-do"
4823
  msgstr "Spanish (Dominican Republic)"
4824
 
4825
  # Spanish (Ecuador)
4826
- #: ../languages/dynamic_strings.php:159
4827
  msgid "l-es-ec"
4828
  msgstr "Spanish (Ecuador)"
4829
 
4830
  # Spanish (Spain)
4831
- #: ../languages/dynamic_strings.php:160
4832
  msgid "l-es-es"
4833
  msgstr "Spanish (Spain)"
4834
 
4835
  # Spanish (Guatemala)
4836
- #: ../languages/dynamic_strings.php:161
4837
  msgid "l-es-gt"
4838
  msgstr "Spanish (Guatemala)"
4839
 
4840
  # Spanish (Honduras)
4841
- #: ../languages/dynamic_strings.php:162
4842
  msgid "l-es-hn"
4843
  msgstr "Spanish (Honduras)"
4844
 
4845
  # Spanish (Mexico)
4846
- #: ../languages/dynamic_strings.php:163
4847
  msgid "l-es-mx"
4848
  msgstr "Spanish (Mexico)"
4849
 
4850
  # Spanish (Nicaragua)
4851
- #: ../languages/dynamic_strings.php:164
4852
  msgid "l-es-ni"
4853
  msgstr "Spanish (Nicaragua)"
4854
 
4855
  # Spanish (Panama)
4856
- #: ../languages/dynamic_strings.php:165
4857
  msgid "l-es-pa"
4858
  msgstr "Spanish (Panama)"
4859
 
4860
  # Spanish (Peru)
4861
- #: ../languages/dynamic_strings.php:166
4862
  msgid "l-es-pe"
4863
  msgstr "Spanish (Peru)"
4864
 
4865
  # Spanish (Puerto Rico)
4866
- #: ../languages/dynamic_strings.php:167
4867
  msgid "l-es-pr"
4868
  msgstr "Spanish (Puerto Rico)"
4869
 
4870
  # Spanish (Paraguay)
4871
- #: ../languages/dynamic_strings.php:168
4872
  msgid "l-es-py"
4873
  msgstr "Spanish (Paraguay)"
4874
 
4875
  # Spanish (El Salvador)
4876
- #: ../languages/dynamic_strings.php:169
4877
  msgid "l-es-sv"
4878
  msgstr "Spanish (El Salvador)"
4879
 
4880
  # Spanish (Uruguay)
4881
- #: ../languages/dynamic_strings.php:170
4882
  msgid "l-es-uy"
4883
  msgstr "Spanish (Uruguay)"
4884
 
4885
  # Spanish (Venezuela)
4886
- #: ../languages/dynamic_strings.php:171
4887
  msgid "l-es-ve"
4888
  msgstr "Spanish (Venezuela)"
4889
 
4890
  # Estonian
4891
- #: ../languages/dynamic_strings.php:172
4892
  msgid "l-et"
4893
  msgstr "Estonian"
4894
 
4895
  # Estonian
4896
- #: ../languages/dynamic_strings.php:173
4897
  #, fuzzy
4898
  msgid "l-et-ee"
4899
  msgstr "Estonian"
4900
 
4901
  # Basque
4902
- #: ../languages/dynamic_strings.php:174
4903
  msgid "l-eu"
4904
  msgstr "Basque"
4905
 
4906
  # Basque
4907
- #: ../languages/dynamic_strings.php:175
4908
  #, fuzzy
4909
  msgid "l-eu-es"
4910
  msgstr "Basque"
4911
 
4912
  # Persian
4913
- #: ../languages/dynamic_strings.php:176
4914
  msgid "l-fa"
4915
  msgstr "Persian"
4916
 
4917
  # Persian
4918
- #: ../languages/dynamic_strings.php:177
4919
  #, fuzzy
4920
  msgid "l-fa-ir"
4921
  msgstr "Persian"
4922
 
4923
  # Finnish
4924
- #: ../languages/dynamic_strings.php:178
4925
  msgid "l-fi"
4926
  msgstr "Finnish"
4927
 
4928
  # Finnish
4929
- #: ../languages/dynamic_strings.php:179
4930
  #, fuzzy
4931
  msgid "l-fi-fi"
4932
  msgstr "Finnish"
4933
 
4934
  # Faroese
4935
- #: ../languages/dynamic_strings.php:180
4936
  msgid "l-fo"
4937
  msgstr "Faroese"
4938
 
4939
  # Faroese
4940
- #: ../languages/dynamic_strings.php:181
4941
  #, fuzzy
4942
  msgid "l-fo-fo"
4943
  msgstr "Faroese"
4944
 
4945
  # French
4946
- #: ../languages/dynamic_strings.php:182
4947
  msgid "l-fr"
4948
  msgstr "French"
4949
 
4950
  # French (Belgium)
4951
- #: ../languages/dynamic_strings.php:183
4952
  msgid "l-fr-be"
4953
  msgstr "French (Belgium)"
4954
 
4955
  # French (Canada)
4956
- #: ../languages/dynamic_strings.php:184
4957
  msgid "l-fr-ca"
4958
  msgstr "French (Canada)"
4959
 
4960
  # French (Switzerland)
4961
- #: ../languages/dynamic_strings.php:185
4962
  msgid "l-fr-ch"
4963
  msgstr "French (Switzerland)"
4964
 
4965
  # French (France)
4966
- #: ../languages/dynamic_strings.php:186
4967
  msgid "l-fr-fr"
4968
  msgstr "French (France)"
4969
 
4970
  # French (Luxembourg)
4971
- #: ../languages/dynamic_strings.php:187
4972
  msgid "l-fr-lu"
4973
  msgstr "French (Luxembourg)"
4974
 
4975
  # French (Switzerland)
4976
- #: ../languages/dynamic_strings.php:188
4977
  #, fuzzy
4978
  msgid "l-fr-mc"
4979
  msgstr "French (Switzerland)"
4980
 
4981
  # Galician
4982
- #: ../languages/dynamic_strings.php:189
4983
  msgid "l-gl"
4984
  msgstr "Galician"
4985
 
4986
  # Spanish; Castilian
4987
- #: ../languages/dynamic_strings.php:190
4988
  #, fuzzy
4989
  msgid "l-gl-es"
4990
  msgstr "Spanish; Castilian"
4991
 
4992
  # Gujarati
4993
- #: ../languages/dynamic_strings.php:191
4994
  msgid "l-gu"
4995
  msgstr "Gujarati"
4996
 
4997
  # Gujarati
4998
- #: ../languages/dynamic_strings.php:192
4999
  #, fuzzy
5000
  msgid "l-gu-in"
5001
  msgstr "Gujarati"
5002
 
5003
  # Hebrew
5004
- #: ../languages/dynamic_strings.php:193
5005
  msgid "l-he"
5006
  msgstr "Hebrew"
5007
 
5008
  # Hebrew (Israel)
5009
- #: ../languages/dynamic_strings.php:194
5010
  msgid "l-he-il"
5011
  msgstr "Hebrew (Israel)"
5012
 
5013
  # Hindi
5014
- #: ../languages/dynamic_strings.php:195
5015
  msgid "l-hi"
5016
  msgstr "Hindi"
5017
 
5018
  # Hindi
5019
- #: ../languages/dynamic_strings.php:196
5020
  #, fuzzy
5021
  msgid "l-hi-in"
5022
  msgstr "Hindi"
5023
 
5024
  # Croatian
5025
- #: ../languages/dynamic_strings.php:197
5026
  msgid "l-hr"
5027
  msgstr "Croatian"
5028
 
5029
  # Croatian
5030
- #: ../languages/dynamic_strings.php:198
5031
  #, fuzzy
5032
  msgid "l-hr-ba"
5033
  msgstr "Croatian"
5034
 
5035
  # Croatian
5036
- #: ../languages/dynamic_strings.php:199
5037
  #, fuzzy
5038
  msgid "l-hr-hr"
5039
  msgstr "Croatian"
5040
 
5041
  # Hungarian
5042
- #: ../languages/dynamic_strings.php:200
5043
  msgid "l-hu"
5044
  msgstr "Hungarian"
5045
 
5046
  # Hungarian (Hungary)
5047
- #: ../languages/dynamic_strings.php:201
5048
  msgid "l-hu-hu"
5049
  msgstr "Hungarian (Hungary)"
5050
 
5051
  # Armenian
5052
- #: ../languages/dynamic_strings.php:202
5053
  msgid "l-hy"
5054
  msgstr "Armenian"
5055
 
5056
  # Armenian
5057
- #: ../languages/dynamic_strings.php:203
5058
  #, fuzzy
5059
  msgid "l-hy-am"
5060
  msgstr "Armenian"
5061
 
5062
  # Indonesian
5063
- #: ../languages/dynamic_strings.php:204
5064
  msgid "l-id"
5065
  msgstr "Indonesian"
5066
 
5067
  # Indonesian
5068
- #: ../languages/dynamic_strings.php:205
5069
  #, fuzzy
5070
  msgid "l-id-id"
5071
  msgstr "Indonesian"
5072
 
5073
  # Icelandic
5074
- #: ../languages/dynamic_strings.php:206
5075
  msgid "l-is"
5076
  msgstr "Icelandic"
5077
 
5078
  # Icelandic
5079
- #: ../languages/dynamic_strings.php:207
5080
  #, fuzzy
5081
  msgid "l-is-is"
5082
  msgstr "Icelandic"
5083
 
5084
  # Italian
5085
- #: ../languages/dynamic_strings.php:208
5086
  msgid "l-it"
5087
  msgstr "Italian"
5088
 
5089
  # Italian (Switzerland)
5090
- #: ../languages/dynamic_strings.php:209
5091
  msgid "l-it-ch"
5092
  msgstr "Italian (Switzerland)"
5093
 
5094
  # Italian (Italia)
5095
- #: ../languages/dynamic_strings.php:210
5096
  msgid "l-it-it"
5097
  msgstr "Italian (Italia)"
5098
 
5099
  # Japanese
5100
- #: ../languages/dynamic_strings.php:211
5101
  msgid "l-ja"
5102
  msgstr "Japanese"
5103
 
5104
  # Japanes
5105
- #: ../languages/dynamic_strings.php:212
5106
  msgid "l-ja-jp"
5107
  msgstr "Japanese"
5108
 
5109
  # Georgian
5110
- #: ../languages/dynamic_strings.php:213
5111
  msgid "l-ka"
5112
  msgstr "Georgian"
5113
 
5114
  # Georgian
5115
- #: ../languages/dynamic_strings.php:214
5116
  #, fuzzy
5117
  msgid "l-ka-ge"
5118
  msgstr "Georgian"
5119
 
5120
  # Kazakh
5121
- #: ../languages/dynamic_strings.php:215
5122
  msgid "l-kk"
5123
  msgstr "Kazakh"
5124
 
5125
  # Kazakh
5126
- #: ../languages/dynamic_strings.php:216
5127
  #, fuzzy
5128
  msgid "l-kk-kz"
5129
  msgstr "Kazakh"
5130
 
5131
  # Kannada
5132
- #: ../languages/dynamic_strings.php:217
5133
  msgid "l-kn"
5134
  msgstr "Kannada"
5135
 
5136
  # Kannada
5137
- #: ../languages/dynamic_strings.php:218
5138
  #, fuzzy
5139
  msgid "l-kn-in"
5140
  msgstr "Kannada"
5141
 
5142
  # Korean
5143
- #: ../languages/dynamic_strings.php:219
5144
  msgid "l-ko"
5145
  msgstr "Korean"
5146
 
5147
  # Korean (Republic of Korea)
5148
- #: ../languages/dynamic_strings.php:220
5149
  msgid "l-ko-kr"
5150
  msgstr "Korean (Republic of Korea)"
5151
 
5152
  # Korean
5153
- #: ../languages/dynamic_strings.php:221
5154
  #, fuzzy
5155
  msgid "l-kok"
5156
  msgstr "Korean"
5157
 
5158
  # Korean
5159
- #: ../languages/dynamic_strings.php:222
5160
  #, fuzzy
5161
  msgid "l-kok-in"
5162
  msgstr "Korean"
5163
 
5164
  # Kirghiz; Kyrgyz
5165
- #: ../languages/dynamic_strings.php:223
5166
  msgid "l-ky"
5167
  msgstr "Kirghiz; Kyrgyz"
5168
 
5169
  # Kirghiz; Kyrgyz
5170
- #: ../languages/dynamic_strings.php:224
5171
  #, fuzzy
5172
  msgid "l-ky-kg"
5173
  msgstr "Kirghiz; Kyrgyz"
5174
 
5175
  # Lithuanian
5176
- #: ../languages/dynamic_strings.php:225
5177
  msgid "l-lt"
5178
  msgstr "Lithuanian"
5179
 
5180
  # Lithuanian
5181
- #: ../languages/dynamic_strings.php:226
5182
  #, fuzzy
5183
  msgid "l-lt-lt"
5184
  msgstr "Lithuanian"
5185
 
5186
  # Latvian
5187
- #: ../languages/dynamic_strings.php:227
5188
  msgid "l-lv"
5189
  msgstr "Latvian"
5190
 
5191
  # Latvian
5192
- #: ../languages/dynamic_strings.php:228
5193
  #, fuzzy
5194
  msgid "l-lv-lv"
5195
  msgstr "Latvian"
5196
 
5197
  # Maori
5198
- #: ../languages/dynamic_strings.php:229
5199
  msgid "l-mi"
5200
  msgstr "Maori"
5201
 
5202
  # Maori
5203
- #: ../languages/dynamic_strings.php:230
5204
  #, fuzzy
5205
  msgid "l-mi-nz"
5206
  msgstr "Maori"
5207
 
5208
  # Macedonian
5209
- #: ../languages/dynamic_strings.php:231
5210
  msgid "l-mk"
5211
  msgstr "Macedonian"
5212
 
5213
  # Macedonian
5214
- #: ../languages/dynamic_strings.php:232
5215
  #, fuzzy
5216
  msgid "l-mk-ml"
5217
  msgstr "Macedonian"
5218
 
5219
  # Mongolian
5220
- #: ../languages/dynamic_strings.php:233
5221
  msgid "l-mn"
5222
  msgstr "Mongolian"
5223
 
5224
  # Mongolian
5225
- #: ../languages/dynamic_strings.php:234
5226
  #, fuzzy
5227
  msgid "l-mn-mn"
5228
  msgstr "Mongolian"
5229
 
5230
  # Marathi
5231
- #: ../languages/dynamic_strings.php:235
5232
  msgid "l-mr"
5233
  msgstr "Marathi"
5234
 
5235
  # Marathi
5236
- #: ../languages/dynamic_strings.php:236
5237
  #, fuzzy
5238
  msgid "l-mr-in"
5239
  msgstr "Marathi"
5240
 
5241
  # Malay
5242
- #: ../languages/dynamic_strings.php:237
5243
  msgid "l-ms"
5244
  msgstr "Malay"
5245
 
5246
  # Malay
5247
- #: ../languages/dynamic_strings.php:238
5248
  #, fuzzy
5249
  msgid "l-ms-bn"
5250
  msgstr "Malay"
5251
 
5252
  # Malay
5253
- #: ../languages/dynamic_strings.php:239
5254
  #, fuzzy
5255
  msgid "l-ms-my"
5256
  msgstr "Malay"
5257
 
5258
  # Maltese
5259
- #: ../languages/dynamic_strings.php:240
5260
  msgid "l-mt"
5261
  msgstr "Maltese"
5262
 
5263
  # Maltese
5264
- #: ../languages/dynamic_strings.php:241
5265
  #, fuzzy
5266
  msgid "l-mt-mt"
5267
  msgstr "Maltese"
5268
 
5269
  # Norwegian Bokmål
5270
- #: ../languages/dynamic_strings.php:242
5271
  msgid "l-nb"
5272
  msgstr "Norwegian Bokmål"
5273
 
5274
  # Norwegian Bokmål
5275
- #: ../languages/dynamic_strings.php:243
5276
  #, fuzzy
5277
  msgid "l-nb-no"
5278
  msgstr "Norwegian Bokmål"
5279
 
5280
  # Dutch; Flemish
5281
- #: ../languages/dynamic_strings.php:244
5282
  msgid "l-nl"
5283
  msgstr "Dutch; Flemish"
5284
 
5285
  # Dutch (Belgium)
5286
- #: ../languages/dynamic_strings.php:245
5287
  msgid "l-nl-be"
5288
  msgstr "Dutch (Belgium)"
5289
 
5290
  # Dutch (Netherlands)
5291
- #: ../languages/dynamic_strings.php:246
5292
  msgid "l-nl-nl"
5293
  msgstr "Dutch (Netherlands)"
5294
 
5295
  # Norwegian Nynorsk
5296
- #: ../languages/dynamic_strings.php:247
5297
  #, fuzzy
5298
  msgid "l-nn-no"
5299
  msgstr "Norwegian Nynorsk"
5300
 
5301
- #: ../languages/dynamic_strings.php:248
5302
  msgid "l-ns"
5303
  msgstr ""
5304
 
5305
- #: ../languages/dynamic_strings.php:249
5306
  msgid "l-ns-za"
5307
  msgstr ""
5308
 
5309
  # Panjabi; Punjabi
5310
- #: ../languages/dynamic_strings.php:250
5311
  msgid "l-pa"
5312
  msgstr "Panjabi; Punjabi"
5313
 
5314
  # Panjabi; Punjabi
5315
- #: ../languages/dynamic_strings.php:251
5316
  #, fuzzy
5317
  msgid "l-pa-in"
5318
  msgstr "Panjabi; Punjabi"
5319
 
5320
  # Polish
5321
- #: ../languages/dynamic_strings.php:252
5322
  msgid "l-pl"
5323
  msgstr "Polish"
5324
 
5325
  # Polish
5326
- #: ../languages/dynamic_strings.php:253
5327
  msgid "l-pl-pl"
5328
  msgstr "Polish (Poland)"
5329
 
5330
  # Pushto; Pashto
5331
- #: ../languages/dynamic_strings.php:254
5332
  msgid "l-ps"
5333
  msgstr "Pushto; Pashto"
5334
 
5335
  # Spanish (Argentina)
5336
- #: ../languages/dynamic_strings.php:255
5337
  #, fuzzy
5338
  msgid "l-ps-ar"
5339
  msgstr "Spanish (Argentina)"
5340
 
5341
  # Portuguese
5342
- #: ../languages/dynamic_strings.php:256
5343
  msgid "l-pt"
5344
  msgstr "Portuguese"
5345
 
5346
  # Portuguese (Brazil)
5347
- #: ../languages/dynamic_strings.php:257
5348
  msgid "l-pt-br"
5349
  msgstr "Portuguese (Brazil)"
5350
 
5351
  # Portuguese
5352
- #: ../languages/dynamic_strings.php:258
5353
  msgid "l-pt-pt"
5354
  msgstr "Portuguese (Portugal)"
5355
 
5356
  # Quechua
5357
- #: ../languages/dynamic_strings.php:259
5358
  msgid "l-qu"
5359
  msgstr "Quechua"
5360
 
5361
  # Quechua
5362
- #: ../languages/dynamic_strings.php:260
5363
  #, fuzzy
5364
  msgid "l-qu-bo"
5365
  msgstr "Quechua"
5366
 
5367
  # Quechua
5368
- #: ../languages/dynamic_strings.php:261
5369
  #, fuzzy
5370
  msgid "l-qu-ec"
5371
  msgstr "Quechua"
5372
 
5373
  # Quechua
5374
- #: ../languages/dynamic_strings.php:262
5375
  #, fuzzy
5376
  msgid "l-qu-pe"
5377
  msgstr "Quechua"
5378
 
5379
  # Romanian; Moldavian; Moldovan
5380
- #: ../languages/dynamic_strings.php:263
5381
  msgid "l-ro"
5382
  msgstr "Romanian; Moldavian; Moldovan"
5383
 
5384
  # Romanian; Moldavian; Moldovan
5385
- #: ../languages/dynamic_strings.php:264
5386
  #, fuzzy
5387
  msgid "l-ro-ro"
5388
  msgstr "Romanian; Moldavian; Moldovan"
5389
 
5390
  # Russian
5391
- #: ../languages/dynamic_strings.php:265
5392
  msgid "l-ru"
5393
  msgstr "Russian"
5394
 
5395
  # Russian (Russia)
5396
- #: ../languages/dynamic_strings.php:266
5397
  msgid "l-ru-ru"
5398
  msgstr "Russian (Russia)"
5399
 
5400
  # Sanskrit
5401
- #: ../languages/dynamic_strings.php:267
5402
  msgid "l-sa"
5403
  msgstr "Sanskrit"
5404
 
5405
  # Sanskrit
5406
- #: ../languages/dynamic_strings.php:268
5407
  #, fuzzy
5408
  msgid "l-sa-in"
5409
  msgstr "Sanskrit"
5410
 
5411
  # Northern Sami
5412
- #: ../languages/dynamic_strings.php:269
5413
  msgid "l-se"
5414
  msgstr "Northern Sami"
5415
 
5416
  # Northern Sami
5417
- #: ../languages/dynamic_strings.php:270
5418
  #, fuzzy
5419
  msgid "l-se-fi"
5420
  msgstr "Northern Sami"
5421
 
5422
  # Northern Sami
5423
- #: ../languages/dynamic_strings.php:271
5424
  #, fuzzy
5425
  msgid "l-se-no"
5426
  msgstr "Northern Sami"
5427
 
5428
  # Northern Sami
5429
- #: ../languages/dynamic_strings.php:272
5430
  #, fuzzy
5431
  msgid "l-se-se"
5432
  msgstr "Northern Sami"
5433
 
5434
  # Slovak
5435
- #: ../languages/dynamic_strings.php:273
5436
  msgid "l-sk"
5437
  msgstr "Slovak"
5438
 
5439
  # Slovak
5440
- #: ../languages/dynamic_strings.php:274
5441
  #, fuzzy
5442
  msgid "l-sk-sk"
5443
  msgstr "Slovak"
5444
 
5445
  # Slovenian
5446
- #: ../languages/dynamic_strings.php:275
5447
  msgid "l-sl"
5448
  msgstr "Slovenian"
5449
 
5450
  # Sinhala; Sinhalese
5451
- #: ../languages/dynamic_strings.php:276
5452
  #, fuzzy
5453
  msgid "l-sl-si"
5454
  msgstr "Sinhala; Sinhalese"
5455
 
5456
  # Albanian
5457
- #: ../languages/dynamic_strings.php:277
5458
  msgid "l-sq"
5459
  msgstr "Albanian"
5460
 
5461
  # Albanian
5462
- #: ../languages/dynamic_strings.php:278
5463
  #, fuzzy
5464
  msgid "l-sq-al"
5465
  msgstr "Albanian"
5466
 
5467
  # Serbian
5468
- #: ../languages/dynamic_strings.php:279
5469
  #, fuzzy
5470
  msgid "l-sr-ba"
5471
  msgstr "Serbian"
5472
 
5473
  # Serbian
5474
- #: ../languages/dynamic_strings.php:280
5475
  #, fuzzy
5476
  msgid "l-sr-sp"
5477
  msgstr "Serbian"
5478
 
5479
  # Swedish
5480
- #: ../languages/dynamic_strings.php:281
5481
  msgid "l-sv"
5482
  msgstr "Swedish"
5483
 
5484
  # Swedish (Finland)
5485
- #: ../languages/dynamic_strings.php:282
5486
  msgid "l-sv-fi"
5487
  msgstr "Swedish (Finland)"
5488
 
5489
  # Swedish (Sweden)
5490
- #: ../languages/dynamic_strings.php:283
5491
  msgid "l-sv-se"
5492
  msgstr "Swedish (Sweden)"
5493
 
5494
  # Swahili
5495
- #: ../languages/dynamic_strings.php:284
5496
  msgid "l-sw"
5497
  msgstr "Swahili"
5498
 
5499
  # Swahili
5500
- #: ../languages/dynamic_strings.php:285
5501
  #, fuzzy
5502
  msgid "l-sw-ke"
5503
  msgstr "Swahili"
5504
 
5505
  # Tamil
5506
- #: ../languages/dynamic_strings.php:286
5507
  msgid "l-ta"
5508
  msgstr "Tamil"
5509
 
5510
  # Tamil
5511
- #: ../languages/dynamic_strings.php:287
5512
  #, fuzzy
5513
  msgid "l-ta-in"
5514
  msgstr "Tamil"
5515
 
5516
  # Telugu
5517
- #: ../languages/dynamic_strings.php:288
5518
  msgid "l-te"
5519
  msgstr "Telugu"
5520
 
5521
  # Telugu
5522
- #: ../languages/dynamic_strings.php:289
5523
  #, fuzzy
5524
  msgid "l-te-in"
5525
  msgstr "Telugu"
5526
 
5527
  # Thai
5528
- #: ../languages/dynamic_strings.php:290
5529
  msgid "l-th"
5530
  msgstr "Thai"
5531
 
5532
  # Thai
5533
- #: ../languages/dynamic_strings.php:291
5534
  msgid "l-th-th"
5535
  msgstr "Thai (Thailand)"
5536
 
5537
  # Tagalog
5538
- #: ../languages/dynamic_strings.php:292
5539
  msgid "l-tl"
5540
  msgstr "Tagalog"
5541
 
5542
  # Tagalog
5543
- #: ../languages/dynamic_strings.php:293
5544
  #, fuzzy
5545
  msgid "l-tl-ph"
5546
  msgstr "Tagalog"
5547
 
5548
  # Tswana
5549
- #: ../languages/dynamic_strings.php:294
5550
  msgid "l-tn"
5551
  msgstr "Tswana"
5552
 
5553
  # English (South Africa)
5554
- #: ../languages/dynamic_strings.php:295
5555
  #, fuzzy
5556
  msgid "l-tn-za"
5557
  msgstr "English (South Africa)"
5558
 
5559
  # Turkish
5560
- #: ../languages/dynamic_strings.php:296
5561
  msgid "l-tr"
5562
  msgstr "Turkish"
5563
 
5564
  # Turkish
5565
- #: ../languages/dynamic_strings.php:297
5566
  msgid "l-tr-tr"
5567
  msgstr "Turkish"
5568
 
5569
  # Tatar
5570
- #: ../languages/dynamic_strings.php:298
5571
  msgid "l-tt"
5572
  msgstr "Tatar"
5573
 
5574
  # Tatar
5575
- #: ../languages/dynamic_strings.php:299
5576
  #, fuzzy
5577
  msgid "l-tt-ru"
5578
  msgstr "Tatar"
5579
 
5580
  # Tsonga
5581
- #: ../languages/dynamic_strings.php:300
5582
  msgid "l-ts"
5583
  msgstr "Tsonga"
5584
 
5585
  # Ukrainian
5586
- #: ../languages/dynamic_strings.php:301
5587
  msgid "l-uk"
5588
  msgstr "Ukrainian"
5589
 
5590
  # Ukrainian
5591
- #: ../languages/dynamic_strings.php:302
5592
  #, fuzzy
5593
  msgid "l-uk-ua"
5594
  msgstr "Ukrainian"
5595
 
5596
  # Urdu
5597
- #: ../languages/dynamic_strings.php:303
5598
  msgid "l-ur"
5599
  msgstr "Urdu"
5600
 
5601
  # Urdu
5602
- #: ../languages/dynamic_strings.php:304
5603
  #, fuzzy
5604
  msgid "l-ur-pk"
5605
  msgstr "Urdu"
5606
 
5607
  # Uzbek
5608
- #: ../languages/dynamic_strings.php:305
5609
  msgid "l-uz"
5610
  msgstr "Uzbek"
5611
 
5612
  # Uzbek
5613
- #: ../languages/dynamic_strings.php:306
5614
  #, fuzzy
5615
  msgid "l-uz-uz"
5616
  msgstr "Uzbek"
5617
 
5618
  # Vietnamese
5619
- #: ../languages/dynamic_strings.php:307
5620
  msgid "l-vi"
5621
  msgstr "Vietnamese"
5622
 
5623
  # Vietnamese
5624
- #: ../languages/dynamic_strings.php:308
5625
  msgid "l-vi-vn"
5626
  msgstr "Vietnamese (Vietnam)"
5627
 
5628
  # Xhosa
5629
- #: ../languages/dynamic_strings.php:309
5630
  msgid "l-xh"
5631
  msgstr "Xhosa"
5632
 
5633
  # Xhosa
5634
- #: ../languages/dynamic_strings.php:310
5635
  #, fuzzy
5636
  msgid "l-xh-za"
5637
  msgstr "Xhosa"
5638
 
5639
  # Chinese
5640
- #: ../languages/dynamic_strings.php:311
5641
  msgid "l-zh"
5642
  msgstr "Chinese"
5643
 
5644
  # Chinese (China)
5645
- #: ../languages/dynamic_strings.php:312
5646
  msgid "l-zh-cn"
5647
  msgstr "Chinese (China)"
5648
 
5649
  # Chinese (Hong Kong)
5650
- #: ../languages/dynamic_strings.php:313
5651
  msgid "l-zh-hk"
5652
  msgstr "Chinese (Hong Kong)"
5653
 
5654
  # Chinese
5655
- #: ../languages/dynamic_strings.php:314
5656
  #, fuzzy
5657
  msgid "l-zh-mo"
5658
  msgstr "Chinese"
5659
 
5660
  # Chinese (Singapore)
5661
- #: ../languages/dynamic_strings.php:315
5662
  msgid "l-zh-sg"
5663
  msgstr "Chinese (Singapore)"
5664
 
5665
  # Chinese (Taiwan)
5666
- #: ../languages/dynamic_strings.php:316
5667
  msgid "l-zh-tw"
5668
  msgstr "Taiwanese"
5669
 
5670
  # Zulu
5671
- #: ../languages/dynamic_strings.php:317
5672
  msgid "l-zu"
5673
  msgstr "Zulu"
5674
 
5675
  # Zulu
5676
- #: ../languages/dynamic_strings.php:318
5677
  #, fuzzy
5678
  msgid "l-zu-za"
5679
  msgstr "Zulu"
5680
 
5681
  # Unknown
5682
- #: ../languages/dynamic_strings.php:320
5683
  msgid "l-empty"
5684
  msgstr "Unknown"
5685
 
5686
  # Unknown
5687
- #: ../languages/dynamic_strings.php:321
5688
  msgid "l-xx"
5689
  msgstr "Unknown"
5690
 
5691
- #: ../languages/dynamic_strings.php:323
5692
  msgid "c-xy"
5693
  msgstr "Lokale IP-Adresse"
5694
 
5695
- #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5696
  msgid "Notice: Pageview filtered by third-party code"
5697
  msgstr ""
5698
 
5699
- #: ../wp-slimstat.php:240
5700
  #, fuzzy, php-format
5701
  msgid "Error: Malformed URL %s"
5702
  msgstr "Ignoriere Benutzer"
5703
 
5704
- #: ../wp-slimstat.php:259
5705
  #, fuzzy, php-format
5706
  msgid "Notice: Referrer %s is blacklisted"
5707
  msgstr "Browser-F&auml;higkeiten"
5708
 
5709
- #: ../wp-slimstat.php:347
5710
  #, fuzzy, php-format
5711
  msgid "Notice: Permalink %s is blacklisted"
5712
  msgstr "Browser-F&auml;higkeiten"
5713
 
5714
- #: ../wp-slimstat.php:358
5715
  msgid "Error: Empty or not supported IP address format (IPv6)"
5716
  msgstr ""
5717
 
5718
- #: ../wp-slimstat.php:367
5719
  #, php-format
5720
  msgid "Notice: Logged in user %s not tracked"
5721
  msgstr ""
5722
 
5723
- #: ../wp-slimstat.php:375
5724
  #, php-format
5725
  msgid "Notice: User with capability %s not tracked"
5726
  msgstr ""
5727
 
5728
- #: ../wp-slimstat.php:385
5729
  #, fuzzy, php-format
5730
  msgid "Notice: User %s is blacklisted"
5731
  msgstr "Browser-F&auml;higkeiten"
5732
 
5733
- #: ../wp-slimstat.php:406
5734
  #, fuzzy, php-format
5735
  msgid "Notice: Spammer %s not tracked"
5736
  msgstr "Bot oder Crawler"
5737
 
5738
- #: ../wp-slimstat.php:435
5739
  #, fuzzy, php-format
5740
  msgid "Notice: IP address %s is blacklisted"
5741
  msgstr "Browser-F&auml;higkeiten"
5742
 
5743
- #: ../wp-slimstat.php:464
5744
  #, fuzzy, php-format
5745
  msgid "Notice: Country %s is blacklisted"
5746
  msgstr "Browser-F&auml;higkeiten"
5747
 
5748
- #: ../wp-slimstat.php:473
5749
  msgid "Notice: Prefetch requests are ignored"
5750
  msgstr ""
5751
 
5752
- #: ../wp-slimstat.php:489
5753
  #, fuzzy
5754
  msgid "Notice: Bot not tracked"
5755
  msgstr "Bot oder Crawler"
5756
 
5757
- #: ../wp-slimstat.php:498
5758
  #, fuzzy, php-format
5759
  msgid "Notice: Browser %s is blacklisted"
5760
  msgstr "Browser-F&auml;higkeiten"
5761
 
5762
- #: ../wp-slimstat.php:528
5763
  msgid "Error:"
5764
  msgstr ""
5765
 
5766
- #: ../wp-slimstat.php:1209
5767
  msgid "Invalid payload string. Try clearing your WordPress cache."
5768
  msgstr ""
5769
 
5770
- #: ../wp-slimstat.php:1219
5771
  msgid "Invalid data signature. Try clearing your WordPress cache."
5772
  msgstr ""
5773
 
5774
- #: ../wp-slimstat.php:1289
5775
  #, fuzzy
5776
  msgid "There was an error downloading the MaxMind Geolite DB:"
5777
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5778
 
5779
- #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5780
  #, fuzzy
5781
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5782
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5783
 
5784
- #: ../wp-slimstat.php:1301
5785
  msgid "Function gzopen not defined. Aborting."
5786
  msgstr ""
5787
 
5788
- #: ../wp-slimstat.php:1311
5789
  #, fuzzy
5790
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5791
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5792
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5793
  #~ msgid "Ignore users (username not found)"
5794
  #~ msgstr "Benutzer ignorieren (Benutzername nicht gefunden)"
5795
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2016-01-28 21:08-0500\n"
5
+ "PO-Revision-Date: 2016-01-28 21:08-0500\n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: TechnoViel <klaus@technoviel.de>\n"
8
  "Language: de_DE\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../admin/config/index.php:33
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
24
  msgstr ""
25
 
26
+ #: ../admin/config/index.php:48
27
  msgid "Read access: username not found"
28
  msgstr "Lesezugriff: Benutzername nicht gefunden"
29
 
30
+ #: ../admin/config/index.php:58 ../admin/config/index.php:83
31
  #, fuzzy
32
  msgid ""
33
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
38
  "\"http://codex.wordpress.org/Roles_and_Capabilities\" target=\"_new\">hier</"
39
  "a>."
40
 
41
+ #: ../admin/config/index.php:73
42
  msgid "Config access: username not found"
43
  msgstr "Konfigurationszugriff: Benutzername nicht gefunden."
44
 
45
+ #: ../admin/config/index.php:92
46
  msgid "Basic"
47
  msgstr ""
48
 
49
+ #: ../admin/config/index.php:94 ../admin/config/index.php:115
50
  #, fuzzy
51
  msgid "Tracker"
52
  msgstr "Benutzer tracken"
53
 
54
+ #: ../admin/config/index.php:95
55
  #, fuzzy
56
  msgid "Enable Tracking"
57
  msgstr "Verfolgung aktivieren"
58
 
59
+ #: ../admin/config/index.php:95
60
  msgid "Turn the tracker on or off, while keeping the reports accessible."
61
  msgstr ""
62
 
63
+ #: ../admin/config/index.php:96
64
  #, fuzzy
65
  msgid "Tracking Mode"
66
  msgstr "Tracking aktiv"
67
 
68
+ #: ../admin/config/index.php:96
69
  #, fuzzy
70
  msgid ""
71
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
80
  "tzt ignorieren. Ein netter Nebeneffekt: Die meisten Spammer, Suchmaschinen "
81
  "und andere Crawler werden so nicht mehr berücksichtigt."
82
 
83
+ #: ../admin/config/index.php:96
84
  msgid "Client Side"
85
  msgstr ""
86
 
87
+ #: ../admin/config/index.php:96
88
  #, fuzzy
89
  msgid "Server Side"
90
  msgstr "Serverseitig"
91
 
92
+ #: ../admin/config/index.php:97
93
  msgid "Stealth Mode"
94
  msgstr ""
95
 
96
+ #: ../admin/config/index.php:97
97
  msgid ""
98
  "Do not add the javascript tracking code to your pages, if tracking mode is "
99
  "set to Server. Please note: if enabled, this will prevent the tracker from "
100
  "collecting information such as screen resolution, outbound links, downloads, "
101
+ "etc. This option is ignored if Tracking Mode is set to Client."
102
  msgstr ""
103
 
104
+ #: ../admin/config/index.php:97 ../admin/view/wp-slimstat-reports.php:1368
105
  msgid "Off"
106
  msgstr "Aus"
107
 
108
+ #: ../admin/config/index.php:97
109
  msgid "On"
110
  msgstr "An"
111
 
112
+ #: ../admin/config/index.php:98
113
  #, fuzzy
114
  msgid "Admin Pages"
115
  msgstr "Verfolgen Admin-Seiten"
116
 
117
  # correct, if admin = admin area
118
+ #: ../admin/config/index.php:98
119
  #, fuzzy
120
  msgid "Enable this option to track your users' activity within the admin."
121
  msgstr ""
122
  "Aktivieren Sie diese Option, wenn Sie die Aktivitäten Ihrer Benutzer "
123
  "innerhalb des Adminbereiches verfolgen wollen."
124
 
125
+ #: ../admin/config/index.php:98
126
  #, fuzzy
127
  msgid "Track"
128
  msgstr "Benutzer tracken"
129
 
130
+ #: ../admin/config/index.php:98
131
  #, fuzzy
132
  msgid "Do not track"
133
  msgstr "Bot oder Crawler"
134
 
135
+ #: ../admin/config/index.php:100
136
  msgid "WordPress Integration"
137
  msgstr "WordPress-Integration"
138
 
139
+ #: ../admin/config/index.php:101
140
  #, fuzzy
141
  msgid "Menu Position"
142
  msgstr "Suchmaschinenrang"
143
 
144
+ #: ../admin/config/index.php:101
145
  #, fuzzy
146
  msgid ""
147
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
150
  "Das Dashboard-Men&uuml; kann um ein eigenes WP SlimStat Men&uuml; erg&auml;"
151
  "nzt werden."
152
 
153
+ #: ../admin/config/index.php:101
154
  msgid "Side Menu"
155
  msgstr "Seitenmenü"
156
 
157
+ #: ../admin/config/index.php:101
158
  msgid "Admin Bar"
159
  msgstr "Adminleiste"
160
 
161
+ #: ../admin/config/index.php:102
162
  #, fuzzy
163
  msgid "Posts and Pages"
164
  msgstr "Top-Einstiegsseiten"
165
 
166
+ #: ../admin/config/index.php:102
167
  #, fuzzy
168
  msgid ""
169
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
172
  "F&uuml;gt eine Spalte in der Beitrags&uuml;bersicht ein, welche die Anzahl "
173
  "der Zugriffe pro Beitrag anzeigt."
174
 
175
+ #: ../admin/config/index.php:103
176
  #, fuzzy
177
  msgid "Report Interval"
178
  msgstr "Eindeutige interne Zugriffe"
179
 
180
+ #: ../admin/config/index.php:103
181
  msgid ""
182
  "Enter the time range, in days, that should be used to calculate the value "
183
  "here above."
184
  msgstr ""
185
 
186
+ #: ../admin/config/index.php:104
187
  #, fuzzy
188
  msgid "Report Type"
189
  msgstr "Auswertungen"
190
 
191
+ #: ../admin/config/index.php:104
192
  msgid ""
193
  "Select what kind of information you would like to see displayed on the Posts "
194
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
195
  "IPs consider only one hit per user in the given time range."
196
  msgstr ""
197
 
198
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:81
199
+ #: ../admin/view/wp-slimstat-reports.php:90
200
+ #: ../admin/view/wp-slimstat-reports.php:1384
201
+ #: ../admin/view/wp-slimstat-reports.php:1542
202
  msgid "Pageviews"
203
  msgstr "Seitenaufrufe"
204
 
205
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:91
206
+ #: ../admin/view/wp-slimstat-reports.php:284
207
+ #: ../admin/view/wp-slimstat-reports.php:525
208
+ #: ../admin/view/wp-slimstat-reports.php:1399
209
+ #: ../admin/view/wp-slimstat-reports.php:1444
210
  msgid "Unique IPs"
211
  msgstr "Eindeutige IPs"
212
 
213
+ #: ../admin/config/index.php:105
214
  #, fuzzy
215
  msgid "Dashboard Widgets"
216
  msgstr "&Uuml;bersicht"
217
 
218
+ #: ../admin/config/index.php:105
219
  msgid ""
220
  "Choose if you want to have the most important reports on your WordPress "
221
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
222
  msgstr ""
223
 
224
+ #: ../admin/config/index.php:106
225
  #, fuzzy
226
  msgid "Hide Add-ons"
227
  msgstr "Add-Ons"
228
 
229
+ #: ../admin/config/index.php:106
230
  msgid ""
231
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
232
  "from the list of plugins in WordPress. Please note that you will still "
233
  "receive updates for hidden add-ons."
234
  msgstr ""
235
 
236
+ #: ../admin/config/index.php:108
237
  msgid "Database"
238
  msgstr "Datenbank"
239
 
240
+ #: ../admin/config/index.php:109
241
  msgid "Retain data for"
242
  msgstr ""
243
 
244
+ #: ../admin/config/index.php:109
245
  msgid ""
246
  "Clean-up log entries older than the number of days specified here above. "
247
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
248
  "regardless of its age."
249
  msgstr ""
250
 
251
+ #: ../admin/config/index.php:109
252
  msgid "Next clean-up on"
253
  msgstr "N&auml;chste Bereinigung "
254
 
255
+ #: ../admin/config/index.php:109
256
  #, fuzzy, php-format
257
  msgid ""
258
  "Entries logged on or before %s will be archived or deleted according to the "
261
  "Eintr&auml;ge, die vor dem %s erfasst wurden werden unwiderruflich gel&ouml;"
262
  "scht."
263
 
264
+ #: ../admin/config/index.php:109 ../admin/view/index.php:102
265
  #: ../admin/view/wp-slimstat-db.php:79
266
+ #: ../admin/view/wp-slimstat-reports.php:1368
267
  msgid "days"
268
  msgstr "Tage"
269
 
270
+ #: ../admin/config/index.php:110
271
  #, fuzzy
272
+ msgid "Archive records"
273
  msgstr "Datensätze"
274
 
275
+ #: ../admin/config/index.php:110
276
  msgid ""
277
  "If DB space is not an issue, you can decide to archive older records in "
278
  "another table, instead of deleting them. This way performance is preserved, "
282
  "is uninstalled. Make sure to backup your data before you proceed."
283
  msgstr ""
284
 
285
+ #: ../admin/config/index.php:117
286
  #, fuzzy
287
  msgid "Advanced Options"
288
  msgstr "Erweiterte Filter"
289
 
290
+ #: ../admin/config/index.php:118
291
  msgid "Session Duration"
292
  msgstr "Besuchsdauer"
293
 
294
+ #: ../admin/config/index.php:118
295
  #, fuzzy
296
  msgid ""
297
  "How many seconds should a human session last? Google Analytics sets it to "
300
  "Definiert, wie viele Sekunden ein Besuch dauern soll. Bei Google Analytics "
301
  "wird hier 1.800 Sekunden vorgeschlagen."
302
 
303
+ #: ../admin/config/index.php:118 ../admin/config/index.php:189
304
  msgid "seconds"
305
  msgstr "Sekunden"
306
 
307
+ #: ../admin/config/index.php:119
308
  msgid "Extend Session"
309
  msgstr "Sitzung erweitern"
310
 
311
+ #: ../admin/config/index.php:119
312
  #, fuzzy
313
  msgid "Extend the duration of a session each time the user visits a new page."
314
  msgstr ""
315
  "Verlängert die Dauer einer Sitzung jedes Mal um die hier eingegebene Zahl an "
316
  "Sekunden, wenn ein Benutzer eine neue Seite aufruft."
317
 
318
+ #: ../admin/config/index.php:120
319
+ #, fuzzy
320
+ msgid "Browser Detection"
321
+ msgstr "Browser-Version"
322
+
323
+ #: ../admin/config/index.php:120
324
+ msgid ""
325
+ "The heuristic function is much faster and requires very little memory, but "
326
+ "for uncommon user agent strings it might be less accurate, and produce a "
327
+ "unreliable match. Browscap.ini, the third party database we use, is memory "
328
+ "intensive and it uses a bruteforce approach to determine a visitor's "
329
+ "browser, but it's very accurate and precise even with the most obscure user "
330
+ "agent strings (almost all of them). You decide which one should be used "
331
+ "first: the other one will only be invoked if the one you chose did not "
332
+ "produce a match."
333
+ msgstr ""
334
+
335
+ #: ../admin/config/index.php:120
336
+ #, fuzzy
337
+ msgid "Browscap"
338
+ msgstr "Browser"
339
+
340
+ #: ../admin/config/index.php:120
341
+ msgid "Heuristic"
342
+ msgstr ""
343
+
344
+ #: ../admin/config/index.php:121
345
  msgid "Enable CDN"
346
  msgstr "CDN aktivieren"
347
 
348
+ #: ../admin/config/index.php:121
349
  msgid ""
350
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
351
  "by serving our tracking code from their fast and reliable network (free "
352
  "service)."
353
  msgstr ""
354
 
355
+ #: ../admin/config/index.php:122
356
  msgid "Extensions to Track"
357
  msgstr "Zu verfolgende Erweiterungen"
358
 
359
+ #: ../admin/config/index.php:122
360
  #, fuzzy
361
  msgid ""
362
  "List all the file extensions that you want to be treated as Downloads. "
371
  "nicht als 'Ausgehende Links' gewertet werden, wenn der Typ in der folgenden "
372
  "Liste enthalten ist."
373
 
374
+ #: ../admin/config/index.php:124
375
  #, fuzzy
376
  msgid "Internal and Outbound Links"
377
  msgstr "Letzte ausgehende Links"
378
 
379
+ #: ../admin/config/index.php:125
380
  msgid "Track Outbound Clicks"
381
  msgstr "Letzte ausgehende Links"
382
 
383
+ #: ../admin/config/index.php:125
384
  msgid ""
385
  "Track when your visitors click on link to external websites. This option "
386
  "required Spy Mode to be enabled."
387
  msgstr ""
388
 
389
+ #: ../admin/config/index.php:126
390
  #, fuzzy
391
  msgid "Track Coordinates"
392
  msgstr "Tracking aktiv"
393
 
394
+ #: ../admin/config/index.php:126
395
  msgid ""
396
  "Collect mouse coordinates and other information for clicks on internal "
397
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
398
  "this information is only collected for external links."
399
  msgstr ""
400
 
401
+ #: ../admin/config/index.php:127
402
  msgid "No Callback"
403
  msgstr ""
404
 
405
+ #: ../admin/config/index.php:127
406
  msgid ""
407
  "Track the event but do not invoke the callback function on links marked with "
408
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
410
  "prevent conflicts with lightbox and similar libraries."
411
  msgstr ""
412
 
413
+ #: ../admin/config/index.php:128
414
  msgid "Do Not Track"
415
  msgstr ""
416
 
417
+ #: ../admin/config/index.php:128
418
  msgid ""
419
  "Do not track links marked with one of these class names, <em>rel</em> "
420
  "attributes or whose <em>href</em> attribute contains one of these strings "
421
  "(separated by comma)."
422
  msgstr ""
423
 
424
+ #: ../admin/config/index.php:130
425
  msgid "Pages not belonging to this site"
426
  msgstr ""
427
 
428
+ #: ../admin/config/index.php:131
429
  msgid ""
430
  "Add the following code to all the non-WP pages you want to track, right "
431
  "before the closing BODY tag. Please make sure to change the protocol of all "
432
  "the URLs to HTTPS, if you external site is served over a secure channel."
433
  msgstr ""
434
 
435
+ #: ../admin/config/index.php:141
436
  #, fuzzy
437
  msgid "Allow External Domains"
438
  msgstr "Gesamte Seitenaufrufe"
439
 
440
+ #: ../admin/config/index.php:141
441
  msgid ""
442
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
443
  "header is present on the requested resource, when using the external "
448
  "security implications of allowing CORS requests."
449
  msgstr ""
450
 
451
+ #: ../admin/config/index.php:142 ../admin/config/index.php:164
452
+ #: ../admin/config/index.php:192
453
  msgid "Miscellaneous"
454
  msgstr "Diverse"
455
 
456
+ #: ../admin/config/index.php:143
457
  #, fuzzy
458
  msgid "Enable UAN"
459
  msgstr "ADN aktivieren"
460
 
461
+ #: ../admin/config/index.php:143
462
  msgid ""
463
  "Send anonymous data about user agents to our server for analysis. This "
464
  "allows us to contribute to the <a href='http://browscap.org/' "
467
  "ads network. No worries, your site will not be affected in any way."
468
  msgstr ""
469
 
470
+ #: ../admin/config/index.php:148
471
  msgid "Filters"
472
  msgstr "Filter"
473
 
474
+ #: ../admin/config/index.php:150
475
  #, fuzzy
476
  msgid "Do not track settings"
477
  msgstr "Bot oder Crawler"
478
 
479
+ #: ../admin/config/index.php:151
480
  #, fuzzy
481
  msgid "Track Registered Users"
482
  msgstr "Benutzer tracken"
483
 
484
+ #: ../admin/config/index.php:151
485
  #, fuzzy
486
  msgid "Enable this option to track logged in users."
487
  msgstr "Ja falls eingeloggte Benutzer getrackt werden sollen."
488
 
489
+ #: ../admin/config/index.php:152
490
  #, fuzzy
491
  msgid "Blacklist by Username"
492
  msgstr "IP-Adresse"
493
 
494
+ #: ../admin/config/index.php:152
495
  #, fuzzy
496
  msgid ""
497
  "List all the usernames you don't want to track, separated by commas. Please "
509
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
510
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
511
 
512
+ #: ../admin/config/index.php:153
513
  #, fuzzy
514
  msgid "Blacklist by IP Address"
515
  msgstr "IP-Adresse"
516
 
517
+ #: ../admin/config/index.php:153
518
  #, fuzzy
519
  msgid ""
520
  "List all the IP addresses you don't want to track, separated by commas. Each "
529
  "(z.B. <em>192.168.0.0/24</em>) definiert werden. Bei inkorrektem Format kann "
530
  "WP SlimStat evtl. nicht die Pageviews korrekt tracken."
531
 
532
+ #: ../admin/config/index.php:154
533
  #, fuzzy
534
  msgid "Blacklist by Capability"
535
  msgstr "Benutzer nach Browserf&auml;higkeiten"
536
 
537
+ #: ../admin/config/index.php:154
538
  #, fuzzy
539
  msgid ""
540
  "Users having at least one of the <a href='http://codex.wordpress.org/"
545
  "wordpress.org/Roles_and_Capabilities' target='_new'>CAPABILITIES</a> haben, "
546
  "werden nicht verfolgt. Bitte Groß-/Kleinschreibung beachten."
547
 
548
+ #: ../admin/config/index.php:156
549
  msgid "Profiling"
550
  msgstr ""
551
 
552
+ #: ../admin/config/index.php:157
553
  msgid "Ignore Spammers"
554
  msgstr "Spammer ignorieren"
555
 
556
+ #: ../admin/config/index.php:157
557
  #, fuzzy
558
  msgid ""
559
  "Enable this option if you don't want to track visits from users identified "
566
  "Kommentare später von Ihnen als Spam markiert werden, werden ebenso aus der "
567
  "Datenbank entfernt."
568
 
569
+ #: ../admin/config/index.php:158
570
  #, fuzzy
571
  msgid "Ignore Bots"
572
  msgstr "Ignoriere Benutzer"
573
 
574
+ #: ../admin/config/index.php:158
575
  msgid ""
576
  "Turn on this feature if you want to have the accuracy level of server-side "
577
  "tracking, but not the inconvenience of getting your database clogged with "
579
  "note that in Client mode, bots are ignored regardless of this setting."
580
  msgstr ""
581
 
582
+ #: ../admin/config/index.php:159
583
  msgid "Permalinks"
584
  msgstr "Permalinks"
585
 
586
+ #: ../admin/config/index.php:159
587
  #, fuzzy
588
  msgid ""
589
  "List all the URLs on your website that you don't want to track, separated by "
602
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
603
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
604
 
605
+ #: ../admin/config/index.php:160
606
  msgid "Countries"
607
  msgstr "L&auml;nder"
608
 
609
+ #: ../admin/config/index.php:160
610
  msgid ""
611
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
612
  "track, separated by commas."
614
  "Liste der L&auml;dercodes (z.B.: <code>en-us, de, it, es</code>), die nicht "
615
  "mit erfasst werden sollen, getrennt durch Kommata."
616
 
617
+ #: ../admin/config/index.php:161
618
  msgid "User Agents"
619
  msgstr "User Agents"
620
 
621
+ #: ../admin/config/index.php:161
622
  #, fuzzy
623
  msgid ""
624
  "Browsers (user agents) you don't want to track, separated by commas. You can "
636
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
637
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
638
 
639
+ #: ../admin/config/index.php:162
640
  msgid "Referring Sites"
641
  msgstr "Verweisende Webseiten"
642
 
643
+ #: ../admin/config/index.php:162
644
  #, fuzzy
645
  msgid ""
646
  "Referring URLs that you don't want to track, separated by commas: "
658
  "code> erfasst /aboundant und /about, <code>/abo!t</code> erfasst /about und /"
659
  "abort. Gro&szlig;-/ Kleinschreibung wird dabei nicht beachtet."
660
 
661
+ #: ../admin/config/index.php:165
662
  msgid "Enable Privacy Mode"
663
  msgstr ""
664
 
665
+ #: ../admin/config/index.php:165
666
  #, fuzzy
667
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
668
  msgstr ""
669
  "Diese Option maskiert das letzte Byte der IP-Adressen Ihrere Besucher um die "
670
  "Europ&auml;ischen Datenschutzgesetze zur erf&uuml;llen."
671
 
672
+ #: ../admin/config/index.php:166
673
  msgid "Ignore Prefetch Requests"
674
  msgstr ""
675
 
676
+ #: ../admin/config/index.php:166
677
  #, fuzzy
678
  msgid ""
679
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
683
  "Verhindert, dass WP SlimStat Pageviews trackt, die durch die <a "
684
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' target='_blank'>"
685
 
686
+ #: ../admin/config/index.php:171 ../admin/config/index.php:203
687
  msgid "Reports"
688
  msgstr "Auswertungen"
689
 
690
+ #: ../admin/config/index.php:173
691
  msgid "Formats and Conversions"
692
  msgstr ""
693
 
694
+ #: ../admin/config/index.php:174
695
  msgid "Number Format"
696
  msgstr "Zahlenformat"
697
 
698
+ #: ../admin/config/index.php:174
699
  #, fuzzy
700
  msgid "Choose the number format you want to use for your reports."
701
  msgstr "Das zu verwendente Zahlenformat ausw&auml;hlen (metrisch o. imperial)."
702
 
703
+ #: ../admin/config/index.php:175
704
  msgid "Date Format"
705
  msgstr "Datum"
706
 
707
+ #: ../admin/config/index.php:175
708
  msgid ""
709
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
710
  "Format</a> to use when displaying a pageview's date."
711
  msgstr ""
712
 
713
+ #: ../admin/config/index.php:176
714
  #, fuzzy
715
  msgid "Time Format"
716
  msgstr "Zahlenformat"
717
 
718
+ #: ../admin/config/index.php:176
719
  msgid ""
720
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
721
  "Format</a> to use when displaying a pageview's time."
722
  msgstr ""
723
 
724
+ #: ../admin/config/index.php:177
725
  #, fuzzy
726
  msgid "Use Display Name"
727
  msgstr "Spitznamen anzeigen"
728
 
729
+ #: ../admin/config/index.php:177
730
  #, fuzzy
731
  msgid ""
732
  "By default, users are listed by their usernames. Use this option to "
735
  "Standardmäßig werden die Benutzernamen aufgelistet. Benutzen Sie diese "
736
  "Option, um dafür stattdessen die Spitznamen anzeigen zu lassen,"
737
 
738
+ #: ../admin/config/index.php:178
739
  #, fuzzy
740
  msgid "Use Titles"
741
  msgstr "Titel anzeigen"
742
 
743
+ #: ../admin/config/index.php:178
744
  msgid ""
745
  "Slimstat converts your permalinks into post, page and category titles. "
746
  "Disable this feature if you need to see the URL in your reports."
747
  msgstr ""
748
 
749
+ #: ../admin/config/index.php:179
750
  msgid "Convert IP Addresses"
751
  msgstr "IP-Adressen umwandeln"
752
 
753
+ #: ../admin/config/index.php:179
754
  msgid "Display provider names instead of IP addresses."
755
  msgstr ""
756
 
757
+ #: ../admin/config/index.php:181
758
  msgid "Functionality"
759
  msgstr "Funktionalität"
760
 
761
+ #: ../admin/config/index.php:182
762
  msgid "SlimScroll"
763
  msgstr ""
764
 
765
+ #: ../admin/config/index.php:182
766
  msgid ""
767
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
768
  "scrollbar."
769
  msgstr ""
770
 
771
+ #: ../admin/config/index.php:183
772
  msgid "Expand Details"
773
  msgstr "Details anzeigen"
774
 
775
+ #: ../admin/config/index.php:183
776
  #, fuzzy
777
  msgid "Expand each row's details by default, insted of on mousehover."
778
  msgstr "Zeigt in allen Zeilen die Details und nicht nur beim Mouse-Over"
779
 
780
+ #: ../admin/config/index.php:184 ../admin/config/index.php:190
781
  #, fuzzy
782
  msgid "Rows to Display"
783
  msgstr "keine Daten vorhanden"
784
 
785
+ #: ../admin/config/index.php:184
786
  msgid "Specify the number of items in each report."
787
  msgstr ""
788
 
789
+ #: ../admin/config/index.php:185 ../admin/view/wp-slimstat-db.php:101
790
  #, fuzzy
791
  msgid "Max Results"
792
  msgstr "Max. Anzahl Ergebnisse"
793
 
794
+ #: ../admin/config/index.php:185
795
  msgid ""
796
  "Decide how many records should be retrieved from the database in total. "
797
  "Depending on your server configuration, you may want to fine tune this value "
798
  "to avoid exceeding your PHP memory limit."
799
  msgstr ""
800
 
801
+ #: ../admin/config/index.php:186
802
  msgid "IP Lookup"
803
  msgstr "IP Suche"
804
 
805
+ #: ../admin/config/index.php:186
806
  msgid "Customize the Geolocation service to be used in the reports."
807
  msgstr ""
808
 
809
+ #: ../admin/config/index.php:188
810
  msgid "Activity Log"
811
  msgstr ""
812
 
813
+ #: ../admin/config/index.php:189
814
  msgid "Live Stream"
815
  msgstr "Livestream"
816
 
817
+ #: ../admin/config/index.php:189
818
  #, fuzzy
819
  msgid ""
820
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
823
  "Anzeige der aktuell aktiven Besucher alle X Sekunden aktualisieren. Null "
824
  "deaktiviert diese Funktion."
825
 
826
+ #: ../admin/config/index.php:190
827
  msgid "Specify the number of items in the Activity Log."
828
  msgstr ""
829
 
830
+ #: ../admin/config/index.php:193
831
  msgid "Custom CSS"
832
  msgstr "Benutzerdefinierte CSS"
833
 
834
+ #: ../admin/config/index.php:193
835
  msgid ""
836
  "Paste here your custom stylesheet to personalize the way your reports look. "
837
  "<a href='https://slimstat.freshdesk.com/support/solutions/"
840
  "a> for more information on how to use this setting."
841
  msgstr ""
842
 
843
+ #: ../admin/config/index.php:194
844
  #, fuzzy
845
  msgid "Chart Colors"
846
  msgstr "Diagramm-Einstellungen"
847
 
848
+ #: ../admin/config/index.php:194
849
  msgid ""
850
  "Customize the look and feel of your charts by assigning personalized colors "
851
  "to each metric. List 4 hex colors separated by commas, strictly in the "
853
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
854
  msgstr ""
855
 
856
+ #: ../admin/config/index.php:195
857
  #, fuzzy
858
  msgid "Show User Agent"
859
  msgstr "Top Browser"
860
 
861
+ #: ../admin/config/index.php:195
862
  #, fuzzy
863
  msgid ""
864
  "Choose if you want to see the browser name or a complete user agent string "
867
  "Wählen Sie, ob der Browsername oder ein kompletter USER AGENT STRING "
868
  "angezeigt werden soll, wenn Sie auf die Browsersymbole zeigen."
869
 
870
+ #: ../admin/config/index.php:196
871
  msgid "Enable SOV"
872
  msgstr "SOV aktivieren"
873
 
874
+ #: ../admin/config/index.php:196
875
  msgid ""
876
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
877
  "the subject, object, and verb of a sentence appear in that order, like in "
878
  "Japanese."
879
  msgstr ""
880
 
881
+ #: ../admin/config/index.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
882
  msgid "Access Control"
883
  msgstr ""
884
 
885
+ #: ../admin/config/index.php:204
886
  msgid "Restrict Authors"
887
  msgstr "Autoren einschränken"
888
 
889
+ #: ../admin/config/index.php:204
890
  #, fuzzy
891
  msgid ""
892
  "Enable this option if you want your authors to only see stats related to "
895
  "Aktivieren Sie diese Option, wenn Ihre Autoren nur Statistiken zu Ihrem "
896
  "eigenen Inhalt ansehen können."
897
 
898
+ #: ../admin/config/index.php:205 ../admin/config/index.php:209
899
  #, fuzzy
900
  msgid "Capability"
901
  msgstr "Benutzer nach Browserf&auml;higkeiten"
902
 
903
+ #: ../admin/config/index.php:205
904
  #, fuzzy
905
  msgid ""
906
  "Specify the minimum <a href='http://codex.wordpress.org/"
917
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
918
  "welche Vorrang über die CAPABILITY hat."
919
 
920
+ #: ../admin/config/index.php:206 ../admin/config/index.php:210
921
  msgid "Whitelist"
922
  msgstr "Whitelist"
923
 
924
+ #: ../admin/config/index.php:206
925
  #, fuzzy
926
  msgid ""
927
  "List all the users who should have access to the reports, separated by "
933
  "angeführt werden. Wenn dieses Feld leer ist der Zugriff <strong>allen Ihren "
934
  "Benutzern</strong> erlaubt. Bitte Groß-/Kleinschreibung beachten."
935
 
936
+ #: ../admin/config/index.php:208 ../admin/config/index.php:233
937
+ #: ../admin/wp-slimstat-admin.php:636 ../admin/wp-slimstat-admin.php:654
938
+ #: ../admin/wp-slimstat-admin.php:657
939
  msgid "Settings"
940
  msgstr "Einstellungen"
941
 
942
+ #: ../admin/config/index.php:209
943
  #, fuzzy
944
  msgid ""
945
  "Specify the minimum <a href='http://codex.wordpress.org/"
954
  "Berichte, Außer eine 'Lesezugriffs'-Whitelist wurde weiter unten festgelegt, "
955
  "welche Vorrang über die CAPABILITY hat."
956
 
957
+ #: ../admin/config/index.php:210
958
  #, fuzzy
959
  msgid ""
960
  "List all the users who can edit these options, separated by commas. Please "
968
  "Benutzer bekommen automatisch auch 'Lesezugriff' auf die WP SlimStat-"
969
  "Berichte. Bitte Groß-/Kleinschreibung beachten."
970
 
971
+ #: ../admin/config/index.php:215
972
  msgid "Maintenance"
973
  msgstr "Wartung"
974
 
975
+ #: ../admin/config/index.php:220 ../admin/view/addons.php:32
976
+ #: ../admin/wp-slimstat-admin.php:124
 
977
  msgid "Add-ons"
978
  msgstr "Add-Ons"
979
 
1003
  msgid "The geolocation database has been installed on your server."
1004
  msgstr ""
1005
 
1006
+ #: ../admin/config/maintenance.php:82
 
 
 
 
 
 
 
 
 
1007
  msgid "Your reports were successfully restored to their default arrangement."
1008
  msgstr ""
1009
 
1010
+ #: ../admin/config/maintenance.php:92
1011
  #, fuzzy
1012
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1013
  msgstr ""
1014
  "Ihre WP SlimStat Datenbank wurden erfolgreich ins InnoDB-Format konvertiert."
1015
 
1016
+ #: ../admin/config/maintenance.php:98
1017
  #, fuzzy
1018
  msgid "All the archived records were successfully deleted."
1019
  msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1020
 
1021
+ #: ../admin/config/maintenance.php:106
1022
  msgid "All the records were successfully deleted."
1023
  msgstr "Alle Aufzeichnungen wurden erfolgreich gelöscht."
1024
 
1025
+ #: ../admin/config/maintenance.php:128
1026
+ msgid "Troubleshooting"
1027
  msgstr ""
1028
 
1029
+ #: ../admin/config/maintenance.php:131
1030
  #, fuzzy
1031
  msgid "Tracker Status"
1032
  msgstr "Benutzer tracken"
1033
 
1034
+ #: ../admin/config/maintenance.php:133
1035
  #, fuzzy
1036
+ msgid "Reset the tracker status"
1037
+ msgstr "Benutzer tracken"
1038
 
1039
+ #: ../admin/config/maintenance.php:133
1040
  msgid "No Errors so far"
1041
  msgstr ""
1042
 
1043
+ #: ../admin/config/maintenance.php:134
1044
  msgid ""
1045
  "The information here above is useful to troubleshoot issues with the "
1046
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1047
  "the tracker could not record a pageview and are indicative of some kind of "
1048
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1049
  "most recent pageview was not recorded, based on your settings (filters, "
1050
+ "blackslists, etc). Please include the message here above when sending a "
1051
+ "support request."
1052
  msgstr ""
1053
 
1054
+ #: ../admin/config/maintenance.php:140
1055
  #, fuzzy
1056
  msgid "Enable SQL Debug"
1057
  msgstr "SOV aktivieren"
1058
 
1059
+ #: ../admin/config/maintenance.php:143
1060
  msgid ""
1061
  "Display the SQL code used to retrieve the data from the database. Useful to "
1062
  "troubleshoot issues with data consistency or missing pageviews."
1063
  msgstr ""
1064
 
1065
+ #: ../admin/config/maintenance.php:147
1066
  msgid "Disable SQL Debug"
1067
  msgstr ""
1068
 
1069
+ #: ../admin/config/maintenance.php:150
1070
  msgid "Deactivate the SQL output on top of each report."
1071
  msgstr ""
1072
 
1073
+ #: ../admin/config/maintenance.php:155
 
 
 
 
1074
  #, fuzzy
1075
  msgid ""
1076
  "Are you sure you want to restore the default arrangement of your reports?"
1077
  msgstr "Datenbanktabellen wirklich zurücksetzen?"
1078
 
1079
+ #: ../admin/config/maintenance.php:155
1080
  msgid "No Panic Button"
1081
  msgstr ""
1082
 
1083
+ #: ../admin/config/maintenance.php:157
1084
  msgid ""
1085
  "Reset the default arrangement of your reports. Helpful when, for some "
1086
  "reason, reports disappear from your panels or something doesn't look right "
1087
  "in your views."
1088
  msgstr ""
1089
 
1090
+ #: ../admin/config/maintenance.php:161
1091
  msgid "Data Maintenance"
1092
  msgstr "Datenwartung"
1093
 
1094
+ #: ../admin/config/maintenance.php:164
1095
  #, fuzzy
1096
  msgid "Delete pageviews where"
1097
  msgstr "Lösche Seitenaufrufe, wo"
1098
 
1099
+ #: ../admin/config/maintenance.php:178 ../admin/view/index.php:16
1100
  msgid "equals"
1101
  msgstr "entspricht"
1102
 
1103
+ #: ../admin/config/maintenance.php:179 ../admin/view/index.php:17
1104
  msgid "is not equal to"
1105
  msgstr "ist ungleich zu"
1106
 
1107
+ #: ../admin/config/maintenance.php:180 ../admin/view/index.php:18
1108
  msgid "contains"
1109
  msgstr "enth&auml;lt"
1110
 
1111
+ #: ../admin/config/maintenance.php:181 ../admin/view/index.php:19
1112
  msgid "is included in"
1113
  msgstr ""
1114
 
1115
+ #: ../admin/config/maintenance.php:182 ../admin/view/index.php:20
1116
  msgid "does not contain"
1117
  msgstr "enth&auml;lt nicht"
1118
 
1119
+ #: ../admin/config/maintenance.php:183 ../admin/view/index.php:21
1120
  msgid "starts with"
1121
  msgstr "beginnt mit"
1122
 
1123
+ #: ../admin/config/maintenance.php:184 ../admin/view/index.php:22
1124
  msgid "ends with"
1125
  msgstr "endet mit"
1126
 
1127
+ #: ../admin/config/maintenance.php:185 ../admin/view/index.php:23
1128
  msgid "sounds like"
1129
  msgstr "&auml;hnelt"
1130
 
1131
+ #: ../admin/config/maintenance.php:186 ../admin/view/index.php:24
1132
  msgid "is greater than"
1133
  msgstr "ist gr&ouml;sser als"
1134
 
1135
+ #: ../admin/config/maintenance.php:187 ../admin/view/index.php:25
1136
  msgid "is less than"
1137
  msgstr "ist kleiner als"
1138
 
1139
+ #: ../admin/config/maintenance.php:188 ../admin/view/index.php:27
1140
  msgid "matches"
1141
  msgstr "entspricht"
1142
 
1143
+ #: ../admin/config/maintenance.php:189 ../admin/view/index.php:28
1144
  msgid "does not match"
1145
  msgstr "entspricht nicht"
1146
 
1147
+ #: ../admin/config/maintenance.php:190 ../admin/view/index.php:29
1148
  msgid "is empty"
1149
  msgstr "ist leer"
1150
 
1151
+ #: ../admin/config/maintenance.php:191 ../admin/view/index.php:30
1152
  msgid "is not empty"
1153
  msgstr "ist nicht leer"
1154
 
1155
+ #: ../admin/config/maintenance.php:194 ../admin/view/index.php:42
1156
  #: ../admin/view/index.php:105
1157
  msgid "Apply"
1158
  msgstr "Anwenden"
1159
 
1160
+ #: ../admin/config/maintenance.php:195
1161
  #, fuzzy
1162
  msgid ""
1163
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1165
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1166
  "Datenbank löschen möchten?"
1167
 
1168
+ #: ../admin/config/maintenance.php:202
1169
  #, fuzzy
1170
  msgid ""
1171
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1174
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1175
  "Datenbank löschen möchten?"
1176
 
1177
+ #: ../admin/config/maintenance.php:202
1178
  #, fuzzy
1179
  msgid "Delete All Records"
1180
  msgstr "Alle Seitenaufrufe löschen"
1181
 
1182
+ #: ../admin/config/maintenance.php:205
1183
  msgid ""
1184
+ "Erase all the information collected so far by Slimstat, but not the archived "
1185
+ "records (<code>wp_slim_stats_archive</code>). This operation <strong>does "
1186
+ "not</strong> reset your settings and it can be undone by manually copying "
1187
+ "your records from the archive table."
1188
  msgstr ""
1189
 
1190
+ #: ../admin/config/maintenance.php:211
1191
  #, fuzzy
1192
  msgid ""
1193
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1196
  "Sind Sie wirklich sicher, dass Sie diese Datensätze UNWIDERRUFLICH aus Ihrer "
1197
  "Datenbank löschen möchten?"
1198
 
1199
+ #: ../admin/config/maintenance.php:211
1200
  #, fuzzy
1201
  msgid "Delete Archive"
1202
  msgstr "Lösche Seitenaufrufe, wo"
1203
 
1204
+ #: ../admin/config/maintenance.php:214
1205
  msgid "Erase all the archived records. This operation cannot be undone."
1206
  msgstr ""
1207
 
1208
+ #: ../admin/config/maintenance.php:220
1209
  msgid "Improve Performance"
1210
  msgstr "Leistung erhöhen"
1211
 
1212
+ #: ../admin/config/maintenance.php:224
1213
  #, fuzzy
1214
  msgid ""
1215
  "Please note that you will need about 30% more DB space to store the extra "
1219
  "verbessern. Die Datenbank benötigt dafür ca. 30% mehr Speicherplatz, damit "
1220
  "die notwendigen zusätzlichne Informationen gespeichert werden können."
1221
 
1222
+ #: ../admin/config/maintenance.php:228
1223
  msgid "Save DB Space"
1224
  msgstr "Datenbank-Speicherplatz sparen"
1225
 
1226
+ #: ../admin/config/maintenance.php:231
1227
  msgid ""
1228
  "Please note that by removing table indexes, Slimstat's performance will be "
1229
  "affected."
1230
  msgstr ""
1231
 
1232
+ #: ../admin/config/maintenance.php:236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1233
  msgid "MaxMind IP to Country"
1234
  msgstr ""
1235
 
1236
+ #: ../admin/config/maintenance.php:242
1237
  msgid ""
1238
  "Do you want to download and install the geolocation database from MaxMind's "
1239
  "server?"
1240
  msgstr ""
1241
 
1242
+ #: ../admin/config/maintenance.php:242
1243
  msgid "Install GeoLite DB"
1244
  msgstr ""
1245
 
1246
+ #: ../admin/config/maintenance.php:245
1247
  msgid "Do you want to uninstall the geolocation database?"
1248
  msgstr ""
1249
 
1250
+ #: ../admin/config/maintenance.php:245
1251
  msgid "Uninstall GeoLite DB"
1252
  msgstr ""
1253
 
1254
+ #: ../admin/config/maintenance.php:249
1255
  msgid ""
1256
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1257
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1261
  "enable this functionality."
1262
  msgstr ""
1263
 
1264
+ #: ../admin/config/maintenance.php:254
1265
  msgid "Import and Export"
1266
  msgstr ""
1267
 
1268
+ #: ../admin/config/maintenance.php:258
1269
  msgid ""
1270
  "Here below you can find the current configuration string for Slimstat. You "
1271
  "can update your settings by pasting a new string inside the text area and "
1272
  "clicking the Import button."
1273
  msgstr ""
1274
 
1275
+ #: ../admin/config/maintenance.php:263
1276
  msgid "Import"
1277
  msgstr "Import"
1278
 
1279
+ #: ../admin/config/maintenance.php:264
1280
  msgid "Are you sure you want to OVERWRITE your current settings?"
1281
  msgstr "Derzeitige Einstellungen wirklich zurücksetzen?"
1282
 
1283
+ #: ../admin/config/maintenance.php:269
1284
  msgid "Database Information"
1285
  msgstr "Datenbankinformation"
1286
 
1287
  # depends on context:
1288
  # Engine = Maschine, Motor, Triebwerk or Antrieb
1289
  # Search engine = Suchmaschine
1290
+ #: ../admin/config/maintenance.php:272
1291
  #, fuzzy
1292
  msgid "Engine"
1293
  msgstr "Suchmaschinen"
1294
 
1295
+ #: ../admin/config/maintenance.php:276
1296
  msgid "switch to InnoDB"
1297
  msgstr "zu InnoDB wechseln"
1298
 
1299
+ #: ../admin/config/maintenance.php:287
1300
  msgid "records"
1301
  msgstr "Datensätze"
1302
 
1375
  msgid "Load"
1376
  msgstr ""
1377
 
1378
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1406
1379
  msgid "Today"
1380
  msgstr "heute"
1381
 
1382
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1409
1383
  msgid "Yesterday"
1384
  msgstr "Gestern"
1385
 
1446
  "country of origin."
1447
  msgstr ""
1448
 
1449
+ #: ../admin/view/layout.php:47
1450
  msgid "Customize and organize your reports"
1451
  msgstr ""
1452
 
1453
+ #: ../admin/view/layout.php:48
1454
  msgid ""
1455
  "Drag and drop report placeholders from one container to another, to "
1456
  "customize the information you want to see right away when you open Slimstat. "
1462
  "(Screen Options tab)."
1463
  msgstr ""
1464
 
1465
+ #: ../admin/view/layout.php:60
1466
  msgid "Clone"
1467
  msgstr ""
1468
 
1469
+ #: ../admin/view/layout.php:64
1470
  #, fuzzy
1471
  msgid "Delete"
1472
  msgstr "Datensätze"
1487
  msgid "Syndication Reader"
1488
  msgstr ""
1489
 
1490
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1032
1491
+ #: ../admin/view/wp-slimstat-reports.php:1715
1492
  msgid "No data to display"
1493
  msgstr "keine Daten vorhanden"
1494
 
1497
  msgstr "Datum und Uhrzeit"
1498
 
1499
  # Unknown
1500
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1084
1501
+ #: ../admin/view/wp-slimstat-reports.php:1758 ../wp-slimstat.php:1355
1502
  msgid "c-"
1503
  msgstr "Unknown"
1504
 
1505
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1506
+ #: ../admin/wp-slimstat-admin.php:968 ../admin/wp-slimstat-admin.php:1008
1507
  msgid "Originating IP"
1508
  msgstr "Ursprüngliche IP"
1509
 
1510
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1181
1511
+ #: ../admin/view/wp-slimstat-reports.php:1186
1512
+ #: ../admin/view/wp-slimstat-reports.php:1191
1513
  msgid "Open this URL in a new window"
1514
  msgstr "Diese URL in einem neuen Fenster &ouml;ffnen"
1515
 
1517
  msgid "Local search results page"
1518
  msgstr "lokale Suchergebnisse"
1519
 
1520
+ #: ../admin/view/right-now.php:157 ../admin/view/wp-slimstat-db.php:42
1521
+ #: ../admin/view/wp-slimstat-reports.php:242
1522
+ #: ../admin/view/wp-slimstat-reports.php:251
1523
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
1524
  msgid "Search Terms"
1525
  msgstr "Suchbegriffe"
1526
 
1527
+ #: ../admin/view/right-now.php:166
1528
  msgid "Server Latency and Page Speed in milliseconds"
1529
  msgstr ""
1530
 
1531
+ #: ../admin/view/right-now.php:166
1532
  msgid "SL"
1533
  msgstr ""
1534
 
1535
+ #: ../admin/view/right-now.php:166
1536
  msgid "PS"
1537
  msgstr ""
1538
 
1539
+ #: ../admin/view/right-now.php:173
1540
  #, fuzzy
1541
+ msgid "Time spent on this page"
1542
  msgstr "Seite in neuem Fenster &ouml;ffnen"
1543
 
1544
+ #: ../admin/view/right-now.php:183
1545
  msgid "Open this referrer in a new window"
1546
  msgstr "Verweisende Seite in einem neuen Fenster &ouml;ffnen"
1547
 
1548
+ #: ../admin/view/right-now.php:184
1549
  msgid "Open this outbound link in a new window"
1550
  msgstr "Wegführender Link in neuem Fenster &ouml;ffnen"
1551
 
1552
+ #: ../admin/view/right-now.php:185
1553
  #, fuzzy
1554
  msgid "Content Type"
1555
  msgstr "Inhalt"
1556
 
1557
+ #: ../admin/view/right-now.php:188
1558
  #, fuzzy
1559
  msgid "Delete this pageview"
1560
  msgstr "Lösche Seitenaufrufe, wo"
1561
 
1562
+ #: ../admin/view/right-now.php:199
1563
  #, fuzzy
1564
  msgid "User Logged In"
1565
  msgstr "User Agent"
1566
 
1567
+ #: ../admin/view/right-now.php:209
1568
  #, fuzzy
1569
  msgid "User Logged Out"
1570
  msgstr "User Agent"
1571
 
1572
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:984
1573
  msgid "Browser"
1574
  msgstr "Browser"
1575
 
1576
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:985
1577
  msgid "Country Code"
1578
  msgstr "L&auml;nder-Code"
1579
 
1581
  msgid "IP Address"
1582
  msgstr "IP-Adresse"
1583
 
1584
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:988
1585
  msgid "Language Code"
1586
  msgstr "Sprach-Kodierung"
1587
 
1588
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1589
+ #: ../admin/wp-slimstat-admin.php:989
1590
  msgid "Operating System"
1591
  msgstr "Betriebssystem"
1592
 
1593
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1594
+ #: ../admin/wp-slimstat-admin.php:990
1595
  msgid "Permalink"
1596
  msgstr "Permalink"
1597
 
1598
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:991
1599
  msgid "Referer"
1600
  msgstr "Herkunft"
1601
 
1602
+ #: ../admin/view/wp-slimstat-db.php:47
1603
+ #, fuzzy
1604
+ msgid "Visitor's Username"
1605
  msgstr "Besuchername"
1606
 
1607
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:974
1608
  msgid "Outbound Link"
1609
  msgstr "Ausgehender Link"
1610
 
1617
  msgstr "-- Erweiterte Filter --"
1618
 
1619
  #: ../admin/view/wp-slimstat-db.php:52
1620
+ #: ../admin/view/wp-slimstat-reports.php:372
1621
  msgid "Browser Capabilities"
1622
  msgstr "Browser-F&auml;higkeiten"
1623
 
1624
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1003
1625
  msgid "Browser Version"
1626
  msgstr "Browser-Version"
1627
 
1628
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1004
1629
  msgid "Browser Type"
1630
  msgstr "Browser-Typ"
1631
 
1632
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:973
1633
  msgid "User Agent"
1634
  msgstr "User Agent"
1635
 
1643
  msgid "Server Latency"
1644
  msgstr "Latenz"
1645
 
1646
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1006
1647
  msgid "Post Author"
1648
  msgstr "Autor der Seiten"
1649
 
1650
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1007
1651
  msgid "Post Category ID"
1652
  msgstr "Kategorie-ID der Seite"
1653
 
1654
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1009
1655
  msgid "Resource Content Type"
1656
  msgstr "Inhalt der Ressource"
1657
 
1672
  msgid "Viewport Size"
1673
  msgstr ""
1674
 
1675
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1011
1676
  msgid "Visit ID"
1677
  msgstr "Besuchs-ID"
1678
 
1718
  msgstr ""
1719
 
1720
  #: ../admin/view/wp-slimstat-db.php:96
1721
+ #: ../admin/view/wp-slimstat-reports.php:1729
1722
  msgid "Type"
1723
  msgstr ""
1724
 
1741
  msgid "Offset"
1742
  msgstr ""
1743
 
1744
+ #: ../admin/view/wp-slimstat-reports.php:65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1745
  msgid "Chart controls"
1746
  msgstr "Diagramm-Einstellungen"
1747
 
1748
+ #: ../admin/view/wp-slimstat-reports.php:65
1749
  msgid "Use your mouse wheel to zoom in and out"
1750
  msgstr "Verwende das Mausrad zum Zoomen"
1751
 
1752
+ #: ../admin/view/wp-slimstat-reports.php:65
1753
  msgid "While zooming in, drag the chart to move to a different area"
1754
  msgstr ""
1755
  "W&auml;hrend des Zooms das Diagramm zu einer anderen Position verschieben."
1756
 
1757
+ #: ../admin/view/wp-slimstat-reports.php:68
 
 
 
 
1758
  #, fuzzy
1759
  msgid "Visitors Activity"
1760
  msgstr "Besucher"
1761
 
1762
+ #: ../admin/view/wp-slimstat-reports.php:77
1763
  msgid "Color codes"
1764
  msgstr "Farbcode"
1765
 
1766
+ #: ../admin/view/wp-slimstat-reports.php:77
1767
  #, fuzzy
1768
  msgid "From search result page"
1769
  msgstr "Von einer Suchergebnisseite"
1770
 
1771
+ #: ../admin/view/wp-slimstat-reports.php:77 ../admin/wp-slimstat-admin.php:966
1772
  msgid "Known Visitor"
1773
  msgstr "Bekannte Besucher"
1774
 
1775
+ #: ../admin/view/wp-slimstat-reports.php:77
1776
  msgid "Known Users"
1777
  msgstr "Bekannte Benutzer"
1778
 
1779
+ #: ../admin/view/wp-slimstat-reports.php:77
1780
  msgid "Other Humans"
1781
  msgstr "Andere echte Besucher"
1782
 
1783
+ #: ../admin/view/wp-slimstat-reports.php:77
1784
  msgid "Bot or Crawler"
1785
  msgstr "Bot oder Crawler"
1786
 
1787
+ #: ../admin/view/wp-slimstat-reports.php:99
1788
  #, fuzzy
1789
  msgid "About Slimstat"
1790
  msgstr "&Uuml;ber WP SlimStat"
1791
 
1792
+ #: ../admin/view/wp-slimstat-reports.php:108
1793
  #, fuzzy
1794
  msgid "Traffic at a Glance"
1795
  msgstr "Auf einen Blick"
1796
 
1797
+ #: ../admin/view/wp-slimstat-reports.php:118
1798
  #, fuzzy
1799
  msgid "Currently Online"
1800
  msgstr "Aktuelle Filter:"
1801
 
1802
+ #: ../admin/view/wp-slimstat-reports.php:131
1803
  msgid "Recent Search Terms"
1804
  msgstr "Letzte interne Suchbegriffe"
1805
 
1806
+ #: ../admin/view/wp-slimstat-reports.php:142
1807
  #, fuzzy
1808
  msgid "Keywords used by your visitors to find your website on a search engine."
1809
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
1810
 
1811
+ #: ../admin/view/wp-slimstat-reports.php:145
1812
  #, fuzzy
1813
  msgid "Top Web Pages"
1814
  msgstr "Top-Seiten"
1815
 
1816
+ #: ../admin/view/wp-slimstat-reports.php:156
1817
  msgid ""
1818
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1819
  "site, including posts, products, categories, and so on. You can set the "
1822
  "have."
1823
  msgstr ""
1824
 
1825
+ #: ../admin/view/wp-slimstat-reports.php:159
1826
+ #, fuzzy
1827
+ msgid "Top Referring Domains"
1828
+ msgstr "Top verweisende Suchmaschinen"
1829
 
1830
+ #: ../admin/view/wp-slimstat-reports.php:173
1831
  msgid "Top Known Visitors"
1832
  msgstr "Top bekannte Besucher"
1833
 
1834
+ #: ../admin/view/wp-slimstat-reports.php:184
1835
  msgid "Top Search Terms"
1836
  msgstr "Top-Suchbegriffe"
1837
 
1838
+ #: ../admin/view/wp-slimstat-reports.php:196
1839
  msgid "Top Countries"
1840
  msgstr "Top-L&auml;nder"
1841
 
1842
+ #: ../admin/view/wp-slimstat-reports.php:205
1843
  #, fuzzy
1844
  msgid ""
1845
  "You can configure Slimstat to ignore a specific Country by setting the "
1848
  "Um ein spezifisches Land generell zu ignorieren kann ein entsprechender "
1849
  "Filter unter 'Einstellungen > SlimStat > Filter' gesetzt werden."
1850
 
1851
+ #: ../admin/view/wp-slimstat-reports.php:208
1852
  msgid "Rankings"
1853
  msgstr ""
1854
 
1855
+ #: ../admin/view/wp-slimstat-reports.php:212
1856
  msgid ""
1857
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1858
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1859
  "set above don't apply to this report."
1860
  msgstr ""
1861
 
1862
+ #: ../admin/view/wp-slimstat-reports.php:215
1863
  #, fuzzy
1864
  msgid "Top Language Families"
1865
  msgstr "Top-Sprachen"
1866
 
1867
+ #: ../admin/view/wp-slimstat-reports.php:228
1868
  #, fuzzy
1869
  msgid "Users Currently Online"
1870
  msgstr "Aktuelle Filter:"
1871
 
1872
+ #: ../admin/view/wp-slimstat-reports.php:239
1873
  #, fuzzy
1874
  msgid ""
1875
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1880
  "einen Cookie zu. WP SlimStat erweitert diese Information um die Erkennung "
1881
  "zur&uuml;kkehrender Besucher."
1882
 
1883
+ #: ../admin/view/wp-slimstat-reports.php:252
1884
  #, fuzzy
1885
  msgid "Unique Terms"
1886
  msgstr "Eindeutige IPs"
1887
 
1888
+ #: ../admin/view/wp-slimstat-reports.php:261
1889
+ #, fuzzy
1890
+ msgid "Top Referring URLs"
1891
+ msgstr "Verweisende Webseiten"
1892
+
1893
+ #: ../admin/view/wp-slimstat-reports.php:274
1894
  msgid "Human Visits"
1895
  msgstr "Echte Besuche"
1896
 
1897
+ #: ../admin/view/wp-slimstat-reports.php:283
1898
+ #: ../admin/view/wp-slimstat-reports.php:1440
1899
  msgid "Visits"
1900
  msgstr "Besuche"
1901
 
1902
+ #: ../admin/view/wp-slimstat-reports.php:293
1903
  #, fuzzy
1904
  msgid "Audience Overview"
1905
  msgstr "&Uuml;bersicht"
1906
 
1907
+ #: ../admin/view/wp-slimstat-reports.php:300
1908
  msgid ""
1909
  "Where not otherwise specified, the metrics in this report are referred to "
1910
  "human visitors."
1911
  msgstr ""
1912
 
1913
+ #: ../admin/view/wp-slimstat-reports.php:303
1914
  msgid "Top Languages"
1915
  msgstr "Top-Sprachen"
1916
 
1917
+ #: ../admin/view/wp-slimstat-reports.php:314
1918
  msgid "Top Browsers"
1919
  msgstr "Top-Browser"
1920
 
1921
+ #: ../admin/view/wp-slimstat-reports.php:325
1922
  msgid "Top Service Providers"
1923
  msgstr "Top-Internetprovider"
1924
 
1925
+ #: ../admin/view/wp-slimstat-reports.php:334
1926
+ #: ../admin/view/wp-slimstat-reports.php:346
1927
  #, fuzzy
1928
  msgid ""
1929
  "Internet Service Provider: a company which provides other companies or "
1937
  "Adressen generell zu ignorieren kann ein entsprechender Filter unter "
1938
  "'Einstellungen > SlimStat > Filter' gesetzt werden."
1939
 
1940
+ #: ../admin/view/wp-slimstat-reports.php:337
1941
  msgid "Top Operating Systems"
1942
  msgstr "Top-Betriebssysteme"
1943
 
1944
+ #: ../admin/view/wp-slimstat-reports.php:349
1945
  msgid "Top Screen Resolutions"
1946
  msgstr "Top-Bildschirmaufl&ouml;sungen"
1947
 
1948
+ #: ../admin/view/wp-slimstat-reports.php:361
1949
  #, fuzzy
1950
  msgid "Top Viewport Sizes"
1951
  msgstr "Top-Kategorien"
1952
 
1953
+ #: ../admin/view/wp-slimstat-reports.php:381
1954
  msgid "Visit Duration"
1955
  msgstr "Besuchsdauer"
1956
 
1957
+ #: ../admin/view/wp-slimstat-reports.php:388
1958
  #, fuzzy
1959
  msgid ""
1960
  "All values represent the percentages of pageviews within the corresponding "
1962
  msgstr ""
1963
  "Weltkarte - Werte repr&auml;sentieren die Zugriffe in Prozent aus diesem Land"
1964
 
1965
+ #: ../admin/view/wp-slimstat-reports.php:391
1966
  msgid "Recent Countries"
1967
  msgstr "Letzte L&auml;nder"
1968
 
1969
+ #: ../admin/view/wp-slimstat-reports.php:402
1970
  #, fuzzy
1971
  msgid "Recent Viewport Sizes"
1972
  msgstr "Letzte Kategorien"
1973
 
1974
+ #: ../admin/view/wp-slimstat-reports.php:413
1975
  msgid "Recent Operating Systems"
1976
  msgstr "Letzte Betriebssysteme"
1977
 
1978
+ #: ../admin/view/wp-slimstat-reports.php:424
1979
  msgid "Recent Browsers"
1980
  msgstr "Letzte Browser"
1981
 
1982
+ #: ../admin/view/wp-slimstat-reports.php:435
1983
  msgid "Recent Languages"
1984
  msgstr "Letzte Sprachen"
1985
 
1986
+ #: ../admin/view/wp-slimstat-reports.php:446
1987
  msgid "Top Browser Families"
1988
  msgstr "Top-Browserfamilien"
1989
 
1990
+ #: ../admin/view/wp-slimstat-reports.php:455
1991
  msgid ""
1992
  "This report shows you what user agent families (no version considered) are "
1993
  "popular among your visitors."
1995
  "Dieser Bericht zeigt, welche User Agent-Familien (unabhängig Ihrer Version) "
1996
  "bei Ihren Besuchern populär sind."
1997
 
1998
+ #: ../admin/view/wp-slimstat-reports.php:458
1999
  msgid "Top OS Families"
2000
  msgstr "Top-Betriebssysteme"
2001
 
2002
+ #: ../admin/view/wp-slimstat-reports.php:469
2003
  msgid ""
2004
  "This report shows you what operating system families (no version considered) "
2005
  "are popular among your visitors."
2007
  "Dieser Bericht zeigt, welche Betriebssystemfamilien (ohne Berücksichtigung "
2008
  "der Version) hauptsächlich von Ihren Benutzer verwendet werden."
2009
 
2010
+ #: ../admin/view/wp-slimstat-reports.php:472
2011
  msgid "Recent Users"
2012
  msgstr "Letzte Benutzer"
2013
 
2014
+ #: ../admin/view/wp-slimstat-reports.php:484
2015
  msgid "Top Users"
2016
  msgstr "Top-Benutzer"
2017
 
2018
+ #: ../admin/view/wp-slimstat-reports.php:496
2019
+ #: ../admin/view/wp-slimstat-reports.php:505
2020
  msgid "Users"
2021
  msgstr "Benutzer"
2022
 
2023
+ #: ../admin/view/wp-slimstat-reports.php:506
2024
  #, fuzzy
2025
  msgid "Unique Users"
2026
  msgstr "Eindeutige IPs"
2027
 
2028
+ #: ../admin/view/wp-slimstat-reports.php:515
2029
+ #: ../admin/wp-slimstat-admin.php:106
2030
+ msgid "Traffic Sources"
2031
+ msgstr "Traffic-Ursprung"
2032
+
2033
+ #: ../admin/view/wp-slimstat-reports.php:524
2034
  msgid "Domains"
2035
  msgstr "Dom&auml;nen"
2036
 
2037
+ #: ../admin/view/wp-slimstat-reports.php:534
2038
  #, fuzzy
2039
  msgid "Traffic Summary"
2040
  msgstr "Traffic-Ursprung"
2041
 
2042
+ #: ../admin/view/wp-slimstat-reports.php:543
2043
  msgid "Top Referring Search Engines"
2044
  msgstr "Top verweisende Suchmaschinen"
2045
 
2046
+ #: ../admin/view/wp-slimstat-reports.php:572
2047
  msgid "Recent Outbound Links"
2048
  msgstr "Letzte ausgehende Links"
2049
 
2050
+ #: ../admin/view/wp-slimstat-reports.php:584
2051
  msgid "Recent Posts"
2052
  msgstr "Letzte Artikel"
2053
 
2054
+ #: ../admin/view/wp-slimstat-reports.php:612
2055
  msgid "Recent Feeds"
2056
  msgstr "Letzte Feeds"
2057
 
2058
+ #: ../admin/view/wp-slimstat-reports.php:624
2059
  msgid "Recent Pages Not Found"
2060
  msgstr ""
2061
 
2062
+ #: ../admin/view/wp-slimstat-reports.php:636
2063
  msgid "Recent Internal Searches"
2064
  msgstr "Letzte interne Suchbegriffe"
2065
 
2066
+ #: ../admin/view/wp-slimstat-reports.php:646
2067
  #, fuzzy
2068
  msgid "Searches performed using WordPress' built-in search functionality."
2069
  msgstr ""
2070
  "Suchen welche mit der WordPress eigenen Such-Funktion ausgef&uuml;hrt wurden."
2071
 
2072
+ #: ../admin/view/wp-slimstat-reports.php:649
2073
  msgid "Top Categories"
2074
  msgstr "Top-Kategorien"
2075
 
2076
+ #: ../admin/view/wp-slimstat-reports.php:662
2077
  #, fuzzy
2078
  msgid "Top Downloads"
2079
  msgstr "Letzte Downloads"
2080
 
2081
+ #: ../admin/view/wp-slimstat-reports.php:673
2082
  msgid ""
2083
  "You can configure Slimstat to track specific file extensions as downloads."
2084
  msgstr ""
2085
 
2086
+ #: ../admin/view/wp-slimstat-reports.php:676
2087
  msgid "Recent Events"
2088
  msgstr "Letzte Ereignisse"
2089
 
2090
+ #: ../admin/view/wp-slimstat-reports.php:685
2091
+ #: ../admin/view/wp-slimstat-reports.php:709
2092
  #, fuzzy
2093
  msgid ""
2094
  "This report lists any <em>event</em> occurred on your website. Please refer "
2098
  "stattgefunden hat. Bitte schlagen Sie in der FAQ für weitere Informationen "
2099
  "zur Verwendung dieser Funktionalit&auml;t nach."
2100
 
2101
+ #: ../admin/view/wp-slimstat-reports.php:688
2102
  msgid "Top Posts"
2103
  msgstr "Top-Artikel"
2104
 
2105
+ #: ../admin/view/wp-slimstat-reports.php:700
2106
  #, fuzzy
2107
  msgid "Top Events"
2108
  msgstr "Top-Seiten"
2109
 
2110
+ #: ../admin/view/wp-slimstat-reports.php:712
2111
  msgid "Top Internal Searches"
2112
  msgstr "Top interne Suchbegriffe"
2113
 
2114
+ #: ../admin/view/wp-slimstat-reports.php:724
2115
  msgid "Recent Categories"
2116
  msgstr "Letzte Kategorien"
2117
 
2118
+ #: ../admin/view/wp-slimstat-reports.php:736
2119
  #, fuzzy
2120
  msgid "Top Pages Not Found"
2121
  msgstr "Top-Seiten"
2122
 
2123
+ #: ../admin/view/wp-slimstat-reports.php:748
2124
  msgid "Top Authors"
2125
  msgstr "Top-Autoren"
2126
 
2127
+ #: ../admin/view/wp-slimstat-reports.php:759
2128
  #, fuzzy
2129
  msgid "Top Tags"
2130
  msgstr "Top Seiten"
2131
 
2132
+ #: ../admin/view/wp-slimstat-reports.php:771
2133
  msgid "Recent Downloads"
2134
  msgstr "Letzte Downloads"
2135
 
2136
+ #: ../admin/view/wp-slimstat-reports.php:783
2137
  #, fuzzy
2138
  msgid "Top Outbound Links"
2139
  msgstr "Ausgehender Link"
2140
 
2141
+ #: ../admin/view/wp-slimstat-reports.php:795
2142
  msgid "Your Website"
2143
  msgstr "Ihre Webseite"
2144
 
2145
+ #: ../admin/view/wp-slimstat-reports.php:802
2146
  msgid ""
2147
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2148
  "this report is not affected by the filters set here above."
2150
  "Ihr Inhalt auf einen Blick: Posts, Kommentare, Pingbacks, usw. Dieser "
2151
  "Bericht wird nicht durch die oben eingestellten Filter beeinflusst."
2152
 
2153
+ #: ../admin/view/wp-slimstat-reports.php:805
2154
  #, fuzzy
2155
  msgid "Top Bounce Pages"
2156
  msgstr "Absprungrate"
2157
 
2158
+ #: ../admin/view/wp-slimstat-reports.php:818
2159
  #, fuzzy
2160
  msgid "Top Exit Pages"
2161
  msgstr "Top-Seiten"
2162
 
2163
+ #: ../admin/view/wp-slimstat-reports.php:831
2164
  #, fuzzy
2165
  msgid "Top Entry Pages"
2166
  msgstr "Top-Seiten"
2167
 
2168
+ #: ../admin/view/wp-slimstat-reports.php:844
2169
+ #: ../admin/view/wp-slimstat-reports.php:853
2170
  #, fuzzy
2171
  msgid "Outbound Links"
2172
  msgstr "Ausgehender Link"
2173
 
2174
+ #: ../admin/view/wp-slimstat-reports.php:854
2175
  msgid "Unique Outbound"
2176
  msgstr ""
2177
 
2178
+ #: ../admin/view/wp-slimstat-reports.php:863
2179
  msgid "World Map"
2180
  msgstr "Weltkarte"
2181
 
2182
+ #: ../admin/view/wp-slimstat-reports.php:945
2183
  msgid "Refresh"
2184
  msgstr "Anzeige aktualisieren"
2185
 
2186
+ #: ../admin/view/wp-slimstat-reports.php:982
2187
  #, fuzzy, php-format
2188
  msgid "Results %s - %s of %s"
2189
  msgstr "Ergbnisse filtern wo %s ist gleich %s"
2190
 
2191
+ #: ../admin/view/wp-slimstat-reports.php:984
2192
  msgid "Refresh in"
2193
  msgstr "Anzeige aktualisieren in"
2194
 
2195
+ #: ../admin/view/wp-slimstat-reports.php:1078
2196
  msgid "Category ID"
2197
  msgstr "Kategorie-ID"
2198
 
2199
+ #: ../admin/view/wp-slimstat-reports.php:1083
2200
+ #: ../admin/view/wp-slimstat-reports.php:1097
2201
  #: ../admin/view/wp-slimstat-reports.php:1102
2202
  #, fuzzy
2203
  msgid "Code"
2204
  msgstr "OS-Code"
2205
 
2206
+ #: ../admin/view/wp-slimstat-reports.php:1098
2207
+ #: ../languages/dynamic_strings.php:339 ../wp-slimstat.php:1367
2208
  msgid "l-"
2209
  msgstr "l-"
2210
 
2211
+ #: ../admin/view/wp-slimstat-reports.php:1115
2212
  msgid "URL"
2213
  msgstr ""
2214
 
2215
+ #: ../admin/view/wp-slimstat-reports.php:1128
2216
  msgid "Referrer"
2217
  msgstr "Verweis"
2218
 
2219
+ #: ../admin/view/wp-slimstat-reports.php:1170
2220
+ #: ../admin/view/wp-slimstat-reports.php:1424
2221
+ #: ../admin/view/wp-slimstat-reports.php:1480
2222
+ #: ../admin/view/wp-slimstat-reports.php:1486
2223
+ #: ../admin/view/wp-slimstat-reports.php:1492
2224
+ #: ../admin/view/wp-slimstat-reports.php:1498
2225
+ #: ../admin/view/wp-slimstat-reports.php:1504
2226
+ #: ../admin/view/wp-slimstat-reports.php:1510
2227
+ #: ../admin/view/wp-slimstat-reports.php:1516
2228
+ #: ../admin/view/wp-slimstat-reports.php:1736
2229
  msgid "Hits"
2230
  msgstr "Zugriffe"
2231
 
2232
+ #: ../admin/view/wp-slimstat-reports.php:1351
2233
  #, fuzzy
2234
  msgid "Dataset Size"
2235
  msgstr "Datenbankgr&ouml;&szlig;e"
2236
 
2237
+ #: ../admin/view/wp-slimstat-reports.php:1353
2238
  msgid "Total number of records stored in the database."
2239
  msgstr ""
2240
 
2241
+ #: ../admin/view/wp-slimstat-reports.php:1355
2242
  msgid "DB Size"
2243
  msgstr "Datenbankgr&ouml;&szlig;e"
2244
 
2245
+ #: ../admin/view/wp-slimstat-reports.php:1358
2246
  #, fuzzy
2247
  msgid "Tracking Enabled"
2248
  msgstr "Tracking aktiv"
2249
 
2250
+ #: ../admin/view/wp-slimstat-reports.php:1361
2251
  msgid "Javascript Mode"
2252
  msgstr "Tracking per JavaScript"
2253
 
2254
+ #: ../admin/view/wp-slimstat-reports.php:1364
2255
  msgid "Tracking Browser Caps"
2256
  msgstr ""
2257
 
2258
+ #: ../admin/view/wp-slimstat-reports.php:1367
2259
  msgid "Auto purge"
2260
  msgstr "autom. Datenbank-Reorg."
2261
 
2262
+ #: ../admin/view/wp-slimstat-reports.php:1370
2263
  msgid "Oldest pageview"
2264
  msgstr "&Auml;ltester Seitenaufruf"
2265
 
2266
+ #: ../admin/view/wp-slimstat-reports.php:1371
2267
  msgid "No visits"
2268
  msgstr "Keine Besuche"
2269
 
2270
+ #: ../admin/view/wp-slimstat-reports.php:1373
2271
+ #: ../admin/wp-slimstat-admin.php:112
2272
+ #, fuzzy
2273
+ msgid "Geolocation"
2274
+ msgstr "Macromedia Director"
2275
+
2276
+ #: ../admin/view/wp-slimstat-reports.php:1375
2277
  msgid "Date when the MaxMind Geolocation database was last updated."
2278
  msgstr ""
2279
 
2280
+ #: ../admin/view/wp-slimstat-reports.php:1386
2281
+ #: ../admin/view/wp-slimstat-reports.php:1544
2282
  #, fuzzy
2283
  msgid ""
2284
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2288
  "jedesmal einen 'Seitenaufruf' auf, wenn der Tracking-Code ausgef&uuml;hrt "
2289
  "wird."
2290
 
2291
+ #: ../admin/view/wp-slimstat-reports.php:1388
2292
  #, fuzzy
2293
  msgid "Days in Range"
2294
  msgstr "Datum und Uhrzeit"
2295
 
2296
+ #: ../admin/view/wp-slimstat-reports.php:1391
2297
  #, fuzzy
2298
  msgid "Average Daily Pageviews"
2299
  msgstr "Durchschnittl. Seitenaufrufe"
2300
 
2301
+ #: ../admin/view/wp-slimstat-reports.php:1393
2302
  #, fuzzy
2303
  msgid ""
2304
  "How many pages have been visited on average every day during the current "
2307
  "Wieviele Seiten wurden w&auml;hrend der aktuellen Periode durchschnittlich "
2308
  "besucht?"
2309
 
2310
+ #: ../admin/view/wp-slimstat-reports.php:1395
2311
  msgid "From Search Results"
2312
  msgstr "Von Suchergebnissen"
2313
 
2314
+ #: ../admin/view/wp-slimstat-reports.php:1397
2315
  msgid ""
2316
  "Visitors who landed on your site after searching for a keyword on Google, "
2317
  "Yahoo, etc."
2319
  "Besucher, welche nach einer Suche nach einem Suchbegriff auf einer "
2320
  "Suchmaschine auf die Website kamen."
2321
 
2322
+ #: ../admin/view/wp-slimstat-reports.php:1401
2323
  msgid ""
2324
  "Used to differentiate between multiple requests to download a file from one "
2325
  "internet address (IP) and requests originating from many distinct addresses"
2327
  "Benutzt um bei mehreren Downloadanfragen zu unterscheiden, ob sie von einer "
2328
  "oder mehreren verschiedenen Internet-Adressen (IP) stammen"
2329
 
2330
+ #: ../admin/view/wp-slimstat-reports.php:1403
2331
  msgid "Last 30 minutes"
2332
  msgstr "Letzte 30 Minuten"
2333
 
2334
+ #: ../admin/view/wp-slimstat-reports.php:1442
2335
  msgid ""
2336
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2337
  "multiple times if they perform multiple visits."
2339
  "Ein Besuch ist eine Session von max. 30 Minuten. Zur&;kkehrende Besucher "
2340
  "werden bei mehrfachen Besuchen auch mehrfach gez&auml;hlt."
2341
 
2342
+ #: ../admin/view/wp-slimstat-reports.php:1446
2343
  msgid "It includes only traffic generated by human visitors."
2344
  msgstr ""
2345
 
2346
+ #: ../admin/view/wp-slimstat-reports.php:1448
2347
  msgid "Bounce rate"
2348
  msgstr "Absprungrate"
2349
 
2350
+ #: ../admin/view/wp-slimstat-reports.php:1450
2351
  msgid ""
2352
  "Percentage of single-page visits, i.e. visits in which the person left your "
2353
  "site from the entrance page."
2355
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
2356
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
2357
 
2358
+ #: ../admin/view/wp-slimstat-reports.php:1452
2359
  msgid "Known visitors"
2360
  msgstr "Bekannte Besucher"
2361
 
2362
+ #: ../admin/view/wp-slimstat-reports.php:1454
2363
  msgid "Visitors who had previously left a comment on your blog."
2364
  msgstr ""
2365
  "Besucher, welche fr&uuml;her bereits einen Kommentar hinterlassen haben."
2366
 
2367
+ #: ../admin/view/wp-slimstat-reports.php:1456
2368
  msgid "New visitors"
2369
  msgstr "Neue Besucher"
2370
 
2371
+ #: ../admin/view/wp-slimstat-reports.php:1458
2372
  msgid "Human users who visited your site only once."
2373
  msgstr "Echte Besucher, welche die Wesite nur einmal besucht haben."
2374
 
2375
+ #: ../admin/view/wp-slimstat-reports.php:1460
2376
  msgid "Bots"
2377
  msgstr "Bots"
2378
 
2379
+ #: ../admin/view/wp-slimstat-reports.php:1463
2380
  #, fuzzy
2381
  msgid "Pageviews per visit"
2382
  msgstr "Seiten pro Besuch"
2383
 
2384
+ #: ../admin/view/wp-slimstat-reports.php:1466
2385
  msgid "Longest visit"
2386
  msgstr "L&auml;ngster Besuch"
2387
 
2388
+ #: ../admin/view/wp-slimstat-reports.php:1467
2389
  msgid "hits"
2390
  msgstr "Zugriff"
2391
 
2392
+ #: ../admin/view/wp-slimstat-reports.php:1478
2393
  msgid "0 - 30 seconds"
2394
  msgstr "0-30 Sekunden"
2395
 
2396
+ #: ../admin/view/wp-slimstat-reports.php:1484
2397
  msgid "31 - 60 seconds"
2398
  msgstr "31-60 Sekunden"
2399
 
2400
+ #: ../admin/view/wp-slimstat-reports.php:1490
2401
  msgid "1 - 3 minutes"
2402
  msgstr "1-3 Minuten"
2403
 
2404
+ #: ../admin/view/wp-slimstat-reports.php:1496
2405
  msgid "3 - 5 minutes"
2406
  msgstr "3-5 Minuten"
2407
 
2408
+ #: ../admin/view/wp-slimstat-reports.php:1502
2409
  msgid "5 - 7 minutes"
2410
  msgstr "5-7 Minuten"
2411
 
2412
+ #: ../admin/view/wp-slimstat-reports.php:1508
2413
  msgid "7 - 10 minutes"
2414
  msgstr "7-10 Minuten"
2415
 
2416
+ #: ../admin/view/wp-slimstat-reports.php:1514
2417
  msgid "More than 10 minutes"
2418
  msgstr "Mehr als 10 Minuten"
2419
 
2420
+ #: ../admin/view/wp-slimstat-reports.php:1526
2421
  #, fuzzy
2422
  msgid "Average visit duration"
2423
  msgstr "Besuchsdauer"
2424
 
2425
+ #: ../admin/view/wp-slimstat-reports.php:1546
2426
  msgid "Unique Referrers"
2427
  msgstr "Eindeutige Herkunft"
2428
 
2429
+ #: ../admin/view/wp-slimstat-reports.php:1548
2430
  msgid ""
2431
  "A referrer (or referring site) is the site that a visitor previously visited "
2432
  "before following a link to your site."
2434
  "Eine Herkunft (verweisende Seite) ist die Webseite welche ein Besucher vor "
2435
  "dem Besuch der eigenen Website besucht hat."
2436
 
2437
+ #: ../admin/view/wp-slimstat-reports.php:1550
2438
  msgid "Direct Pageviews"
2439
  msgstr "Direkte Seitenaufrufe"
2440
 
2441
+ #: ../admin/view/wp-slimstat-reports.php:1552
2442
  msgid ""
2443
  "Visitors who visited the site by typing the URL directly into their browser. "
2444
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2449
  "auch auf Besucher beziehen, welche Lesezeichen/Favoriten verwendet haben "
2450
  "oder Links in E-Mails bzw. Dokumenten gefolgt sind."
2451
 
2452
+ #: ../admin/view/wp-slimstat-reports.php:1554
2453
  msgid "From a search result"
2454
  msgstr "Von einem Suchresultat"
2455
 
2456
+ #: ../admin/view/wp-slimstat-reports.php:1556
2457
  msgid ""
2458
  "Visitors who came to your site via searches on Google or some other search "
2459
  "engine."
2460
  msgstr ""
2461
  "Besucher welche über eine Suchmaschine auf die eigene Website gekommen sind."
2462
 
2463
+ #: ../admin/view/wp-slimstat-reports.php:1558
2464
  msgid "Unique Landing Pages"
2465
  msgstr "Eindeutige Einstiegsseiten"
2466
 
2467
+ #: ../admin/view/wp-slimstat-reports.php:1560
2468
  msgid ""
2469
  "The first page that a user views during a session. This is also known as the "
2470
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2474
  "Die erste Seite welche ein Benutzer w&auml;hrend einer Sitzung besucht, die "
2475
  "s.g. Einstiegs- oder Landeseite."
2476
 
2477
+ #: ../admin/view/wp-slimstat-reports.php:1562
2478
  msgid "Bounce Pages"
2479
  msgstr "Absprungrate"
2480
 
2481
+ #: ../admin/view/wp-slimstat-reports.php:1564
2482
  #, fuzzy
2483
  msgid "Number of single page visits to your site over the selected period."
2484
  msgstr ""
2485
  "Anzahl der Besucher einer einzelnen Seite über die gew&auml;hlte Periode."
2486
 
2487
+ #: ../admin/view/wp-slimstat-reports.php:1566
2488
  #, fuzzy
2489
  msgid "New Visitors Rate"
2490
  msgstr "Neue Besucher"
2491
 
2492
+ #: ../admin/view/wp-slimstat-reports.php:1568
2493
  #, fuzzy
2494
  msgid ""
2495
  "Percentage of single page visits, i.e. visits in which the person left your "
2498
  "Prozentsatz von Besuchen einzelner Seiten, d.h. Besuche bei welchen der "
2499
  "Besucher die Website auf der aufgerufenen Seite wieder verlassen hat."
2500
 
2501
+ #: ../admin/view/wp-slimstat-reports.php:1570
2502
  msgid "Currently from search engines"
2503
  msgstr "Aktuell von Suchmaschinen"
2504
 
2505
+ #: ../admin/view/wp-slimstat-reports.php:1572
2506
  msgid ""
2507
  "Visitors who visited the site in the last 5 minutes coming from a search "
2508
  "engine."
2510
  "Besucher welche innerhalb der letzten 5 Minuten von einer Suchmaschine "
2511
  "gekommen sind."
2512
 
2513
+ #: ../admin/view/wp-slimstat-reports.php:1642
2514
  msgid "Number of pages in your site included in Google's index."
2515
  msgstr ""
2516
 
2517
+ #: ../admin/view/wp-slimstat-reports.php:1643
2518
  msgid "Google Index"
2519
  msgstr "Google-Index"
2520
 
2521
+ #: ../admin/view/wp-slimstat-reports.php:1644
2522
  msgid "Number of pages, according to Google, that link back to your site."
2523
  msgstr ""
2524
 
2525
+ #: ../admin/view/wp-slimstat-reports.php:1645
2526
  msgid "Google Backlinks"
2527
  msgstr ""
2528
 
2529
+ #: ../admin/view/wp-slimstat-reports.php:1646
2530
  msgid ""
2531
  "How many times the Facebook Like button has been approximately clicked on "
2532
  "your site."
2533
  msgstr ""
2534
 
2535
+ #: ../admin/view/wp-slimstat-reports.php:1647
2536
  msgid "Facebook Likes"
2537
  msgstr "Facebook Likes"
2538
 
2539
+ #: ../admin/view/wp-slimstat-reports.php:1648
2540
  msgid ""
2541
  "How many times your site has been shared by someone on the social network."
2542
  msgstr ""
2543
 
2544
+ #: ../admin/view/wp-slimstat-reports.php:1649
2545
  msgid "Facebook Shares"
2546
  msgstr ""
2547
 
2548
+ #: ../admin/view/wp-slimstat-reports.php:1650
2549
  msgid "How many times links to your website have been clicked on Facebook."
2550
  msgstr ""
2551
 
2552
+ #: ../admin/view/wp-slimstat-reports.php:1651
2553
  msgid "Facebook Clicks"
2554
  msgstr "Clicks bei Facebook"
2555
 
2556
+ #: ../admin/view/wp-slimstat-reports.php:1652
2557
  msgid ""
2558
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2559
  "traffic data."
2560
  msgstr ""
2561
 
2562
+ #: ../admin/view/wp-slimstat-reports.php:1653
2563
  msgid "Alexa World Rank"
2564
  msgstr ""
2565
 
2566
+ #: ../admin/view/wp-slimstat-reports.php:1654
2567
  msgid "Alexa Country Rank"
2568
  msgstr ""
2569
 
2570
+ #: ../admin/view/wp-slimstat-reports.php:1655
2571
  msgid "Alexa Popularity"
2572
  msgstr ""
2573
 
2574
+ #: ../admin/view/wp-slimstat-reports.php:1666
2575
  #, fuzzy
2576
  msgid "Content Items"
2577
  msgstr "Inhalt"
2578
 
2579
+ #: ../admin/view/wp-slimstat-reports.php:1668
2580
  msgid ""
2581
  "This value includes not only posts, but also custom post types, regardless "
2582
  "of their status"
2583
  msgstr ""
2584
 
2585
+ #: ../admin/view/wp-slimstat-reports.php:1670
2586
  #, fuzzy
2587
  msgid "Posts"
2588
  msgstr "Top-Artikel"
2589
 
2590
+ #: ../admin/view/wp-slimstat-reports.php:1673
2591
  #, fuzzy
2592
  msgid "Pages"
2593
  msgstr "Top-Seiten"
2594
 
2595
+ #: ../admin/view/wp-slimstat-reports.php:1676
2596
  msgid "Attachments"
2597
  msgstr ""
2598
 
2599
+ #: ../admin/view/wp-slimstat-reports.php:1679
2600
  #, fuzzy
2601
  msgid "Revisions"
2602
  msgstr "Berechtigungen"
2603
 
2604
+ #: ../admin/view/wp-slimstat-reports.php:1682
2605
  #, fuzzy
2606
  msgid "Comments"
2607
  msgstr "Gesamte Kommentare"
2608
 
2609
+ #: ../admin/view/wp-slimstat-reports.php:1685
2610
  #, fuzzy
2611
  msgid "Avg Comments per Post"
2612
  msgstr "Spalte bei Beitr&auml;gen hinzuf&uuml;gen"
2613
 
2614
+ #: ../admin/view/wp-slimstat-reports.php:1688
2615
  msgid "Avg Server Latency"
2616
  msgstr ""
2617
 
2618
+ #: ../admin/view/wp-slimstat-reports.php:1690
2619
  msgid ""
2620
  "Latency is the amount of time it takes for the host server to receive and "
2621
  "process a request for a page object. The amount of latency depends largely "
2622
  "on how far away the user is from the server."
2623
  msgstr ""
2624
 
2625
+ #: ../admin/view/wp-slimstat-reports.php:1733
2626
  #, fuzzy
2627
  msgid "Coordinates"
2628
  msgstr "Tracking aktiv"
2629
 
2630
+ #: ../admin/view/wp-slimstat-reports.php:1733
2631
  #, fuzzy
2632
  msgid "Date"
2633
  msgstr "Datum/Zeit"
2634
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2635
  # Unknown
2636
+ #: ../admin/view/wp-slimstat-reports.php:1749
2637
  msgid "c-xx"
2638
  msgstr "Unbekannt"
2639
 
2640
  # Afghanistan
2641
+ #: ../admin/view/wp-slimstat-reports.php:1749
2642
  msgid "c-af"
2643
  msgstr "Afghanistan"
2644
 
2645
  # Åland Islands
2646
+ #: ../admin/view/wp-slimstat-reports.php:1749
2647
  msgid "c-ax"
2648
  msgstr "&Aring;landinseln"
2649
 
2650
  # Albania
2651
+ #: ../admin/view/wp-slimstat-reports.php:1749
2652
  msgid "c-al"
2653
  msgstr "Albanien"
2654
 
2655
  # Algeria
2656
+ #: ../admin/view/wp-slimstat-reports.php:1749
2657
  msgid "c-dz"
2658
  msgstr "Algerien"
2659
 
2660
  # Andorra
2661
+ #: ../admin/view/wp-slimstat-reports.php:1749
2662
  msgid "c-ad"
2663
  msgstr "Andorra"
2664
 
2665
  # Angola
2666
+ #: ../admin/view/wp-slimstat-reports.php:1749
2667
  msgid "c-ao"
2668
  msgstr "Angola"
2669
 
2670
  # Anguilla
2671
+ #: ../admin/view/wp-slimstat-reports.php:1749
2672
  msgid "c-ai"
2673
  msgstr "Anguilla"
2674
 
2675
  # Antigua and Barbuda
2676
+ #: ../admin/view/wp-slimstat-reports.php:1749
2677
  msgid "c-ag"
2678
  msgstr "Antigua und Barbuda"
2679
 
2680
  # Argentina
2681
+ #: ../admin/view/wp-slimstat-reports.php:1749
2682
  msgid "c-ar"
2683
  msgstr "Argentinien"
2684
 
2685
  # Armenia
2686
+ #: ../admin/view/wp-slimstat-reports.php:1749
2687
  msgid "c-am"
2688
  msgstr "Armenien"
2689
 
2690
  # Aruba
2691
+ #: ../admin/view/wp-slimstat-reports.php:1749
2692
  msgid "c-aw"
2693
  msgstr "Aruba"
2694
 
2695
  # Australia
2696
+ #: ../admin/view/wp-slimstat-reports.php:1749
2697
  msgid "c-au"
2698
  msgstr "Australien"
2699
 
2700
  # Austria
2701
+ #: ../admin/view/wp-slimstat-reports.php:1749
2702
  msgid "c-at"
2703
  msgstr "&Ouml;sterreich"
2704
 
2705
  # Azerbaijan
2706
+ #: ../admin/view/wp-slimstat-reports.php:1749
2707
  msgid "c-az"
2708
  msgstr "Aserbaidschan"
2709
 
2710
  # Bahamas
2711
+ #: ../admin/view/wp-slimstat-reports.php:1749
2712
  msgid "c-bs"
2713
  msgstr "Bahamas"
2714
 
2715
  # Bahrain
2716
+ #: ../admin/view/wp-slimstat-reports.php:1749
2717
  msgid "c-bh"
2718
  msgstr "Bahrain"
2719
 
2720
  # Bangladesh
2721
+ #: ../admin/view/wp-slimstat-reports.php:1749
2722
  msgid "c-bd"
2723
  msgstr "Bangladesch"
2724
 
2725
  # Barbados
2726
+ #: ../admin/view/wp-slimstat-reports.php:1749
2727
  msgid "c-bb"
2728
  msgstr "Barbados"
2729
 
2730
  # Belarus
2731
+ #: ../admin/view/wp-slimstat-reports.php:1749
2732
  msgid "c-by"
2733
  msgstr "Wei&szlig;russland"
2734
 
2735
  # Belgium
2736
+ #: ../admin/view/wp-slimstat-reports.php:1749
2737
  msgid "c-be"
2738
  msgstr "Belgien"
2739
 
2740
  # Belize
2741
+ #: ../admin/view/wp-slimstat-reports.php:1749
2742
  msgid "c-bz"
2743
  msgstr "Belize"
2744
 
2745
  # Benin
2746
+ #: ../admin/view/wp-slimstat-reports.php:1749
2747
  msgid "c-bj"
2748
  msgstr "Benin"
2749
 
2750
  # Bermuda
2751
+ #: ../admin/view/wp-slimstat-reports.php:1749
2752
  msgid "c-bm"
2753
  msgstr "Bermuda"
2754
 
2755
  # Bhutan
2756
+ #: ../admin/view/wp-slimstat-reports.php:1749
2757
  msgid "c-bt"
2758
  msgstr "Bhutan"
2759
 
2760
  # Bolivia
2761
+ #: ../admin/view/wp-slimstat-reports.php:1749
2762
  msgid "c-bo"
2763
  msgstr "Bolivien"
2764
 
2765
  # Bosnia and Herzegovina
2766
+ #: ../admin/view/wp-slimstat-reports.php:1749
2767
  msgid "c-ba"
2768
  msgstr "Bosnien Herzegowina"
2769
 
2770
  # Botswana
2771
+ #: ../admin/view/wp-slimstat-reports.php:1749
2772
  msgid "c-bw"
2773
  msgstr "Botswana"
2774
 
2775
  # Brazil
2776
+ #: ../admin/view/wp-slimstat-reports.php:1749
2777
  msgid "c-br"
2778
  msgstr "Brasilien"
2779
 
2780
  # Brunei Darussalam
2781
+ #: ../admin/view/wp-slimstat-reports.php:1749
2782
  msgid "c-bn"
2783
  msgstr "Brunei Darussalam"
2784
 
2785
  # Bulgaria
2786
+ #: ../admin/view/wp-slimstat-reports.php:1749
2787
  msgid "c-bg"
2788
  msgstr "Bulgarien"
2789
 
2790
  # Burkina Faso
2791
+ #: ../admin/view/wp-slimstat-reports.php:1749
2792
  msgid "c-bf"
2793
  msgstr "Burkina Faso"
2794
 
2795
  # Burundi
2796
+ #: ../admin/view/wp-slimstat-reports.php:1749
2797
  msgid "c-bi"
2798
  msgstr "Burundi"
2799
 
2800
  # Cambodia
2801
+ #: ../admin/view/wp-slimstat-reports.php:1749
2802
  msgid "c-kh"
2803
  msgstr "Kambodscha"
2804
 
2805
  # Cameroon
2806
+ #: ../admin/view/wp-slimstat-reports.php:1749
2807
  msgid "c-cm"
2808
  msgstr "Kamerun"
2809
 
2810
  # Canada
2811
+ #: ../admin/view/wp-slimstat-reports.php:1749
2812
  msgid "c-ca"
2813
  msgstr "Kanada"
2814
 
2815
  # Cape Verde
2816
+ #: ../admin/view/wp-slimstat-reports.php:1749
2817
  msgid "c-cv"
2818
  msgstr "Kap Verde"
2819
 
2820
  # Cayman Islands
2821
+ #: ../admin/view/wp-slimstat-reports.php:1749
2822
  msgid "c-ky"
2823
  msgstr "Kaimaninseln"
2824
 
2825
  # Central African Republic
2826
+ #: ../admin/view/wp-slimstat-reports.php:1749
2827
  msgid "c-cf"
2828
  msgstr "Zentralafrika"
2829
 
2830
  # Chad
2831
+ #: ../admin/view/wp-slimstat-reports.php:1749
2832
  msgid "c-td"
2833
  msgstr "Tschad"
2834
 
2835
  # Chile
2836
+ #: ../admin/view/wp-slimstat-reports.php:1749
2837
  msgid "c-cl"
2838
  msgstr "Chile"
2839
 
2840
  # China
2841
+ #: ../admin/view/wp-slimstat-reports.php:1749
2842
  msgid "c-cn"
2843
  msgstr "China"
2844
 
2845
  # Colombia
2846
+ #: ../admin/view/wp-slimstat-reports.php:1749
2847
  msgid "c-co"
2848
  msgstr "Kolumbien"
2849
 
2850
  # Comoros
2851
+ #: ../admin/view/wp-slimstat-reports.php:1749
2852
  msgid "c-km"
2853
  msgstr "Komoren"
2854
 
2855
  # Congo
2856
+ #: ../admin/view/wp-slimstat-reports.php:1749
2857
  msgid "c-cg"
2858
  msgstr "Republik Kongo"
2859
 
2860
  # The Democratic Republic of the Congo
2861
+ #: ../admin/view/wp-slimstat-reports.php:1749
2862
  msgid "c-cd"
2863
  msgstr "Demokratische Republik Kongo"
2864
 
2865
  # Costa Rica
2866
+ #: ../admin/view/wp-slimstat-reports.php:1749
2867
  msgid "c-cr"
2868
  msgstr "Costa Rica"
2869
 
2870
  # Côte d'Ivoire
2871
+ #: ../admin/view/wp-slimstat-reports.php:1749
2872
  msgid "c-ci"
2873
  msgstr "Elfenbeink&uuml;ste"
2874
 
2875
  # Croatia
2876
+ #: ../admin/view/wp-slimstat-reports.php:1749
2877
  msgid "c-hr"
2878
  msgstr "Kroatien"
2879
 
2880
  # Cuba
2881
+ #: ../admin/view/wp-slimstat-reports.php:1749
2882
  msgid "c-cu"
2883
  msgstr "Kuba"
2884
 
2885
  # Cyprus
2886
+ #: ../admin/view/wp-slimstat-reports.php:1749
2887
  msgid "c-cy"
2888
  msgstr "Zypern"
2889
 
2890
  # Czech Republic
2891
+ #: ../admin/view/wp-slimstat-reports.php:1749
2892
  msgid "c-cz"
2893
  msgstr "Tschechische Republik"
2894
 
2895
  # Denmark
2896
+ #: ../admin/view/wp-slimstat-reports.php:1749
2897
  msgid "c-dk"
2898
  msgstr "D&auml;nemark"
2899
 
2900
  # Djibouti
2901
+ #: ../admin/view/wp-slimstat-reports.php:1749
2902
  msgid "c-dj"
2903
  msgstr "Dschibuti"
2904
 
2905
  # Dominica
2906
+ #: ../admin/view/wp-slimstat-reports.php:1749
2907
  msgid "c-dm"
2908
  msgstr "Dominica"
2909
 
2910
  # Dominican Republic
2911
+ #: ../admin/view/wp-slimstat-reports.php:1749
2912
  msgid "c-do"
2913
  msgstr "Dominikanische Republik"
2914
 
2915
  # Ecuador
2916
+ #: ../admin/view/wp-slimstat-reports.php:1749
2917
  msgid "c-ec"
2918
  msgstr "Ecuador"
2919
 
2920
  # Egypt
2921
+ #: ../admin/view/wp-slimstat-reports.php:1749
2922
  msgid "c-eg"
2923
  msgstr "&Auml;gypten"
2924
 
2925
  # El Salvador
2926
+ #: ../admin/view/wp-slimstat-reports.php:1749
2927
  msgid "c-sv"
2928
  msgstr "El Salvador"
2929
 
2930
  # Equatorial Guinea
2931
+ #: ../admin/view/wp-slimstat-reports.php:1749
2932
  msgid "c-gq"
2933
  msgstr "Äquatorialguinea"
2934
 
2935
  # Eritrea
2936
+ #: ../admin/view/wp-slimstat-reports.php:1749
2937
  msgid "c-er"
2938
  msgstr "Eritrea"
2939
 
2940
  # Estonia
2941
+ #: ../admin/view/wp-slimstat-reports.php:1749
2942
  msgid "c-ee"
2943
  msgstr "Estland"
2944
 
2945
  # Ethiopia
2946
+ #: ../admin/view/wp-slimstat-reports.php:1749
2947
  msgid "c-et"
2948
  msgstr "&Auml;thiopien"
2949
 
2950
  # Faroe Islands
2951
+ #: ../admin/view/wp-slimstat-reports.php:1749
2952
  msgid "c-fo"
2953
  msgstr "F&auml;r&ouml;er Inseln"
2954
 
2955
  # Falkland Islands (Malvinas)
2956
+ #: ../admin/view/wp-slimstat-reports.php:1749
2957
  msgid "c-fk"
2958
  msgstr "Falklandinseln (Malwinen)"
2959
 
2960
  # Fiji
2961
+ #: ../admin/view/wp-slimstat-reports.php:1749
2962
  msgid "c-fj"
2963
  msgstr "Republik Fidschi"
2964
 
2965
  # Finland
2966
+ #: ../admin/view/wp-slimstat-reports.php:1749
2967
  msgid "c-fi"
2968
  msgstr "Finnland"
2969
 
2970
  # France
2971
+ #: ../admin/view/wp-slimstat-reports.php:1749
2972
  msgid "c-fr"
2973
  msgstr "Franz&ouml;sische Republik"
2974
 
2975
  # French Guiana
2976
+ #: ../admin/view/wp-slimstat-reports.php:1749
2977
  msgid "c-gf"
2978
  msgstr "Franz&ouml;sisch-Guayana"
2979
 
2980
  # Gabon
2981
+ #: ../admin/view/wp-slimstat-reports.php:1749
2982
  msgid "c-ga"
2983
  msgstr "Gabun"
2984
 
2985
  # Gambia
2986
+ #: ../admin/view/wp-slimstat-reports.php:1749
2987
  msgid "c-gm"
2988
  msgstr "Gambia"
2989
 
2990
  # Georgia
2991
+ #: ../admin/view/wp-slimstat-reports.php:1749
2992
  msgid "c-ge"
2993
  msgstr "Georgien"
2994
 
2995
  # Germany
2996
+ #: ../admin/view/wp-slimstat-reports.php:1749
2997
  msgid "c-de"
2998
  msgstr "Bundesrepublik Deutschland"
2999
 
3000
  # Ghana
3001
+ #: ../admin/view/wp-slimstat-reports.php:1749
3002
  msgid "c-gh"
3003
  msgstr "Ghana"
3004
 
3005
  # Greece
3006
+ #: ../admin/view/wp-slimstat-reports.php:1749
3007
  msgid "c-gr"
3008
  msgstr "Griechenland"
3009
 
3010
  # Greenland
3011
+ #: ../admin/view/wp-slimstat-reports.php:1749
3012
  msgid "c-gl"
3013
  msgstr "Gr&ouml;nland"
3014
 
3015
  # Grenada
3016
+ #: ../admin/view/wp-slimstat-reports.php:1749
3017
  msgid "c-gd"
3018
  msgstr "Grenada"
3019
 
3020
  # Guadeloupe
3021
+ #: ../admin/view/wp-slimstat-reports.php:1749
3022
  msgid "c-gp"
3023
  msgstr "Guadeloupe"
3024
 
3025
  # Guatemala
3026
+ #: ../admin/view/wp-slimstat-reports.php:1749
3027
  msgid "c-gt"
3028
  msgstr "Guatemala"
3029
 
3030
  # Guinea
3031
+ #: ../admin/view/wp-slimstat-reports.php:1749
3032
  msgid "c-gn"
3033
  msgstr "Guinea"
3034
 
3035
  # Guinea-Bissau
3036
+ #: ../admin/view/wp-slimstat-reports.php:1749
3037
  msgid "c-gw"
3038
  msgstr "Guinea-Bissau"
3039
 
3040
  # Guyana
3041
+ #: ../admin/view/wp-slimstat-reports.php:1749
3042
  msgid "c-gy"
3043
  msgstr "Guyana"
3044
 
3045
  # Haiti
3046
+ #: ../admin/view/wp-slimstat-reports.php:1749
3047
  msgid "c-ht"
3048
  msgstr "Haiti"
3049
 
3050
  # Honduras
3051
+ #: ../admin/view/wp-slimstat-reports.php:1749
3052
  msgid "c-hn"
3053
  msgstr "Honduras"
3054
 
3055
  # Hong Kong
3056
+ #: ../admin/view/wp-slimstat-reports.php:1749
3057
  msgid "c-hk"
3058
  msgstr "Hong Kong"
3059
 
3060
  # Hungary
3061
+ #: ../admin/view/wp-slimstat-reports.php:1749
3062
  msgid "c-hu"
3063
  msgstr "Ungarn"
3064
 
3065
  # Iceland
3066
+ #: ../admin/view/wp-slimstat-reports.php:1749
3067
  msgid "c-is"
3068
  msgstr "Island"
3069
 
3070
  # India
3071
+ #: ../admin/view/wp-slimstat-reports.php:1749
3072
  msgid "c-in"
3073
  msgstr "Indien"
3074
 
3075
  # Indonesia
3076
+ #: ../admin/view/wp-slimstat-reports.php:1749
3077
  msgid "c-id"
3078
  msgstr "Indonesien"
3079
 
3080
  # Islamic Republic of Iran
3081
+ #: ../admin/view/wp-slimstat-reports.php:1749
3082
  msgid "c-ir"
3083
  msgstr "Islamische Republik Iran"
3084
 
3085
  # Iraq
3086
+ #: ../admin/view/wp-slimstat-reports.php:1749
3087
  msgid "c-iq"
3088
  msgstr "Irak"
3089
 
3090
  # Ireland
3091
+ #: ../admin/view/wp-slimstat-reports.php:1749
3092
  msgid "c-ie"
3093
  msgstr "Irland"
3094
 
3095
  # Israel
3096
+ #: ../admin/view/wp-slimstat-reports.php:1749
3097
  msgid "c-il"
3098
  msgstr "Israel"
3099
 
3100
  # Italy
3101
+ #: ../admin/view/wp-slimstat-reports.php:1749
3102
  msgid "c-it"
3103
  msgstr "Italien"
3104
 
3105
  # Jamaica
3106
+ #: ../admin/view/wp-slimstat-reports.php:1749
3107
  msgid "c-jm"
3108
  msgstr "Jamaika"
3109
 
3110
  # Japan
3111
+ #: ../admin/view/wp-slimstat-reports.php:1749
3112
  msgid "c-jp"
3113
  msgstr "Japan"
3114
 
3115
  # Jordan
3116
+ #: ../admin/view/wp-slimstat-reports.php:1749
3117
  msgid "c-jo"
3118
  msgstr "Jordan"
3119
 
3120
  # Kazakhstan
3121
+ #: ../admin/view/wp-slimstat-reports.php:1749
3122
  msgid "c-kz"
3123
  msgstr "Kasachstan"
3124
 
3125
  # Kenya
3126
+ #: ../admin/view/wp-slimstat-reports.php:1749
3127
  msgid "c-ke"
3128
  msgstr "Kenia"
3129
 
3130
  # Nauru
3131
+ #: ../admin/view/wp-slimstat-reports.php:1749
3132
  msgid "c-nr"
3133
  msgstr "Nauru"
3134
 
3135
  # Democratic People's Republic of Korea
3136
+ #: ../admin/view/wp-slimstat-reports.php:1749
3137
  msgid "c-kp"
3138
  msgstr "Demokratische Volksrepublik Korea"
3139
 
3140
  # Republic of Korea
3141
+ #: ../admin/view/wp-slimstat-reports.php:1749
3142
  msgid "c-kr"
3143
  msgstr "Republik Korea"
3144
 
3145
+ #: ../admin/view/wp-slimstat-reports.php:1749
3146
  msgid "c-kv"
3147
  msgstr "Komi"
3148
 
3149
  # Kuwait
3150
+ #: ../admin/view/wp-slimstat-reports.php:1749
3151
  msgid "c-kw"
3152
  msgstr "Kuwait"
3153
 
3154
  # Kyrgyzstan
3155
+ #: ../admin/view/wp-slimstat-reports.php:1749
3156
  msgid "c-kg"
3157
  msgstr "Kirgistan"
3158
 
3159
  # Lao People's Democratic Republic
3160
+ #: ../admin/view/wp-slimstat-reports.php:1749
3161
  msgid "c-la"
3162
  msgstr "Demokratische Volksrepublik Laos"
3163
 
3164
  # Latvia
3165
+ #: ../admin/view/wp-slimstat-reports.php:1749
3166
  msgid "c-lv"
3167
  msgstr "Lettland"
3168
 
3169
  # Lebanon
3170
+ #: ../admin/view/wp-slimstat-reports.php:1749
3171
  msgid "c-lb"
3172
  msgstr "Libanon"
3173
 
3174
  # Lesotho
3175
+ #: ../admin/view/wp-slimstat-reports.php:1749
3176
  msgid "c-ls"
3177
  msgstr "Lesotho"
3178
 
3179
  # Liberia
3180
+ #: ../admin/view/wp-slimstat-reports.php:1749
3181
  msgid "c-lr"
3182
  msgstr "Liberia"
3183
 
3184
  # Libyan Arab Jamahiriya
3185
+ #: ../admin/view/wp-slimstat-reports.php:1749
3186
  msgid "c-ly"
3187
  msgstr "Libyen"
3188
 
3189
  # Liechtenstein
3190
+ #: ../admin/view/wp-slimstat-reports.php:1749
3191
  msgid "c-li"
3192
  msgstr "Liechtenstein"
3193
 
3194
  # Lithuania
3195
+ #: ../admin/view/wp-slimstat-reports.php:1749
3196
  msgid "c-lt"
3197
  msgstr "Litauen"
3198
 
3199
  # Luxembourg
3200
+ #: ../admin/view/wp-slimstat-reports.php:1749
3201
  msgid "c-lu"
3202
  msgstr "Luxemburg"
3203
 
3204
  # The Former Yugoslav Republic of Macedonia
3205
+ #: ../admin/view/wp-slimstat-reports.php:1749
3206
  msgid "c-mk"
3207
  msgstr "Ehemalige Jugoslawische Republik Mazedonien"
3208
 
3209
  # Madagascar
3210
+ #: ../admin/view/wp-slimstat-reports.php:1749
3211
  msgid "c-mg"
3212
  msgstr "Madagaskar"
3213
 
3214
  # Malawi
3215
+ #: ../admin/view/wp-slimstat-reports.php:1749
3216
  msgid "c-mw"
3217
  msgstr "Malawi"
3218
 
3219
  # Malaysia
3220
+ #: ../admin/view/wp-slimstat-reports.php:1749
3221
  msgid "c-my"
3222
  msgstr "Malaysien"
3223
 
3224
  # Mali
3225
+ #: ../admin/view/wp-slimstat-reports.php:1749
3226
  msgid "c-ml"
3227
  msgstr "Mali"
3228
 
3229
  # Malta
3230
+ #: ../admin/view/wp-slimstat-reports.php:1749
3231
  msgid "c-mt"
3232
  msgstr "Malta"
3233
 
3234
  # Martinique
3235
+ #: ../admin/view/wp-slimstat-reports.php:1749
3236
  msgid "c-mq"
3237
  msgstr "Martinique"
3238
 
3239
  # Mauritania
3240
+ #: ../admin/view/wp-slimstat-reports.php:1749
3241
  msgid "c-mr"
3242
  msgstr "Mauritanien"
3243
 
3244
  # Mauritius
3245
+ #: ../admin/view/wp-slimstat-reports.php:1749
3246
  msgid "c-mu"
3247
  msgstr "Mauritius"
3248
 
3249
  # Mexico
3250
+ #: ../admin/view/wp-slimstat-reports.php:1749
3251
  msgid "c-mx"
3252
  msgstr "Mexiko"
3253
 
3254
  # Moldova
3255
+ #: ../admin/view/wp-slimstat-reports.php:1749
3256
  msgid "c-md"
3257
  msgstr "Moldawien"
3258
 
3259
  # Mongolia
3260
+ #: ../admin/view/wp-slimstat-reports.php:1749
3261
  msgid "c-mn"
3262
  msgstr "Mongolei"
3263
 
3264
  # Montenegro
3265
+ #: ../admin/view/wp-slimstat-reports.php:1749
3266
  msgid "c-me"
3267
  msgstr "Montenegro"
3268
 
3269
  # Montserrat
3270
+ #: ../admin/view/wp-slimstat-reports.php:1749
3271
  msgid "c-ms"
3272
  msgstr "Montserrat"
3273
 
3274
  # Morocco
3275
+ #: ../admin/view/wp-slimstat-reports.php:1749
3276
  msgid "c-ma"
3277
  msgstr "Marokko"
3278
 
3279
  # Mozambique
3280
+ #: ../admin/view/wp-slimstat-reports.php:1749
3281
  msgid "c-mz"
3282
  msgstr "Mosambik"
3283
 
3284
  # Myanmar
3285
+ #: ../admin/view/wp-slimstat-reports.php:1749
3286
  msgid "c-mm"
3287
  msgstr "Myanmar"
3288
 
3289
  # Namibia
3290
+ #: ../admin/view/wp-slimstat-reports.php:1749
3291
  msgid "c-na"
3292
  msgstr "Namibia"
3293
 
3294
  # Nepal
3295
+ #: ../admin/view/wp-slimstat-reports.php:1749
3296
  msgid "c-np"
3297
  msgstr "Nepal"
3298
 
3299
  # Netherlands
3300
+ #: ../admin/view/wp-slimstat-reports.php:1749
3301
  msgid "c-nl"
3302
  msgstr "Niederlande"
3303
 
3304
  # New Caledonia
3305
+ #: ../admin/view/wp-slimstat-reports.php:1749
3306
  msgid "c-nc"
3307
  msgstr "Neukaledonien"
3308
 
3309
  # New Zealand
3310
+ #: ../admin/view/wp-slimstat-reports.php:1749
3311
  msgid "c-nz"
3312
  msgstr "Neuseeland"
3313
 
3314
  # Nicaragua
3315
+ #: ../admin/view/wp-slimstat-reports.php:1749
3316
  msgid "c-ni"
3317
  msgstr "Nicaragua"
3318
 
3319
  # Niger
3320
+ #: ../admin/view/wp-slimstat-reports.php:1749
3321
  msgid "c-ne"
3322
  msgstr "Niger"
3323
 
3324
  # Nigeria
3325
+ #: ../admin/view/wp-slimstat-reports.php:1749
3326
  msgid "c-ng"
3327
  msgstr "Nigeria"
3328
 
3329
  # Norway
3330
+ #: ../admin/view/wp-slimstat-reports.php:1749
3331
  msgid "c-no"
3332
  msgstr "Norwegen"
3333
 
3334
  # Oman
3335
+ #: ../admin/view/wp-slimstat-reports.php:1749
3336
  msgid "c-om"
3337
  msgstr "Oman"
3338
 
3339
  # Pakistan
3340
+ #: ../admin/view/wp-slimstat-reports.php:1749
3341
  msgid "c-pk"
3342
  msgstr "Pakistan"
3343
 
3344
  # Palau
3345
+ #: ../admin/view/wp-slimstat-reports.php:1749
3346
  msgid "c-pw"
3347
  msgstr "Palau"
3348
 
3349
  # Occupied Palestinian Territory
3350
+ #: ../admin/view/wp-slimstat-reports.php:1749
3351
  msgid "c-ps"
3352
  msgstr "Palästinensische Autonomiegebiete"
3353
 
3354
  # Panama
3355
+ #: ../admin/view/wp-slimstat-reports.php:1749
3356
  msgid "c-pa"
3357
  msgstr "Panama"
3358
 
3359
  # Papua New Guinea
3360
+ #: ../admin/view/wp-slimstat-reports.php:1749
3361
  msgid "c-pg"
3362
  msgstr "Papua Neu Guinea"
3363
 
3364
  # Paraguay
3365
+ #: ../admin/view/wp-slimstat-reports.php:1749
3366
  msgid "c-py"
3367
  msgstr "Paraguay"
3368
 
3369
  # Peru
3370
+ #: ../admin/view/wp-slimstat-reports.php:1749
3371
  msgid "c-pe"
3372
  msgstr "Peru"
3373
 
3374
  # Philippines
3375
+ #: ../admin/view/wp-slimstat-reports.php:1749
3376
  msgid "c-ph"
3377
  msgstr "Philippinen"
3378
 
3379
  # Poland
3380
+ #: ../admin/view/wp-slimstat-reports.php:1749
3381
  msgid "c-pl"
3382
  msgstr "Polen"
3383
 
3384
  # Portugal
3385
+ #: ../admin/view/wp-slimstat-reports.php:1749
3386
  msgid "c-pt"
3387
  msgstr "Portugal"
3388
 
3389
  # Puerto Rico
3390
+ #: ../admin/view/wp-slimstat-reports.php:1749
3391
  msgid "c-pr"
3392
  msgstr "Puerto Rico"
3393
 
3394
  # Qatar
3395
+ #: ../admin/view/wp-slimstat-reports.php:1749
3396
  msgid "c-qa"
3397
  msgstr "Katar"
3398
 
3399
  # Réunion
3400
+ #: ../admin/view/wp-slimstat-reports.php:1749
3401
  msgid "c-re"
3402
  msgstr "Réunion"
3403
 
3404
  # Romania
3405
+ #: ../admin/view/wp-slimstat-reports.php:1749
3406
  msgid "c-ro"
3407
  msgstr "Rum&auml;nien"
3408
 
3409
  # Russian Federation
3410
+ #: ../admin/view/wp-slimstat-reports.php:1749
3411
  msgid "c-ru"
3412
  msgstr "Russische Föderation"
3413
 
3414
  # Rwanda
3415
+ #: ../admin/view/wp-slimstat-reports.php:1749
3416
  msgid "c-rw"
3417
  msgstr "Ruanda"
3418
 
3419
  # Saint Kitts and Nevis
3420
+ #: ../admin/view/wp-slimstat-reports.php:1749
3421
  msgid "c-kn"
3422
  msgstr "St. Kitts und Nevis"
3423
 
3424
  # Saint Lucia
3425
+ #: ../admin/view/wp-slimstat-reports.php:1749
3426
  msgid "c-lc"
3427
  msgstr "Saint Lucia"
3428
 
3429
  # Saint Martin
3430
+ #: ../admin/view/wp-slimstat-reports.php:1749
3431
  msgid "c-mf"
3432
  msgstr "Saint Martin"
3433
 
3434
  # Saint Vincent and the Grenadines
3435
+ #: ../admin/view/wp-slimstat-reports.php:1749
3436
  msgid "c-vc"
3437
  msgstr "St. Vincent und die Grenadinen"
3438
 
3439
  # Samoa
3440
+ #: ../admin/view/wp-slimstat-reports.php:1749
3441
  msgid "c-ws"
3442
  msgstr "Samoa"
3443
 
3444
  # Sao Tome and Principe
3445
+ #: ../admin/view/wp-slimstat-reports.php:1749
3446
  msgid "c-st"
3447
  msgstr "Sao Tomé und Príncipe"
3448
 
3449
  # Saudi Arabia
3450
+ #: ../admin/view/wp-slimstat-reports.php:1749
3451
  msgid "c-sa"
3452
  msgstr "Saudi Arabien"
3453
 
3454
  # Senegal
3455
+ #: ../admin/view/wp-slimstat-reports.php:1749
3456
  msgid "c-sn"
3457
  msgstr "Senegal"
3458
 
3459
  # Serbia
3460
+ #: ../admin/view/wp-slimstat-reports.php:1749
3461
  msgid "c-rs"
3462
  msgstr "Serbien"
3463
 
3464
  # Sierra Leone
3465
+ #: ../admin/view/wp-slimstat-reports.php:1749
3466
  msgid "c-sl"
3467
  msgstr "Sierra Leone"
3468
 
3469
  # Singapore
3470
+ #: ../admin/view/wp-slimstat-reports.php:1749
3471
  msgid "c-sg"
3472
  msgstr "Singapur"
3473
 
3474
  # Slovakia
3475
+ #: ../admin/view/wp-slimstat-reports.php:1749
3476
  msgid "c-sk"
3477
  msgstr "Slowakei"
3478
 
3479
  # Slovenia
3480
+ #: ../admin/view/wp-slimstat-reports.php:1749
3481
  msgid "c-si"
3482
  msgstr "Slowenien"
3483
 
3484
  # Solomon Islands
3485
+ #: ../admin/view/wp-slimstat-reports.php:1749
3486
  msgid "c-sb"
3487
  msgstr "Salomonen"
3488
 
3489
  # Somalia
3490
+ #: ../admin/view/wp-slimstat-reports.php:1749
3491
  msgid "c-so"
3492
  msgstr "Somalia"
3493
 
3494
  # South Africa
3495
+ #: ../admin/view/wp-slimstat-reports.php:1749
3496
  msgid "c-za"
3497
  msgstr "Südafrika"
3498
 
3499
  # South Georgia and the South Sandwich Islands
3500
+ #: ../admin/view/wp-slimstat-reports.php:1749
3501
  msgid "c-gs"
3502
  msgstr "Südgeorgien und die Südlichen Sandwichinseln"
3503
 
3504
  # Spain
3505
+ #: ../admin/view/wp-slimstat-reports.php:1749
3506
  msgid "c-es"
3507
  msgstr "Spanien"
3508
 
3509
  # Sri Lanka
3510
+ #: ../admin/view/wp-slimstat-reports.php:1749
3511
  msgid "c-lk"
3512
  msgstr "Sri Lanka"
3513
 
3514
+ #: ../admin/view/wp-slimstat-reports.php:1749
3515
  msgid "c-sc"
3516
  msgstr ""
3517
 
3518
  # Sudan
3519
+ #: ../admin/view/wp-slimstat-reports.php:1749
3520
  msgid "c-sd"
3521
  msgstr "Sudan"
3522
 
3523
+ #: ../admin/view/wp-slimstat-reports.php:1749
3524
  msgid "c-ss"
3525
  msgstr "Siswati"
3526
 
3527
  # Suriname
3528
+ #: ../admin/view/wp-slimstat-reports.php:1749
3529
  msgid "c-sr"
3530
  msgstr "Suriname"
3531
 
3532
  # Svalbard and Jan Mayen
3533
+ #: ../admin/view/wp-slimstat-reports.php:1749
3534
  msgid "c-sj"
3535
  msgstr "Spitzbergen und Jan Mayen"
3536
 
3537
  # Swaziland
3538
+ #: ../admin/view/wp-slimstat-reports.php:1749
3539
  msgid "c-sz"
3540
  msgstr "Swaziland"
3541
 
3542
  # Sweden
3543
+ #: ../admin/view/wp-slimstat-reports.php:1749
3544
  msgid "c-se"
3545
  msgstr "Schweden"
3546
 
3547
  # Switzerland
3548
+ #: ../admin/view/wp-slimstat-reports.php:1749
3549
  msgid "c-ch"
3550
  msgstr "Schweiz"
3551
 
3552
  # Syrian Arab Republic
3553
+ #: ../admin/view/wp-slimstat-reports.php:1749
3554
  msgid "c-sy"
3555
  msgstr "Arabische Republik Syrien"
3556
 
3557
  # Taiwan, Province of China
3558
+ #: ../admin/view/wp-slimstat-reports.php:1749
3559
  msgid "c-tw"
3560
  msgstr "Taiwan"
3561
 
3562
  # Tajikistan
3563
+ #: ../admin/view/wp-slimstat-reports.php:1749
3564
  msgid "c-tj"
3565
  msgstr "Tadschikistan"
3566
 
3567
  # United Republic of Tanzania
3568
+ #: ../admin/view/wp-slimstat-reports.php:1749
3569
  msgid "c-tz"
3570
  msgstr "Vereinigte Republik Tansania"
3571
 
3572
  # Thailand
3573
+ #: ../admin/view/wp-slimstat-reports.php:1749
3574
  msgid "c-th"
3575
  msgstr "Thailand"
3576
 
3577
  # Timor-Leste
3578
+ #: ../admin/view/wp-slimstat-reports.php:1749
3579
  msgid "c-tl"
3580
  msgstr "Timor-Leste"
3581
 
3582
  # Togo
3583
+ #: ../admin/view/wp-slimstat-reports.php:1749
3584
  msgid "c-tg"
3585
  msgstr "Togo"
3586
 
3587
  # Tonga
3588
+ #: ../admin/view/wp-slimstat-reports.php:1749
3589
  msgid "c-to"
3590
  msgstr "Tonga"
3591
 
3592
  # Trinidad and Tobago
3593
+ #: ../admin/view/wp-slimstat-reports.php:1749
3594
  msgid "c-tt"
3595
  msgstr "Trinidad und Tobago"
3596
 
3597
  # Tunisia
3598
+ #: ../admin/view/wp-slimstat-reports.php:1749
3599
  msgid "c-tn"
3600
  msgstr "Tunesien"
3601
 
3602
  # Turkey
3603
+ #: ../admin/view/wp-slimstat-reports.php:1749
3604
  msgid "c-tr"
3605
  msgstr "T&uuml;rkei"
3606
 
3607
  # Turkmenistan
3608
+ #: ../admin/view/wp-slimstat-reports.php:1749
3609
  msgid "c-tm"
3610
  msgstr "Turkmenistan"
3611
 
3612
  # Turks and Caicos Islands
3613
+ #: ../admin/view/wp-slimstat-reports.php:1749
3614
  msgid "c-tc"
3615
  msgstr "Turks- und Caicosinseln"
3616
 
3617
  # Uganda
3618
+ #: ../admin/view/wp-slimstat-reports.php:1749
3619
  msgid "c-ug"
3620
  msgstr "Uganda"
3621
 
3622
  # Ukraine
3623
+ #: ../admin/view/wp-slimstat-reports.php:1749
3624
  msgid "c-ua"
3625
  msgstr "Ukraine"
3626
 
3627
  # United Arab Emirates
3628
+ #: ../admin/view/wp-slimstat-reports.php:1749
3629
  msgid "c-ae"
3630
  msgstr "Vereinigte Arabische Emirate"
3631
 
3632
  # United Kingdom
3633
+ #: ../admin/view/wp-slimstat-reports.php:1749
3634
  msgid "c-gb"
3635
  msgstr "Vereinigtes K&ouml;nigreich"
3636
 
3637
  # United States
3638
+ #: ../admin/view/wp-slimstat-reports.php:1749
3639
  msgid "c-us"
3640
  msgstr "Vereinigte Staaten"
3641
 
3642
  # Uruguay
3643
+ #: ../admin/view/wp-slimstat-reports.php:1749
3644
  msgid "c-uy"
3645
  msgstr "Uruguay"
3646
 
3647
  # Uzbekistan
3648
+ #: ../admin/view/wp-slimstat-reports.php:1749
3649
  msgid "c-uz"
3650
  msgstr "Usbekistan"
3651
 
3652
  # Vanuatu
3653
+ #: ../admin/view/wp-slimstat-reports.php:1749
3654
  msgid "c-vu"
3655
  msgstr "Vanuatu"
3656
 
3657
  # Venezuela
3658
+ #: ../admin/view/wp-slimstat-reports.php:1749
3659
  msgid "c-ve"
3660
  msgstr "Venezuela"
3661
 
3662
  # Viet Nam
3663
+ #: ../admin/view/wp-slimstat-reports.php:1749
3664
  msgid "c-vn"
3665
  msgstr "Vietnam"
3666
 
3667
  # British Virgin Islands
3668
+ #: ../admin/view/wp-slimstat-reports.php:1749
3669
  msgid "c-vg"
3670
  msgstr "Jungferninseln"
3671
 
3672
  # U.S. Virgin Islands
3673
+ #: ../admin/view/wp-slimstat-reports.php:1749
3674
  msgid "c-vi"
3675
  msgstr "Amerikanische Jungferninseln"
3676
 
3677
  # Western Sahara
3678
+ #: ../admin/view/wp-slimstat-reports.php:1749
3679
  msgid "c-eh"
3680
  msgstr "Westsahara"
3681
 
3682
  # Yemen
3683
+ #: ../admin/view/wp-slimstat-reports.php:1749
3684
  msgid "c-ye"
3685
  msgstr "Jemen"
3686
 
3687
  # Zambia
3688
+ #: ../admin/view/wp-slimstat-reports.php:1749
3689
  msgid "c-zm"
3690
  msgstr "Sambia"
3691
 
3692
  # Zimbabwe
3693
+ #: ../admin/view/wp-slimstat-reports.php:1749
3694
  msgid "c-zw"
3695
  msgstr "Zimbabwe"
3696
 
3697
  # Guernsey
3698
+ #: ../admin/view/wp-slimstat-reports.php:1749
3699
  msgid "c-gg"
3700
  msgstr "Guernsey"
3701
 
3702
  # Jersey
3703
+ #: ../admin/view/wp-slimstat-reports.php:1749
3704
  msgid "c-je"
3705
  msgstr "Jersey"
3706
 
3707
  # Isle of Man
3708
+ #: ../admin/view/wp-slimstat-reports.php:1749
3709
  msgid "c-im"
3710
  msgstr "Isle of Man"
3711
 
3712
  # Maldives
3713
+ #: ../admin/view/wp-slimstat-reports.php:1749
3714
  msgid "c-mv"
3715
  msgstr "Malediven"
3716
 
3717
+ #: ../admin/view/wp-slimstat-reports.php:1750
3718
  msgid "c-eu"
3719
  msgstr ""
3720
 
3721
+ #: ../admin/view/wp-slimstat-reports.php:1827
3722
  msgid "src"
3723
  msgstr "src"
3724
 
3725
+ #: ../admin/view/wp-slimstat-reports.php:1831
3726
  msgid "serp"
3727
  msgstr "serp"
3728
 
3729
+ #: ../admin/view/wp-slimstat-reports.php:1839
3730
  msgid "Go to the referring page"
3731
  msgstr "Verweisende Seite &ouml;ffnen"
3732
 
3733
+ #: ../admin/view/wp-slimstat-reports.php:1861
3734
  msgid "Remove filter for"
3735
  msgstr "Entferne Filter f&uuml;r"
3736
 
3737
+ #: ../admin/view/wp-slimstat-reports.php:1865
3738
  msgid "Save"
3739
  msgstr ""
3740
 
3741
+ #: ../admin/view/wp-slimstat-reports.php:1868
3742
  #, fuzzy
3743
  msgid "Reset All"
3744
  msgstr "Datenbanktabellen zurücksetzen"
3745
 
3746
+ #: ../admin/view/wp-slimstat-reports.php:1872
3747
  msgid "Current filters:"
3748
  msgstr "Aktuelle Filter:"
3749
 
3750
+ #: ../admin/wp-slimstat-admin.php:82
3751
+ msgid "Access Log"
3752
+ msgstr ""
3753
+
3754
+ #: ../admin/wp-slimstat-admin.php:88
3755
+ msgid "Overview"
3756
+ msgstr "&Uuml;bersicht"
3757
+
3758
+ #: ../admin/wp-slimstat-admin.php:94
3759
+ msgid "Audience"
3760
+ msgstr ""
3761
+
3762
+ #: ../admin/wp-slimstat-admin.php:100
3763
+ msgid "Site Analysis"
3764
+ msgstr ""
3765
+
3766
+ #: ../admin/wp-slimstat-admin.php:118
3767
+ #, fuzzy
3768
+ msgid "Customize"
3769
+ msgstr "Benutzerdefinierte CSS"
3770
+
3771
+ #: ../admin/wp-slimstat-admin.php:130
3772
+ #, fuzzy
3773
+ msgid "WordPress Dashboard"
3774
+ msgstr "WordPress-Integration"
3775
+
3776
+ #: ../admin/wp-slimstat-admin.php:136
3777
+ #, fuzzy
3778
+ msgid "Inactive Reports"
3779
+ msgstr "Berichte zurücksetzen"
3780
+
3781
+ #: ../admin/wp-slimstat-admin.php:562
3782
  #, fuzzy
3783
  msgid "SlimStat"
3784
  msgstr "&Uuml;ber WP SlimStat"
3785
 
3786
+ #: ../admin/wp-slimstat-admin.php:620
 
3787
  #, fuzzy
3788
+ msgid "Slimstat"
3789
+ msgstr "&Uuml;ber WP SlimStat"
3790
 
3791
+ #: ../admin/wp-slimstat-admin.php:709
3792
  #, fuzzy
3793
  msgid "Pageviews in the last "
3794
  msgstr "Seitenaufrufe (Diagramm)"
3795
 
3796
+ #: ../admin/wp-slimstat-admin.php:712
3797
  #, fuzzy
3798
  msgid "Unique IPs in the last "
3799
  msgstr "Eindeutige interne Zugriffe"
3800
 
3801
+ #: ../admin/wp-slimstat-admin.php:766
3802
  msgid "Show on screen"
3803
  msgstr "Anzeigen"
3804
 
3805
+ #: ../admin/wp-slimstat-admin.php:847
3806
  msgid "Already saved"
3807
  msgstr ""
3808
 
3809
+ #: ../admin/wp-slimstat-admin.php:855
3810
  msgid "Saved"
3811
  msgstr ""
3812
 
3813
+ #: ../admin/wp-slimstat-admin.php:875
3814
  #, fuzzy
3815
  msgid "Delete this filter"
3816
  msgstr "Lösche Seitenaufrufe, wo"
3817
 
3818
+ #: ../admin/wp-slimstat-admin.php:919
3819
  msgid "There was an error updating the following options:"
3820
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
3821
 
3822
+ #: ../admin/wp-slimstat-admin.php:922
3823
  #, fuzzy
3824
  msgid "Your changes have been saved."
3825
  msgstr "Optionen erfolgreich aktualisiert."
3826
 
3827
+ #: ../admin/wp-slimstat-admin.php:945
3828
  msgid "Save Changes"
3829
  msgstr "Änderungen speichern"
3830
 
3831
+ #: ../admin/wp-slimstat-admin.php:961
3832
  msgid "Definitions"
3833
  msgstr "Definitionen"
3834
 
3835
+ #: ../admin/wp-slimstat-admin.php:964
3836
  msgid "Pageview"
3837
  msgstr "Seitenaufrufe"
3838
 
3839
+ #: ../admin/wp-slimstat-admin.php:964
3840
  #, fuzzy
3841
  msgid ""
3842
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3847
  "jedesmal einen 'Seitenaufruf' auf wenn der Tracking-Code ausgef&uuml;hrt "
3848
  "wird."
3849
 
3850
+ #: ../admin/wp-slimstat-admin.php:965
3851
  msgid "(Human) Visit"
3852
  msgstr "Echte Besuche"
3853
 
3854
+ #: ../admin/wp-slimstat-admin.php:965
3855
  msgid ""
3856
  "A period of interaction between a visitor's browser and your website, ending "
3857
  "when the browser is closed or when the user has been inactive on that site "
3861
  "Diese endet wenn der Browser geschlossen wird oder der Besucher 30 Minuten "
3862
  "lang nicht auf der Website aktiv war"
3863
 
3864
+ #: ../admin/wp-slimstat-admin.php:966
3865
  msgid ""
3866
  "Any user who has left a comment on your blog, and is thus identified by "
3867
  "Wordpress as a returning visitor"
3869
  "Jeder Benutzer, der einen Kommentar auf Ihrer Website hinterlassen hat und "
3870
  "damit als wiederkehrender Besucher erkannt wird."
3871
 
3872
+ #: ../admin/wp-slimstat-admin.php:967
3873
  msgid "Unique IP"
3874
  msgstr "Eindeutige IPs"
3875
 
3876
+ #: ../admin/wp-slimstat-admin.php:967
3877
  msgid ""
3878
  "Used to differentiate between multiple requests to download a file from one "
3879
  "internet address (IP) and requests originating from many distinct addresses; "
3885
  "Adresse von der ein Seitenaufruf stammt achtet, ist es nützlich, aber nicht "
3886
  "perfekt."
3887
 
3888
+ #: ../admin/wp-slimstat-admin.php:968
3889
  msgid ""
3890
  "the originating IP address of a client connecting to a web server through an "
3891
  "HTTP proxy or load balancer"
3893
  "Die ursprüngliche IP-Adresse eines Clients, der sich durch einen HTTP Proxy "
3894
  "oder Load Balancer mit dem Server verbunden hat."
3895
 
3896
+ #: ../admin/wp-slimstat-admin.php:969
3897
  msgid "Direct Traffic"
3898
  msgstr "Direkter Besuch"
3899
 
3900
+ #: ../admin/wp-slimstat-admin.php:969
3901
  msgid ""
3902
  "All those people showing up to your Web site by typing in the URL of your "
3903
  "Web site coming or from a bookmark; some people also call this \"default "
3907
  "oder ein Lesezeichen erreichen; auch \"default traffic\" oder \"ambient "
3908
  "traffic\" genannt."
3909
 
3910
+ #: ../admin/wp-slimstat-admin.php:970
3911
  msgid "Search Engine"
3912
  msgstr "Suchmaschinen"
3913
 
3914
+ #: ../admin/wp-slimstat-admin.php:970
3915
  msgid ""
3916
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3917
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3919
  "Google, Yahoo, MSN, Ask usw.; hiwer ist sowohl organischer als auch "
3920
  "bezahlter (PPC/SEM) Traffic enthalten."
3921
 
3922
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
3923
  msgid "Keywords used by your visitors to find your website on a search engine"
3924
  msgstr "Begriffe welche von Besuchern in Suchmaschinen verwendet wurden"
3925
 
3926
+ #: ../admin/wp-slimstat-admin.php:972
3927
  msgid "SERP"
3928
  msgstr "SERP"
3929
 
3930
+ #: ../admin/wp-slimstat-admin.php:972
3931
  msgid ""
3932
  "Short for search engine results page, the Web page that a search engine "
3933
  "returns with the results of its search. The value shown represents your rank "
3936
  "\"Search Engine Result Pages\" - Suchmaschinenranking. Der Wert "
3937
  "repräsentiert Ihren Rang (die Postition) in den Suchergebnissen."
3938
 
3939
+ #: ../admin/wp-slimstat-admin.php:973
3940
  msgid ""
3941
  "Any program used for accessing a website; this includes browsers, robots, "
3942
  "spiders and any other program that was used to retrieve information from the "
3946
  "usw.), 'Robots' und 'Spider' sowie jedes andere Programm welches "
3947
  "Informationen von einer Website abruft."
3948
 
3949
+ #: ../admin/wp-slimstat-admin.php:974
3950
  msgid ""
3951
  "A link from one domain to another is said to be outbound from its source "
3952
  "anchor and inbound to its target. This report lists all the links to other "
3955
  "Ausgehende Links sind links zu einer anderen Domain. Dieser Report zeigt "
3956
  "alle Links zu anderen Websites die Ihre Besucher verfolgt haben."
3957
 
3958
+ #: ../admin/wp-slimstat-admin.php:981
3959
  msgid "Basic Filters"
3960
  msgstr "Einfache Filter"
3961
 
3962
+ #: ../admin/wp-slimstat-admin.php:984
3963
  msgid "User agent (Firefox, Chrome, ...)"
3964
  msgstr "Browser (Firefox, Chrome ...)"
3965
 
3966
+ #: ../admin/wp-slimstat-admin.php:985
3967
  msgid "2-letter code (us, ru, de, it, ...)"
3968
  msgstr "Länder-Code (us, ru, de, it...)"
3969
 
3970
+ #: ../admin/wp-slimstat-admin.php:986
3971
  msgid "IP"
3972
  msgstr "IP"
3973
 
3974
+ #: ../admin/wp-slimstat-admin.php:986
3975
  msgid "Visitor's public IP address"
3976
  msgstr "&Ouml;ffentliche IP-Adresse des Besuchers"
3977
 
3978
+ #: ../admin/wp-slimstat-admin.php:988
3979
  msgid ""
3980
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3981
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3984
  "Siehe <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
3985
  "ee825488(v=cs.20).aspx\">Tabelle von Sprach-Kodierungen</a> "
3986
 
3987
+ #: ../admin/wp-slimstat-admin.php:989
3988
  msgid ""
3989
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3990
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3994
  "gibt es auf <a href=\"http://php.net/manual/de/function.get-browser.php\" "
3995
  "target=\"_blank\">dieser Seite</a>"
3996
 
3997
+ #: ../admin/wp-slimstat-admin.php:990
3998
  msgid "URL accessed on your site"
3999
  msgstr "URL, die auf Ihrer Seite besucht wurde"
4000
 
4001
+ #: ../admin/wp-slimstat-admin.php:991
4002
  #, fuzzy
4003
  msgid "Complete address of the referrer page"
4004
  msgstr "Verweisende Seite &ouml;ffnen"
4005
 
4006
+ #: ../admin/wp-slimstat-admin.php:992
4007
+ msgid "Visitor's Name"
4008
+ msgstr "Besuchername"
4009
+
4010
+ #: ../admin/wp-slimstat-admin.php:992
4011
  msgid ""
4012
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4013
  "comment"
4015
  "Besuchername laut Cookie, welches Wordpress beim hinterlassen eines "
4016
  "Kommentars anlegt"
4017
 
4018
+ #: ../admin/wp-slimstat-admin.php:1000
4019
  msgid "Advanced Filters"
4020
  msgstr "Erweiterte Filter"
4021
 
4022
+ #: ../admin/wp-slimstat-admin.php:1003
4023
  msgid "user agent version (9.0, 11, ...)"
4024
  msgstr "Browser-Version (9.0, 11, ...)"
4025
 
4026
+ #: ../admin/wp-slimstat-admin.php:1004
4027
  msgid ""
4028
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4029
  "all others"
4031
  "1 = Suchmaschinen Crawler, 2 = Mobiles Gerät, 3 = Feed-Reader, 0 = alle "
4032
  "anderen"
4033
 
4034
+ #: ../admin/wp-slimstat-admin.php:1005
4035
  msgid "Pageview Attributes"
4036
  msgstr "Eigenschaften Seitenaufrufe"
4037
 
4038
+ #: ../admin/wp-slimstat-admin.php:1005
4039
  msgid ""
4040
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4041
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4045
  "target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4046
  "Link_prefetching_FAQ\">Link Prefetching</a> oder eine &auml;hnliche "
4047
 
4048
+ #: ../admin/wp-slimstat-admin.php:1006
4049
  msgid "author associated to that post/page when the resource was accessed"
4050
  msgstr "Der dem Artikel / der Seite zugeordnete Autor"
4051
 
4052
+ #: ../admin/wp-slimstat-admin.php:1007
4053
  msgid "ID of the category/term associated to the resource, when available"
4054
  msgstr "ID der zugeordneten Kategorie, falls vorhanden"
4055
 
4056
+ #: ../admin/wp-slimstat-admin.php:1008
4057
  msgid "visitor's originating IP address, if available"
4058
  msgstr "IP-Adresse des Besuchers, falls bekannt"
4059
 
4060
+ #: ../admin/wp-slimstat-admin.php:1009
4061
  msgid ""
4062
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4063
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4070
  "feed, home; F&uuml;r mehr Infos s. <a target=\"_blank\" href=\"http://codex."
4071
  "wordpress.org/Conditional_Tags\">Conditional Tags</a>."
4072
 
4073
+ #: ../admin/wp-slimstat-admin.php:1010
4074
  msgid "Screen Resolution"
4075
  msgstr "Bildschirm-Aufl&ouml;sung"
4076
 
4077
+ #: ../admin/wp-slimstat-admin.php:1010
4078
  msgid "viewport width and height (1024x768, 800x600, ...)"
4079
  msgstr "Breite und H&ouml;he des sichtbaren Bereiches"
4080
 
4081
+ #: ../admin/wp-slimstat-admin.php:1011
4082
  msgid ""
4083
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4084
  "visitors"
4086
  "Meist im Zusammenhang mit <em>nicht leer</em> verwendet, kennzeichnet echte "
4087
  "Besucher"
4088
 
4089
+ #: ../admin/wp-slimstat-admin.php:1012
4090
  msgid "Date Filters"
4091
  msgstr "Datumsfilter"
4092
 
4093
+ #: ../admin/wp-slimstat-admin.php:1012
4094
  msgid ""
4095
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4096
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4100
  "-1 erzeugt ein Intervall seit Beginn des Jahres / Monats, z.B. Tag=1, "
4101
  "Monat=1, Jahr leer, Intervall=-1 erzeugt einen 'seit Jahresbeginn' Filter."
4102
 
4103
+ #: ../admin/wp-slimstat-admin.php:1013
4104
  msgid "SERP Position"
4105
  msgstr "Suchmaschinenrang"
4106
 
4107
+ #: ../admin/wp-slimstat-admin.php:1013
4108
  msgid ""
4109
  "set the filter to Referer contains cd=N&, where N is the position you are "
4110
  "looking for"
4111
  msgstr ""
4112
  "Filter nach Herkunft mit cd=N& setzen, wobei N die gesuchte Position ist"
4113
 
4114
+ #: ../admin/wp-slimstat-admin.php:1040
4115
  msgid "Yes"
4116
  msgstr "Ja"
4117
 
4118
+ #: ../admin/wp-slimstat-admin.php:1041
4119
  msgid "No"
4120
  msgstr "Nein"
4121
 
4122
+ #: ../admin/wp-slimstat-admin.php:1042
4123
  msgid "Site Specific"
4124
  msgstr ""
4125
 
4148
  msgstr "Blackberry OS"
4149
 
4150
  #: ../languages/dynamic_strings.php:11
4151
+ #, fuzzy
4152
+ msgid "centos"
4153
+ msgstr "Letzte Artikel"
4154
+
4155
+ #: ../languages/dynamic_strings.php:12
4156
  msgid "chromeos"
4157
  msgstr ""
4158
 
4159
+ #: ../languages/dynamic_strings.php:13
4160
+ msgid "commodore64"
4161
+ msgstr ""
4162
+
4163
+ #: ../languages/dynamic_strings.php:14
4164
  msgid "cygwin"
4165
  msgstr "Cygwin"
4166
 
4167
+ #: ../languages/dynamic_strings.php:15
4168
  msgid "debian"
4169
  msgstr "Debian"
4170
 
4171
+ #: ../languages/dynamic_strings.php:16
4172
  msgid "digital unix"
4173
  msgstr "Digital Unix"
4174
 
4175
+ #: ../languages/dynamic_strings.php:17
4176
+ msgid "fedora"
4177
+ msgstr ""
4178
+
4179
+ #: ../languages/dynamic_strings.php:18
4180
  msgid "firefoxos"
4181
  msgstr ""
4182
 
4183
+ #: ../languages/dynamic_strings.php:19
4184
  msgid "freebsd"
4185
  msgstr "FreeBSD"
4186
 
4187
+ #: ../languages/dynamic_strings.php:20
4188
+ msgid "gentoo"
4189
+ msgstr ""
4190
+
4191
+ #: ../languages/dynamic_strings.php:21
4192
  msgid "hp-ux"
4193
  msgstr "HP-UX"
4194
 
4195
+ #: ../languages/dynamic_strings.php:22
4196
  msgid "ios"
4197
  msgstr "iPhone OS"
4198
 
4199
+ #: ../languages/dynamic_strings.php:23
4200
+ #, fuzzy
4201
+ msgid "iphone os"
4202
+ msgstr "iPhone OS X"
4203
+
4204
+ #: ../languages/dynamic_strings.php:24
4205
  msgid "iphone osx"
4206
  msgstr "iPhone OS X"
4207
 
4208
+ #: ../languages/dynamic_strings.php:25
4209
  msgid "irix"
4210
  msgstr "IRIX"
4211
 
4212
+ #: ../languages/dynamic_strings.php:26
4213
  msgid "java"
4214
  msgstr "Java"
4215
 
4216
+ #: ../languages/dynamic_strings.php:27
4217
+ msgid "kanotix"
4218
+ msgstr ""
4219
+
4220
+ #: ../languages/dynamic_strings.php:28
4221
+ msgid "knoppix"
4222
+ msgstr ""
4223
+
4224
+ #: ../languages/dynamic_strings.php:29
4225
  msgid "linux"
4226
  msgstr "Linux"
4227
 
4228
+ #: ../languages/dynamic_strings.php:30
4229
  msgid "mac"
4230
  msgstr "Mac"
4231
 
4232
+ #: ../languages/dynamic_strings.php:31
4233
  msgid "mac68k"
4234
  msgstr "Mac 68k"
4235
 
4236
+ #: ../languages/dynamic_strings.php:32
4237
  msgid "macosx"
4238
  msgstr "Mac OS X"
4239
 
4240
+ #: ../languages/dynamic_strings.php:33
4241
  msgid "macppc"
4242
  msgstr "Mac PowerPC"
4243
 
4244
+ #: ../languages/dynamic_strings.php:34
4245
+ msgid "mandrake"
4246
+ msgstr ""
4247
+
4248
+ #: ../languages/dynamic_strings.php:35
4249
+ #, fuzzy
4250
+ msgid "mandriva"
4251
+ msgstr "Android"
4252
+
4253
+ #: ../languages/dynamic_strings.php:36
4254
+ msgid "mepis"
4255
+ msgstr ""
4256
+
4257
+ # Spanish (Dominican Republic)
4258
+ #: ../languages/dynamic_strings.php:37
4259
+ #, fuzzy
4260
+ msgid "ms-dos"
4261
+ msgstr "Spanish (Dominican Republic)"
4262
+
4263
+ #: ../languages/dynamic_strings.php:38
4264
  msgid "netbsd"
4265
  msgstr "NetBSD"
4266
 
4267
+ #: ../languages/dynamic_strings.php:39
4268
+ msgid "nintendo"
4269
+ msgstr ""
4270
+
4271
+ #: ../languages/dynamic_strings.php:40
4272
  msgid "openbsd"
4273
  msgstr "OpenBSD"
4274
 
4275
+ #: ../languages/dynamic_strings.php:41
4276
  msgid "openvms"
4277
  msgstr "OpenVMS"
4278
 
4279
+ #: ../languages/dynamic_strings.php:42
4280
  msgid "os/2"
4281
  msgstr "IBM OS/2"
4282
 
4283
+ #: ../languages/dynamic_strings.php:43
4284
  msgid "palm"
4285
  msgstr "Palm"
4286
 
4287
+ #: ../languages/dynamic_strings.php:44
4288
+ #, fuzzy
4289
+ msgid "palmos"
4290
+ msgstr "Palm"
4291
+
4292
+ #: ../languages/dynamic_strings.php:45
4293
+ #, fuzzy
4294
+ msgid "pclinuxos"
4295
+ msgstr "Linux"
4296
+
4297
+ #: ../languages/dynamic_strings.php:46
4298
+ msgid "playstation"
4299
+ msgstr ""
4300
+
4301
+ #: ../languages/dynamic_strings.php:47
4302
  msgid "powertv"
4303
  msgstr "PowerTV"
4304
 
4305
+ #: ../languages/dynamic_strings.php:48
4306
+ msgid "redhat"
4307
+ msgstr ""
4308
+
4309
+ #: ../languages/dynamic_strings.php:49
4310
  msgid "rim os"
4311
  msgstr ""
4312
 
4313
+ #: ../languages/dynamic_strings.php:50
4314
  msgid "risc os"
4315
  msgstr "Risc OS"
4316
 
4317
+ #: ../languages/dynamic_strings.php:51
4318
+ msgid "slackware"
4319
+ msgstr ""
4320
+
4321
+ #: ../languages/dynamic_strings.php:52
4322
  msgid "solaris"
4323
  msgstr "Solaris"
4324
 
4325
+ #: ../languages/dynamic_strings.php:53
4326
  msgid "sunos"
4327
  msgstr "Sun OS"
4328
 
4329
+ #: ../languages/dynamic_strings.php:54
4330
+ msgid "suse"
4331
+ msgstr ""
4332
+
4333
+ #: ../languages/dynamic_strings.php:55
4334
  msgid "symbianos"
4335
  msgstr "Symbian OS"
4336
 
4337
+ #: ../languages/dynamic_strings.php:56
4338
  msgid "ubuntu"
4339
  msgstr ""
4340
 
4341
+ #: ../languages/dynamic_strings.php:57
4342
  msgid "unix"
4343
  msgstr "Unix"
4344
 
4345
+ #: ../languages/dynamic_strings.php:58
4346
  msgid "unknown"
4347
  msgstr "Unbekannt"
4348
 
4349
+ #: ../languages/dynamic_strings.php:59
4350
+ #, fuzzy
4351
+ msgid "xandros"
4352
+ msgstr "Android"
4353
+
4354
+ #: ../languages/dynamic_strings.php:60
4355
  msgid "wap"
4356
  msgstr "WAP"
4357
 
4358
+ #: ../languages/dynamic_strings.php:61
4359
  msgid "webos"
4360
  msgstr "WebOS"
4361
 
4362
+ #: ../languages/dynamic_strings.php:62
4363
  #, fuzzy
4364
  msgid "win10"
4365
  msgstr "Windows 16-bit"
4366
 
4367
+ #: ../languages/dynamic_strings.php:63
4368
  msgid "win16"
4369
  msgstr "Windows 16-bit"
4370
 
4371
+ #: ../languages/dynamic_strings.php:64
4372
  msgid "win2000"
4373
  msgstr "Windows 2000"
4374
 
4375
+ #: ../languages/dynamic_strings.php:65
4376
  msgid "win2003"
4377
  msgstr "Windows 2003"
4378
 
4379
+ #: ../languages/dynamic_strings.php:66
4380
  msgid "win31"
4381
  msgstr "Windows 3.1"
4382
 
4383
+ #: ../languages/dynamic_strings.php:67
4384
  msgid "win32"
4385
  msgstr "Windows 32-bit"
4386
 
4387
+ #: ../languages/dynamic_strings.php:68 ../languages/dynamic_strings.php:69
4388
  msgid "win7"
4389
  msgstr "Windows 7"
4390
 
4391
+ #: ../languages/dynamic_strings.php:70
4392
  msgid "win8"
4393
  msgstr "Windows 8"
4394
 
4395
+ #: ../languages/dynamic_strings.php:71
4396
  msgid "win8.1"
4397
  msgstr "Windows 8.1"
4398
 
4399
+ #: ../languages/dynamic_strings.php:72
4400
  msgid "win95"
4401
  msgstr "Windows 95"
4402
 
4403
+ #: ../languages/dynamic_strings.php:73
4404
  msgid "win98"
4405
  msgstr "Windows 98"
4406
 
4407
+ #: ../languages/dynamic_strings.php:74
4408
  msgid "wince"
4409
  msgstr "Windows CE"
4410
 
4411
+ #: ../languages/dynamic_strings.php:75
 
 
 
 
 
4412
  msgid "winme"
4413
  msgstr "Windows ME"
4414
 
4415
+ #: ../languages/dynamic_strings.php:76
4416
  msgid "winnt"
4417
  msgstr "Windows NT"
4418
 
4419
+ #: ../languages/dynamic_strings.php:77
4420
  msgid "winphone7"
4421
  msgstr "Windows Phone"
4422
 
4423
+ #: ../languages/dynamic_strings.php:78
4424
  #, fuzzy
4425
  msgid "winphone7.5"
4426
  msgstr "Windows Phone"
4427
 
4428
+ #: ../languages/dynamic_strings.php:79
4429
  #, fuzzy
4430
  msgid "winphone8"
4431
  msgstr "Windows Phone"
4432
 
4433
+ #: ../languages/dynamic_strings.php:80
4434
  #, fuzzy
4435
  msgid "winphone8.1"
4436
  msgstr "Windows Phone"
4437
 
4438
+ #: ../languages/dynamic_strings.php:81
4439
+ msgid "winrt"
4440
+ msgstr ""
4441
+
4442
+ #: ../languages/dynamic_strings.php:82
4443
  msgid "winvista"
4444
  msgstr "Windows Vista"
4445
 
4446
+ #: ../languages/dynamic_strings.php:83
4447
  msgid "winxp"
4448
  msgstr "Windows XP"
4449
 
4450
+ #: ../languages/dynamic_strings.php:84
4451
  msgid "wyderos"
4452
  msgstr "WyderOS"
4453
 
4454
+ #: ../languages/dynamic_strings.php:85
4455
+ msgid "zaurus"
4456
+ msgstr ""
4457
+
4458
+ #: ../languages/dynamic_strings.php:88
4459
  msgid "acrobat"
4460
  msgstr "Acrobat Reader"
4461
 
4462
+ #: ../languages/dynamic_strings.php:89
4463
  msgid "director"
4464
  msgstr "Macromedia Director"
4465
 
4466
+ #: ../languages/dynamic_strings.php:90
4467
  msgid "flash"
4468
  msgstr "Adobe Flash Player"
4469
 
4470
+ #: ../languages/dynamic_strings.php:91
4471
  msgid "mediaplayer"
4472
  msgstr "Microsoft Media Player"
4473
 
4474
+ #: ../languages/dynamic_strings.php:92
4475
  msgid "quicktime"
4476
  msgstr "QuickTime"
4477
 
4478
+ #: ../languages/dynamic_strings.php:93
4479
  msgid "real"
4480
  msgstr "Real Player"
4481
 
4482
+ #: ../languages/dynamic_strings.php:94
4483
  msgid "silverlight"
4484
  msgstr "Microsoft Silverlight"
4485
 
4486
+ #: ../languages/dynamic_strings.php:97
4487
  msgid "p-and"
4488
  msgstr "Android"
4489
 
4490
+ #: ../languages/dynamic_strings.php:98
4491
  msgid "p-bla"
4492
  msgstr "BlackBerry"
4493
 
4494
+ #: ../languages/dynamic_strings.php:99
4495
  msgid "p-chr"
4496
  msgstr "Chrome OS"
4497
 
4498
+ #: ../languages/dynamic_strings.php:100
4499
  msgid "p-fir"
4500
  msgstr ""
4501
 
4502
+ #: ../languages/dynamic_strings.php:101
4503
  msgid "p-fre"
4504
  msgstr "Linux FreeBSD"
4505
 
4506
+ #: ../languages/dynamic_strings.php:102
4507
  msgid "p-ios"
4508
  msgstr "Apple iOS"
4509
 
4510
+ #: ../languages/dynamic_strings.php:103
4511
  msgid "p-jav"
4512
  msgstr "Java-based OS"
4513
 
4514
+ #: ../languages/dynamic_strings.php:104
4515
  msgid "p-lin"
4516
  msgstr "Linux"
4517
 
4518
+ #: ../languages/dynamic_strings.php:105
4519
  msgid "p-mac"
4520
  msgstr "Apple"
4521
 
4522
+ #: ../languages/dynamic_strings.php:106
4523
  msgid "p-rim"
4524
  msgstr ""
4525
 
4526
+ #: ../languages/dynamic_strings.php:107
4527
  msgid "p-sym"
4528
  msgstr "Symbian OS"
4529
 
4530
+ #: ../languages/dynamic_strings.php:108
4531
  msgid "p-ubu"
4532
  msgstr ""
4533
 
4534
+ #: ../languages/dynamic_strings.php:109
4535
  msgid "p-unk"
4536
  msgstr "Unbekannt"
4537
 
4538
+ #: ../languages/dynamic_strings.php:110
4539
  msgid "p-win"
4540
  msgstr "Microsoft"
4541
 
4542
  # Afrikaans
4543
+ #: ../languages/dynamic_strings.php:113
4544
  msgid "l-af"
4545
  msgstr "Afrikaans"
4546
 
4547
  # Afrikaans
4548
+ #: ../languages/dynamic_strings.php:114
4549
  #, fuzzy
4550
  msgid "l-af-za"
4551
  msgstr "Afrikaans"
4552
 
4553
  # Arabic
4554
+ #: ../languages/dynamic_strings.php:115
4555
  msgid "l-ar"
4556
  msgstr "Arabic"
4557
 
4558
  # Arabic (United Arab Emirates)
4559
+ #: ../languages/dynamic_strings.php:116
4560
  msgid "l-ar-ae"
4561
  msgstr "Arabic (United Arab Emirates)"
4562
 
4563
  # Arabic (Bahrain)
4564
+ #: ../languages/dynamic_strings.php:117
4565
  msgid "l-ar-bh"
4566
  msgstr "Arabic (Bahrain)"
4567
 
4568
  # Arabic (Algeria)
4569
+ #: ../languages/dynamic_strings.php:118
4570
  msgid "l-ar-dz"
4571
  msgstr "Arabic (Algeria)"
4572
 
4573
  # Arabic (Egypt)
4574
+ #: ../languages/dynamic_strings.php:119
4575
  msgid "l-ar-eg"
4576
  msgstr "Arabic (Egypt)"
4577
 
4578
  # Arabic (Iraq)
4579
+ #: ../languages/dynamic_strings.php:120
4580
  msgid "l-ar-iq"
4581
  msgstr "Arabic (Iraq)"
4582
 
4583
  # Arabic (Jordan)
4584
+ #: ../languages/dynamic_strings.php:121
4585
  msgid "l-ar-jo"
4586
  msgstr "Arabic (Jordan)"
4587
 
4588
  # Arabic (Kuwait)
4589
+ #: ../languages/dynamic_strings.php:122
4590
  msgid "l-ar-kw"
4591
  msgstr "Arabic (Kuwait)"
4592
 
4593
  # Arabic (Lebanon)
4594
+ #: ../languages/dynamic_strings.php:123
4595
  msgid "l-ar-lb"
4596
  msgstr "Arabic (Lebanon)"
4597
 
4598
  # Arabic (Libya)
4599
+ #: ../languages/dynamic_strings.php:124
4600
  msgid "l-ar-ly"
4601
  msgstr "Arabic (Libya)"
4602
 
4603
  # Arabic (Morocco)
4604
+ #: ../languages/dynamic_strings.php:125
4605
  msgid "l-ar-ma"
4606
  msgstr "Arabic (Morocco)"
4607
 
4608
  # Arabic (Oman)
4609
+ #: ../languages/dynamic_strings.php:126
4610
  msgid "l-ar-om"
4611
  msgstr "Arabic (Oman)"
4612
 
4613
  # Arabic (Qatar)
4614
+ #: ../languages/dynamic_strings.php:127
4615
  msgid "l-ar-qa"
4616
  msgstr "Arabic (Qatar)"
4617
 
4618
  # Arabic (Saudi Arabia)
4619
+ #: ../languages/dynamic_strings.php:128
4620
  msgid "l-ar-sa"
4621
  msgstr "Arabic (Saudi Arabia)"
4622
 
4623
  # Arabic (Syria)
4624
+ #: ../languages/dynamic_strings.php:129
4625
  msgid "l-ar-sy"
4626
  msgstr "Arabic (Syria)"
4627
 
4628
  # Arabic (Tunisia)
4629
+ #: ../languages/dynamic_strings.php:130
4630
  msgid "l-ar-tn"
4631
  msgstr "Arabic (Tunisia)"
4632
 
4633
  # Arabic (Yemen)
4634
+ #: ../languages/dynamic_strings.php:131
4635
  msgid "l-ar-ye"
4636
  msgstr "Arabic (Yemen)"
4637
 
4638
  # Azerbaijani
4639
+ #: ../languages/dynamic_strings.php:132
4640
  msgid "l-az"
4641
  msgstr "Azerbaijani"
4642
 
4643
  # Azerbaijani
4644
+ #: ../languages/dynamic_strings.php:133
4645
  #, fuzzy
4646
  msgid "l-az-az"
4647
  msgstr "Azerbaijani"
4648
 
4649
  # Belarusian
4650
+ #: ../languages/dynamic_strings.php:134
4651
  msgid "l-be"
4652
  msgstr "Belarusian"
4653
 
4654
  # Belarusian
4655
+ #: ../languages/dynamic_strings.php:135
4656
  #, fuzzy
4657
  msgid "l-be-by"
4658
  msgstr "Belarusian"
4659
 
4660
  # Bulgarian
4661
+ #: ../languages/dynamic_strings.php:136
4662
  msgid "l-bg"
4663
  msgstr "Bulgarian"
4664
 
4665
  # Bulgarian
4666
+ #: ../languages/dynamic_strings.php:137
4667
  #, fuzzy
4668
  msgid "l-bg-bg"
4669
  msgstr "Bulgarian"
4670
 
4671
  # Bosnian
4672
+ #: ../languages/dynamic_strings.php:138
4673
  #, fuzzy
4674
  msgid "l-bs-ba"
4675
  msgstr "Bosnian"
4676
 
4677
  # Catalan; Valencian
4678
+ #: ../languages/dynamic_strings.php:139
4679
  msgid "l-ca"
4680
  msgstr "Catalan; Valencian"
4681
 
4682
  # Catalan; Valencian
4683
+ #: ../languages/dynamic_strings.php:140
4684
  #, fuzzy
4685
  msgid "l-ca-es"
4686
  msgstr "Catalan; Valencian"
4687
 
4688
  # Czech
4689
+ #: ../languages/dynamic_strings.php:141
4690
  msgid "l-cs"
4691
  msgstr "Czech"
4692
 
4693
  # Czech
4694
+ #: ../languages/dynamic_strings.php:142
4695
  #, fuzzy
4696
  msgid "l-cs-cz"
4697
  msgstr "Czech"
4698
 
4699
  # Welsh
4700
+ #: ../languages/dynamic_strings.php:143
4701
  msgid "l-cy"
4702
  msgstr "Welsh"
4703
 
4704
  # Welsh
4705
+ #: ../languages/dynamic_strings.php:144
4706
  #, fuzzy
4707
  msgid "l-cy-gb"
4708
  msgstr "Welsh"
4709
 
4710
  # Danish
4711
+ #: ../languages/dynamic_strings.php:145
4712
  msgid "l-da"
4713
  msgstr "Danish"
4714
 
4715
  # Danish
4716
+ #: ../languages/dynamic_strings.php:146
4717
  #, fuzzy
4718
  msgid "l-da-dk"
4719
  msgstr "Danish"
4720
 
4721
  # German
4722
+ #: ../languages/dynamic_strings.php:147
4723
  msgid "l-de"
4724
  msgstr "German"
4725
 
4726
  # German (Austria)
4727
+ #: ../languages/dynamic_strings.php:148
4728
  msgid "l-de-at"
4729
  msgstr "German (Austria)"
4730
 
4731
  # German (Switzerland)
4732
+ #: ../languages/dynamic_strings.php:149
4733
  msgid "l-de-ch"
4734
  msgstr "German (Switzerland)"
4735
 
4736
  # German (Germany)
4737
+ #: ../languages/dynamic_strings.php:150
4738
  msgid "l-de-de"
4739
  msgstr "German (Germany)"
4740
 
4741
  # German (Liechtenstein)
4742
+ #: ../languages/dynamic_strings.php:151
4743
  msgid "l-de-li"
4744
  msgstr "German (Liechtenstein)"
4745
 
4746
  # German (Luxembourg)
4747
+ #: ../languages/dynamic_strings.php:152
4748
  msgid "l-de-lu"
4749
  msgstr "German (Luxembourg)"
4750
 
4751
  # Dhivehi; Divehi; Maldivian
4752
+ #: ../languages/dynamic_strings.php:153
4753
  msgid "l-dv"
4754
  msgstr "Dhivehi; Divehi; Maldivian"
4755
 
4756
  # Dhivehi; Divehi; Maldivian
4757
+ #: ../languages/dynamic_strings.php:154
4758
  #, fuzzy
4759
  msgid "l-dv-mv"
4760
  msgstr "Dhivehi; Divehi; Maldivian"
4761
 
4762
  # Modern Greek (1453-)
4763
+ #: ../languages/dynamic_strings.php:155
4764
  msgid "l-el"
4765
  msgstr "Modern Greek (1453-)"
4766
 
4767
  # Greek (Greece)
4768
+ #: ../languages/dynamic_strings.php:156
4769
  msgid "l-el-gr"
4770
  msgstr "Greek (Greece)"
4771
 
4772
  # English
4773
+ #: ../languages/dynamic_strings.php:157
4774
  msgid "l-en"
4775
  msgstr "English"
4776
 
4777
  # English (Australia)
4778
+ #: ../languages/dynamic_strings.php:158
4779
  msgid "l-en-au"
4780
  msgstr "English (Australia)"
4781
 
4782
  # English (Belize)
4783
+ #: ../languages/dynamic_strings.php:159
4784
  msgid "l-en-bz"
4785
  msgstr "English (Belize)"
4786
 
4787
  # English (Canada)
4788
+ #: ../languages/dynamic_strings.php:160
4789
  msgid "l-en-ca"
4790
  msgstr "English (Canada)"
4791
 
4792
  # English (Canada)
4793
+ #: ../languages/dynamic_strings.php:161
4794
  #, fuzzy
4795
  msgid "l-en-cb"
4796
  msgstr "English (Canada)"
4797
 
4798
  # English (United Kingdom)
4799
+ #: ../languages/dynamic_strings.php:162
4800
  msgid "l-en-gb"
4801
  msgstr "English (United Kingdom)"
4802
 
4803
  # English (Ireland)
4804
+ #: ../languages/dynamic_strings.php:163
4805
  msgid "l-en-ie"
4806
  msgstr "English (Ireland)"
4807
 
4808
  # English (Jamaica)
4809
+ #: ../languages/dynamic_strings.php:164
4810
  msgid "l-en-jm"
4811
  msgstr "English (Jamaica)"
4812
 
4813
  # English (New Zealand)
4814
+ #: ../languages/dynamic_strings.php:165
4815
  msgid "l-en-nz"
4816
  msgstr "English (New Zealand)"
4817
 
4818
  # English
4819
+ #: ../languages/dynamic_strings.php:166
4820
  #, fuzzy
4821
  msgid "l-en-ph"
4822
  msgstr "English"
4823
 
4824
  # English (Trinidad)
4825
+ #: ../languages/dynamic_strings.php:167
4826
  msgid "l-en-tt"
4827
  msgstr "English (Trinidad)"
4828
 
4829
  # English (United States)
4830
+ #: ../languages/dynamic_strings.php:168
4831
  msgid "l-en-us"
4832
  msgstr "English (United States)"
4833
 
4834
  # English (South Africa)
4835
+ #: ../languages/dynamic_strings.php:169
4836
  msgid "l-en-za"
4837
  msgstr "English (South Africa)"
4838
 
4839
  # English (South Africa)
4840
+ #: ../languages/dynamic_strings.php:170
4841
  #, fuzzy
4842
  msgid "l-en-zw"
4843
  msgstr "English (South Africa)"
4844
 
4845
  # Esperanto
4846
+ #: ../languages/dynamic_strings.php:171
4847
  msgid "l-eo"
4848
  msgstr "Esperanto"
4849
 
4850
  # Spanish; Castilian
4851
+ #: ../languages/dynamic_strings.php:172
4852
  msgid "l-es"
4853
  msgstr "Spanish; Castilian"
4854
 
4855
  # Spanish (Argentina)
4856
+ #: ../languages/dynamic_strings.php:173
4857
  msgid "l-es-ar"
4858
  msgstr "Spanish (Argentina)"
4859
 
4860
  # Spanish (Bolivia)
4861
+ #: ../languages/dynamic_strings.php:174
4862
  msgid "l-es-bo"
4863
  msgstr "Spanish (Bolivia)"
4864
 
4865
  # Spanish (Chile)
4866
+ #: ../languages/dynamic_strings.php:175
4867
  msgid "l-es-cl"
4868
  msgstr "Spanish (Chile)"
4869
 
4870
  # Spanish (Colombia)
4871
+ #: ../languages/dynamic_strings.php:176
4872
  msgid "l-es-co"
4873
  msgstr "Spanish (Colombia)"
4874
 
4875
  # Spanish (Costa Rica)
4876
+ #: ../languages/dynamic_strings.php:177
4877
  msgid "l-es-cr"
4878
  msgstr "Spanish (Costa Rica)"
4879
 
4880
  # Spanish (Dominican Republic)
4881
+ #: ../languages/dynamic_strings.php:178
4882
  msgid "l-es-do"
4883
  msgstr "Spanish (Dominican Republic)"
4884
 
4885
  # Spanish (Ecuador)
4886
+ #: ../languages/dynamic_strings.php:179
4887
  msgid "l-es-ec"
4888
  msgstr "Spanish (Ecuador)"
4889
 
4890
  # Spanish (Spain)
4891
+ #: ../languages/dynamic_strings.php:180
4892
  msgid "l-es-es"
4893
  msgstr "Spanish (Spain)"
4894
 
4895
  # Spanish (Guatemala)
4896
+ #: ../languages/dynamic_strings.php:181
4897
  msgid "l-es-gt"
4898
  msgstr "Spanish (Guatemala)"
4899
 
4900
  # Spanish (Honduras)
4901
+ #: ../languages/dynamic_strings.php:182
4902
  msgid "l-es-hn"
4903
  msgstr "Spanish (Honduras)"
4904
 
4905
  # Spanish (Mexico)
4906
+ #: ../languages/dynamic_strings.php:183
4907
  msgid "l-es-mx"
4908
  msgstr "Spanish (Mexico)"
4909
 
4910
  # Spanish (Nicaragua)
4911
+ #: ../languages/dynamic_strings.php:184
4912
  msgid "l-es-ni"
4913
  msgstr "Spanish (Nicaragua)"
4914
 
4915
  # Spanish (Panama)
4916
+ #: ../languages/dynamic_strings.php:185
4917
  msgid "l-es-pa"
4918
  msgstr "Spanish (Panama)"
4919
 
4920
  # Spanish (Peru)
4921
+ #: ../languages/dynamic_strings.php:186
4922
  msgid "l-es-pe"
4923
  msgstr "Spanish (Peru)"
4924
 
4925
  # Spanish (Puerto Rico)
4926
+ #: ../languages/dynamic_strings.php:187
4927
  msgid "l-es-pr"
4928
  msgstr "Spanish (Puerto Rico)"
4929
 
4930
  # Spanish (Paraguay)
4931
+ #: ../languages/dynamic_strings.php:188
4932
  msgid "l-es-py"
4933
  msgstr "Spanish (Paraguay)"
4934
 
4935
  # Spanish (El Salvador)
4936
+ #: ../languages/dynamic_strings.php:189
4937
  msgid "l-es-sv"
4938
  msgstr "Spanish (El Salvador)"
4939
 
4940
  # Spanish (Uruguay)
4941
+ #: ../languages/dynamic_strings.php:190
4942
  msgid "l-es-uy"
4943
  msgstr "Spanish (Uruguay)"
4944
 
4945
  # Spanish (Venezuela)
4946
+ #: ../languages/dynamic_strings.php:191
4947
  msgid "l-es-ve"
4948
  msgstr "Spanish (Venezuela)"
4949
 
4950
  # Estonian
4951
+ #: ../languages/dynamic_strings.php:192
4952
  msgid "l-et"
4953
  msgstr "Estonian"
4954
 
4955
  # Estonian
4956
+ #: ../languages/dynamic_strings.php:193
4957
  #, fuzzy
4958
  msgid "l-et-ee"
4959
  msgstr "Estonian"
4960
 
4961
  # Basque
4962
+ #: ../languages/dynamic_strings.php:194
4963
  msgid "l-eu"
4964
  msgstr "Basque"
4965
 
4966
  # Basque
4967
+ #: ../languages/dynamic_strings.php:195
4968
  #, fuzzy
4969
  msgid "l-eu-es"
4970
  msgstr "Basque"
4971
 
4972
  # Persian
4973
+ #: ../languages/dynamic_strings.php:196
4974
  msgid "l-fa"
4975
  msgstr "Persian"
4976
 
4977
  # Persian
4978
+ #: ../languages/dynamic_strings.php:197
4979
  #, fuzzy
4980
  msgid "l-fa-ir"
4981
  msgstr "Persian"
4982
 
4983
  # Finnish
4984
+ #: ../languages/dynamic_strings.php:198
4985
  msgid "l-fi"
4986
  msgstr "Finnish"
4987
 
4988
  # Finnish
4989
+ #: ../languages/dynamic_strings.php:199
4990
  #, fuzzy
4991
  msgid "l-fi-fi"
4992
  msgstr "Finnish"
4993
 
4994
  # Faroese
4995
+ #: ../languages/dynamic_strings.php:200
4996
  msgid "l-fo"
4997
  msgstr "Faroese"
4998
 
4999
  # Faroese
5000
+ #: ../languages/dynamic_strings.php:201
5001
  #, fuzzy
5002
  msgid "l-fo-fo"
5003
  msgstr "Faroese"
5004
 
5005
  # French
5006
+ #: ../languages/dynamic_strings.php:202
5007
  msgid "l-fr"
5008
  msgstr "French"
5009
 
5010
  # French (Belgium)
5011
+ #: ../languages/dynamic_strings.php:203
5012
  msgid "l-fr-be"
5013
  msgstr "French (Belgium)"
5014
 
5015
  # French (Canada)
5016
+ #: ../languages/dynamic_strings.php:204
5017
  msgid "l-fr-ca"
5018
  msgstr "French (Canada)"
5019
 
5020
  # French (Switzerland)
5021
+ #: ../languages/dynamic_strings.php:205
5022
  msgid "l-fr-ch"
5023
  msgstr "French (Switzerland)"
5024
 
5025
  # French (France)
5026
+ #: ../languages/dynamic_strings.php:206
5027
  msgid "l-fr-fr"
5028
  msgstr "French (France)"
5029
 
5030
  # French (Luxembourg)
5031
+ #: ../languages/dynamic_strings.php:207
5032
  msgid "l-fr-lu"
5033
  msgstr "French (Luxembourg)"
5034
 
5035
  # French (Switzerland)
5036
+ #: ../languages/dynamic_strings.php:208
5037
  #, fuzzy
5038
  msgid "l-fr-mc"
5039
  msgstr "French (Switzerland)"
5040
 
5041
  # Galician
5042
+ #: ../languages/dynamic_strings.php:209
5043
  msgid "l-gl"
5044
  msgstr "Galician"
5045
 
5046
  # Spanish; Castilian
5047
+ #: ../languages/dynamic_strings.php:210
5048
  #, fuzzy
5049
  msgid "l-gl-es"
5050
  msgstr "Spanish; Castilian"
5051
 
5052
  # Gujarati
5053
+ #: ../languages/dynamic_strings.php:211
5054
  msgid "l-gu"
5055
  msgstr "Gujarati"
5056
 
5057
  # Gujarati
5058
+ #: ../languages/dynamic_strings.php:212
5059
  #, fuzzy
5060
  msgid "l-gu-in"
5061
  msgstr "Gujarati"
5062
 
5063
  # Hebrew
5064
+ #: ../languages/dynamic_strings.php:213
5065
  msgid "l-he"
5066
  msgstr "Hebrew"
5067
 
5068
  # Hebrew (Israel)
5069
+ #: ../languages/dynamic_strings.php:214
5070
  msgid "l-he-il"
5071
  msgstr "Hebrew (Israel)"
5072
 
5073
  # Hindi
5074
+ #: ../languages/dynamic_strings.php:215
5075
  msgid "l-hi"
5076
  msgstr "Hindi"
5077
 
5078
  # Hindi
5079
+ #: ../languages/dynamic_strings.php:216
5080
  #, fuzzy
5081
  msgid "l-hi-in"
5082
  msgstr "Hindi"
5083
 
5084
  # Croatian
5085
+ #: ../languages/dynamic_strings.php:217
5086
  msgid "l-hr"
5087
  msgstr "Croatian"
5088
 
5089
  # Croatian
5090
+ #: ../languages/dynamic_strings.php:218
5091
  #, fuzzy
5092
  msgid "l-hr-ba"
5093
  msgstr "Croatian"
5094
 
5095
  # Croatian
5096
+ #: ../languages/dynamic_strings.php:219
5097
  #, fuzzy
5098
  msgid "l-hr-hr"
5099
  msgstr "Croatian"
5100
 
5101
  # Hungarian
5102
+ #: ../languages/dynamic_strings.php:220
5103
  msgid "l-hu"
5104
  msgstr "Hungarian"
5105
 
5106
  # Hungarian (Hungary)
5107
+ #: ../languages/dynamic_strings.php:221
5108
  msgid "l-hu-hu"
5109
  msgstr "Hungarian (Hungary)"
5110
 
5111
  # Armenian
5112
+ #: ../languages/dynamic_strings.php:222
5113
  msgid "l-hy"
5114
  msgstr "Armenian"
5115
 
5116
  # Armenian
5117
+ #: ../languages/dynamic_strings.php:223
5118
  #, fuzzy
5119
  msgid "l-hy-am"
5120
  msgstr "Armenian"
5121
 
5122
  # Indonesian
5123
+ #: ../languages/dynamic_strings.php:224
5124
  msgid "l-id"
5125
  msgstr "Indonesian"
5126
 
5127
  # Indonesian
5128
+ #: ../languages/dynamic_strings.php:225
5129
  #, fuzzy
5130
  msgid "l-id-id"
5131
  msgstr "Indonesian"
5132
 
5133
  # Icelandic
5134
+ #: ../languages/dynamic_strings.php:226
5135
  msgid "l-is"
5136
  msgstr "Icelandic"
5137
 
5138
  # Icelandic
5139
+ #: ../languages/dynamic_strings.php:227
5140
  #, fuzzy
5141
  msgid "l-is-is"
5142
  msgstr "Icelandic"
5143
 
5144
  # Italian
5145
+ #: ../languages/dynamic_strings.php:228
5146
  msgid "l-it"
5147
  msgstr "Italian"
5148
 
5149
  # Italian (Switzerland)
5150
+ #: ../languages/dynamic_strings.php:229
5151
  msgid "l-it-ch"
5152
  msgstr "Italian (Switzerland)"
5153
 
5154
  # Italian (Italia)
5155
+ #: ../languages/dynamic_strings.php:230
5156
  msgid "l-it-it"
5157
  msgstr "Italian (Italia)"
5158
 
5159
  # Japanese
5160
+ #: ../languages/dynamic_strings.php:231
5161
  msgid "l-ja"
5162
  msgstr "Japanese"
5163
 
5164
  # Japanes
5165
+ #: ../languages/dynamic_strings.php:232
5166
  msgid "l-ja-jp"
5167
  msgstr "Japanese"
5168
 
5169
  # Georgian
5170
+ #: ../languages/dynamic_strings.php:233
5171
  msgid "l-ka"
5172
  msgstr "Georgian"
5173
 
5174
  # Georgian
5175
+ #: ../languages/dynamic_strings.php:234
5176
  #, fuzzy
5177
  msgid "l-ka-ge"
5178
  msgstr "Georgian"
5179
 
5180
  # Kazakh
5181
+ #: ../languages/dynamic_strings.php:235
5182
  msgid "l-kk"
5183
  msgstr "Kazakh"
5184
 
5185
  # Kazakh
5186
+ #: ../languages/dynamic_strings.php:236
5187
  #, fuzzy
5188
  msgid "l-kk-kz"
5189
  msgstr "Kazakh"
5190
 
5191
  # Kannada
5192
+ #: ../languages/dynamic_strings.php:237
5193
  msgid "l-kn"
5194
  msgstr "Kannada"
5195
 
5196
  # Kannada
5197
+ #: ../languages/dynamic_strings.php:238
5198
  #, fuzzy
5199
  msgid "l-kn-in"
5200
  msgstr "Kannada"
5201
 
5202
  # Korean
5203
+ #: ../languages/dynamic_strings.php:239
5204
  msgid "l-ko"
5205
  msgstr "Korean"
5206
 
5207
  # Korean (Republic of Korea)
5208
+ #: ../languages/dynamic_strings.php:240
5209
  msgid "l-ko-kr"
5210
  msgstr "Korean (Republic of Korea)"
5211
 
5212
  # Korean
5213
+ #: ../languages/dynamic_strings.php:241
5214
  #, fuzzy
5215
  msgid "l-kok"
5216
  msgstr "Korean"
5217
 
5218
  # Korean
5219
+ #: ../languages/dynamic_strings.php:242
5220
  #, fuzzy
5221
  msgid "l-kok-in"
5222
  msgstr "Korean"
5223
 
5224
  # Kirghiz; Kyrgyz
5225
+ #: ../languages/dynamic_strings.php:243
5226
  msgid "l-ky"
5227
  msgstr "Kirghiz; Kyrgyz"
5228
 
5229
  # Kirghiz; Kyrgyz
5230
+ #: ../languages/dynamic_strings.php:244
5231
  #, fuzzy
5232
  msgid "l-ky-kg"
5233
  msgstr "Kirghiz; Kyrgyz"
5234
 
5235
  # Lithuanian
5236
+ #: ../languages/dynamic_strings.php:245
5237
  msgid "l-lt"
5238
  msgstr "Lithuanian"
5239
 
5240
  # Lithuanian
5241
+ #: ../languages/dynamic_strings.php:246
5242
  #, fuzzy
5243
  msgid "l-lt-lt"
5244
  msgstr "Lithuanian"
5245
 
5246
  # Latvian
5247
+ #: ../languages/dynamic_strings.php:247
5248
  msgid "l-lv"
5249
  msgstr "Latvian"
5250
 
5251
  # Latvian
5252
+ #: ../languages/dynamic_strings.php:248
5253
  #, fuzzy
5254
  msgid "l-lv-lv"
5255
  msgstr "Latvian"
5256
 
5257
  # Maori
5258
+ #: ../languages/dynamic_strings.php:249
5259
  msgid "l-mi"
5260
  msgstr "Maori"
5261
 
5262
  # Maori
5263
+ #: ../languages/dynamic_strings.php:250
5264
  #, fuzzy
5265
  msgid "l-mi-nz"
5266
  msgstr "Maori"
5267
 
5268
  # Macedonian
5269
+ #: ../languages/dynamic_strings.php:251
5270
  msgid "l-mk"
5271
  msgstr "Macedonian"
5272
 
5273
  # Macedonian
5274
+ #: ../languages/dynamic_strings.php:252
5275
  #, fuzzy
5276
  msgid "l-mk-ml"
5277
  msgstr "Macedonian"
5278
 
5279
  # Mongolian
5280
+ #: ../languages/dynamic_strings.php:253
5281
  msgid "l-mn"
5282
  msgstr "Mongolian"
5283
 
5284
  # Mongolian
5285
+ #: ../languages/dynamic_strings.php:254
5286
  #, fuzzy
5287
  msgid "l-mn-mn"
5288
  msgstr "Mongolian"
5289
 
5290
  # Marathi
5291
+ #: ../languages/dynamic_strings.php:255
5292
  msgid "l-mr"
5293
  msgstr "Marathi"
5294
 
5295
  # Marathi
5296
+ #: ../languages/dynamic_strings.php:256
5297
  #, fuzzy
5298
  msgid "l-mr-in"
5299
  msgstr "Marathi"
5300
 
5301
  # Malay
5302
+ #: ../languages/dynamic_strings.php:257
5303
  msgid "l-ms"
5304
  msgstr "Malay"
5305
 
5306
  # Malay
5307
+ #: ../languages/dynamic_strings.php:258
5308
  #, fuzzy
5309
  msgid "l-ms-bn"
5310
  msgstr "Malay"
5311
 
5312
  # Malay
5313
+ #: ../languages/dynamic_strings.php:259
5314
  #, fuzzy
5315
  msgid "l-ms-my"
5316
  msgstr "Malay"
5317
 
5318
  # Maltese
5319
+ #: ../languages/dynamic_strings.php:260
5320
  msgid "l-mt"
5321
  msgstr "Maltese"
5322
 
5323
  # Maltese
5324
+ #: ../languages/dynamic_strings.php:261
5325
  #, fuzzy
5326
  msgid "l-mt-mt"
5327
  msgstr "Maltese"
5328
 
5329
  # Norwegian Bokmål
5330
+ #: ../languages/dynamic_strings.php:262
5331
  msgid "l-nb"
5332
  msgstr "Norwegian Bokmål"
5333
 
5334
  # Norwegian Bokmål
5335
+ #: ../languages/dynamic_strings.php:263
5336
  #, fuzzy
5337
  msgid "l-nb-no"
5338
  msgstr "Norwegian Bokmål"
5339
 
5340
  # Dutch; Flemish
5341
+ #: ../languages/dynamic_strings.php:264
5342
  msgid "l-nl"
5343
  msgstr "Dutch; Flemish"
5344
 
5345
  # Dutch (Belgium)
5346
+ #: ../languages/dynamic_strings.php:265
5347
  msgid "l-nl-be"
5348
  msgstr "Dutch (Belgium)"
5349
 
5350
  # Dutch (Netherlands)
5351
+ #: ../languages/dynamic_strings.php:266
5352
  msgid "l-nl-nl"
5353
  msgstr "Dutch (Netherlands)"
5354
 
5355
  # Norwegian Nynorsk
5356
+ #: ../languages/dynamic_strings.php:267
5357
  #, fuzzy
5358
  msgid "l-nn-no"
5359
  msgstr "Norwegian Nynorsk"
5360
 
5361
+ #: ../languages/dynamic_strings.php:268
5362
  msgid "l-ns"
5363
  msgstr ""
5364
 
5365
+ #: ../languages/dynamic_strings.php:269
5366
  msgid "l-ns-za"
5367
  msgstr ""
5368
 
5369
  # Panjabi; Punjabi
5370
+ #: ../languages/dynamic_strings.php:270
5371
  msgid "l-pa"
5372
  msgstr "Panjabi; Punjabi"
5373
 
5374
  # Panjabi; Punjabi
5375
+ #: ../languages/dynamic_strings.php:271
5376
  #, fuzzy
5377
  msgid "l-pa-in"
5378
  msgstr "Panjabi; Punjabi"
5379
 
5380
  # Polish
5381
+ #: ../languages/dynamic_strings.php:272
5382
  msgid "l-pl"
5383
  msgstr "Polish"
5384
 
5385
  # Polish
5386
+ #: ../languages/dynamic_strings.php:273
5387
  msgid "l-pl-pl"
5388
  msgstr "Polish (Poland)"
5389
 
5390
  # Pushto; Pashto
5391
+ #: ../languages/dynamic_strings.php:274
5392
  msgid "l-ps"
5393
  msgstr "Pushto; Pashto"
5394
 
5395
  # Spanish (Argentina)
5396
+ #: ../languages/dynamic_strings.php:275
5397
  #, fuzzy
5398
  msgid "l-ps-ar"
5399
  msgstr "Spanish (Argentina)"
5400
 
5401
  # Portuguese
5402
+ #: ../languages/dynamic_strings.php:276
5403
  msgid "l-pt"
5404
  msgstr "Portuguese"
5405
 
5406
  # Portuguese (Brazil)
5407
+ #: ../languages/dynamic_strings.php:277
5408
  msgid "l-pt-br"
5409
  msgstr "Portuguese (Brazil)"
5410
 
5411
  # Portuguese
5412
+ #: ../languages/dynamic_strings.php:278
5413
  msgid "l-pt-pt"
5414
  msgstr "Portuguese (Portugal)"
5415
 
5416
  # Quechua
5417
+ #: ../languages/dynamic_strings.php:279
5418
  msgid "l-qu"
5419
  msgstr "Quechua"
5420
 
5421
  # Quechua
5422
+ #: ../languages/dynamic_strings.php:280
5423
  #, fuzzy
5424
  msgid "l-qu-bo"
5425
  msgstr "Quechua"
5426
 
5427
  # Quechua
5428
+ #: ../languages/dynamic_strings.php:281
5429
  #, fuzzy
5430
  msgid "l-qu-ec"
5431
  msgstr "Quechua"
5432
 
5433
  # Quechua
5434
+ #: ../languages/dynamic_strings.php:282
5435
  #, fuzzy
5436
  msgid "l-qu-pe"
5437
  msgstr "Quechua"
5438
 
5439
  # Romanian; Moldavian; Moldovan
5440
+ #: ../languages/dynamic_strings.php:283
5441
  msgid "l-ro"
5442
  msgstr "Romanian; Moldavian; Moldovan"
5443
 
5444
  # Romanian; Moldavian; Moldovan
5445
+ #: ../languages/dynamic_strings.php:284
5446
  #, fuzzy
5447
  msgid "l-ro-ro"
5448
  msgstr "Romanian; Moldavian; Moldovan"
5449
 
5450
  # Russian
5451
+ #: ../languages/dynamic_strings.php:285
5452
  msgid "l-ru"
5453
  msgstr "Russian"
5454
 
5455
  # Russian (Russia)
5456
+ #: ../languages/dynamic_strings.php:286
5457
  msgid "l-ru-ru"
5458
  msgstr "Russian (Russia)"
5459
 
5460
  # Sanskrit
5461
+ #: ../languages/dynamic_strings.php:287
5462
  msgid "l-sa"
5463
  msgstr "Sanskrit"
5464
 
5465
  # Sanskrit
5466
+ #: ../languages/dynamic_strings.php:288
5467
  #, fuzzy
5468
  msgid "l-sa-in"
5469
  msgstr "Sanskrit"
5470
 
5471
  # Northern Sami
5472
+ #: ../languages/dynamic_strings.php:289
5473
  msgid "l-se"
5474
  msgstr "Northern Sami"
5475
 
5476
  # Northern Sami
5477
+ #: ../languages/dynamic_strings.php:290
5478
  #, fuzzy
5479
  msgid "l-se-fi"
5480
  msgstr "Northern Sami"
5481
 
5482
  # Northern Sami
5483
+ #: ../languages/dynamic_strings.php:291
5484
  #, fuzzy
5485
  msgid "l-se-no"
5486
  msgstr "Northern Sami"
5487
 
5488
  # Northern Sami
5489
+ #: ../languages/dynamic_strings.php:292
5490
  #, fuzzy
5491
  msgid "l-se-se"
5492
  msgstr "Northern Sami"
5493
 
5494
  # Slovak
5495
+ #: ../languages/dynamic_strings.php:293
5496
  msgid "l-sk"
5497
  msgstr "Slovak"
5498
 
5499
  # Slovak
5500
+ #: ../languages/dynamic_strings.php:294
5501
  #, fuzzy
5502
  msgid "l-sk-sk"
5503
  msgstr "Slovak"
5504
 
5505
  # Slovenian
5506
+ #: ../languages/dynamic_strings.php:295
5507
  msgid "l-sl"
5508
  msgstr "Slovenian"
5509
 
5510
  # Sinhala; Sinhalese
5511
+ #: ../languages/dynamic_strings.php:296
5512
  #, fuzzy
5513
  msgid "l-sl-si"
5514
  msgstr "Sinhala; Sinhalese"
5515
 
5516
  # Albanian
5517
+ #: ../languages/dynamic_strings.php:297
5518
  msgid "l-sq"
5519
  msgstr "Albanian"
5520
 
5521
  # Albanian
5522
+ #: ../languages/dynamic_strings.php:298
5523
  #, fuzzy
5524
  msgid "l-sq-al"
5525
  msgstr "Albanian"
5526
 
5527
  # Serbian
5528
+ #: ../languages/dynamic_strings.php:299
5529
  #, fuzzy
5530
  msgid "l-sr-ba"
5531
  msgstr "Serbian"
5532
 
5533
  # Serbian
5534
+ #: ../languages/dynamic_strings.php:300
5535
  #, fuzzy
5536
  msgid "l-sr-sp"
5537
  msgstr "Serbian"
5538
 
5539
  # Swedish
5540
+ #: ../languages/dynamic_strings.php:301
5541
  msgid "l-sv"
5542
  msgstr "Swedish"
5543
 
5544
  # Swedish (Finland)
5545
+ #: ../languages/dynamic_strings.php:302
5546
  msgid "l-sv-fi"
5547
  msgstr "Swedish (Finland)"
5548
 
5549
  # Swedish (Sweden)
5550
+ #: ../languages/dynamic_strings.php:303
5551
  msgid "l-sv-se"
5552
  msgstr "Swedish (Sweden)"
5553
 
5554
  # Swahili
5555
+ #: ../languages/dynamic_strings.php:304
5556
  msgid "l-sw"
5557
  msgstr "Swahili"
5558
 
5559
  # Swahili
5560
+ #: ../languages/dynamic_strings.php:305
5561
  #, fuzzy
5562
  msgid "l-sw-ke"
5563
  msgstr "Swahili"
5564
 
5565
  # Tamil
5566
+ #: ../languages/dynamic_strings.php:306
5567
  msgid "l-ta"
5568
  msgstr "Tamil"
5569
 
5570
  # Tamil
5571
+ #: ../languages/dynamic_strings.php:307
5572
  #, fuzzy
5573
  msgid "l-ta-in"
5574
  msgstr "Tamil"
5575
 
5576
  # Telugu
5577
+ #: ../languages/dynamic_strings.php:308
5578
  msgid "l-te"
5579
  msgstr "Telugu"
5580
 
5581
  # Telugu
5582
+ #: ../languages/dynamic_strings.php:309
5583
  #, fuzzy
5584
  msgid "l-te-in"
5585
  msgstr "Telugu"
5586
 
5587
  # Thai
5588
+ #: ../languages/dynamic_strings.php:310
5589
  msgid "l-th"
5590
  msgstr "Thai"
5591
 
5592
  # Thai
5593
+ #: ../languages/dynamic_strings.php:311
5594
  msgid "l-th-th"
5595
  msgstr "Thai (Thailand)"
5596
 
5597
  # Tagalog
5598
+ #: ../languages/dynamic_strings.php:312
5599
  msgid "l-tl"
5600
  msgstr "Tagalog"
5601
 
5602
  # Tagalog
5603
+ #: ../languages/dynamic_strings.php:313
5604
  #, fuzzy
5605
  msgid "l-tl-ph"
5606
  msgstr "Tagalog"
5607
 
5608
  # Tswana
5609
+ #: ../languages/dynamic_strings.php:314
5610
  msgid "l-tn"
5611
  msgstr "Tswana"
5612
 
5613
  # English (South Africa)
5614
+ #: ../languages/dynamic_strings.php:315
5615
  #, fuzzy
5616
  msgid "l-tn-za"
5617
  msgstr "English (South Africa)"
5618
 
5619
  # Turkish
5620
+ #: ../languages/dynamic_strings.php:316
5621
  msgid "l-tr"
5622
  msgstr "Turkish"
5623
 
5624
  # Turkish
5625
+ #: ../languages/dynamic_strings.php:317
5626
  msgid "l-tr-tr"
5627
  msgstr "Turkish"
5628
 
5629
  # Tatar
5630
+ #: ../languages/dynamic_strings.php:318
5631
  msgid "l-tt"
5632
  msgstr "Tatar"
5633
 
5634
  # Tatar
5635
+ #: ../languages/dynamic_strings.php:319
5636
  #, fuzzy
5637
  msgid "l-tt-ru"
5638
  msgstr "Tatar"
5639
 
5640
  # Tsonga
5641
+ #: ../languages/dynamic_strings.php:320
5642
  msgid "l-ts"
5643
  msgstr "Tsonga"
5644
 
5645
  # Ukrainian
5646
+ #: ../languages/dynamic_strings.php:321
5647
  msgid "l-uk"
5648
  msgstr "Ukrainian"
5649
 
5650
  # Ukrainian
5651
+ #: ../languages/dynamic_strings.php:322
5652
  #, fuzzy
5653
  msgid "l-uk-ua"
5654
  msgstr "Ukrainian"
5655
 
5656
  # Urdu
5657
+ #: ../languages/dynamic_strings.php:323
5658
  msgid "l-ur"
5659
  msgstr "Urdu"
5660
 
5661
  # Urdu
5662
+ #: ../languages/dynamic_strings.php:324
5663
  #, fuzzy
5664
  msgid "l-ur-pk"
5665
  msgstr "Urdu"
5666
 
5667
  # Uzbek
5668
+ #: ../languages/dynamic_strings.php:325
5669
  msgid "l-uz"
5670
  msgstr "Uzbek"
5671
 
5672
  # Uzbek
5673
+ #: ../languages/dynamic_strings.php:326
5674
  #, fuzzy
5675
  msgid "l-uz-uz"
5676
  msgstr "Uzbek"
5677
 
5678
  # Vietnamese
5679
+ #: ../languages/dynamic_strings.php:327
5680
  msgid "l-vi"
5681
  msgstr "Vietnamese"
5682
 
5683
  # Vietnamese
5684
+ #: ../languages/dynamic_strings.php:328
5685
  msgid "l-vi-vn"
5686
  msgstr "Vietnamese (Vietnam)"
5687
 
5688
  # Xhosa
5689
+ #: ../languages/dynamic_strings.php:329
5690
  msgid "l-xh"
5691
  msgstr "Xhosa"
5692
 
5693
  # Xhosa
5694
+ #: ../languages/dynamic_strings.php:330
5695
  #, fuzzy
5696
  msgid "l-xh-za"
5697
  msgstr "Xhosa"
5698
 
5699
  # Chinese
5700
+ #: ../languages/dynamic_strings.php:331
5701
  msgid "l-zh"
5702
  msgstr "Chinese"
5703
 
5704
  # Chinese (China)
5705
+ #: ../languages/dynamic_strings.php:332
5706
  msgid "l-zh-cn"
5707
  msgstr "Chinese (China)"
5708
 
5709
  # Chinese (Hong Kong)
5710
+ #: ../languages/dynamic_strings.php:333
5711
  msgid "l-zh-hk"
5712
  msgstr "Chinese (Hong Kong)"
5713
 
5714
  # Chinese
5715
+ #: ../languages/dynamic_strings.php:334
5716
  #, fuzzy
5717
  msgid "l-zh-mo"
5718
  msgstr "Chinese"
5719
 
5720
  # Chinese (Singapore)
5721
+ #: ../languages/dynamic_strings.php:335
5722
  msgid "l-zh-sg"
5723
  msgstr "Chinese (Singapore)"
5724
 
5725
  # Chinese (Taiwan)
5726
+ #: ../languages/dynamic_strings.php:336
5727
  msgid "l-zh-tw"
5728
  msgstr "Taiwanese"
5729
 
5730
  # Zulu
5731
+ #: ../languages/dynamic_strings.php:337
5732
  msgid "l-zu"
5733
  msgstr "Zulu"
5734
 
5735
  # Zulu
5736
+ #: ../languages/dynamic_strings.php:338
5737
  #, fuzzy
5738
  msgid "l-zu-za"
5739
  msgstr "Zulu"
5740
 
5741
  # Unknown
5742
+ #: ../languages/dynamic_strings.php:340
5743
  msgid "l-empty"
5744
  msgstr "Unknown"
5745
 
5746
  # Unknown
5747
+ #: ../languages/dynamic_strings.php:341
5748
  msgid "l-xx"
5749
  msgstr "Unknown"
5750
 
5751
+ #: ../languages/dynamic_strings.php:343
5752
  msgid "c-xy"
5753
  msgstr "Lokale IP-Adresse"
5754
 
5755
+ #: ../wp-slimstat.php:237 ../wp-slimstat.php:524
5756
  msgid "Notice: Pageview filtered by third-party code"
5757
  msgstr ""
5758
 
5759
+ #: ../wp-slimstat.php:254
5760
  #, fuzzy, php-format
5761
  msgid "Error: Malformed URL %s"
5762
  msgstr "Ignoriere Benutzer"
5763
 
5764
+ #: ../wp-slimstat.php:278
5765
  #, fuzzy, php-format
5766
  msgid "Notice: Referrer %s is blacklisted"
5767
  msgstr "Browser-F&auml;higkeiten"
5768
 
5769
+ #: ../wp-slimstat.php:356
5770
  #, fuzzy, php-format
5771
  msgid "Notice: Permalink %s is blacklisted"
5772
  msgstr "Browser-F&auml;higkeiten"
5773
 
5774
+ #: ../wp-slimstat.php:367
5775
  msgid "Error: Empty or not supported IP address format (IPv6)"
5776
  msgstr ""
5777
 
5778
+ #: ../wp-slimstat.php:376
5779
  #, php-format
5780
  msgid "Notice: Logged in user %s not tracked"
5781
  msgstr ""
5782
 
5783
+ #: ../wp-slimstat.php:384
5784
  #, php-format
5785
  msgid "Notice: User with capability %s not tracked"
5786
  msgstr ""
5787
 
5788
+ #: ../wp-slimstat.php:394
5789
  #, fuzzy, php-format
5790
  msgid "Notice: User %s is blacklisted"
5791
  msgstr "Browser-F&auml;higkeiten"
5792
 
5793
+ #: ../wp-slimstat.php:415
5794
  #, fuzzy, php-format
5795
  msgid "Notice: Spammer %s not tracked"
5796
  msgstr "Bot oder Crawler"
5797
 
5798
+ #: ../wp-slimstat.php:444
5799
  #, fuzzy, php-format
5800
  msgid "Notice: IP address %s is blacklisted"
5801
  msgstr "Browser-F&auml;higkeiten"
5802
 
5803
+ #: ../wp-slimstat.php:473
5804
  #, fuzzy, php-format
5805
  msgid "Notice: Country %s is blacklisted"
5806
  msgstr "Browser-F&auml;higkeiten"
5807
 
5808
+ #: ../wp-slimstat.php:482
5809
  msgid "Notice: Prefetch requests are ignored"
5810
  msgstr ""
5811
 
5812
+ #: ../wp-slimstat.php:498
5813
  #, fuzzy
5814
  msgid "Notice: Bot not tracked"
5815
  msgstr "Bot oder Crawler"
5816
 
5817
+ #: ../wp-slimstat.php:507
5818
  #, fuzzy, php-format
5819
  msgid "Notice: Browser %s is blacklisted"
5820
  msgstr "Browser-F&auml;higkeiten"
5821
 
5822
+ #: ../wp-slimstat.php:537
5823
  msgid "Error:"
5824
  msgstr ""
5825
 
5826
+ #: ../wp-slimstat.php:1153
5827
  msgid "Invalid payload string. Try clearing your WordPress cache."
5828
  msgstr ""
5829
 
5830
+ #: ../wp-slimstat.php:1163
5831
  msgid "Invalid data signature. Try clearing your WordPress cache."
5832
  msgstr ""
5833
 
5834
+ #: ../wp-slimstat.php:1235
5835
  #, fuzzy
5836
  msgid "There was an error downloading the MaxMind Geolite DB:"
5837
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5838
 
5839
+ #: ../wp-slimstat.php:1243 ../wp-slimstat.php:1252
5840
  #, fuzzy
5841
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5842
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5843
 
5844
+ #: ../wp-slimstat.php:1247
5845
  msgid "Function gzopen not defined. Aborting."
5846
  msgstr ""
5847
 
5848
+ #: ../wp-slimstat.php:1257
5849
  #, fuzzy
5850
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5851
  msgstr "Fehler beim Aktualisieren folgender Optionen:"
5852
 
5853
+ #, fuzzy
5854
+ #~ msgid "Delete records"
5855
+ #~ msgstr "Datensätze"
5856
+
5857
+ #, fuzzy
5858
+ #~ msgid "recorded on"
5859
+ #~ msgstr "Datensätze"
5860
+
5861
+ #~ msgid "Top Traffic Sources"
5862
+ #~ msgstr "Top-Traffic-Ursprung"
5863
+
5864
+ #, fuzzy
5865
+ #~ msgid "windows phone"
5866
+ #~ msgstr "Windows Phone"
5867
+
5868
  #~ msgid "Ignore users (username not found)"
5869
  #~ msgstr "Benutzer ignorieren (Benutzername nicht gefunden)"
5870
 
languages/wp-slimstat-en_US.mo CHANGED
Binary file
languages/wp-slimstat-en_US.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2015-12-24 09:19-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: camu <support@wp-slimstat.com>\n"
@@ -15,48 +15,48 @@ msgstr ""
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../admin/config/index.php:50
19
  msgid ""
20
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
21
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
22
  msgstr ""
23
 
24
- #: ../admin/config/index.php:65
25
  msgid "Read access: username not found"
26
  msgstr ""
27
 
28
- #: ../admin/config/index.php:75 ../admin/config/index.php:100
29
  msgid ""
30
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
31
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
32
  "information"
33
  msgstr ""
34
 
35
- #: ../admin/config/index.php:90
36
  msgid "Config access: username not found"
37
  msgstr ""
38
 
39
- #: ../admin/config/index.php:109
40
  msgid "Basic"
41
  msgstr ""
42
 
43
- #: ../admin/config/index.php:111 ../admin/config/index.php:132
44
  msgid "Tracker"
45
  msgstr ""
46
 
47
- #: ../admin/config/index.php:112
48
  msgid "Enable Tracking"
49
  msgstr ""
50
 
51
- #: ../admin/config/index.php:112
52
  msgid "Turn the tracker on or off, while keeping the reports accessible."
53
  msgstr ""
54
 
55
- #: ../admin/config/index.php:113
56
  msgid "Tracking Mode"
57
  msgstr ""
58
 
59
- #: ../admin/config/index.php:113
60
  msgid ""
61
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
62
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
@@ -65,176 +65,176 @@ msgid ""
65
  "spammers, search engines and other crawlers</strong> will not be tracked."
66
  msgstr ""
67
 
68
- #: ../admin/config/index.php:113
69
  msgid "Client Side"
70
  msgstr ""
71
 
72
- #: ../admin/config/index.php:113
73
  msgid "Server Side"
74
  msgstr ""
75
 
76
- #: ../admin/config/index.php:114
77
  msgid "Stealth Mode"
78
  msgstr ""
79
 
80
- #: ../admin/config/index.php:114
81
  msgid ""
82
  "Do not add the javascript tracking code to your pages, if tracking mode is "
83
  "set to Server. Please note: if enabled, this will prevent the tracker from "
84
  "collecting information such as screen resolution, outbound links, downloads, "
85
- "etc. This option is ignored is Tracking Mode is set to Client."
86
  msgstr ""
87
 
88
- #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
89
  msgid "Off"
90
  msgstr ""
91
 
92
- #: ../admin/config/index.php:114
93
  msgid "On"
94
  msgstr ""
95
 
96
- #: ../admin/config/index.php:115
97
  msgid "Admin Pages"
98
  msgstr ""
99
 
100
- #: ../admin/config/index.php:115
101
  msgid "Enable this option to track your users' activity within the admin."
102
  msgstr ""
103
 
104
- #: ../admin/config/index.php:115
105
  msgid "Track"
106
  msgstr ""
107
 
108
- #: ../admin/config/index.php:115
109
  msgid "Do not track"
110
  msgstr ""
111
 
112
- #: ../admin/config/index.php:117
113
  msgid "WordPress Integration"
114
  msgstr ""
115
 
116
- #: ../admin/config/index.php:118
117
  msgid "Menu Position"
118
  msgstr ""
119
 
120
- #: ../admin/config/index.php:118
121
  msgid ""
122
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
123
  "admin bar (if visible)."
124
  msgstr ""
125
 
126
- #: ../admin/config/index.php:118
127
  msgid "Side Menu"
128
  msgstr ""
129
 
130
- #: ../admin/config/index.php:118
131
  msgid "Admin Bar"
132
  msgstr ""
133
 
134
- #: ../admin/config/index.php:119
135
  msgid "Posts and Pages"
136
  msgstr ""
137
 
138
- #: ../admin/config/index.php:119
139
  msgid ""
140
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
141
  "per post within the timeframe specified here below."
142
  msgstr ""
143
 
144
- #: ../admin/config/index.php:120
145
  msgid "Report Interval"
146
  msgstr ""
147
 
148
- #: ../admin/config/index.php:120
149
  msgid ""
150
  "Enter the time range, in days, that should be used to calculate the value "
151
  "here above."
152
  msgstr ""
153
 
154
- #: ../admin/config/index.php:121
155
  msgid "Report Type"
156
  msgstr ""
157
 
158
- #: ../admin/config/index.php:121
159
  msgid ""
160
  "Select what kind of information you would like to see displayed on the Posts "
161
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
162
  "IPs consider only one hit per user in the given time range."
163
  msgstr ""
164
 
165
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
166
- #: ../admin/view/wp-slimstat-reports.php:109
167
- #: ../admin/view/wp-slimstat-reports.php:1375
168
- #: ../admin/view/wp-slimstat-reports.php:1533
169
  msgid "Pageviews"
170
  msgstr ""
171
 
172
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
173
- #: ../admin/view/wp-slimstat-reports.php:286
174
- #: ../admin/view/wp-slimstat-reports.php:526
175
- #: ../admin/view/wp-slimstat-reports.php:1390
176
- #: ../admin/view/wp-slimstat-reports.php:1435
177
  msgid "Unique IPs"
178
  msgstr ""
179
 
180
- #: ../admin/config/index.php:122
181
  msgid "Dashboard Widgets"
182
  msgstr ""
183
 
184
- #: ../admin/config/index.php:122
185
  msgid ""
186
  "Choose if you want to have the most important reports on your WordPress "
187
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
188
  msgstr ""
189
 
190
- #: ../admin/config/index.php:123
191
  msgid "Hide Add-ons"
192
  msgstr ""
193
 
194
- #: ../admin/config/index.php:123
195
  msgid ""
196
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
197
  "from the list of plugins in WordPress. Please note that you will still "
198
  "receive updates for hidden add-ons."
199
  msgstr ""
200
 
201
- #: ../admin/config/index.php:125
202
  msgid "Database"
203
  msgstr ""
204
 
205
- #: ../admin/config/index.php:126
206
  msgid "Retain data for"
207
  msgstr ""
208
 
209
- #: ../admin/config/index.php:126
210
  msgid ""
211
  "Clean-up log entries older than the number of days specified here above. "
212
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
213
  "regardless of its age."
214
  msgstr ""
215
 
216
- #: ../admin/config/index.php:126
217
  msgid "Next clean-up on"
218
  msgstr ""
219
 
220
- #: ../admin/config/index.php:126
221
  #, php-format
222
  msgid ""
223
  "Entries logged on or before %s will be archived or deleted according to the "
224
  "option here below."
225
  msgstr ""
226
 
227
- #: ../admin/config/index.php:126 ../admin/view/index.php:102
228
  #: ../admin/view/wp-slimstat-db.php:79
229
- #: ../admin/view/wp-slimstat-reports.php:1359
230
  msgid "days"
231
  msgstr ""
232
 
233
- #: ../admin/config/index.php:127
234
- msgid "Delete records"
235
  msgstr ""
236
 
237
- #: ../admin/config/index.php:127
238
  msgid ""
239
  "If DB space is not an issue, you can decide to archive older records in "
240
  "another table, instead of deleting them. This way performance is preserved, "
@@ -244,48 +244,72 @@ msgid ""
244
  "is uninstalled. Make sure to backup your data before you proceed."
245
  msgstr ""
246
 
247
- #: ../admin/config/index.php:134
248
  msgid "Advanced Options"
249
  msgstr ""
250
 
251
- #: ../admin/config/index.php:135
252
  msgid "Session Duration"
253
  msgstr ""
254
 
255
- #: ../admin/config/index.php:135
256
  msgid ""
257
  "How many seconds should a human session last? Google Analytics sets it to "
258
  "1800 seconds."
259
  msgstr ""
260
 
261
- #: ../admin/config/index.php:135 ../admin/config/index.php:205
262
  msgid "seconds"
263
  msgstr ""
264
 
265
- #: ../admin/config/index.php:136
266
  msgid "Extend Session"
267
  msgstr ""
268
 
269
- #: ../admin/config/index.php:136
270
  msgid "Extend the duration of a session each time the user visits a new page."
271
  msgstr ""
272
 
273
- #: ../admin/config/index.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  msgid "Enable CDN"
275
  msgstr ""
276
 
277
- #: ../admin/config/index.php:137
278
  msgid ""
279
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
280
  "by serving our tracking code from their fast and reliable network (free "
281
  "service)."
282
  msgstr ""
283
 
284
- #: ../admin/config/index.php:138
285
  msgid "Extensions to Track"
286
  msgstr ""
287
 
288
- #: ../admin/config/index.php:138
289
  msgid ""
290
  "List all the file extensions that you want to be treated as Downloads. "
291
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -294,36 +318,36 @@ msgid ""
294
  "below."
295
  msgstr ""
296
 
297
- #: ../admin/config/index.php:140
298
  msgid "Internal and Outbound Links"
299
  msgstr ""
300
 
301
- #: ../admin/config/index.php:141
302
  msgid "Track Outbound Clicks"
303
  msgstr ""
304
 
305
- #: ../admin/config/index.php:141
306
  msgid ""
307
  "Track when your visitors click on link to external websites. This option "
308
  "required Spy Mode to be enabled."
309
  msgstr ""
310
 
311
- #: ../admin/config/index.php:142
312
  msgid "Track Coordinates"
313
  msgstr ""
314
 
315
- #: ../admin/config/index.php:142
316
  msgid ""
317
  "Collect mouse coordinates and other information for clicks on internal "
318
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
319
  "this information is only collected for external links."
320
  msgstr ""
321
 
322
- #: ../admin/config/index.php:143
323
  msgid "No Callback"
324
  msgstr ""
325
 
326
- #: ../admin/config/index.php:143
327
  msgid ""
328
  "Track the event but do not invoke the callback function on links marked with "
329
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
@@ -331,33 +355,33 @@ msgid ""
331
  "prevent conflicts with lightbox and similar libraries."
332
  msgstr ""
333
 
334
- #: ../admin/config/index.php:144
335
  msgid "Do Not Track"
336
  msgstr ""
337
 
338
- #: ../admin/config/index.php:144
339
  msgid ""
340
  "Do not track links marked with one of these class names, <em>rel</em> "
341
  "attributes or whose <em>href</em> attribute contains one of these strings "
342
  "(separated by comma)."
343
  msgstr ""
344
 
345
- #: ../admin/config/index.php:146
346
  msgid "Pages not belonging to this site"
347
  msgstr ""
348
 
349
- #: ../admin/config/index.php:147
350
  msgid ""
351
  "Add the following code to all the non-WP pages you want to track, right "
352
  "before the closing BODY tag. Please make sure to change the protocol of all "
353
  "the URLs to HTTPS, if you external site is served over a secure channel."
354
  msgstr ""
355
 
356
- #: ../admin/config/index.php:157
357
  msgid "Allow External Domains"
358
  msgstr ""
359
 
360
- #: ../admin/config/index.php:157
361
  msgid ""
362
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
363
  "header is present on the requested resource, when using the external "
@@ -368,16 +392,16 @@ msgid ""
368
  "security implications of allowing CORS requests."
369
  msgstr ""
370
 
371
- #: ../admin/config/index.php:158 ../admin/config/index.php:180
372
- #: ../admin/config/index.php:208
373
  msgid "Miscellaneous"
374
  msgstr ""
375
 
376
- #: ../admin/config/index.php:159
377
  msgid "Enable UAN"
378
  msgstr ""
379
 
380
- #: ../admin/config/index.php:159
381
  msgid ""
382
  "Send anonymous data about user agents to our server for analysis. This "
383
  "allows us to contribute to the <a href='http://browscap.org/' "
@@ -386,27 +410,27 @@ msgid ""
386
  "ads network. No worries, your site will not be affected in any way."
387
  msgstr ""
388
 
389
- #: ../admin/config/index.php:164
390
  msgid "Filters"
391
  msgstr ""
392
 
393
- #: ../admin/config/index.php:166
394
  msgid "Do not track settings"
395
  msgstr ""
396
 
397
- #: ../admin/config/index.php:167
398
  msgid "Track Registered Users"
399
  msgstr ""
400
 
401
- #: ../admin/config/index.php:167
402
  msgid "Enable this option to track logged in users."
403
  msgstr ""
404
 
405
- #: ../admin/config/index.php:168
406
  msgid "Blacklist by Username"
407
  msgstr ""
408
 
409
- #: ../admin/config/index.php:168
410
  msgid ""
411
  "List all the usernames you don't want to track, separated by commas. Please "
412
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
@@ -416,11 +440,11 @@ msgid ""
416
  "match user100 and uber100, <code>user!0</code> will match user10 and user90."
417
  msgstr ""
418
 
419
- #: ../admin/config/index.php:169
420
  msgid "Blacklist by IP Address"
421
  msgstr ""
422
 
423
- #: ../admin/config/index.php:169
424
  msgid ""
425
  "List all the IP addresses you don't want to track, separated by commas. Each "
426
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -429,26 +453,26 @@ msgid ""
429
  "public IP and the originating IP, if available."
430
  msgstr ""
431
 
432
- #: ../admin/config/index.php:170
433
  msgid "Blacklist by Capability"
434
  msgstr ""
435
 
436
- #: ../admin/config/index.php:170
437
  msgid ""
438
  "Users having at least one of the <a href='http://codex.wordpress.org/"
439
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
440
  "will not be tracked. Capabilities are case-insensitive."
441
  msgstr ""
442
 
443
- #: ../admin/config/index.php:172
444
  msgid "Profiling"
445
  msgstr ""
446
 
447
- #: ../admin/config/index.php:173
448
  msgid "Ignore Spammers"
449
  msgstr ""
450
 
451
- #: ../admin/config/index.php:173
452
  msgid ""
453
  "Enable this option if you don't want to track visits from users identified "
454
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -456,11 +480,11 @@ msgid ""
456
  "database."
457
  msgstr ""
458
 
459
- #: ../admin/config/index.php:174
460
  msgid "Ignore Bots"
461
  msgstr ""
462
 
463
- #: ../admin/config/index.php:174
464
  msgid ""
465
  "Turn on this feature if you want to have the accuracy level of server-side "
466
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -468,11 +492,11 @@ msgid ""
468
  "note that in Client mode, bots are ignored regardless of this setting."
469
  msgstr ""
470
 
471
- #: ../admin/config/index.php:175
472
  msgid "Permalinks"
473
  msgstr ""
474
 
475
- #: ../admin/config/index.php:175
476
  msgid ""
477
  "List all the URLs on your website that you don't want to track, separated by "
478
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -483,21 +507,21 @@ msgid ""
483
  "case-insensitive."
484
  msgstr ""
485
 
486
- #: ../admin/config/index.php:176
487
  msgid "Countries"
488
  msgstr ""
489
 
490
- #: ../admin/config/index.php:176
491
  msgid ""
492
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
493
  "track, separated by commas."
494
  msgstr ""
495
 
496
- #: ../admin/config/index.php:177
497
  msgid "User Agents"
498
  msgstr ""
499
 
500
- #: ../admin/config/index.php:177
501
  msgid ""
502
  "Browsers (user agents) you don't want to track, separated by commas. You can "
503
  "specify the browser's version adding a slash after the name (i.e. "
@@ -507,11 +531,11 @@ msgid ""
507
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
508
  msgstr ""
509
 
510
- #: ../admin/config/index.php:178
511
  msgid "Referring Sites"
512
  msgstr ""
513
 
514
- #: ../admin/config/index.php:178
515
  msgid ""
516
  "Referring URLs that you don't want to track, separated by commas: "
517
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -521,161 +545,161 @@ msgid ""
521
  "https://)."
522
  msgstr ""
523
 
524
- #: ../admin/config/index.php:181
525
  msgid "Enable Privacy Mode"
526
  msgstr ""
527
 
528
- #: ../admin/config/index.php:181
529
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
530
  msgstr ""
531
 
532
- #: ../admin/config/index.php:182
533
  msgid "Ignore Prefetch Requests"
534
  msgstr ""
535
 
536
- #: ../admin/config/index.php:182
537
  msgid ""
538
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
539
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
540
  "target='_blank'>Link Prefetching functionality</a>."
541
  msgstr ""
542
 
543
- #: ../admin/config/index.php:187 ../admin/config/index.php:220
544
  msgid "Reports"
545
  msgstr ""
546
 
547
- #: ../admin/config/index.php:189
548
  msgid "Formats and Conversions"
549
  msgstr ""
550
 
551
- #: ../admin/config/index.php:190
552
  msgid "Number Format"
553
  msgstr ""
554
 
555
- #: ../admin/config/index.php:190
556
  msgid "Choose the number format you want to use for your reports."
557
  msgstr ""
558
 
559
- #: ../admin/config/index.php:191
560
  msgid "Date Format"
561
  msgstr ""
562
 
563
- #: ../admin/config/index.php:191
564
  msgid ""
565
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
566
  "Format</a> to use when displaying a pageview's date."
567
  msgstr ""
568
 
569
- #: ../admin/config/index.php:192
570
  msgid "Time Format"
571
  msgstr ""
572
 
573
- #: ../admin/config/index.php:192
574
  msgid ""
575
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
576
  "Format</a> to use when displaying a pageview's time."
577
  msgstr ""
578
 
579
- #: ../admin/config/index.php:193
580
  msgid "Use Display Name"
581
  msgstr ""
582
 
583
- #: ../admin/config/index.php:193
584
  msgid ""
585
  "By default, users are listed by their usernames. Use this option to "
586
  "visualize their display names instead."
587
  msgstr ""
588
 
589
- #: ../admin/config/index.php:194
590
  msgid "Use Titles"
591
  msgstr ""
592
 
593
- #: ../admin/config/index.php:194
594
  msgid ""
595
  "Slimstat converts your permalinks into post, page and category titles. "
596
  "Disable this feature if you need to see the URL in your reports."
597
  msgstr ""
598
 
599
- #: ../admin/config/index.php:195
600
  msgid "Convert IP Addresses"
601
  msgstr ""
602
 
603
- #: ../admin/config/index.php:195
604
  msgid "Display provider names instead of IP addresses."
605
  msgstr ""
606
 
607
- #: ../admin/config/index.php:197
608
  msgid "Functionality"
609
  msgstr ""
610
 
611
- #: ../admin/config/index.php:198
612
  msgid "SlimScroll"
613
  msgstr ""
614
 
615
- #: ../admin/config/index.php:198
616
  msgid ""
617
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
618
  "scrollbar."
619
  msgstr ""
620
 
621
- #: ../admin/config/index.php:199
622
  msgid "Expand Details"
623
  msgstr ""
624
 
625
- #: ../admin/config/index.php:199
626
  msgid "Expand each row's details by default, insted of on mousehover."
627
  msgstr ""
628
 
629
- #: ../admin/config/index.php:200 ../admin/config/index.php:206
630
  msgid "Rows to Display"
631
  msgstr ""
632
 
633
- #: ../admin/config/index.php:200
634
  msgid "Specify the number of items in each report."
635
  msgstr ""
636
 
637
- #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
638
  msgid "Max Results"
639
  msgstr ""
640
 
641
- #: ../admin/config/index.php:201
642
  msgid ""
643
  "Decide how many records should be retrieved from the database in total. "
644
  "Depending on your server configuration, you may want to fine tune this value "
645
  "to avoid exceeding your PHP memory limit."
646
  msgstr ""
647
 
648
- #: ../admin/config/index.php:202
649
  msgid "IP Lookup"
650
  msgstr ""
651
 
652
- #: ../admin/config/index.php:202
653
  msgid "Customize the Geolocation service to be used in the reports."
654
  msgstr ""
655
 
656
- #: ../admin/config/index.php:204
657
  msgid "Activity Log"
658
  msgstr ""
659
 
660
- #: ../admin/config/index.php:205
661
  msgid "Live Stream"
662
  msgstr ""
663
 
664
- #: ../admin/config/index.php:205
665
  msgid ""
666
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
667
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
668
  msgstr ""
669
 
670
- #: ../admin/config/index.php:206
671
  msgid "Specify the number of items in the Activity Log."
672
  msgstr ""
673
 
674
- #: ../admin/config/index.php:209
675
  msgid "Custom CSS"
676
  msgstr ""
677
 
678
- #: ../admin/config/index.php:209
679
  msgid ""
680
  "Paste here your custom stylesheet to personalize the way your reports look. "
681
  "<a href='https://slimstat.freshdesk.com/support/solutions/"
@@ -684,11 +708,11 @@ msgid ""
684
  "a> for more information on how to use this setting."
685
  msgstr ""
686
 
687
- #: ../admin/config/index.php:210
688
  msgid "Chart Colors"
689
  msgstr ""
690
 
691
- #: ../admin/config/index.php:210
692
  msgid ""
693
  "Customize the look and feel of your charts by assigning personalized colors "
694
  "to each metric. List 4 hex colors separated by commas, strictly in the "
@@ -696,60 +720,46 @@ msgid ""
696
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
697
  msgstr ""
698
 
699
- #: ../admin/config/index.php:211
700
  msgid "Show User Agent"
701
  msgstr ""
702
 
703
- #: ../admin/config/index.php:211
704
  msgid ""
705
  "Choose if you want to see the browser name or a complete user agent string "
706
  "when hovering on browser icons."
707
  msgstr ""
708
 
709
- #: ../admin/config/index.php:212
710
  msgid "Enable SOV"
711
  msgstr ""
712
 
713
- #: ../admin/config/index.php:212
714
  msgid ""
715
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
716
  "the subject, object, and verb of a sentence appear in that order, like in "
717
  "Japanese."
718
  msgstr ""
719
 
720
- #: ../admin/config/index.php:213
721
- msgid "Social Analytics"
722
- msgstr ""
723
-
724
- #: ../admin/config/index.php:213
725
- msgid ""
726
- "Thanks to a <a href='http://getsocial.io/enterprise' "
727
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
728
- "set of analytics for social media where you can identify top performing "
729
- "posts. Track social sharing to understand which of your posts are generating "
730
- "more engagement. When this option is enabled, Slimstat sends a list of all "
731
- "your posts's URLs to their service for analysis once daily."
732
- msgstr ""
733
-
734
- #: ../admin/config/index.php:218
735
  msgid "Access Control"
736
  msgstr ""
737
 
738
- #: ../admin/config/index.php:221
739
  msgid "Restrict Authors"
740
  msgstr ""
741
 
742
- #: ../admin/config/index.php:221
743
  msgid ""
744
  "Enable this option if you want your authors to only see stats related to "
745
  "their own content."
746
  msgstr ""
747
 
748
- #: ../admin/config/index.php:222 ../admin/config/index.php:226
749
  msgid "Capability"
750
  msgstr ""
751
 
752
- #: ../admin/config/index.php:222
753
  msgid ""
754
  "Specify the minimum <a href='http://codex.wordpress.org/"
755
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
@@ -759,24 +769,24 @@ msgid ""
759
  "In this case, the list has precedence over the capability."
760
  msgstr ""
761
 
762
- #: ../admin/config/index.php:223 ../admin/config/index.php:227
763
  msgid "Whitelist"
764
  msgstr ""
765
 
766
- #: ../admin/config/index.php:223
767
  msgid ""
768
  "List all the users who should have access to the reports, separated by "
769
  "commas. Administrators are implicitly allowed, so you don't need to list "
770
  "them in here. Usernames are case sensitive."
771
  msgstr ""
772
 
773
- #: ../admin/config/index.php:225 ../admin/config/index.php:250
774
- #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
775
- #: ../wp-slimstat.php:1803
776
  msgid "Settings"
777
  msgstr ""
778
 
779
- #: ../admin/config/index.php:226
780
  msgid ""
781
  "Specify the minimum <a href='http://codex.wordpress.org/"
782
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -784,20 +794,19 @@ msgid ""
784
  "can be used to override this option for specific users."
785
  msgstr ""
786
 
787
- #: ../admin/config/index.php:227
788
  msgid ""
789
  "List all the users who can edit these options, separated by commas. Please "
790
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
791
  "not forget to include yourself! Usernames are case sensitive."
792
  msgstr ""
793
 
794
- #: ../admin/config/index.php:232
795
  msgid "Maintenance"
796
  msgstr ""
797
 
798
- #: ../admin/config/index.php:237 ../admin/view/addons.php:32
799
- #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
800
- #: ../wp-slimstat.php:1800
801
  msgid "Add-ons"
802
  msgstr ""
803
 
@@ -823,258 +832,232 @@ msgstr ""
823
  msgid "The geolocation database has been installed on your server."
824
  msgstr ""
825
 
826
- #: ../admin/config/maintenance.php:166
827
- msgid ""
828
- "Your data was successfully imported. You may now drop the old tables: "
829
- "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
830
- "wp_slim_outbound. Please note: if you are using Slimstat in a MU network, "
831
- "you will need to run the import script on all your sites before you can "
832
- "delete the old tables."
833
- msgstr ""
834
-
835
- #: ../admin/config/maintenance.php:175
836
  msgid "Your reports were successfully restored to their default arrangement."
837
  msgstr ""
838
 
839
- #: ../admin/config/maintenance.php:185
840
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
841
  msgstr ""
842
 
843
- #: ../admin/config/maintenance.php:191
844
  msgid "All the archived records were successfully deleted."
845
  msgstr ""
846
 
847
- #: ../admin/config/maintenance.php:199
848
  msgid "All the records were successfully deleted."
849
  msgstr ""
850
 
851
- #: ../admin/config/maintenance.php:221
852
- msgid "Debugging"
853
  msgstr ""
854
 
855
- #: ../admin/config/maintenance.php:224
856
  msgid "Tracker Status"
857
  msgstr ""
858
 
859
- #: ../admin/config/maintenance.php:226
860
- msgid "recorded on"
861
  msgstr ""
862
 
863
- #: ../admin/config/maintenance.php:226
864
  msgid "No Errors so far"
865
  msgstr ""
866
 
867
- #: ../admin/config/maintenance.php:227
868
  msgid ""
869
  "The information here above is useful to troubleshoot issues with the "
870
  "tracker. It includes both <strong>errors</strong>, which are returned when "
871
  "the tracker could not record a pageview and are indicative of some kind of "
872
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
873
  "most recent pageview was not recorded, based on your settings (filters, "
874
- "blackslists, etc). Please include this code when sending a support request."
 
875
  msgstr ""
876
 
877
- #: ../admin/config/maintenance.php:233
878
  msgid "Enable SQL Debug"
879
  msgstr ""
880
 
881
- #: ../admin/config/maintenance.php:236
882
  msgid ""
883
  "Display the SQL code used to retrieve the data from the database. Useful to "
884
  "troubleshoot issues with data consistency or missing pageviews."
885
  msgstr ""
886
 
887
- #: ../admin/config/maintenance.php:240
888
  msgid "Disable SQL Debug"
889
  msgstr ""
890
 
891
- #: ../admin/config/maintenance.php:243
892
  msgid "Deactivate the SQL output on top of each report."
893
  msgstr ""
894
 
895
- #: ../admin/config/maintenance.php:248
896
- msgid "Layout"
897
- msgstr ""
898
-
899
- #: ../admin/config/maintenance.php:251
900
  msgid ""
901
  "Are you sure you want to restore the default arrangement of your reports?"
902
  msgstr ""
903
 
904
- #: ../admin/config/maintenance.php:251
905
  msgid "No Panic Button"
906
  msgstr ""
907
 
908
- #: ../admin/config/maintenance.php:253
909
  msgid ""
910
  "Reset the default arrangement of your reports. Helpful when, for some "
911
  "reason, reports disappear from your panels or something doesn't look right "
912
  "in your views."
913
  msgstr ""
914
 
915
- #: ../admin/config/maintenance.php:257
916
  msgid "Data Maintenance"
917
  msgstr ""
918
 
919
- #: ../admin/config/maintenance.php:260
920
  msgid "Delete pageviews where"
921
  msgstr ""
922
 
923
- #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
924
  msgid "equals"
925
  msgstr ""
926
 
927
- #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
928
  msgid "is not equal to"
929
  msgstr ""
930
 
931
- #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
932
  msgid "contains"
933
  msgstr ""
934
 
935
- #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
936
  msgid "is included in"
937
  msgstr ""
938
 
939
- #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
940
  msgid "does not contain"
941
  msgstr ""
942
 
943
- #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
944
  msgid "starts with"
945
  msgstr ""
946
 
947
- #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
948
  msgid "ends with"
949
  msgstr ""
950
 
951
- #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
952
  msgid "sounds like"
953
  msgstr ""
954
 
955
- #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
956
  msgid "is greater than"
957
  msgstr ""
958
 
959
- #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
960
  msgid "is less than"
961
  msgstr ""
962
 
963
- #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
964
  msgid "matches"
965
  msgstr ""
966
 
967
- #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
968
  msgid "does not match"
969
  msgstr ""
970
 
971
- #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
972
  msgid "is empty"
973
  msgstr ""
974
 
975
- #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
976
  msgid "is not empty"
977
  msgstr ""
978
 
979
- #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
980
  #: ../admin/view/index.php:105
981
  msgid "Apply"
982
  msgstr ""
983
 
984
- #: ../admin/config/maintenance.php:291
985
  msgid ""
986
  "Are you sure you want to PERMANENTLY delete these records from your database?"
987
  msgstr ""
988
 
989
- #: ../admin/config/maintenance.php:298
990
  msgid ""
991
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
992
  "database?"
993
  msgstr ""
994
 
995
- #: ../admin/config/maintenance.php:298
996
  msgid "Delete All Records"
997
  msgstr ""
998
 
999
- #: ../admin/config/maintenance.php:301
1000
  msgid ""
1001
- "Erase all the information collected so far by Slimstat, including the "
1002
- "archive. This operation <strong>does not</strong> reset your settings."
 
 
1003
  msgstr ""
1004
 
1005
- #: ../admin/config/maintenance.php:307
1006
  msgid ""
1007
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1008
  "archive?"
1009
  msgstr ""
1010
 
1011
- #: ../admin/config/maintenance.php:307
1012
  msgid "Delete Archive"
1013
  msgstr ""
1014
 
1015
- #: ../admin/config/maintenance.php:310
1016
  msgid "Erase all the archived records. This operation cannot be undone."
1017
  msgstr ""
1018
 
1019
- #: ../admin/config/maintenance.php:316
1020
  msgid "Improve Performance"
1021
  msgstr ""
1022
 
1023
- #: ../admin/config/maintenance.php:320
1024
  msgid ""
1025
  "Please note that you will need about 30% more DB space to store the extra "
1026
  "information required."
1027
  msgstr ""
1028
 
1029
- #: ../admin/config/maintenance.php:324
1030
  msgid "Save DB Space"
1031
  msgstr ""
1032
 
1033
- #: ../admin/config/maintenance.php:327
1034
  msgid ""
1035
  "Please note that by removing table indexes, Slimstat's performance will be "
1036
  "affected."
1037
  msgstr ""
1038
 
1039
- #: ../admin/config/maintenance.php:334
1040
- msgid ""
1041
- "Hold on tight, we are about to import all your old data. Are you sure you "
1042
- "want to proceed?"
1043
- msgstr ""
1044
-
1045
- #: ../admin/config/maintenance.php:334
1046
- msgid "Import old data"
1047
- msgstr ""
1048
-
1049
- #: ../admin/config/maintenance.php:337
1050
- msgid ""
1051
- "Import all the records from the old table structure. No data will be deleted "
1052
- "from your database."
1053
- msgstr ""
1054
-
1055
- #: ../admin/config/maintenance.php:341
1056
  msgid "MaxMind IP to Country"
1057
  msgstr ""
1058
 
1059
- #: ../admin/config/maintenance.php:347
1060
  msgid ""
1061
  "Do you want to download and install the geolocation database from MaxMind's "
1062
  "server?"
1063
  msgstr ""
1064
 
1065
- #: ../admin/config/maintenance.php:347
1066
  msgid "Install GeoLite DB"
1067
  msgstr ""
1068
 
1069
- #: ../admin/config/maintenance.php:350
1070
  msgid "Do you want to uninstall the geolocation database?"
1071
  msgstr ""
1072
 
1073
- #: ../admin/config/maintenance.php:350
1074
  msgid "Uninstall GeoLite DB"
1075
  msgstr ""
1076
 
1077
- #: ../admin/config/maintenance.php:354
1078
  msgid ""
1079
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1080
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1084,38 +1067,38 @@ msgid ""
1084
  "enable this functionality."
1085
  msgstr ""
1086
 
1087
- #: ../admin/config/maintenance.php:359
1088
  msgid "Import and Export"
1089
  msgstr ""
1090
 
1091
- #: ../admin/config/maintenance.php:363
1092
  msgid ""
1093
  "Here below you can find the current configuration string for Slimstat. You "
1094
  "can update your settings by pasting a new string inside the text area and "
1095
  "clicking the Import button."
1096
  msgstr ""
1097
 
1098
- #: ../admin/config/maintenance.php:368
1099
  msgid "Import"
1100
  msgstr ""
1101
 
1102
- #: ../admin/config/maintenance.php:369
1103
  msgid "Are you sure you want to OVERWRITE your current settings?"
1104
  msgstr ""
1105
 
1106
- #: ../admin/config/maintenance.php:374
1107
  msgid "Database Information"
1108
  msgstr ""
1109
 
1110
- #: ../admin/config/maintenance.php:377
1111
  msgid "Engine"
1112
  msgstr ""
1113
 
1114
- #: ../admin/config/maintenance.php:381
1115
  msgid "switch to InnoDB"
1116
  msgstr ""
1117
 
1118
- #: ../admin/config/maintenance.php:392
1119
  msgid "records"
1120
  msgstr ""
1121
 
@@ -1180,11 +1163,11 @@ msgstr ""
1180
  msgid "Load"
1181
  msgstr ""
1182
 
1183
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1184
  msgid "Today"
1185
  msgstr ""
1186
 
1187
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1188
  msgid "Yesterday"
1189
  msgstr ""
1190
 
@@ -1247,11 +1230,11 @@ msgid ""
1247
  "country of origin."
1248
  msgstr ""
1249
 
1250
- #: ../admin/view/layout.php:40
1251
  msgid "Customize and organize your reports"
1252
  msgstr ""
1253
 
1254
- #: ../admin/view/layout.php:41
1255
  msgid ""
1256
  "Drag and drop report placeholders from one container to another, to "
1257
  "customize the information you want to see right away when you open Slimstat. "
@@ -1263,11 +1246,11 @@ msgid ""
1263
  "(Screen Options tab)."
1264
  msgstr ""
1265
 
1266
- #: ../admin/view/layout.php:53
1267
  msgid "Clone"
1268
  msgstr ""
1269
 
1270
- #: ../admin/view/layout.php:57
1271
  msgid "Delete"
1272
  msgstr ""
1273
 
@@ -1287,8 +1270,8 @@ msgstr ""
1287
  msgid "Syndication Reader"
1288
  msgstr ""
1289
 
1290
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1291
- #: ../admin/view/wp-slimstat-reports.php:1706
1292
  msgid "No data to display"
1293
  msgstr ""
1294
 
@@ -1297,18 +1280,19 @@ msgid "Date and Time"
1297
  msgstr ""
1298
 
1299
  # Unknown
1300
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1301
- #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1302
  msgid "c-"
1303
  msgstr "Unknown"
1304
 
1305
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1306
- #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1307
  msgid "Originating IP"
1308
  msgstr ""
1309
 
1310
- #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1311
- #: ../admin/view/wp-slimstat-reports.php:1183
 
1312
  msgid "Open this URL in a new window"
1313
  msgstr ""
1314
 
@@ -1316,58 +1300,58 @@ msgstr ""
1316
  msgid "Local search results page"
1317
  msgstr ""
1318
 
1319
- #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1320
- #: ../admin/view/wp-slimstat-reports.php:257
1321
- #: ../admin/view/wp-slimstat-reports.php:266
1322
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1323
  msgid "Search Terms"
1324
  msgstr ""
1325
 
1326
- #: ../admin/view/right-now.php:162
1327
  msgid "Server Latency and Page Speed in milliseconds"
1328
  msgstr ""
1329
 
1330
- #: ../admin/view/right-now.php:162
1331
  msgid "SL"
1332
  msgstr ""
1333
 
1334
- #: ../admin/view/right-now.php:162
1335
  msgid "PS"
1336
  msgstr ""
1337
 
1338
- #: ../admin/view/right-now.php:169
1339
- msgid "Time spent on this page in seconds"
1340
  msgstr ""
1341
 
1342
- #: ../admin/view/right-now.php:179
1343
  msgid "Open this referrer in a new window"
1344
  msgstr ""
1345
 
1346
- #: ../admin/view/right-now.php:180
1347
  msgid "Open this outbound link in a new window"
1348
  msgstr ""
1349
 
1350
- #: ../admin/view/right-now.php:181
1351
  msgid "Content Type"
1352
  msgstr ""
1353
 
1354
- #: ../admin/view/right-now.php:184
1355
  msgid "Delete this pageview"
1356
  msgstr ""
1357
 
1358
- #: ../admin/view/right-now.php:195
1359
  msgid "User Logged In"
1360
  msgstr ""
1361
 
1362
- #: ../admin/view/right-now.php:205
1363
  msgid "User Logged Out"
1364
  msgstr ""
1365
 
1366
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1367
  msgid "Browser"
1368
  msgstr ""
1369
 
1370
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1371
  msgid "Country Code"
1372
  msgstr ""
1373
 
@@ -1375,29 +1359,29 @@ msgstr ""
1375
  msgid "IP Address"
1376
  msgstr ""
1377
 
1378
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1379
  msgid "Language Code"
1380
  msgstr ""
1381
 
1382
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1383
- #: ../admin/wp-slimstat-admin.php:867
1384
  msgid "Operating System"
1385
  msgstr ""
1386
 
1387
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1388
- #: ../admin/wp-slimstat-admin.php:868
1389
  msgid "Permalink"
1390
  msgstr ""
1391
 
1392
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1393
  msgid "Referer"
1394
  msgstr ""
1395
 
1396
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1397
- msgid "Visitor's Name"
1398
  msgstr ""
1399
 
1400
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1401
  msgid "Outbound Link"
1402
  msgstr ""
1403
 
@@ -1410,19 +1394,19 @@ msgid "-- Advanced filters --"
1410
  msgstr ""
1411
 
1412
  #: ../admin/view/wp-slimstat-db.php:52
1413
- #: ../admin/view/wp-slimstat-reports.php:373
1414
  msgid "Browser Capabilities"
1415
  msgstr ""
1416
 
1417
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1418
  msgid "Browser Version"
1419
  msgstr ""
1420
 
1421
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1422
  msgid "Browser Type"
1423
  msgstr ""
1424
 
1425
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1426
  msgid "User Agent"
1427
  msgstr ""
1428
 
@@ -1434,15 +1418,15 @@ msgstr ""
1434
  msgid "Server Latency"
1435
  msgstr ""
1436
 
1437
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1438
  msgid "Post Author"
1439
  msgstr ""
1440
 
1441
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1442
  msgid "Post Category ID"
1443
  msgstr ""
1444
 
1445
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1446
  msgid "Resource Content Type"
1447
  msgstr ""
1448
 
@@ -1462,7 +1446,7 @@ msgstr ""
1462
  msgid "Viewport Size"
1463
  msgstr ""
1464
 
1465
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1466
  msgid "Visit ID"
1467
  msgstr ""
1468
 
@@ -1507,7 +1491,7 @@ msgid "Event ID"
1507
  msgstr ""
1508
 
1509
  #: ../admin/view/wp-slimstat-db.php:96
1510
- #: ../admin/view/wp-slimstat-reports.php:1720
1511
  msgid "Type"
1512
  msgstr ""
1513
 
@@ -1527,117 +1511,71 @@ msgstr ""
1527
  msgid "Offset"
1528
  msgstr ""
1529
 
1530
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1531
- #: ../wp-slimstat.php:1793
1532
- msgid "Access Log"
1533
- msgstr ""
1534
-
1535
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1536
- #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1537
- msgid "Overview"
1538
- msgstr ""
1539
-
1540
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1541
- #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1542
- msgid "Audience"
1543
- msgstr ""
1544
-
1545
- #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1546
- #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1547
- msgid "Site Analysis"
1548
- msgstr ""
1549
-
1550
- #: ../admin/view/wp-slimstat-reports.php:25
1551
- #: ../admin/view/wp-slimstat-reports.php:516
1552
- #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1553
- #: ../wp-slimstat.php:1797
1554
- msgid "Traffic Sources"
1555
- msgstr ""
1556
-
1557
- #: ../admin/view/wp-slimstat-reports.php:26
1558
- #: ../admin/view/wp-slimstat-reports.php:1364
1559
- #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1560
- #: ../wp-slimstat.php:1798
1561
- msgid "Geolocation"
1562
- msgstr ""
1563
-
1564
- #: ../admin/view/wp-slimstat-reports.php:27
1565
- msgid "WordPress Dashboard"
1566
- msgstr ""
1567
-
1568
- #: ../admin/view/wp-slimstat-reports.php:28
1569
- msgid "Inactive Reports"
1570
- msgstr ""
1571
-
1572
- #: ../admin/view/wp-slimstat-reports.php:77
1573
  msgid "Chart controls"
1574
  msgstr ""
1575
 
1576
- #: ../admin/view/wp-slimstat-reports.php:77
1577
  msgid "Use your mouse wheel to zoom in and out"
1578
  msgstr ""
1579
 
1580
- #: ../admin/view/wp-slimstat-reports.php:77
1581
  msgid "While zooming in, drag the chart to move to a different area"
1582
  msgstr ""
1583
 
1584
- #: ../admin/view/wp-slimstat-reports.php:80
1585
- msgid "Social Sharing Analytics"
1586
- msgstr ""
1587
-
1588
- #: ../admin/view/wp-slimstat-reports.php:87
1589
  msgid "Visitors Activity"
1590
  msgstr ""
1591
 
1592
- #: ../admin/view/wp-slimstat-reports.php:96
1593
  msgid "Color codes"
1594
  msgstr ""
1595
 
1596
- #: ../admin/view/wp-slimstat-reports.php:96
1597
  msgid "From search result page"
1598
  msgstr ""
1599
 
1600
- #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
1601
  msgid "Known Visitor"
1602
  msgstr ""
1603
 
1604
- #: ../admin/view/wp-slimstat-reports.php:96
1605
  msgid "Known Users"
1606
  msgstr ""
1607
 
1608
- #: ../admin/view/wp-slimstat-reports.php:96
1609
  msgid "Other Humans"
1610
  msgstr ""
1611
 
1612
- #: ../admin/view/wp-slimstat-reports.php:96
1613
  msgid "Bot or Crawler"
1614
  msgstr ""
1615
 
1616
- #: ../admin/view/wp-slimstat-reports.php:118
1617
  msgid "About Slimstat"
1618
  msgstr ""
1619
 
1620
- #: ../admin/view/wp-slimstat-reports.php:127
1621
  msgid "Traffic at a Glance"
1622
  msgstr ""
1623
 
1624
- #: ../admin/view/wp-slimstat-reports.php:137
1625
  msgid "Currently Online"
1626
  msgstr ""
1627
 
1628
- #: ../admin/view/wp-slimstat-reports.php:150
1629
  msgid "Recent Search Terms"
1630
  msgstr ""
1631
 
1632
- #: ../admin/view/wp-slimstat-reports.php:160
1633
  msgid "Keywords used by your visitors to find your website on a search engine."
1634
  msgstr ""
1635
 
1636
- #: ../admin/view/wp-slimstat-reports.php:163
1637
  msgid "Top Web Pages"
1638
  msgstr ""
1639
 
1640
- #: ../admin/view/wp-slimstat-reports.php:174
1641
  msgid ""
1642
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1643
  "site, including posts, products, categories, and so on. You can set the "
@@ -1646,91 +1584,95 @@ msgid ""
1646
  "have."
1647
  msgstr ""
1648
 
1649
- #: ../admin/view/wp-slimstat-reports.php:177
1650
- msgid "Top Traffic Sources"
1651
  msgstr ""
1652
 
1653
- #: ../admin/view/wp-slimstat-reports.php:189
1654
  msgid "Top Known Visitors"
1655
  msgstr ""
1656
 
1657
- #: ../admin/view/wp-slimstat-reports.php:200
1658
  msgid "Top Search Terms"
1659
  msgstr ""
1660
 
1661
- #: ../admin/view/wp-slimstat-reports.php:211
1662
  msgid "Top Countries"
1663
  msgstr ""
1664
 
1665
- #: ../admin/view/wp-slimstat-reports.php:220
1666
  msgid ""
1667
  "You can configure Slimstat to ignore a specific Country by setting the "
1668
  "corresponding filter under Settings > Slimstat > Filters."
1669
  msgstr ""
1670
 
1671
- #: ../admin/view/wp-slimstat-reports.php:223
1672
  msgid "Rankings"
1673
  msgstr ""
1674
 
1675
- #: ../admin/view/wp-slimstat-reports.php:227
1676
  msgid ""
1677
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1678
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1679
  "set above don't apply to this report."
1680
  msgstr ""
1681
 
1682
- #: ../admin/view/wp-slimstat-reports.php:230
1683
  msgid "Top Language Families"
1684
  msgstr ""
1685
 
1686
- #: ../admin/view/wp-slimstat-reports.php:243
1687
  msgid "Users Currently Online"
1688
  msgstr ""
1689
 
1690
- #: ../admin/view/wp-slimstat-reports.php:254
1691
  msgid ""
1692
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1693
  "Slimstat leverages this information to identify returning visitors. Please "
1694
  "note that visitors also include registered users."
1695
  msgstr ""
1696
 
1697
- #: ../admin/view/wp-slimstat-reports.php:267
1698
  msgid "Unique Terms"
1699
  msgstr ""
1700
 
1701
- #: ../admin/view/wp-slimstat-reports.php:276
 
 
 
 
1702
  msgid "Human Visits"
1703
  msgstr ""
1704
 
1705
- #: ../admin/view/wp-slimstat-reports.php:285
1706
- #: ../admin/view/wp-slimstat-reports.php:1431
1707
  msgid "Visits"
1708
  msgstr ""
1709
 
1710
- #: ../admin/view/wp-slimstat-reports.php:295
1711
  msgid "Audience Overview"
1712
  msgstr ""
1713
 
1714
- #: ../admin/view/wp-slimstat-reports.php:302
1715
  msgid ""
1716
  "Where not otherwise specified, the metrics in this report are referred to "
1717
  "human visitors."
1718
  msgstr ""
1719
 
1720
- #: ../admin/view/wp-slimstat-reports.php:305
1721
  msgid "Top Languages"
1722
  msgstr ""
1723
 
1724
- #: ../admin/view/wp-slimstat-reports.php:316
1725
  msgid "Top Browsers"
1726
  msgstr ""
1727
 
1728
- #: ../admin/view/wp-slimstat-reports.php:327
1729
  msgid "Top Service Providers"
1730
  msgstr ""
1731
 
1732
- #: ../admin/view/wp-slimstat-reports.php:336
1733
- #: ../admin/view/wp-slimstat-reports.php:348
1734
  msgid ""
1735
  "Internet Service Provider: a company which provides other companies or "
1736
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -1738,445 +1680,455 @@ msgid ""
1738
  "by setting the corresponding filter under Settings > Slimstat > Filters."
1739
  msgstr ""
1740
 
1741
- #: ../admin/view/wp-slimstat-reports.php:339
1742
  msgid "Top Operating Systems"
1743
  msgstr ""
1744
 
1745
- #: ../admin/view/wp-slimstat-reports.php:351
1746
  msgid "Top Screen Resolutions"
1747
  msgstr ""
1748
 
1749
- #: ../admin/view/wp-slimstat-reports.php:362
1750
  msgid "Top Viewport Sizes"
1751
  msgstr ""
1752
 
1753
- #: ../admin/view/wp-slimstat-reports.php:382
1754
  msgid "Visit Duration"
1755
  msgstr ""
1756
 
1757
- #: ../admin/view/wp-slimstat-reports.php:389
1758
  msgid ""
1759
  "All values represent the percentages of pageviews within the corresponding "
1760
  "time range."
1761
  msgstr ""
1762
 
1763
- #: ../admin/view/wp-slimstat-reports.php:392
1764
  msgid "Recent Countries"
1765
  msgstr ""
1766
 
1767
- #: ../admin/view/wp-slimstat-reports.php:403
1768
  msgid "Recent Viewport Sizes"
1769
  msgstr ""
1770
 
1771
- #: ../admin/view/wp-slimstat-reports.php:414
1772
  msgid "Recent Operating Systems"
1773
  msgstr ""
1774
 
1775
- #: ../admin/view/wp-slimstat-reports.php:425
1776
  msgid "Recent Browsers"
1777
  msgstr ""
1778
 
1779
- #: ../admin/view/wp-slimstat-reports.php:436
1780
  msgid "Recent Languages"
1781
  msgstr ""
1782
 
1783
- #: ../admin/view/wp-slimstat-reports.php:447
1784
  msgid "Top Browser Families"
1785
  msgstr ""
1786
 
1787
- #: ../admin/view/wp-slimstat-reports.php:456
1788
  msgid ""
1789
  "This report shows you what user agent families (no version considered) are "
1790
  "popular among your visitors."
1791
  msgstr ""
1792
 
1793
- #: ../admin/view/wp-slimstat-reports.php:459
1794
  msgid "Top OS Families"
1795
  msgstr ""
1796
 
1797
- #: ../admin/view/wp-slimstat-reports.php:470
1798
  msgid ""
1799
  "This report shows you what operating system families (no version considered) "
1800
  "are popular among your visitors."
1801
  msgstr ""
1802
 
1803
- #: ../admin/view/wp-slimstat-reports.php:473
1804
  msgid "Recent Users"
1805
  msgstr ""
1806
 
1807
- #: ../admin/view/wp-slimstat-reports.php:485
1808
  msgid "Top Users"
1809
  msgstr ""
1810
 
1811
- #: ../admin/view/wp-slimstat-reports.php:497
1812
- #: ../admin/view/wp-slimstat-reports.php:506
1813
  msgid "Users"
1814
  msgstr ""
1815
 
1816
- #: ../admin/view/wp-slimstat-reports.php:507
1817
  msgid "Unique Users"
1818
  msgstr ""
1819
 
1820
- #: ../admin/view/wp-slimstat-reports.php:525
 
 
 
 
 
1821
  msgid "Domains"
1822
  msgstr ""
1823
 
1824
- #: ../admin/view/wp-slimstat-reports.php:535
1825
  msgid "Traffic Summary"
1826
  msgstr ""
1827
 
1828
- #: ../admin/view/wp-slimstat-reports.php:544
1829
  msgid "Top Referring Search Engines"
1830
  msgstr ""
1831
 
1832
- #: ../admin/view/wp-slimstat-reports.php:571
1833
  msgid "Recent Outbound Links"
1834
  msgstr ""
1835
 
1836
- #: ../admin/view/wp-slimstat-reports.php:583
1837
  msgid "Recent Posts"
1838
  msgstr ""
1839
 
1840
- #: ../admin/view/wp-slimstat-reports.php:611
1841
  msgid "Recent Feeds"
1842
  msgstr ""
1843
 
1844
- #: ../admin/view/wp-slimstat-reports.php:623
1845
  msgid "Recent Pages Not Found"
1846
  msgstr ""
1847
 
1848
- #: ../admin/view/wp-slimstat-reports.php:635
1849
  msgid "Recent Internal Searches"
1850
  msgstr ""
1851
 
1852
- #: ../admin/view/wp-slimstat-reports.php:645
1853
  msgid "Searches performed using WordPress' built-in search functionality."
1854
  msgstr ""
1855
 
1856
- #: ../admin/view/wp-slimstat-reports.php:648
1857
  msgid "Top Categories"
1858
  msgstr ""
1859
 
1860
- #: ../admin/view/wp-slimstat-reports.php:661
1861
  msgid "Top Downloads"
1862
  msgstr ""
1863
 
1864
- #: ../admin/view/wp-slimstat-reports.php:672
1865
  msgid ""
1866
  "You can configure Slimstat to track specific file extensions as downloads."
1867
  msgstr ""
1868
 
1869
- #: ../admin/view/wp-slimstat-reports.php:675
1870
  msgid "Recent Events"
1871
  msgstr ""
1872
 
1873
- #: ../admin/view/wp-slimstat-reports.php:684
1874
- #: ../admin/view/wp-slimstat-reports.php:708
1875
  msgid ""
1876
  "This report lists any <em>event</em> occurred on your website. Please refer "
1877
  "to the FAQ for more information on how to use this functionality."
1878
  msgstr ""
1879
 
1880
- #: ../admin/view/wp-slimstat-reports.php:687
1881
  msgid "Top Posts"
1882
  msgstr ""
1883
 
1884
- #: ../admin/view/wp-slimstat-reports.php:699
1885
  msgid "Top Events"
1886
  msgstr ""
1887
 
1888
- #: ../admin/view/wp-slimstat-reports.php:711
1889
  msgid "Top Internal Searches"
1890
  msgstr ""
1891
 
1892
- #: ../admin/view/wp-slimstat-reports.php:723
1893
  msgid "Recent Categories"
1894
  msgstr ""
1895
 
1896
- #: ../admin/view/wp-slimstat-reports.php:735
1897
  msgid "Top Pages Not Found"
1898
  msgstr ""
1899
 
1900
- #: ../admin/view/wp-slimstat-reports.php:747
1901
  msgid "Top Authors"
1902
  msgstr ""
1903
 
1904
- #: ../admin/view/wp-slimstat-reports.php:758
1905
  msgid "Top Tags"
1906
  msgstr ""
1907
 
1908
- #: ../admin/view/wp-slimstat-reports.php:770
1909
  msgid "Recent Downloads"
1910
  msgstr ""
1911
 
1912
- #: ../admin/view/wp-slimstat-reports.php:782
1913
  msgid "Top Outbound Links"
1914
  msgstr ""
1915
 
1916
- #: ../admin/view/wp-slimstat-reports.php:794
1917
  msgid "Your Website"
1918
  msgstr ""
1919
 
1920
- #: ../admin/view/wp-slimstat-reports.php:801
1921
  msgid ""
1922
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
1923
  "this report is not affected by the filters set here above."
1924
  msgstr ""
1925
 
1926
- #: ../admin/view/wp-slimstat-reports.php:804
1927
  msgid "Top Bounce Pages"
1928
  msgstr ""
1929
 
1930
- #: ../admin/view/wp-slimstat-reports.php:817
1931
  msgid "Top Exit Pages"
1932
  msgstr ""
1933
 
1934
- #: ../admin/view/wp-slimstat-reports.php:830
1935
  msgid "Top Entry Pages"
1936
  msgstr ""
1937
 
1938
- #: ../admin/view/wp-slimstat-reports.php:843
1939
- #: ../admin/view/wp-slimstat-reports.php:852
1940
  msgid "Outbound Links"
1941
  msgstr ""
1942
 
1943
- #: ../admin/view/wp-slimstat-reports.php:853
1944
  msgid "Unique Outbound"
1945
  msgstr ""
1946
 
1947
- #: ../admin/view/wp-slimstat-reports.php:862
1948
  msgid "World Map"
1949
  msgstr ""
1950
 
1951
- #: ../admin/view/wp-slimstat-reports.php:944
1952
  msgid "Refresh"
1953
  msgstr ""
1954
 
1955
- #: ../admin/view/wp-slimstat-reports.php:981
1956
  #, php-format
1957
  msgid "Results %s - %s of %s"
1958
  msgstr ""
1959
 
1960
- #: ../admin/view/wp-slimstat-reports.php:983
1961
  msgid "Refresh in"
1962
  msgstr ""
1963
 
1964
- #: ../admin/view/wp-slimstat-reports.php:1076
1965
  msgid "Category ID"
1966
  msgstr ""
1967
 
1968
- #: ../admin/view/wp-slimstat-reports.php:1081
1969
- #: ../admin/view/wp-slimstat-reports.php:1096
1970
  #: ../admin/view/wp-slimstat-reports.php:1102
1971
  msgid "Code"
1972
  msgstr ""
1973
 
1974
- #: ../admin/view/wp-slimstat-reports.php:1097
1975
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
1976
  msgid "l-"
1977
  msgstr "Unknown"
1978
 
1979
- #: ../admin/view/wp-slimstat-reports.php:1114
1980
  msgid "URL"
1981
  msgstr ""
1982
 
1983
- #: ../admin/view/wp-slimstat-reports.php:1127
1984
  msgid "Referrer"
1985
  msgstr ""
1986
 
1987
- #: ../admin/view/wp-slimstat-reports.php:1168
1988
- #: ../admin/view/wp-slimstat-reports.php:1415
1989
- #: ../admin/view/wp-slimstat-reports.php:1471
1990
- #: ../admin/view/wp-slimstat-reports.php:1477
1991
- #: ../admin/view/wp-slimstat-reports.php:1483
1992
- #: ../admin/view/wp-slimstat-reports.php:1489
1993
- #: ../admin/view/wp-slimstat-reports.php:1495
1994
- #: ../admin/view/wp-slimstat-reports.php:1501
1995
- #: ../admin/view/wp-slimstat-reports.php:1507
1996
- #: ../admin/view/wp-slimstat-reports.php:1727
1997
  msgid "Hits"
1998
  msgstr ""
1999
 
2000
- #: ../admin/view/wp-slimstat-reports.php:1342
2001
  msgid "Dataset Size"
2002
  msgstr ""
2003
 
2004
- #: ../admin/view/wp-slimstat-reports.php:1344
2005
  msgid "Total number of records stored in the database."
2006
  msgstr ""
2007
 
2008
- #: ../admin/view/wp-slimstat-reports.php:1346
2009
  msgid "DB Size"
2010
  msgstr ""
2011
 
2012
- #: ../admin/view/wp-slimstat-reports.php:1349
2013
  msgid "Tracking Enabled"
2014
  msgstr ""
2015
 
2016
- #: ../admin/view/wp-slimstat-reports.php:1352
2017
  msgid "Javascript Mode"
2018
  msgstr ""
2019
 
2020
- #: ../admin/view/wp-slimstat-reports.php:1355
2021
  msgid "Tracking Browser Caps"
2022
  msgstr ""
2023
 
2024
- #: ../admin/view/wp-slimstat-reports.php:1358
2025
  msgid "Auto purge"
2026
  msgstr ""
2027
 
2028
- #: ../admin/view/wp-slimstat-reports.php:1361
2029
  msgid "Oldest pageview"
2030
  msgstr ""
2031
 
2032
- #: ../admin/view/wp-slimstat-reports.php:1362
2033
  msgid "No visits"
2034
  msgstr ""
2035
 
2036
- #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
2037
  msgid "Date when the MaxMind Geolocation database was last updated."
2038
  msgstr ""
2039
 
2040
- #: ../admin/view/wp-slimstat-reports.php:1377
2041
- #: ../admin/view/wp-slimstat-reports.php:1535
2042
  msgid ""
2043
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2044
  "the tracking code is executed."
2045
  msgstr ""
2046
 
2047
- #: ../admin/view/wp-slimstat-reports.php:1379
2048
  msgid "Days in Range"
2049
  msgstr ""
2050
 
2051
- #: ../admin/view/wp-slimstat-reports.php:1382
2052
  msgid "Average Daily Pageviews"
2053
  msgstr ""
2054
 
2055
- #: ../admin/view/wp-slimstat-reports.php:1384
2056
  msgid ""
2057
  "How many pages have been visited on average every day during the current "
2058
  "period."
2059
  msgstr ""
2060
 
2061
- #: ../admin/view/wp-slimstat-reports.php:1386
2062
  msgid "From Search Results"
2063
  msgstr ""
2064
 
2065
- #: ../admin/view/wp-slimstat-reports.php:1388
2066
  msgid ""
2067
  "Visitors who landed on your site after searching for a keyword on Google, "
2068
  "Yahoo, etc."
2069
  msgstr ""
2070
 
2071
- #: ../admin/view/wp-slimstat-reports.php:1392
2072
  msgid ""
2073
  "Used to differentiate between multiple requests to download a file from one "
2074
  "internet address (IP) and requests originating from many distinct addresses"
2075
  msgstr ""
2076
 
2077
- #: ../admin/view/wp-slimstat-reports.php:1394
2078
  msgid "Last 30 minutes"
2079
  msgstr ""
2080
 
2081
- #: ../admin/view/wp-slimstat-reports.php:1433
2082
  msgid ""
2083
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2084
  "multiple times if they perform multiple visits."
2085
  msgstr ""
2086
 
2087
- #: ../admin/view/wp-slimstat-reports.php:1437
2088
  msgid "It includes only traffic generated by human visitors."
2089
  msgstr ""
2090
 
2091
- #: ../admin/view/wp-slimstat-reports.php:1439
2092
  msgid "Bounce rate"
2093
  msgstr ""
2094
 
2095
- #: ../admin/view/wp-slimstat-reports.php:1441
2096
  msgid ""
2097
  "Percentage of single-page visits, i.e. visits in which the person left your "
2098
  "site from the entrance page."
2099
  msgstr ""
2100
 
2101
- #: ../admin/view/wp-slimstat-reports.php:1443
2102
  msgid "Known visitors"
2103
  msgstr ""
2104
 
2105
- #: ../admin/view/wp-slimstat-reports.php:1445
2106
  msgid "Visitors who had previously left a comment on your blog."
2107
  msgstr ""
2108
 
2109
- #: ../admin/view/wp-slimstat-reports.php:1447
2110
  msgid "New visitors"
2111
  msgstr ""
2112
 
2113
- #: ../admin/view/wp-slimstat-reports.php:1449
2114
  msgid "Human users who visited your site only once."
2115
  msgstr ""
2116
 
2117
- #: ../admin/view/wp-slimstat-reports.php:1451
2118
  msgid "Bots"
2119
  msgstr ""
2120
 
2121
- #: ../admin/view/wp-slimstat-reports.php:1454
2122
  msgid "Pageviews per visit"
2123
  msgstr ""
2124
 
2125
- #: ../admin/view/wp-slimstat-reports.php:1457
2126
  msgid "Longest visit"
2127
  msgstr ""
2128
 
2129
- #: ../admin/view/wp-slimstat-reports.php:1458
2130
  msgid "hits"
2131
  msgstr ""
2132
 
2133
- #: ../admin/view/wp-slimstat-reports.php:1469
2134
  msgid "0 - 30 seconds"
2135
  msgstr ""
2136
 
2137
- #: ../admin/view/wp-slimstat-reports.php:1475
2138
  msgid "31 - 60 seconds"
2139
  msgstr ""
2140
 
2141
- #: ../admin/view/wp-slimstat-reports.php:1481
2142
  msgid "1 - 3 minutes"
2143
  msgstr ""
2144
 
2145
- #: ../admin/view/wp-slimstat-reports.php:1487
2146
  msgid "3 - 5 minutes"
2147
  msgstr ""
2148
 
2149
- #: ../admin/view/wp-slimstat-reports.php:1493
2150
  msgid "5 - 7 minutes"
2151
  msgstr ""
2152
 
2153
- #: ../admin/view/wp-slimstat-reports.php:1499
2154
  msgid "7 - 10 minutes"
2155
  msgstr ""
2156
 
2157
- #: ../admin/view/wp-slimstat-reports.php:1505
2158
  msgid "More than 10 minutes"
2159
  msgstr ""
2160
 
2161
- #: ../admin/view/wp-slimstat-reports.php:1517
2162
  msgid "Average visit duration"
2163
  msgstr ""
2164
 
2165
- #: ../admin/view/wp-slimstat-reports.php:1537
2166
  msgid "Unique Referrers"
2167
  msgstr ""
2168
 
2169
- #: ../admin/view/wp-slimstat-reports.php:1539
2170
  msgid ""
2171
  "A referrer (or referring site) is the site that a visitor previously visited "
2172
  "before following a link to your site."
2173
  msgstr ""
2174
 
2175
- #: ../admin/view/wp-slimstat-reports.php:1541
2176
  msgid "Direct Pageviews"
2177
  msgstr ""
2178
 
2179
- #: ../admin/view/wp-slimstat-reports.php:1543
2180
  msgid ""
2181
  "Visitors who visited the site by typing the URL directly into their browser. "
2182
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2184,21 +2136,21 @@ msgid ""
2184
  "documents that don't include tracking variables."
2185
  msgstr ""
2186
 
2187
- #: ../admin/view/wp-slimstat-reports.php:1545
2188
  msgid "From a search result"
2189
  msgstr ""
2190
 
2191
- #: ../admin/view/wp-slimstat-reports.php:1547
2192
  msgid ""
2193
  "Visitors who came to your site via searches on Google or some other search "
2194
  "engine."
2195
  msgstr ""
2196
 
2197
- #: ../admin/view/wp-slimstat-reports.php:1549
2198
  msgid "Unique Landing Pages"
2199
  msgstr ""
2200
 
2201
- #: ../admin/view/wp-slimstat-reports.php:1551
2202
  msgid ""
2203
  "The first page that a user views during a session. This is also known as the "
2204
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2206,1360 +2158,1371 @@ msgid ""
2206
  "a landing page."
2207
  msgstr ""
2208
 
2209
- #: ../admin/view/wp-slimstat-reports.php:1553
2210
  msgid "Bounce Pages"
2211
  msgstr ""
2212
 
2213
- #: ../admin/view/wp-slimstat-reports.php:1555
2214
  msgid "Number of single page visits to your site over the selected period."
2215
  msgstr ""
2216
 
2217
- #: ../admin/view/wp-slimstat-reports.php:1557
2218
  msgid "New Visitors Rate"
2219
  msgstr ""
2220
 
2221
- #: ../admin/view/wp-slimstat-reports.php:1559
2222
  msgid ""
2223
  "Percentage of single page visits, i.e. visits in which the person left your "
2224
  "site from the entrance page."
2225
  msgstr ""
2226
 
2227
- #: ../admin/view/wp-slimstat-reports.php:1561
2228
  msgid "Currently from search engines"
2229
  msgstr ""
2230
 
2231
- #: ../admin/view/wp-slimstat-reports.php:1563
2232
  msgid ""
2233
  "Visitors who visited the site in the last 5 minutes coming from a search "
2234
  "engine."
2235
  msgstr ""
2236
 
2237
- #: ../admin/view/wp-slimstat-reports.php:1633
2238
  msgid "Number of pages in your site included in Google's index."
2239
  msgstr ""
2240
 
2241
- #: ../admin/view/wp-slimstat-reports.php:1634
2242
  msgid "Google Index"
2243
  msgstr ""
2244
 
2245
- #: ../admin/view/wp-slimstat-reports.php:1635
2246
  msgid "Number of pages, according to Google, that link back to your site."
2247
  msgstr ""
2248
 
2249
- #: ../admin/view/wp-slimstat-reports.php:1636
2250
  msgid "Google Backlinks"
2251
  msgstr ""
2252
 
2253
- #: ../admin/view/wp-slimstat-reports.php:1637
2254
  msgid ""
2255
  "How many times the Facebook Like button has been approximately clicked on "
2256
  "your site."
2257
  msgstr ""
2258
 
2259
- #: ../admin/view/wp-slimstat-reports.php:1638
2260
  msgid "Facebook Likes"
2261
  msgstr ""
2262
 
2263
- #: ../admin/view/wp-slimstat-reports.php:1639
2264
  msgid ""
2265
  "How many times your site has been shared by someone on the social network."
2266
  msgstr ""
2267
 
2268
- #: ../admin/view/wp-slimstat-reports.php:1640
2269
  msgid "Facebook Shares"
2270
  msgstr ""
2271
 
2272
- #: ../admin/view/wp-slimstat-reports.php:1641
2273
  msgid "How many times links to your website have been clicked on Facebook."
2274
  msgstr ""
2275
 
2276
- #: ../admin/view/wp-slimstat-reports.php:1642
2277
  msgid "Facebook Clicks"
2278
  msgstr ""
2279
 
2280
- #: ../admin/view/wp-slimstat-reports.php:1643
2281
  msgid ""
2282
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2283
  "traffic data."
2284
  msgstr ""
2285
 
2286
- #: ../admin/view/wp-slimstat-reports.php:1644
2287
  msgid "Alexa World Rank"
2288
  msgstr ""
2289
 
2290
- #: ../admin/view/wp-slimstat-reports.php:1645
2291
  msgid "Alexa Country Rank"
2292
  msgstr ""
2293
 
2294
- #: ../admin/view/wp-slimstat-reports.php:1646
2295
  msgid "Alexa Popularity"
2296
  msgstr ""
2297
 
2298
- #: ../admin/view/wp-slimstat-reports.php:1657
2299
  msgid "Content Items"
2300
  msgstr ""
2301
 
2302
- #: ../admin/view/wp-slimstat-reports.php:1659
2303
  msgid ""
2304
  "This value includes not only posts, but also custom post types, regardless "
2305
  "of their status"
2306
  msgstr ""
2307
 
2308
- #: ../admin/view/wp-slimstat-reports.php:1661
2309
  msgid "Posts"
2310
  msgstr ""
2311
 
2312
- #: ../admin/view/wp-slimstat-reports.php:1664
2313
  msgid "Pages"
2314
  msgstr ""
2315
 
2316
- #: ../admin/view/wp-slimstat-reports.php:1667
2317
  msgid "Attachments"
2318
  msgstr ""
2319
 
2320
- #: ../admin/view/wp-slimstat-reports.php:1670
2321
  msgid "Revisions"
2322
  msgstr ""
2323
 
2324
- #: ../admin/view/wp-slimstat-reports.php:1673
2325
  msgid "Comments"
2326
  msgstr ""
2327
 
2328
- #: ../admin/view/wp-slimstat-reports.php:1676
2329
  msgid "Avg Comments per Post"
2330
  msgstr ""
2331
 
2332
- #: ../admin/view/wp-slimstat-reports.php:1679
2333
  msgid "Avg Server Latency"
2334
  msgstr ""
2335
 
2336
- #: ../admin/view/wp-slimstat-reports.php:1681
2337
  msgid ""
2338
  "Latency is the amount of time it takes for the host server to receive and "
2339
  "process a request for a page object. The amount of latency depends largely "
2340
  "on how far away the user is from the server."
2341
  msgstr ""
2342
 
2343
- #: ../admin/view/wp-slimstat-reports.php:1724
2344
  msgid "Coordinates"
2345
  msgstr ""
2346
 
2347
- #: ../admin/view/wp-slimstat-reports.php:1724
2348
  msgid "Date"
2349
  msgstr ""
2350
 
2351
- #: ../admin/view/wp-slimstat-reports.php:1761
2352
- msgid "Error contacting the GetSocial endpoint."
2353
- msgstr ""
2354
-
2355
- #: ../admin/view/wp-slimstat-reports.php:1769
2356
- msgid "Error decoding the GetSocial payload."
2357
- msgstr ""
2358
-
2359
- #: ../admin/view/wp-slimstat-reports.php:1801
2360
- msgid ""
2361
- "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2362
- ">social media metrics and identify your top performing posts.<br/> <a "
2363
- "class='button-ajax' title='Enable this functionality' href='"
2364
- msgstr ""
2365
-
2366
  # Unknown
2367
- #: ../admin/view/wp-slimstat-reports.php:1811
2368
  msgid "c-xx"
2369
  msgstr "Unknown"
2370
 
2371
  # Afghanistan
2372
- #: ../admin/view/wp-slimstat-reports.php:1811
2373
  msgid "c-af"
2374
  msgstr "Afghanistan"
2375
 
2376
  # Åland Islands
2377
- #: ../admin/view/wp-slimstat-reports.php:1811
2378
  msgid "c-ax"
2379
  msgstr "Aland Islands"
2380
 
2381
  # Albania
2382
- #: ../admin/view/wp-slimstat-reports.php:1811
2383
  msgid "c-al"
2384
  msgstr "Albania"
2385
 
2386
  # Algeria
2387
- #: ../admin/view/wp-slimstat-reports.php:1811
2388
  msgid "c-dz"
2389
  msgstr "Algeria"
2390
 
2391
  # Andorra
2392
- #: ../admin/view/wp-slimstat-reports.php:1811
2393
  msgid "c-ad"
2394
  msgstr "Andorra"
2395
 
2396
  # Angola
2397
- #: ../admin/view/wp-slimstat-reports.php:1811
2398
  msgid "c-ao"
2399
  msgstr "Angola"
2400
 
2401
  # Anguilla
2402
- #: ../admin/view/wp-slimstat-reports.php:1811
2403
  msgid "c-ai"
2404
  msgstr "Anguilla"
2405
 
2406
  # Antigua and Barbuda
2407
- #: ../admin/view/wp-slimstat-reports.php:1811
2408
  msgid "c-ag"
2409
  msgstr "Antigua and Barbuda"
2410
 
2411
  # Argentina
2412
- #: ../admin/view/wp-slimstat-reports.php:1811
2413
  msgid "c-ar"
2414
  msgstr "Argentina"
2415
 
2416
  # Armenia
2417
- #: ../admin/view/wp-slimstat-reports.php:1811
2418
  msgid "c-am"
2419
  msgstr "Armenia"
2420
 
2421
  # Aruba
2422
- #: ../admin/view/wp-slimstat-reports.php:1811
2423
  msgid "c-aw"
2424
  msgstr "Aruba"
2425
 
2426
  # Australia
2427
- #: ../admin/view/wp-slimstat-reports.php:1811
2428
  msgid "c-au"
2429
  msgstr "Australia"
2430
 
2431
  # Austria
2432
- #: ../admin/view/wp-slimstat-reports.php:1811
2433
  msgid "c-at"
2434
  msgstr "Austria"
2435
 
2436
  # Azerbaijan
2437
- #: ../admin/view/wp-slimstat-reports.php:1811
2438
  msgid "c-az"
2439
  msgstr "Azerbaijan"
2440
 
2441
  # Bahamas
2442
- #: ../admin/view/wp-slimstat-reports.php:1811
2443
  msgid "c-bs"
2444
  msgstr "Bahamas"
2445
 
2446
  # Bahrain
2447
- #: ../admin/view/wp-slimstat-reports.php:1811
2448
  msgid "c-bh"
2449
  msgstr "Bahrain"
2450
 
2451
  # Bangladesh
2452
- #: ../admin/view/wp-slimstat-reports.php:1811
2453
  msgid "c-bd"
2454
  msgstr "Bangladesh"
2455
 
2456
  # Barbados
2457
- #: ../admin/view/wp-slimstat-reports.php:1811
2458
  msgid "c-bb"
2459
  msgstr "Barbados"
2460
 
2461
  # Belarus
2462
- #: ../admin/view/wp-slimstat-reports.php:1811
2463
  msgid "c-by"
2464
  msgstr "Belarus"
2465
 
2466
  # Belgium
2467
- #: ../admin/view/wp-slimstat-reports.php:1811
2468
  msgid "c-be"
2469
  msgstr "Belgium"
2470
 
2471
  # Belize
2472
- #: ../admin/view/wp-slimstat-reports.php:1811
2473
  msgid "c-bz"
2474
  msgstr "Belize"
2475
 
2476
  # Benin
2477
- #: ../admin/view/wp-slimstat-reports.php:1811
2478
  msgid "c-bj"
2479
  msgstr "Benin"
2480
 
2481
  # Bermuda
2482
- #: ../admin/view/wp-slimstat-reports.php:1811
2483
  msgid "c-bm"
2484
  msgstr "Bermuda"
2485
 
2486
  # Bhutan
2487
- #: ../admin/view/wp-slimstat-reports.php:1811
2488
  msgid "c-bt"
2489
  msgstr "Bhutan"
2490
 
2491
  # Bolivia
2492
- #: ../admin/view/wp-slimstat-reports.php:1811
2493
  msgid "c-bo"
2494
  msgstr "Bolivia"
2495
 
2496
  # Bosnia and Herzegovina
2497
- #: ../admin/view/wp-slimstat-reports.php:1811
2498
  msgid "c-ba"
2499
  msgstr "Bosnia and Herzegovina"
2500
 
2501
  # Botswana
2502
- #: ../admin/view/wp-slimstat-reports.php:1811
2503
  msgid "c-bw"
2504
  msgstr "Botswana"
2505
 
2506
  # Brazil
2507
- #: ../admin/view/wp-slimstat-reports.php:1811
2508
  msgid "c-br"
2509
  msgstr "Brazil"
2510
 
2511
  # Brunei Darussalam
2512
- #: ../admin/view/wp-slimstat-reports.php:1811
2513
  msgid "c-bn"
2514
  msgstr "Brunei Darussalam"
2515
 
2516
  # Bulgaria
2517
- #: ../admin/view/wp-slimstat-reports.php:1811
2518
  msgid "c-bg"
2519
  msgstr "Bulgaria"
2520
 
2521
  # Burkina Faso
2522
- #: ../admin/view/wp-slimstat-reports.php:1811
2523
  msgid "c-bf"
2524
  msgstr "Burkina Faso"
2525
 
2526
  # Burundi
2527
- #: ../admin/view/wp-slimstat-reports.php:1811
2528
  msgid "c-bi"
2529
  msgstr "Burundi"
2530
 
2531
  # Cambodia
2532
- #: ../admin/view/wp-slimstat-reports.php:1811
2533
  msgid "c-kh"
2534
  msgstr "Cambodia"
2535
 
2536
  # Cameroon
2537
- #: ../admin/view/wp-slimstat-reports.php:1811
2538
  msgid "c-cm"
2539
  msgstr "Cameroon"
2540
 
2541
  # Canada
2542
- #: ../admin/view/wp-slimstat-reports.php:1811
2543
  msgid "c-ca"
2544
  msgstr "Canada"
2545
 
2546
  # Cape Verde
2547
- #: ../admin/view/wp-slimstat-reports.php:1811
2548
  msgid "c-cv"
2549
  msgstr "Cape Verde"
2550
 
2551
  # Cayman Islands
2552
- #: ../admin/view/wp-slimstat-reports.php:1811
2553
  msgid "c-ky"
2554
  msgstr "Cayman Islands"
2555
 
2556
  # Central African Republic
2557
- #: ../admin/view/wp-slimstat-reports.php:1811
2558
  msgid "c-cf"
2559
  msgstr "Central African Republic"
2560
 
2561
  # Chad
2562
- #: ../admin/view/wp-slimstat-reports.php:1811
2563
  msgid "c-td"
2564
  msgstr "Chad"
2565
 
2566
  # Chile
2567
- #: ../admin/view/wp-slimstat-reports.php:1811
2568
  msgid "c-cl"
2569
  msgstr "Chile"
2570
 
2571
  # China
2572
- #: ../admin/view/wp-slimstat-reports.php:1811
2573
  msgid "c-cn"
2574
  msgstr "China"
2575
 
2576
  # Colombia
2577
- #: ../admin/view/wp-slimstat-reports.php:1811
2578
  msgid "c-co"
2579
  msgstr "Colombia"
2580
 
2581
  # Comoros
2582
- #: ../admin/view/wp-slimstat-reports.php:1811
2583
  msgid "c-km"
2584
  msgstr "Comoros"
2585
 
2586
  # Congo
2587
- #: ../admin/view/wp-slimstat-reports.php:1811
2588
  msgid "c-cg"
2589
  msgstr "Congo"
2590
 
2591
  # The Democratic Republic of the Congo
2592
- #: ../admin/view/wp-slimstat-reports.php:1811
2593
  msgid "c-cd"
2594
  msgstr "The Democratic Republic of the Congo"
2595
 
2596
  # Costa Rica
2597
- #: ../admin/view/wp-slimstat-reports.php:1811
2598
  msgid "c-cr"
2599
  msgstr "Costa Rica"
2600
 
2601
  # Côte d'Ivoire
2602
- #: ../admin/view/wp-slimstat-reports.php:1811
2603
  msgid "c-ci"
2604
  msgstr "Côte d'Ivoire"
2605
 
2606
  # Croatia
2607
- #: ../admin/view/wp-slimstat-reports.php:1811
2608
  msgid "c-hr"
2609
  msgstr "Croatia"
2610
 
2611
  # Cuba
2612
- #: ../admin/view/wp-slimstat-reports.php:1811
2613
  msgid "c-cu"
2614
  msgstr "Cuba"
2615
 
2616
  # Cyprus
2617
- #: ../admin/view/wp-slimstat-reports.php:1811
2618
  msgid "c-cy"
2619
  msgstr "Cyprus"
2620
 
2621
  # Czech Republic
2622
- #: ../admin/view/wp-slimstat-reports.php:1811
2623
  msgid "c-cz"
2624
  msgstr "Czech Republic"
2625
 
2626
  # Denmark
2627
- #: ../admin/view/wp-slimstat-reports.php:1811
2628
  msgid "c-dk"
2629
  msgstr "Denmark"
2630
 
2631
  # Djibouti
2632
- #: ../admin/view/wp-slimstat-reports.php:1811
2633
  msgid "c-dj"
2634
  msgstr "Djibouti"
2635
 
2636
  # Dominica
2637
- #: ../admin/view/wp-slimstat-reports.php:1811
2638
  msgid "c-dm"
2639
  msgstr "Dominica"
2640
 
2641
  # Dominican Republic
2642
- #: ../admin/view/wp-slimstat-reports.php:1811
2643
  msgid "c-do"
2644
  msgstr "Dominican Republic"
2645
 
2646
  # Ecuador
2647
- #: ../admin/view/wp-slimstat-reports.php:1811
2648
  msgid "c-ec"
2649
  msgstr "Ecuador"
2650
 
2651
  # Egypt
2652
- #: ../admin/view/wp-slimstat-reports.php:1811
2653
  msgid "c-eg"
2654
  msgstr "Egypt"
2655
 
2656
  # El Salvador
2657
- #: ../admin/view/wp-slimstat-reports.php:1811
2658
  msgid "c-sv"
2659
  msgstr "El Salvador"
2660
 
2661
  # Equatorial Guinea
2662
- #: ../admin/view/wp-slimstat-reports.php:1811
2663
  msgid "c-gq"
2664
  msgstr "Equatorial Guinea"
2665
 
2666
  # Eritrea
2667
- #: ../admin/view/wp-slimstat-reports.php:1811
2668
  msgid "c-er"
2669
  msgstr "Eritrea"
2670
 
2671
  # Estonia
2672
- #: ../admin/view/wp-slimstat-reports.php:1811
2673
  msgid "c-ee"
2674
  msgstr "Estonia"
2675
 
2676
  # Ethiopia
2677
- #: ../admin/view/wp-slimstat-reports.php:1811
2678
  msgid "c-et"
2679
  msgstr "Ethiopia"
2680
 
2681
  # Faroe Islands
2682
- #: ../admin/view/wp-slimstat-reports.php:1811
2683
  msgid "c-fo"
2684
  msgstr "Faroe Islands"
2685
 
2686
  # Falkland Islands (Malvinas)
2687
- #: ../admin/view/wp-slimstat-reports.php:1811
2688
  msgid "c-fk"
2689
  msgstr "Falkland Islands (Malvinas)"
2690
 
2691
  # Fiji
2692
- #: ../admin/view/wp-slimstat-reports.php:1811
2693
  msgid "c-fj"
2694
  msgstr "Fiji"
2695
 
2696
  # Finland
2697
- #: ../admin/view/wp-slimstat-reports.php:1811
2698
  msgid "c-fi"
2699
  msgstr "Finland"
2700
 
2701
  # France
2702
- #: ../admin/view/wp-slimstat-reports.php:1811
2703
  msgid "c-fr"
2704
  msgstr "France"
2705
 
2706
  # French Guiana
2707
- #: ../admin/view/wp-slimstat-reports.php:1811
2708
  msgid "c-gf"
2709
  msgstr "French Guiana"
2710
 
2711
  # Gabon
2712
- #: ../admin/view/wp-slimstat-reports.php:1811
2713
  msgid "c-ga"
2714
  msgstr "Gabon"
2715
 
2716
  # Gambia
2717
- #: ../admin/view/wp-slimstat-reports.php:1811
2718
  msgid "c-gm"
2719
  msgstr "Gambia"
2720
 
2721
  # Georgia
2722
- #: ../admin/view/wp-slimstat-reports.php:1811
2723
  msgid "c-ge"
2724
  msgstr "Georgia"
2725
 
2726
  # Germany
2727
- #: ../admin/view/wp-slimstat-reports.php:1811
2728
  msgid "c-de"
2729
  msgstr "Germany"
2730
 
2731
  # Ghana
2732
- #: ../admin/view/wp-slimstat-reports.php:1811
2733
  msgid "c-gh"
2734
  msgstr "Ghana"
2735
 
2736
  # Greece
2737
- #: ../admin/view/wp-slimstat-reports.php:1811
2738
  msgid "c-gr"
2739
  msgstr "Greece"
2740
 
2741
  # Greenland
2742
- #: ../admin/view/wp-slimstat-reports.php:1811
2743
  msgid "c-gl"
2744
  msgstr "Greenland"
2745
 
2746
  # Grenada
2747
- #: ../admin/view/wp-slimstat-reports.php:1811
2748
  msgid "c-gd"
2749
  msgstr "Grenada"
2750
 
2751
  # Guadeloupe
2752
- #: ../admin/view/wp-slimstat-reports.php:1811
2753
  msgid "c-gp"
2754
  msgstr "Guadeloupe"
2755
 
2756
  # Guatemala
2757
- #: ../admin/view/wp-slimstat-reports.php:1811
2758
  msgid "c-gt"
2759
  msgstr "Guatemala"
2760
 
2761
  # Guinea
2762
- #: ../admin/view/wp-slimstat-reports.php:1811
2763
  msgid "c-gn"
2764
  msgstr "Guinea"
2765
 
2766
  # Guinea-Bissau
2767
- #: ../admin/view/wp-slimstat-reports.php:1811
2768
  msgid "c-gw"
2769
  msgstr "Guinea-Bissau"
2770
 
2771
  # Guyana
2772
- #: ../admin/view/wp-slimstat-reports.php:1811
2773
  msgid "c-gy"
2774
  msgstr "Guyana"
2775
 
2776
  # Haiti
2777
- #: ../admin/view/wp-slimstat-reports.php:1811
2778
  msgid "c-ht"
2779
  msgstr "Haiti"
2780
 
2781
  # Honduras
2782
- #: ../admin/view/wp-slimstat-reports.php:1811
2783
  msgid "c-hn"
2784
  msgstr "Honduras"
2785
 
2786
  # Hong Kong
2787
- #: ../admin/view/wp-slimstat-reports.php:1811
2788
  msgid "c-hk"
2789
  msgstr "Hong Kong"
2790
 
2791
  # Hungary
2792
- #: ../admin/view/wp-slimstat-reports.php:1811
2793
  msgid "c-hu"
2794
  msgstr "Hungary"
2795
 
2796
  # Iceland
2797
- #: ../admin/view/wp-slimstat-reports.php:1811
2798
  msgid "c-is"
2799
  msgstr "Iceland"
2800
 
2801
  # India
2802
- #: ../admin/view/wp-slimstat-reports.php:1811
2803
  msgid "c-in"
2804
  msgstr "India"
2805
 
2806
  # Indonesia
2807
- #: ../admin/view/wp-slimstat-reports.php:1811
2808
  msgid "c-id"
2809
  msgstr "Indonesia"
2810
 
2811
  # Islamic Republic of Iran
2812
- #: ../admin/view/wp-slimstat-reports.php:1811
2813
  msgid "c-ir"
2814
  msgstr "Islamic Republic of Iran"
2815
 
2816
  # Iraq
2817
- #: ../admin/view/wp-slimstat-reports.php:1811
2818
  msgid "c-iq"
2819
  msgstr "Iraq"
2820
 
2821
  # Ireland
2822
- #: ../admin/view/wp-slimstat-reports.php:1811
2823
  msgid "c-ie"
2824
  msgstr "Ireland"
2825
 
2826
  # Israel
2827
- #: ../admin/view/wp-slimstat-reports.php:1811
2828
  msgid "c-il"
2829
  msgstr "Israel"
2830
 
2831
  # Italy
2832
- #: ../admin/view/wp-slimstat-reports.php:1811
2833
  msgid "c-it"
2834
  msgstr "Italy"
2835
 
2836
  # Jamaica
2837
- #: ../admin/view/wp-slimstat-reports.php:1811
2838
  msgid "c-jm"
2839
  msgstr "Jamaica"
2840
 
2841
  # Japan
2842
- #: ../admin/view/wp-slimstat-reports.php:1811
2843
  msgid "c-jp"
2844
  msgstr "Japan"
2845
 
2846
  # Jordan
2847
- #: ../admin/view/wp-slimstat-reports.php:1811
2848
  msgid "c-jo"
2849
  msgstr "Jordan"
2850
 
2851
  # Kazakhstan
2852
- #: ../admin/view/wp-slimstat-reports.php:1811
2853
  msgid "c-kz"
2854
  msgstr "Kazakhstan"
2855
 
2856
  # Kenya
2857
- #: ../admin/view/wp-slimstat-reports.php:1811
2858
  msgid "c-ke"
2859
  msgstr "Kenya"
2860
 
2861
  # Nauru
2862
- #: ../admin/view/wp-slimstat-reports.php:1811
2863
  msgid "c-nr"
2864
  msgstr "Nauru"
2865
 
2866
  # Democratic People's Republic of Korea
2867
- #: ../admin/view/wp-slimstat-reports.php:1811
2868
  msgid "c-kp"
2869
  msgstr "Democratic People's Republic of Korea"
2870
 
2871
  # Republic of Korea
2872
- #: ../admin/view/wp-slimstat-reports.php:1811
2873
  msgid "c-kr"
2874
  msgstr "Republic of Korea"
2875
 
2876
- #: ../admin/view/wp-slimstat-reports.php:1811
2877
  msgid "c-kv"
2878
  msgstr "Kosovo"
2879
 
2880
  # Kuwait
2881
- #: ../admin/view/wp-slimstat-reports.php:1811
2882
  msgid "c-kw"
2883
  msgstr "Kuwait"
2884
 
2885
  # Kyrgyzstan
2886
- #: ../admin/view/wp-slimstat-reports.php:1811
2887
  msgid "c-kg"
2888
  msgstr "Kyrgyzstan"
2889
 
2890
  # Lao People's Democratic Republic
2891
- #: ../admin/view/wp-slimstat-reports.php:1811
2892
  msgid "c-la"
2893
  msgstr "Lao People's Democratic Republic"
2894
 
2895
  # Latvia
2896
- #: ../admin/view/wp-slimstat-reports.php:1811
2897
  msgid "c-lv"
2898
  msgstr "Latvia"
2899
 
2900
  # Lebanon
2901
- #: ../admin/view/wp-slimstat-reports.php:1811
2902
  msgid "c-lb"
2903
  msgstr "Lebanon"
2904
 
2905
  # Lesotho
2906
- #: ../admin/view/wp-slimstat-reports.php:1811
2907
  msgid "c-ls"
2908
  msgstr "Lesotho"
2909
 
2910
  # Liberia
2911
- #: ../admin/view/wp-slimstat-reports.php:1811
2912
  msgid "c-lr"
2913
  msgstr "Liberia"
2914
 
2915
  # Libyan Arab Jamahiriya
2916
- #: ../admin/view/wp-slimstat-reports.php:1811
2917
  msgid "c-ly"
2918
  msgstr "Libyan Arab Jamahiriya"
2919
 
2920
  # Liechtenstein
2921
- #: ../admin/view/wp-slimstat-reports.php:1811
2922
  msgid "c-li"
2923
  msgstr "Liechtenstein"
2924
 
2925
  # Lithuania
2926
- #: ../admin/view/wp-slimstat-reports.php:1811
2927
  msgid "c-lt"
2928
  msgstr "Lithuania"
2929
 
2930
  # Luxembourg
2931
- #: ../admin/view/wp-slimstat-reports.php:1811
2932
  msgid "c-lu"
2933
  msgstr "Luxembourg"
2934
 
2935
  # The Former Yugoslav Republic of Macedonia
2936
- #: ../admin/view/wp-slimstat-reports.php:1811
2937
  msgid "c-mk"
2938
  msgstr "The Former Yugoslav Republic of Macedonia"
2939
 
2940
  # Madagascar
2941
- #: ../admin/view/wp-slimstat-reports.php:1811
2942
  msgid "c-mg"
2943
  msgstr "Madagascar"
2944
 
2945
  # Malawi
2946
- #: ../admin/view/wp-slimstat-reports.php:1811
2947
  msgid "c-mw"
2948
  msgstr "Malawi"
2949
 
2950
  # Malaysia
2951
- #: ../admin/view/wp-slimstat-reports.php:1811
2952
  msgid "c-my"
2953
  msgstr "Malaysia"
2954
 
2955
  # Mali
2956
- #: ../admin/view/wp-slimstat-reports.php:1811
2957
  msgid "c-ml"
2958
  msgstr "Mali"
2959
 
2960
  # Malta
2961
- #: ../admin/view/wp-slimstat-reports.php:1811
2962
  msgid "c-mt"
2963
  msgstr "Malta"
2964
 
2965
  # Martinique
2966
- #: ../admin/view/wp-slimstat-reports.php:1811
2967
  msgid "c-mq"
2968
  msgstr "Martinique"
2969
 
2970
  # Mauritania
2971
- #: ../admin/view/wp-slimstat-reports.php:1811
2972
  msgid "c-mr"
2973
  msgstr "Mauritania"
2974
 
2975
  # Mauritius
2976
- #: ../admin/view/wp-slimstat-reports.php:1811
2977
  msgid "c-mu"
2978
  msgstr "Mauritius"
2979
 
2980
  # Mexico
2981
- #: ../admin/view/wp-slimstat-reports.php:1811
2982
  msgid "c-mx"
2983
  msgstr "Mexico"
2984
 
2985
  # Moldova
2986
- #: ../admin/view/wp-slimstat-reports.php:1811
2987
  msgid "c-md"
2988
  msgstr "Moldova"
2989
 
2990
  # Mongolia
2991
- #: ../admin/view/wp-slimstat-reports.php:1811
2992
  msgid "c-mn"
2993
  msgstr "Mongolia"
2994
 
2995
  # Montenegro
2996
- #: ../admin/view/wp-slimstat-reports.php:1811
2997
  msgid "c-me"
2998
  msgstr "Montenegro"
2999
 
3000
  # Montserrat
3001
- #: ../admin/view/wp-slimstat-reports.php:1811
3002
  msgid "c-ms"
3003
  msgstr "Montserrat"
3004
 
3005
  # Morocco
3006
- #: ../admin/view/wp-slimstat-reports.php:1811
3007
  msgid "c-ma"
3008
  msgstr "Morocco"
3009
 
3010
  # Mozambique
3011
- #: ../admin/view/wp-slimstat-reports.php:1811
3012
  msgid "c-mz"
3013
  msgstr "Mozambique"
3014
 
3015
  # Myanmar
3016
- #: ../admin/view/wp-slimstat-reports.php:1811
3017
  msgid "c-mm"
3018
  msgstr "Myanmar"
3019
 
3020
  # Namibia
3021
- #: ../admin/view/wp-slimstat-reports.php:1811
3022
  msgid "c-na"
3023
  msgstr "Namibia"
3024
 
3025
  # Nepal
3026
- #: ../admin/view/wp-slimstat-reports.php:1811
3027
  msgid "c-np"
3028
  msgstr "Nepal"
3029
 
3030
  # Netherlands
3031
- #: ../admin/view/wp-slimstat-reports.php:1811
3032
  msgid "c-nl"
3033
  msgstr "Netherlands"
3034
 
3035
  # New Caledonia
3036
- #: ../admin/view/wp-slimstat-reports.php:1811
3037
  msgid "c-nc"
3038
  msgstr "New Caledonia"
3039
 
3040
  # New Zealand
3041
- #: ../admin/view/wp-slimstat-reports.php:1811
3042
  msgid "c-nz"
3043
  msgstr "New Zealand"
3044
 
3045
  # Nicaragua
3046
- #: ../admin/view/wp-slimstat-reports.php:1811
3047
  msgid "c-ni"
3048
  msgstr "Nicaragua"
3049
 
3050
  # Niger
3051
- #: ../admin/view/wp-slimstat-reports.php:1811
3052
  msgid "c-ne"
3053
  msgstr "Niger"
3054
 
3055
  # Nigeria
3056
- #: ../admin/view/wp-slimstat-reports.php:1811
3057
  msgid "c-ng"
3058
  msgstr "Nigeria"
3059
 
3060
  # Norway
3061
- #: ../admin/view/wp-slimstat-reports.php:1811
3062
  msgid "c-no"
3063
  msgstr "Norway"
3064
 
3065
  # Oman
3066
- #: ../admin/view/wp-slimstat-reports.php:1811
3067
  msgid "c-om"
3068
  msgstr "Oman"
3069
 
3070
  # Pakistan
3071
- #: ../admin/view/wp-slimstat-reports.php:1811
3072
  msgid "c-pk"
3073
  msgstr "Pakistan"
3074
 
3075
  # Palau
3076
- #: ../admin/view/wp-slimstat-reports.php:1811
3077
  msgid "c-pw"
3078
  msgstr "Palau"
3079
 
3080
  # Occupied Palestinian Territory
3081
- #: ../admin/view/wp-slimstat-reports.php:1811
3082
  msgid "c-ps"
3083
  msgstr "Occupied Palestinian Territory"
3084
 
3085
  # Panama
3086
- #: ../admin/view/wp-slimstat-reports.php:1811
3087
  msgid "c-pa"
3088
  msgstr "Panama"
3089
 
3090
  # Papua New Guinea
3091
- #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-pg"
3093
  msgstr "Papua New Guinea"
3094
 
3095
  # Paraguay
3096
- #: ../admin/view/wp-slimstat-reports.php:1811
3097
  msgid "c-py"
3098
  msgstr "Paraguay"
3099
 
3100
  # Peru
3101
- #: ../admin/view/wp-slimstat-reports.php:1811
3102
  msgid "c-pe"
3103
  msgstr "Peru"
3104
 
3105
  # Philippines
3106
- #: ../admin/view/wp-slimstat-reports.php:1811
3107
  msgid "c-ph"
3108
  msgstr "Philippines"
3109
 
3110
  # Poland
3111
- #: ../admin/view/wp-slimstat-reports.php:1811
3112
  msgid "c-pl"
3113
  msgstr "Poland"
3114
 
3115
  # Portugal
3116
- #: ../admin/view/wp-slimstat-reports.php:1811
3117
  msgid "c-pt"
3118
  msgstr "Portugal"
3119
 
3120
  # Puerto Rico
3121
- #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-pr"
3123
  msgstr "Puerto Rico"
3124
 
3125
  # Qatar
3126
- #: ../admin/view/wp-slimstat-reports.php:1811
3127
  msgid "c-qa"
3128
  msgstr "Qatar"
3129
 
3130
  # Réunion
3131
- #: ../admin/view/wp-slimstat-reports.php:1811
3132
  msgid "c-re"
3133
  msgstr "Réunion"
3134
 
3135
  # Romania
3136
- #: ../admin/view/wp-slimstat-reports.php:1811
3137
  msgid "c-ro"
3138
  msgstr "Romania"
3139
 
3140
  # Russian Federation
3141
- #: ../admin/view/wp-slimstat-reports.php:1811
3142
  msgid "c-ru"
3143
  msgstr "Russian Federation"
3144
 
3145
  # Rwanda
3146
- #: ../admin/view/wp-slimstat-reports.php:1811
3147
  msgid "c-rw"
3148
  msgstr "Rwanda"
3149
 
3150
  # Saint Kitts and Nevis
3151
- #: ../admin/view/wp-slimstat-reports.php:1811
3152
  msgid "c-kn"
3153
  msgstr "Saint Kitts and Nevis"
3154
 
3155
  # Saint Lucia
3156
- #: ../admin/view/wp-slimstat-reports.php:1811
3157
  msgid "c-lc"
3158
  msgstr "Saint Lucia"
3159
 
3160
  # Saint Martin
3161
- #: ../admin/view/wp-slimstat-reports.php:1811
3162
  msgid "c-mf"
3163
  msgstr "Saint Martin"
3164
 
3165
  # Saint Vincent and the Grenadines
3166
- #: ../admin/view/wp-slimstat-reports.php:1811
3167
  msgid "c-vc"
3168
  msgstr "Saint Vincent and the Grenadines"
3169
 
3170
  # Samoa
3171
- #: ../admin/view/wp-slimstat-reports.php:1811
3172
  msgid "c-ws"
3173
  msgstr "Samoa"
3174
 
3175
  # Sao Tome and Principe
3176
- #: ../admin/view/wp-slimstat-reports.php:1811
3177
  msgid "c-st"
3178
  msgstr "Sao Tome and Principe"
3179
 
3180
  # Saudi Arabia
3181
- #: ../admin/view/wp-slimstat-reports.php:1811
3182
  msgid "c-sa"
3183
  msgstr "Saudi Arabia"
3184
 
3185
  # Senegal
3186
- #: ../admin/view/wp-slimstat-reports.php:1811
3187
  msgid "c-sn"
3188
  msgstr "Senegal"
3189
 
3190
  # Serbia
3191
- #: ../admin/view/wp-slimstat-reports.php:1811
3192
  msgid "c-rs"
3193
  msgstr "Serbia"
3194
 
3195
  # Sierra Leone
3196
- #: ../admin/view/wp-slimstat-reports.php:1811
3197
  msgid "c-sl"
3198
  msgstr "Sierra Leone"
3199
 
3200
  # Singapore
3201
- #: ../admin/view/wp-slimstat-reports.php:1811
3202
  msgid "c-sg"
3203
  msgstr "Singapore"
3204
 
3205
  # Slovakia
3206
- #: ../admin/view/wp-slimstat-reports.php:1811
3207
  msgid "c-sk"
3208
  msgstr "Slovakia"
3209
 
3210
  # Slovenia
3211
- #: ../admin/view/wp-slimstat-reports.php:1811
3212
  msgid "c-si"
3213
  msgstr "Slovenia"
3214
 
3215
  # Solomon Islands
3216
- #: ../admin/view/wp-slimstat-reports.php:1811
3217
  msgid "c-sb"
3218
  msgstr "Solomon Islands"
3219
 
3220
  # Somalia
3221
- #: ../admin/view/wp-slimstat-reports.php:1811
3222
  msgid "c-so"
3223
  msgstr "Somalia"
3224
 
3225
  # South Africa
3226
- #: ../admin/view/wp-slimstat-reports.php:1811
3227
  msgid "c-za"
3228
  msgstr "South Africa"
3229
 
3230
  # South Georgia and the South Sandwich Islands
3231
- #: ../admin/view/wp-slimstat-reports.php:1811
3232
  msgid "c-gs"
3233
  msgstr "South Georgia and the South Sandwich Islands"
3234
 
3235
  # Spain
3236
- #: ../admin/view/wp-slimstat-reports.php:1811
3237
  msgid "c-es"
3238
  msgstr "Spain"
3239
 
3240
  # Sri Lanka
3241
- #: ../admin/view/wp-slimstat-reports.php:1811
3242
  msgid "c-lk"
3243
  msgstr "Sri Lanka"
3244
 
3245
- #: ../admin/view/wp-slimstat-reports.php:1811
3246
  msgid "c-sc"
3247
  msgstr "Seychelles"
3248
 
3249
  # Sudan
3250
- #: ../admin/view/wp-slimstat-reports.php:1811
3251
  msgid "c-sd"
3252
  msgstr "Sudan"
3253
 
3254
- #: ../admin/view/wp-slimstat-reports.php:1811
3255
  msgid "c-ss"
3256
  msgstr "South Sudan"
3257
 
3258
  # Suriname
3259
- #: ../admin/view/wp-slimstat-reports.php:1811
3260
  msgid "c-sr"
3261
  msgstr "Suriname"
3262
 
3263
  # Svalbard and Jan Mayen
3264
- #: ../admin/view/wp-slimstat-reports.php:1811
3265
  msgid "c-sj"
3266
  msgstr "Svalbard and Jan Mayen"
3267
 
3268
  # Swaziland
3269
- #: ../admin/view/wp-slimstat-reports.php:1811
3270
  msgid "c-sz"
3271
  msgstr "Swaziland"
3272
 
3273
  # Sweden
3274
- #: ../admin/view/wp-slimstat-reports.php:1811
3275
  msgid "c-se"
3276
  msgstr "Sweden"
3277
 
3278
  # Switzerland
3279
- #: ../admin/view/wp-slimstat-reports.php:1811
3280
  msgid "c-ch"
3281
  msgstr "Switzerland"
3282
 
3283
  # Syrian Arab Republic
3284
- #: ../admin/view/wp-slimstat-reports.php:1811
3285
  msgid "c-sy"
3286
  msgstr "Syrian Arab Republic"
3287
 
3288
  # Taiwan, Province of China
3289
- #: ../admin/view/wp-slimstat-reports.php:1811
3290
  msgid "c-tw"
3291
  msgstr "Taiwan"
3292
 
3293
  # Tajikistan
3294
- #: ../admin/view/wp-slimstat-reports.php:1811
3295
  msgid "c-tj"
3296
  msgstr "Tajikistan"
3297
 
3298
  # United Republic of Tanzania
3299
- #: ../admin/view/wp-slimstat-reports.php:1811
3300
  msgid "c-tz"
3301
  msgstr "United Republic of Tanzania"
3302
 
3303
  # Thailand
3304
- #: ../admin/view/wp-slimstat-reports.php:1811
3305
  msgid "c-th"
3306
  msgstr "Thailand"
3307
 
3308
  # Timor-Leste
3309
- #: ../admin/view/wp-slimstat-reports.php:1811
3310
  msgid "c-tl"
3311
  msgstr "Timor-Leste"
3312
 
3313
  # Togo
3314
- #: ../admin/view/wp-slimstat-reports.php:1811
3315
  msgid "c-tg"
3316
  msgstr "Togo"
3317
 
3318
  # Tonga
3319
- #: ../admin/view/wp-slimstat-reports.php:1811
3320
  msgid "c-to"
3321
  msgstr "Tonga"
3322
 
3323
  # Trinidad and Tobago
3324
- #: ../admin/view/wp-slimstat-reports.php:1811
3325
  msgid "c-tt"
3326
  msgstr "Trinidad and Tobago"
3327
 
3328
  # Tunisia
3329
- #: ../admin/view/wp-slimstat-reports.php:1811
3330
  msgid "c-tn"
3331
  msgstr "Tunisia"
3332
 
3333
  # Turkey
3334
- #: ../admin/view/wp-slimstat-reports.php:1811
3335
  msgid "c-tr"
3336
  msgstr "Turkey"
3337
 
3338
  # Turkmenistan
3339
- #: ../admin/view/wp-slimstat-reports.php:1811
3340
  msgid "c-tm"
3341
  msgstr "Turkmenistan"
3342
 
3343
  # Turks and Caicos Islands
3344
- #: ../admin/view/wp-slimstat-reports.php:1811
3345
  msgid "c-tc"
3346
  msgstr "Turks and Caicos Islands"
3347
 
3348
  # Uganda
3349
- #: ../admin/view/wp-slimstat-reports.php:1811
3350
  msgid "c-ug"
3351
  msgstr "Uganda"
3352
 
3353
  # Ukraine
3354
- #: ../admin/view/wp-slimstat-reports.php:1811
3355
  msgid "c-ua"
3356
  msgstr "Ukraine"
3357
 
3358
  # United Arab Emirates
3359
- #: ../admin/view/wp-slimstat-reports.php:1811
3360
  msgid "c-ae"
3361
  msgstr "United Arab Emirates"
3362
 
3363
  # United Kingdom
3364
- #: ../admin/view/wp-slimstat-reports.php:1811
3365
  msgid "c-gb"
3366
  msgstr "United Kingdom"
3367
 
3368
  # United States
3369
- #: ../admin/view/wp-slimstat-reports.php:1811
3370
  msgid "c-us"
3371
  msgstr "United States"
3372
 
3373
  # Uruguay
3374
- #: ../admin/view/wp-slimstat-reports.php:1811
3375
  msgid "c-uy"
3376
  msgstr "Uruguay"
3377
 
3378
  # Uzbekistan
3379
- #: ../admin/view/wp-slimstat-reports.php:1811
3380
  msgid "c-uz"
3381
  msgstr "Uzbekistan"
3382
 
3383
  # Vanuatu
3384
- #: ../admin/view/wp-slimstat-reports.php:1811
3385
  msgid "c-vu"
3386
  msgstr "Vanuatu"
3387
 
3388
  # Venezuela
3389
- #: ../admin/view/wp-slimstat-reports.php:1811
3390
  msgid "c-ve"
3391
  msgstr "Venezuela"
3392
 
3393
  # Viet Nam
3394
- #: ../admin/view/wp-slimstat-reports.php:1811
3395
  msgid "c-vn"
3396
  msgstr "Viet Nam"
3397
 
3398
  # British Virgin Islands
3399
- #: ../admin/view/wp-slimstat-reports.php:1811
3400
  msgid "c-vg"
3401
  msgstr "British Virgin Islands"
3402
 
3403
  # U.S. Virgin Islands
3404
- #: ../admin/view/wp-slimstat-reports.php:1811
3405
  msgid "c-vi"
3406
  msgstr "U.S. Virgin Islands"
3407
 
3408
  # Western Sahara
3409
- #: ../admin/view/wp-slimstat-reports.php:1811
3410
  msgid "c-eh"
3411
  msgstr "Western Sahara"
3412
 
3413
  # Yemen
3414
- #: ../admin/view/wp-slimstat-reports.php:1811
3415
  msgid "c-ye"
3416
  msgstr "Yemen"
3417
 
3418
  # Zambia
3419
- #: ../admin/view/wp-slimstat-reports.php:1811
3420
  msgid "c-zm"
3421
  msgstr "Zambia"
3422
 
3423
  # Zimbabwe
3424
- #: ../admin/view/wp-slimstat-reports.php:1811
3425
  msgid "c-zw"
3426
  msgstr "Zimbabwe"
3427
 
3428
  # Guernsey
3429
- #: ../admin/view/wp-slimstat-reports.php:1811
3430
  msgid "c-gg"
3431
  msgstr "Guernsey"
3432
 
3433
  # Jersey
3434
- #: ../admin/view/wp-slimstat-reports.php:1811
3435
  msgid "c-je"
3436
  msgstr "Jersey"
3437
 
3438
  # Isle of Man
3439
- #: ../admin/view/wp-slimstat-reports.php:1811
3440
  msgid "c-im"
3441
  msgstr "Isle of Man"
3442
 
3443
  # Maldives
3444
- #: ../admin/view/wp-slimstat-reports.php:1811
3445
  msgid "c-mv"
3446
  msgstr "Maldives"
3447
 
3448
- #: ../admin/view/wp-slimstat-reports.php:1812
3449
  msgid "c-eu"
3450
  msgstr "Europe"
3451
 
3452
- #: ../admin/view/wp-slimstat-reports.php:1894
3453
  msgid "src"
3454
  msgstr ""
3455
 
3456
- #: ../admin/view/wp-slimstat-reports.php:1897
3457
  msgid "serp"
3458
  msgstr ""
3459
 
3460
- #: ../admin/view/wp-slimstat-reports.php:1904
3461
  msgid "Go to the referring page"
3462
  msgstr ""
3463
 
3464
- #: ../admin/view/wp-slimstat-reports.php:1926
3465
  msgid "Remove filter for"
3466
  msgstr ""
3467
 
3468
- #: ../admin/view/wp-slimstat-reports.php:1930
3469
  msgid "Save"
3470
  msgstr ""
3471
 
3472
- #: ../admin/view/wp-slimstat-reports.php:1933
3473
  msgid "Reset All"
3474
  msgstr ""
3475
 
3476
- #: ../admin/view/wp-slimstat-reports.php:1937
3477
  msgid "Current filters:"
3478
  msgstr ""
3479
 
3480
- #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3481
- #: ../admin/wp-slimstat-admin.php:495
3482
- msgid "SlimStat"
 
 
 
 
 
 
 
 
 
 
 
3483
  msgstr ""
3484
 
3485
- #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3486
- #: ../wp-slimstat.php:1799
3487
  msgid "Customize"
3488
  msgstr ""
3489
 
3490
- #: ../admin/wp-slimstat-admin.php:587
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3491
  msgid "Pageviews in the last "
3492
  msgstr ""
3493
 
3494
- #: ../admin/wp-slimstat-admin.php:590
3495
  msgid "Unique IPs in the last "
3496
  msgstr ""
3497
 
3498
- #: ../admin/wp-slimstat-admin.php:644
3499
  msgid "Show on screen"
3500
  msgstr ""
3501
 
3502
- #: ../admin/wp-slimstat-admin.php:725
3503
  msgid "Already saved"
3504
  msgstr ""
3505
 
3506
- #: ../admin/wp-slimstat-admin.php:733
3507
  msgid "Saved"
3508
  msgstr ""
3509
 
3510
- #: ../admin/wp-slimstat-admin.php:753
3511
  msgid "Delete this filter"
3512
  msgstr ""
3513
 
3514
- #: ../admin/wp-slimstat-admin.php:797
3515
  msgid "There was an error updating the following options:"
3516
  msgstr ""
3517
 
3518
- #: ../admin/wp-slimstat-admin.php:800
3519
  msgid "Your changes have been saved."
3520
  msgstr ""
3521
 
3522
- #: ../admin/wp-slimstat-admin.php:823
3523
  msgid "Save Changes"
3524
  msgstr ""
3525
 
3526
- #: ../admin/wp-slimstat-admin.php:839
3527
  msgid "Definitions"
3528
  msgstr ""
3529
 
3530
- #: ../admin/wp-slimstat-admin.php:842
3531
  msgid "Pageview"
3532
  msgstr ""
3533
 
3534
- #: ../admin/wp-slimstat-admin.php:842
3535
  msgid ""
3536
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3537
  "with a \"hit\", which refers to a request for any file from a web server. "
3538
  "Slimstat logs a pageview each time the tracking code is executed"
3539
  msgstr ""
3540
 
3541
- #: ../admin/wp-slimstat-admin.php:843
3542
  msgid "(Human) Visit"
3543
  msgstr ""
3544
 
3545
- #: ../admin/wp-slimstat-admin.php:843
3546
  msgid ""
3547
  "A period of interaction between a visitor's browser and your website, ending "
3548
  "when the browser is closed or when the user has been inactive on that site "
3549
  "for 30 minutes"
3550
  msgstr ""
3551
 
3552
- #: ../admin/wp-slimstat-admin.php:844
3553
  msgid ""
3554
  "Any user who has left a comment on your blog, and is thus identified by "
3555
  "Wordpress as a returning visitor"
3556
  msgstr ""
3557
 
3558
- #: ../admin/wp-slimstat-admin.php:845
3559
  msgid "Unique IP"
3560
  msgstr ""
3561
 
3562
- #: ../admin/wp-slimstat-admin.php:845
3563
  msgid ""
3564
  "Used to differentiate between multiple requests to download a file from one "
3565
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3567,148 +3530,152 @@ msgid ""
3567
  "from, it is useful, but not perfect"
3568
  msgstr ""
3569
 
3570
- #: ../admin/wp-slimstat-admin.php:846
3571
  msgid ""
3572
  "the originating IP address of a client connecting to a web server through an "
3573
  "HTTP proxy or load balancer"
3574
  msgstr ""
3575
 
3576
- #: ../admin/wp-slimstat-admin.php:847
3577
  msgid "Direct Traffic"
3578
  msgstr ""
3579
 
3580
- #: ../admin/wp-slimstat-admin.php:847
3581
  msgid ""
3582
  "All those people showing up to your Web site by typing in the URL of your "
3583
  "Web site coming or from a bookmark; some people also call this \"default "
3584
  "traffic\" or \"ambient traffic\""
3585
  msgstr ""
3586
 
3587
- #: ../admin/wp-slimstat-admin.php:848
3588
  msgid "Search Engine"
3589
  msgstr ""
3590
 
3591
- #: ../admin/wp-slimstat-admin.php:848
3592
  msgid ""
3593
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3594
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3595
  msgstr ""
3596
 
3597
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
3598
  msgid "Keywords used by your visitors to find your website on a search engine"
3599
  msgstr ""
3600
 
3601
- #: ../admin/wp-slimstat-admin.php:850
3602
  msgid "SERP"
3603
  msgstr ""
3604
 
3605
- #: ../admin/wp-slimstat-admin.php:850
3606
  msgid ""
3607
  "Short for search engine results page, the Web page that a search engine "
3608
  "returns with the results of its search. The value shown represents your rank "
3609
  "(or position) within that list of results"
3610
  msgstr ""
3611
 
3612
- #: ../admin/wp-slimstat-admin.php:851
3613
  msgid ""
3614
  "Any program used for accessing a website; this includes browsers, robots, "
3615
  "spiders and any other program that was used to retrieve information from the "
3616
  "site"
3617
  msgstr ""
3618
 
3619
- #: ../admin/wp-slimstat-admin.php:852
3620
  msgid ""
3621
  "A link from one domain to another is said to be outbound from its source "
3622
  "anchor and inbound to its target. This report lists all the links to other "
3623
  "websites followed by your visitors."
3624
  msgstr ""
3625
 
3626
- #: ../admin/wp-slimstat-admin.php:859
3627
  msgid "Basic Filters"
3628
  msgstr ""
3629
 
3630
- #: ../admin/wp-slimstat-admin.php:862
3631
  msgid "User agent (Firefox, Chrome, ...)"
3632
  msgstr ""
3633
 
3634
- #: ../admin/wp-slimstat-admin.php:863
3635
  msgid "2-letter code (us, ru, de, it, ...)"
3636
  msgstr ""
3637
 
3638
- #: ../admin/wp-slimstat-admin.php:864
3639
  msgid "IP"
3640
  msgstr ""
3641
 
3642
- #: ../admin/wp-slimstat-admin.php:864
3643
  msgid "Visitor's public IP address"
3644
  msgstr ""
3645
 
3646
- #: ../admin/wp-slimstat-admin.php:866
3647
  msgid ""
3648
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3649
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3650
  "column) for more information"
3651
  msgstr ""
3652
 
3653
- #: ../admin/wp-slimstat-admin.php:867
3654
  msgid ""
3655
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3656
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3657
  "manual page</a> for more information"
3658
  msgstr ""
3659
 
3660
- #: ../admin/wp-slimstat-admin.php:868
3661
  msgid "URL accessed on your site"
3662
  msgstr ""
3663
 
3664
- #: ../admin/wp-slimstat-admin.php:869
3665
  msgid "Complete address of the referrer page"
3666
  msgstr ""
3667
 
3668
- #: ../admin/wp-slimstat-admin.php:870
 
 
 
 
3669
  msgid ""
3670
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3671
  "comment"
3672
  msgstr ""
3673
 
3674
- #: ../admin/wp-slimstat-admin.php:878
3675
  msgid "Advanced Filters"
3676
  msgstr ""
3677
 
3678
- #: ../admin/wp-slimstat-admin.php:881
3679
  msgid "user agent version (9.0, 11, ...)"
3680
  msgstr ""
3681
 
3682
- #: ../admin/wp-slimstat-admin.php:882
3683
  msgid ""
3684
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3685
  "all others"
3686
  msgstr ""
3687
 
3688
- #: ../admin/wp-slimstat-admin.php:883
3689
  msgid "Pageview Attributes"
3690
  msgstr ""
3691
 
3692
- #: ../admin/wp-slimstat-admin.php:883
3693
  msgid ""
3694
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3695
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
3696
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
3697
  msgstr ""
3698
 
3699
- #: ../admin/wp-slimstat-admin.php:884
3700
  msgid "author associated to that post/page when the resource was accessed"
3701
  msgstr ""
3702
 
3703
- #: ../admin/wp-slimstat-admin.php:885
3704
  msgid "ID of the category/term associated to the resource, when available"
3705
  msgstr ""
3706
 
3707
- #: ../admin/wp-slimstat-admin.php:886
3708
  msgid "visitor's originating IP address, if available"
3709
  msgstr ""
3710
 
3711
- #: ../admin/wp-slimstat-admin.php:887
3712
  msgid ""
3713
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
3714
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -3717,50 +3684,50 @@ msgid ""
3717
  "information"
3718
  msgstr ""
3719
 
3720
- #: ../admin/wp-slimstat-admin.php:888
3721
  msgid "Screen Resolution"
3722
  msgstr ""
3723
 
3724
- #: ../admin/wp-slimstat-admin.php:888
3725
  msgid "viewport width and height (1024x768, 800x600, ...)"
3726
  msgstr ""
3727
 
3728
- #: ../admin/wp-slimstat-admin.php:889
3729
  msgid ""
3730
  "generally used in conjunction with <em>is not empty</em>, identifies human "
3731
  "visitors"
3732
  msgstr ""
3733
 
3734
- #: ../admin/wp-slimstat-admin.php:890
3735
  msgid "Date Filters"
3736
  msgstr ""
3737
 
3738
- #: ../admin/wp-slimstat-admin.php:890
3739
  msgid ""
3740
  "you can specify the timeframe by entering a number in the <em>interval</em> "
3741
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
3742
  "year=blank, interval=-1 will set a year-to-date filter)"
3743
  msgstr ""
3744
 
3745
- #: ../admin/wp-slimstat-admin.php:891
3746
  msgid "SERP Position"
3747
  msgstr ""
3748
 
3749
- #: ../admin/wp-slimstat-admin.php:891
3750
  msgid ""
3751
  "set the filter to Referer contains cd=N&, where N is the position you are "
3752
  "looking for"
3753
  msgstr ""
3754
 
3755
- #: ../admin/wp-slimstat-admin.php:918
3756
  msgid "Yes"
3757
  msgstr ""
3758
 
3759
- #: ../admin/wp-slimstat-admin.php:919
3760
  msgid "No"
3761
  msgstr ""
3762
 
3763
- #: ../admin/wp-slimstat-admin.php:920
3764
  msgid "Site Specific"
3765
  msgstr ""
3766
 
@@ -3789,1539 +3756,1623 @@ msgid "blackberry os"
3789
  msgstr "BlackBerry OS"
3790
 
3791
  #: ../languages/dynamic_strings.php:11
 
 
 
 
3792
  msgid "chromeos"
3793
  msgstr "Chrome OS"
3794
 
3795
- #: ../languages/dynamic_strings.php:12
 
 
 
 
3796
  msgid "cygwin"
3797
  msgstr "Cygwin"
3798
 
3799
- #: ../languages/dynamic_strings.php:13
3800
  msgid "debian"
3801
  msgstr "Debian"
3802
 
3803
- #: ../languages/dynamic_strings.php:14
3804
  msgid "digital unix"
3805
  msgstr "Digital Unix"
3806
 
3807
- #: ../languages/dynamic_strings.php:15
 
 
 
 
3808
  msgid "firefoxos"
3809
  msgstr "Firefox OS"
3810
 
3811
- #: ../languages/dynamic_strings.php:16
3812
  msgid "freebsd"
3813
  msgstr "FreeBSD"
3814
 
3815
- #: ../languages/dynamic_strings.php:17
 
 
 
 
3816
  msgid "hp-ux"
3817
  msgstr "HP-UX"
3818
 
3819
- #: ../languages/dynamic_strings.php:18
3820
  msgid "ios"
3821
  msgstr "iPhone OS X"
3822
 
3823
- #: ../languages/dynamic_strings.php:19
 
 
 
 
3824
  msgid "iphone osx"
3825
  msgstr "iPhone OS X"
3826
 
3827
- #: ../languages/dynamic_strings.php:20
3828
  msgid "irix"
3829
  msgstr "IRIX"
3830
 
3831
- #: ../languages/dynamic_strings.php:21
3832
  msgid "java"
3833
  msgstr "Java"
3834
 
3835
- #: ../languages/dynamic_strings.php:22
 
 
 
 
 
 
 
 
3836
  msgid "linux"
3837
  msgstr "Linux"
3838
 
3839
- #: ../languages/dynamic_strings.php:23
3840
  msgid "mac"
3841
  msgstr "Mac"
3842
 
3843
- #: ../languages/dynamic_strings.php:24
3844
  msgid "mac68k"
3845
  msgstr "Mac 68k"
3846
 
3847
- #: ../languages/dynamic_strings.php:25
3848
  msgid "macosx"
3849
  msgstr "Mac OS X"
3850
 
3851
- #: ../languages/dynamic_strings.php:26
3852
  msgid "macppc"
3853
  msgstr "Mac PowerPC"
3854
 
3855
- #: ../languages/dynamic_strings.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3856
  msgid "netbsd"
3857
  msgstr "NetBSD"
3858
 
3859
- #: ../languages/dynamic_strings.php:28
 
 
 
 
3860
  msgid "openbsd"
3861
  msgstr "OpenBSD"
3862
 
3863
- #: ../languages/dynamic_strings.php:29
3864
  msgid "openvms"
3865
  msgstr "OpenVMS"
3866
 
3867
- #: ../languages/dynamic_strings.php:30
3868
  msgid "os/2"
3869
  msgstr "IBM OS/2"
3870
 
3871
- #: ../languages/dynamic_strings.php:31
3872
  msgid "palm"
3873
  msgstr "Palm"
3874
 
3875
- #: ../languages/dynamic_strings.php:32
 
 
 
 
 
 
 
 
 
 
 
 
3876
  msgid "powertv"
3877
  msgstr "PowerTV"
3878
 
3879
- #: ../languages/dynamic_strings.php:33
 
 
 
 
3880
  msgid "rim os"
3881
  msgstr "BlackBerry OS"
3882
 
3883
- #: ../languages/dynamic_strings.php:34
3884
  msgid "risc os"
3885
  msgstr "Risc OS"
3886
 
3887
- #: ../languages/dynamic_strings.php:35
 
 
 
 
3888
  msgid "solaris"
3889
  msgstr "Solaris"
3890
 
3891
- #: ../languages/dynamic_strings.php:36
3892
  msgid "sunos"
3893
  msgstr "Sun OS"
3894
 
3895
- #: ../languages/dynamic_strings.php:37
 
 
 
 
3896
  msgid "symbianos"
3897
  msgstr "Symbian OS"
3898
 
3899
- #: ../languages/dynamic_strings.php:38
3900
  msgid "ubuntu"
3901
  msgstr "Ubuntu"
3902
 
3903
- #: ../languages/dynamic_strings.php:39
3904
  msgid "unix"
3905
  msgstr "Unix"
3906
 
3907
- #: ../languages/dynamic_strings.php:40
3908
  msgid "unknown"
3909
  msgstr "Unknown"
3910
 
3911
- #: ../languages/dynamic_strings.php:41
 
 
 
 
3912
  msgid "wap"
3913
  msgstr "WAP"
3914
 
3915
- #: ../languages/dynamic_strings.php:42
3916
  msgid "webos"
3917
  msgstr "WebOS"
3918
 
3919
- #: ../languages/dynamic_strings.php:43
3920
  msgid "win10"
3921
  msgstr "Windows 10"
3922
 
3923
- #: ../languages/dynamic_strings.php:44
3924
  msgid "win16"
3925
  msgstr "Windows 16-bit"
3926
 
3927
- #: ../languages/dynamic_strings.php:45
3928
  msgid "win2000"
3929
  msgstr "Windows 2000"
3930
 
3931
- #: ../languages/dynamic_strings.php:46
3932
  msgid "win2003"
3933
  msgstr "Windows 2003"
3934
 
3935
- #: ../languages/dynamic_strings.php:47
3936
  msgid "win31"
3937
  msgstr "Windows 3.1"
3938
 
3939
- #: ../languages/dynamic_strings.php:48
3940
  msgid "win32"
3941
  msgstr "Windows 32-bit"
3942
 
3943
- #: ../languages/dynamic_strings.php:49 ../languages/dynamic_strings.php:50
3944
  msgid "win7"
3945
  msgstr "Windows 7"
3946
 
3947
- #: ../languages/dynamic_strings.php:51
3948
  msgid "win8"
3949
  msgstr "Windows 8"
3950
 
3951
- #: ../languages/dynamic_strings.php:52
3952
  msgid "win8.1"
3953
  msgstr "Windows 8.1"
3954
 
3955
- #: ../languages/dynamic_strings.php:53
3956
  msgid "win95"
3957
  msgstr "Windows 95"
3958
 
3959
- #: ../languages/dynamic_strings.php:54
3960
  msgid "win98"
3961
  msgstr "Windows 98"
3962
 
3963
- #: ../languages/dynamic_strings.php:55
3964
  msgid "wince"
3965
  msgstr "Windows CE"
3966
 
3967
- #: ../languages/dynamic_strings.php:56
3968
- msgid "windows phone"
3969
- msgstr "Windows Phone"
3970
-
3971
- #: ../languages/dynamic_strings.php:57
3972
  msgid "winme"
3973
  msgstr "Windows ME"
3974
 
3975
- #: ../languages/dynamic_strings.php:58
3976
  msgid "winnt"
3977
  msgstr "Windows NT"
3978
 
3979
- #: ../languages/dynamic_strings.php:59
3980
  msgid "winphone7"
3981
  msgstr "Windows Phone"
3982
 
3983
- #: ../languages/dynamic_strings.php:60
3984
  msgid "winphone7.5"
3985
  msgstr "Windows Phone 7.5"
3986
 
3987
- #: ../languages/dynamic_strings.php:61
3988
  msgid "winphone8"
3989
  msgstr "Windows Phone 8"
3990
 
3991
- #: ../languages/dynamic_strings.php:62
3992
  msgid "winphone8.1"
3993
  msgstr "Windows Phone 8.1"
3994
 
3995
- #: ../languages/dynamic_strings.php:63
 
 
 
 
3996
  msgid "winvista"
3997
  msgstr "Windows Vista"
3998
 
3999
- #: ../languages/dynamic_strings.php:64
4000
  msgid "winxp"
4001
  msgstr "Windows XP"
4002
 
4003
- #: ../languages/dynamic_strings.php:65
4004
  msgid "wyderos"
4005
  msgstr "WyderOS"
4006
 
4007
- #: ../languages/dynamic_strings.php:68
 
 
 
 
4008
  msgid "acrobat"
4009
  msgstr "Acrobat Reader"
4010
 
4011
- #: ../languages/dynamic_strings.php:69
4012
  msgid "director"
4013
  msgstr "Macromedia Director"
4014
 
4015
- #: ../languages/dynamic_strings.php:70
4016
  msgid "flash"
4017
  msgstr "Adobe Flash Player"
4018
 
4019
- #: ../languages/dynamic_strings.php:71
4020
  msgid "mediaplayer"
4021
  msgstr "Microsoft Media Player"
4022
 
4023
- #: ../languages/dynamic_strings.php:72
4024
  msgid "quicktime"
4025
  msgstr "QuickTime"
4026
 
4027
- #: ../languages/dynamic_strings.php:73
4028
  msgid "real"
4029
  msgstr "Real Player"
4030
 
4031
- #: ../languages/dynamic_strings.php:74
4032
  msgid "silverlight"
4033
  msgstr "Microsoft Silverlight"
4034
 
4035
- #: ../languages/dynamic_strings.php:77
4036
  msgid "p-and"
4037
  msgstr "Android"
4038
 
4039
- #: ../languages/dynamic_strings.php:78
4040
  msgid "p-bla"
4041
  msgstr "BlackBerry"
4042
 
4043
- #: ../languages/dynamic_strings.php:79
4044
  msgid "p-chr"
4045
  msgstr "Chrome OS"
4046
 
4047
- #: ../languages/dynamic_strings.php:80
4048
  msgid "p-fir"
4049
  msgstr "Fire OS"
4050
 
4051
- #: ../languages/dynamic_strings.php:81
4052
  msgid "p-fre"
4053
  msgstr "Linux FreeBSD"
4054
 
4055
- #: ../languages/dynamic_strings.php:82
4056
  msgid "p-ios"
4057
  msgstr "Apple iOS"
4058
 
4059
- #: ../languages/dynamic_strings.php:83
4060
  msgid "p-jav"
4061
  msgstr "Java-based OS"
4062
 
4063
- #: ../languages/dynamic_strings.php:84
4064
  msgid "p-lin"
4065
  msgstr "Linux"
4066
 
4067
- #: ../languages/dynamic_strings.php:85
4068
  msgid "p-mac"
4069
  msgstr "Apple"
4070
 
4071
- #: ../languages/dynamic_strings.php:86
4072
  msgid "p-rim"
4073
  msgstr "Blackberry RIM"
4074
 
4075
- #: ../languages/dynamic_strings.php:87
4076
  msgid "p-sym"
4077
  msgstr "Symbian OS"
4078
 
4079
- #: ../languages/dynamic_strings.php:88
4080
  msgid "p-ubu"
4081
  msgstr "Linux Ubuntu"
4082
 
4083
- #: ../languages/dynamic_strings.php:89
4084
  msgid "p-unk"
4085
  msgstr "Unknown"
4086
 
4087
- #: ../languages/dynamic_strings.php:90
4088
  msgid "p-win"
4089
  msgstr "Microsoft"
4090
 
4091
  # Afrikaans
4092
- #: ../languages/dynamic_strings.php:93
4093
  msgid "l-af"
4094
  msgstr "Afrikaans"
4095
 
4096
  # Afrikaans
4097
- #: ../languages/dynamic_strings.php:94
4098
  msgid "l-af-za"
4099
  msgstr "Afrikaans (South Africa)"
4100
 
4101
  # Arabic
4102
- #: ../languages/dynamic_strings.php:95
4103
  msgid "l-ar"
4104
  msgstr "Arabic"
4105
 
4106
  # Arabic
4107
- #: ../languages/dynamic_strings.php:96
4108
  msgid "l-ar-ae"
4109
  msgstr "Arabic (U.A.E.)"
4110
 
4111
  # Arabic
4112
- #: ../languages/dynamic_strings.php:97
4113
  msgid "l-ar-bh"
4114
  msgstr "Arabic (Bahrain)"
4115
 
4116
  # Arabic
4117
- #: ../languages/dynamic_strings.php:98
4118
  msgid "l-ar-dz"
4119
  msgstr "Arabic (Algeria)"
4120
 
4121
  # Arabic
4122
- #: ../languages/dynamic_strings.php:99
4123
  msgid "l-ar-eg"
4124
  msgstr "Arabic (Egypt)"
4125
 
4126
  # Arabic
4127
- #: ../languages/dynamic_strings.php:100
4128
  msgid "l-ar-iq"
4129
  msgstr "Arabic (Iraq)"
4130
 
4131
  # Arabic
4132
- #: ../languages/dynamic_strings.php:101
4133
  msgid "l-ar-jo"
4134
  msgstr "Arabic (Jordan)"
4135
 
4136
  # Arabic
4137
- #: ../languages/dynamic_strings.php:102
4138
  msgid "l-ar-kw"
4139
  msgstr "Arabic (Kuwait)"
4140
 
4141
  # Arabic
4142
- #: ../languages/dynamic_strings.php:103
4143
  msgid "l-ar-lb"
4144
  msgstr "Arabic (Lebanon)"
4145
 
4146
  # Arabic
4147
- #: ../languages/dynamic_strings.php:104
4148
  msgid "l-ar-ly"
4149
  msgstr "Arabic (Libya)"
4150
 
4151
  # Arabic
4152
- #: ../languages/dynamic_strings.php:105
4153
  msgid "l-ar-ma"
4154
  msgstr "Arabic (Morocco)"
4155
 
4156
  # Arabic
4157
- #: ../languages/dynamic_strings.php:106
4158
  msgid "l-ar-om"
4159
  msgstr "Arabic (Oman)"
4160
 
4161
  # Arabic
4162
- #: ../languages/dynamic_strings.php:107
4163
  msgid "l-ar-qa"
4164
  msgstr "Arabic (Qatar)"
4165
 
4166
  # Arabic
4167
- #: ../languages/dynamic_strings.php:108
4168
  msgid "l-ar-sa"
4169
  msgstr "Arabic (Saudi Arabia)"
4170
 
4171
  # Arabic
4172
- #: ../languages/dynamic_strings.php:109
4173
  msgid "l-ar-sy"
4174
  msgstr "Arabic (Syria)"
4175
 
4176
  # Arabic
4177
- #: ../languages/dynamic_strings.php:110
4178
  msgid "l-ar-tn"
4179
  msgstr "Arabic (Tunisia)"
4180
 
4181
  # Arabic
4182
- #: ../languages/dynamic_strings.php:111
4183
  msgid "l-ar-ye"
4184
  msgstr "Arabic (Yemen)"
4185
 
4186
  # Azerbaijani
4187
- #: ../languages/dynamic_strings.php:112
4188
  msgid "l-az"
4189
  msgstr "Azerbaijani"
4190
 
4191
  # Azerbaijani
4192
- #: ../languages/dynamic_strings.php:113
4193
  msgid "l-az-az"
4194
  msgstr "Azeri (Latin)"
4195
 
4196
  # Belarusian
4197
- #: ../languages/dynamic_strings.php:114
4198
  msgid "l-be"
4199
  msgstr "Belarusian"
4200
 
4201
  # Belarusian
4202
- #: ../languages/dynamic_strings.php:115
4203
  msgid "l-be-by"
4204
  msgstr "Belarusian (Belarus)"
4205
 
4206
  # Bulgarian
4207
- #: ../languages/dynamic_strings.php:116
4208
  msgid "l-bg"
4209
  msgstr "Bulgarian"
4210
 
4211
  # Bulgarian
4212
- #: ../languages/dynamic_strings.php:117
4213
  msgid "l-bg-bg"
4214
  msgstr "Bulgarian (Bulgaria)"
4215
 
4216
  # Bosnian
4217
- #: ../languages/dynamic_strings.php:118
4218
  msgid "l-bs-ba"
4219
  msgstr "Bosnian"
4220
 
4221
  # Catalan; Valencian
4222
- #: ../languages/dynamic_strings.php:119
4223
  msgid "l-ca"
4224
  msgstr "Catalan"
4225
 
4226
  # Catalan; Valencian
4227
- #: ../languages/dynamic_strings.php:120
4228
  msgid "l-ca-es"
4229
  msgstr "Catalan; Valencian"
4230
 
4231
  # Czech
4232
- #: ../languages/dynamic_strings.php:121
4233
  msgid "l-cs"
4234
  msgstr "Czech"
4235
 
4236
  # Czech
4237
- #: ../languages/dynamic_strings.php:122
4238
  msgid "l-cs-cz"
4239
  msgstr "Czech (Czech Republic)"
4240
 
4241
  # Welsh
4242
- #: ../languages/dynamic_strings.php:123
4243
  msgid "l-cy"
4244
  msgstr "Welsh"
4245
 
4246
  # Welsh
4247
- #: ../languages/dynamic_strings.php:124
4248
  msgid "l-cy-gb"
4249
  msgstr "Welsh (UK)"
4250
 
4251
  # Danish
4252
- #: ../languages/dynamic_strings.php:125
4253
  msgid "l-da"
4254
  msgstr "Danish"
4255
 
4256
  # Danish
4257
- #: ../languages/dynamic_strings.php:126
4258
  msgid "l-da-dk"
4259
  msgstr "Danish (Denmark)"
4260
 
4261
  # German
4262
- #: ../languages/dynamic_strings.php:127
4263
  msgid "l-de"
4264
  msgstr "German"
4265
 
4266
  # German
4267
- #: ../languages/dynamic_strings.php:128
4268
  msgid "l-de-at"
4269
  msgstr "German (Austria)"
4270
 
4271
  # German
4272
- #: ../languages/dynamic_strings.php:129
4273
  msgid "l-de-ch"
4274
  msgstr "German (Switzerland)"
4275
 
4276
  # German
4277
- #: ../languages/dynamic_strings.php:130
4278
  msgid "l-de-de"
4279
  msgstr "German (Germany)"
4280
 
4281
  # German
4282
- #: ../languages/dynamic_strings.php:131
4283
  msgid "l-de-li"
4284
  msgstr "German (Liechtenstein)"
4285
 
4286
  # German
4287
- #: ../languages/dynamic_strings.php:132
4288
  msgid "l-de-lu"
4289
  msgstr "German (Luxembourg)"
4290
 
4291
  # Dhivehi; Divehi; Maldivian
4292
- #: ../languages/dynamic_strings.php:133
4293
  msgid "l-dv"
4294
  msgstr "Dhivehi; Divehi; Maldivian"
4295
 
4296
  # Dhivehi; Divehi; Maldivian
4297
- #: ../languages/dynamic_strings.php:134
4298
  msgid "l-dv-mv"
4299
  msgstr "Maldivian"
4300
 
4301
  # Modern Greek (1453-)
4302
- #: ../languages/dynamic_strings.php:135
4303
  msgid "l-el"
4304
  msgstr "Greek"
4305
 
4306
  # Modern Greek (1453-)
4307
- #: ../languages/dynamic_strings.php:136
4308
  msgid "l-el-gr"
4309
  msgstr "Greek (Greece)"
4310
 
4311
  # English
4312
- #: ../languages/dynamic_strings.php:137
4313
  msgid "l-en"
4314
  msgstr "English"
4315
 
4316
  # English
4317
- #: ../languages/dynamic_strings.php:138
4318
  msgid "l-en-au"
4319
  msgstr "English (Australia)"
4320
 
4321
  # English
4322
- #: ../languages/dynamic_strings.php:139
4323
  msgid "l-en-bz"
4324
  msgstr "English (Belize)"
4325
 
4326
  # English
4327
- #: ../languages/dynamic_strings.php:140
4328
  msgid "l-en-ca"
4329
  msgstr "English (Canada)"
4330
 
4331
  # English
4332
- #: ../languages/dynamic_strings.php:141
4333
  msgid "l-en-cb"
4334
  msgstr "English (Caribbean)"
4335
 
4336
  # English
4337
- #: ../languages/dynamic_strings.php:142
4338
  msgid "l-en-gb"
4339
  msgstr "English (Great Britain)"
4340
 
4341
  # English
4342
- #: ../languages/dynamic_strings.php:143
4343
  msgid "l-en-ie"
4344
  msgstr "English (Ireland)"
4345
 
4346
  # English
4347
- #: ../languages/dynamic_strings.php:144
4348
  msgid "l-en-jm"
4349
  msgstr "English (Jamaica)"
4350
 
4351
  # English
4352
- #: ../languages/dynamic_strings.php:145
4353
  msgid "l-en-nz"
4354
  msgstr "English (New Zealand)"
4355
 
4356
  # English
4357
- #: ../languages/dynamic_strings.php:146
4358
  msgid "l-en-ph"
4359
  msgstr "English (Philippines)"
4360
 
4361
  # English
4362
- #: ../languages/dynamic_strings.php:147
4363
  msgid "l-en-tt"
4364
  msgstr "English (Trinidad and Tobago)"
4365
 
4366
  # English
4367
- #: ../languages/dynamic_strings.php:148
4368
  msgid "l-en-us"
4369
  msgstr "English (USA)"
4370
 
4371
  # English
4372
- #: ../languages/dynamic_strings.php:149
4373
  msgid "l-en-za"
4374
  msgstr "English (South Africa)"
4375
 
4376
  # English
4377
- #: ../languages/dynamic_strings.php:150
4378
  msgid "l-en-zw"
4379
  msgstr "English (Zimbabwe)"
4380
 
4381
  # Esperanto
4382
- #: ../languages/dynamic_strings.php:151
4383
  msgid "l-eo"
4384
  msgstr "Esperanto"
4385
 
4386
  # Spanish; Castilian
4387
- #: ../languages/dynamic_strings.php:152
4388
  msgid "l-es"
4389
  msgstr "Spanish"
4390
 
4391
  # Spanish; Castilian
4392
- #: ../languages/dynamic_strings.php:153
4393
  msgid "l-es-ar"
4394
  msgstr "Spanish (Argentina)"
4395
 
4396
  # Spanish; Castilian
4397
- #: ../languages/dynamic_strings.php:154
4398
  msgid "l-es-bo"
4399
  msgstr "Spanish (Bolivia)"
4400
 
4401
  # Spanish; Castilian
4402
- #: ../languages/dynamic_strings.php:155
4403
  msgid "l-es-cl"
4404
  msgstr "Spanish (Chile)"
4405
 
4406
  # Spanish; Castilian
4407
- #: ../languages/dynamic_strings.php:156
4408
  msgid "l-es-co"
4409
  msgstr "Spanish (Colombia)"
4410
 
4411
  # Spanish; Castilian
4412
- #: ../languages/dynamic_strings.php:157
4413
  msgid "l-es-cr"
4414
  msgstr "Spanish (Costa Rica)"
4415
 
4416
  # Spanish; Castilian
4417
- #: ../languages/dynamic_strings.php:158
4418
  msgid "l-es-do"
4419
  msgstr "Spanish (Dominican Republic)"
4420
 
4421
  # Spanish; Castilian
4422
- #: ../languages/dynamic_strings.php:159
4423
  msgid "l-es-ec"
4424
  msgstr "Spanish (Ecuador)"
4425
 
4426
  # Spanish; Castilian
4427
- #: ../languages/dynamic_strings.php:160
4428
  msgid "l-es-es"
4429
  msgstr "Spanish (Spain)"
4430
 
4431
  # Spanish; Castilian
4432
- #: ../languages/dynamic_strings.php:161
4433
  msgid "l-es-gt"
4434
  msgstr "Spanish (Guatemala)"
4435
 
4436
  # Spanish; Castilian
4437
- #: ../languages/dynamic_strings.php:162
4438
  msgid "l-es-hn"
4439
  msgstr "Spanish (Honduras)"
4440
 
4441
  # Spanish; Castilian
4442
- #: ../languages/dynamic_strings.php:163
4443
  msgid "l-es-mx"
4444
  msgstr "Spanish (Mexico)"
4445
 
4446
  # Spanish; Castilian
4447
- #: ../languages/dynamic_strings.php:164
4448
  msgid "l-es-ni"
4449
  msgstr "Spanish (Nicaragua)"
4450
 
4451
  # Spanish; Castilian
4452
- #: ../languages/dynamic_strings.php:165
4453
  msgid "l-es-pa"
4454
  msgstr "Spanish (Panama)"
4455
 
4456
  # Spanish; Castilian
4457
- #: ../languages/dynamic_strings.php:166
4458
  msgid "l-es-pe"
4459
  msgstr "Spanish (Peru)"
4460
 
4461
  # Spanish; Castilian
4462
- #: ../languages/dynamic_strings.php:167
4463
  msgid "l-es-pr"
4464
  msgstr "Spanish (Puerto Rico)"
4465
 
4466
  # Spanish; Castilian
4467
- #: ../languages/dynamic_strings.php:168
4468
  msgid "l-es-py"
4469
  msgstr "Spanish (Paraguay)"
4470
 
4471
  # Spanish; Castilian
4472
- #: ../languages/dynamic_strings.php:169
4473
  msgid "l-es-sv"
4474
  msgstr "Spanish (El Salvador)"
4475
 
4476
  # Spanish; Castilian
4477
- #: ../languages/dynamic_strings.php:170
4478
  msgid "l-es-uy"
4479
  msgstr "Spanish (Uruguay)"
4480
 
4481
  # Spanish; Castilian
4482
- #: ../languages/dynamic_strings.php:171
4483
  msgid "l-es-ve"
4484
  msgstr "Spanish (Venezuela)"
4485
 
4486
  # Estonian
4487
- #: ../languages/dynamic_strings.php:172
4488
  msgid "l-et"
4489
  msgstr "Estonian"
4490
 
4491
  # Estonian
4492
- #: ../languages/dynamic_strings.php:173
4493
  msgid "l-et-ee"
4494
  msgstr "Estonian (Estonia)"
4495
 
4496
  # Basque
4497
- #: ../languages/dynamic_strings.php:174
4498
  msgid "l-eu"
4499
  msgstr "Basque"
4500
 
4501
  # Basque
4502
- #: ../languages/dynamic_strings.php:175
4503
  msgid "l-eu-es"
4504
  msgstr "Basque (Spain)"
4505
 
4506
  # Persian
4507
- #: ../languages/dynamic_strings.php:176
4508
  msgid "l-fa"
4509
  msgstr "Persian"
4510
 
4511
  # Persian
4512
- #: ../languages/dynamic_strings.php:177
4513
  msgid "l-fa-ir"
4514
  msgstr "Persian (Iran)"
4515
 
4516
  # Finnish
4517
- #: ../languages/dynamic_strings.php:178
4518
  msgid "l-fi"
4519
  msgstr "Finnish"
4520
 
4521
  # Finnish
4522
- #: ../languages/dynamic_strings.php:179
4523
  msgid "l-fi-fi"
4524
  msgstr "Finnish (Finland)"
4525
 
4526
  # Faroese
4527
- #: ../languages/dynamic_strings.php:180
4528
  msgid "l-fo"
4529
  msgstr "Faroese"
4530
 
4531
  # Faroese
4532
- #: ../languages/dynamic_strings.php:181
4533
  msgid "l-fo-fo"
4534
  msgstr "Faroese (Faroe Islands)"
4535
 
4536
  # French
4537
- #: ../languages/dynamic_strings.php:182
4538
  msgid "l-fr"
4539
  msgstr "French"
4540
 
4541
  # French
4542
- #: ../languages/dynamic_strings.php:183
4543
  msgid "l-fr-be"
4544
  msgstr "French (Belgium)"
4545
 
4546
  # French
4547
- #: ../languages/dynamic_strings.php:184
4548
  msgid "l-fr-ca"
4549
  msgstr "French (Canada)"
4550
 
4551
  # French
4552
- #: ../languages/dynamic_strings.php:185
4553
  msgid "l-fr-ch"
4554
  msgstr "French (Switzerland)"
4555
 
4556
  # French
4557
- #: ../languages/dynamic_strings.php:186
4558
  msgid "l-fr-fr"
4559
  msgstr "French (France)"
4560
 
4561
  # French
4562
- #: ../languages/dynamic_strings.php:187
4563
  msgid "l-fr-lu"
4564
  msgstr "French (Luxembourg)"
4565
 
4566
  # French
4567
- #: ../languages/dynamic_strings.php:188
4568
  msgid "l-fr-mc"
4569
  msgstr "French (Monaco)"
4570
 
4571
  # Galician
4572
- #: ../languages/dynamic_strings.php:189
4573
  msgid "l-gl"
4574
  msgstr "Galician"
4575
 
4576
  # Spanish; Castilian
4577
- #: ../languages/dynamic_strings.php:190
4578
  msgid "l-gl-es"
4579
  msgstr "Galician (Spain)"
4580
 
4581
  # Gujarati
4582
- #: ../languages/dynamic_strings.php:191
4583
  msgid "l-gu"
4584
  msgstr "Gujarati"
4585
 
4586
  # Gujarati
4587
- #: ../languages/dynamic_strings.php:192
4588
  msgid "l-gu-in"
4589
  msgstr "Gujarati (India)"
4590
 
4591
  # Hebrew
4592
- #: ../languages/dynamic_strings.php:193
4593
  msgid "l-he"
4594
  msgstr "Hebrew"
4595
 
4596
  # Hebrew
4597
- #: ../languages/dynamic_strings.php:194
4598
  msgid "l-he-il"
4599
  msgstr "Hebrew (Israel)"
4600
 
4601
  # Hindi
4602
- #: ../languages/dynamic_strings.php:195
4603
  msgid "l-hi"
4604
  msgstr "Hindi"
4605
 
4606
  # Hindi
4607
- #: ../languages/dynamic_strings.php:196
4608
  msgid "l-hi-in"
4609
  msgstr "Hindi (India)"
4610
 
4611
  # Croatian
4612
- #: ../languages/dynamic_strings.php:197
4613
  msgid "l-hr"
4614
  msgstr "Croatian"
4615
 
4616
  # Croatian
4617
- #: ../languages/dynamic_strings.php:198
4618
  msgid "l-hr-ba"
4619
  msgstr "Croatian (Bosnia)"
4620
 
4621
  # Croatian
4622
- #: ../languages/dynamic_strings.php:199
4623
  msgid "l-hr-hr"
4624
  msgstr "Croatian (Croatia)"
4625
 
4626
  # Hungarian
4627
- #: ../languages/dynamic_strings.php:200
4628
  msgid "l-hu"
4629
  msgstr "Hungarian"
4630
 
4631
  # Hungarian
4632
- #: ../languages/dynamic_strings.php:201
4633
  msgid "l-hu-hu"
4634
  msgstr "Hungarian (Hungary)"
4635
 
4636
  # Armenian
4637
- #: ../languages/dynamic_strings.php:202
4638
  msgid "l-hy"
4639
  msgstr "Armenian"
4640
 
4641
  # Armenian
4642
- #: ../languages/dynamic_strings.php:203
4643
  msgid "l-hy-am"
4644
  msgstr "Armenian (Armenia)"
4645
 
4646
- #: ../languages/dynamic_strings.php:204
4647
  msgid "l-id"
4648
  msgstr "Indonesian"
4649
 
4650
- #: ../languages/dynamic_strings.php:205
4651
  msgid "l-id-id"
4652
  msgstr "Indonesian"
4653
 
4654
  # Icelandic
4655
- #: ../languages/dynamic_strings.php:206
4656
  msgid "l-is"
4657
  msgstr "Icelandic"
4658
 
4659
  # Icelandic
4660
- #: ../languages/dynamic_strings.php:207
4661
  msgid "l-is-is"
4662
  msgstr "Icelandic (Iceland)"
4663
 
4664
  # Italian
4665
- #: ../languages/dynamic_strings.php:208
4666
  msgid "l-it"
4667
  msgstr "Italian"
4668
 
4669
  # Italian
4670
- #: ../languages/dynamic_strings.php:209
4671
  msgid "l-it-ch"
4672
  msgstr "Italian (Switzerland)"
4673
 
4674
  # Italian
4675
- #: ../languages/dynamic_strings.php:210
4676
  msgid "l-it-it"
4677
  msgstr "Italian (Italy)"
4678
 
4679
  # Japanese
4680
- #: ../languages/dynamic_strings.php:211
4681
  msgid "l-ja"
4682
  msgstr "Japanese"
4683
 
4684
  # Japanese
4685
- #: ../languages/dynamic_strings.php:212
4686
  msgid "l-ja-jp"
4687
  msgstr "Japanese (Japan)"
4688
 
4689
  # Georgian
4690
- #: ../languages/dynamic_strings.php:213
4691
  msgid "l-ka"
4692
  msgstr "Georgian"
4693
 
4694
  # Georgian
4695
- #: ../languages/dynamic_strings.php:214
4696
  msgid "l-ka-ge"
4697
  msgstr "Georgian (Georgia)"
4698
 
4699
  # Kazakh
4700
- #: ../languages/dynamic_strings.php:215
4701
  msgid "l-kk"
4702
  msgstr "Kazakh"
4703
 
4704
  # Kazakh
4705
- #: ../languages/dynamic_strings.php:216
4706
  msgid "l-kk-kz"
4707
  msgstr "Kazakh (Kazakhstan)"
4708
 
4709
  # Kannada
4710
- #: ../languages/dynamic_strings.php:217
4711
  msgid "l-kn"
4712
  msgstr "Kannada"
4713
 
4714
  # Kannada
4715
- #: ../languages/dynamic_strings.php:218
4716
  msgid "l-kn-in"
4717
  msgstr "Kannada (India)"
4718
 
4719
  # Korean
4720
- #: ../languages/dynamic_strings.php:219
4721
  msgid "l-ko"
4722
  msgstr "Korean"
4723
 
4724
  # Korean
4725
- #: ../languages/dynamic_strings.php:220
4726
  msgid "l-ko-kr"
4727
  msgstr "Korean (Korea)"
4728
 
4729
  # Korean
4730
- #: ../languages/dynamic_strings.php:221
4731
  msgid "l-kok"
4732
  msgstr "Konkani"
4733
 
4734
  # Korean
4735
- #: ../languages/dynamic_strings.php:222
4736
  msgid "l-kok-in"
4737
  msgstr "Konkani (India)"
4738
 
4739
  # Kirghiz; Kyrgyz
4740
- #: ../languages/dynamic_strings.php:223
4741
  msgid "l-ky"
4742
  msgstr "Kirghiz"
4743
 
4744
  # Kirghiz; Kyrgyz
4745
- #: ../languages/dynamic_strings.php:224
4746
  msgid "l-ky-kg"
4747
  msgstr "Kirghiz (Kazakhstan)"
4748
 
4749
  # Lithuanian
4750
- #: ../languages/dynamic_strings.php:225
4751
  msgid "l-lt"
4752
  msgstr "Lithuanian"
4753
 
4754
  # Lithuanian
4755
- #: ../languages/dynamic_strings.php:226
4756
  msgid "l-lt-lt"
4757
  msgstr "Lithuanian (Lithuania)"
4758
 
4759
  # Latvian
4760
- #: ../languages/dynamic_strings.php:227
4761
  msgid "l-lv"
4762
  msgstr "Latvian"
4763
 
4764
  # Latvian
4765
- #: ../languages/dynamic_strings.php:228
4766
  msgid "l-lv-lv"
4767
  msgstr "Latvian (Latvia)"
4768
 
4769
  # Maori
4770
- #: ../languages/dynamic_strings.php:229
4771
  msgid "l-mi"
4772
  msgstr "Maori"
4773
 
4774
  # Maori
4775
- #: ../languages/dynamic_strings.php:230
4776
  msgid "l-mi-nz"
4777
  msgstr "Maori (New Zealand)"
4778
 
4779
  # Macedonian
4780
- #: ../languages/dynamic_strings.php:231
4781
  msgid "l-mk"
4782
  msgstr "Macedonian"
4783
 
4784
  # Macedonian
4785
- #: ../languages/dynamic_strings.php:232
4786
  msgid "l-mk-ml"
4787
  msgstr "Macedonian (FYROM)"
4788
 
4789
  # Mongolian
4790
- #: ../languages/dynamic_strings.php:233
4791
  msgid "l-mn"
4792
  msgstr "Mongolian"
4793
 
4794
  # Mongolian
4795
- #: ../languages/dynamic_strings.php:234
4796
  msgid "l-mn-mn"
4797
  msgstr "Mongolian (Mongolia)"
4798
 
4799
  # Marathi
4800
- #: ../languages/dynamic_strings.php:235
4801
  msgid "l-mr"
4802
  msgstr "Marathi"
4803
 
4804
  # Marathi
4805
- #: ../languages/dynamic_strings.php:236
4806
  msgid "l-mr-in"
4807
  msgstr "Marathi (India)"
4808
 
4809
  # Malay
4810
- #: ../languages/dynamic_strings.php:237
4811
  msgid "l-ms"
4812
  msgstr "Malay"
4813
 
4814
  # Malay
4815
- #: ../languages/dynamic_strings.php:238
4816
  msgid "l-ms-bn"
4817
  msgstr "Malay (Brunei)"
4818
 
4819
  # Malay
4820
- #: ../languages/dynamic_strings.php:239
4821
  msgid "l-ms-my"
4822
  msgstr "Malay (Malaysia)"
4823
 
4824
  # Maltese
4825
- #: ../languages/dynamic_strings.php:240
4826
  msgid "l-mt"
4827
  msgstr "Maltese"
4828
 
4829
  # Maltese
4830
- #: ../languages/dynamic_strings.php:241
4831
  msgid "l-mt-mt"
4832
  msgstr "Maltese (Malta)"
4833
 
4834
  # Norwegian Bokmål
4835
- #: ../languages/dynamic_strings.php:242
4836
  msgid "l-nb"
4837
  msgstr "Norwegian; Bokmål"
4838
 
4839
  # Norwegian Bokmål
4840
- #: ../languages/dynamic_strings.php:243
4841
  msgid "l-nb-no"
4842
  msgstr "Norwegian (Norway)"
4843
 
4844
  # Dutch; Flemish
4845
- #: ../languages/dynamic_strings.php:244
4846
  msgid "l-nl"
4847
  msgstr "Dutch; Flemish"
4848
 
4849
  # Belarusian
4850
- #: ../languages/dynamic_strings.php:245
4851
  msgid "l-nl-be"
4852
  msgstr "Dutch (Belgium)"
4853
 
4854
  # Dutch; Flemish
4855
- #: ../languages/dynamic_strings.php:246
4856
  msgid "l-nl-nl"
4857
  msgstr "Dutch (The Netherlands)"
4858
 
4859
  # Norwegian Nynorsk
4860
- #: ../languages/dynamic_strings.php:247
4861
  msgid "l-nn-no"
4862
  msgstr "Norwegian; Nynorsk (Norway)"
4863
 
4864
- #: ../languages/dynamic_strings.php:248
4865
  msgid "l-ns"
4866
  msgstr "Northern Sotho"
4867
 
4868
- #: ../languages/dynamic_strings.php:249
4869
  msgid "l-ns-za"
4870
  msgstr "Northern Sotho (South Africa)"
4871
 
4872
  # Panjabi; Punjabi
4873
- #: ../languages/dynamic_strings.php:250
4874
  msgid "l-pa"
4875
  msgstr "Panjabi; Punjabi"
4876
 
4877
  # Panjabi; Punjabi
4878
- #: ../languages/dynamic_strings.php:251
4879
  msgid "l-pa-in"
4880
  msgstr "Panjabi (India)"
4881
 
4882
  # Polish
4883
- #: ../languages/dynamic_strings.php:252
4884
  msgid "l-pl"
4885
  msgstr "Polish"
4886
 
4887
  # Polish
4888
- #: ../languages/dynamic_strings.php:253
4889
  msgid "l-pl-pl"
4890
  msgstr "Polish (Poland)"
4891
 
4892
  # Pushto; Pashto
4893
- #: ../languages/dynamic_strings.php:254
4894
  msgid "l-ps"
4895
  msgstr "Pushto; Pashto"
4896
 
4897
  # Pushto; Pashto
4898
- #: ../languages/dynamic_strings.php:255
4899
  msgid "l-ps-ar"
4900
  msgstr "Pashto (Afghanistan)"
4901
 
4902
  # Portuguese
4903
- #: ../languages/dynamic_strings.php:256
4904
  msgid "l-pt"
4905
  msgstr "Portuguese"
4906
 
4907
  # Portuguese
4908
- #: ../languages/dynamic_strings.php:257
4909
  msgid "l-pt-br"
4910
  msgstr "Portuguese (Brazil)"
4911
 
4912
  # Portuguese
4913
- #: ../languages/dynamic_strings.php:258
4914
  msgid "l-pt-pt"
4915
  msgstr "Portuguese (Portugal)"
4916
 
4917
  # Quechua
4918
- #: ../languages/dynamic_strings.php:259
4919
  msgid "l-qu"
4920
  msgstr "Quechua"
4921
 
4922
  # Quechua
4923
- #: ../languages/dynamic_strings.php:260
4924
  msgid "l-qu-bo"
4925
  msgstr "Quechua (Bolivia)"
4926
 
4927
  # Quechua
4928
- #: ../languages/dynamic_strings.php:261
4929
  msgid "l-qu-ec"
4930
  msgstr "Quechua (Ecuador)"
4931
 
4932
  # Quechua
4933
- #: ../languages/dynamic_strings.php:262
4934
  msgid "l-qu-pe"
4935
  msgstr "Quechua (Peru)"
4936
 
4937
  # Romanian; Moldavian; Moldovan
4938
- #: ../languages/dynamic_strings.php:263
4939
  msgid "l-ro"
4940
  msgstr "Romanian"
4941
 
4942
  # Romanian; Moldavian; Moldovan
4943
- #: ../languages/dynamic_strings.php:264
4944
  msgid "l-ro-ro"
4945
  msgstr "Romanian (Romania)"
4946
 
4947
  # Russian
4948
- #: ../languages/dynamic_strings.php:265
4949
  msgid "l-ru"
4950
  msgstr "Russian"
4951
 
4952
  # Russian
4953
- #: ../languages/dynamic_strings.php:266
4954
  msgid "l-ru-ru"
4955
  msgstr "Russian (Russia)"
4956
 
4957
  # Sanskrit
4958
- #: ../languages/dynamic_strings.php:267
4959
  msgid "l-sa"
4960
  msgstr "Sanskrit"
4961
 
4962
  # Sanskrit (India)
4963
- #: ../languages/dynamic_strings.php:268
4964
  msgid "l-sa-in"
4965
  msgstr "Sanskrit (India)"
4966
 
4967
  # Northern Sami
4968
- #: ../languages/dynamic_strings.php:269
4969
  msgid "l-se"
4970
  msgstr "Northern Sami"
4971
 
4972
  # Northern Sami
4973
- #: ../languages/dynamic_strings.php:270
4974
  msgid "l-se-fi"
4975
  msgstr "Northern Sami (Finland)"
4976
 
4977
  # Northern Sami
4978
- #: ../languages/dynamic_strings.php:271
4979
  msgid "l-se-no"
4980
  msgstr "Northern Sami (Norway)"
4981
 
4982
  # Northern Sami
4983
- #: ../languages/dynamic_strings.php:272
4984
  msgid "l-se-se"
4985
  msgstr "Northern Sami (Sweden)"
4986
 
4987
  # Slovak
4988
- #: ../languages/dynamic_strings.php:273
4989
  msgid "l-sk"
4990
  msgstr "Slovak"
4991
 
4992
  # Slovak
4993
- #: ../languages/dynamic_strings.php:274
4994
  msgid "l-sk-sk"
4995
  msgstr "Slovak (Slovakia)"
4996
 
4997
  # Slovenian
4998
- #: ../languages/dynamic_strings.php:275
4999
  msgid "l-sl"
5000
  msgstr "Slovenian"
5001
 
5002
  # Slovenian
5003
- #: ../languages/dynamic_strings.php:276
5004
  msgid "l-sl-si"
5005
  msgstr "Slovenian (Slovenia)"
5006
 
5007
  # Albanian
5008
- #: ../languages/dynamic_strings.php:277
5009
  msgid "l-sq"
5010
  msgstr "Albanian"
5011
 
5012
  # Albanian
5013
- #: ../languages/dynamic_strings.php:278
5014
  msgid "l-sq-al"
5015
  msgstr "Albanian (Albania)"
5016
 
5017
  # Serbian
5018
- #: ../languages/dynamic_strings.php:279
5019
  msgid "l-sr-ba"
5020
  msgstr "Serbian (Bosnia and Herzegovina)"
5021
 
5022
  # Serbian
5023
- #: ../languages/dynamic_strings.php:280
5024
  msgid "l-sr-sp"
5025
  msgstr "Serbian (Serbia and Montenegro)"
5026
 
5027
  # Swedish
5028
- #: ../languages/dynamic_strings.php:281
5029
  msgid "l-sv"
5030
  msgstr "Swedish"
5031
 
5032
  # Swedish
5033
- #: ../languages/dynamic_strings.php:282
5034
  msgid "l-sv-fi"
5035
  msgstr "Swedish (Finland)"
5036
 
5037
  # Swedish
5038
- #: ../languages/dynamic_strings.php:283
5039
  msgid "l-sv-se"
5040
  msgstr "Swedish (Sweden)"
5041
 
5042
  # Swahili
5043
- #: ../languages/dynamic_strings.php:284
5044
  msgid "l-sw"
5045
  msgstr "Swahili"
5046
 
5047
  # Swahili
5048
- #: ../languages/dynamic_strings.php:285
5049
  msgid "l-sw-ke"
5050
  msgstr "Swahili (Kenya)"
5051
 
5052
  # Tamil
5053
- #: ../languages/dynamic_strings.php:286
5054
  msgid "l-ta"
5055
  msgstr "Tamil"
5056
 
5057
  # Tamil
5058
- #: ../languages/dynamic_strings.php:287
5059
  msgid "l-ta-in"
5060
  msgstr "Tamil (India)"
5061
 
5062
  # Telugu
5063
- #: ../languages/dynamic_strings.php:288
5064
  msgid "l-te"
5065
  msgstr "Telugu"
5066
 
5067
  # Telugu
5068
- #: ../languages/dynamic_strings.php:289
5069
  msgid "l-te-in"
5070
  msgstr "Telugu (India)"
5071
 
5072
  # Thai
5073
- #: ../languages/dynamic_strings.php:290
5074
  msgid "l-th"
5075
  msgstr "Thai"
5076
 
5077
  # Thai
5078
- #: ../languages/dynamic_strings.php:291
5079
  msgid "l-th-th"
5080
  msgstr "Thai (Thailand)"
5081
 
5082
  # Tagalog
5083
- #: ../languages/dynamic_strings.php:292
5084
  msgid "l-tl"
5085
  msgstr "Tagalog"
5086
 
5087
  # Tagalog
5088
- #: ../languages/dynamic_strings.php:293
5089
  msgid "l-tl-ph"
5090
  msgstr "Tagalog (Philippines)"
5091
 
5092
  # Tswana
5093
- #: ../languages/dynamic_strings.php:294
5094
  msgid "l-tn"
5095
  msgstr "Tswana"
5096
 
5097
  # Tswana
5098
- #: ../languages/dynamic_strings.php:295
5099
  msgid "l-tn-za"
5100
  msgstr "Tswana (South Africa)"
5101
 
5102
  # Turkish
5103
- #: ../languages/dynamic_strings.php:296
5104
  msgid "l-tr"
5105
  msgstr "Turkish"
5106
 
5107
  # Turkish
5108
- #: ../languages/dynamic_strings.php:297
5109
  msgid "l-tr-tr"
5110
  msgstr "Turkish (Turkey)"
5111
 
5112
  # Tatar
5113
- #: ../languages/dynamic_strings.php:298
5114
  msgid "l-tt"
5115
  msgstr "Tatar"
5116
 
5117
  # Tatar
5118
- #: ../languages/dynamic_strings.php:299
5119
  msgid "l-tt-ru"
5120
  msgstr "Tatar (Russia)"
5121
 
5122
  # Tsonga
5123
- #: ../languages/dynamic_strings.php:300
5124
  msgid "l-ts"
5125
  msgstr "Tsonga"
5126
 
5127
  # Ukrainian
5128
- #: ../languages/dynamic_strings.php:301
5129
  msgid "l-uk"
5130
  msgstr "Ukrainian"
5131
 
5132
  # Ukrainian
5133
- #: ../languages/dynamic_strings.php:302
5134
  msgid "l-uk-ua"
5135
  msgstr "Ukrainian (Ukraine)"
5136
 
5137
  # Urdu
5138
- #: ../languages/dynamic_strings.php:303
5139
  msgid "l-ur"
5140
  msgstr "Urdu"
5141
 
5142
  # Urdu
5143
- #: ../languages/dynamic_strings.php:304
5144
  msgid "l-ur-pk"
5145
  msgstr "Urdu (Pakistan)"
5146
 
5147
  # Uzbek
5148
- #: ../languages/dynamic_strings.php:305
5149
  msgid "l-uz"
5150
  msgstr "Uzbek"
5151
 
5152
  # Uzbek
5153
- #: ../languages/dynamic_strings.php:306
5154
  msgid "l-uz-uz"
5155
  msgstr "Uzbek (Uzbekistan)"
5156
 
5157
  # Vietnamese
5158
- #: ../languages/dynamic_strings.php:307
5159
  msgid "l-vi"
5160
  msgstr "Vietnamese"
5161
 
5162
  # Vietnamese
5163
- #: ../languages/dynamic_strings.php:308
5164
  msgid "l-vi-vn"
5165
  msgstr "Vietnamese (Viet Nam)"
5166
 
5167
  # Xhosa
5168
- #: ../languages/dynamic_strings.php:309
5169
  msgid "l-xh"
5170
  msgstr "Xhosa"
5171
 
5172
  # Xhosa
5173
- #: ../languages/dynamic_strings.php:310
5174
  msgid "l-xh-za"
5175
  msgstr "Xhosa (South Africa)"
5176
 
5177
  # Chinese
5178
- #: ../languages/dynamic_strings.php:311
5179
  msgid "l-zh"
5180
  msgstr "Chinese"
5181
 
5182
  # Chinese
5183
- #: ../languages/dynamic_strings.php:312
5184
  msgid "l-zh-cn"
5185
  msgstr "Chinese (S)"
5186
 
5187
  # Chinese
5188
- #: ../languages/dynamic_strings.php:313
5189
  msgid "l-zh-hk"
5190
  msgstr "Chinese (Hong Kong)"
5191
 
5192
  # Chinese
5193
- #: ../languages/dynamic_strings.php:314
5194
  msgid "l-zh-mo"
5195
  msgstr "Chinese (Macau)"
5196
 
5197
  # Chinese
5198
- #: ../languages/dynamic_strings.php:315
5199
  msgid "l-zh-sg"
5200
  msgstr "Chinese (Singapore)"
5201
 
5202
  # Chinese
5203
- #: ../languages/dynamic_strings.php:316
5204
  msgid "l-zh-tw"
5205
  msgstr "Chinese (T)"
5206
 
5207
  # Zulu
5208
- #: ../languages/dynamic_strings.php:317
5209
  msgid "l-zu"
5210
  msgstr "Zulu"
5211
 
5212
  # Zulu
5213
- #: ../languages/dynamic_strings.php:318
5214
  msgid "l-zu-za"
5215
  msgstr "Zulu (South Africa)"
5216
 
5217
  # Unknown
5218
- #: ../languages/dynamic_strings.php:320
5219
  msgid "l-empty"
5220
  msgstr "Unknown"
5221
 
5222
  # Unknown
5223
- #: ../languages/dynamic_strings.php:321
5224
  msgid "l-xx"
5225
  msgstr "Unknown"
5226
 
5227
- #: ../languages/dynamic_strings.php:323
5228
  msgid "c-xy"
5229
  msgstr "Local IP"
5230
 
5231
- #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5232
  msgid "Notice: Pageview filtered by third-party code"
5233
  msgstr ""
5234
 
5235
- #: ../wp-slimstat.php:240
5236
  #, php-format
5237
  msgid "Error: Malformed URL %s"
5238
  msgstr ""
5239
 
5240
- #: ../wp-slimstat.php:259
5241
  #, php-format
5242
  msgid "Notice: Referrer %s is blacklisted"
5243
  msgstr ""
5244
 
5245
- #: ../wp-slimstat.php:347
5246
  #, php-format
5247
  msgid "Notice: Permalink %s is blacklisted"
5248
  msgstr ""
5249
 
5250
- #: ../wp-slimstat.php:358
5251
  msgid "Error: Empty or not supported IP address format (IPv6)"
5252
  msgstr ""
5253
 
5254
- #: ../wp-slimstat.php:367
5255
  #, php-format
5256
  msgid "Notice: Logged in user %s not tracked"
5257
  msgstr ""
5258
 
5259
- #: ../wp-slimstat.php:375
5260
  #, php-format
5261
  msgid "Notice: User with capability %s not tracked"
5262
  msgstr ""
5263
 
5264
- #: ../wp-slimstat.php:385
5265
  #, php-format
5266
  msgid "Notice: User %s is blacklisted"
5267
  msgstr ""
5268
 
5269
- #: ../wp-slimstat.php:406
5270
  #, php-format
5271
  msgid "Notice: Spammer %s not tracked"
5272
  msgstr ""
5273
 
5274
- #: ../wp-slimstat.php:435
5275
  #, php-format
5276
  msgid "Notice: IP address %s is blacklisted"
5277
  msgstr ""
5278
 
5279
- #: ../wp-slimstat.php:464
5280
  #, php-format
5281
  msgid "Notice: Country %s is blacklisted"
5282
  msgstr ""
5283
 
5284
- #: ../wp-slimstat.php:473
5285
  msgid "Notice: Prefetch requests are ignored"
5286
  msgstr ""
5287
 
5288
- #: ../wp-slimstat.php:489
5289
  msgid "Notice: Bot not tracked"
5290
  msgstr ""
5291
 
5292
- #: ../wp-slimstat.php:498
5293
  #, php-format
5294
  msgid "Notice: Browser %s is blacklisted"
5295
  msgstr ""
5296
 
5297
- #: ../wp-slimstat.php:528
5298
  msgid "Error:"
5299
  msgstr ""
5300
 
5301
- #: ../wp-slimstat.php:1209
5302
  msgid "Invalid payload string. Try clearing your WordPress cache."
5303
  msgstr ""
5304
 
5305
- #: ../wp-slimstat.php:1219
5306
  msgid "Invalid data signature. Try clearing your WordPress cache."
5307
  msgstr ""
5308
 
5309
- #: ../wp-slimstat.php:1289
5310
  msgid "There was an error downloading the MaxMind Geolite DB:"
5311
  msgstr ""
5312
 
5313
- #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5314
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5315
  msgstr ""
5316
 
5317
- #: ../wp-slimstat.php:1301
5318
  msgid "Function gzopen not defined. Aborting."
5319
  msgstr ""
5320
 
5321
- #: ../wp-slimstat.php:1311
5322
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5323
  msgstr ""
5324
 
 
 
 
5325
  # Austria
5326
  #~ msgid "at"
5327
  #~ msgstr "Austria"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2016-01-28 21:15-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: camu <support@wp-slimstat.com>\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../admin/config/index.php:33
19
  msgid ""
20
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
21
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
22
  msgstr ""
23
 
24
+ #: ../admin/config/index.php:48
25
  msgid "Read access: username not found"
26
  msgstr ""
27
 
28
+ #: ../admin/config/index.php:58 ../admin/config/index.php:83
29
  msgid ""
30
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
31
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
32
  "information"
33
  msgstr ""
34
 
35
+ #: ../admin/config/index.php:73
36
  msgid "Config access: username not found"
37
  msgstr ""
38
 
39
+ #: ../admin/config/index.php:92
40
  msgid "Basic"
41
  msgstr ""
42
 
43
+ #: ../admin/config/index.php:94 ../admin/config/index.php:115
44
  msgid "Tracker"
45
  msgstr ""
46
 
47
+ #: ../admin/config/index.php:95
48
  msgid "Enable Tracking"
49
  msgstr ""
50
 
51
+ #: ../admin/config/index.php:95
52
  msgid "Turn the tracker on or off, while keeping the reports accessible."
53
  msgstr ""
54
 
55
+ #: ../admin/config/index.php:96
56
  msgid "Tracking Mode"
57
  msgstr ""
58
 
59
+ #: ../admin/config/index.php:96
60
  msgid ""
61
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
62
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
65
  "spammers, search engines and other crawlers</strong> will not be tracked."
66
  msgstr ""
67
 
68
+ #: ../admin/config/index.php:96
69
  msgid "Client Side"
70
  msgstr ""
71
 
72
+ #: ../admin/config/index.php:96
73
  msgid "Server Side"
74
  msgstr ""
75
 
76
+ #: ../admin/config/index.php:97
77
  msgid "Stealth Mode"
78
  msgstr ""
79
 
80
+ #: ../admin/config/index.php:97
81
  msgid ""
82
  "Do not add the javascript tracking code to your pages, if tracking mode is "
83
  "set to Server. Please note: if enabled, this will prevent the tracker from "
84
  "collecting information such as screen resolution, outbound links, downloads, "
85
+ "etc. This option is ignored if Tracking Mode is set to Client."
86
  msgstr ""
87
 
88
+ #: ../admin/config/index.php:97 ../admin/view/wp-slimstat-reports.php:1368
89
  msgid "Off"
90
  msgstr ""
91
 
92
+ #: ../admin/config/index.php:97
93
  msgid "On"
94
  msgstr ""
95
 
96
+ #: ../admin/config/index.php:98
97
  msgid "Admin Pages"
98
  msgstr ""
99
 
100
+ #: ../admin/config/index.php:98
101
  msgid "Enable this option to track your users' activity within the admin."
102
  msgstr ""
103
 
104
+ #: ../admin/config/index.php:98
105
  msgid "Track"
106
  msgstr ""
107
 
108
+ #: ../admin/config/index.php:98
109
  msgid "Do not track"
110
  msgstr ""
111
 
112
+ #: ../admin/config/index.php:100
113
  msgid "WordPress Integration"
114
  msgstr ""
115
 
116
+ #: ../admin/config/index.php:101
117
  msgid "Menu Position"
118
  msgstr ""
119
 
120
+ #: ../admin/config/index.php:101
121
  msgid ""
122
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
123
  "admin bar (if visible)."
124
  msgstr ""
125
 
126
+ #: ../admin/config/index.php:101
127
  msgid "Side Menu"
128
  msgstr ""
129
 
130
+ #: ../admin/config/index.php:101
131
  msgid "Admin Bar"
132
  msgstr ""
133
 
134
+ #: ../admin/config/index.php:102
135
  msgid "Posts and Pages"
136
  msgstr ""
137
 
138
+ #: ../admin/config/index.php:102
139
  msgid ""
140
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
141
  "per post within the timeframe specified here below."
142
  msgstr ""
143
 
144
+ #: ../admin/config/index.php:103
145
  msgid "Report Interval"
146
  msgstr ""
147
 
148
+ #: ../admin/config/index.php:103
149
  msgid ""
150
  "Enter the time range, in days, that should be used to calculate the value "
151
  "here above."
152
  msgstr ""
153
 
154
+ #: ../admin/config/index.php:104
155
  msgid "Report Type"
156
  msgstr ""
157
 
158
+ #: ../admin/config/index.php:104
159
  msgid ""
160
  "Select what kind of information you would like to see displayed on the Posts "
161
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
162
  "IPs consider only one hit per user in the given time range."
163
  msgstr ""
164
 
165
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:81
166
+ #: ../admin/view/wp-slimstat-reports.php:90
167
+ #: ../admin/view/wp-slimstat-reports.php:1384
168
+ #: ../admin/view/wp-slimstat-reports.php:1542
169
  msgid "Pageviews"
170
  msgstr ""
171
 
172
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:91
173
+ #: ../admin/view/wp-slimstat-reports.php:284
174
+ #: ../admin/view/wp-slimstat-reports.php:525
175
+ #: ../admin/view/wp-slimstat-reports.php:1399
176
+ #: ../admin/view/wp-slimstat-reports.php:1444
177
  msgid "Unique IPs"
178
  msgstr ""
179
 
180
+ #: ../admin/config/index.php:105
181
  msgid "Dashboard Widgets"
182
  msgstr ""
183
 
184
+ #: ../admin/config/index.php:105
185
  msgid ""
186
  "Choose if you want to have the most important reports on your WordPress "
187
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
188
  msgstr ""
189
 
190
+ #: ../admin/config/index.php:106
191
  msgid "Hide Add-ons"
192
  msgstr ""
193
 
194
+ #: ../admin/config/index.php:106
195
  msgid ""
196
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
197
  "from the list of plugins in WordPress. Please note that you will still "
198
  "receive updates for hidden add-ons."
199
  msgstr ""
200
 
201
+ #: ../admin/config/index.php:108
202
  msgid "Database"
203
  msgstr ""
204
 
205
+ #: ../admin/config/index.php:109
206
  msgid "Retain data for"
207
  msgstr ""
208
 
209
+ #: ../admin/config/index.php:109
210
  msgid ""
211
  "Clean-up log entries older than the number of days specified here above. "
212
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
213
  "regardless of its age."
214
  msgstr ""
215
 
216
+ #: ../admin/config/index.php:109
217
  msgid "Next clean-up on"
218
  msgstr ""
219
 
220
+ #: ../admin/config/index.php:109
221
  #, php-format
222
  msgid ""
223
  "Entries logged on or before %s will be archived or deleted according to the "
224
  "option here below."
225
  msgstr ""
226
 
227
+ #: ../admin/config/index.php:109 ../admin/view/index.php:102
228
  #: ../admin/view/wp-slimstat-db.php:79
229
+ #: ../admin/view/wp-slimstat-reports.php:1368
230
  msgid "days"
231
  msgstr ""
232
 
233
+ #: ../admin/config/index.php:110
234
+ msgid "Archive records"
235
  msgstr ""
236
 
237
+ #: ../admin/config/index.php:110
238
  msgid ""
239
  "If DB space is not an issue, you can decide to archive older records in "
240
  "another table, instead of deleting them. This way performance is preserved, "
244
  "is uninstalled. Make sure to backup your data before you proceed."
245
  msgstr ""
246
 
247
+ #: ../admin/config/index.php:117
248
  msgid "Advanced Options"
249
  msgstr ""
250
 
251
+ #: ../admin/config/index.php:118
252
  msgid "Session Duration"
253
  msgstr ""
254
 
255
+ #: ../admin/config/index.php:118
256
  msgid ""
257
  "How many seconds should a human session last? Google Analytics sets it to "
258
  "1800 seconds."
259
  msgstr ""
260
 
261
+ #: ../admin/config/index.php:118 ../admin/config/index.php:189
262
  msgid "seconds"
263
  msgstr ""
264
 
265
+ #: ../admin/config/index.php:119
266
  msgid "Extend Session"
267
  msgstr ""
268
 
269
+ #: ../admin/config/index.php:119
270
  msgid "Extend the duration of a session each time the user visits a new page."
271
  msgstr ""
272
 
273
+ #: ../admin/config/index.php:120
274
+ msgid "Browser Detection"
275
+ msgstr ""
276
+
277
+ #: ../admin/config/index.php:120
278
+ msgid ""
279
+ "The heuristic function is much faster and requires very little memory, but "
280
+ "for uncommon user agent strings it might be less accurate, and produce a "
281
+ "unreliable match. Browscap.ini, the third party database we use, is memory "
282
+ "intensive and it uses a bruteforce approach to determine a visitor's "
283
+ "browser, but it's very accurate and precise even with the most obscure user "
284
+ "agent strings (almost all of them). You decide which one should be used "
285
+ "first: the other one will only be invoked if the one you chose did not "
286
+ "produce a match."
287
+ msgstr ""
288
+
289
+ #: ../admin/config/index.php:120
290
+ msgid "Browscap"
291
+ msgstr ""
292
+
293
+ #: ../admin/config/index.php:120
294
+ msgid "Heuristic"
295
+ msgstr ""
296
+
297
+ #: ../admin/config/index.php:121
298
  msgid "Enable CDN"
299
  msgstr ""
300
 
301
+ #: ../admin/config/index.php:121
302
  msgid ""
303
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
304
  "by serving our tracking code from their fast and reliable network (free "
305
  "service)."
306
  msgstr ""
307
 
308
+ #: ../admin/config/index.php:122
309
  msgid "Extensions to Track"
310
  msgstr ""
311
 
312
+ #: ../admin/config/index.php:122
313
  msgid ""
314
  "List all the file extensions that you want to be treated as Downloads. "
315
  "Please note that links pointing to external resources (i.e. PDFs on a "
318
  "below."
319
  msgstr ""
320
 
321
+ #: ../admin/config/index.php:124
322
  msgid "Internal and Outbound Links"
323
  msgstr ""
324
 
325
+ #: ../admin/config/index.php:125
326
  msgid "Track Outbound Clicks"
327
  msgstr ""
328
 
329
+ #: ../admin/config/index.php:125
330
  msgid ""
331
  "Track when your visitors click on link to external websites. This option "
332
  "required Spy Mode to be enabled."
333
  msgstr ""
334
 
335
+ #: ../admin/config/index.php:126
336
  msgid "Track Coordinates"
337
  msgstr ""
338
 
339
+ #: ../admin/config/index.php:126
340
  msgid ""
341
  "Collect mouse coordinates and other information for clicks on internal "
342
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
343
  "this information is only collected for external links."
344
  msgstr ""
345
 
346
+ #: ../admin/config/index.php:127
347
  msgid "No Callback"
348
  msgstr ""
349
 
350
+ #: ../admin/config/index.php:127
351
  msgid ""
352
  "Track the event but do not invoke the callback function on links marked with "
353
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
355
  "prevent conflicts with lightbox and similar libraries."
356
  msgstr ""
357
 
358
+ #: ../admin/config/index.php:128
359
  msgid "Do Not Track"
360
  msgstr ""
361
 
362
+ #: ../admin/config/index.php:128
363
  msgid ""
364
  "Do not track links marked with one of these class names, <em>rel</em> "
365
  "attributes or whose <em>href</em> attribute contains one of these strings "
366
  "(separated by comma)."
367
  msgstr ""
368
 
369
+ #: ../admin/config/index.php:130
370
  msgid "Pages not belonging to this site"
371
  msgstr ""
372
 
373
+ #: ../admin/config/index.php:131
374
  msgid ""
375
  "Add the following code to all the non-WP pages you want to track, right "
376
  "before the closing BODY tag. Please make sure to change the protocol of all "
377
  "the URLs to HTTPS, if you external site is served over a secure channel."
378
  msgstr ""
379
 
380
+ #: ../admin/config/index.php:141
381
  msgid "Allow External Domains"
382
  msgstr ""
383
 
384
+ #: ../admin/config/index.php:141
385
  msgid ""
386
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
387
  "header is present on the requested resource, when using the external "
392
  "security implications of allowing CORS requests."
393
  msgstr ""
394
 
395
+ #: ../admin/config/index.php:142 ../admin/config/index.php:164
396
+ #: ../admin/config/index.php:192
397
  msgid "Miscellaneous"
398
  msgstr ""
399
 
400
+ #: ../admin/config/index.php:143
401
  msgid "Enable UAN"
402
  msgstr ""
403
 
404
+ #: ../admin/config/index.php:143
405
  msgid ""
406
  "Send anonymous data about user agents to our server for analysis. This "
407
  "allows us to contribute to the <a href='http://browscap.org/' "
410
  "ads network. No worries, your site will not be affected in any way."
411
  msgstr ""
412
 
413
+ #: ../admin/config/index.php:148
414
  msgid "Filters"
415
  msgstr ""
416
 
417
+ #: ../admin/config/index.php:150
418
  msgid "Do not track settings"
419
  msgstr ""
420
 
421
+ #: ../admin/config/index.php:151
422
  msgid "Track Registered Users"
423
  msgstr ""
424
 
425
+ #: ../admin/config/index.php:151
426
  msgid "Enable this option to track logged in users."
427
  msgstr ""
428
 
429
+ #: ../admin/config/index.php:152
430
  msgid "Blacklist by Username"
431
  msgstr ""
432
 
433
+ #: ../admin/config/index.php:152
434
  msgid ""
435
  "List all the usernames you don't want to track, separated by commas. Please "
436
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
440
  "match user100 and uber100, <code>user!0</code> will match user10 and user90."
441
  msgstr ""
442
 
443
+ #: ../admin/config/index.php:153
444
  msgid "Blacklist by IP Address"
445
  msgstr ""
446
 
447
+ #: ../admin/config/index.php:153
448
  msgid ""
449
  "List all the IP addresses you don't want to track, separated by commas. Each "
450
  "network <strong>must</strong> be defined using the <a href='http://en."
453
  "public IP and the originating IP, if available."
454
  msgstr ""
455
 
456
+ #: ../admin/config/index.php:154
457
  msgid "Blacklist by Capability"
458
  msgstr ""
459
 
460
+ #: ../admin/config/index.php:154
461
  msgid ""
462
  "Users having at least one of the <a href='http://codex.wordpress.org/"
463
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
464
  "will not be tracked. Capabilities are case-insensitive."
465
  msgstr ""
466
 
467
+ #: ../admin/config/index.php:156
468
  msgid "Profiling"
469
  msgstr ""
470
 
471
+ #: ../admin/config/index.php:157
472
  msgid "Ignore Spammers"
473
  msgstr ""
474
 
475
+ #: ../admin/config/index.php:157
476
  msgid ""
477
  "Enable this option if you don't want to track visits from users identified "
478
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
480
  "database."
481
  msgstr ""
482
 
483
+ #: ../admin/config/index.php:158
484
  msgid "Ignore Bots"
485
  msgstr ""
486
 
487
+ #: ../admin/config/index.php:158
488
  msgid ""
489
  "Turn on this feature if you want to have the accuracy level of server-side "
490
  "tracking, but not the inconvenience of getting your database clogged with "
492
  "note that in Client mode, bots are ignored regardless of this setting."
493
  msgstr ""
494
 
495
+ #: ../admin/config/index.php:159
496
  msgid "Permalinks"
497
  msgstr ""
498
 
499
+ #: ../admin/config/index.php:159
500
  msgid ""
501
  "List all the URLs on your website that you don't want to track, separated by "
502
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
507
  "case-insensitive."
508
  msgstr ""
509
 
510
+ #: ../admin/config/index.php:160
511
  msgid "Countries"
512
  msgstr ""
513
 
514
+ #: ../admin/config/index.php:160
515
  msgid ""
516
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
517
  "track, separated by commas."
518
  msgstr ""
519
 
520
+ #: ../admin/config/index.php:161
521
  msgid "User Agents"
522
  msgstr ""
523
 
524
+ #: ../admin/config/index.php:161
525
  msgid ""
526
  "Browsers (user agents) you don't want to track, separated by commas. You can "
527
  "specify the browser's version adding a slash after the name (i.e. "
531
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
532
  msgstr ""
533
 
534
+ #: ../admin/config/index.php:162
535
  msgid "Referring Sites"
536
  msgstr ""
537
 
538
+ #: ../admin/config/index.php:162
539
  msgid ""
540
  "Referring URLs that you don't want to track, separated by commas: "
541
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
545
  "https://)."
546
  msgstr ""
547
 
548
+ #: ../admin/config/index.php:165
549
  msgid "Enable Privacy Mode"
550
  msgstr ""
551
 
552
+ #: ../admin/config/index.php:165
553
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
554
  msgstr ""
555
 
556
+ #: ../admin/config/index.php:166
557
  msgid "Ignore Prefetch Requests"
558
  msgstr ""
559
 
560
+ #: ../admin/config/index.php:166
561
  msgid ""
562
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
563
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
564
  "target='_blank'>Link Prefetching functionality</a>."
565
  msgstr ""
566
 
567
+ #: ../admin/config/index.php:171 ../admin/config/index.php:203
568
  msgid "Reports"
569
  msgstr ""
570
 
571
+ #: ../admin/config/index.php:173
572
  msgid "Formats and Conversions"
573
  msgstr ""
574
 
575
+ #: ../admin/config/index.php:174
576
  msgid "Number Format"
577
  msgstr ""
578
 
579
+ #: ../admin/config/index.php:174
580
  msgid "Choose the number format you want to use for your reports."
581
  msgstr ""
582
 
583
+ #: ../admin/config/index.php:175
584
  msgid "Date Format"
585
  msgstr ""
586
 
587
+ #: ../admin/config/index.php:175
588
  msgid ""
589
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
590
  "Format</a> to use when displaying a pageview's date."
591
  msgstr ""
592
 
593
+ #: ../admin/config/index.php:176
594
  msgid "Time Format"
595
  msgstr ""
596
 
597
+ #: ../admin/config/index.php:176
598
  msgid ""
599
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
600
  "Format</a> to use when displaying a pageview's time."
601
  msgstr ""
602
 
603
+ #: ../admin/config/index.php:177
604
  msgid "Use Display Name"
605
  msgstr ""
606
 
607
+ #: ../admin/config/index.php:177
608
  msgid ""
609
  "By default, users are listed by their usernames. Use this option to "
610
  "visualize their display names instead."
611
  msgstr ""
612
 
613
+ #: ../admin/config/index.php:178
614
  msgid "Use Titles"
615
  msgstr ""
616
 
617
+ #: ../admin/config/index.php:178
618
  msgid ""
619
  "Slimstat converts your permalinks into post, page and category titles. "
620
  "Disable this feature if you need to see the URL in your reports."
621
  msgstr ""
622
 
623
+ #: ../admin/config/index.php:179
624
  msgid "Convert IP Addresses"
625
  msgstr ""
626
 
627
+ #: ../admin/config/index.php:179
628
  msgid "Display provider names instead of IP addresses."
629
  msgstr ""
630
 
631
+ #: ../admin/config/index.php:181
632
  msgid "Functionality"
633
  msgstr ""
634
 
635
+ #: ../admin/config/index.php:182
636
  msgid "SlimScroll"
637
  msgstr ""
638
 
639
+ #: ../admin/config/index.php:182
640
  msgid ""
641
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
642
  "scrollbar."
643
  msgstr ""
644
 
645
+ #: ../admin/config/index.php:183
646
  msgid "Expand Details"
647
  msgstr ""
648
 
649
+ #: ../admin/config/index.php:183
650
  msgid "Expand each row's details by default, insted of on mousehover."
651
  msgstr ""
652
 
653
+ #: ../admin/config/index.php:184 ../admin/config/index.php:190
654
  msgid "Rows to Display"
655
  msgstr ""
656
 
657
+ #: ../admin/config/index.php:184
658
  msgid "Specify the number of items in each report."
659
  msgstr ""
660
 
661
+ #: ../admin/config/index.php:185 ../admin/view/wp-slimstat-db.php:101
662
  msgid "Max Results"
663
  msgstr ""
664
 
665
+ #: ../admin/config/index.php:185
666
  msgid ""
667
  "Decide how many records should be retrieved from the database in total. "
668
  "Depending on your server configuration, you may want to fine tune this value "
669
  "to avoid exceeding your PHP memory limit."
670
  msgstr ""
671
 
672
+ #: ../admin/config/index.php:186
673
  msgid "IP Lookup"
674
  msgstr ""
675
 
676
+ #: ../admin/config/index.php:186
677
  msgid "Customize the Geolocation service to be used in the reports."
678
  msgstr ""
679
 
680
+ #: ../admin/config/index.php:188
681
  msgid "Activity Log"
682
  msgstr ""
683
 
684
+ #: ../admin/config/index.php:189
685
  msgid "Live Stream"
686
  msgstr ""
687
 
688
+ #: ../admin/config/index.php:189
689
  msgid ""
690
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
691
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
692
  msgstr ""
693
 
694
+ #: ../admin/config/index.php:190
695
  msgid "Specify the number of items in the Activity Log."
696
  msgstr ""
697
 
698
+ #: ../admin/config/index.php:193
699
  msgid "Custom CSS"
700
  msgstr ""
701
 
702
+ #: ../admin/config/index.php:193
703
  msgid ""
704
  "Paste here your custom stylesheet to personalize the way your reports look. "
705
  "<a href='https://slimstat.freshdesk.com/support/solutions/"
708
  "a> for more information on how to use this setting."
709
  msgstr ""
710
 
711
+ #: ../admin/config/index.php:194
712
  msgid "Chart Colors"
713
  msgstr ""
714
 
715
+ #: ../admin/config/index.php:194
716
  msgid ""
717
  "Customize the look and feel of your charts by assigning personalized colors "
718
  "to each metric. List 4 hex colors separated by commas, strictly in the "
720
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
721
  msgstr ""
722
 
723
+ #: ../admin/config/index.php:195
724
  msgid "Show User Agent"
725
  msgstr ""
726
 
727
+ #: ../admin/config/index.php:195
728
  msgid ""
729
  "Choose if you want to see the browser name or a complete user agent string "
730
  "when hovering on browser icons."
731
  msgstr ""
732
 
733
+ #: ../admin/config/index.php:196
734
  msgid "Enable SOV"
735
  msgstr ""
736
 
737
+ #: ../admin/config/index.php:196
738
  msgid ""
739
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
740
  "the subject, object, and verb of a sentence appear in that order, like in "
741
  "Japanese."
742
  msgstr ""
743
 
744
+ #: ../admin/config/index.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
745
  msgid "Access Control"
746
  msgstr ""
747
 
748
+ #: ../admin/config/index.php:204
749
  msgid "Restrict Authors"
750
  msgstr ""
751
 
752
+ #: ../admin/config/index.php:204
753
  msgid ""
754
  "Enable this option if you want your authors to only see stats related to "
755
  "their own content."
756
  msgstr ""
757
 
758
+ #: ../admin/config/index.php:205 ../admin/config/index.php:209
759
  msgid "Capability"
760
  msgstr ""
761
 
762
+ #: ../admin/config/index.php:205
763
  msgid ""
764
  "Specify the minimum <a href='http://codex.wordpress.org/"
765
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
769
  "In this case, the list has precedence over the capability."
770
  msgstr ""
771
 
772
+ #: ../admin/config/index.php:206 ../admin/config/index.php:210
773
  msgid "Whitelist"
774
  msgstr ""
775
 
776
+ #: ../admin/config/index.php:206
777
  msgid ""
778
  "List all the users who should have access to the reports, separated by "
779
  "commas. Administrators are implicitly allowed, so you don't need to list "
780
  "them in here. Usernames are case sensitive."
781
  msgstr ""
782
 
783
+ #: ../admin/config/index.php:208 ../admin/config/index.php:233
784
+ #: ../admin/wp-slimstat-admin.php:636 ../admin/wp-slimstat-admin.php:654
785
+ #: ../admin/wp-slimstat-admin.php:657
786
  msgid "Settings"
787
  msgstr ""
788
 
789
+ #: ../admin/config/index.php:209
790
  msgid ""
791
  "Specify the minimum <a href='http://codex.wordpress.org/"
792
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
794
  "can be used to override this option for specific users."
795
  msgstr ""
796
 
797
+ #: ../admin/config/index.php:210
798
  msgid ""
799
  "List all the users who can edit these options, separated by commas. Please "
800
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
801
  "not forget to include yourself! Usernames are case sensitive."
802
  msgstr ""
803
 
804
+ #: ../admin/config/index.php:215
805
  msgid "Maintenance"
806
  msgstr ""
807
 
808
+ #: ../admin/config/index.php:220 ../admin/view/addons.php:32
809
+ #: ../admin/wp-slimstat-admin.php:124
 
810
  msgid "Add-ons"
811
  msgstr ""
812
 
832
  msgid "The geolocation database has been installed on your server."
833
  msgstr ""
834
 
835
+ #: ../admin/config/maintenance.php:82
 
 
 
 
 
 
 
 
 
836
  msgid "Your reports were successfully restored to their default arrangement."
837
  msgstr ""
838
 
839
+ #: ../admin/config/maintenance.php:92
840
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
841
  msgstr ""
842
 
843
+ #: ../admin/config/maintenance.php:98
844
  msgid "All the archived records were successfully deleted."
845
  msgstr ""
846
 
847
+ #: ../admin/config/maintenance.php:106
848
  msgid "All the records were successfully deleted."
849
  msgstr ""
850
 
851
+ #: ../admin/config/maintenance.php:128
852
+ msgid "Troubleshooting"
853
  msgstr ""
854
 
855
+ #: ../admin/config/maintenance.php:131
856
  msgid "Tracker Status"
857
  msgstr ""
858
 
859
+ #: ../admin/config/maintenance.php:133
860
+ msgid "Reset the tracker status"
861
  msgstr ""
862
 
863
+ #: ../admin/config/maintenance.php:133
864
  msgid "No Errors so far"
865
  msgstr ""
866
 
867
+ #: ../admin/config/maintenance.php:134
868
  msgid ""
869
  "The information here above is useful to troubleshoot issues with the "
870
  "tracker. It includes both <strong>errors</strong>, which are returned when "
871
  "the tracker could not record a pageview and are indicative of some kind of "
872
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
873
  "most recent pageview was not recorded, based on your settings (filters, "
874
+ "blackslists, etc). Please include the message here above when sending a "
875
+ "support request."
876
  msgstr ""
877
 
878
+ #: ../admin/config/maintenance.php:140
879
  msgid "Enable SQL Debug"
880
  msgstr ""
881
 
882
+ #: ../admin/config/maintenance.php:143
883
  msgid ""
884
  "Display the SQL code used to retrieve the data from the database. Useful to "
885
  "troubleshoot issues with data consistency or missing pageviews."
886
  msgstr ""
887
 
888
+ #: ../admin/config/maintenance.php:147
889
  msgid "Disable SQL Debug"
890
  msgstr ""
891
 
892
+ #: ../admin/config/maintenance.php:150
893
  msgid "Deactivate the SQL output on top of each report."
894
  msgstr ""
895
 
896
+ #: ../admin/config/maintenance.php:155
 
 
 
 
897
  msgid ""
898
  "Are you sure you want to restore the default arrangement of your reports?"
899
  msgstr ""
900
 
901
+ #: ../admin/config/maintenance.php:155
902
  msgid "No Panic Button"
903
  msgstr ""
904
 
905
+ #: ../admin/config/maintenance.php:157
906
  msgid ""
907
  "Reset the default arrangement of your reports. Helpful when, for some "
908
  "reason, reports disappear from your panels or something doesn't look right "
909
  "in your views."
910
  msgstr ""
911
 
912
+ #: ../admin/config/maintenance.php:161
913
  msgid "Data Maintenance"
914
  msgstr ""
915
 
916
+ #: ../admin/config/maintenance.php:164
917
  msgid "Delete pageviews where"
918
  msgstr ""
919
 
920
+ #: ../admin/config/maintenance.php:178 ../admin/view/index.php:16
921
  msgid "equals"
922
  msgstr ""
923
 
924
+ #: ../admin/config/maintenance.php:179 ../admin/view/index.php:17
925
  msgid "is not equal to"
926
  msgstr ""
927
 
928
+ #: ../admin/config/maintenance.php:180 ../admin/view/index.php:18
929
  msgid "contains"
930
  msgstr ""
931
 
932
+ #: ../admin/config/maintenance.php:181 ../admin/view/index.php:19
933
  msgid "is included in"
934
  msgstr ""
935
 
936
+ #: ../admin/config/maintenance.php:182 ../admin/view/index.php:20
937
  msgid "does not contain"
938
  msgstr ""
939
 
940
+ #: ../admin/config/maintenance.php:183 ../admin/view/index.php:21
941
  msgid "starts with"
942
  msgstr ""
943
 
944
+ #: ../admin/config/maintenance.php:184 ../admin/view/index.php:22
945
  msgid "ends with"
946
  msgstr ""
947
 
948
+ #: ../admin/config/maintenance.php:185 ../admin/view/index.php:23
949
  msgid "sounds like"
950
  msgstr ""
951
 
952
+ #: ../admin/config/maintenance.php:186 ../admin/view/index.php:24
953
  msgid "is greater than"
954
  msgstr ""
955
 
956
+ #: ../admin/config/maintenance.php:187 ../admin/view/index.php:25
957
  msgid "is less than"
958
  msgstr ""
959
 
960
+ #: ../admin/config/maintenance.php:188 ../admin/view/index.php:27
961
  msgid "matches"
962
  msgstr ""
963
 
964
+ #: ../admin/config/maintenance.php:189 ../admin/view/index.php:28
965
  msgid "does not match"
966
  msgstr ""
967
 
968
+ #: ../admin/config/maintenance.php:190 ../admin/view/index.php:29
969
  msgid "is empty"
970
  msgstr ""
971
 
972
+ #: ../admin/config/maintenance.php:191 ../admin/view/index.php:30
973
  msgid "is not empty"
974
  msgstr ""
975
 
976
+ #: ../admin/config/maintenance.php:194 ../admin/view/index.php:42
977
  #: ../admin/view/index.php:105
978
  msgid "Apply"
979
  msgstr ""
980
 
981
+ #: ../admin/config/maintenance.php:195
982
  msgid ""
983
  "Are you sure you want to PERMANENTLY delete these records from your database?"
984
  msgstr ""
985
 
986
+ #: ../admin/config/maintenance.php:202
987
  msgid ""
988
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
989
  "database?"
990
  msgstr ""
991
 
992
+ #: ../admin/config/maintenance.php:202
993
  msgid "Delete All Records"
994
  msgstr ""
995
 
996
+ #: ../admin/config/maintenance.php:205
997
  msgid ""
998
+ "Erase all the information collected so far by Slimstat, but not the archived "
999
+ "records (<code>wp_slim_stats_archive</code>). This operation <strong>does "
1000
+ "not</strong> reset your settings and it can be undone by manually copying "
1001
+ "your records from the archive table."
1002
  msgstr ""
1003
 
1004
+ #: ../admin/config/maintenance.php:211
1005
  msgid ""
1006
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1007
  "archive?"
1008
  msgstr ""
1009
 
1010
+ #: ../admin/config/maintenance.php:211
1011
  msgid "Delete Archive"
1012
  msgstr ""
1013
 
1014
+ #: ../admin/config/maintenance.php:214
1015
  msgid "Erase all the archived records. This operation cannot be undone."
1016
  msgstr ""
1017
 
1018
+ #: ../admin/config/maintenance.php:220
1019
  msgid "Improve Performance"
1020
  msgstr ""
1021
 
1022
+ #: ../admin/config/maintenance.php:224
1023
  msgid ""
1024
  "Please note that you will need about 30% more DB space to store the extra "
1025
  "information required."
1026
  msgstr ""
1027
 
1028
+ #: ../admin/config/maintenance.php:228
1029
  msgid "Save DB Space"
1030
  msgstr ""
1031
 
1032
+ #: ../admin/config/maintenance.php:231
1033
  msgid ""
1034
  "Please note that by removing table indexes, Slimstat's performance will be "
1035
  "affected."
1036
  msgstr ""
1037
 
1038
+ #: ../admin/config/maintenance.php:236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1039
  msgid "MaxMind IP to Country"
1040
  msgstr ""
1041
 
1042
+ #: ../admin/config/maintenance.php:242
1043
  msgid ""
1044
  "Do you want to download and install the geolocation database from MaxMind's "
1045
  "server?"
1046
  msgstr ""
1047
 
1048
+ #: ../admin/config/maintenance.php:242
1049
  msgid "Install GeoLite DB"
1050
  msgstr ""
1051
 
1052
+ #: ../admin/config/maintenance.php:245
1053
  msgid "Do you want to uninstall the geolocation database?"
1054
  msgstr ""
1055
 
1056
+ #: ../admin/config/maintenance.php:245
1057
  msgid "Uninstall GeoLite DB"
1058
  msgstr ""
1059
 
1060
+ #: ../admin/config/maintenance.php:249
1061
  msgid ""
1062
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1063
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1067
  "enable this functionality."
1068
  msgstr ""
1069
 
1070
+ #: ../admin/config/maintenance.php:254
1071
  msgid "Import and Export"
1072
  msgstr ""
1073
 
1074
+ #: ../admin/config/maintenance.php:258
1075
  msgid ""
1076
  "Here below you can find the current configuration string for Slimstat. You "
1077
  "can update your settings by pasting a new string inside the text area and "
1078
  "clicking the Import button."
1079
  msgstr ""
1080
 
1081
+ #: ../admin/config/maintenance.php:263
1082
  msgid "Import"
1083
  msgstr ""
1084
 
1085
+ #: ../admin/config/maintenance.php:264
1086
  msgid "Are you sure you want to OVERWRITE your current settings?"
1087
  msgstr ""
1088
 
1089
+ #: ../admin/config/maintenance.php:269
1090
  msgid "Database Information"
1091
  msgstr ""
1092
 
1093
+ #: ../admin/config/maintenance.php:272
1094
  msgid "Engine"
1095
  msgstr ""
1096
 
1097
+ #: ../admin/config/maintenance.php:276
1098
  msgid "switch to InnoDB"
1099
  msgstr ""
1100
 
1101
+ #: ../admin/config/maintenance.php:287
1102
  msgid "records"
1103
  msgstr ""
1104
 
1163
  msgid "Load"
1164
  msgstr ""
1165
 
1166
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1406
1167
  msgid "Today"
1168
  msgstr ""
1169
 
1170
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1409
1171
  msgid "Yesterday"
1172
  msgstr ""
1173
 
1230
  "country of origin."
1231
  msgstr ""
1232
 
1233
+ #: ../admin/view/layout.php:47
1234
  msgid "Customize and organize your reports"
1235
  msgstr ""
1236
 
1237
+ #: ../admin/view/layout.php:48
1238
  msgid ""
1239
  "Drag and drop report placeholders from one container to another, to "
1240
  "customize the information you want to see right away when you open Slimstat. "
1246
  "(Screen Options tab)."
1247
  msgstr ""
1248
 
1249
+ #: ../admin/view/layout.php:60
1250
  msgid "Clone"
1251
  msgstr ""
1252
 
1253
+ #: ../admin/view/layout.php:64
1254
  msgid "Delete"
1255
  msgstr ""
1256
 
1270
  msgid "Syndication Reader"
1271
  msgstr ""
1272
 
1273
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1032
1274
+ #: ../admin/view/wp-slimstat-reports.php:1715
1275
  msgid "No data to display"
1276
  msgstr ""
1277
 
1280
  msgstr ""
1281
 
1282
  # Unknown
1283
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1084
1284
+ #: ../admin/view/wp-slimstat-reports.php:1758 ../wp-slimstat.php:1355
1285
  msgid "c-"
1286
  msgstr "Unknown"
1287
 
1288
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1289
+ #: ../admin/wp-slimstat-admin.php:968 ../admin/wp-slimstat-admin.php:1008
1290
  msgid "Originating IP"
1291
  msgstr ""
1292
 
1293
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1181
1294
+ #: ../admin/view/wp-slimstat-reports.php:1186
1295
+ #: ../admin/view/wp-slimstat-reports.php:1191
1296
  msgid "Open this URL in a new window"
1297
  msgstr ""
1298
 
1300
  msgid "Local search results page"
1301
  msgstr ""
1302
 
1303
+ #: ../admin/view/right-now.php:157 ../admin/view/wp-slimstat-db.php:42
1304
+ #: ../admin/view/wp-slimstat-reports.php:242
1305
+ #: ../admin/view/wp-slimstat-reports.php:251
1306
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
1307
  msgid "Search Terms"
1308
  msgstr ""
1309
 
1310
+ #: ../admin/view/right-now.php:166
1311
  msgid "Server Latency and Page Speed in milliseconds"
1312
  msgstr ""
1313
 
1314
+ #: ../admin/view/right-now.php:166
1315
  msgid "SL"
1316
  msgstr ""
1317
 
1318
+ #: ../admin/view/right-now.php:166
1319
  msgid "PS"
1320
  msgstr ""
1321
 
1322
+ #: ../admin/view/right-now.php:173
1323
+ msgid "Time spent on this page"
1324
  msgstr ""
1325
 
1326
+ #: ../admin/view/right-now.php:183
1327
  msgid "Open this referrer in a new window"
1328
  msgstr ""
1329
 
1330
+ #: ../admin/view/right-now.php:184
1331
  msgid "Open this outbound link in a new window"
1332
  msgstr ""
1333
 
1334
+ #: ../admin/view/right-now.php:185
1335
  msgid "Content Type"
1336
  msgstr ""
1337
 
1338
+ #: ../admin/view/right-now.php:188
1339
  msgid "Delete this pageview"
1340
  msgstr ""
1341
 
1342
+ #: ../admin/view/right-now.php:199
1343
  msgid "User Logged In"
1344
  msgstr ""
1345
 
1346
+ #: ../admin/view/right-now.php:209
1347
  msgid "User Logged Out"
1348
  msgstr ""
1349
 
1350
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:984
1351
  msgid "Browser"
1352
  msgstr ""
1353
 
1354
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:985
1355
  msgid "Country Code"
1356
  msgstr ""
1357
 
1359
  msgid "IP Address"
1360
  msgstr ""
1361
 
1362
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:988
1363
  msgid "Language Code"
1364
  msgstr ""
1365
 
1366
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1367
+ #: ../admin/wp-slimstat-admin.php:989
1368
  msgid "Operating System"
1369
  msgstr ""
1370
 
1371
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1372
+ #: ../admin/wp-slimstat-admin.php:990
1373
  msgid "Permalink"
1374
  msgstr ""
1375
 
1376
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:991
1377
  msgid "Referer"
1378
  msgstr ""
1379
 
1380
+ #: ../admin/view/wp-slimstat-db.php:47
1381
+ msgid "Visitor's Username"
1382
  msgstr ""
1383
 
1384
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:974
1385
  msgid "Outbound Link"
1386
  msgstr ""
1387
 
1394
  msgstr ""
1395
 
1396
  #: ../admin/view/wp-slimstat-db.php:52
1397
+ #: ../admin/view/wp-slimstat-reports.php:372
1398
  msgid "Browser Capabilities"
1399
  msgstr ""
1400
 
1401
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1003
1402
  msgid "Browser Version"
1403
  msgstr ""
1404
 
1405
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1004
1406
  msgid "Browser Type"
1407
  msgstr ""
1408
 
1409
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:973
1410
  msgid "User Agent"
1411
  msgstr ""
1412
 
1418
  msgid "Server Latency"
1419
  msgstr ""
1420
 
1421
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1006
1422
  msgid "Post Author"
1423
  msgstr ""
1424
 
1425
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1007
1426
  msgid "Post Category ID"
1427
  msgstr ""
1428
 
1429
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1009
1430
  msgid "Resource Content Type"
1431
  msgstr ""
1432
 
1446
  msgid "Viewport Size"
1447
  msgstr ""
1448
 
1449
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1011
1450
  msgid "Visit ID"
1451
  msgstr ""
1452
 
1491
  msgstr ""
1492
 
1493
  #: ../admin/view/wp-slimstat-db.php:96
1494
+ #: ../admin/view/wp-slimstat-reports.php:1729
1495
  msgid "Type"
1496
  msgstr ""
1497
 
1511
  msgid "Offset"
1512
  msgstr ""
1513
 
1514
+ #: ../admin/view/wp-slimstat-reports.php:65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1515
  msgid "Chart controls"
1516
  msgstr ""
1517
 
1518
+ #: ../admin/view/wp-slimstat-reports.php:65
1519
  msgid "Use your mouse wheel to zoom in and out"
1520
  msgstr ""
1521
 
1522
+ #: ../admin/view/wp-slimstat-reports.php:65
1523
  msgid "While zooming in, drag the chart to move to a different area"
1524
  msgstr ""
1525
 
1526
+ #: ../admin/view/wp-slimstat-reports.php:68
 
 
 
 
1527
  msgid "Visitors Activity"
1528
  msgstr ""
1529
 
1530
+ #: ../admin/view/wp-slimstat-reports.php:77
1531
  msgid "Color codes"
1532
  msgstr ""
1533
 
1534
+ #: ../admin/view/wp-slimstat-reports.php:77
1535
  msgid "From search result page"
1536
  msgstr ""
1537
 
1538
+ #: ../admin/view/wp-slimstat-reports.php:77 ../admin/wp-slimstat-admin.php:966
1539
  msgid "Known Visitor"
1540
  msgstr ""
1541
 
1542
+ #: ../admin/view/wp-slimstat-reports.php:77
1543
  msgid "Known Users"
1544
  msgstr ""
1545
 
1546
+ #: ../admin/view/wp-slimstat-reports.php:77
1547
  msgid "Other Humans"
1548
  msgstr ""
1549
 
1550
+ #: ../admin/view/wp-slimstat-reports.php:77
1551
  msgid "Bot or Crawler"
1552
  msgstr ""
1553
 
1554
+ #: ../admin/view/wp-slimstat-reports.php:99
1555
  msgid "About Slimstat"
1556
  msgstr ""
1557
 
1558
+ #: ../admin/view/wp-slimstat-reports.php:108
1559
  msgid "Traffic at a Glance"
1560
  msgstr ""
1561
 
1562
+ #: ../admin/view/wp-slimstat-reports.php:118
1563
  msgid "Currently Online"
1564
  msgstr ""
1565
 
1566
+ #: ../admin/view/wp-slimstat-reports.php:131
1567
  msgid "Recent Search Terms"
1568
  msgstr ""
1569
 
1570
+ #: ../admin/view/wp-slimstat-reports.php:142
1571
  msgid "Keywords used by your visitors to find your website on a search engine."
1572
  msgstr ""
1573
 
1574
+ #: ../admin/view/wp-slimstat-reports.php:145
1575
  msgid "Top Web Pages"
1576
  msgstr ""
1577
 
1578
+ #: ../admin/view/wp-slimstat-reports.php:156
1579
  msgid ""
1580
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1581
  "site, including posts, products, categories, and so on. You can set the "
1584
  "have."
1585
  msgstr ""
1586
 
1587
+ #: ../admin/view/wp-slimstat-reports.php:159
1588
+ msgid "Top Referring Domains"
1589
  msgstr ""
1590
 
1591
+ #: ../admin/view/wp-slimstat-reports.php:173
1592
  msgid "Top Known Visitors"
1593
  msgstr ""
1594
 
1595
+ #: ../admin/view/wp-slimstat-reports.php:184
1596
  msgid "Top Search Terms"
1597
  msgstr ""
1598
 
1599
+ #: ../admin/view/wp-slimstat-reports.php:196
1600
  msgid "Top Countries"
1601
  msgstr ""
1602
 
1603
+ #: ../admin/view/wp-slimstat-reports.php:205
1604
  msgid ""
1605
  "You can configure Slimstat to ignore a specific Country by setting the "
1606
  "corresponding filter under Settings > Slimstat > Filters."
1607
  msgstr ""
1608
 
1609
+ #: ../admin/view/wp-slimstat-reports.php:208
1610
  msgid "Rankings"
1611
  msgstr ""
1612
 
1613
+ #: ../admin/view/wp-slimstat-reports.php:212
1614
  msgid ""
1615
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1616
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1617
  "set above don't apply to this report."
1618
  msgstr ""
1619
 
1620
+ #: ../admin/view/wp-slimstat-reports.php:215
1621
  msgid "Top Language Families"
1622
  msgstr ""
1623
 
1624
+ #: ../admin/view/wp-slimstat-reports.php:228
1625
  msgid "Users Currently Online"
1626
  msgstr ""
1627
 
1628
+ #: ../admin/view/wp-slimstat-reports.php:239
1629
  msgid ""
1630
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1631
  "Slimstat leverages this information to identify returning visitors. Please "
1632
  "note that visitors also include registered users."
1633
  msgstr ""
1634
 
1635
+ #: ../admin/view/wp-slimstat-reports.php:252
1636
  msgid "Unique Terms"
1637
  msgstr ""
1638
 
1639
+ #: ../admin/view/wp-slimstat-reports.php:261
1640
+ msgid "Top Referring URLs"
1641
+ msgstr ""
1642
+
1643
+ #: ../admin/view/wp-slimstat-reports.php:274
1644
  msgid "Human Visits"
1645
  msgstr ""
1646
 
1647
+ #: ../admin/view/wp-slimstat-reports.php:283
1648
+ #: ../admin/view/wp-slimstat-reports.php:1440
1649
  msgid "Visits"
1650
  msgstr ""
1651
 
1652
+ #: ../admin/view/wp-slimstat-reports.php:293
1653
  msgid "Audience Overview"
1654
  msgstr ""
1655
 
1656
+ #: ../admin/view/wp-slimstat-reports.php:300
1657
  msgid ""
1658
  "Where not otherwise specified, the metrics in this report are referred to "
1659
  "human visitors."
1660
  msgstr ""
1661
 
1662
+ #: ../admin/view/wp-slimstat-reports.php:303
1663
  msgid "Top Languages"
1664
  msgstr ""
1665
 
1666
+ #: ../admin/view/wp-slimstat-reports.php:314
1667
  msgid "Top Browsers"
1668
  msgstr ""
1669
 
1670
+ #: ../admin/view/wp-slimstat-reports.php:325
1671
  msgid "Top Service Providers"
1672
  msgstr ""
1673
 
1674
+ #: ../admin/view/wp-slimstat-reports.php:334
1675
+ #: ../admin/view/wp-slimstat-reports.php:346
1676
  msgid ""
1677
  "Internet Service Provider: a company which provides other companies or "
1678
  "individuals with access to the Internet. Your DSL or cable internet service "
1680
  "by setting the corresponding filter under Settings > Slimstat > Filters."
1681
  msgstr ""
1682
 
1683
+ #: ../admin/view/wp-slimstat-reports.php:337
1684
  msgid "Top Operating Systems"
1685
  msgstr ""
1686
 
1687
+ #: ../admin/view/wp-slimstat-reports.php:349
1688
  msgid "Top Screen Resolutions"
1689
  msgstr ""
1690
 
1691
+ #: ../admin/view/wp-slimstat-reports.php:361
1692
  msgid "Top Viewport Sizes"
1693
  msgstr ""
1694
 
1695
+ #: ../admin/view/wp-slimstat-reports.php:381
1696
  msgid "Visit Duration"
1697
  msgstr ""
1698
 
1699
+ #: ../admin/view/wp-slimstat-reports.php:388
1700
  msgid ""
1701
  "All values represent the percentages of pageviews within the corresponding "
1702
  "time range."
1703
  msgstr ""
1704
 
1705
+ #: ../admin/view/wp-slimstat-reports.php:391
1706
  msgid "Recent Countries"
1707
  msgstr ""
1708
 
1709
+ #: ../admin/view/wp-slimstat-reports.php:402
1710
  msgid "Recent Viewport Sizes"
1711
  msgstr ""
1712
 
1713
+ #: ../admin/view/wp-slimstat-reports.php:413
1714
  msgid "Recent Operating Systems"
1715
  msgstr ""
1716
 
1717
+ #: ../admin/view/wp-slimstat-reports.php:424
1718
  msgid "Recent Browsers"
1719
  msgstr ""
1720
 
1721
+ #: ../admin/view/wp-slimstat-reports.php:435
1722
  msgid "Recent Languages"
1723
  msgstr ""
1724
 
1725
+ #: ../admin/view/wp-slimstat-reports.php:446
1726
  msgid "Top Browser Families"
1727
  msgstr ""
1728
 
1729
+ #: ../admin/view/wp-slimstat-reports.php:455
1730
  msgid ""
1731
  "This report shows you what user agent families (no version considered) are "
1732
  "popular among your visitors."
1733
  msgstr ""
1734
 
1735
+ #: ../admin/view/wp-slimstat-reports.php:458
1736
  msgid "Top OS Families"
1737
  msgstr ""
1738
 
1739
+ #: ../admin/view/wp-slimstat-reports.php:469
1740
  msgid ""
1741
  "This report shows you what operating system families (no version considered) "
1742
  "are popular among your visitors."
1743
  msgstr ""
1744
 
1745
+ #: ../admin/view/wp-slimstat-reports.php:472
1746
  msgid "Recent Users"
1747
  msgstr ""
1748
 
1749
+ #: ../admin/view/wp-slimstat-reports.php:484
1750
  msgid "Top Users"
1751
  msgstr ""
1752
 
1753
+ #: ../admin/view/wp-slimstat-reports.php:496
1754
+ #: ../admin/view/wp-slimstat-reports.php:505
1755
  msgid "Users"
1756
  msgstr ""
1757
 
1758
+ #: ../admin/view/wp-slimstat-reports.php:506
1759
  msgid "Unique Users"
1760
  msgstr ""
1761
 
1762
+ #: ../admin/view/wp-slimstat-reports.php:515
1763
+ #: ../admin/wp-slimstat-admin.php:106
1764
+ msgid "Traffic Sources"
1765
+ msgstr ""
1766
+
1767
+ #: ../admin/view/wp-slimstat-reports.php:524
1768
  msgid "Domains"
1769
  msgstr ""
1770
 
1771
+ #: ../admin/view/wp-slimstat-reports.php:534
1772
  msgid "Traffic Summary"
1773
  msgstr ""
1774
 
1775
+ #: ../admin/view/wp-slimstat-reports.php:543
1776
  msgid "Top Referring Search Engines"
1777
  msgstr ""
1778
 
1779
+ #: ../admin/view/wp-slimstat-reports.php:572
1780
  msgid "Recent Outbound Links"
1781
  msgstr ""
1782
 
1783
+ #: ../admin/view/wp-slimstat-reports.php:584
1784
  msgid "Recent Posts"
1785
  msgstr ""
1786
 
1787
+ #: ../admin/view/wp-slimstat-reports.php:612
1788
  msgid "Recent Feeds"
1789
  msgstr ""
1790
 
1791
+ #: ../admin/view/wp-slimstat-reports.php:624
1792
  msgid "Recent Pages Not Found"
1793
  msgstr ""
1794
 
1795
+ #: ../admin/view/wp-slimstat-reports.php:636
1796
  msgid "Recent Internal Searches"
1797
  msgstr ""
1798
 
1799
+ #: ../admin/view/wp-slimstat-reports.php:646
1800
  msgid "Searches performed using WordPress' built-in search functionality."
1801
  msgstr ""
1802
 
1803
+ #: ../admin/view/wp-slimstat-reports.php:649
1804
  msgid "Top Categories"
1805
  msgstr ""
1806
 
1807
+ #: ../admin/view/wp-slimstat-reports.php:662
1808
  msgid "Top Downloads"
1809
  msgstr ""
1810
 
1811
+ #: ../admin/view/wp-slimstat-reports.php:673
1812
  msgid ""
1813
  "You can configure Slimstat to track specific file extensions as downloads."
1814
  msgstr ""
1815
 
1816
+ #: ../admin/view/wp-slimstat-reports.php:676
1817
  msgid "Recent Events"
1818
  msgstr ""
1819
 
1820
+ #: ../admin/view/wp-slimstat-reports.php:685
1821
+ #: ../admin/view/wp-slimstat-reports.php:709
1822
  msgid ""
1823
  "This report lists any <em>event</em> occurred on your website. Please refer "
1824
  "to the FAQ for more information on how to use this functionality."
1825
  msgstr ""
1826
 
1827
+ #: ../admin/view/wp-slimstat-reports.php:688
1828
  msgid "Top Posts"
1829
  msgstr ""
1830
 
1831
+ #: ../admin/view/wp-slimstat-reports.php:700
1832
  msgid "Top Events"
1833
  msgstr ""
1834
 
1835
+ #: ../admin/view/wp-slimstat-reports.php:712
1836
  msgid "Top Internal Searches"
1837
  msgstr ""
1838
 
1839
+ #: ../admin/view/wp-slimstat-reports.php:724
1840
  msgid "Recent Categories"
1841
  msgstr ""
1842
 
1843
+ #: ../admin/view/wp-slimstat-reports.php:736
1844
  msgid "Top Pages Not Found"
1845
  msgstr ""
1846
 
1847
+ #: ../admin/view/wp-slimstat-reports.php:748
1848
  msgid "Top Authors"
1849
  msgstr ""
1850
 
1851
+ #: ../admin/view/wp-slimstat-reports.php:759
1852
  msgid "Top Tags"
1853
  msgstr ""
1854
 
1855
+ #: ../admin/view/wp-slimstat-reports.php:771
1856
  msgid "Recent Downloads"
1857
  msgstr ""
1858
 
1859
+ #: ../admin/view/wp-slimstat-reports.php:783
1860
  msgid "Top Outbound Links"
1861
  msgstr ""
1862
 
1863
+ #: ../admin/view/wp-slimstat-reports.php:795
1864
  msgid "Your Website"
1865
  msgstr ""
1866
 
1867
+ #: ../admin/view/wp-slimstat-reports.php:802
1868
  msgid ""
1869
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
1870
  "this report is not affected by the filters set here above."
1871
  msgstr ""
1872
 
1873
+ #: ../admin/view/wp-slimstat-reports.php:805
1874
  msgid "Top Bounce Pages"
1875
  msgstr ""
1876
 
1877
+ #: ../admin/view/wp-slimstat-reports.php:818
1878
  msgid "Top Exit Pages"
1879
  msgstr ""
1880
 
1881
+ #: ../admin/view/wp-slimstat-reports.php:831
1882
  msgid "Top Entry Pages"
1883
  msgstr ""
1884
 
1885
+ #: ../admin/view/wp-slimstat-reports.php:844
1886
+ #: ../admin/view/wp-slimstat-reports.php:853
1887
  msgid "Outbound Links"
1888
  msgstr ""
1889
 
1890
+ #: ../admin/view/wp-slimstat-reports.php:854
1891
  msgid "Unique Outbound"
1892
  msgstr ""
1893
 
1894
+ #: ../admin/view/wp-slimstat-reports.php:863
1895
  msgid "World Map"
1896
  msgstr ""
1897
 
1898
+ #: ../admin/view/wp-slimstat-reports.php:945
1899
  msgid "Refresh"
1900
  msgstr ""
1901
 
1902
+ #: ../admin/view/wp-slimstat-reports.php:982
1903
  #, php-format
1904
  msgid "Results %s - %s of %s"
1905
  msgstr ""
1906
 
1907
+ #: ../admin/view/wp-slimstat-reports.php:984
1908
  msgid "Refresh in"
1909
  msgstr ""
1910
 
1911
+ #: ../admin/view/wp-slimstat-reports.php:1078
1912
  msgid "Category ID"
1913
  msgstr ""
1914
 
1915
+ #: ../admin/view/wp-slimstat-reports.php:1083
1916
+ #: ../admin/view/wp-slimstat-reports.php:1097
1917
  #: ../admin/view/wp-slimstat-reports.php:1102
1918
  msgid "Code"
1919
  msgstr ""
1920
 
1921
+ #: ../admin/view/wp-slimstat-reports.php:1098
1922
+ #: ../languages/dynamic_strings.php:339 ../wp-slimstat.php:1367
1923
  msgid "l-"
1924
  msgstr "Unknown"
1925
 
1926
+ #: ../admin/view/wp-slimstat-reports.php:1115
1927
  msgid "URL"
1928
  msgstr ""
1929
 
1930
+ #: ../admin/view/wp-slimstat-reports.php:1128
1931
  msgid "Referrer"
1932
  msgstr ""
1933
 
1934
+ #: ../admin/view/wp-slimstat-reports.php:1170
1935
+ #: ../admin/view/wp-slimstat-reports.php:1424
1936
+ #: ../admin/view/wp-slimstat-reports.php:1480
1937
+ #: ../admin/view/wp-slimstat-reports.php:1486
1938
+ #: ../admin/view/wp-slimstat-reports.php:1492
1939
+ #: ../admin/view/wp-slimstat-reports.php:1498
1940
+ #: ../admin/view/wp-slimstat-reports.php:1504
1941
+ #: ../admin/view/wp-slimstat-reports.php:1510
1942
+ #: ../admin/view/wp-slimstat-reports.php:1516
1943
+ #: ../admin/view/wp-slimstat-reports.php:1736
1944
  msgid "Hits"
1945
  msgstr ""
1946
 
1947
+ #: ../admin/view/wp-slimstat-reports.php:1351
1948
  msgid "Dataset Size"
1949
  msgstr ""
1950
 
1951
+ #: ../admin/view/wp-slimstat-reports.php:1353
1952
  msgid "Total number of records stored in the database."
1953
  msgstr ""
1954
 
1955
+ #: ../admin/view/wp-slimstat-reports.php:1355
1956
  msgid "DB Size"
1957
  msgstr ""
1958
 
1959
+ #: ../admin/view/wp-slimstat-reports.php:1358
1960
  msgid "Tracking Enabled"
1961
  msgstr ""
1962
 
1963
+ #: ../admin/view/wp-slimstat-reports.php:1361
1964
  msgid "Javascript Mode"
1965
  msgstr ""
1966
 
1967
+ #: ../admin/view/wp-slimstat-reports.php:1364
1968
  msgid "Tracking Browser Caps"
1969
  msgstr ""
1970
 
1971
+ #: ../admin/view/wp-slimstat-reports.php:1367
1972
  msgid "Auto purge"
1973
  msgstr ""
1974
 
1975
+ #: ../admin/view/wp-slimstat-reports.php:1370
1976
  msgid "Oldest pageview"
1977
  msgstr ""
1978
 
1979
+ #: ../admin/view/wp-slimstat-reports.php:1371
1980
  msgid "No visits"
1981
  msgstr ""
1982
 
1983
+ #: ../admin/view/wp-slimstat-reports.php:1373
1984
+ #: ../admin/wp-slimstat-admin.php:112
1985
+ msgid "Geolocation"
1986
+ msgstr ""
1987
+
1988
+ #: ../admin/view/wp-slimstat-reports.php:1375
1989
  msgid "Date when the MaxMind Geolocation database was last updated."
1990
  msgstr ""
1991
 
1992
+ #: ../admin/view/wp-slimstat-reports.php:1386
1993
+ #: ../admin/view/wp-slimstat-reports.php:1544
1994
  msgid ""
1995
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
1996
  "the tracking code is executed."
1997
  msgstr ""
1998
 
1999
+ #: ../admin/view/wp-slimstat-reports.php:1388
2000
  msgid "Days in Range"
2001
  msgstr ""
2002
 
2003
+ #: ../admin/view/wp-slimstat-reports.php:1391
2004
  msgid "Average Daily Pageviews"
2005
  msgstr ""
2006
 
2007
+ #: ../admin/view/wp-slimstat-reports.php:1393
2008
  msgid ""
2009
  "How many pages have been visited on average every day during the current "
2010
  "period."
2011
  msgstr ""
2012
 
2013
+ #: ../admin/view/wp-slimstat-reports.php:1395
2014
  msgid "From Search Results"
2015
  msgstr ""
2016
 
2017
+ #: ../admin/view/wp-slimstat-reports.php:1397
2018
  msgid ""
2019
  "Visitors who landed on your site after searching for a keyword on Google, "
2020
  "Yahoo, etc."
2021
  msgstr ""
2022
 
2023
+ #: ../admin/view/wp-slimstat-reports.php:1401
2024
  msgid ""
2025
  "Used to differentiate between multiple requests to download a file from one "
2026
  "internet address (IP) and requests originating from many distinct addresses"
2027
  msgstr ""
2028
 
2029
+ #: ../admin/view/wp-slimstat-reports.php:1403
2030
  msgid "Last 30 minutes"
2031
  msgstr ""
2032
 
2033
+ #: ../admin/view/wp-slimstat-reports.php:1442
2034
  msgid ""
2035
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2036
  "multiple times if they perform multiple visits."
2037
  msgstr ""
2038
 
2039
+ #: ../admin/view/wp-slimstat-reports.php:1446
2040
  msgid "It includes only traffic generated by human visitors."
2041
  msgstr ""
2042
 
2043
+ #: ../admin/view/wp-slimstat-reports.php:1448
2044
  msgid "Bounce rate"
2045
  msgstr ""
2046
 
2047
+ #: ../admin/view/wp-slimstat-reports.php:1450
2048
  msgid ""
2049
  "Percentage of single-page visits, i.e. visits in which the person left your "
2050
  "site from the entrance page."
2051
  msgstr ""
2052
 
2053
+ #: ../admin/view/wp-slimstat-reports.php:1452
2054
  msgid "Known visitors"
2055
  msgstr ""
2056
 
2057
+ #: ../admin/view/wp-slimstat-reports.php:1454
2058
  msgid "Visitors who had previously left a comment on your blog."
2059
  msgstr ""
2060
 
2061
+ #: ../admin/view/wp-slimstat-reports.php:1456
2062
  msgid "New visitors"
2063
  msgstr ""
2064
 
2065
+ #: ../admin/view/wp-slimstat-reports.php:1458
2066
  msgid "Human users who visited your site only once."
2067
  msgstr ""
2068
 
2069
+ #: ../admin/view/wp-slimstat-reports.php:1460
2070
  msgid "Bots"
2071
  msgstr ""
2072
 
2073
+ #: ../admin/view/wp-slimstat-reports.php:1463
2074
  msgid "Pageviews per visit"
2075
  msgstr ""
2076
 
2077
+ #: ../admin/view/wp-slimstat-reports.php:1466
2078
  msgid "Longest visit"
2079
  msgstr ""
2080
 
2081
+ #: ../admin/view/wp-slimstat-reports.php:1467
2082
  msgid "hits"
2083
  msgstr ""
2084
 
2085
+ #: ../admin/view/wp-slimstat-reports.php:1478
2086
  msgid "0 - 30 seconds"
2087
  msgstr ""
2088
 
2089
+ #: ../admin/view/wp-slimstat-reports.php:1484
2090
  msgid "31 - 60 seconds"
2091
  msgstr ""
2092
 
2093
+ #: ../admin/view/wp-slimstat-reports.php:1490
2094
  msgid "1 - 3 minutes"
2095
  msgstr ""
2096
 
2097
+ #: ../admin/view/wp-slimstat-reports.php:1496
2098
  msgid "3 - 5 minutes"
2099
  msgstr ""
2100
 
2101
+ #: ../admin/view/wp-slimstat-reports.php:1502
2102
  msgid "5 - 7 minutes"
2103
  msgstr ""
2104
 
2105
+ #: ../admin/view/wp-slimstat-reports.php:1508
2106
  msgid "7 - 10 minutes"
2107
  msgstr ""
2108
 
2109
+ #: ../admin/view/wp-slimstat-reports.php:1514
2110
  msgid "More than 10 minutes"
2111
  msgstr ""
2112
 
2113
+ #: ../admin/view/wp-slimstat-reports.php:1526
2114
  msgid "Average visit duration"
2115
  msgstr ""
2116
 
2117
+ #: ../admin/view/wp-slimstat-reports.php:1546
2118
  msgid "Unique Referrers"
2119
  msgstr ""
2120
 
2121
+ #: ../admin/view/wp-slimstat-reports.php:1548
2122
  msgid ""
2123
  "A referrer (or referring site) is the site that a visitor previously visited "
2124
  "before following a link to your site."
2125
  msgstr ""
2126
 
2127
+ #: ../admin/view/wp-slimstat-reports.php:1550
2128
  msgid "Direct Pageviews"
2129
  msgstr ""
2130
 
2131
+ #: ../admin/view/wp-slimstat-reports.php:1552
2132
  msgid ""
2133
  "Visitors who visited the site by typing the URL directly into their browser. "
2134
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2136
  "documents that don't include tracking variables."
2137
  msgstr ""
2138
 
2139
+ #: ../admin/view/wp-slimstat-reports.php:1554
2140
  msgid "From a search result"
2141
  msgstr ""
2142
 
2143
+ #: ../admin/view/wp-slimstat-reports.php:1556
2144
  msgid ""
2145
  "Visitors who came to your site via searches on Google or some other search "
2146
  "engine."
2147
  msgstr ""
2148
 
2149
+ #: ../admin/view/wp-slimstat-reports.php:1558
2150
  msgid "Unique Landing Pages"
2151
  msgstr ""
2152
 
2153
+ #: ../admin/view/wp-slimstat-reports.php:1560
2154
  msgid ""
2155
  "The first page that a user views during a session. This is also known as the "
2156
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2158
  "a landing page."
2159
  msgstr ""
2160
 
2161
+ #: ../admin/view/wp-slimstat-reports.php:1562
2162
  msgid "Bounce Pages"
2163
  msgstr ""
2164
 
2165
+ #: ../admin/view/wp-slimstat-reports.php:1564
2166
  msgid "Number of single page visits to your site over the selected period."
2167
  msgstr ""
2168
 
2169
+ #: ../admin/view/wp-slimstat-reports.php:1566
2170
  msgid "New Visitors Rate"
2171
  msgstr ""
2172
 
2173
+ #: ../admin/view/wp-slimstat-reports.php:1568
2174
  msgid ""
2175
  "Percentage of single page visits, i.e. visits in which the person left your "
2176
  "site from the entrance page."
2177
  msgstr ""
2178
 
2179
+ #: ../admin/view/wp-slimstat-reports.php:1570
2180
  msgid "Currently from search engines"
2181
  msgstr ""
2182
 
2183
+ #: ../admin/view/wp-slimstat-reports.php:1572
2184
  msgid ""
2185
  "Visitors who visited the site in the last 5 minutes coming from a search "
2186
  "engine."
2187
  msgstr ""
2188
 
2189
+ #: ../admin/view/wp-slimstat-reports.php:1642
2190
  msgid "Number of pages in your site included in Google's index."
2191
  msgstr ""
2192
 
2193
+ #: ../admin/view/wp-slimstat-reports.php:1643
2194
  msgid "Google Index"
2195
  msgstr ""
2196
 
2197
+ #: ../admin/view/wp-slimstat-reports.php:1644
2198
  msgid "Number of pages, according to Google, that link back to your site."
2199
  msgstr ""
2200
 
2201
+ #: ../admin/view/wp-slimstat-reports.php:1645
2202
  msgid "Google Backlinks"
2203
  msgstr ""
2204
 
2205
+ #: ../admin/view/wp-slimstat-reports.php:1646
2206
  msgid ""
2207
  "How many times the Facebook Like button has been approximately clicked on "
2208
  "your site."
2209
  msgstr ""
2210
 
2211
+ #: ../admin/view/wp-slimstat-reports.php:1647
2212
  msgid "Facebook Likes"
2213
  msgstr ""
2214
 
2215
+ #: ../admin/view/wp-slimstat-reports.php:1648
2216
  msgid ""
2217
  "How many times your site has been shared by someone on the social network."
2218
  msgstr ""
2219
 
2220
+ #: ../admin/view/wp-slimstat-reports.php:1649
2221
  msgid "Facebook Shares"
2222
  msgstr ""
2223
 
2224
+ #: ../admin/view/wp-slimstat-reports.php:1650
2225
  msgid "How many times links to your website have been clicked on Facebook."
2226
  msgstr ""
2227
 
2228
+ #: ../admin/view/wp-slimstat-reports.php:1651
2229
  msgid "Facebook Clicks"
2230
  msgstr ""
2231
 
2232
+ #: ../admin/view/wp-slimstat-reports.php:1652
2233
  msgid ""
2234
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2235
  "traffic data."
2236
  msgstr ""
2237
 
2238
+ #: ../admin/view/wp-slimstat-reports.php:1653
2239
  msgid "Alexa World Rank"
2240
  msgstr ""
2241
 
2242
+ #: ../admin/view/wp-slimstat-reports.php:1654
2243
  msgid "Alexa Country Rank"
2244
  msgstr ""
2245
 
2246
+ #: ../admin/view/wp-slimstat-reports.php:1655
2247
  msgid "Alexa Popularity"
2248
  msgstr ""
2249
 
2250
+ #: ../admin/view/wp-slimstat-reports.php:1666
2251
  msgid "Content Items"
2252
  msgstr ""
2253
 
2254
+ #: ../admin/view/wp-slimstat-reports.php:1668
2255
  msgid ""
2256
  "This value includes not only posts, but also custom post types, regardless "
2257
  "of their status"
2258
  msgstr ""
2259
 
2260
+ #: ../admin/view/wp-slimstat-reports.php:1670
2261
  msgid "Posts"
2262
  msgstr ""
2263
 
2264
+ #: ../admin/view/wp-slimstat-reports.php:1673
2265
  msgid "Pages"
2266
  msgstr ""
2267
 
2268
+ #: ../admin/view/wp-slimstat-reports.php:1676
2269
  msgid "Attachments"
2270
  msgstr ""
2271
 
2272
+ #: ../admin/view/wp-slimstat-reports.php:1679
2273
  msgid "Revisions"
2274
  msgstr ""
2275
 
2276
+ #: ../admin/view/wp-slimstat-reports.php:1682
2277
  msgid "Comments"
2278
  msgstr ""
2279
 
2280
+ #: ../admin/view/wp-slimstat-reports.php:1685
2281
  msgid "Avg Comments per Post"
2282
  msgstr ""
2283
 
2284
+ #: ../admin/view/wp-slimstat-reports.php:1688
2285
  msgid "Avg Server Latency"
2286
  msgstr ""
2287
 
2288
+ #: ../admin/view/wp-slimstat-reports.php:1690
2289
  msgid ""
2290
  "Latency is the amount of time it takes for the host server to receive and "
2291
  "process a request for a page object. The amount of latency depends largely "
2292
  "on how far away the user is from the server."
2293
  msgstr ""
2294
 
2295
+ #: ../admin/view/wp-slimstat-reports.php:1733
2296
  msgid "Coordinates"
2297
  msgstr ""
2298
 
2299
+ #: ../admin/view/wp-slimstat-reports.php:1733
2300
  msgid "Date"
2301
  msgstr ""
2302
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2303
  # Unknown
2304
+ #: ../admin/view/wp-slimstat-reports.php:1749
2305
  msgid "c-xx"
2306
  msgstr "Unknown"
2307
 
2308
  # Afghanistan
2309
+ #: ../admin/view/wp-slimstat-reports.php:1749
2310
  msgid "c-af"
2311
  msgstr "Afghanistan"
2312
 
2313
  # Åland Islands
2314
+ #: ../admin/view/wp-slimstat-reports.php:1749
2315
  msgid "c-ax"
2316
  msgstr "Aland Islands"
2317
 
2318
  # Albania
2319
+ #: ../admin/view/wp-slimstat-reports.php:1749
2320
  msgid "c-al"
2321
  msgstr "Albania"
2322
 
2323
  # Algeria
2324
+ #: ../admin/view/wp-slimstat-reports.php:1749
2325
  msgid "c-dz"
2326
  msgstr "Algeria"
2327
 
2328
  # Andorra
2329
+ #: ../admin/view/wp-slimstat-reports.php:1749
2330
  msgid "c-ad"
2331
  msgstr "Andorra"
2332
 
2333
  # Angola
2334
+ #: ../admin/view/wp-slimstat-reports.php:1749
2335
  msgid "c-ao"
2336
  msgstr "Angola"
2337
 
2338
  # Anguilla
2339
+ #: ../admin/view/wp-slimstat-reports.php:1749
2340
  msgid "c-ai"
2341
  msgstr "Anguilla"
2342
 
2343
  # Antigua and Barbuda
2344
+ #: ../admin/view/wp-slimstat-reports.php:1749
2345
  msgid "c-ag"
2346
  msgstr "Antigua and Barbuda"
2347
 
2348
  # Argentina
2349
+ #: ../admin/view/wp-slimstat-reports.php:1749
2350
  msgid "c-ar"
2351
  msgstr "Argentina"
2352
 
2353
  # Armenia
2354
+ #: ../admin/view/wp-slimstat-reports.php:1749
2355
  msgid "c-am"
2356
  msgstr "Armenia"
2357
 
2358
  # Aruba
2359
+ #: ../admin/view/wp-slimstat-reports.php:1749
2360
  msgid "c-aw"
2361
  msgstr "Aruba"
2362
 
2363
  # Australia
2364
+ #: ../admin/view/wp-slimstat-reports.php:1749
2365
  msgid "c-au"
2366
  msgstr "Australia"
2367
 
2368
  # Austria
2369
+ #: ../admin/view/wp-slimstat-reports.php:1749
2370
  msgid "c-at"
2371
  msgstr "Austria"
2372
 
2373
  # Azerbaijan
2374
+ #: ../admin/view/wp-slimstat-reports.php:1749
2375
  msgid "c-az"
2376
  msgstr "Azerbaijan"
2377
 
2378
  # Bahamas
2379
+ #: ../admin/view/wp-slimstat-reports.php:1749
2380
  msgid "c-bs"
2381
  msgstr "Bahamas"
2382
 
2383
  # Bahrain
2384
+ #: ../admin/view/wp-slimstat-reports.php:1749
2385
  msgid "c-bh"
2386
  msgstr "Bahrain"
2387
 
2388
  # Bangladesh
2389
+ #: ../admin/view/wp-slimstat-reports.php:1749
2390
  msgid "c-bd"
2391
  msgstr "Bangladesh"
2392
 
2393
  # Barbados
2394
+ #: ../admin/view/wp-slimstat-reports.php:1749
2395
  msgid "c-bb"
2396
  msgstr "Barbados"
2397
 
2398
  # Belarus
2399
+ #: ../admin/view/wp-slimstat-reports.php:1749
2400
  msgid "c-by"
2401
  msgstr "Belarus"
2402
 
2403
  # Belgium
2404
+ #: ../admin/view/wp-slimstat-reports.php:1749
2405
  msgid "c-be"
2406
  msgstr "Belgium"
2407
 
2408
  # Belize
2409
+ #: ../admin/view/wp-slimstat-reports.php:1749
2410
  msgid "c-bz"
2411
  msgstr "Belize"
2412
 
2413
  # Benin
2414
+ #: ../admin/view/wp-slimstat-reports.php:1749
2415
  msgid "c-bj"
2416
  msgstr "Benin"
2417
 
2418
  # Bermuda
2419
+ #: ../admin/view/wp-slimstat-reports.php:1749
2420
  msgid "c-bm"
2421
  msgstr "Bermuda"
2422
 
2423
  # Bhutan
2424
+ #: ../admin/view/wp-slimstat-reports.php:1749
2425
  msgid "c-bt"
2426
  msgstr "Bhutan"
2427
 
2428
  # Bolivia
2429
+ #: ../admin/view/wp-slimstat-reports.php:1749
2430
  msgid "c-bo"
2431
  msgstr "Bolivia"
2432
 
2433
  # Bosnia and Herzegovina
2434
+ #: ../admin/view/wp-slimstat-reports.php:1749
2435
  msgid "c-ba"
2436
  msgstr "Bosnia and Herzegovina"
2437
 
2438
  # Botswana
2439
+ #: ../admin/view/wp-slimstat-reports.php:1749
2440
  msgid "c-bw"
2441
  msgstr "Botswana"
2442
 
2443
  # Brazil
2444
+ #: ../admin/view/wp-slimstat-reports.php:1749
2445
  msgid "c-br"
2446
  msgstr "Brazil"
2447
 
2448
  # Brunei Darussalam
2449
+ #: ../admin/view/wp-slimstat-reports.php:1749
2450
  msgid "c-bn"
2451
  msgstr "Brunei Darussalam"
2452
 
2453
  # Bulgaria
2454
+ #: ../admin/view/wp-slimstat-reports.php:1749
2455
  msgid "c-bg"
2456
  msgstr "Bulgaria"
2457
 
2458
  # Burkina Faso
2459
+ #: ../admin/view/wp-slimstat-reports.php:1749
2460
  msgid "c-bf"
2461
  msgstr "Burkina Faso"
2462
 
2463
  # Burundi
2464
+ #: ../admin/view/wp-slimstat-reports.php:1749
2465
  msgid "c-bi"
2466
  msgstr "Burundi"
2467
 
2468
  # Cambodia
2469
+ #: ../admin/view/wp-slimstat-reports.php:1749
2470
  msgid "c-kh"
2471
  msgstr "Cambodia"
2472
 
2473
  # Cameroon
2474
+ #: ../admin/view/wp-slimstat-reports.php:1749
2475
  msgid "c-cm"
2476
  msgstr "Cameroon"
2477
 
2478
  # Canada
2479
+ #: ../admin/view/wp-slimstat-reports.php:1749
2480
  msgid "c-ca"
2481
  msgstr "Canada"
2482
 
2483
  # Cape Verde
2484
+ #: ../admin/view/wp-slimstat-reports.php:1749
2485
  msgid "c-cv"
2486
  msgstr "Cape Verde"
2487
 
2488
  # Cayman Islands
2489
+ #: ../admin/view/wp-slimstat-reports.php:1749
2490
  msgid "c-ky"
2491
  msgstr "Cayman Islands"
2492
 
2493
  # Central African Republic
2494
+ #: ../admin/view/wp-slimstat-reports.php:1749
2495
  msgid "c-cf"
2496
  msgstr "Central African Republic"
2497
 
2498
  # Chad
2499
+ #: ../admin/view/wp-slimstat-reports.php:1749
2500
  msgid "c-td"
2501
  msgstr "Chad"
2502
 
2503
  # Chile
2504
+ #: ../admin/view/wp-slimstat-reports.php:1749
2505
  msgid "c-cl"
2506
  msgstr "Chile"
2507
 
2508
  # China
2509
+ #: ../admin/view/wp-slimstat-reports.php:1749
2510
  msgid "c-cn"
2511
  msgstr "China"
2512
 
2513
  # Colombia
2514
+ #: ../admin/view/wp-slimstat-reports.php:1749
2515
  msgid "c-co"
2516
  msgstr "Colombia"
2517
 
2518
  # Comoros
2519
+ #: ../admin/view/wp-slimstat-reports.php:1749
2520
  msgid "c-km"
2521
  msgstr "Comoros"
2522
 
2523
  # Congo
2524
+ #: ../admin/view/wp-slimstat-reports.php:1749
2525
  msgid "c-cg"
2526
  msgstr "Congo"
2527
 
2528
  # The Democratic Republic of the Congo
2529
+ #: ../admin/view/wp-slimstat-reports.php:1749
2530
  msgid "c-cd"
2531
  msgstr "The Democratic Republic of the Congo"
2532
 
2533
  # Costa Rica
2534
+ #: ../admin/view/wp-slimstat-reports.php:1749
2535
  msgid "c-cr"
2536
  msgstr "Costa Rica"
2537
 
2538
  # Côte d'Ivoire
2539
+ #: ../admin/view/wp-slimstat-reports.php:1749
2540
  msgid "c-ci"
2541
  msgstr "Côte d'Ivoire"
2542
 
2543
  # Croatia
2544
+ #: ../admin/view/wp-slimstat-reports.php:1749
2545
  msgid "c-hr"
2546
  msgstr "Croatia"
2547
 
2548
  # Cuba
2549
+ #: ../admin/view/wp-slimstat-reports.php:1749
2550
  msgid "c-cu"
2551
  msgstr "Cuba"
2552
 
2553
  # Cyprus
2554
+ #: ../admin/view/wp-slimstat-reports.php:1749
2555
  msgid "c-cy"
2556
  msgstr "Cyprus"
2557
 
2558
  # Czech Republic
2559
+ #: ../admin/view/wp-slimstat-reports.php:1749
2560
  msgid "c-cz"
2561
  msgstr "Czech Republic"
2562
 
2563
  # Denmark
2564
+ #: ../admin/view/wp-slimstat-reports.php:1749
2565
  msgid "c-dk"
2566
  msgstr "Denmark"
2567
 
2568
  # Djibouti
2569
+ #: ../admin/view/wp-slimstat-reports.php:1749
2570
  msgid "c-dj"
2571
  msgstr "Djibouti"
2572
 
2573
  # Dominica
2574
+ #: ../admin/view/wp-slimstat-reports.php:1749
2575
  msgid "c-dm"
2576
  msgstr "Dominica"
2577
 
2578
  # Dominican Republic
2579
+ #: ../admin/view/wp-slimstat-reports.php:1749
2580
  msgid "c-do"
2581
  msgstr "Dominican Republic"
2582
 
2583
  # Ecuador
2584
+ #: ../admin/view/wp-slimstat-reports.php:1749
2585
  msgid "c-ec"
2586
  msgstr "Ecuador"
2587
 
2588
  # Egypt
2589
+ #: ../admin/view/wp-slimstat-reports.php:1749
2590
  msgid "c-eg"
2591
  msgstr "Egypt"
2592
 
2593
  # El Salvador
2594
+ #: ../admin/view/wp-slimstat-reports.php:1749
2595
  msgid "c-sv"
2596
  msgstr "El Salvador"
2597
 
2598
  # Equatorial Guinea
2599
+ #: ../admin/view/wp-slimstat-reports.php:1749
2600
  msgid "c-gq"
2601
  msgstr "Equatorial Guinea"
2602
 
2603
  # Eritrea
2604
+ #: ../admin/view/wp-slimstat-reports.php:1749
2605
  msgid "c-er"
2606
  msgstr "Eritrea"
2607
 
2608
  # Estonia
2609
+ #: ../admin/view/wp-slimstat-reports.php:1749
2610
  msgid "c-ee"
2611
  msgstr "Estonia"
2612
 
2613
  # Ethiopia
2614
+ #: ../admin/view/wp-slimstat-reports.php:1749
2615
  msgid "c-et"
2616
  msgstr "Ethiopia"
2617
 
2618
  # Faroe Islands
2619
+ #: ../admin/view/wp-slimstat-reports.php:1749
2620
  msgid "c-fo"
2621
  msgstr "Faroe Islands"
2622
 
2623
  # Falkland Islands (Malvinas)
2624
+ #: ../admin/view/wp-slimstat-reports.php:1749
2625
  msgid "c-fk"
2626
  msgstr "Falkland Islands (Malvinas)"
2627
 
2628
  # Fiji
2629
+ #: ../admin/view/wp-slimstat-reports.php:1749
2630
  msgid "c-fj"
2631
  msgstr "Fiji"
2632
 
2633
  # Finland
2634
+ #: ../admin/view/wp-slimstat-reports.php:1749
2635
  msgid "c-fi"
2636
  msgstr "Finland"
2637
 
2638
  # France
2639
+ #: ../admin/view/wp-slimstat-reports.php:1749
2640
  msgid "c-fr"
2641
  msgstr "France"
2642
 
2643
  # French Guiana
2644
+ #: ../admin/view/wp-slimstat-reports.php:1749
2645
  msgid "c-gf"
2646
  msgstr "French Guiana"
2647
 
2648
  # Gabon
2649
+ #: ../admin/view/wp-slimstat-reports.php:1749
2650
  msgid "c-ga"
2651
  msgstr "Gabon"
2652
 
2653
  # Gambia
2654
+ #: ../admin/view/wp-slimstat-reports.php:1749
2655
  msgid "c-gm"
2656
  msgstr "Gambia"
2657
 
2658
  # Georgia
2659
+ #: ../admin/view/wp-slimstat-reports.php:1749
2660
  msgid "c-ge"
2661
  msgstr "Georgia"
2662
 
2663
  # Germany
2664
+ #: ../admin/view/wp-slimstat-reports.php:1749
2665
  msgid "c-de"
2666
  msgstr "Germany"
2667
 
2668
  # Ghana
2669
+ #: ../admin/view/wp-slimstat-reports.php:1749
2670
  msgid "c-gh"
2671
  msgstr "Ghana"
2672
 
2673
  # Greece
2674
+ #: ../admin/view/wp-slimstat-reports.php:1749
2675
  msgid "c-gr"
2676
  msgstr "Greece"
2677
 
2678
  # Greenland
2679
+ #: ../admin/view/wp-slimstat-reports.php:1749
2680
  msgid "c-gl"
2681
  msgstr "Greenland"
2682
 
2683
  # Grenada
2684
+ #: ../admin/view/wp-slimstat-reports.php:1749
2685
  msgid "c-gd"
2686
  msgstr "Grenada"
2687
 
2688
  # Guadeloupe
2689
+ #: ../admin/view/wp-slimstat-reports.php:1749
2690
  msgid "c-gp"
2691
  msgstr "Guadeloupe"
2692
 
2693
  # Guatemala
2694
+ #: ../admin/view/wp-slimstat-reports.php:1749
2695
  msgid "c-gt"
2696
  msgstr "Guatemala"
2697
 
2698
  # Guinea
2699
+ #: ../admin/view/wp-slimstat-reports.php:1749
2700
  msgid "c-gn"
2701
  msgstr "Guinea"
2702
 
2703
  # Guinea-Bissau
2704
+ #: ../admin/view/wp-slimstat-reports.php:1749
2705
  msgid "c-gw"
2706
  msgstr "Guinea-Bissau"
2707
 
2708
  # Guyana
2709
+ #: ../admin/view/wp-slimstat-reports.php:1749
2710
  msgid "c-gy"
2711
  msgstr "Guyana"
2712
 
2713
  # Haiti
2714
+ #: ../admin/view/wp-slimstat-reports.php:1749
2715
  msgid "c-ht"
2716
  msgstr "Haiti"
2717
 
2718
  # Honduras
2719
+ #: ../admin/view/wp-slimstat-reports.php:1749
2720
  msgid "c-hn"
2721
  msgstr "Honduras"
2722
 
2723
  # Hong Kong
2724
+ #: ../admin/view/wp-slimstat-reports.php:1749
2725
  msgid "c-hk"
2726
  msgstr "Hong Kong"
2727
 
2728
  # Hungary
2729
+ #: ../admin/view/wp-slimstat-reports.php:1749
2730
  msgid "c-hu"
2731
  msgstr "Hungary"
2732
 
2733
  # Iceland
2734
+ #: ../admin/view/wp-slimstat-reports.php:1749
2735
  msgid "c-is"
2736
  msgstr "Iceland"
2737
 
2738
  # India
2739
+ #: ../admin/view/wp-slimstat-reports.php:1749
2740
  msgid "c-in"
2741
  msgstr "India"
2742
 
2743
  # Indonesia
2744
+ #: ../admin/view/wp-slimstat-reports.php:1749
2745
  msgid "c-id"
2746
  msgstr "Indonesia"
2747
 
2748
  # Islamic Republic of Iran
2749
+ #: ../admin/view/wp-slimstat-reports.php:1749
2750
  msgid "c-ir"
2751
  msgstr "Islamic Republic of Iran"
2752
 
2753
  # Iraq
2754
+ #: ../admin/view/wp-slimstat-reports.php:1749
2755
  msgid "c-iq"
2756
  msgstr "Iraq"
2757
 
2758
  # Ireland
2759
+ #: ../admin/view/wp-slimstat-reports.php:1749
2760
  msgid "c-ie"
2761
  msgstr "Ireland"
2762
 
2763
  # Israel
2764
+ #: ../admin/view/wp-slimstat-reports.php:1749
2765
  msgid "c-il"
2766
  msgstr "Israel"
2767
 
2768
  # Italy
2769
+ #: ../admin/view/wp-slimstat-reports.php:1749
2770
  msgid "c-it"
2771
  msgstr "Italy"
2772
 
2773
  # Jamaica
2774
+ #: ../admin/view/wp-slimstat-reports.php:1749
2775
  msgid "c-jm"
2776
  msgstr "Jamaica"
2777
 
2778
  # Japan
2779
+ #: ../admin/view/wp-slimstat-reports.php:1749
2780
  msgid "c-jp"
2781
  msgstr "Japan"
2782
 
2783
  # Jordan
2784
+ #: ../admin/view/wp-slimstat-reports.php:1749
2785
  msgid "c-jo"
2786
  msgstr "Jordan"
2787
 
2788
  # Kazakhstan
2789
+ #: ../admin/view/wp-slimstat-reports.php:1749
2790
  msgid "c-kz"
2791
  msgstr "Kazakhstan"
2792
 
2793
  # Kenya
2794
+ #: ../admin/view/wp-slimstat-reports.php:1749
2795
  msgid "c-ke"
2796
  msgstr "Kenya"
2797
 
2798
  # Nauru
2799
+ #: ../admin/view/wp-slimstat-reports.php:1749
2800
  msgid "c-nr"
2801
  msgstr "Nauru"
2802
 
2803
  # Democratic People's Republic of Korea
2804
+ #: ../admin/view/wp-slimstat-reports.php:1749
2805
  msgid "c-kp"
2806
  msgstr "Democratic People's Republic of Korea"
2807
 
2808
  # Republic of Korea
2809
+ #: ../admin/view/wp-slimstat-reports.php:1749
2810
  msgid "c-kr"
2811
  msgstr "Republic of Korea"
2812
 
2813
+ #: ../admin/view/wp-slimstat-reports.php:1749
2814
  msgid "c-kv"
2815
  msgstr "Kosovo"
2816
 
2817
  # Kuwait
2818
+ #: ../admin/view/wp-slimstat-reports.php:1749
2819
  msgid "c-kw"
2820
  msgstr "Kuwait"
2821
 
2822
  # Kyrgyzstan
2823
+ #: ../admin/view/wp-slimstat-reports.php:1749
2824
  msgid "c-kg"
2825
  msgstr "Kyrgyzstan"
2826
 
2827
  # Lao People's Democratic Republic
2828
+ #: ../admin/view/wp-slimstat-reports.php:1749
2829
  msgid "c-la"
2830
  msgstr "Lao People's Democratic Republic"
2831
 
2832
  # Latvia
2833
+ #: ../admin/view/wp-slimstat-reports.php:1749
2834
  msgid "c-lv"
2835
  msgstr "Latvia"
2836
 
2837
  # Lebanon
2838
+ #: ../admin/view/wp-slimstat-reports.php:1749
2839
  msgid "c-lb"
2840
  msgstr "Lebanon"
2841
 
2842
  # Lesotho
2843
+ #: ../admin/view/wp-slimstat-reports.php:1749
2844
  msgid "c-ls"
2845
  msgstr "Lesotho"
2846
 
2847
  # Liberia
2848
+ #: ../admin/view/wp-slimstat-reports.php:1749
2849
  msgid "c-lr"
2850
  msgstr "Liberia"
2851
 
2852
  # Libyan Arab Jamahiriya
2853
+ #: ../admin/view/wp-slimstat-reports.php:1749
2854
  msgid "c-ly"
2855
  msgstr "Libyan Arab Jamahiriya"
2856
 
2857
  # Liechtenstein
2858
+ #: ../admin/view/wp-slimstat-reports.php:1749
2859
  msgid "c-li"
2860
  msgstr "Liechtenstein"
2861
 
2862
  # Lithuania
2863
+ #: ../admin/view/wp-slimstat-reports.php:1749
2864
  msgid "c-lt"
2865
  msgstr "Lithuania"
2866
 
2867
  # Luxembourg
2868
+ #: ../admin/view/wp-slimstat-reports.php:1749
2869
  msgid "c-lu"
2870
  msgstr "Luxembourg"
2871
 
2872
  # The Former Yugoslav Republic of Macedonia
2873
+ #: ../admin/view/wp-slimstat-reports.php:1749
2874
  msgid "c-mk"
2875
  msgstr "The Former Yugoslav Republic of Macedonia"
2876
 
2877
  # Madagascar
2878
+ #: ../admin/view/wp-slimstat-reports.php:1749
2879
  msgid "c-mg"
2880
  msgstr "Madagascar"
2881
 
2882
  # Malawi
2883
+ #: ../admin/view/wp-slimstat-reports.php:1749
2884
  msgid "c-mw"
2885
  msgstr "Malawi"
2886
 
2887
  # Malaysia
2888
+ #: ../admin/view/wp-slimstat-reports.php:1749
2889
  msgid "c-my"
2890
  msgstr "Malaysia"
2891
 
2892
  # Mali
2893
+ #: ../admin/view/wp-slimstat-reports.php:1749
2894
  msgid "c-ml"
2895
  msgstr "Mali"
2896
 
2897
  # Malta
2898
+ #: ../admin/view/wp-slimstat-reports.php:1749
2899
  msgid "c-mt"
2900
  msgstr "Malta"
2901
 
2902
  # Martinique
2903
+ #: ../admin/view/wp-slimstat-reports.php:1749
2904
  msgid "c-mq"
2905
  msgstr "Martinique"
2906
 
2907
  # Mauritania
2908
+ #: ../admin/view/wp-slimstat-reports.php:1749
2909
  msgid "c-mr"
2910
  msgstr "Mauritania"
2911
 
2912
  # Mauritius
2913
+ #: ../admin/view/wp-slimstat-reports.php:1749
2914
  msgid "c-mu"
2915
  msgstr "Mauritius"
2916
 
2917
  # Mexico
2918
+ #: ../admin/view/wp-slimstat-reports.php:1749
2919
  msgid "c-mx"
2920
  msgstr "Mexico"
2921
 
2922
  # Moldova
2923
+ #: ../admin/view/wp-slimstat-reports.php:1749
2924
  msgid "c-md"
2925
  msgstr "Moldova"
2926
 
2927
  # Mongolia
2928
+ #: ../admin/view/wp-slimstat-reports.php:1749
2929
  msgid "c-mn"
2930
  msgstr "Mongolia"
2931
 
2932
  # Montenegro
2933
+ #: ../admin/view/wp-slimstat-reports.php:1749
2934
  msgid "c-me"
2935
  msgstr "Montenegro"
2936
 
2937
  # Montserrat
2938
+ #: ../admin/view/wp-slimstat-reports.php:1749
2939
  msgid "c-ms"
2940
  msgstr "Montserrat"
2941
 
2942
  # Morocco
2943
+ #: ../admin/view/wp-slimstat-reports.php:1749
2944
  msgid "c-ma"
2945
  msgstr "Morocco"
2946
 
2947
  # Mozambique
2948
+ #: ../admin/view/wp-slimstat-reports.php:1749
2949
  msgid "c-mz"
2950
  msgstr "Mozambique"
2951
 
2952
  # Myanmar
2953
+ #: ../admin/view/wp-slimstat-reports.php:1749
2954
  msgid "c-mm"
2955
  msgstr "Myanmar"
2956
 
2957
  # Namibia
2958
+ #: ../admin/view/wp-slimstat-reports.php:1749
2959
  msgid "c-na"
2960
  msgstr "Namibia"
2961
 
2962
  # Nepal
2963
+ #: ../admin/view/wp-slimstat-reports.php:1749
2964
  msgid "c-np"
2965
  msgstr "Nepal"
2966
 
2967
  # Netherlands
2968
+ #: ../admin/view/wp-slimstat-reports.php:1749
2969
  msgid "c-nl"
2970
  msgstr "Netherlands"
2971
 
2972
  # New Caledonia
2973
+ #: ../admin/view/wp-slimstat-reports.php:1749
2974
  msgid "c-nc"
2975
  msgstr "New Caledonia"
2976
 
2977
  # New Zealand
2978
+ #: ../admin/view/wp-slimstat-reports.php:1749
2979
  msgid "c-nz"
2980
  msgstr "New Zealand"
2981
 
2982
  # Nicaragua
2983
+ #: ../admin/view/wp-slimstat-reports.php:1749
2984
  msgid "c-ni"
2985
  msgstr "Nicaragua"
2986
 
2987
  # Niger
2988
+ #: ../admin/view/wp-slimstat-reports.php:1749
2989
  msgid "c-ne"
2990
  msgstr "Niger"
2991
 
2992
  # Nigeria
2993
+ #: ../admin/view/wp-slimstat-reports.php:1749
2994
  msgid "c-ng"
2995
  msgstr "Nigeria"
2996
 
2997
  # Norway
2998
+ #: ../admin/view/wp-slimstat-reports.php:1749
2999
  msgid "c-no"
3000
  msgstr "Norway"
3001
 
3002
  # Oman
3003
+ #: ../admin/view/wp-slimstat-reports.php:1749
3004
  msgid "c-om"
3005
  msgstr "Oman"
3006
 
3007
  # Pakistan
3008
+ #: ../admin/view/wp-slimstat-reports.php:1749
3009
  msgid "c-pk"
3010
  msgstr "Pakistan"
3011
 
3012
  # Palau
3013
+ #: ../admin/view/wp-slimstat-reports.php:1749
3014
  msgid "c-pw"
3015
  msgstr "Palau"
3016
 
3017
  # Occupied Palestinian Territory
3018
+ #: ../admin/view/wp-slimstat-reports.php:1749
3019
  msgid "c-ps"
3020
  msgstr "Occupied Palestinian Territory"
3021
 
3022
  # Panama
3023
+ #: ../admin/view/wp-slimstat-reports.php:1749
3024
  msgid "c-pa"
3025
  msgstr "Panama"
3026
 
3027
  # Papua New Guinea
3028
+ #: ../admin/view/wp-slimstat-reports.php:1749
3029
  msgid "c-pg"
3030
  msgstr "Papua New Guinea"
3031
 
3032
  # Paraguay
3033
+ #: ../admin/view/wp-slimstat-reports.php:1749
3034
  msgid "c-py"
3035
  msgstr "Paraguay"
3036
 
3037
  # Peru
3038
+ #: ../admin/view/wp-slimstat-reports.php:1749
3039
  msgid "c-pe"
3040
  msgstr "Peru"
3041
 
3042
  # Philippines
3043
+ #: ../admin/view/wp-slimstat-reports.php:1749
3044
  msgid "c-ph"
3045
  msgstr "Philippines"
3046
 
3047
  # Poland
3048
+ #: ../admin/view/wp-slimstat-reports.php:1749
3049
  msgid "c-pl"
3050
  msgstr "Poland"
3051
 
3052
  # Portugal
3053
+ #: ../admin/view/wp-slimstat-reports.php:1749
3054
  msgid "c-pt"
3055
  msgstr "Portugal"
3056
 
3057
  # Puerto Rico
3058
+ #: ../admin/view/wp-slimstat-reports.php:1749
3059
  msgid "c-pr"
3060
  msgstr "Puerto Rico"
3061
 
3062
  # Qatar
3063
+ #: ../admin/view/wp-slimstat-reports.php:1749
3064
  msgid "c-qa"
3065
  msgstr "Qatar"
3066
 
3067
  # Réunion
3068
+ #: ../admin/view/wp-slimstat-reports.php:1749
3069
  msgid "c-re"
3070
  msgstr "Réunion"
3071
 
3072
  # Romania
3073
+ #: ../admin/view/wp-slimstat-reports.php:1749
3074
  msgid "c-ro"
3075
  msgstr "Romania"
3076
 
3077
  # Russian Federation
3078
+ #: ../admin/view/wp-slimstat-reports.php:1749
3079
  msgid "c-ru"
3080
  msgstr "Russian Federation"
3081
 
3082
  # Rwanda
3083
+ #: ../admin/view/wp-slimstat-reports.php:1749
3084
  msgid "c-rw"
3085
  msgstr "Rwanda"
3086
 
3087
  # Saint Kitts and Nevis
3088
+ #: ../admin/view/wp-slimstat-reports.php:1749
3089
  msgid "c-kn"
3090
  msgstr "Saint Kitts and Nevis"
3091
 
3092
  # Saint Lucia
3093
+ #: ../admin/view/wp-slimstat-reports.php:1749
3094
  msgid "c-lc"
3095
  msgstr "Saint Lucia"
3096
 
3097
  # Saint Martin
3098
+ #: ../admin/view/wp-slimstat-reports.php:1749
3099
  msgid "c-mf"
3100
  msgstr "Saint Martin"
3101
 
3102
  # Saint Vincent and the Grenadines
3103
+ #: ../admin/view/wp-slimstat-reports.php:1749
3104
  msgid "c-vc"
3105
  msgstr "Saint Vincent and the Grenadines"
3106
 
3107
  # Samoa
3108
+ #: ../admin/view/wp-slimstat-reports.php:1749
3109
  msgid "c-ws"
3110
  msgstr "Samoa"
3111
 
3112
  # Sao Tome and Principe
3113
+ #: ../admin/view/wp-slimstat-reports.php:1749
3114
  msgid "c-st"
3115
  msgstr "Sao Tome and Principe"
3116
 
3117
  # Saudi Arabia
3118
+ #: ../admin/view/wp-slimstat-reports.php:1749
3119
  msgid "c-sa"
3120
  msgstr "Saudi Arabia"
3121
 
3122
  # Senegal
3123
+ #: ../admin/view/wp-slimstat-reports.php:1749
3124
  msgid "c-sn"
3125
  msgstr "Senegal"
3126
 
3127
  # Serbia
3128
+ #: ../admin/view/wp-slimstat-reports.php:1749
3129
  msgid "c-rs"
3130
  msgstr "Serbia"
3131
 
3132
  # Sierra Leone
3133
+ #: ../admin/view/wp-slimstat-reports.php:1749
3134
  msgid "c-sl"
3135
  msgstr "Sierra Leone"
3136
 
3137
  # Singapore
3138
+ #: ../admin/view/wp-slimstat-reports.php:1749
3139
  msgid "c-sg"
3140
  msgstr "Singapore"
3141
 
3142
  # Slovakia
3143
+ #: ../admin/view/wp-slimstat-reports.php:1749
3144
  msgid "c-sk"
3145
  msgstr "Slovakia"
3146
 
3147
  # Slovenia
3148
+ #: ../admin/view/wp-slimstat-reports.php:1749
3149
  msgid "c-si"
3150
  msgstr "Slovenia"
3151
 
3152
  # Solomon Islands
3153
+ #: ../admin/view/wp-slimstat-reports.php:1749
3154
  msgid "c-sb"
3155
  msgstr "Solomon Islands"
3156
 
3157
  # Somalia
3158
+ #: ../admin/view/wp-slimstat-reports.php:1749
3159
  msgid "c-so"
3160
  msgstr "Somalia"
3161
 
3162
  # South Africa
3163
+ #: ../admin/view/wp-slimstat-reports.php:1749
3164
  msgid "c-za"
3165
  msgstr "South Africa"
3166
 
3167
  # South Georgia and the South Sandwich Islands
3168
+ #: ../admin/view/wp-slimstat-reports.php:1749
3169
  msgid "c-gs"
3170
  msgstr "South Georgia and the South Sandwich Islands"
3171
 
3172
  # Spain
3173
+ #: ../admin/view/wp-slimstat-reports.php:1749
3174
  msgid "c-es"
3175
  msgstr "Spain"
3176
 
3177
  # Sri Lanka
3178
+ #: ../admin/view/wp-slimstat-reports.php:1749
3179
  msgid "c-lk"
3180
  msgstr "Sri Lanka"
3181
 
3182
+ #: ../admin/view/wp-slimstat-reports.php:1749
3183
  msgid "c-sc"
3184
  msgstr "Seychelles"
3185
 
3186
  # Sudan
3187
+ #: ../admin/view/wp-slimstat-reports.php:1749
3188
  msgid "c-sd"
3189
  msgstr "Sudan"
3190
 
3191
+ #: ../admin/view/wp-slimstat-reports.php:1749
3192
  msgid "c-ss"
3193
  msgstr "South Sudan"
3194
 
3195
  # Suriname
3196
+ #: ../admin/view/wp-slimstat-reports.php:1749
3197
  msgid "c-sr"
3198
  msgstr "Suriname"
3199
 
3200
  # Svalbard and Jan Mayen
3201
+ #: ../admin/view/wp-slimstat-reports.php:1749
3202
  msgid "c-sj"
3203
  msgstr "Svalbard and Jan Mayen"
3204
 
3205
  # Swaziland
3206
+ #: ../admin/view/wp-slimstat-reports.php:1749
3207
  msgid "c-sz"
3208
  msgstr "Swaziland"
3209
 
3210
  # Sweden
3211
+ #: ../admin/view/wp-slimstat-reports.php:1749
3212
  msgid "c-se"
3213
  msgstr "Sweden"
3214
 
3215
  # Switzerland
3216
+ #: ../admin/view/wp-slimstat-reports.php:1749
3217
  msgid "c-ch"
3218
  msgstr "Switzerland"
3219
 
3220
  # Syrian Arab Republic
3221
+ #: ../admin/view/wp-slimstat-reports.php:1749
3222
  msgid "c-sy"
3223
  msgstr "Syrian Arab Republic"
3224
 
3225
  # Taiwan, Province of China
3226
+ #: ../admin/view/wp-slimstat-reports.php:1749
3227
  msgid "c-tw"
3228
  msgstr "Taiwan"
3229
 
3230
  # Tajikistan
3231
+ #: ../admin/view/wp-slimstat-reports.php:1749
3232
  msgid "c-tj"
3233
  msgstr "Tajikistan"
3234
 
3235
  # United Republic of Tanzania
3236
+ #: ../admin/view/wp-slimstat-reports.php:1749
3237
  msgid "c-tz"
3238
  msgstr "United Republic of Tanzania"
3239
 
3240
  # Thailand
3241
+ #: ../admin/view/wp-slimstat-reports.php:1749
3242
  msgid "c-th"
3243
  msgstr "Thailand"
3244
 
3245
  # Timor-Leste
3246
+ #: ../admin/view/wp-slimstat-reports.php:1749
3247
  msgid "c-tl"
3248
  msgstr "Timor-Leste"
3249
 
3250
  # Togo
3251
+ #: ../admin/view/wp-slimstat-reports.php:1749
3252
  msgid "c-tg"
3253
  msgstr "Togo"
3254
 
3255
  # Tonga
3256
+ #: ../admin/view/wp-slimstat-reports.php:1749
3257
  msgid "c-to"
3258
  msgstr "Tonga"
3259
 
3260
  # Trinidad and Tobago
3261
+ #: ../admin/view/wp-slimstat-reports.php:1749
3262
  msgid "c-tt"
3263
  msgstr "Trinidad and Tobago"
3264
 
3265
  # Tunisia
3266
+ #: ../admin/view/wp-slimstat-reports.php:1749
3267
  msgid "c-tn"
3268
  msgstr "Tunisia"
3269
 
3270
  # Turkey
3271
+ #: ../admin/view/wp-slimstat-reports.php:1749
3272
  msgid "c-tr"
3273
  msgstr "Turkey"
3274
 
3275
  # Turkmenistan
3276
+ #: ../admin/view/wp-slimstat-reports.php:1749
3277
  msgid "c-tm"
3278
  msgstr "Turkmenistan"
3279
 
3280
  # Turks and Caicos Islands
3281
+ #: ../admin/view/wp-slimstat-reports.php:1749
3282
  msgid "c-tc"
3283
  msgstr "Turks and Caicos Islands"
3284
 
3285
  # Uganda
3286
+ #: ../admin/view/wp-slimstat-reports.php:1749
3287
  msgid "c-ug"
3288
  msgstr "Uganda"
3289
 
3290
  # Ukraine
3291
+ #: ../admin/view/wp-slimstat-reports.php:1749
3292
  msgid "c-ua"
3293
  msgstr "Ukraine"
3294
 
3295
  # United Arab Emirates
3296
+ #: ../admin/view/wp-slimstat-reports.php:1749
3297
  msgid "c-ae"
3298
  msgstr "United Arab Emirates"
3299
 
3300
  # United Kingdom
3301
+ #: ../admin/view/wp-slimstat-reports.php:1749
3302
  msgid "c-gb"
3303
  msgstr "United Kingdom"
3304
 
3305
  # United States
3306
+ #: ../admin/view/wp-slimstat-reports.php:1749
3307
  msgid "c-us"
3308
  msgstr "United States"
3309
 
3310
  # Uruguay
3311
+ #: ../admin/view/wp-slimstat-reports.php:1749
3312
  msgid "c-uy"
3313
  msgstr "Uruguay"
3314
 
3315
  # Uzbekistan
3316
+ #: ../admin/view/wp-slimstat-reports.php:1749
3317
  msgid "c-uz"
3318
  msgstr "Uzbekistan"
3319
 
3320
  # Vanuatu
3321
+ #: ../admin/view/wp-slimstat-reports.php:1749
3322
  msgid "c-vu"
3323
  msgstr "Vanuatu"
3324
 
3325
  # Venezuela
3326
+ #: ../admin/view/wp-slimstat-reports.php:1749
3327
  msgid "c-ve"
3328
  msgstr "Venezuela"
3329
 
3330
  # Viet Nam
3331
+ #: ../admin/view/wp-slimstat-reports.php:1749
3332
  msgid "c-vn"
3333
  msgstr "Viet Nam"
3334
 
3335
  # British Virgin Islands
3336
+ #: ../admin/view/wp-slimstat-reports.php:1749
3337
  msgid "c-vg"
3338
  msgstr "British Virgin Islands"
3339
 
3340
  # U.S. Virgin Islands
3341
+ #: ../admin/view/wp-slimstat-reports.php:1749
3342
  msgid "c-vi"
3343
  msgstr "U.S. Virgin Islands"
3344
 
3345
  # Western Sahara
3346
+ #: ../admin/view/wp-slimstat-reports.php:1749
3347
  msgid "c-eh"
3348
  msgstr "Western Sahara"
3349
 
3350
  # Yemen
3351
+ #: ../admin/view/wp-slimstat-reports.php:1749
3352
  msgid "c-ye"
3353
  msgstr "Yemen"
3354
 
3355
  # Zambia
3356
+ #: ../admin/view/wp-slimstat-reports.php:1749
3357
  msgid "c-zm"
3358
  msgstr "Zambia"
3359
 
3360
  # Zimbabwe
3361
+ #: ../admin/view/wp-slimstat-reports.php:1749
3362
  msgid "c-zw"
3363
  msgstr "Zimbabwe"
3364
 
3365
  # Guernsey
3366
+ #: ../admin/view/wp-slimstat-reports.php:1749
3367
  msgid "c-gg"
3368
  msgstr "Guernsey"
3369
 
3370
  # Jersey
3371
+ #: ../admin/view/wp-slimstat-reports.php:1749
3372
  msgid "c-je"
3373
  msgstr "Jersey"
3374
 
3375
  # Isle of Man
3376
+ #: ../admin/view/wp-slimstat-reports.php:1749
3377
  msgid "c-im"
3378
  msgstr "Isle of Man"
3379
 
3380
  # Maldives
3381
+ #: ../admin/view/wp-slimstat-reports.php:1749
3382
  msgid "c-mv"
3383
  msgstr "Maldives"
3384
 
3385
+ #: ../admin/view/wp-slimstat-reports.php:1750
3386
  msgid "c-eu"
3387
  msgstr "Europe"
3388
 
3389
+ #: ../admin/view/wp-slimstat-reports.php:1827
3390
  msgid "src"
3391
  msgstr ""
3392
 
3393
+ #: ../admin/view/wp-slimstat-reports.php:1831
3394
  msgid "serp"
3395
  msgstr ""
3396
 
3397
+ #: ../admin/view/wp-slimstat-reports.php:1839
3398
  msgid "Go to the referring page"
3399
  msgstr ""
3400
 
3401
+ #: ../admin/view/wp-slimstat-reports.php:1861
3402
  msgid "Remove filter for"
3403
  msgstr ""
3404
 
3405
+ #: ../admin/view/wp-slimstat-reports.php:1865
3406
  msgid "Save"
3407
  msgstr ""
3408
 
3409
+ #: ../admin/view/wp-slimstat-reports.php:1868
3410
  msgid "Reset All"
3411
  msgstr ""
3412
 
3413
+ #: ../admin/view/wp-slimstat-reports.php:1872
3414
  msgid "Current filters:"
3415
  msgstr ""
3416
 
3417
+ #: ../admin/wp-slimstat-admin.php:82
3418
+ msgid "Access Log"
3419
+ msgstr ""
3420
+
3421
+ #: ../admin/wp-slimstat-admin.php:88
3422
+ msgid "Overview"
3423
+ msgstr ""
3424
+
3425
+ #: ../admin/wp-slimstat-admin.php:94
3426
+ msgid "Audience"
3427
+ msgstr ""
3428
+
3429
+ #: ../admin/wp-slimstat-admin.php:100
3430
+ msgid "Site Analysis"
3431
  msgstr ""
3432
 
3433
+ #: ../admin/wp-slimstat-admin.php:118
 
3434
  msgid "Customize"
3435
  msgstr ""
3436
 
3437
+ #: ../admin/wp-slimstat-admin.php:130
3438
+ msgid "WordPress Dashboard"
3439
+ msgstr ""
3440
+
3441
+ #: ../admin/wp-slimstat-admin.php:136
3442
+ msgid "Inactive Reports"
3443
+ msgstr ""
3444
+
3445
+ #: ../admin/wp-slimstat-admin.php:562
3446
+ msgid "SlimStat"
3447
+ msgstr ""
3448
+
3449
+ #: ../admin/wp-slimstat-admin.php:620
3450
+ msgid "Slimstat"
3451
+ msgstr ""
3452
+
3453
+ #: ../admin/wp-slimstat-admin.php:709
3454
  msgid "Pageviews in the last "
3455
  msgstr ""
3456
 
3457
+ #: ../admin/wp-slimstat-admin.php:712
3458
  msgid "Unique IPs in the last "
3459
  msgstr ""
3460
 
3461
+ #: ../admin/wp-slimstat-admin.php:766
3462
  msgid "Show on screen"
3463
  msgstr ""
3464
 
3465
+ #: ../admin/wp-slimstat-admin.php:847
3466
  msgid "Already saved"
3467
  msgstr ""
3468
 
3469
+ #: ../admin/wp-slimstat-admin.php:855
3470
  msgid "Saved"
3471
  msgstr ""
3472
 
3473
+ #: ../admin/wp-slimstat-admin.php:875
3474
  msgid "Delete this filter"
3475
  msgstr ""
3476
 
3477
+ #: ../admin/wp-slimstat-admin.php:919
3478
  msgid "There was an error updating the following options:"
3479
  msgstr ""
3480
 
3481
+ #: ../admin/wp-slimstat-admin.php:922
3482
  msgid "Your changes have been saved."
3483
  msgstr ""
3484
 
3485
+ #: ../admin/wp-slimstat-admin.php:945
3486
  msgid "Save Changes"
3487
  msgstr ""
3488
 
3489
+ #: ../admin/wp-slimstat-admin.php:961
3490
  msgid "Definitions"
3491
  msgstr ""
3492
 
3493
+ #: ../admin/wp-slimstat-admin.php:964
3494
  msgid "Pageview"
3495
  msgstr ""
3496
 
3497
+ #: ../admin/wp-slimstat-admin.php:964
3498
  msgid ""
3499
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3500
  "with a \"hit\", which refers to a request for any file from a web server. "
3501
  "Slimstat logs a pageview each time the tracking code is executed"
3502
  msgstr ""
3503
 
3504
+ #: ../admin/wp-slimstat-admin.php:965
3505
  msgid "(Human) Visit"
3506
  msgstr ""
3507
 
3508
+ #: ../admin/wp-slimstat-admin.php:965
3509
  msgid ""
3510
  "A period of interaction between a visitor's browser and your website, ending "
3511
  "when the browser is closed or when the user has been inactive on that site "
3512
  "for 30 minutes"
3513
  msgstr ""
3514
 
3515
+ #: ../admin/wp-slimstat-admin.php:966
3516
  msgid ""
3517
  "Any user who has left a comment on your blog, and is thus identified by "
3518
  "Wordpress as a returning visitor"
3519
  msgstr ""
3520
 
3521
+ #: ../admin/wp-slimstat-admin.php:967
3522
  msgid "Unique IP"
3523
  msgstr ""
3524
 
3525
+ #: ../admin/wp-slimstat-admin.php:967
3526
  msgid ""
3527
  "Used to differentiate between multiple requests to download a file from one "
3528
  "internet address (IP) and requests originating from many distinct addresses; "
3530
  "from, it is useful, but not perfect"
3531
  msgstr ""
3532
 
3533
+ #: ../admin/wp-slimstat-admin.php:968
3534
  msgid ""
3535
  "the originating IP address of a client connecting to a web server through an "
3536
  "HTTP proxy or load balancer"
3537
  msgstr ""
3538
 
3539
+ #: ../admin/wp-slimstat-admin.php:969
3540
  msgid "Direct Traffic"
3541
  msgstr ""
3542
 
3543
+ #: ../admin/wp-slimstat-admin.php:969
3544
  msgid ""
3545
  "All those people showing up to your Web site by typing in the URL of your "
3546
  "Web site coming or from a bookmark; some people also call this \"default "
3547
  "traffic\" or \"ambient traffic\""
3548
  msgstr ""
3549
 
3550
+ #: ../admin/wp-slimstat-admin.php:970
3551
  msgid "Search Engine"
3552
  msgstr ""
3553
 
3554
+ #: ../admin/wp-slimstat-admin.php:970
3555
  msgid ""
3556
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3557
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3558
  msgstr ""
3559
 
3560
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
3561
  msgid "Keywords used by your visitors to find your website on a search engine"
3562
  msgstr ""
3563
 
3564
+ #: ../admin/wp-slimstat-admin.php:972
3565
  msgid "SERP"
3566
  msgstr ""
3567
 
3568
+ #: ../admin/wp-slimstat-admin.php:972
3569
  msgid ""
3570
  "Short for search engine results page, the Web page that a search engine "
3571
  "returns with the results of its search. The value shown represents your rank "
3572
  "(or position) within that list of results"
3573
  msgstr ""
3574
 
3575
+ #: ../admin/wp-slimstat-admin.php:973
3576
  msgid ""
3577
  "Any program used for accessing a website; this includes browsers, robots, "
3578
  "spiders and any other program that was used to retrieve information from the "
3579
  "site"
3580
  msgstr ""
3581
 
3582
+ #: ../admin/wp-slimstat-admin.php:974
3583
  msgid ""
3584
  "A link from one domain to another is said to be outbound from its source "
3585
  "anchor and inbound to its target. This report lists all the links to other "
3586
  "websites followed by your visitors."
3587
  msgstr ""
3588
 
3589
+ #: ../admin/wp-slimstat-admin.php:981
3590
  msgid "Basic Filters"
3591
  msgstr ""
3592
 
3593
+ #: ../admin/wp-slimstat-admin.php:984
3594
  msgid "User agent (Firefox, Chrome, ...)"
3595
  msgstr ""
3596
 
3597
+ #: ../admin/wp-slimstat-admin.php:985
3598
  msgid "2-letter code (us, ru, de, it, ...)"
3599
  msgstr ""
3600
 
3601
+ #: ../admin/wp-slimstat-admin.php:986
3602
  msgid "IP"
3603
  msgstr ""
3604
 
3605
+ #: ../admin/wp-slimstat-admin.php:986
3606
  msgid "Visitor's public IP address"
3607
  msgstr ""
3608
 
3609
+ #: ../admin/wp-slimstat-admin.php:988
3610
  msgid ""
3611
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3612
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3613
  "column) for more information"
3614
  msgstr ""
3615
 
3616
+ #: ../admin/wp-slimstat-admin.php:989
3617
  msgid ""
3618
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3619
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3620
  "manual page</a> for more information"
3621
  msgstr ""
3622
 
3623
+ #: ../admin/wp-slimstat-admin.php:990
3624
  msgid "URL accessed on your site"
3625
  msgstr ""
3626
 
3627
+ #: ../admin/wp-slimstat-admin.php:991
3628
  msgid "Complete address of the referrer page"
3629
  msgstr ""
3630
 
3631
+ #: ../admin/wp-slimstat-admin.php:992
3632
+ msgid "Visitor's Name"
3633
+ msgstr ""
3634
+
3635
+ #: ../admin/wp-slimstat-admin.php:992
3636
  msgid ""
3637
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3638
  "comment"
3639
  msgstr ""
3640
 
3641
+ #: ../admin/wp-slimstat-admin.php:1000
3642
  msgid "Advanced Filters"
3643
  msgstr ""
3644
 
3645
+ #: ../admin/wp-slimstat-admin.php:1003
3646
  msgid "user agent version (9.0, 11, ...)"
3647
  msgstr ""
3648
 
3649
+ #: ../admin/wp-slimstat-admin.php:1004
3650
  msgid ""
3651
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3652
  "all others"
3653
  msgstr ""
3654
 
3655
+ #: ../admin/wp-slimstat-admin.php:1005
3656
  msgid "Pageview Attributes"
3657
  msgstr ""
3658
 
3659
+ #: ../admin/wp-slimstat-admin.php:1005
3660
  msgid ""
3661
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3662
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
3663
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
3664
  msgstr ""
3665
 
3666
+ #: ../admin/wp-slimstat-admin.php:1006
3667
  msgid "author associated to that post/page when the resource was accessed"
3668
  msgstr ""
3669
 
3670
+ #: ../admin/wp-slimstat-admin.php:1007
3671
  msgid "ID of the category/term associated to the resource, when available"
3672
  msgstr ""
3673
 
3674
+ #: ../admin/wp-slimstat-admin.php:1008
3675
  msgid "visitor's originating IP address, if available"
3676
  msgstr ""
3677
 
3678
+ #: ../admin/wp-slimstat-admin.php:1009
3679
  msgid ""
3680
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
3681
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
3684
  "information"
3685
  msgstr ""
3686
 
3687
+ #: ../admin/wp-slimstat-admin.php:1010
3688
  msgid "Screen Resolution"
3689
  msgstr ""
3690
 
3691
+ #: ../admin/wp-slimstat-admin.php:1010
3692
  msgid "viewport width and height (1024x768, 800x600, ...)"
3693
  msgstr ""
3694
 
3695
+ #: ../admin/wp-slimstat-admin.php:1011
3696
  msgid ""
3697
  "generally used in conjunction with <em>is not empty</em>, identifies human "
3698
  "visitors"
3699
  msgstr ""
3700
 
3701
+ #: ../admin/wp-slimstat-admin.php:1012
3702
  msgid "Date Filters"
3703
  msgstr ""
3704
 
3705
+ #: ../admin/wp-slimstat-admin.php:1012
3706
  msgid ""
3707
  "you can specify the timeframe by entering a number in the <em>interval</em> "
3708
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
3709
  "year=blank, interval=-1 will set a year-to-date filter)"
3710
  msgstr ""
3711
 
3712
+ #: ../admin/wp-slimstat-admin.php:1013
3713
  msgid "SERP Position"
3714
  msgstr ""
3715
 
3716
+ #: ../admin/wp-slimstat-admin.php:1013
3717
  msgid ""
3718
  "set the filter to Referer contains cd=N&, where N is the position you are "
3719
  "looking for"
3720
  msgstr ""
3721
 
3722
+ #: ../admin/wp-slimstat-admin.php:1040
3723
  msgid "Yes"
3724
  msgstr ""
3725
 
3726
+ #: ../admin/wp-slimstat-admin.php:1041
3727
  msgid "No"
3728
  msgstr ""
3729
 
3730
+ #: ../admin/wp-slimstat-admin.php:1042
3731
  msgid "Site Specific"
3732
  msgstr ""
3733
 
3756
  msgstr "BlackBerry OS"
3757
 
3758
  #: ../languages/dynamic_strings.php:11
3759
+ msgid "centos"
3760
+ msgstr "CentOS"
3761
+
3762
+ #: ../languages/dynamic_strings.php:12
3763
  msgid "chromeos"
3764
  msgstr "Chrome OS"
3765
 
3766
+ #: ../languages/dynamic_strings.php:13
3767
+ msgid "commodore64"
3768
+ msgstr "Commdore 64"
3769
+
3770
+ #: ../languages/dynamic_strings.php:14
3771
  msgid "cygwin"
3772
  msgstr "Cygwin"
3773
 
3774
+ #: ../languages/dynamic_strings.php:15
3775
  msgid "debian"
3776
  msgstr "Debian"
3777
 
3778
+ #: ../languages/dynamic_strings.php:16
3779
  msgid "digital unix"
3780
  msgstr "Digital Unix"
3781
 
3782
+ #: ../languages/dynamic_strings.php:17
3783
+ msgid "fedora"
3784
+ msgstr "Fedora"
3785
+
3786
+ #: ../languages/dynamic_strings.php:18
3787
  msgid "firefoxos"
3788
  msgstr "Firefox OS"
3789
 
3790
+ #: ../languages/dynamic_strings.php:19
3791
  msgid "freebsd"
3792
  msgstr "FreeBSD"
3793
 
3794
+ #: ../languages/dynamic_strings.php:20
3795
+ msgid "gentoo"
3796
+ msgstr "Gentoo"
3797
+
3798
+ #: ../languages/dynamic_strings.php:21
3799
  msgid "hp-ux"
3800
  msgstr "HP-UX"
3801
 
3802
+ #: ../languages/dynamic_strings.php:22
3803
  msgid "ios"
3804
  msgstr "iPhone OS X"
3805
 
3806
+ #: ../languages/dynamic_strings.php:23
3807
+ msgid "iphone os"
3808
+ msgstr "iPhone OS X"
3809
+
3810
+ #: ../languages/dynamic_strings.php:24
3811
  msgid "iphone osx"
3812
  msgstr "iPhone OS X"
3813
 
3814
+ #: ../languages/dynamic_strings.php:25
3815
  msgid "irix"
3816
  msgstr "IRIX"
3817
 
3818
+ #: ../languages/dynamic_strings.php:26
3819
  msgid "java"
3820
  msgstr "Java"
3821
 
3822
+ #: ../languages/dynamic_strings.php:27
3823
+ msgid "kanotix"
3824
+ msgstr "Knaotix"
3825
+
3826
+ #: ../languages/dynamic_strings.php:28
3827
+ msgid "knoppix"
3828
+ msgstr "Knoppix"
3829
+
3830
+ #: ../languages/dynamic_strings.php:29
3831
  msgid "linux"
3832
  msgstr "Linux"
3833
 
3834
+ #: ../languages/dynamic_strings.php:30
3835
  msgid "mac"
3836
  msgstr "Mac"
3837
 
3838
+ #: ../languages/dynamic_strings.php:31
3839
  msgid "mac68k"
3840
  msgstr "Mac 68k"
3841
 
3842
+ #: ../languages/dynamic_strings.php:32
3843
  msgid "macosx"
3844
  msgstr "Mac OS X"
3845
 
3846
+ #: ../languages/dynamic_strings.php:33
3847
  msgid "macppc"
3848
  msgstr "Mac PowerPC"
3849
 
3850
+ #: ../languages/dynamic_strings.php:34
3851
+ msgid "mandrake"
3852
+ msgstr "Mandrake"
3853
+
3854
+ #: ../languages/dynamic_strings.php:35
3855
+ msgid "mandriva"
3856
+ msgstr "Mandriva"
3857
+
3858
+ #: ../languages/dynamic_strings.php:36
3859
+ msgid "mepis"
3860
+ msgstr "Mepis"
3861
+
3862
+ # Spanish; Castilian
3863
+ #: ../languages/dynamic_strings.php:37
3864
+ msgid "ms-dos"
3865
+ msgstr "MS-Dos"
3866
+
3867
+ #: ../languages/dynamic_strings.php:38
3868
  msgid "netbsd"
3869
  msgstr "NetBSD"
3870
 
3871
+ #: ../languages/dynamic_strings.php:39
3872
+ msgid "nintendo"
3873
+ msgstr "Nintendo"
3874
+
3875
+ #: ../languages/dynamic_strings.php:40
3876
  msgid "openbsd"
3877
  msgstr "OpenBSD"
3878
 
3879
+ #: ../languages/dynamic_strings.php:41
3880
  msgid "openvms"
3881
  msgstr "OpenVMS"
3882
 
3883
+ #: ../languages/dynamic_strings.php:42
3884
  msgid "os/2"
3885
  msgstr "IBM OS/2"
3886
 
3887
+ #: ../languages/dynamic_strings.php:43
3888
  msgid "palm"
3889
  msgstr "Palm"
3890
 
3891
+ #: ../languages/dynamic_strings.php:44
3892
+ msgid "palmos"
3893
+ msgstr "Palm OS"
3894
+
3895
+ #: ../languages/dynamic_strings.php:45
3896
+ msgid "pclinuxos"
3897
+ msgstr "Linux"
3898
+
3899
+ #: ../languages/dynamic_strings.php:46
3900
+ msgid "playstation"
3901
+ msgstr "Playstation"
3902
+
3903
+ #: ../languages/dynamic_strings.php:47
3904
  msgid "powertv"
3905
  msgstr "PowerTV"
3906
 
3907
+ #: ../languages/dynamic_strings.php:48
3908
+ msgid "redhat"
3909
+ msgstr "RedHat"
3910
+
3911
+ #: ../languages/dynamic_strings.php:49
3912
  msgid "rim os"
3913
  msgstr "BlackBerry OS"
3914
 
3915
+ #: ../languages/dynamic_strings.php:50
3916
  msgid "risc os"
3917
  msgstr "Risc OS"
3918
 
3919
+ #: ../languages/dynamic_strings.php:51
3920
+ msgid "slackware"
3921
+ msgstr "Slackware"
3922
+
3923
+ #: ../languages/dynamic_strings.php:52
3924
  msgid "solaris"
3925
  msgstr "Solaris"
3926
 
3927
+ #: ../languages/dynamic_strings.php:53
3928
  msgid "sunos"
3929
  msgstr "Sun OS"
3930
 
3931
+ #: ../languages/dynamic_strings.php:54
3932
+ msgid "suse"
3933
+ msgstr "SuSE"
3934
+
3935
+ #: ../languages/dynamic_strings.php:55
3936
  msgid "symbianos"
3937
  msgstr "Symbian OS"
3938
 
3939
+ #: ../languages/dynamic_strings.php:56
3940
  msgid "ubuntu"
3941
  msgstr "Ubuntu"
3942
 
3943
+ #: ../languages/dynamic_strings.php:57
3944
  msgid "unix"
3945
  msgstr "Unix"
3946
 
3947
+ #: ../languages/dynamic_strings.php:58
3948
  msgid "unknown"
3949
  msgstr "Unknown"
3950
 
3951
+ #: ../languages/dynamic_strings.php:59
3952
+ msgid "xandros"
3953
+ msgstr "Xandros"
3954
+
3955
+ #: ../languages/dynamic_strings.php:60
3956
  msgid "wap"
3957
  msgstr "WAP"
3958
 
3959
+ #: ../languages/dynamic_strings.php:61
3960
  msgid "webos"
3961
  msgstr "WebOS"
3962
 
3963
+ #: ../languages/dynamic_strings.php:62
3964
  msgid "win10"
3965
  msgstr "Windows 10"
3966
 
3967
+ #: ../languages/dynamic_strings.php:63
3968
  msgid "win16"
3969
  msgstr "Windows 16-bit"
3970
 
3971
+ #: ../languages/dynamic_strings.php:64
3972
  msgid "win2000"
3973
  msgstr "Windows 2000"
3974
 
3975
+ #: ../languages/dynamic_strings.php:65
3976
  msgid "win2003"
3977
  msgstr "Windows 2003"
3978
 
3979
+ #: ../languages/dynamic_strings.php:66
3980
  msgid "win31"
3981
  msgstr "Windows 3.1"
3982
 
3983
+ #: ../languages/dynamic_strings.php:67
3984
  msgid "win32"
3985
  msgstr "Windows 32-bit"
3986
 
3987
+ #: ../languages/dynamic_strings.php:68 ../languages/dynamic_strings.php:69
3988
  msgid "win7"
3989
  msgstr "Windows 7"
3990
 
3991
+ #: ../languages/dynamic_strings.php:70
3992
  msgid "win8"
3993
  msgstr "Windows 8"
3994
 
3995
+ #: ../languages/dynamic_strings.php:71
3996
  msgid "win8.1"
3997
  msgstr "Windows 8.1"
3998
 
3999
+ #: ../languages/dynamic_strings.php:72
4000
  msgid "win95"
4001
  msgstr "Windows 95"
4002
 
4003
+ #: ../languages/dynamic_strings.php:73
4004
  msgid "win98"
4005
  msgstr "Windows 98"
4006
 
4007
+ #: ../languages/dynamic_strings.php:74
4008
  msgid "wince"
4009
  msgstr "Windows CE"
4010
 
4011
+ #: ../languages/dynamic_strings.php:75
 
 
 
 
4012
  msgid "winme"
4013
  msgstr "Windows ME"
4014
 
4015
+ #: ../languages/dynamic_strings.php:76
4016
  msgid "winnt"
4017
  msgstr "Windows NT"
4018
 
4019
+ #: ../languages/dynamic_strings.php:77
4020
  msgid "winphone7"
4021
  msgstr "Windows Phone"
4022
 
4023
+ #: ../languages/dynamic_strings.php:78
4024
  msgid "winphone7.5"
4025
  msgstr "Windows Phone 7.5"
4026
 
4027
+ #: ../languages/dynamic_strings.php:79
4028
  msgid "winphone8"
4029
  msgstr "Windows Phone 8"
4030
 
4031
+ #: ../languages/dynamic_strings.php:80
4032
  msgid "winphone8.1"
4033
  msgstr "Windows Phone 8.1"
4034
 
4035
+ #: ../languages/dynamic_strings.php:81
4036
+ msgid "winrt"
4037
+ msgstr "Windows RT Platform"
4038
+
4039
+ #: ../languages/dynamic_strings.php:82
4040
  msgid "winvista"
4041
  msgstr "Windows Vista"
4042
 
4043
+ #: ../languages/dynamic_strings.php:83
4044
  msgid "winxp"
4045
  msgstr "Windows XP"
4046
 
4047
+ #: ../languages/dynamic_strings.php:84
4048
  msgid "wyderos"
4049
  msgstr "WyderOS"
4050
 
4051
+ #: ../languages/dynamic_strings.php:85
4052
+ msgid "zaurus"
4053
+ msgstr "Zaurus"
4054
+
4055
+ #: ../languages/dynamic_strings.php:88
4056
  msgid "acrobat"
4057
  msgstr "Acrobat Reader"
4058
 
4059
+ #: ../languages/dynamic_strings.php:89
4060
  msgid "director"
4061
  msgstr "Macromedia Director"
4062
 
4063
+ #: ../languages/dynamic_strings.php:90
4064
  msgid "flash"
4065
  msgstr "Adobe Flash Player"
4066
 
4067
+ #: ../languages/dynamic_strings.php:91
4068
  msgid "mediaplayer"
4069
  msgstr "Microsoft Media Player"
4070
 
4071
+ #: ../languages/dynamic_strings.php:92
4072
  msgid "quicktime"
4073
  msgstr "QuickTime"
4074
 
4075
+ #: ../languages/dynamic_strings.php:93
4076
  msgid "real"
4077
  msgstr "Real Player"
4078
 
4079
+ #: ../languages/dynamic_strings.php:94
4080
  msgid "silverlight"
4081
  msgstr "Microsoft Silverlight"
4082
 
4083
+ #: ../languages/dynamic_strings.php:97
4084
  msgid "p-and"
4085
  msgstr "Android"
4086
 
4087
+ #: ../languages/dynamic_strings.php:98
4088
  msgid "p-bla"
4089
  msgstr "BlackBerry"
4090
 
4091
+ #: ../languages/dynamic_strings.php:99
4092
  msgid "p-chr"
4093
  msgstr "Chrome OS"
4094
 
4095
+ #: ../languages/dynamic_strings.php:100
4096
  msgid "p-fir"
4097
  msgstr "Fire OS"
4098
 
4099
+ #: ../languages/dynamic_strings.php:101
4100
  msgid "p-fre"
4101
  msgstr "Linux FreeBSD"
4102
 
4103
+ #: ../languages/dynamic_strings.php:102
4104
  msgid "p-ios"
4105
  msgstr "Apple iOS"
4106
 
4107
+ #: ../languages/dynamic_strings.php:103
4108
  msgid "p-jav"
4109
  msgstr "Java-based OS"
4110
 
4111
+ #: ../languages/dynamic_strings.php:104
4112
  msgid "p-lin"
4113
  msgstr "Linux"
4114
 
4115
+ #: ../languages/dynamic_strings.php:105
4116
  msgid "p-mac"
4117
  msgstr "Apple"
4118
 
4119
+ #: ../languages/dynamic_strings.php:106
4120
  msgid "p-rim"
4121
  msgstr "Blackberry RIM"
4122
 
4123
+ #: ../languages/dynamic_strings.php:107
4124
  msgid "p-sym"
4125
  msgstr "Symbian OS"
4126
 
4127
+ #: ../languages/dynamic_strings.php:108
4128
  msgid "p-ubu"
4129
  msgstr "Linux Ubuntu"
4130
 
4131
+ #: ../languages/dynamic_strings.php:109
4132
  msgid "p-unk"
4133
  msgstr "Unknown"
4134
 
4135
+ #: ../languages/dynamic_strings.php:110
4136
  msgid "p-win"
4137
  msgstr "Microsoft"
4138
 
4139
  # Afrikaans
4140
+ #: ../languages/dynamic_strings.php:113
4141
  msgid "l-af"
4142
  msgstr "Afrikaans"
4143
 
4144
  # Afrikaans
4145
+ #: ../languages/dynamic_strings.php:114
4146
  msgid "l-af-za"
4147
  msgstr "Afrikaans (South Africa)"
4148
 
4149
  # Arabic
4150
+ #: ../languages/dynamic_strings.php:115
4151
  msgid "l-ar"
4152
  msgstr "Arabic"
4153
 
4154
  # Arabic
4155
+ #: ../languages/dynamic_strings.php:116
4156
  msgid "l-ar-ae"
4157
  msgstr "Arabic (U.A.E.)"
4158
 
4159
  # Arabic
4160
+ #: ../languages/dynamic_strings.php:117
4161
  msgid "l-ar-bh"
4162
  msgstr "Arabic (Bahrain)"
4163
 
4164
  # Arabic
4165
+ #: ../languages/dynamic_strings.php:118
4166
  msgid "l-ar-dz"
4167
  msgstr "Arabic (Algeria)"
4168
 
4169
  # Arabic
4170
+ #: ../languages/dynamic_strings.php:119
4171
  msgid "l-ar-eg"
4172
  msgstr "Arabic (Egypt)"
4173
 
4174
  # Arabic
4175
+ #: ../languages/dynamic_strings.php:120
4176
  msgid "l-ar-iq"
4177
  msgstr "Arabic (Iraq)"
4178
 
4179
  # Arabic
4180
+ #: ../languages/dynamic_strings.php:121
4181
  msgid "l-ar-jo"
4182
  msgstr "Arabic (Jordan)"
4183
 
4184
  # Arabic
4185
+ #: ../languages/dynamic_strings.php:122
4186
  msgid "l-ar-kw"
4187
  msgstr "Arabic (Kuwait)"
4188
 
4189
  # Arabic
4190
+ #: ../languages/dynamic_strings.php:123
4191
  msgid "l-ar-lb"
4192
  msgstr "Arabic (Lebanon)"
4193
 
4194
  # Arabic
4195
+ #: ../languages/dynamic_strings.php:124
4196
  msgid "l-ar-ly"
4197
  msgstr "Arabic (Libya)"
4198
 
4199
  # Arabic
4200
+ #: ../languages/dynamic_strings.php:125
4201
  msgid "l-ar-ma"
4202
  msgstr "Arabic (Morocco)"
4203
 
4204
  # Arabic
4205
+ #: ../languages/dynamic_strings.php:126
4206
  msgid "l-ar-om"
4207
  msgstr "Arabic (Oman)"
4208
 
4209
  # Arabic
4210
+ #: ../languages/dynamic_strings.php:127
4211
  msgid "l-ar-qa"
4212
  msgstr "Arabic (Qatar)"
4213
 
4214
  # Arabic
4215
+ #: ../languages/dynamic_strings.php:128
4216
  msgid "l-ar-sa"
4217
  msgstr "Arabic (Saudi Arabia)"
4218
 
4219
  # Arabic
4220
+ #: ../languages/dynamic_strings.php:129
4221
  msgid "l-ar-sy"
4222
  msgstr "Arabic (Syria)"
4223
 
4224
  # Arabic
4225
+ #: ../languages/dynamic_strings.php:130
4226
  msgid "l-ar-tn"
4227
  msgstr "Arabic (Tunisia)"
4228
 
4229
  # Arabic
4230
+ #: ../languages/dynamic_strings.php:131
4231
  msgid "l-ar-ye"
4232
  msgstr "Arabic (Yemen)"
4233
 
4234
  # Azerbaijani
4235
+ #: ../languages/dynamic_strings.php:132
4236
  msgid "l-az"
4237
  msgstr "Azerbaijani"
4238
 
4239
  # Azerbaijani
4240
+ #: ../languages/dynamic_strings.php:133
4241
  msgid "l-az-az"
4242
  msgstr "Azeri (Latin)"
4243
 
4244
  # Belarusian
4245
+ #: ../languages/dynamic_strings.php:134
4246
  msgid "l-be"
4247
  msgstr "Belarusian"
4248
 
4249
  # Belarusian
4250
+ #: ../languages/dynamic_strings.php:135
4251
  msgid "l-be-by"
4252
  msgstr "Belarusian (Belarus)"
4253
 
4254
  # Bulgarian
4255
+ #: ../languages/dynamic_strings.php:136
4256
  msgid "l-bg"
4257
  msgstr "Bulgarian"
4258
 
4259
  # Bulgarian
4260
+ #: ../languages/dynamic_strings.php:137
4261
  msgid "l-bg-bg"
4262
  msgstr "Bulgarian (Bulgaria)"
4263
 
4264
  # Bosnian
4265
+ #: ../languages/dynamic_strings.php:138
4266
  msgid "l-bs-ba"
4267
  msgstr "Bosnian"
4268
 
4269
  # Catalan; Valencian
4270
+ #: ../languages/dynamic_strings.php:139
4271
  msgid "l-ca"
4272
  msgstr "Catalan"
4273
 
4274
  # Catalan; Valencian
4275
+ #: ../languages/dynamic_strings.php:140
4276
  msgid "l-ca-es"
4277
  msgstr "Catalan; Valencian"
4278
 
4279
  # Czech
4280
+ #: ../languages/dynamic_strings.php:141
4281
  msgid "l-cs"
4282
  msgstr "Czech"
4283
 
4284
  # Czech
4285
+ #: ../languages/dynamic_strings.php:142
4286
  msgid "l-cs-cz"
4287
  msgstr "Czech (Czech Republic)"
4288
 
4289
  # Welsh
4290
+ #: ../languages/dynamic_strings.php:143
4291
  msgid "l-cy"
4292
  msgstr "Welsh"
4293
 
4294
  # Welsh
4295
+ #: ../languages/dynamic_strings.php:144
4296
  msgid "l-cy-gb"
4297
  msgstr "Welsh (UK)"
4298
 
4299
  # Danish
4300
+ #: ../languages/dynamic_strings.php:145
4301
  msgid "l-da"
4302
  msgstr "Danish"
4303
 
4304
  # Danish
4305
+ #: ../languages/dynamic_strings.php:146
4306
  msgid "l-da-dk"
4307
  msgstr "Danish (Denmark)"
4308
 
4309
  # German
4310
+ #: ../languages/dynamic_strings.php:147
4311
  msgid "l-de"
4312
  msgstr "German"
4313
 
4314
  # German
4315
+ #: ../languages/dynamic_strings.php:148
4316
  msgid "l-de-at"
4317
  msgstr "German (Austria)"
4318
 
4319
  # German
4320
+ #: ../languages/dynamic_strings.php:149
4321
  msgid "l-de-ch"
4322
  msgstr "German (Switzerland)"
4323
 
4324
  # German
4325
+ #: ../languages/dynamic_strings.php:150
4326
  msgid "l-de-de"
4327
  msgstr "German (Germany)"
4328
 
4329
  # German
4330
+ #: ../languages/dynamic_strings.php:151
4331
  msgid "l-de-li"
4332
  msgstr "German (Liechtenstein)"
4333
 
4334
  # German
4335
+ #: ../languages/dynamic_strings.php:152
4336
  msgid "l-de-lu"
4337
  msgstr "German (Luxembourg)"
4338
 
4339
  # Dhivehi; Divehi; Maldivian
4340
+ #: ../languages/dynamic_strings.php:153
4341
  msgid "l-dv"
4342
  msgstr "Dhivehi; Divehi; Maldivian"
4343
 
4344
  # Dhivehi; Divehi; Maldivian
4345
+ #: ../languages/dynamic_strings.php:154
4346
  msgid "l-dv-mv"
4347
  msgstr "Maldivian"
4348
 
4349
  # Modern Greek (1453-)
4350
+ #: ../languages/dynamic_strings.php:155
4351
  msgid "l-el"
4352
  msgstr "Greek"
4353
 
4354
  # Modern Greek (1453-)
4355
+ #: ../languages/dynamic_strings.php:156
4356
  msgid "l-el-gr"
4357
  msgstr "Greek (Greece)"
4358
 
4359
  # English
4360
+ #: ../languages/dynamic_strings.php:157
4361
  msgid "l-en"
4362
  msgstr "English"
4363
 
4364
  # English
4365
+ #: ../languages/dynamic_strings.php:158
4366
  msgid "l-en-au"
4367
  msgstr "English (Australia)"
4368
 
4369
  # English
4370
+ #: ../languages/dynamic_strings.php:159
4371
  msgid "l-en-bz"
4372
  msgstr "English (Belize)"
4373
 
4374
  # English
4375
+ #: ../languages/dynamic_strings.php:160
4376
  msgid "l-en-ca"
4377
  msgstr "English (Canada)"
4378
 
4379
  # English
4380
+ #: ../languages/dynamic_strings.php:161
4381
  msgid "l-en-cb"
4382
  msgstr "English (Caribbean)"
4383
 
4384
  # English
4385
+ #: ../languages/dynamic_strings.php:162
4386
  msgid "l-en-gb"
4387
  msgstr "English (Great Britain)"
4388
 
4389
  # English
4390
+ #: ../languages/dynamic_strings.php:163
4391
  msgid "l-en-ie"
4392
  msgstr "English (Ireland)"
4393
 
4394
  # English
4395
+ #: ../languages/dynamic_strings.php:164
4396
  msgid "l-en-jm"
4397
  msgstr "English (Jamaica)"
4398
 
4399
  # English
4400
+ #: ../languages/dynamic_strings.php:165
4401
  msgid "l-en-nz"
4402
  msgstr "English (New Zealand)"
4403
 
4404
  # English
4405
+ #: ../languages/dynamic_strings.php:166
4406
  msgid "l-en-ph"
4407
  msgstr "English (Philippines)"
4408
 
4409
  # English
4410
+ #: ../languages/dynamic_strings.php:167
4411
  msgid "l-en-tt"
4412
  msgstr "English (Trinidad and Tobago)"
4413
 
4414
  # English
4415
+ #: ../languages/dynamic_strings.php:168
4416
  msgid "l-en-us"
4417
  msgstr "English (USA)"
4418
 
4419
  # English
4420
+ #: ../languages/dynamic_strings.php:169
4421
  msgid "l-en-za"
4422
  msgstr "English (South Africa)"
4423
 
4424
  # English
4425
+ #: ../languages/dynamic_strings.php:170
4426
  msgid "l-en-zw"
4427
  msgstr "English (Zimbabwe)"
4428
 
4429
  # Esperanto
4430
+ #: ../languages/dynamic_strings.php:171
4431
  msgid "l-eo"
4432
  msgstr "Esperanto"
4433
 
4434
  # Spanish; Castilian
4435
+ #: ../languages/dynamic_strings.php:172
4436
  msgid "l-es"
4437
  msgstr "Spanish"
4438
 
4439
  # Spanish; Castilian
4440
+ #: ../languages/dynamic_strings.php:173
4441
  msgid "l-es-ar"
4442
  msgstr "Spanish (Argentina)"
4443
 
4444
  # Spanish; Castilian
4445
+ #: ../languages/dynamic_strings.php:174
4446
  msgid "l-es-bo"
4447
  msgstr "Spanish (Bolivia)"
4448
 
4449
  # Spanish; Castilian
4450
+ #: ../languages/dynamic_strings.php:175
4451
  msgid "l-es-cl"
4452
  msgstr "Spanish (Chile)"
4453
 
4454
  # Spanish; Castilian
4455
+ #: ../languages/dynamic_strings.php:176
4456
  msgid "l-es-co"
4457
  msgstr "Spanish (Colombia)"
4458
 
4459
  # Spanish; Castilian
4460
+ #: ../languages/dynamic_strings.php:177
4461
  msgid "l-es-cr"
4462
  msgstr "Spanish (Costa Rica)"
4463
 
4464
  # Spanish; Castilian
4465
+ #: ../languages/dynamic_strings.php:178
4466
  msgid "l-es-do"
4467
  msgstr "Spanish (Dominican Republic)"
4468
 
4469
  # Spanish; Castilian
4470
+ #: ../languages/dynamic_strings.php:179
4471
  msgid "l-es-ec"
4472
  msgstr "Spanish (Ecuador)"
4473
 
4474
  # Spanish; Castilian
4475
+ #: ../languages/dynamic_strings.php:180
4476
  msgid "l-es-es"
4477
  msgstr "Spanish (Spain)"
4478
 
4479
  # Spanish; Castilian
4480
+ #: ../languages/dynamic_strings.php:181
4481
  msgid "l-es-gt"
4482
  msgstr "Spanish (Guatemala)"
4483
 
4484
  # Spanish; Castilian
4485
+ #: ../languages/dynamic_strings.php:182
4486
  msgid "l-es-hn"
4487
  msgstr "Spanish (Honduras)"
4488
 
4489
  # Spanish; Castilian
4490
+ #: ../languages/dynamic_strings.php:183
4491
  msgid "l-es-mx"
4492
  msgstr "Spanish (Mexico)"
4493
 
4494
  # Spanish; Castilian
4495
+ #: ../languages/dynamic_strings.php:184
4496
  msgid "l-es-ni"
4497
  msgstr "Spanish (Nicaragua)"
4498
 
4499
  # Spanish; Castilian
4500
+ #: ../languages/dynamic_strings.php:185
4501
  msgid "l-es-pa"
4502
  msgstr "Spanish (Panama)"
4503
 
4504
  # Spanish; Castilian
4505
+ #: ../languages/dynamic_strings.php:186
4506
  msgid "l-es-pe"
4507
  msgstr "Spanish (Peru)"
4508
 
4509
  # Spanish; Castilian
4510
+ #: ../languages/dynamic_strings.php:187
4511
  msgid "l-es-pr"
4512
  msgstr "Spanish (Puerto Rico)"
4513
 
4514
  # Spanish; Castilian
4515
+ #: ../languages/dynamic_strings.php:188
4516
  msgid "l-es-py"
4517
  msgstr "Spanish (Paraguay)"
4518
 
4519
  # Spanish; Castilian
4520
+ #: ../languages/dynamic_strings.php:189
4521
  msgid "l-es-sv"
4522
  msgstr "Spanish (El Salvador)"
4523
 
4524
  # Spanish; Castilian
4525
+ #: ../languages/dynamic_strings.php:190
4526
  msgid "l-es-uy"
4527
  msgstr "Spanish (Uruguay)"
4528
 
4529
  # Spanish; Castilian
4530
+ #: ../languages/dynamic_strings.php:191
4531
  msgid "l-es-ve"
4532
  msgstr "Spanish (Venezuela)"
4533
 
4534
  # Estonian
4535
+ #: ../languages/dynamic_strings.php:192
4536
  msgid "l-et"
4537
  msgstr "Estonian"
4538
 
4539
  # Estonian
4540
+ #: ../languages/dynamic_strings.php:193
4541
  msgid "l-et-ee"
4542
  msgstr "Estonian (Estonia)"
4543
 
4544
  # Basque
4545
+ #: ../languages/dynamic_strings.php:194
4546
  msgid "l-eu"
4547
  msgstr "Basque"
4548
 
4549
  # Basque
4550
+ #: ../languages/dynamic_strings.php:195
4551
  msgid "l-eu-es"
4552
  msgstr "Basque (Spain)"
4553
 
4554
  # Persian
4555
+ #: ../languages/dynamic_strings.php:196
4556
  msgid "l-fa"
4557
  msgstr "Persian"
4558
 
4559
  # Persian
4560
+ #: ../languages/dynamic_strings.php:197
4561
  msgid "l-fa-ir"
4562
  msgstr "Persian (Iran)"
4563
 
4564
  # Finnish
4565
+ #: ../languages/dynamic_strings.php:198
4566
  msgid "l-fi"
4567
  msgstr "Finnish"
4568
 
4569
  # Finnish
4570
+ #: ../languages/dynamic_strings.php:199
4571
  msgid "l-fi-fi"
4572
  msgstr "Finnish (Finland)"
4573
 
4574
  # Faroese
4575
+ #: ../languages/dynamic_strings.php:200
4576
  msgid "l-fo"
4577
  msgstr "Faroese"
4578
 
4579
  # Faroese
4580
+ #: ../languages/dynamic_strings.php:201
4581
  msgid "l-fo-fo"
4582
  msgstr "Faroese (Faroe Islands)"
4583
 
4584
  # French
4585
+ #: ../languages/dynamic_strings.php:202
4586
  msgid "l-fr"
4587
  msgstr "French"
4588
 
4589
  # French
4590
+ #: ../languages/dynamic_strings.php:203
4591
  msgid "l-fr-be"
4592
  msgstr "French (Belgium)"
4593
 
4594
  # French
4595
+ #: ../languages/dynamic_strings.php:204
4596
  msgid "l-fr-ca"
4597
  msgstr "French (Canada)"
4598
 
4599
  # French
4600
+ #: ../languages/dynamic_strings.php:205
4601
  msgid "l-fr-ch"
4602
  msgstr "French (Switzerland)"
4603
 
4604
  # French
4605
+ #: ../languages/dynamic_strings.php:206
4606
  msgid "l-fr-fr"
4607
  msgstr "French (France)"
4608
 
4609
  # French
4610
+ #: ../languages/dynamic_strings.php:207
4611
  msgid "l-fr-lu"
4612
  msgstr "French (Luxembourg)"
4613
 
4614
  # French
4615
+ #: ../languages/dynamic_strings.php:208
4616
  msgid "l-fr-mc"
4617
  msgstr "French (Monaco)"
4618
 
4619
  # Galician
4620
+ #: ../languages/dynamic_strings.php:209
4621
  msgid "l-gl"
4622
  msgstr "Galician"
4623
 
4624
  # Spanish; Castilian
4625
+ #: ../languages/dynamic_strings.php:210
4626
  msgid "l-gl-es"
4627
  msgstr "Galician (Spain)"
4628
 
4629
  # Gujarati
4630
+ #: ../languages/dynamic_strings.php:211
4631
  msgid "l-gu"
4632
  msgstr "Gujarati"
4633
 
4634
  # Gujarati
4635
+ #: ../languages/dynamic_strings.php:212
4636
  msgid "l-gu-in"
4637
  msgstr "Gujarati (India)"
4638
 
4639
  # Hebrew
4640
+ #: ../languages/dynamic_strings.php:213
4641
  msgid "l-he"
4642
  msgstr "Hebrew"
4643
 
4644
  # Hebrew
4645
+ #: ../languages/dynamic_strings.php:214
4646
  msgid "l-he-il"
4647
  msgstr "Hebrew (Israel)"
4648
 
4649
  # Hindi
4650
+ #: ../languages/dynamic_strings.php:215
4651
  msgid "l-hi"
4652
  msgstr "Hindi"
4653
 
4654
  # Hindi
4655
+ #: ../languages/dynamic_strings.php:216
4656
  msgid "l-hi-in"
4657
  msgstr "Hindi (India)"
4658
 
4659
  # Croatian
4660
+ #: ../languages/dynamic_strings.php:217
4661
  msgid "l-hr"
4662
  msgstr "Croatian"
4663
 
4664
  # Croatian
4665
+ #: ../languages/dynamic_strings.php:218
4666
  msgid "l-hr-ba"
4667
  msgstr "Croatian (Bosnia)"
4668
 
4669
  # Croatian
4670
+ #: ../languages/dynamic_strings.php:219
4671
  msgid "l-hr-hr"
4672
  msgstr "Croatian (Croatia)"
4673
 
4674
  # Hungarian
4675
+ #: ../languages/dynamic_strings.php:220
4676
  msgid "l-hu"
4677
  msgstr "Hungarian"
4678
 
4679
  # Hungarian
4680
+ #: ../languages/dynamic_strings.php:221
4681
  msgid "l-hu-hu"
4682
  msgstr "Hungarian (Hungary)"
4683
 
4684
  # Armenian
4685
+ #: ../languages/dynamic_strings.php:222
4686
  msgid "l-hy"
4687
  msgstr "Armenian"
4688
 
4689
  # Armenian
4690
+ #: ../languages/dynamic_strings.php:223
4691
  msgid "l-hy-am"
4692
  msgstr "Armenian (Armenia)"
4693
 
4694
+ #: ../languages/dynamic_strings.php:224
4695
  msgid "l-id"
4696
  msgstr "Indonesian"
4697
 
4698
+ #: ../languages/dynamic_strings.php:225
4699
  msgid "l-id-id"
4700
  msgstr "Indonesian"
4701
 
4702
  # Icelandic
4703
+ #: ../languages/dynamic_strings.php:226
4704
  msgid "l-is"
4705
  msgstr "Icelandic"
4706
 
4707
  # Icelandic
4708
+ #: ../languages/dynamic_strings.php:227
4709
  msgid "l-is-is"
4710
  msgstr "Icelandic (Iceland)"
4711
 
4712
  # Italian
4713
+ #: ../languages/dynamic_strings.php:228
4714
  msgid "l-it"
4715
  msgstr "Italian"
4716
 
4717
  # Italian
4718
+ #: ../languages/dynamic_strings.php:229
4719
  msgid "l-it-ch"
4720
  msgstr "Italian (Switzerland)"
4721
 
4722
  # Italian
4723
+ #: ../languages/dynamic_strings.php:230
4724
  msgid "l-it-it"
4725
  msgstr "Italian (Italy)"
4726
 
4727
  # Japanese
4728
+ #: ../languages/dynamic_strings.php:231
4729
  msgid "l-ja"
4730
  msgstr "Japanese"
4731
 
4732
  # Japanese
4733
+ #: ../languages/dynamic_strings.php:232
4734
  msgid "l-ja-jp"
4735
  msgstr "Japanese (Japan)"
4736
 
4737
  # Georgian
4738
+ #: ../languages/dynamic_strings.php:233
4739
  msgid "l-ka"
4740
  msgstr "Georgian"
4741
 
4742
  # Georgian
4743
+ #: ../languages/dynamic_strings.php:234
4744
  msgid "l-ka-ge"
4745
  msgstr "Georgian (Georgia)"
4746
 
4747
  # Kazakh
4748
+ #: ../languages/dynamic_strings.php:235
4749
  msgid "l-kk"
4750
  msgstr "Kazakh"
4751
 
4752
  # Kazakh
4753
+ #: ../languages/dynamic_strings.php:236
4754
  msgid "l-kk-kz"
4755
  msgstr "Kazakh (Kazakhstan)"
4756
 
4757
  # Kannada
4758
+ #: ../languages/dynamic_strings.php:237
4759
  msgid "l-kn"
4760
  msgstr "Kannada"
4761
 
4762
  # Kannada
4763
+ #: ../languages/dynamic_strings.php:238
4764
  msgid "l-kn-in"
4765
  msgstr "Kannada (India)"
4766
 
4767
  # Korean
4768
+ #: ../languages/dynamic_strings.php:239
4769
  msgid "l-ko"
4770
  msgstr "Korean"
4771
 
4772
  # Korean
4773
+ #: ../languages/dynamic_strings.php:240
4774
  msgid "l-ko-kr"
4775
  msgstr "Korean (Korea)"
4776
 
4777
  # Korean
4778
+ #: ../languages/dynamic_strings.php:241
4779
  msgid "l-kok"
4780
  msgstr "Konkani"
4781
 
4782
  # Korean
4783
+ #: ../languages/dynamic_strings.php:242
4784
  msgid "l-kok-in"
4785
  msgstr "Konkani (India)"
4786
 
4787
  # Kirghiz; Kyrgyz
4788
+ #: ../languages/dynamic_strings.php:243
4789
  msgid "l-ky"
4790
  msgstr "Kirghiz"
4791
 
4792
  # Kirghiz; Kyrgyz
4793
+ #: ../languages/dynamic_strings.php:244
4794
  msgid "l-ky-kg"
4795
  msgstr "Kirghiz (Kazakhstan)"
4796
 
4797
  # Lithuanian
4798
+ #: ../languages/dynamic_strings.php:245
4799
  msgid "l-lt"
4800
  msgstr "Lithuanian"
4801
 
4802
  # Lithuanian
4803
+ #: ../languages/dynamic_strings.php:246
4804
  msgid "l-lt-lt"
4805
  msgstr "Lithuanian (Lithuania)"
4806
 
4807
  # Latvian
4808
+ #: ../languages/dynamic_strings.php:247
4809
  msgid "l-lv"
4810
  msgstr "Latvian"
4811
 
4812
  # Latvian
4813
+ #: ../languages/dynamic_strings.php:248
4814
  msgid "l-lv-lv"
4815
  msgstr "Latvian (Latvia)"
4816
 
4817
  # Maori
4818
+ #: ../languages/dynamic_strings.php:249
4819
  msgid "l-mi"
4820
  msgstr "Maori"
4821
 
4822
  # Maori
4823
+ #: ../languages/dynamic_strings.php:250
4824
  msgid "l-mi-nz"
4825
  msgstr "Maori (New Zealand)"
4826
 
4827
  # Macedonian
4828
+ #: ../languages/dynamic_strings.php:251
4829
  msgid "l-mk"
4830
  msgstr "Macedonian"
4831
 
4832
  # Macedonian
4833
+ #: ../languages/dynamic_strings.php:252
4834
  msgid "l-mk-ml"
4835
  msgstr "Macedonian (FYROM)"
4836
 
4837
  # Mongolian
4838
+ #: ../languages/dynamic_strings.php:253
4839
  msgid "l-mn"
4840
  msgstr "Mongolian"
4841
 
4842
  # Mongolian
4843
+ #: ../languages/dynamic_strings.php:254
4844
  msgid "l-mn-mn"
4845
  msgstr "Mongolian (Mongolia)"
4846
 
4847
  # Marathi
4848
+ #: ../languages/dynamic_strings.php:255
4849
  msgid "l-mr"
4850
  msgstr "Marathi"
4851
 
4852
  # Marathi
4853
+ #: ../languages/dynamic_strings.php:256
4854
  msgid "l-mr-in"
4855
  msgstr "Marathi (India)"
4856
 
4857
  # Malay
4858
+ #: ../languages/dynamic_strings.php:257
4859
  msgid "l-ms"
4860
  msgstr "Malay"
4861
 
4862
  # Malay
4863
+ #: ../languages/dynamic_strings.php:258
4864
  msgid "l-ms-bn"
4865
  msgstr "Malay (Brunei)"
4866
 
4867
  # Malay
4868
+ #: ../languages/dynamic_strings.php:259
4869
  msgid "l-ms-my"
4870
  msgstr "Malay (Malaysia)"
4871
 
4872
  # Maltese
4873
+ #: ../languages/dynamic_strings.php:260
4874
  msgid "l-mt"
4875
  msgstr "Maltese"
4876
 
4877
  # Maltese
4878
+ #: ../languages/dynamic_strings.php:261
4879
  msgid "l-mt-mt"
4880
  msgstr "Maltese (Malta)"
4881
 
4882
  # Norwegian Bokmål
4883
+ #: ../languages/dynamic_strings.php:262
4884
  msgid "l-nb"
4885
  msgstr "Norwegian; Bokmål"
4886
 
4887
  # Norwegian Bokmål
4888
+ #: ../languages/dynamic_strings.php:263
4889
  msgid "l-nb-no"
4890
  msgstr "Norwegian (Norway)"
4891
 
4892
  # Dutch; Flemish
4893
+ #: ../languages/dynamic_strings.php:264
4894
  msgid "l-nl"
4895
  msgstr "Dutch; Flemish"
4896
 
4897
  # Belarusian
4898
+ #: ../languages/dynamic_strings.php:265
4899
  msgid "l-nl-be"
4900
  msgstr "Dutch (Belgium)"
4901
 
4902
  # Dutch; Flemish
4903
+ #: ../languages/dynamic_strings.php:266
4904
  msgid "l-nl-nl"
4905
  msgstr "Dutch (The Netherlands)"
4906
 
4907
  # Norwegian Nynorsk
4908
+ #: ../languages/dynamic_strings.php:267
4909
  msgid "l-nn-no"
4910
  msgstr "Norwegian; Nynorsk (Norway)"
4911
 
4912
+ #: ../languages/dynamic_strings.php:268
4913
  msgid "l-ns"
4914
  msgstr "Northern Sotho"
4915
 
4916
+ #: ../languages/dynamic_strings.php:269
4917
  msgid "l-ns-za"
4918
  msgstr "Northern Sotho (South Africa)"
4919
 
4920
  # Panjabi; Punjabi
4921
+ #: ../languages/dynamic_strings.php:270
4922
  msgid "l-pa"
4923
  msgstr "Panjabi; Punjabi"
4924
 
4925
  # Panjabi; Punjabi
4926
+ #: ../languages/dynamic_strings.php:271
4927
  msgid "l-pa-in"
4928
  msgstr "Panjabi (India)"
4929
 
4930
  # Polish
4931
+ #: ../languages/dynamic_strings.php:272
4932
  msgid "l-pl"
4933
  msgstr "Polish"
4934
 
4935
  # Polish
4936
+ #: ../languages/dynamic_strings.php:273
4937
  msgid "l-pl-pl"
4938
  msgstr "Polish (Poland)"
4939
 
4940
  # Pushto; Pashto
4941
+ #: ../languages/dynamic_strings.php:274
4942
  msgid "l-ps"
4943
  msgstr "Pushto; Pashto"
4944
 
4945
  # Pushto; Pashto
4946
+ #: ../languages/dynamic_strings.php:275
4947
  msgid "l-ps-ar"
4948
  msgstr "Pashto (Afghanistan)"
4949
 
4950
  # Portuguese
4951
+ #: ../languages/dynamic_strings.php:276
4952
  msgid "l-pt"
4953
  msgstr "Portuguese"
4954
 
4955
  # Portuguese
4956
+ #: ../languages/dynamic_strings.php:277
4957
  msgid "l-pt-br"
4958
  msgstr "Portuguese (Brazil)"
4959
 
4960
  # Portuguese
4961
+ #: ../languages/dynamic_strings.php:278
4962
  msgid "l-pt-pt"
4963
  msgstr "Portuguese (Portugal)"
4964
 
4965
  # Quechua
4966
+ #: ../languages/dynamic_strings.php:279
4967
  msgid "l-qu"
4968
  msgstr "Quechua"
4969
 
4970
  # Quechua
4971
+ #: ../languages/dynamic_strings.php:280
4972
  msgid "l-qu-bo"
4973
  msgstr "Quechua (Bolivia)"
4974
 
4975
  # Quechua
4976
+ #: ../languages/dynamic_strings.php:281
4977
  msgid "l-qu-ec"
4978
  msgstr "Quechua (Ecuador)"
4979
 
4980
  # Quechua
4981
+ #: ../languages/dynamic_strings.php:282
4982
  msgid "l-qu-pe"
4983
  msgstr "Quechua (Peru)"
4984
 
4985
  # Romanian; Moldavian; Moldovan
4986
+ #: ../languages/dynamic_strings.php:283
4987
  msgid "l-ro"
4988
  msgstr "Romanian"
4989
 
4990
  # Romanian; Moldavian; Moldovan
4991
+ #: ../languages/dynamic_strings.php:284
4992
  msgid "l-ro-ro"
4993
  msgstr "Romanian (Romania)"
4994
 
4995
  # Russian
4996
+ #: ../languages/dynamic_strings.php:285
4997
  msgid "l-ru"
4998
  msgstr "Russian"
4999
 
5000
  # Russian
5001
+ #: ../languages/dynamic_strings.php:286
5002
  msgid "l-ru-ru"
5003
  msgstr "Russian (Russia)"
5004
 
5005
  # Sanskrit
5006
+ #: ../languages/dynamic_strings.php:287
5007
  msgid "l-sa"
5008
  msgstr "Sanskrit"
5009
 
5010
  # Sanskrit (India)
5011
+ #: ../languages/dynamic_strings.php:288
5012
  msgid "l-sa-in"
5013
  msgstr "Sanskrit (India)"
5014
 
5015
  # Northern Sami
5016
+ #: ../languages/dynamic_strings.php:289
5017
  msgid "l-se"
5018
  msgstr "Northern Sami"
5019
 
5020
  # Northern Sami
5021
+ #: ../languages/dynamic_strings.php:290
5022
  msgid "l-se-fi"
5023
  msgstr "Northern Sami (Finland)"
5024
 
5025
  # Northern Sami
5026
+ #: ../languages/dynamic_strings.php:291
5027
  msgid "l-se-no"
5028
  msgstr "Northern Sami (Norway)"
5029
 
5030
  # Northern Sami
5031
+ #: ../languages/dynamic_strings.php:292
5032
  msgid "l-se-se"
5033
  msgstr "Northern Sami (Sweden)"
5034
 
5035
  # Slovak
5036
+ #: ../languages/dynamic_strings.php:293
5037
  msgid "l-sk"
5038
  msgstr "Slovak"
5039
 
5040
  # Slovak
5041
+ #: ../languages/dynamic_strings.php:294
5042
  msgid "l-sk-sk"
5043
  msgstr "Slovak (Slovakia)"
5044
 
5045
  # Slovenian
5046
+ #: ../languages/dynamic_strings.php:295
5047
  msgid "l-sl"
5048
  msgstr "Slovenian"
5049
 
5050
  # Slovenian
5051
+ #: ../languages/dynamic_strings.php:296
5052
  msgid "l-sl-si"
5053
  msgstr "Slovenian (Slovenia)"
5054
 
5055
  # Albanian
5056
+ #: ../languages/dynamic_strings.php:297
5057
  msgid "l-sq"
5058
  msgstr "Albanian"
5059
 
5060
  # Albanian
5061
+ #: ../languages/dynamic_strings.php:298
5062
  msgid "l-sq-al"
5063
  msgstr "Albanian (Albania)"
5064
 
5065
  # Serbian
5066
+ #: ../languages/dynamic_strings.php:299
5067
  msgid "l-sr-ba"
5068
  msgstr "Serbian (Bosnia and Herzegovina)"
5069
 
5070
  # Serbian
5071
+ #: ../languages/dynamic_strings.php:300
5072
  msgid "l-sr-sp"
5073
  msgstr "Serbian (Serbia and Montenegro)"
5074
 
5075
  # Swedish
5076
+ #: ../languages/dynamic_strings.php:301
5077
  msgid "l-sv"
5078
  msgstr "Swedish"
5079
 
5080
  # Swedish
5081
+ #: ../languages/dynamic_strings.php:302
5082
  msgid "l-sv-fi"
5083
  msgstr "Swedish (Finland)"
5084
 
5085
  # Swedish
5086
+ #: ../languages/dynamic_strings.php:303
5087
  msgid "l-sv-se"
5088
  msgstr "Swedish (Sweden)"
5089
 
5090
  # Swahili
5091
+ #: ../languages/dynamic_strings.php:304
5092
  msgid "l-sw"
5093
  msgstr "Swahili"
5094
 
5095
  # Swahili
5096
+ #: ../languages/dynamic_strings.php:305
5097
  msgid "l-sw-ke"
5098
  msgstr "Swahili (Kenya)"
5099
 
5100
  # Tamil
5101
+ #: ../languages/dynamic_strings.php:306
5102
  msgid "l-ta"
5103
  msgstr "Tamil"
5104
 
5105
  # Tamil
5106
+ #: ../languages/dynamic_strings.php:307
5107
  msgid "l-ta-in"
5108
  msgstr "Tamil (India)"
5109
 
5110
  # Telugu
5111
+ #: ../languages/dynamic_strings.php:308
5112
  msgid "l-te"
5113
  msgstr "Telugu"
5114
 
5115
  # Telugu
5116
+ #: ../languages/dynamic_strings.php:309
5117
  msgid "l-te-in"
5118
  msgstr "Telugu (India)"
5119
 
5120
  # Thai
5121
+ #: ../languages/dynamic_strings.php:310
5122
  msgid "l-th"
5123
  msgstr "Thai"
5124
 
5125
  # Thai
5126
+ #: ../languages/dynamic_strings.php:311
5127
  msgid "l-th-th"
5128
  msgstr "Thai (Thailand)"
5129
 
5130
  # Tagalog
5131
+ #: ../languages/dynamic_strings.php:312
5132
  msgid "l-tl"
5133
  msgstr "Tagalog"
5134
 
5135
  # Tagalog
5136
+ #: ../languages/dynamic_strings.php:313
5137
  msgid "l-tl-ph"
5138
  msgstr "Tagalog (Philippines)"
5139
 
5140
  # Tswana
5141
+ #: ../languages/dynamic_strings.php:314
5142
  msgid "l-tn"
5143
  msgstr "Tswana"
5144
 
5145
  # Tswana
5146
+ #: ../languages/dynamic_strings.php:315
5147
  msgid "l-tn-za"
5148
  msgstr "Tswana (South Africa)"
5149
 
5150
  # Turkish
5151
+ #: ../languages/dynamic_strings.php:316
5152
  msgid "l-tr"
5153
  msgstr "Turkish"
5154
 
5155
  # Turkish
5156
+ #: ../languages/dynamic_strings.php:317
5157
  msgid "l-tr-tr"
5158
  msgstr "Turkish (Turkey)"
5159
 
5160
  # Tatar
5161
+ #: ../languages/dynamic_strings.php:318
5162
  msgid "l-tt"
5163
  msgstr "Tatar"
5164
 
5165
  # Tatar
5166
+ #: ../languages/dynamic_strings.php:319
5167
  msgid "l-tt-ru"
5168
  msgstr "Tatar (Russia)"
5169
 
5170
  # Tsonga
5171
+ #: ../languages/dynamic_strings.php:320
5172
  msgid "l-ts"
5173
  msgstr "Tsonga"
5174
 
5175
  # Ukrainian
5176
+ #: ../languages/dynamic_strings.php:321
5177
  msgid "l-uk"
5178
  msgstr "Ukrainian"
5179
 
5180
  # Ukrainian
5181
+ #: ../languages/dynamic_strings.php:322
5182
  msgid "l-uk-ua"
5183
  msgstr "Ukrainian (Ukraine)"
5184
 
5185
  # Urdu
5186
+ #: ../languages/dynamic_strings.php:323
5187
  msgid "l-ur"
5188
  msgstr "Urdu"
5189
 
5190
  # Urdu
5191
+ #: ../languages/dynamic_strings.php:324
5192
  msgid "l-ur-pk"
5193
  msgstr "Urdu (Pakistan)"
5194
 
5195
  # Uzbek
5196
+ #: ../languages/dynamic_strings.php:325
5197
  msgid "l-uz"
5198
  msgstr "Uzbek"
5199
 
5200
  # Uzbek
5201
+ #: ../languages/dynamic_strings.php:326
5202
  msgid "l-uz-uz"
5203
  msgstr "Uzbek (Uzbekistan)"
5204
 
5205
  # Vietnamese
5206
+ #: ../languages/dynamic_strings.php:327
5207
  msgid "l-vi"
5208
  msgstr "Vietnamese"
5209
 
5210
  # Vietnamese
5211
+ #: ../languages/dynamic_strings.php:328
5212
  msgid "l-vi-vn"
5213
  msgstr "Vietnamese (Viet Nam)"
5214
 
5215
  # Xhosa
5216
+ #: ../languages/dynamic_strings.php:329
5217
  msgid "l-xh"
5218
  msgstr "Xhosa"
5219
 
5220
  # Xhosa
5221
+ #: ../languages/dynamic_strings.php:330
5222
  msgid "l-xh-za"
5223
  msgstr "Xhosa (South Africa)"
5224
 
5225
  # Chinese
5226
+ #: ../languages/dynamic_strings.php:331
5227
  msgid "l-zh"
5228
  msgstr "Chinese"
5229
 
5230
  # Chinese
5231
+ #: ../languages/dynamic_strings.php:332
5232
  msgid "l-zh-cn"
5233
  msgstr "Chinese (S)"
5234
 
5235
  # Chinese
5236
+ #: ../languages/dynamic_strings.php:333
5237
  msgid "l-zh-hk"
5238
  msgstr "Chinese (Hong Kong)"
5239
 
5240
  # Chinese
5241
+ #: ../languages/dynamic_strings.php:334
5242
  msgid "l-zh-mo"
5243
  msgstr "Chinese (Macau)"
5244
 
5245
  # Chinese
5246
+ #: ../languages/dynamic_strings.php:335
5247
  msgid "l-zh-sg"
5248
  msgstr "Chinese (Singapore)"
5249
 
5250
  # Chinese
5251
+ #: ../languages/dynamic_strings.php:336
5252
  msgid "l-zh-tw"
5253
  msgstr "Chinese (T)"
5254
 
5255
  # Zulu
5256
+ #: ../languages/dynamic_strings.php:337
5257
  msgid "l-zu"
5258
  msgstr "Zulu"
5259
 
5260
  # Zulu
5261
+ #: ../languages/dynamic_strings.php:338
5262
  msgid "l-zu-za"
5263
  msgstr "Zulu (South Africa)"
5264
 
5265
  # Unknown
5266
+ #: ../languages/dynamic_strings.php:340
5267
  msgid "l-empty"
5268
  msgstr "Unknown"
5269
 
5270
  # Unknown
5271
+ #: ../languages/dynamic_strings.php:341
5272
  msgid "l-xx"
5273
  msgstr "Unknown"
5274
 
5275
+ #: ../languages/dynamic_strings.php:343
5276
  msgid "c-xy"
5277
  msgstr "Local IP"
5278
 
5279
+ #: ../wp-slimstat.php:237 ../wp-slimstat.php:524
5280
  msgid "Notice: Pageview filtered by third-party code"
5281
  msgstr ""
5282
 
5283
+ #: ../wp-slimstat.php:254
5284
  #, php-format
5285
  msgid "Error: Malformed URL %s"
5286
  msgstr ""
5287
 
5288
+ #: ../wp-slimstat.php:278
5289
  #, php-format
5290
  msgid "Notice: Referrer %s is blacklisted"
5291
  msgstr ""
5292
 
5293
+ #: ../wp-slimstat.php:356
5294
  #, php-format
5295
  msgid "Notice: Permalink %s is blacklisted"
5296
  msgstr ""
5297
 
5298
+ #: ../wp-slimstat.php:367
5299
  msgid "Error: Empty or not supported IP address format (IPv6)"
5300
  msgstr ""
5301
 
5302
+ #: ../wp-slimstat.php:376
5303
  #, php-format
5304
  msgid "Notice: Logged in user %s not tracked"
5305
  msgstr ""
5306
 
5307
+ #: ../wp-slimstat.php:384
5308
  #, php-format
5309
  msgid "Notice: User with capability %s not tracked"
5310
  msgstr ""
5311
 
5312
+ #: ../wp-slimstat.php:394
5313
  #, php-format
5314
  msgid "Notice: User %s is blacklisted"
5315
  msgstr ""
5316
 
5317
+ #: ../wp-slimstat.php:415
5318
  #, php-format
5319
  msgid "Notice: Spammer %s not tracked"
5320
  msgstr ""
5321
 
5322
+ #: ../wp-slimstat.php:444
5323
  #, php-format
5324
  msgid "Notice: IP address %s is blacklisted"
5325
  msgstr ""
5326
 
5327
+ #: ../wp-slimstat.php:473
5328
  #, php-format
5329
  msgid "Notice: Country %s is blacklisted"
5330
  msgstr ""
5331
 
5332
+ #: ../wp-slimstat.php:482
5333
  msgid "Notice: Prefetch requests are ignored"
5334
  msgstr ""
5335
 
5336
+ #: ../wp-slimstat.php:498
5337
  msgid "Notice: Bot not tracked"
5338
  msgstr ""
5339
 
5340
+ #: ../wp-slimstat.php:507
5341
  #, php-format
5342
  msgid "Notice: Browser %s is blacklisted"
5343
  msgstr ""
5344
 
5345
+ #: ../wp-slimstat.php:537
5346
  msgid "Error:"
5347
  msgstr ""
5348
 
5349
+ #: ../wp-slimstat.php:1153
5350
  msgid "Invalid payload string. Try clearing your WordPress cache."
5351
  msgstr ""
5352
 
5353
+ #: ../wp-slimstat.php:1163
5354
  msgid "Invalid data signature. Try clearing your WordPress cache."
5355
  msgstr ""
5356
 
5357
+ #: ../wp-slimstat.php:1235
5358
  msgid "There was an error downloading the MaxMind Geolite DB:"
5359
  msgstr ""
5360
 
5361
+ #: ../wp-slimstat.php:1243 ../wp-slimstat.php:1252
5362
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5363
  msgstr ""
5364
 
5365
+ #: ../wp-slimstat.php:1247
5366
  msgid "Function gzopen not defined. Aborting."
5367
  msgstr ""
5368
 
5369
+ #: ../wp-slimstat.php:1257
5370
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5371
  msgstr ""
5372
 
5373
+ #~ msgid "windows phone"
5374
+ #~ msgstr "Windows Phone"
5375
+
5376
  # Austria
5377
  #~ msgid "at"
5378
  #~ msgstr "Austria"
languages/wp-slimstat-es_ES.mo CHANGED
Binary file
languages/wp-slimstat-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Slimstat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-24 09:19-0500\n"
6
- "PO-Revision-Date: 2015-12-24 09:20-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../admin/config/index.php:50
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -26,11 +26,11 @@ msgstr ""
26
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> esta página </a> "
27
  "para obtener más información"
28
 
29
- #: ../admin/config/index.php:65
30
  msgid "Read access: username not found"
31
  msgstr "Acceso de lectura: Nombre de usuario no se encuentra"
32
 
33
- #: ../admin/config/index.php:75 ../admin/config/index.php:100
34
  msgid ""
35
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
36
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -40,35 +40,35 @@ msgstr ""
40
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\">esta página</a> para "
41
  "obtener más información"
42
 
43
- #: ../admin/config/index.php:90
44
  msgid "Config access: username not found"
45
  msgstr "Acceso de configuración: Nombre de usuario no encontrado"
46
 
47
- #: ../admin/config/index.php:109
48
  msgid "Basic"
49
  msgstr ""
50
 
51
- #: ../admin/config/index.php:111 ../admin/config/index.php:132
52
  msgid "Tracker"
53
  msgstr "Rastreador"
54
 
55
- #: ../admin/config/index.php:112
56
  msgid "Enable Tracking"
57
  msgstr "Activar Seguimiento"
58
 
59
- #: ../admin/config/index.php:112
60
  #, fuzzy
61
  msgid "Turn the tracker on or off, while keeping the reports accessible."
62
  msgstr ""
63
  "Activar el rastreador de encendido o apagado, pero conserve los informes "
64
  "accesibles (que no tendría, si desactivó el plugin)."
65
 
66
- #: ../admin/config/index.php:113
67
  #, fuzzy
68
  msgid "Tracking Mode"
69
  msgstr "Seguimiento Activo"
70
 
71
- #: ../admin/config/index.php:113
72
  #, fuzzy
73
  msgid ""
74
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
@@ -84,65 +84,65 @@ msgstr ""
84
  "la mayoría de los <strong> spammers, buscadores y otros rastreadores </"
85
  "strong> no serán registrados."
86
 
87
- #: ../admin/config/index.php:113
88
  msgid "Client Side"
89
  msgstr ""
90
 
91
- #: ../admin/config/index.php:113
92
  #, fuzzy
93
  msgid "Server Side"
94
  msgstr "Del lado del servidor"
95
 
96
- #: ../admin/config/index.php:114
97
  msgid "Stealth Mode"
98
  msgstr ""
99
 
100
- #: ../admin/config/index.php:114
101
  msgid ""
102
  "Do not add the javascript tracking code to your pages, if tracking mode is "
103
  "set to Server. Please note: if enabled, this will prevent the tracker from "
104
  "collecting information such as screen resolution, outbound links, downloads, "
105
- "etc. This option is ignored is Tracking Mode is set to Client."
106
  msgstr ""
107
 
108
- #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
109
  msgid "Off"
110
  msgstr ""
111
 
112
- #: ../admin/config/index.php:114
113
  msgid "On"
114
  msgstr "El"
115
 
116
- #: ../admin/config/index.php:115
117
  #, fuzzy
118
  msgid "Admin Pages"
119
  msgstr "Principales Páginas de Salida"
120
 
121
- #: ../admin/config/index.php:115
122
  msgid "Enable this option to track your users' activity within the admin."
123
  msgstr ""
124
  "Habilite esta opción para realizar un seguimiento de la actividad de sus "
125
  "usuarios dentro de la administración."
126
 
127
- #: ../admin/config/index.php:115
128
  #, fuzzy
129
  msgid "Track"
130
  msgstr "Rastreador"
131
 
132
- #: ../admin/config/index.php:115
133
  #, fuzzy
134
  msgid "Do not track"
135
  msgstr "Bot o Crawler"
136
 
137
- #: ../admin/config/index.php:117
138
  msgid "WordPress Integration"
139
  msgstr "Integración WordPress"
140
 
141
- #: ../admin/config/index.php:118
142
  msgid "Menu Position"
143
  msgstr "Posición de menú"
144
 
145
- #: ../admin/config/index.php:118
146
  #, fuzzy
147
  msgid ""
148
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
@@ -151,20 +151,20 @@ msgstr ""
151
  "Elija entre un menú de administración independiente para WP SLIMStat o un "
152
  "menú desplegable en la barra de administrador (si está visible)."
153
 
154
- #: ../admin/config/index.php:118
155
  msgid "Side Menu"
156
  msgstr "Menú lateral"
157
 
158
- #: ../admin/config/index.php:118
159
  msgid "Admin Bar"
160
  msgstr "Barra de administración"
161
 
162
- #: ../admin/config/index.php:119
163
  #, fuzzy
164
  msgid "Posts and Pages"
165
  msgstr "Añadir columna a Publicaciones"
166
 
167
- #: ../admin/config/index.php:119
168
  #, fuzzy
169
  msgid ""
170
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
@@ -173,76 +173,76 @@ msgstr ""
173
  "Añadir una nueva columna a la pantalla Editar publicaciones, con el número "
174
  "de visitas por publicación (pueden ralentizar la renderización de páginas)."
175
 
176
- #: ../admin/config/index.php:120
177
  #, fuzzy
178
  msgid "Report Interval"
179
  msgstr "Únicamente interno"
180
 
181
- #: ../admin/config/index.php:120
182
  msgid ""
183
  "Enter the time range, in days, that should be used to calculate the value "
184
  "here above."
185
  msgstr ""
186
 
187
- #: ../admin/config/index.php:121
188
  #, fuzzy
189
  msgid "Report Type"
190
  msgstr "Informes Personalizados"
191
 
192
- #: ../admin/config/index.php:121
193
  msgid ""
194
  "Select what kind of information you would like to see displayed on the Posts "
195
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
196
  "IPs consider only one hit per user in the given time range."
197
  msgstr ""
198
 
199
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
200
- #: ../admin/view/wp-slimstat-reports.php:109
201
- #: ../admin/view/wp-slimstat-reports.php:1375
202
- #: ../admin/view/wp-slimstat-reports.php:1533
203
  msgid "Pageviews"
204
  msgstr "Paginas visitadas"
205
 
206
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
207
- #: ../admin/view/wp-slimstat-reports.php:286
208
- #: ../admin/view/wp-slimstat-reports.php:526
209
- #: ../admin/view/wp-slimstat-reports.php:1390
210
- #: ../admin/view/wp-slimstat-reports.php:1435
211
  msgid "Unique IPs"
212
  msgstr "IPs Unicas"
213
 
214
- #: ../admin/config/index.php:122
215
  #, fuzzy
216
  msgid "Dashboard Widgets"
217
  msgstr "Sumario"
218
 
219
- #: ../admin/config/index.php:122
220
  msgid ""
221
  "Choose if you want to have the most important reports on your WordPress "
222
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
223
  msgstr ""
224
 
225
- #: ../admin/config/index.php:123
226
  #, fuzzy
227
  msgid "Hide Add-ons"
228
  msgstr "Añadidos"
229
 
230
- #: ../admin/config/index.php:123
231
  msgid ""
232
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
233
  "from the list of plugins in WordPress. Please note that you will still "
234
  "receive updates for hidden add-ons."
235
  msgstr ""
236
 
237
- #: ../admin/config/index.php:125
238
  msgid "Database"
239
  msgstr "Base de datos"
240
 
241
- #: ../admin/config/index.php:126
242
  msgid "Retain data for"
243
  msgstr "Conservar los datos durante"
244
 
245
- #: ../admin/config/index.php:126
246
  #, fuzzy
247
  msgid ""
248
  "Clean-up log entries older than the number of days specified here above. "
@@ -253,11 +253,11 @@ msgstr ""
253
  "aquí arriba. Introduzca <strong> 0 </strong> (número cero) si desea "
254
  "conservar sus datos independientemente de su edad."
255
 
256
- #: ../admin/config/index.php:126
257
  msgid "Next clean-up on"
258
  msgstr "Siguiente limpieza en"
259
 
260
- #: ../admin/config/index.php:126
261
  #, fuzzy, php-format
262
  msgid ""
263
  "Entries logged on or before %s will be archived or deleted according to the "
@@ -266,18 +266,18 @@ msgstr ""
266
  "Los comentarios registrados en o antes del %s se eliminarán de forma "
267
  "permanente."
268
 
269
- #: ../admin/config/index.php:126 ../admin/view/index.php:102
270
  #: ../admin/view/wp-slimstat-db.php:79
271
- #: ../admin/view/wp-slimstat-reports.php:1359
272
  msgid "days"
273
  msgstr "dias"
274
 
275
- #: ../admin/config/index.php:127
276
  #, fuzzy
277
- msgid "Delete records"
278
  msgstr "Palabras clave"
279
 
280
- #: ../admin/config/index.php:127
281
  msgid ""
282
  "If DB space is not an issue, you can decide to archive older records in "
283
  "another table, instead of deleting them. This way performance is preserved, "
@@ -287,17 +287,17 @@ msgid ""
287
  "is uninstalled. Make sure to backup your data before you proceed."
288
  msgstr ""
289
 
290
- #: ../admin/config/index.php:134
291
  #, fuzzy
292
  msgid "Advanced Options"
293
  msgstr "Filtros avanzados"
294
 
295
- #: ../admin/config/index.php:135
296
  #, fuzzy
297
  msgid "Session Duration"
298
  msgstr "Visitas"
299
 
300
- #: ../admin/config/index.php:135
301
  #, fuzzy
302
  msgid ""
303
  "How many seconds should a human session last? Google Analytics sets it to "
@@ -306,25 +306,51 @@ msgstr ""
306
  "¿Cuántos segundos debe durar una sesión humana en su sitio? Google Analytics "
307
  "lo establece en 1.800 segundos."
308
 
309
- #: ../admin/config/index.php:135 ../admin/config/index.php:205
310
  msgid "seconds"
311
  msgstr "Segundos"
312
 
313
- #: ../admin/config/index.php:136
314
  msgid "Extend Session"
315
  msgstr "Extender Sesión"
316
 
317
- #: ../admin/config/index.php:136
318
  msgid "Extend the duration of a session each time the user visits a new page."
319
  msgstr ""
320
  "Extender la duración de una sesión cada vez que el usuario visita una página "
321
  "nueva."
322
 
323
- #: ../admin/config/index.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
324
  msgid "Enable CDN"
325
  msgstr "Habilitar CDN"
326
 
327
- #: ../admin/config/index.php:137
328
  msgid ""
329
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
330
  "by serving our tracking code from their fast and reliable network (free "
@@ -334,11 +360,11 @@ msgstr ""
334
  "CDN, sirviendo nuestro código de seguimiento de su red rápida y confiable "
335
  "(servicio gratuito)."
336
 
337
- #: ../admin/config/index.php:138
338
  msgid "Extensions to Track"
339
  msgstr "Extensiones a rastreo"
340
 
341
- #: ../admin/config/index.php:138
342
  msgid ""
343
  "List all the file extensions that you want to be treated as Downloads. "
344
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -352,17 +378,17 @@ msgstr ""
352
  "Descargas y no Vínculos salientes (y rastreado como tal), si su extensión "
353
  "coincide con uno de los que se enumeran a continuación."
354
 
355
- #: ../admin/config/index.php:140
356
  #, fuzzy
357
  msgid "Internal and Outbound Links"
358
  msgstr "Enlaces Salientes Recientes"
359
 
360
- #: ../admin/config/index.php:141
361
  #, fuzzy
362
  msgid "Track Outbound Clicks"
363
  msgstr "Enlaces Salientes Recientes"
364
 
365
- #: ../admin/config/index.php:141
366
  msgid ""
367
  "Track when your visitors click on link to external websites. This option "
368
  "required Spy Mode to be enabled."
@@ -370,23 +396,23 @@ msgstr ""
370
  "Rastree cuando los usuarios hacen clic en el enlace a sitios web externos. "
371
  "Esta opción requere que el modo Espía esté habilitado."
372
 
373
- #: ../admin/config/index.php:142
374
  #, fuzzy
375
  msgid "Track Coordinates"
376
  msgstr "Seguimiento Activo"
377
 
378
- #: ../admin/config/index.php:142
379
  msgid ""
380
  "Collect mouse coordinates and other information for clicks on internal "
381
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
382
  "this information is only collected for external links."
383
  msgstr ""
384
 
385
- #: ../admin/config/index.php:143
386
  msgid "No Callback"
387
  msgstr ""
388
 
389
- #: ../admin/config/index.php:143
390
  msgid ""
391
  "Track the event but do not invoke the callback function on links marked with "
392
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
@@ -394,34 +420,34 @@ msgid ""
394
  "prevent conflicts with lightbox and similar libraries."
395
  msgstr ""
396
 
397
- #: ../admin/config/index.php:144
398
  msgid "Do Not Track"
399
  msgstr ""
400
 
401
- #: ../admin/config/index.php:144
402
  msgid ""
403
  "Do not track links marked with one of these class names, <em>rel</em> "
404
  "attributes or whose <em>href</em> attribute contains one of these strings "
405
  "(separated by comma)."
406
  msgstr ""
407
 
408
- #: ../admin/config/index.php:146
409
  msgid "Pages not belonging to this site"
410
  msgstr ""
411
 
412
- #: ../admin/config/index.php:147
413
  msgid ""
414
  "Add the following code to all the non-WP pages you want to track, right "
415
  "before the closing BODY tag. Please make sure to change the protocol of all "
416
  "the URLs to HTTPS, if you external site is served over a secure channel."
417
  msgstr ""
418
 
419
- #: ../admin/config/index.php:157
420
  #, fuzzy
421
  msgid "Allow External Domains"
422
  msgstr "Enlaces Externos Hostiles"
423
 
424
- #: ../admin/config/index.php:157
425
  msgid ""
426
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
427
  "header is present on the requested resource, when using the external "
@@ -432,16 +458,16 @@ msgid ""
432
  "security implications of allowing CORS requests."
433
  msgstr ""
434
 
435
- #: ../admin/config/index.php:158 ../admin/config/index.php:180
436
- #: ../admin/config/index.php:208
437
  msgid "Miscellaneous"
438
  msgstr "Varios"
439
 
440
- #: ../admin/config/index.php:159
441
  msgid "Enable UAN"
442
  msgstr "Habilitar UAN"
443
 
444
- #: ../admin/config/index.php:159
445
  #, fuzzy
446
  msgid ""
447
  "Send anonymous data about user agents to our server for analysis. This "
@@ -456,29 +482,29 @@ msgstr ""
456
  "opensource BrowsCap </a>, y mejorar la precisión de la funcionalidad de "
457
  "detección de navegador del SLIMStat."
458
 
459
- #: ../admin/config/index.php:164
460
  msgid "Filters"
461
  msgstr "Filtros"
462
 
463
- #: ../admin/config/index.php:166
464
  #, fuzzy
465
  msgid "Do not track settings"
466
  msgstr "Bot o Crawler"
467
 
468
- #: ../admin/config/index.php:167
469
  msgid "Track Registered Users"
470
  msgstr "Seguimiento Usuarios Registrados"
471
 
472
- #: ../admin/config/index.php:167
473
  msgid "Enable this option to track logged in users."
474
  msgstr "Active esta opción para rastrear usuarios registrados."
475
 
476
- #: ../admin/config/index.php:168
477
  #, fuzzy
478
  msgid "Blacklist by Username"
479
  msgstr "Direcciones IP Blacklist"
480
 
481
- #: ../admin/config/index.php:168
482
  #, fuzzy
483
  msgid ""
484
  "List all the usernames you don't want to track, separated by commas. Please "
@@ -497,11 +523,11 @@ msgstr ""
497
  "<code> / abo! T </ code > coincidirá con /about and /abort. Las cadenas no "
498
  "se afectan por mayúsculas y minúsculas."
499
 
500
- #: ../admin/config/index.php:169
501
  msgid "Blacklist by IP Address"
502
  msgstr "Direcciones IP Blacklist"
503
 
504
- #: ../admin/config/index.php:169
505
  #, fuzzy
506
  msgid ""
507
  "List all the IP addresses you don't want to track, separated by commas. Each "
@@ -516,12 +542,12 @@ msgstr ""
516
  "CIDR </a> (es decir, < em> 192.168.0.0/24 </em>). Si el formato no es "
517
  "correcto, WP SLIMStat no puede rastrear páginas vistas correctamente."
518
 
519
- #: ../admin/config/index.php:170
520
  #, fuzzy
521
  msgid "Blacklist by Capability"
522
  msgstr "Navegador"
523
 
524
- #: ../admin/config/index.php:170
525
  msgid ""
526
  "Users having at least one of the <a href='http://codex.wordpress.org/"
527
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -532,15 +558,15 @@ msgstr ""
532
  "no se les rastreará. Las Capacidades distinguen entre mayúsculas y "
533
  "minúsculas."
534
 
535
- #: ../admin/config/index.php:172
536
  msgid "Profiling"
537
  msgstr "Haciendo perfil"
538
 
539
- #: ../admin/config/index.php:173
540
  msgid "Ignore Spammers"
541
  msgstr "Ignorar Spammers"
542
 
543
- #: ../admin/config/index.php:173
544
  msgid ""
545
  "Enable this option if you don't want to track visits from users identified "
546
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -553,12 +579,12 @@ msgstr ""
553
  "adelante se marcan como correo no deseado, también se eliminarán de la base "
554
  "de datos."
555
 
556
- #: ../admin/config/index.php:174
557
  #, fuzzy
558
  msgid "Ignore Bots"
559
  msgstr "Navegadores recientes"
560
 
561
- #: ../admin/config/index.php:174
562
  msgid ""
563
  "Turn on this feature if you want to have the accuracy level of server-side "
564
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -566,12 +592,12 @@ msgid ""
566
  "note that in Client mode, bots are ignored regardless of this setting."
567
  msgstr ""
568
 
569
- #: ../admin/config/index.php:175
570
  #, fuzzy
571
  msgid "Permalinks"
572
  msgstr "Enlace Permanente"
573
 
574
- #: ../admin/config/index.php:175
575
  msgid ""
576
  "List all the URLs on your website that you don't want to track, separated by "
577
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -590,12 +616,12 @@ msgstr ""
590
  "<code> / abo! T </ code > coincidirá con /about and /abort. Las cadenas no "
591
  "se afectan por mayúsculas y minúsculas."
592
 
593
- #: ../admin/config/index.php:176
594
  #, fuzzy
595
  msgid "Countries"
596
  msgstr "Paises que más visitan"
597
 
598
- #: ../admin/config/index.php:176
599
  msgid ""
600
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
601
  "track, separated by commas."
@@ -603,12 +629,12 @@ msgstr ""
603
  "Los códigos de país (Es decir: <code> es-es, it, es </code>) a los que no "
604
  "desee realizar el seguimiento, separados por comas"
605
 
606
- #: ../admin/config/index.php:177
607
  #, fuzzy
608
  msgid "User Agents"
609
  msgstr "Buscadores"
610
 
611
- #: ../admin/config/index.php:177
612
  msgid ""
613
  "Browsers (user agents) you don't want to track, separated by commas. You can "
614
  "specify the browser's version adding a slash after the name (i.e. "
@@ -625,12 +651,12 @@ msgstr ""
625
  "code> coincidirá Chrome y cromo, <code> IE /! 0.0 </code> coincidirá IE/7.0 "
626
  "y IE/8.0. Las cadenas son de mayúsculas y minúsculas."
627
 
628
- #: ../admin/config/index.php:178
629
  #, fuzzy
630
  msgid "Referring Sites"
631
  msgstr "Motores de Búsqueda"
632
 
633
- #: ../admin/config/index.php:178
634
  msgid ""
635
  "Referring URLs that you don't want to track, separated by commas: "
636
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -645,21 +671,21 @@ msgstr ""
645
  "cadenas son mayúsculas y minúsculas. Por favor incluya ya sea un comodín o "
646
  "el protocolo que desea filtrar (http://, https://)."
647
 
648
- #: ../admin/config/index.php:181
649
  msgid "Enable Privacy Mode"
650
  msgstr "Activar el modo de privacidad"
651
 
652
- #: ../admin/config/index.php:181
653
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
654
  msgstr ""
655
  "Enmascarar direcciones IP de sus visitantes para cumplir con leyes de "
656
  "privacidad europeas."
657
 
658
- #: ../admin/config/index.php:182
659
  msgid "Ignore Prefetch Requests"
660
  msgstr "Ignorar PPeticiones Prefetch"
661
 
662
- #: ../admin/config/index.php:182
663
  #, fuzzy
664
  msgid ""
665
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
@@ -670,54 +696,54 @@ msgstr ""
670
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
671
  "target='_blank'> Función de Prellamado de enlaces de Firefox </a>."
672
 
673
- #: ../admin/config/index.php:187 ../admin/config/index.php:220
674
  #, fuzzy
675
  msgid "Reports"
676
  msgstr "Informes Personalizados"
677
 
678
- #: ../admin/config/index.php:189
679
  msgid "Formats and Conversions"
680
  msgstr ""
681
 
682
- #: ../admin/config/index.php:190
683
  msgid "Number Format"
684
  msgstr "Formato de número"
685
 
686
- #: ../admin/config/index.php:190
687
  #, fuzzy
688
  msgid "Choose the number format you want to use for your reports."
689
  msgstr ""
690
  "Seleccione el formato de número que desea utilizar para sus informes, "
691
  "europeos o americanos."
692
 
693
- #: ../admin/config/index.php:191
694
  #, fuzzy
695
  msgid "Date Format"
696
  msgstr "Fecha y hora"
697
 
698
- #: ../admin/config/index.php:191
699
  msgid ""
700
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
701
  "Format</a> to use when displaying a pageview's date."
702
  msgstr ""
703
 
704
- #: ../admin/config/index.php:192
705
  #, fuzzy
706
  msgid "Time Format"
707
  msgstr "Formato de número"
708
 
709
- #: ../admin/config/index.php:192
710
  msgid ""
711
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
712
  "Format</a> to use when displaying a pageview's time."
713
  msgstr ""
714
 
715
- #: ../admin/config/index.php:193
716
  #, fuzzy
717
  msgid "Use Display Name"
718
  msgstr "Mostrar Nombre para mostrar"
719
 
720
- #: ../admin/config/index.php:193
721
  msgid ""
722
  "By default, users are listed by their usernames. Use this option to "
723
  "visualize their display names instead."
@@ -726,12 +752,12 @@ msgstr ""
726
  "usuario. Utilice esta opción para visualizar los nombres para mostrar en su "
727
  "lugar."
728
 
729
- #: ../admin/config/index.php:194
730
  #, fuzzy
731
  msgid "Use Titles"
732
  msgstr "Mostrar Títulos"
733
 
734
- #: ../admin/config/index.php:194
735
  #, fuzzy
736
  msgid ""
737
  "Slimstat converts your permalinks into post, page and category titles. "
@@ -740,76 +766,76 @@ msgstr ""
740
  "WP SLIMStat convierte tus enlaces permanentes en títulos de publicaciones y "
741
  "páginas. Desactive esta función si necesita ver la URL en sus informes."
742
 
743
- #: ../admin/config/index.php:195
744
  msgid "Convert IP Addresses"
745
  msgstr "Convertir Direcciones IP"
746
 
747
- #: ../admin/config/index.php:195
748
  msgid "Display provider names instead of IP addresses."
749
  msgstr "Muestra los nombres de proveedores, en lugar de direcciones IP."
750
 
751
- #: ../admin/config/index.php:197
752
  msgid "Functionality"
753
  msgstr "Funcionalidad"
754
 
755
- #: ../admin/config/index.php:198
756
  msgid "SlimScroll"
757
  msgstr ""
758
 
759
- #: ../admin/config/index.php:198
760
  msgid ""
761
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
762
  "scrollbar."
763
  msgstr ""
764
 
765
- #: ../admin/config/index.php:199
766
  msgid "Expand Details"
767
  msgstr "Expandir Detalles"
768
 
769
- #: ../admin/config/index.php:199
770
  msgid "Expand each row's details by default, insted of on mousehover."
771
  msgstr ""
772
  "Expandir cada fila de forma predeterminada, en vez de al sobreponer el ratón."
773
 
774
- #: ../admin/config/index.php:200 ../admin/config/index.php:206
775
  #, fuzzy
776
  msgid "Rows to Display"
777
  msgstr "No hay datos que mostrar"
778
 
779
- #: ../admin/config/index.php:200
780
  msgid "Specify the number of items in each report."
781
  msgstr "Especifique el número de elementos en cada informe."
782
 
783
- #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
784
  #, fuzzy
785
  msgid "Max Results"
786
  msgstr "Limitar Resultados"
787
 
788
- #: ../admin/config/index.php:201
789
  msgid ""
790
  "Decide how many records should be retrieved from the database in total. "
791
  "Depending on your server configuration, you may want to fine tune this value "
792
  "to avoid exceeding your PHP memory limit."
793
  msgstr ""
794
 
795
- #: ../admin/config/index.php:202
796
  msgid "IP Lookup"
797
  msgstr "Búsqueda de IP"
798
 
799
- #: ../admin/config/index.php:202
800
  msgid "Customize the Geolocation service to be used in the reports."
801
  msgstr ""
802
  "Personalizar el servicio de Geolocalización de ser utilizado en los informes."
803
 
804
- #: ../admin/config/index.php:204
805
  msgid "Activity Log"
806
  msgstr "Bitácora de actividades"
807
 
808
- #: ../admin/config/index.php:205
809
  msgid "Live Stream"
810
  msgstr "Transmisión en Vivo"
811
 
812
- #: ../admin/config/index.php:205
813
  #, fuzzy
814
  msgid ""
815
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
@@ -819,16 +845,16 @@ msgstr ""
819
  "segundos. Introduzca <strong> 0 </strong> (número cero) para deshabilitar "
820
  "esta funcionalidad."
821
 
822
- #: ../admin/config/index.php:206
823
  #, fuzzy
824
  msgid "Specify the number of items in the Activity Log."
825
  msgstr "Especifica el número de elementos en Ahora."
826
 
827
- #: ../admin/config/index.php:209
828
  msgid "Custom CSS"
829
  msgstr "CSS personalizado"
830
 
831
- #: ../admin/config/index.php:209
832
  #, fuzzy
833
  msgid ""
834
  "Paste here your custom stylesheet to personalize the way your reports look. "
@@ -842,12 +868,12 @@ msgstr ""
842
  "target='_blank'> Compruebe la FAQ </a> para obtener más información sobre "
843
  "cómo utilizar esta funcionalidad."
844
 
845
- #: ../admin/config/index.php:210
846
  #, fuzzy
847
  msgid "Chart Colors"
848
  msgstr "Controles de gráfica"
849
 
850
- #: ../admin/config/index.php:210
851
  msgid ""
852
  "Customize the look and feel of your charts by assigning personalized colors "
853
  "to each metric. List 4 hex colors separated by commas, strictly in the "
@@ -855,12 +881,12 @@ msgid ""
855
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
856
  msgstr ""
857
 
858
- #: ../admin/config/index.php:211
859
  #, fuzzy
860
  msgid "Show User Agent"
861
  msgstr "Buscadores"
862
 
863
- #: ../admin/config/index.php:211
864
  msgid ""
865
  "Choose if you want to see the browser name or a complete user agent string "
866
  "when hovering on browser icons."
@@ -868,42 +894,28 @@ msgstr ""
868
  "Seleccione si desea ver el nombre del navegador o una cadena completa de "
869
  "agente de usuario al pasar el cursor sobre los iconos del navegador."
870
 
871
- #: ../admin/config/index.php:212
872
  #, fuzzy
873
  msgid "Enable SOV"
874
  msgstr "Habilitar CDN"
875
 
876
- #: ../admin/config/index.php:212
877
  msgid ""
878
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
879
  "the subject, object, and verb of a sentence appear in that order, like in "
880
  "Japanese."
881
  msgstr ""
882
 
883
- #: ../admin/config/index.php:213
884
- msgid "Social Analytics"
885
- msgstr ""
886
-
887
- #: ../admin/config/index.php:213
888
- msgid ""
889
- "Thanks to a <a href='http://getsocial.io/enterprise' "
890
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
891
- "set of analytics for social media where you can identify top performing "
892
- "posts. Track social sharing to understand which of your posts are generating "
893
- "more engagement. When this option is enabled, Slimstat sends a list of all "
894
- "your posts's URLs to their service for analysis once daily."
895
- msgstr ""
896
-
897
- #: ../admin/config/index.php:218
898
  msgid "Access Control"
899
  msgstr ""
900
 
901
- #: ../admin/config/index.php:221
902
  #, fuzzy
903
  msgid "Restrict Authors"
904
  msgstr "Autor de la entrada(sección)"
905
 
906
- #: ../admin/config/index.php:221
907
  #, fuzzy
908
  msgid ""
909
  "Enable this option if you want your authors to only see stats related to "
@@ -912,12 +924,12 @@ msgstr ""
912
  "Habilite esta opción si desea que sus autores sólo vean las estadísticas "
913
  "relacionadas con su propio contenido"
914
 
915
- #: ../admin/config/index.php:222 ../admin/config/index.php:226
916
  #, fuzzy
917
  msgid "Capability"
918
  msgstr "Navegador"
919
 
920
- #: ../admin/config/index.php:222
921
  #, fuzzy
922
  msgid ""
923
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -935,11 +947,11 @@ msgstr ""
935
  "blanca 'Acceso de lectura' aquí abajo. En este caso, la lista tiene "
936
  "prioridad sobre la capacidad."
937
 
938
- #: ../admin/config/index.php:223 ../admin/config/index.php:227
939
  msgid "Whitelist"
940
  msgstr "Lista blanca"
941
 
942
- #: ../admin/config/index.php:223
943
  msgid ""
944
  "List all the users who should have access to the reports, separated by "
945
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -950,14 +962,14 @@ msgstr ""
950
  "es necesario enumerarlos aquí. Los nombres de usuario distinguen entre "
951
  "mayúsculas y minúsculasdefecto."
952
 
953
- #: ../admin/config/index.php:225 ../admin/config/index.php:250
954
- #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
955
- #: ../wp-slimstat.php:1803
956
  #, fuzzy
957
  msgid "Settings"
958
  msgstr "Seleccionar orden"
959
 
960
- #: ../admin/config/index.php:226
961
  #, fuzzy
962
  msgid ""
963
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -971,7 +983,7 @@ msgstr ""
971
  "blanca de aquí abajo se puede utilizar para anular esta opción para usuarios "
972
  "específicos."
973
 
974
- #: ../admin/config/index.php:227
975
  msgid ""
976
  "List all the users who can edit these options, separated by commas. Please "
977
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -982,13 +994,12 @@ msgstr ""
982
  "implícitamente permitidos, así que ¡no se olvide de incluirse a si mismo! "
983
  "Los nombres de usuario distinguen entre mayúsculas y minúsculas."
984
 
985
- #: ../admin/config/index.php:232
986
  msgid "Maintenance"
987
  msgstr "Mantenimiento"
988
 
989
- #: ../admin/config/index.php:237 ../admin/view/addons.php:32
990
- #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
991
- #: ../wp-slimstat.php:1800
992
  msgid "Add-ons"
993
  msgstr "Añadidos"
994
 
@@ -1020,87 +1031,75 @@ msgstr ""
1020
  msgid "The geolocation database has been installed on your server."
1021
  msgstr ""
1022
 
1023
- #: ../admin/config/maintenance.php:166
1024
- msgid ""
1025
- "Your data was successfully imported. You may now drop the old tables: "
1026
- "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
1027
- "wp_slim_outbound. Please note: if you are using Slimstat in a MU network, "
1028
- "you will need to run the import script on all your sites before you can "
1029
- "delete the old tables."
1030
- msgstr ""
1031
-
1032
- #: ../admin/config/maintenance.php:175
1033
  msgid "Your reports were successfully restored to their default arrangement."
1034
  msgstr ""
1035
  "Sus informes fueron restaurados con éxito a su disposición de forma "
1036
  "predeterminada."
1037
 
1038
- #: ../admin/config/maintenance.php:185
1039
  #, fuzzy
1040
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1041
  msgstr "Sus tablas WP SLIMStat han sido convertidas correctamente a. InnoDB"
1042
 
1043
- #: ../admin/config/maintenance.php:191
1044
  #, fuzzy
1045
  msgid "All the archived records were successfully deleted."
1046
  msgstr "Todos los registros se han eliminado con éxito."
1047
 
1048
- #: ../admin/config/maintenance.php:199
1049
  msgid "All the records were successfully deleted."
1050
  msgstr "Todos los registros se han eliminado con éxito."
1051
 
1052
- #: ../admin/config/maintenance.php:221
1053
- msgid "Debugging"
1054
  msgstr ""
1055
 
1056
- #: ../admin/config/maintenance.php:224
1057
  #, fuzzy
1058
  msgid "Tracker Status"
1059
  msgstr "Rastreador"
1060
 
1061
- #: ../admin/config/maintenance.php:226
1062
  #, fuzzy
1063
- msgid "recorded on"
1064
- msgstr "Palabras clave"
1065
 
1066
- #: ../admin/config/maintenance.php:226
1067
  msgid "No Errors so far"
1068
  msgstr ""
1069
 
1070
- #: ../admin/config/maintenance.php:227
1071
  msgid ""
1072
  "The information here above is useful to troubleshoot issues with the "
1073
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1074
  "the tracker could not record a pageview and are indicative of some kind of "
1075
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1076
  "most recent pageview was not recorded, based on your settings (filters, "
1077
- "blackslists, etc). Please include this code when sending a support request."
 
1078
  msgstr ""
1079
 
1080
- #: ../admin/config/maintenance.php:233
1081
  #, fuzzy
1082
  msgid "Enable SQL Debug"
1083
  msgstr "Habilitar modo Espía"
1084
 
1085
- #: ../admin/config/maintenance.php:236
1086
  msgid ""
1087
  "Display the SQL code used to retrieve the data from the database. Useful to "
1088
  "troubleshoot issues with data consistency or missing pageviews."
1089
  msgstr ""
1090
 
1091
- #: ../admin/config/maintenance.php:240
1092
  msgid "Disable SQL Debug"
1093
  msgstr ""
1094
 
1095
- #: ../admin/config/maintenance.php:243
1096
  msgid "Deactivate the SQL output on top of each report."
1097
  msgstr ""
1098
 
1099
- #: ../admin/config/maintenance.php:248
1100
- msgid "Layout"
1101
- msgstr ""
1102
-
1103
- #: ../admin/config/maintenance.php:251
1104
  #, fuzzy
1105
  msgid ""
1106
  "Are you sure you want to restore the default arrangement of your reports?"
@@ -1108,11 +1107,11 @@ msgstr ""
1108
  "¿Está seguro de que desea restaurar la disposición por defecto de sus "
1109
  "informes?"
1110
 
1111
- #: ../admin/config/maintenance.php:251
1112
  msgid "No Panic Button"
1113
  msgstr "Botón No Pánico"
1114
 
1115
- #: ../admin/config/maintenance.php:253
1116
  #, fuzzy
1117
  msgid ""
1118
  "Reset the default arrangement of your reports. Helpful when, for some "
@@ -1122,89 +1121,89 @@ msgstr ""
1122
  "Cambiar la disposición por defecto de sus informes. Útil cuando, por alguna "
1123
  "razón, los informes desaparecen de sus paneles."
1124
 
1125
- #: ../admin/config/maintenance.php:257
1126
  msgid "Data Maintenance"
1127
  msgstr "Mantenimiento de Datos"
1128
 
1129
- #: ../admin/config/maintenance.php:260
1130
  #, fuzzy
1131
  msgid "Delete pageviews where"
1132
  msgstr "Filtrar páginas visitadas dondé:"
1133
 
1134
- #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1135
  msgid "equals"
1136
  msgstr "es igual a"
1137
 
1138
- #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1139
  msgid "is not equal to"
1140
  msgstr "no es igual a"
1141
 
1142
- #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1143
  #, fuzzy
1144
  msgid "contains"
1145
  msgstr "Contiene"
1146
 
1147
- #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1148
  msgid "is included in"
1149
  msgstr ""
1150
 
1151
- #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1152
  #, fuzzy
1153
  msgid "does not contain"
1154
  msgstr "No contiene"
1155
 
1156
- #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1157
  #, fuzzy
1158
  msgid "starts with"
1159
  msgstr "Empieza por"
1160
 
1161
- #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1162
  #, fuzzy
1163
  msgid "ends with"
1164
  msgstr "Acaba en"
1165
 
1166
- #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1167
  msgid "sounds like"
1168
  msgstr "suena como"
1169
 
1170
- #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1171
  msgid "is greater than"
1172
  msgstr "es mayor que"
1173
 
1174
- #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1175
  msgid "is less than"
1176
  msgstr "es menor que"
1177
 
1178
- #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1179
  msgid "matches"
1180
  msgstr "coincide"
1181
 
1182
- #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1183
  #, fuzzy
1184
  msgid "does not match"
1185
  msgstr "No contiene"
1186
 
1187
- #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1188
  msgid "is empty"
1189
  msgstr "está vacío"
1190
 
1191
- #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1192
  msgid "is not empty"
1193
  msgstr "no está vacío"
1194
 
1195
- #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1196
  #: ../admin/view/index.php:105
1197
  msgid "Apply"
1198
  msgstr "Aplicar"
1199
 
1200
- #: ../admin/config/maintenance.php:291
1201
  msgid ""
1202
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1203
  msgstr ""
1204
  "¿Está seguro que desea eliminar PERMANENTEMENTE estos registros de su base "
1205
  "de datos?"
1206
 
1207
- #: ../admin/config/maintenance.php:298
1208
  msgid ""
1209
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1210
  "database?"
@@ -1212,21 +1211,23 @@ msgstr ""
1212
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1213
  "base de datos?"
1214
 
1215
- #: ../admin/config/maintenance.php:298
1216
  #, fuzzy
1217
  msgid "Delete All Records"
1218
  msgstr "Paginas visitadas"
1219
 
1220
- #: ../admin/config/maintenance.php:301
1221
  #, fuzzy
1222
  msgid ""
1223
- "Erase all the information collected so far by Slimstat, including the "
1224
- "archive. This operation <strong>does not</strong> reset your settings."
 
 
1225
  msgstr ""
1226
  "Borrar toda la información recopilada hasta el momento por WP SLIMStat. Esta "
1227
  "<strong> operación no </strong> restablece la configuración."
1228
 
1229
- #: ../admin/config/maintenance.php:307
1230
  #, fuzzy
1231
  msgid ""
1232
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1235,20 +1236,20 @@ msgstr ""
1235
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1236
  "base de datos?"
1237
 
1238
- #: ../admin/config/maintenance.php:307
1239
  #, fuzzy
1240
  msgid "Delete Archive"
1241
  msgstr "Filtrar páginas visitadas dondé:"
1242
 
1243
- #: ../admin/config/maintenance.php:310
1244
  msgid "Erase all the archived records. This operation cannot be undone."
1245
  msgstr ""
1246
 
1247
- #: ../admin/config/maintenance.php:316
1248
  msgid "Improve Performance"
1249
  msgstr "Mejorar el rendimiento"
1250
 
1251
- #: ../admin/config/maintenance.php:320
1252
  msgid ""
1253
  "Please note that you will need about 30% more DB space to store the extra "
1254
  "information required."
@@ -1256,11 +1257,11 @@ msgstr ""
1256
  "Por favor, tenga en cuenta que necesitará un 30% más de espacio BD para "
1257
  "almacenar la información adicional que se requiere."
1258
 
1259
- #: ../admin/config/maintenance.php:324
1260
  msgid "Save DB Space"
1261
  msgstr "Guardar Espacio BD"
1262
 
1263
- #: ../admin/config/maintenance.php:327
1264
  #, fuzzy
1265
  msgid ""
1266
  "Please note that by removing table indexes, Slimstat's performance will be "
@@ -1269,46 +1270,29 @@ msgstr ""
1269
  "Tenga en cuenta que al eliminar los índices de tabla, el rendimiento de WP "
1270
  "SLIMStat se verá afectado."
1271
 
1272
- #: ../admin/config/maintenance.php:334
1273
- msgid ""
1274
- "Hold on tight, we are about to import all your old data. Are you sure you "
1275
- "want to proceed?"
1276
- msgstr ""
1277
-
1278
- #: ../admin/config/maintenance.php:334
1279
- #, fuzzy
1280
- msgid "Import old data"
1281
- msgstr "Importar y Exportar"
1282
-
1283
- #: ../admin/config/maintenance.php:337
1284
- msgid ""
1285
- "Import all the records from the old table structure. No data will be deleted "
1286
- "from your database."
1287
- msgstr ""
1288
-
1289
- #: ../admin/config/maintenance.php:341
1290
  msgid "MaxMind IP to Country"
1291
  msgstr ""
1292
 
1293
- #: ../admin/config/maintenance.php:347
1294
  msgid ""
1295
  "Do you want to download and install the geolocation database from MaxMind's "
1296
  "server?"
1297
  msgstr ""
1298
 
1299
- #: ../admin/config/maintenance.php:347
1300
  msgid "Install GeoLite DB"
1301
  msgstr ""
1302
 
1303
- #: ../admin/config/maintenance.php:350
1304
  msgid "Do you want to uninstall the geolocation database?"
1305
  msgstr ""
1306
 
1307
- #: ../admin/config/maintenance.php:350
1308
  msgid "Uninstall GeoLite DB"
1309
  msgstr ""
1310
 
1311
- #: ../admin/config/maintenance.php:354
1312
  msgid ""
1313
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1314
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1318,11 +1302,11 @@ msgid ""
1318
  "enable this functionality."
1319
  msgstr ""
1320
 
1321
- #: ../admin/config/maintenance.php:359
1322
  msgid "Import and Export"
1323
  msgstr "Importar y Exportar"
1324
 
1325
- #: ../admin/config/maintenance.php:363
1326
  #, fuzzy
1327
  msgid ""
1328
  "Here below you can find the current configuration string for Slimstat. You "
@@ -1333,28 +1317,28 @@ msgstr ""
1333
  "SlimStat. Puede actualizar su configuración pegando una nueva cadena aquí "
1334
  "abajo y haciendo clic en Importar."
1335
 
1336
- #: ../admin/config/maintenance.php:368
1337
  msgid "Import"
1338
  msgstr "Importar"
1339
 
1340
- #: ../admin/config/maintenance.php:369
1341
  msgid "Are you sure you want to OVERWRITE your current settings?"
1342
  msgstr "¿Seguro de que desea sobrescribir la configuración actual?"
1343
 
1344
- #: ../admin/config/maintenance.php:374
1345
  msgid "Database Information"
1346
  msgstr "Información Base de datos"
1347
 
1348
- #: ../admin/config/maintenance.php:377
1349
  #, fuzzy
1350
  msgid "Engine"
1351
  msgstr "Motores de Búsqueda"
1352
 
1353
- #: ../admin/config/maintenance.php:381
1354
  msgid "switch to InnoDB"
1355
  msgstr "cambiar a InnoDB"
1356
 
1357
- #: ../admin/config/maintenance.php:392
1358
  #, fuzzy
1359
  msgid "records"
1360
  msgstr "Palabras clave"
@@ -1435,11 +1419,11 @@ msgstr ""
1435
  msgid "Load"
1436
  msgstr ""
1437
 
1438
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1439
  msgid "Today"
1440
  msgstr "Hoy"
1441
 
1442
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1443
  msgid "Yesterday"
1444
  msgstr "Ayer"
1445
 
@@ -1506,11 +1490,11 @@ msgid ""
1506
  "country of origin."
1507
  msgstr ""
1508
 
1509
- #: ../admin/view/layout.php:40
1510
  msgid "Customize and organize your reports"
1511
  msgstr ""
1512
 
1513
- #: ../admin/view/layout.php:41
1514
  msgid ""
1515
  "Drag and drop report placeholders from one container to another, to "
1516
  "customize the information you want to see right away when you open Slimstat. "
@@ -1522,11 +1506,11 @@ msgid ""
1522
  "(Screen Options tab)."
1523
  msgstr ""
1524
 
1525
- #: ../admin/view/layout.php:53
1526
  msgid "Clone"
1527
  msgstr ""
1528
 
1529
- #: ../admin/view/layout.php:57
1530
  #, fuzzy
1531
  msgid "Delete"
1532
  msgstr "Palabras clave"
@@ -1547,8 +1531,8 @@ msgstr "Dispositivo Móvil"
1547
  msgid "Syndication Reader"
1548
  msgstr "Lector de Sindicación"
1549
 
1550
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1551
- #: ../admin/view/wp-slimstat-reports.php:1706
1552
  msgid "No data to display"
1553
  msgstr "No hay datos que mostrar"
1554
 
@@ -1558,18 +1542,19 @@ msgid "Date and Time"
1558
  msgstr "Fecha/Hora"
1559
 
1560
  # Unknown
1561
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1562
- #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1563
  msgid "c-"
1564
  msgstr "Unknown"
1565
 
1566
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1567
- #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1568
  msgid "Originating IP"
1569
  msgstr "IP de Origen"
1570
 
1571
- #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1572
- #: ../admin/view/wp-slimstat-reports.php:1183
 
1573
  #, fuzzy
1574
  msgid "Open this URL in a new window"
1575
  msgstr "Abrir %s en una nueva ventana"
@@ -1578,66 +1563,66 @@ msgstr "Abrir %s en una nueva ventana"
1578
  msgid "Local search results page"
1579
  msgstr "Página de resultados de búsqueda local"
1580
 
1581
- #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1582
- #: ../admin/view/wp-slimstat-reports.php:257
1583
- #: ../admin/view/wp-slimstat-reports.php:266
1584
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1585
  #, fuzzy
1586
  msgid "Search Terms"
1587
  msgstr "Principales Recursos"
1588
 
1589
- #: ../admin/view/right-now.php:162
1590
  msgid "Server Latency and Page Speed in milliseconds"
1591
  msgstr ""
1592
 
1593
- #: ../admin/view/right-now.php:162
1594
  msgid "SL"
1595
  msgstr ""
1596
 
1597
- #: ../admin/view/right-now.php:162
1598
  msgid "PS"
1599
  msgstr ""
1600
 
1601
- #: ../admin/view/right-now.php:169
1602
  #, fuzzy
1603
- msgid "Time spent on this page in seconds"
1604
  msgstr "Abrir %s en una nueva ventana"
1605
 
1606
- #: ../admin/view/right-now.php:179
1607
  #, fuzzy
1608
  msgid "Open this referrer in a new window"
1609
  msgstr "Abrir referido en una nueva página"
1610
 
1611
- #: ../admin/view/right-now.php:180
1612
  #, fuzzy
1613
  msgid "Open this outbound link in a new window"
1614
  msgstr "Abrir %s en una nueva ventana"
1615
 
1616
- #: ../admin/view/right-now.php:181
1617
  #, fuzzy
1618
  msgid "Content Type"
1619
  msgstr "Contenido"
1620
 
1621
- #: ../admin/view/right-now.php:184
1622
  #, fuzzy
1623
  msgid "Delete this pageview"
1624
  msgstr "Filtrar páginas visitadas dondé:"
1625
 
1626
- #: ../admin/view/right-now.php:195
1627
  #, fuzzy
1628
  msgid "User Logged In"
1629
  msgstr "Buscadores"
1630
 
1631
- #: ../admin/view/right-now.php:205
1632
  #, fuzzy
1633
  msgid "User Logged Out"
1634
  msgstr "Buscadores"
1635
 
1636
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1637
  msgid "Browser"
1638
  msgstr "Navegador"
1639
 
1640
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1641
  msgid "Country Code"
1642
  msgstr "Código de Pais"
1643
 
@@ -1645,30 +1630,30 @@ msgstr "Código de Pais"
1645
  msgid "IP Address"
1646
  msgstr "Dirección IP"
1647
 
1648
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1649
  msgid "Language Code"
1650
  msgstr "Código de Idioma"
1651
 
1652
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1653
- #: ../admin/wp-slimstat-admin.php:867
1654
  msgid "Operating System"
1655
  msgstr "Sistema Operativo"
1656
 
1657
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1658
- #: ../admin/wp-slimstat-admin.php:868
1659
  msgid "Permalink"
1660
  msgstr "Enlace Permanente"
1661
 
1662
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1663
  msgid "Referer"
1664
  msgstr "Referido"
1665
 
1666
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1667
  #, fuzzy
1668
- msgid "Visitor's Name"
1669
  msgstr "Visitantes"
1670
 
1671
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1672
  #, fuzzy
1673
  msgid "Outbound Link"
1674
  msgstr "Enlaces Salientes Recientes"
@@ -1682,22 +1667,22 @@ msgid "-- Advanced filters --"
1682
  msgstr "-- Filtros Avanzados --"
1683
 
1684
  #: ../admin/view/wp-slimstat-db.php:52
1685
- #: ../admin/view/wp-slimstat-reports.php:373
1686
  #, fuzzy
1687
  msgid "Browser Capabilities"
1688
  msgstr "Navegador"
1689
 
1690
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1691
  #, fuzzy
1692
  msgid "Browser Version"
1693
  msgstr "Versión del Navegador"
1694
 
1695
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1696
  #, fuzzy
1697
  msgid "Browser Type"
1698
  msgstr "Navegador"
1699
 
1700
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1701
  #, fuzzy
1702
  msgid "User Agent"
1703
  msgstr "Buscadores"
@@ -1711,15 +1696,15 @@ msgstr "Anotaciones de Gráfica"
1711
  msgid "Server Latency"
1712
  msgstr ""
1713
 
1714
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1715
  msgid "Post Author"
1716
  msgstr "Autor de la entrada(sección)"
1717
 
1718
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1719
  msgid "Post Category ID"
1720
  msgstr "ID de la entrada(sección) de la Categoria"
1721
 
1722
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1723
  #, fuzzy
1724
  msgid "Resource Content Type"
1725
  msgstr "Contenidos Recientes"
@@ -1742,7 +1727,7 @@ msgstr "Resolución de Pantalla"
1742
  msgid "Viewport Size"
1743
  msgstr ""
1744
 
1745
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1746
  #, fuzzy
1747
  msgid "Visit ID"
1748
  msgstr "Visitas"
@@ -1789,7 +1774,7 @@ msgid "Event ID"
1789
  msgstr ""
1790
 
1791
  #: ../admin/view/wp-slimstat-db.php:96
1792
- #: ../admin/view/wp-slimstat-reports.php:1720
1793
  msgid "Type"
1794
  msgstr ""
1795
 
@@ -1812,132 +1797,83 @@ msgstr "director"
1812
  msgid "Offset"
1813
  msgstr ""
1814
 
1815
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1816
- #: ../wp-slimstat.php:1793
1817
- msgid "Access Log"
1818
- msgstr ""
1819
-
1820
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1821
- #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1822
- msgid "Overview"
1823
- msgstr "Visión general"
1824
-
1825
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1826
- #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1827
- msgid "Audience"
1828
- msgstr ""
1829
-
1830
- #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1831
- #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1832
- msgid "Site Analysis"
1833
- msgstr ""
1834
-
1835
- #: ../admin/view/wp-slimstat-reports.php:25
1836
- #: ../admin/view/wp-slimstat-reports.php:516
1837
- #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1838
- #: ../wp-slimstat.php:1797
1839
- msgid "Traffic Sources"
1840
- msgstr "Origen del Tráfico"
1841
-
1842
- #: ../admin/view/wp-slimstat-reports.php:26
1843
- #: ../admin/view/wp-slimstat-reports.php:1364
1844
- #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1845
- #: ../wp-slimstat.php:1798
1846
- #, fuzzy
1847
- msgid "Geolocation"
1848
- msgstr "director"
1849
-
1850
- #: ../admin/view/wp-slimstat-reports.php:27
1851
- #, fuzzy
1852
- msgid "WordPress Dashboard"
1853
- msgstr "Integración WordPress"
1854
-
1855
- #: ../admin/view/wp-slimstat-reports.php:28
1856
- #, fuzzy
1857
- msgid "Inactive Reports"
1858
- msgstr "Informes Personalizados"
1859
-
1860
- #: ../admin/view/wp-slimstat-reports.php:77
1861
  msgid "Chart controls"
1862
  msgstr "Controles de gráfica"
1863
 
1864
- #: ../admin/view/wp-slimstat-reports.php:77
1865
  msgid "Use your mouse wheel to zoom in and out"
1866
  msgstr "Use su ratón para acercarse y alejarse"
1867
 
1868
- #: ../admin/view/wp-slimstat-reports.php:77
1869
  msgid "While zooming in, drag the chart to move to a different area"
1870
  msgstr "Al acercarse, arrastre la gráfica para mverla a otra área"
1871
 
1872
- #: ../admin/view/wp-slimstat-reports.php:80
1873
- msgid "Social Sharing Analytics"
1874
- msgstr ""
1875
-
1876
- #: ../admin/view/wp-slimstat-reports.php:87
1877
  #, fuzzy
1878
  msgid "Visitors Activity"
1879
  msgstr "Bitácora de actividades"
1880
 
1881
- #: ../admin/view/wp-slimstat-reports.php:96
1882
  #, fuzzy
1883
  msgid "Color codes"
1884
  msgstr "Código de Pais"
1885
 
1886
- #: ../admin/view/wp-slimstat-reports.php:96
1887
  #, fuzzy
1888
  msgid "From search result page"
1889
  msgstr "Desde una página con resultados de búsqueda"
1890
 
1891
- #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
1892
  #, fuzzy
1893
  msgid "Known Visitor"
1894
  msgstr "Palabras clave recientes"
1895
 
1896
- #: ../admin/view/wp-slimstat-reports.php:96
1897
  #, fuzzy
1898
  msgid "Known Users"
1899
  msgstr "Navegadores recientes"
1900
 
1901
- #: ../admin/view/wp-slimstat-reports.php:96
1902
  msgid "Other Humans"
1903
  msgstr "Otros seres humanos"
1904
 
1905
- #: ../admin/view/wp-slimstat-reports.php:96
1906
  msgid "Bot or Crawler"
1907
  msgstr "Bot o Crawler"
1908
 
1909
- #: ../admin/view/wp-slimstat-reports.php:118
1910
  #, fuzzy
1911
  msgid "About Slimstat"
1912
  msgstr "Acerca de WP-SlimStat"
1913
 
1914
- #: ../admin/view/wp-slimstat-reports.php:127
1915
  #, fuzzy
1916
  msgid "Traffic at a Glance"
1917
  msgstr "Un vistazo"
1918
 
1919
- #: ../admin/view/wp-slimstat-reports.php:137
1920
  #, fuzzy
1921
  msgid "Currently Online"
1922
  msgstr "Filtros Actuales:"
1923
 
1924
- #: ../admin/view/wp-slimstat-reports.php:150
1925
  #, fuzzy
1926
  msgid "Recent Search Terms"
1927
  msgstr "Búsquedas Internas Recientes"
1928
 
1929
- #: ../admin/view/wp-slimstat-reports.php:160
1930
  msgid "Keywords used by your visitors to find your website on a search engine."
1931
  msgstr ""
1932
  "Palabras clave utilizadas por los visitantes para encontrar su sitio en un "
1933
  "motor de búsqueda."
1934
 
1935
- #: ../admin/view/wp-slimstat-reports.php:163
1936
  #, fuzzy
1937
  msgid "Top Web Pages"
1938
  msgstr "Principales Páginas de Salida"
1939
 
1940
- #: ../admin/view/wp-slimstat-reports.php:174
1941
  msgid ""
1942
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1943
  "site, including posts, products, categories, and so on. You can set the "
@@ -1946,26 +1882,26 @@ msgid ""
1946
  "have."
1947
  msgstr ""
1948
 
1949
- #: ../admin/view/wp-slimstat-reports.php:177
1950
  #, fuzzy
1951
- msgid "Top Traffic Sources"
1952
- msgstr "Origen del Tráfico"
1953
 
1954
- #: ../admin/view/wp-slimstat-reports.php:189
1955
  #, fuzzy
1956
  msgid "Top Known Visitors"
1957
  msgstr "Palabras clave recientes"
1958
 
1959
- #: ../admin/view/wp-slimstat-reports.php:200
1960
  #, fuzzy
1961
  msgid "Top Search Terms"
1962
  msgstr "Principales Recursos"
1963
 
1964
- #: ../admin/view/wp-slimstat-reports.php:211
1965
  msgid "Top Countries"
1966
  msgstr "Paises que más visitan"
1967
 
1968
- #: ../admin/view/wp-slimstat-reports.php:220
1969
  #, fuzzy
1970
  msgid ""
1971
  "You can configure Slimstat to ignore a specific Country by setting the "
@@ -1975,11 +1911,11 @@ msgstr ""
1975
  "el establecimiento de el filtro correspondiente en Configuración> SLIMStat> "
1976
  "Filtros."
1977
 
1978
- #: ../admin/view/wp-slimstat-reports.php:223
1979
  msgid "Rankings"
1980
  msgstr "Calificaciones"
1981
 
1982
- #: ../admin/view/wp-slimstat-reports.php:227
1983
  #, fuzzy
1984
  msgid ""
1985
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
@@ -1990,17 +1926,17 @@ msgstr ""
1990
  "para medir el ranking de su sitio. Los valores se actualizan cada 12 horas. "
1991
  "Filtros indicados anteriormente no se aplican a este informe."
1992
 
1993
- #: ../admin/view/wp-slimstat-reports.php:230
1994
  #, fuzzy
1995
  msgid "Top Language Families"
1996
  msgstr "Idiomas"
1997
 
1998
- #: ../admin/view/wp-slimstat-reports.php:243
1999
  #, fuzzy
2000
  msgid "Users Currently Online"
2001
  msgstr "Filtros Actuales:"
2002
 
2003
- #: ../admin/view/wp-slimstat-reports.php:254
2004
  #, fuzzy
2005
  msgid ""
2006
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
@@ -2012,48 +1948,53 @@ msgstr ""
2012
  "visitantes que regresan. Por favor, tenga en cuenta que los visitantes "
2013
  "también incluyen a los usuarios registrados."
2014
 
2015
- #: ../admin/view/wp-slimstat-reports.php:267
2016
  #, fuzzy
2017
  msgid "Unique Terms"
2018
  msgstr "IPs Unicas"
2019
 
2020
- #: ../admin/view/wp-slimstat-reports.php:276
 
 
 
 
 
2021
  msgid "Human Visits"
2022
  msgstr "Visitas humanas"
2023
 
2024
- #: ../admin/view/wp-slimstat-reports.php:285
2025
- #: ../admin/view/wp-slimstat-reports.php:1431
2026
  msgid "Visits"
2027
  msgstr "Visitas"
2028
 
2029
- #: ../admin/view/wp-slimstat-reports.php:295
2030
  #, fuzzy
2031
  msgid "Audience Overview"
2032
  msgstr "Visión general"
2033
 
2034
- #: ../admin/view/wp-slimstat-reports.php:302
2035
  msgid ""
2036
  "Where not otherwise specified, the metrics in this report are referred to "
2037
  "human visitors."
2038
  msgstr ""
2039
 
2040
- #: ../admin/view/wp-slimstat-reports.php:305
2041
  #, fuzzy
2042
  msgid "Top Languages"
2043
  msgstr "Idiomas"
2044
 
2045
- #: ../admin/view/wp-slimstat-reports.php:316
2046
  #, fuzzy
2047
  msgid "Top Browsers"
2048
  msgstr "Navegador"
2049
 
2050
- #: ../admin/view/wp-slimstat-reports.php:327
2051
  #, fuzzy
2052
  msgid "Top Service Providers"
2053
  msgstr "Principales Recursos"
2054
 
2055
- #: ../admin/view/wp-slimstat-reports.php:336
2056
- #: ../admin/view/wp-slimstat-reports.php:348
2057
  #, fuzzy
2058
  msgid ""
2059
  "Internet Service Provider: a company which provides other companies or "
@@ -2067,27 +2008,27 @@ msgstr ""
2067
  "IP específicas estableciendo el filtro correspondiente en Configuración> "
2068
  "SLIMStat> Filtros."
2069
 
2070
- #: ../admin/view/wp-slimstat-reports.php:339
2071
  #, fuzzy
2072
  msgid "Top Operating Systems"
2073
  msgstr "Sistemas Operativos"
2074
 
2075
- #: ../admin/view/wp-slimstat-reports.php:351
2076
  #, fuzzy
2077
  msgid "Top Screen Resolutions"
2078
  msgstr "Resolución de Pantalla"
2079
 
2080
- #: ../admin/view/wp-slimstat-reports.php:362
2081
  #, fuzzy
2082
  msgid "Top Viewport Sizes"
2083
  msgstr "Principales Páginas de Salida"
2084
 
2085
- #: ../admin/view/wp-slimstat-reports.php:382
2086
  #, fuzzy
2087
  msgid "Visit Duration"
2088
  msgstr "Visitas"
2089
 
2090
- #: ../admin/view/wp-slimstat-reports.php:389
2091
  #, fuzzy
2092
  msgid ""
2093
  "All values represent the percentages of pageviews within the corresponding "
@@ -2096,36 +2037,36 @@ msgstr ""
2096
  "Mapa del Mundo - Los valores representan el porcentaje de visitas "
2097
  "procedentes de ese país"
2098
 
2099
- #: ../admin/view/wp-slimstat-reports.php:392
2100
  msgid "Recent Countries"
2101
  msgstr "Paises Recientes"
2102
 
2103
- #: ../admin/view/wp-slimstat-reports.php:403
2104
  #, fuzzy
2105
  msgid "Recent Viewport Sizes"
2106
  msgstr "Paises Recientes"
2107
 
2108
- #: ../admin/view/wp-slimstat-reports.php:414
2109
  #, fuzzy
2110
  msgid "Recent Operating Systems"
2111
  msgstr "Sistemas Operativos"
2112
 
2113
- #: ../admin/view/wp-slimstat-reports.php:425
2114
  #, fuzzy
2115
  msgid "Recent Browsers"
2116
  msgstr "Contenidos Recientes"
2117
 
2118
- #: ../admin/view/wp-slimstat-reports.php:436
2119
  #, fuzzy
2120
  msgid "Recent Languages"
2121
  msgstr "Idiomas"
2122
 
2123
- #: ../admin/view/wp-slimstat-reports.php:447
2124
  #, fuzzy
2125
  msgid "Top Browser Families"
2126
  msgstr "Navegador"
2127
 
2128
- #: ../admin/view/wp-slimstat-reports.php:456
2129
  msgid ""
2130
  "This report shows you what user agent families (no version considered) are "
2131
  "popular among your visitors."
@@ -2133,11 +2074,11 @@ msgstr ""
2133
  "Este informe muestra qué familias de agentes de usuarios son populares entre "
2134
  "los visitantes (no considerada la versión)."
2135
 
2136
- #: ../admin/view/wp-slimstat-reports.php:459
2137
  msgid "Top OS Families"
2138
  msgstr "Páginas Recientes no encontradas"
2139
 
2140
- #: ../admin/view/wp-slimstat-reports.php:470
2141
  msgid ""
2142
  "This report shows you what operating system families (no version considered) "
2143
  "are popular among your visitors."
@@ -2145,91 +2086,96 @@ msgstr ""
2145
  "Este informe le muestra qué familias de sistema operativo (sin versión "
2146
  "considerado) son populares entre los visitantes."
2147
 
2148
- #: ../admin/view/wp-slimstat-reports.php:473
2149
  #, fuzzy
2150
  msgid "Recent Users"
2151
  msgstr "Buscadores"
2152
 
2153
- #: ../admin/view/wp-slimstat-reports.php:485
2154
  #, fuzzy
2155
  msgid "Top Users"
2156
  msgstr "Buscadores"
2157
 
2158
- #: ../admin/view/wp-slimstat-reports.php:497
2159
- #: ../admin/view/wp-slimstat-reports.php:506
2160
  #, fuzzy
2161
  msgid "Users"
2162
  msgstr "Navegadores recientes"
2163
 
2164
- #: ../admin/view/wp-slimstat-reports.php:507
2165
  #, fuzzy
2166
  msgid "Unique Users"
2167
  msgstr "IPs Unicas"
2168
 
2169
- #: ../admin/view/wp-slimstat-reports.php:525
 
 
 
 
 
2170
  msgid "Domains"
2171
  msgstr "Dominios"
2172
 
2173
- #: ../admin/view/wp-slimstat-reports.php:535
2174
  #, fuzzy
2175
  msgid "Traffic Summary"
2176
  msgstr "Origen del Tráfico"
2177
 
2178
- #: ../admin/view/wp-slimstat-reports.php:544
2179
  #, fuzzy
2180
  msgid "Top Referring Search Engines"
2181
  msgstr "Motores de Búsqueda"
2182
 
2183
- #: ../admin/view/wp-slimstat-reports.php:571
2184
  msgid "Recent Outbound Links"
2185
  msgstr "Enlaces Salientes Recientes"
2186
 
2187
- #: ../admin/view/wp-slimstat-reports.php:583
2188
  #, fuzzy
2189
  msgid "Recent Posts"
2190
  msgstr "Contenidos Recientes"
2191
 
2192
- #: ../admin/view/wp-slimstat-reports.php:611
2193
  msgid "Recent Feeds"
2194
  msgstr "Feeds Recientes"
2195
 
2196
- #: ../admin/view/wp-slimstat-reports.php:623
2197
  msgid "Recent Pages Not Found"
2198
  msgstr "Páginas Recientes no encontradas"
2199
 
2200
- #: ../admin/view/wp-slimstat-reports.php:635
2201
  msgid "Recent Internal Searches"
2202
  msgstr "Búsquedas Internas Recientes"
2203
 
2204
- #: ../admin/view/wp-slimstat-reports.php:645
2205
  #, fuzzy
2206
  msgid "Searches performed using WordPress' built-in search functionality."
2207
  msgstr ""
2208
  "Búsquedas realizadas utilizando la funcionalidad integrada de búsqueda de "
2209
  "Wordpress"
2210
 
2211
- #: ../admin/view/wp-slimstat-reports.php:648
2212
  #, fuzzy
2213
  msgid "Top Categories"
2214
  msgstr "Principales Páginas de Salida"
2215
 
2216
- #: ../admin/view/wp-slimstat-reports.php:661
2217
  #, fuzzy
2218
  msgid "Top Downloads"
2219
  msgstr "Descargas Recientes"
2220
 
2221
- #: ../admin/view/wp-slimstat-reports.php:672
2222
  msgid ""
2223
  "You can configure Slimstat to track specific file extensions as downloads."
2224
  msgstr ""
2225
 
2226
- #: ../admin/view/wp-slimstat-reports.php:675
2227
  #, fuzzy
2228
  msgid "Recent Events"
2229
  msgstr "Contenidos Recientes"
2230
 
2231
- #: ../admin/view/wp-slimstat-reports.php:684
2232
- #: ../admin/view/wp-slimstat-reports.php:708
2233
  #, fuzzy
2234
  msgid ""
2235
  "This report lists any <em>event</em> occurred on your website. Please refer "
@@ -2239,55 +2185,55 @@ msgstr ""
2239
  "Por favor, consulte las preguntas frecuentes para más información sobre cómo "
2240
  "aprovechar esta funcionalidad."
2241
 
2242
- #: ../admin/view/wp-slimstat-reports.php:687
2243
  #, fuzzy
2244
  msgid "Top Posts"
2245
  msgstr "Paises que más visitan"
2246
 
2247
- #: ../admin/view/wp-slimstat-reports.php:699
2248
  #, fuzzy
2249
  msgid "Top Events"
2250
  msgstr "Principales Páginas de Salida"
2251
 
2252
- #: ../admin/view/wp-slimstat-reports.php:711
2253
  #, fuzzy
2254
  msgid "Top Internal Searches"
2255
  msgstr "Búsquedas Internas Recientes"
2256
 
2257
- #: ../admin/view/wp-slimstat-reports.php:723
2258
  #, fuzzy
2259
  msgid "Recent Categories"
2260
  msgstr "Paises Recientes"
2261
 
2262
- #: ../admin/view/wp-slimstat-reports.php:735
2263
  #, fuzzy
2264
  msgid "Top Pages Not Found"
2265
  msgstr "Principales Páginas de Salida"
2266
 
2267
- #: ../admin/view/wp-slimstat-reports.php:747
2268
  #, fuzzy
2269
  msgid "Top Authors"
2270
  msgstr "Autor de la entrada(sección)"
2271
 
2272
- #: ../admin/view/wp-slimstat-reports.php:758
2273
  #, fuzzy
2274
  msgid "Top Tags"
2275
  msgstr "Principales Páginas de Salida"
2276
 
2277
- #: ../admin/view/wp-slimstat-reports.php:770
2278
  msgid "Recent Downloads"
2279
  msgstr "Descargas Recientes"
2280
 
2281
- #: ../admin/view/wp-slimstat-reports.php:782
2282
  #, fuzzy
2283
  msgid "Top Outbound Links"
2284
  msgstr "Enlaces Salientes Recientes"
2285
 
2286
- #: ../admin/view/wp-slimstat-reports.php:794
2287
  msgid "Your Website"
2288
  msgstr "Su sitio web"
2289
 
2290
- #: ../admin/view/wp-slimstat-reports.php:801
2291
  msgid ""
2292
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2293
  "this report is not affected by the filters set here above."
@@ -2296,135 +2242,141 @@ msgstr ""
2296
  "en cuenta que este informe no es afectado por los filtros establecidos aquí "
2297
  "arriba."
2298
 
2299
- #: ../admin/view/wp-slimstat-reports.php:804
2300
  #, fuzzy
2301
  msgid "Top Bounce Pages"
2302
  msgstr "Porcentaje de Abandonos"
2303
 
2304
- #: ../admin/view/wp-slimstat-reports.php:817
2305
  #, fuzzy
2306
  msgid "Top Exit Pages"
2307
  msgstr "Principales Páginas de Salida"
2308
 
2309
- #: ../admin/view/wp-slimstat-reports.php:830
2310
  #, fuzzy
2311
  msgid "Top Entry Pages"
2312
  msgstr "Principales Páginas de Salida"
2313
 
2314
- #: ../admin/view/wp-slimstat-reports.php:843
2315
- #: ../admin/view/wp-slimstat-reports.php:852
2316
  #, fuzzy
2317
  msgid "Outbound Links"
2318
  msgstr "Enlaces Salientes Recientes"
2319
 
2320
- #: ../admin/view/wp-slimstat-reports.php:853
2321
  msgid "Unique Outbound"
2322
  msgstr ""
2323
 
2324
- #: ../admin/view/wp-slimstat-reports.php:862
2325
  msgid "World Map"
2326
  msgstr "Mapa del Mundo"
2327
 
2328
- #: ../admin/view/wp-slimstat-reports.php:944
2329
  msgid "Refresh"
2330
  msgstr "Refrescar"
2331
 
2332
- #: ../admin/view/wp-slimstat-reports.php:981
2333
  #, php-format
2334
  msgid "Results %s - %s of %s"
2335
  msgstr "Resultados %s - %s de %s"
2336
 
2337
- #: ../admin/view/wp-slimstat-reports.php:983
2338
  msgid "Refresh in"
2339
  msgstr "Refrescar en"
2340
 
2341
- #: ../admin/view/wp-slimstat-reports.php:1076
2342
  #, fuzzy
2343
  msgid "Category ID"
2344
  msgstr "ID de la entrada(sección) de la Categoria"
2345
 
2346
- #: ../admin/view/wp-slimstat-reports.php:1081
2347
- #: ../admin/view/wp-slimstat-reports.php:1096
2348
  #: ../admin/view/wp-slimstat-reports.php:1102
2349
  #, fuzzy
2350
  msgid "Code"
2351
  msgstr "Código OS"
2352
 
2353
- #: ../admin/view/wp-slimstat-reports.php:1097
2354
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2355
  msgid "l-"
2356
  msgstr "l-"
2357
 
2358
- #: ../admin/view/wp-slimstat-reports.php:1114
2359
  msgid "URL"
2360
  msgstr ""
2361
 
2362
- #: ../admin/view/wp-slimstat-reports.php:1127
2363
  #, fuzzy
2364
  msgid "Referrer"
2365
  msgstr "Referido"
2366
 
2367
- #: ../admin/view/wp-slimstat-reports.php:1168
2368
- #: ../admin/view/wp-slimstat-reports.php:1415
2369
- #: ../admin/view/wp-slimstat-reports.php:1471
2370
- #: ../admin/view/wp-slimstat-reports.php:1477
2371
- #: ../admin/view/wp-slimstat-reports.php:1483
2372
- #: ../admin/view/wp-slimstat-reports.php:1489
2373
- #: ../admin/view/wp-slimstat-reports.php:1495
2374
- #: ../admin/view/wp-slimstat-reports.php:1501
2375
- #: ../admin/view/wp-slimstat-reports.php:1507
2376
- #: ../admin/view/wp-slimstat-reports.php:1727
2377
  #, fuzzy
2378
  msgid "Hits"
2379
  msgstr "Visitas"
2380
 
2381
- #: ../admin/view/wp-slimstat-reports.php:1342
2382
  #, fuzzy
2383
  msgid "Dataset Size"
2384
  msgstr "Tamaño de los Datos"
2385
 
2386
- #: ../admin/view/wp-slimstat-reports.php:1344
2387
  msgid "Total number of records stored in the database."
2388
  msgstr ""
2389
 
2390
- #: ../admin/view/wp-slimstat-reports.php:1346
2391
  #, fuzzy
2392
  msgid "DB Size"
2393
  msgstr "Tamaño de los Datos"
2394
 
2395
- #: ../admin/view/wp-slimstat-reports.php:1349
2396
  #, fuzzy
2397
  msgid "Tracking Enabled"
2398
  msgstr "Seguimiento Activo"
2399
 
2400
- #: ../admin/view/wp-slimstat-reports.php:1352
2401
  msgid "Javascript Mode"
2402
  msgstr "Modo Javascript"
2403
 
2404
- #: ../admin/view/wp-slimstat-reports.php:1355
2405
  msgid "Tracking Browser Caps"
2406
  msgstr "Caps para rastreo de Navegador"
2407
 
2408
- #: ../admin/view/wp-slimstat-reports.php:1358
2409
  msgid "Auto purge"
2410
  msgstr "Autopurgar"
2411
 
2412
- #: ../admin/view/wp-slimstat-reports.php:1361
2413
  #, fuzzy
2414
  msgid "Oldest pageview"
2415
  msgstr "Visita más larga"
2416
 
2417
- #: ../admin/view/wp-slimstat-reports.php:1362
2418
  #, fuzzy
2419
  msgid "No visits"
2420
  msgstr "Visitantes"
2421
 
2422
- #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
 
2423
  msgid "Date when the MaxMind Geolocation database was last updated."
2424
  msgstr ""
2425
 
2426
- #: ../admin/view/wp-slimstat-reports.php:1377
2427
- #: ../admin/view/wp-slimstat-reports.php:1535
2428
  #, fuzzy
2429
  msgid ""
2430
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
@@ -2433,29 +2385,29 @@ msgstr ""
2433
  "Una petición para cargar un archivo HTML único. WP SlimStat registra un "
2434
  "\"pageview\" cada vez que se ejecuta el código de rastreo."
2435
 
2436
- #: ../admin/view/wp-slimstat-reports.php:1379
2437
  #, fuzzy
2438
  msgid "Days in Range"
2439
  msgstr "Fecha y hora"
2440
 
2441
- #: ../admin/view/wp-slimstat-reports.php:1382
2442
  #, fuzzy
2443
  msgid "Average Daily Pageviews"
2444
  msgstr "Promedio Paginas Visitadas"
2445
 
2446
- #: ../admin/view/wp-slimstat-reports.php:1384
2447
  #, fuzzy
2448
  msgid ""
2449
  "How many pages have been visited on average every day during the current "
2450
  "period."
2451
  msgstr "Cuántas páginas se han visitado en promedio durante el período actual."
2452
 
2453
- #: ../admin/view/wp-slimstat-reports.php:1386
2454
  #, fuzzy
2455
  msgid "From Search Results"
2456
  msgstr "Principales Recursos"
2457
 
2458
- #: ../admin/view/wp-slimstat-reports.php:1388
2459
  msgid ""
2460
  "Visitors who landed on your site after searching for a keyword on Google, "
2461
  "Yahoo, etc."
@@ -2463,7 +2415,7 @@ msgstr ""
2463
  "Visitantes que han llegado a su sitio después de buscar una palabra clave en "
2464
  "Google, yahoo, etc."
2465
 
2466
- #: ../admin/view/wp-slimstat-reports.php:1392
2467
  msgid ""
2468
  "Used to differentiate between multiple requests to download a file from one "
2469
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2472,11 +2424,11 @@ msgstr ""
2472
  "desde una dirección de internet (IP) y peticiones que se originan en muchas "
2473
  "diferentes direcciones"
2474
 
2475
- #: ../admin/view/wp-slimstat-reports.php:1394
2476
  msgid "Last 30 minutes"
2477
  msgstr "Últimos 30 minutos"
2478
 
2479
- #: ../admin/view/wp-slimstat-reports.php:1433
2480
  msgid ""
2481
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2482
  "multiple times if they perform multiple visits."
@@ -2484,15 +2436,15 @@ msgstr ""
2484
  "Una visita es una sesión de cuando mucho 30 minutos.Los visitantes de "
2485
  "regreso se cuentan múltiples veces si llevan a cabo múltiples visitas."
2486
 
2487
- #: ../admin/view/wp-slimstat-reports.php:1437
2488
  msgid "It includes only traffic generated by human visitors."
2489
  msgstr "Incluye sólo tráfico generado por visitantes humanos."
2490
 
2491
- #: ../admin/view/wp-slimstat-reports.php:1439
2492
  msgid "Bounce rate"
2493
  msgstr "Porcentaje de Abandonos"
2494
 
2495
- #: ../admin/view/wp-slimstat-reports.php:1441
2496
  msgid ""
2497
  "Percentage of single-page visits, i.e. visits in which the person left your "
2498
  "site from the entrance page."
@@ -2500,81 +2452,81 @@ msgstr ""
2500
  "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
2501
  "dejó su sitio desde la página de entrada."
2502
 
2503
- #: ../admin/view/wp-slimstat-reports.php:1443
2504
  #, fuzzy
2505
  msgid "Known visitors"
2506
  msgstr "Palabras clave recientes"
2507
 
2508
- #: ../admin/view/wp-slimstat-reports.php:1445
2509
  msgid "Visitors who had previously left a comment on your blog."
2510
  msgstr "Visitantes que han dejado un comentario en su blog previamente."
2511
 
2512
- #: ../admin/view/wp-slimstat-reports.php:1447
2513
  #, fuzzy
2514
  msgid "New visitors"
2515
  msgstr "Visitantes"
2516
 
2517
- #: ../admin/view/wp-slimstat-reports.php:1449
2518
  msgid "Human users who visited your site only once."
2519
  msgstr "Visitantes humanos que visitaron su sitio sólo una vez."
2520
 
2521
- #: ../admin/view/wp-slimstat-reports.php:1451
2522
  msgid "Bots"
2523
  msgstr "Motores de Búsqueda"
2524
 
2525
- #: ../admin/view/wp-slimstat-reports.php:1454
2526
  #, fuzzy
2527
  msgid "Pageviews per visit"
2528
  msgstr "Páginas por visita"
2529
 
2530
- #: ../admin/view/wp-slimstat-reports.php:1457
2531
  msgid "Longest visit"
2532
  msgstr "Visita más larga"
2533
 
2534
- #: ../admin/view/wp-slimstat-reports.php:1458
2535
  #, fuzzy
2536
  msgid "hits"
2537
  msgstr "Visitas"
2538
 
2539
- #: ../admin/view/wp-slimstat-reports.php:1469
2540
  msgid "0 - 30 seconds"
2541
  msgstr "0 - 30 segundos"
2542
 
2543
- #: ../admin/view/wp-slimstat-reports.php:1475
2544
  msgid "31 - 60 seconds"
2545
  msgstr "31 - 60 segundos"
2546
 
2547
- #: ../admin/view/wp-slimstat-reports.php:1481
2548
  msgid "1 - 3 minutes"
2549
  msgstr "1 - 3 minutos"
2550
 
2551
- #: ../admin/view/wp-slimstat-reports.php:1487
2552
  msgid "3 - 5 minutes"
2553
  msgstr "3 - 5 minutos"
2554
 
2555
- #: ../admin/view/wp-slimstat-reports.php:1493
2556
  msgid "5 - 7 minutes"
2557
  msgstr "5 - 7 minutos"
2558
 
2559
- #: ../admin/view/wp-slimstat-reports.php:1499
2560
  msgid "7 - 10 minutes"
2561
  msgstr "7 - 10 minutos"
2562
 
2563
- #: ../admin/view/wp-slimstat-reports.php:1505
2564
  msgid "More than 10 minutes"
2565
  msgstr "Más de 10 minutos"
2566
 
2567
- #: ../admin/view/wp-slimstat-reports.php:1517
2568
  #, fuzzy
2569
  msgid "Average visit duration"
2570
  msgstr "Visitas"
2571
 
2572
- #: ../admin/view/wp-slimstat-reports.php:1537
2573
  #, fuzzy
2574
  msgid "Unique Referrers"
2575
  msgstr "Referidos Únicos"
2576
 
2577
- #: ../admin/view/wp-slimstat-reports.php:1539
2578
  msgid ""
2579
  "A referrer (or referring site) is the site that a visitor previously visited "
2580
  "before following a link to your site."
@@ -2582,12 +2534,12 @@ msgstr ""
2582
  "Un sitio referente (o que refiere) es el sitio al cual el visitante tuvo "
2583
  "acceso antes de seguir un enlace a su sitio."
2584
 
2585
- #: ../admin/view/wp-slimstat-reports.php:1541
2586
  #, fuzzy
2587
  msgid "Direct Pageviews"
2588
  msgstr "Paginas visitadas"
2589
 
2590
- #: ../admin/view/wp-slimstat-reports.php:1543
2591
  msgid ""
2592
  "Visitors who visited the site by typing the URL directly into their browser. "
2593
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2599,11 +2551,11 @@ msgstr ""
2599
  "hicieron clic en sus favoritos, usaron etiquetas de enlaces en emails, o "
2600
  "enlaces de documentos que no incluyen variables de rastreo."
2601
 
2602
- #: ../admin/view/wp-slimstat-reports.php:1545
2603
  msgid "From a search result"
2604
  msgstr "Desde un resultado de búsqueda"
2605
 
2606
- #: ../admin/view/wp-slimstat-reports.php:1547
2607
  msgid ""
2608
  "Visitors who came to your site via searches on Google or some other search "
2609
  "engine."
@@ -2611,12 +2563,12 @@ msgstr ""
2611
  "Visitantes que llegaron a su sitio después de buscar una palabra clave en "
2612
  "Google, yahoo, etc."
2613
 
2614
- #: ../admin/view/wp-slimstat-reports.php:1549
2615
  #, fuzzy
2616
  msgid "Unique Landing Pages"
2617
  msgstr "IPs Unicas"
2618
 
2619
- #: ../admin/view/wp-slimstat-reports.php:1551
2620
  msgid ""
2621
  "The first page that a user views during a session. This is also known as the "
2622
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2628,22 +2580,22 @@ msgstr ""
2628
  "Brooklyn,” y llegan a su página de inicio, se cuenta (para esa visita) como "
2629
  "página de entrada."
2630
 
2631
- #: ../admin/view/wp-slimstat-reports.php:1553
2632
  #, fuzzy
2633
  msgid "Bounce Pages"
2634
  msgstr "Porcentaje de Abandonos"
2635
 
2636
- #: ../admin/view/wp-slimstat-reports.php:1555
2637
  #, fuzzy
2638
  msgid "Number of single page visits to your site over the selected period."
2639
  msgstr "Número de visitas a una página en el período seleccionado."
2640
 
2641
- #: ../admin/view/wp-slimstat-reports.php:1557
2642
  #, fuzzy
2643
  msgid "New Visitors Rate"
2644
  msgstr "Visitantes"
2645
 
2646
- #: ../admin/view/wp-slimstat-reports.php:1559
2647
  #, fuzzy
2648
  msgid ""
2649
  "Percentage of single page visits, i.e. visits in which the person left your "
@@ -2652,12 +2604,12 @@ msgstr ""
2652
  "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
2653
  "dejó su sitio desde la página de entrada."
2654
 
2655
- #: ../admin/view/wp-slimstat-reports.php:1561
2656
  #, fuzzy
2657
  msgid "Currently from search engines"
2658
  msgstr "Motores de Búsqueda"
2659
 
2660
- #: ../admin/view/wp-slimstat-reports.php:1563
2661
  msgid ""
2662
  "Visitors who visited the site in the last 5 minutes coming from a search "
2663
  "engine."
@@ -2665,24 +2617,24 @@ msgstr ""
2665
  "Visitantes que visitaron el sitio en los últimos 5 minutos y vienen de un "
2666
  "motor de búsqueda."
2667
 
2668
- #: ../admin/view/wp-slimstat-reports.php:1633
2669
  msgid "Number of pages in your site included in Google's index."
2670
  msgstr "Número de páginas en su sitio incluidas en el índice de Google."
2671
 
2672
- #: ../admin/view/wp-slimstat-reports.php:1634
2673
  msgid "Google Index"
2674
  msgstr "Indice de Google"
2675
 
2676
- #: ../admin/view/wp-slimstat-reports.php:1635
2677
  msgid "Number of pages, according to Google, that link back to your site."
2678
  msgstr ""
2679
  "Número de páginas, de acuerdo a Google, que enlazan de regreso a su sitio."
2680
 
2681
- #: ../admin/view/wp-slimstat-reports.php:1636
2682
  msgid "Google Backlinks"
2683
  msgstr "Backlinks Google"
2684
 
2685
- #: ../admin/view/wp-slimstat-reports.php:1637
2686
  msgid ""
2687
  "How many times the Facebook Like button has been approximately clicked on "
2688
  "your site."
@@ -2690,30 +2642,30 @@ msgstr ""
2690
  "Aproximadamente cuántas veces se ha hecho clic en el botón “Me Gusta” de "
2691
  "Facebook en su sitio."
2692
 
2693
- #: ../admin/view/wp-slimstat-reports.php:1638
2694
  msgid "Facebook Likes"
2695
  msgstr "Me Gusta de Facebook"
2696
 
2697
- #: ../admin/view/wp-slimstat-reports.php:1639
2698
  msgid ""
2699
  "How many times your site has been shared by someone on the social network."
2700
  msgstr ""
2701
  "Cuántas veces ha sido compartido su sitio con alguien en las redes sociales."
2702
 
2703
- #: ../admin/view/wp-slimstat-reports.php:1640
2704
  msgid "Facebook Shares"
2705
  msgstr "Compartidas en Facebook"
2706
 
2707
- #: ../admin/view/wp-slimstat-reports.php:1641
2708
  msgid "How many times links to your website have been clicked on Facebook."
2709
  msgstr "Cuántas veces se ha hecho clic en enlaces a su sitio en Facebook."
2710
 
2711
- #: ../admin/view/wp-slimstat-reports.php:1642
2712
  #, fuzzy
2713
  msgid "Facebook Clicks"
2714
  msgstr "Enlaces Salientes Recientes"
2715
 
2716
- #: ../admin/view/wp-slimstat-reports.php:1643
2717
  msgid ""
2718
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2719
  "traffic data."
@@ -2721,24 +2673,24 @@ msgstr ""
2721
  "Alexa es una compaañ+ía subsidiaria de Amazon.com que proporciona "
2722
  "información de tráfico de datos."
2723
 
2724
- #: ../admin/view/wp-slimstat-reports.php:1644
2725
  msgid "Alexa World Rank"
2726
  msgstr "Clasificación Mundial Alexa."
2727
 
2728
- #: ../admin/view/wp-slimstat-reports.php:1645
2729
  msgid "Alexa Country Rank"
2730
  msgstr "Clasificación por país Alexa"
2731
 
2732
- #: ../admin/view/wp-slimstat-reports.php:1646
2733
  msgid "Alexa Popularity"
2734
  msgstr "Popularidad Alexa"
2735
 
2736
- #: ../admin/view/wp-slimstat-reports.php:1657
2737
  #, fuzzy
2738
  msgid "Content Items"
2739
  msgstr "Contenido"
2740
 
2741
- #: ../admin/view/wp-slimstat-reports.php:1659
2742
  msgid ""
2743
  "This value includes not only posts, but also custom post types, regardless "
2744
  "of their status"
@@ -2746,1249 +2698,1263 @@ msgstr ""
2746
  "Este valor incluye no sólo publicaciones, sino también tipos de publicación "
2747
  "personalizados, sin importar su estado"
2748
 
2749
- #: ../admin/view/wp-slimstat-reports.php:1661
2750
  #, fuzzy
2751
  msgid "Posts"
2752
  msgstr "Paises que más visitan"
2753
 
2754
- #: ../admin/view/wp-slimstat-reports.php:1664
2755
  #, fuzzy
2756
  msgid "Pages"
2757
  msgstr "Principales Páginas de Salida"
2758
 
2759
- #: ../admin/view/wp-slimstat-reports.php:1667
2760
  msgid "Attachments"
2761
  msgstr ""
2762
 
2763
- #: ../admin/view/wp-slimstat-reports.php:1670
2764
  #, fuzzy
2765
  msgid "Revisions"
2766
  msgstr "Enlace Permanente"
2767
 
2768
- #: ../admin/view/wp-slimstat-reports.php:1673
2769
  #, fuzzy
2770
  msgid "Comments"
2771
  msgstr "Total de Accesos"
2772
 
2773
- #: ../admin/view/wp-slimstat-reports.php:1676
2774
  #, fuzzy
2775
  msgid "Avg Comments per Post"
2776
  msgstr "Promedio de Comentarios por Publicación"
2777
 
2778
- #: ../admin/view/wp-slimstat-reports.php:1679
2779
  msgid "Avg Server Latency"
2780
  msgstr ""
2781
 
2782
- #: ../admin/view/wp-slimstat-reports.php:1681
2783
  msgid ""
2784
  "Latency is the amount of time it takes for the host server to receive and "
2785
  "process a request for a page object. The amount of latency depends largely "
2786
  "on how far away the user is from the server."
2787
  msgstr ""
2788
 
2789
- #: ../admin/view/wp-slimstat-reports.php:1724
2790
  #, fuzzy
2791
  msgid "Coordinates"
2792
  msgstr "Seguimiento Activo"
2793
 
2794
- #: ../admin/view/wp-slimstat-reports.php:1724
2795
  msgid "Date"
2796
  msgstr ""
2797
 
2798
- #: ../admin/view/wp-slimstat-reports.php:1761
2799
- msgid "Error contacting the GetSocial endpoint."
2800
- msgstr ""
2801
-
2802
- #: ../admin/view/wp-slimstat-reports.php:1769
2803
- msgid "Error decoding the GetSocial payload."
2804
- msgstr ""
2805
-
2806
- #: ../admin/view/wp-slimstat-reports.php:1801
2807
- msgid ""
2808
- "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2809
- ">social media metrics and identify your top performing posts.<br/> <a "
2810
- "class='button-ajax' title='Enable this functionality' href='"
2811
- msgstr ""
2812
-
2813
  # Unknown
2814
- #: ../admin/view/wp-slimstat-reports.php:1811
2815
  msgid "c-xx"
2816
  msgstr "Unknown"
2817
 
2818
  # Afghanistan
2819
- #: ../admin/view/wp-slimstat-reports.php:1811
2820
  msgid "c-af"
2821
  msgstr "Afghanistan"
2822
 
2823
  # Åland Islands
2824
- #: ../admin/view/wp-slimstat-reports.php:1811
2825
  msgid "c-ax"
2826
  msgstr "Åland Islands"
2827
 
2828
  # Albania
2829
- #: ../admin/view/wp-slimstat-reports.php:1811
2830
  msgid "c-al"
2831
  msgstr "Albania"
2832
 
2833
  # Algeria
2834
- #: ../admin/view/wp-slimstat-reports.php:1811
2835
  msgid "c-dz"
2836
  msgstr "Algeria"
2837
 
2838
  # Andorra
2839
- #: ../admin/view/wp-slimstat-reports.php:1811
2840
  msgid "c-ad"
2841
  msgstr "Andorra"
2842
 
2843
  # Angola
2844
- #: ../admin/view/wp-slimstat-reports.php:1811
2845
  msgid "c-ao"
2846
  msgstr "Angola"
2847
 
2848
  # Anguilla
2849
- #: ../admin/view/wp-slimstat-reports.php:1811
2850
  msgid "c-ai"
2851
  msgstr "Anguilla"
2852
 
2853
  # Antigua and Barbuda
2854
- #: ../admin/view/wp-slimstat-reports.php:1811
2855
  msgid "c-ag"
2856
  msgstr "Antigua and Barbuda"
2857
 
2858
  # Argentina
2859
- #: ../admin/view/wp-slimstat-reports.php:1811
2860
  msgid "c-ar"
2861
  msgstr "Argentina"
2862
 
2863
  # Armenia
2864
- #: ../admin/view/wp-slimstat-reports.php:1811
2865
  msgid "c-am"
2866
  msgstr "Armenia"
2867
 
2868
  # Aruba
2869
- #: ../admin/view/wp-slimstat-reports.php:1811
2870
  msgid "c-aw"
2871
  msgstr "Aruba"
2872
 
2873
  # Australia
2874
- #: ../admin/view/wp-slimstat-reports.php:1811
2875
  msgid "c-au"
2876
  msgstr "Australia"
2877
 
2878
  # Austria
2879
- #: ../admin/view/wp-slimstat-reports.php:1811
2880
  msgid "c-at"
2881
  msgstr "Austria"
2882
 
2883
  # Azerbaijan
2884
- #: ../admin/view/wp-slimstat-reports.php:1811
2885
  msgid "c-az"
2886
  msgstr "Azerbaijan"
2887
 
2888
  # Bahamas
2889
- #: ../admin/view/wp-slimstat-reports.php:1811
2890
  msgid "c-bs"
2891
  msgstr "Bahamas"
2892
 
2893
  # Bahrain
2894
- #: ../admin/view/wp-slimstat-reports.php:1811
2895
  msgid "c-bh"
2896
  msgstr "Bahrain"
2897
 
2898
  # Bangladesh
2899
- #: ../admin/view/wp-slimstat-reports.php:1811
2900
  msgid "c-bd"
2901
  msgstr "Bangladesh"
2902
 
2903
  # Barbados
2904
- #: ../admin/view/wp-slimstat-reports.php:1811
2905
  msgid "c-bb"
2906
  msgstr "Barbados"
2907
 
2908
  # Belarus
2909
- #: ../admin/view/wp-slimstat-reports.php:1811
2910
  msgid "c-by"
2911
  msgstr "Belarus"
2912
 
2913
  # Belgium
2914
- #: ../admin/view/wp-slimstat-reports.php:1811
2915
  msgid "c-be"
2916
  msgstr "Belgium"
2917
 
2918
  # Belize
2919
- #: ../admin/view/wp-slimstat-reports.php:1811
2920
  msgid "c-bz"
2921
  msgstr "Belize"
2922
 
2923
  # Benin
2924
- #: ../admin/view/wp-slimstat-reports.php:1811
2925
  msgid "c-bj"
2926
  msgstr "Benin"
2927
 
2928
  # Bermuda
2929
- #: ../admin/view/wp-slimstat-reports.php:1811
2930
  msgid "c-bm"
2931
  msgstr "Bermuda"
2932
 
2933
  # Bhutan
2934
- #: ../admin/view/wp-slimstat-reports.php:1811
2935
  msgid "c-bt"
2936
  msgstr "Bhutan"
2937
 
2938
  # Bolivia
2939
- #: ../admin/view/wp-slimstat-reports.php:1811
2940
  msgid "c-bo"
2941
  msgstr "Bolivia"
2942
 
2943
  # Bosnia and Herzegovina
2944
- #: ../admin/view/wp-slimstat-reports.php:1811
2945
  msgid "c-ba"
2946
  msgstr "Bosnia and Herzegovina"
2947
 
2948
  # Botswana
2949
- #: ../admin/view/wp-slimstat-reports.php:1811
2950
  msgid "c-bw"
2951
  msgstr "Botswana"
2952
 
2953
  # Brazil
2954
- #: ../admin/view/wp-slimstat-reports.php:1811
2955
  msgid "c-br"
2956
  msgstr "Brazil"
2957
 
2958
  # Brunei Darussalam
2959
- #: ../admin/view/wp-slimstat-reports.php:1811
2960
  msgid "c-bn"
2961
  msgstr "Brunei Darussalam"
2962
 
2963
  # Bulgaria
2964
- #: ../admin/view/wp-slimstat-reports.php:1811
2965
  msgid "c-bg"
2966
  msgstr "Bulgaria"
2967
 
2968
  # Burkina Faso
2969
- #: ../admin/view/wp-slimstat-reports.php:1811
2970
  msgid "c-bf"
2971
  msgstr "Burkina Faso"
2972
 
2973
  # Burundi
2974
- #: ../admin/view/wp-slimstat-reports.php:1811
2975
  msgid "c-bi"
2976
  msgstr "Burundi"
2977
 
2978
  # Cambodia
2979
- #: ../admin/view/wp-slimstat-reports.php:1811
2980
  msgid "c-kh"
2981
  msgstr "Cambodia"
2982
 
2983
  # Cameroon
2984
- #: ../admin/view/wp-slimstat-reports.php:1811
2985
  msgid "c-cm"
2986
  msgstr "Cameroon"
2987
 
2988
  # Canada
2989
- #: ../admin/view/wp-slimstat-reports.php:1811
2990
  msgid "c-ca"
2991
  msgstr "Canada"
2992
 
2993
  # Cape Verde
2994
- #: ../admin/view/wp-slimstat-reports.php:1811
2995
  msgid "c-cv"
2996
  msgstr "Cape Verde"
2997
 
2998
  # Cayman Islands
2999
- #: ../admin/view/wp-slimstat-reports.php:1811
3000
  msgid "c-ky"
3001
  msgstr "Cayman Islands"
3002
 
3003
  # Central African Republic
3004
- #: ../admin/view/wp-slimstat-reports.php:1811
3005
  msgid "c-cf"
3006
  msgstr "Central African Republic"
3007
 
3008
  # Chad
3009
- #: ../admin/view/wp-slimstat-reports.php:1811
3010
  msgid "c-td"
3011
  msgstr "Chad"
3012
 
3013
  # Chile
3014
- #: ../admin/view/wp-slimstat-reports.php:1811
3015
  msgid "c-cl"
3016
  msgstr "Chile"
3017
 
3018
  # China
3019
- #: ../admin/view/wp-slimstat-reports.php:1811
3020
  msgid "c-cn"
3021
  msgstr "China"
3022
 
3023
  # Colombia
3024
- #: ../admin/view/wp-slimstat-reports.php:1811
3025
  msgid "c-co"
3026
  msgstr "Colombia"
3027
 
3028
  # Comoros
3029
- #: ../admin/view/wp-slimstat-reports.php:1811
3030
  msgid "c-km"
3031
  msgstr "Comoros"
3032
 
3033
  # Congo
3034
- #: ../admin/view/wp-slimstat-reports.php:1811
3035
  msgid "c-cg"
3036
  msgstr "Congo"
3037
 
3038
  # The Democratic Republic of the Congo
3039
- #: ../admin/view/wp-slimstat-reports.php:1811
3040
  msgid "c-cd"
3041
  msgstr "The Democratic Republic of the Congo"
3042
 
3043
  # Costa Rica
3044
- #: ../admin/view/wp-slimstat-reports.php:1811
3045
  msgid "c-cr"
3046
  msgstr "Costa Rica"
3047
 
3048
  # Côte d'Ivoire
3049
- #: ../admin/view/wp-slimstat-reports.php:1811
3050
  msgid "c-ci"
3051
  msgstr "Côte d'Ivoire"
3052
 
3053
  # Croatia
3054
- #: ../admin/view/wp-slimstat-reports.php:1811
3055
  msgid "c-hr"
3056
  msgstr "Croatia"
3057
 
3058
  # Cuba
3059
- #: ../admin/view/wp-slimstat-reports.php:1811
3060
  msgid "c-cu"
3061
  msgstr "Cuba"
3062
 
3063
  # Cyprus
3064
- #: ../admin/view/wp-slimstat-reports.php:1811
3065
  msgid "c-cy"
3066
  msgstr "Cyprus"
3067
 
3068
  # Czech Republic
3069
- #: ../admin/view/wp-slimstat-reports.php:1811
3070
  msgid "c-cz"
3071
  msgstr "Czech Republic"
3072
 
3073
  # Denmark
3074
- #: ../admin/view/wp-slimstat-reports.php:1811
3075
  msgid "c-dk"
3076
  msgstr "Denmark"
3077
 
3078
  # Djibouti
3079
- #: ../admin/view/wp-slimstat-reports.php:1811
3080
  msgid "c-dj"
3081
  msgstr "Djibouti"
3082
 
3083
  # Dominica
3084
- #: ../admin/view/wp-slimstat-reports.php:1811
3085
  msgid "c-dm"
3086
  msgstr "Dominica"
3087
 
3088
  # Dominican Republic
3089
- #: ../admin/view/wp-slimstat-reports.php:1811
3090
  msgid "c-do"
3091
  msgstr "Dominican Republic"
3092
 
3093
  # Ecuador
3094
- #: ../admin/view/wp-slimstat-reports.php:1811
3095
  msgid "c-ec"
3096
  msgstr "Ecuador"
3097
 
3098
  # Egypt
3099
- #: ../admin/view/wp-slimstat-reports.php:1811
3100
  msgid "c-eg"
3101
  msgstr "Egypt"
3102
 
3103
  # El Salvador
3104
- #: ../admin/view/wp-slimstat-reports.php:1811
3105
  msgid "c-sv"
3106
  msgstr "El Salvador"
3107
 
3108
  # Equatorial Guinea
3109
- #: ../admin/view/wp-slimstat-reports.php:1811
3110
  msgid "c-gq"
3111
  msgstr "Equatorial Guinea"
3112
 
3113
  # Eritrea
3114
- #: ../admin/view/wp-slimstat-reports.php:1811
3115
  msgid "c-er"
3116
  msgstr "Eritrea"
3117
 
3118
  # Estonia
3119
- #: ../admin/view/wp-slimstat-reports.php:1811
3120
  msgid "c-ee"
3121
  msgstr "Estonia"
3122
 
3123
  # Ethiopia
3124
- #: ../admin/view/wp-slimstat-reports.php:1811
3125
  msgid "c-et"
3126
  msgstr "Ethiopia"
3127
 
3128
  # Faroe Islands
3129
- #: ../admin/view/wp-slimstat-reports.php:1811
3130
  msgid "c-fo"
3131
  msgstr "Faroe Islands"
3132
 
3133
  # Falkland Islands (Malvinas)
3134
- #: ../admin/view/wp-slimstat-reports.php:1811
3135
  msgid "c-fk"
3136
  msgstr "Falkland Islands (Malvinas)"
3137
 
3138
  # Fiji
3139
- #: ../admin/view/wp-slimstat-reports.php:1811
3140
  msgid "c-fj"
3141
  msgstr "Fiji"
3142
 
3143
  # Finland
3144
- #: ../admin/view/wp-slimstat-reports.php:1811
3145
  msgid "c-fi"
3146
  msgstr "Finland"
3147
 
3148
  # France
3149
- #: ../admin/view/wp-slimstat-reports.php:1811
3150
  msgid "c-fr"
3151
  msgstr "France"
3152
 
3153
  # French Guiana
3154
- #: ../admin/view/wp-slimstat-reports.php:1811
3155
  msgid "c-gf"
3156
  msgstr "French Guiana"
3157
 
3158
  # Gabon
3159
- #: ../admin/view/wp-slimstat-reports.php:1811
3160
  msgid "c-ga"
3161
  msgstr "Gabon"
3162
 
3163
  # Gambia
3164
- #: ../admin/view/wp-slimstat-reports.php:1811
3165
  msgid "c-gm"
3166
  msgstr "Gambia"
3167
 
3168
  # Georgia
3169
- #: ../admin/view/wp-slimstat-reports.php:1811
3170
  msgid "c-ge"
3171
  msgstr "Georgia"
3172
 
3173
  # Germany
3174
- #: ../admin/view/wp-slimstat-reports.php:1811
3175
  msgid "c-de"
3176
  msgstr "Germany"
3177
 
3178
  # Ghana
3179
- #: ../admin/view/wp-slimstat-reports.php:1811
3180
  msgid "c-gh"
3181
  msgstr "Ghana"
3182
 
3183
  # Greece
3184
- #: ../admin/view/wp-slimstat-reports.php:1811
3185
  msgid "c-gr"
3186
  msgstr "Greece"
3187
 
3188
  # Greenland
3189
- #: ../admin/view/wp-slimstat-reports.php:1811
3190
  msgid "c-gl"
3191
  msgstr "Greenland"
3192
 
3193
  # Grenada
3194
- #: ../admin/view/wp-slimstat-reports.php:1811
3195
  msgid "c-gd"
3196
  msgstr "Grenada"
3197
 
3198
  # Guadeloupe
3199
- #: ../admin/view/wp-slimstat-reports.php:1811
3200
  msgid "c-gp"
3201
  msgstr "Guadeloupe"
3202
 
3203
  # Guatemala
3204
- #: ../admin/view/wp-slimstat-reports.php:1811
3205
  msgid "c-gt"
3206
  msgstr "Guatemala"
3207
 
3208
  # Guinea
3209
- #: ../admin/view/wp-slimstat-reports.php:1811
3210
  msgid "c-gn"
3211
  msgstr "Guinea"
3212
 
3213
  # Guinea-Bissau
3214
- #: ../admin/view/wp-slimstat-reports.php:1811
3215
  msgid "c-gw"
3216
  msgstr "Guinea-Bissau"
3217
 
3218
  # Guyana
3219
- #: ../admin/view/wp-slimstat-reports.php:1811
3220
  msgid "c-gy"
3221
  msgstr "Guyana"
3222
 
3223
  # Haiti
3224
- #: ../admin/view/wp-slimstat-reports.php:1811
3225
  msgid "c-ht"
3226
  msgstr "Haiti"
3227
 
3228
  # Honduras
3229
- #: ../admin/view/wp-slimstat-reports.php:1811
3230
  msgid "c-hn"
3231
  msgstr "Honduras"
3232
 
3233
  # Hong Kong
3234
- #: ../admin/view/wp-slimstat-reports.php:1811
3235
  msgid "c-hk"
3236
  msgstr "Hong Kong"
3237
 
3238
  # Hungary
3239
- #: ../admin/view/wp-slimstat-reports.php:1811
3240
  msgid "c-hu"
3241
  msgstr "Hungary"
3242
 
3243
  # Iceland
3244
- #: ../admin/view/wp-slimstat-reports.php:1811
3245
  msgid "c-is"
3246
  msgstr "Iceland"
3247
 
3248
  # India
3249
- #: ../admin/view/wp-slimstat-reports.php:1811
3250
  msgid "c-in"
3251
  msgstr "India"
3252
 
3253
  # Indonesia
3254
- #: ../admin/view/wp-slimstat-reports.php:1811
3255
  msgid "c-id"
3256
  msgstr "Indonesia"
3257
 
3258
  # Islamic Republic of Iran
3259
- #: ../admin/view/wp-slimstat-reports.php:1811
3260
  msgid "c-ir"
3261
  msgstr "Islamic Republic of Iran"
3262
 
3263
  # Iraq
3264
- #: ../admin/view/wp-slimstat-reports.php:1811
3265
  msgid "c-iq"
3266
  msgstr "Iraq"
3267
 
3268
  # Ireland
3269
- #: ../admin/view/wp-slimstat-reports.php:1811
3270
  msgid "c-ie"
3271
  msgstr "Ireland"
3272
 
3273
  # Israel
3274
- #: ../admin/view/wp-slimstat-reports.php:1811
3275
  msgid "c-il"
3276
  msgstr "Israel"
3277
 
3278
  # Italy
3279
- #: ../admin/view/wp-slimstat-reports.php:1811
3280
  msgid "c-it"
3281
  msgstr "Italy"
3282
 
3283
  # Jamaica
3284
- #: ../admin/view/wp-slimstat-reports.php:1811
3285
  msgid "c-jm"
3286
  msgstr "Jamaica"
3287
 
3288
  # Japan
3289
- #: ../admin/view/wp-slimstat-reports.php:1811
3290
  msgid "c-jp"
3291
  msgstr "Japan"
3292
 
3293
  # Jordan
3294
- #: ../admin/view/wp-slimstat-reports.php:1811
3295
  msgid "c-jo"
3296
  msgstr "Jordan"
3297
 
3298
  # Kazakhstan
3299
- #: ../admin/view/wp-slimstat-reports.php:1811
3300
  msgid "c-kz"
3301
  msgstr "Kazakhstan"
3302
 
3303
  # Kenya
3304
- #: ../admin/view/wp-slimstat-reports.php:1811
3305
  msgid "c-ke"
3306
  msgstr "Kenya"
3307
 
3308
  # Nauru
3309
- #: ../admin/view/wp-slimstat-reports.php:1811
3310
  msgid "c-nr"
3311
  msgstr "Nauru"
3312
 
3313
  # Democratic People's Republic of Korea
3314
- #: ../admin/view/wp-slimstat-reports.php:1811
3315
  msgid "c-kp"
3316
  msgstr "Democratic People's Republic of Korea"
3317
 
3318
  # Republic of Korea
3319
- #: ../admin/view/wp-slimstat-reports.php:1811
3320
  msgid "c-kr"
3321
  msgstr "Republic of Korea"
3322
 
3323
- #: ../admin/view/wp-slimstat-reports.php:1811
3324
  msgid "c-kv"
3325
  msgstr "c-kv"
3326
 
3327
  # Kuwait
3328
- #: ../admin/view/wp-slimstat-reports.php:1811
3329
  msgid "c-kw"
3330
  msgstr "Kuwait"
3331
 
3332
  # Kyrgyzstan
3333
- #: ../admin/view/wp-slimstat-reports.php:1811
3334
  msgid "c-kg"
3335
  msgstr "Kyrgyzstan"
3336
 
3337
  # Lao People's Democratic Republic
3338
- #: ../admin/view/wp-slimstat-reports.php:1811
3339
  msgid "c-la"
3340
  msgstr "Lao People's Democratic Republic"
3341
 
3342
  # Latvia
3343
- #: ../admin/view/wp-slimstat-reports.php:1811
3344
  msgid "c-lv"
3345
  msgstr "Latvia"
3346
 
3347
  # Lebanon
3348
- #: ../admin/view/wp-slimstat-reports.php:1811
3349
  msgid "c-lb"
3350
  msgstr "Lebanon"
3351
 
3352
  # Lesotho
3353
- #: ../admin/view/wp-slimstat-reports.php:1811
3354
  msgid "c-ls"
3355
  msgstr "Lesotho"
3356
 
3357
  # Liberia
3358
- #: ../admin/view/wp-slimstat-reports.php:1811
3359
  msgid "c-lr"
3360
  msgstr "Liberia"
3361
 
3362
  # Libyan Arab Jamahiriya
3363
- #: ../admin/view/wp-slimstat-reports.php:1811
3364
  msgid "c-ly"
3365
  msgstr "Libyan Arab Jamahiriya"
3366
 
3367
  # Liechtenstein
3368
- #: ../admin/view/wp-slimstat-reports.php:1811
3369
  msgid "c-li"
3370
  msgstr "Liechtenstein"
3371
 
3372
  # Lithuania
3373
- #: ../admin/view/wp-slimstat-reports.php:1811
3374
  msgid "c-lt"
3375
  msgstr "Lithuania"
3376
 
3377
  # Luxembourg
3378
- #: ../admin/view/wp-slimstat-reports.php:1811
3379
  msgid "c-lu"
3380
  msgstr "Luxembourg"
3381
 
3382
  # The Former Yugoslav Republic of Macedonia
3383
- #: ../admin/view/wp-slimstat-reports.php:1811
3384
  msgid "c-mk"
3385
  msgstr "The Former Yugoslav Republic of Macedonia"
3386
 
3387
  # Madagascar
3388
- #: ../admin/view/wp-slimstat-reports.php:1811
3389
  msgid "c-mg"
3390
  msgstr "Madagascar"
3391
 
3392
  # Malawi
3393
- #: ../admin/view/wp-slimstat-reports.php:1811
3394
  msgid "c-mw"
3395
  msgstr "Malawi"
3396
 
3397
  # Malaysia
3398
- #: ../admin/view/wp-slimstat-reports.php:1811
3399
  msgid "c-my"
3400
  msgstr "Malaysia"
3401
 
3402
  # Mali
3403
- #: ../admin/view/wp-slimstat-reports.php:1811
3404
  msgid "c-ml"
3405
  msgstr "Mali"
3406
 
3407
  # Malta
3408
- #: ../admin/view/wp-slimstat-reports.php:1811
3409
  msgid "c-mt"
3410
  msgstr "Malta"
3411
 
3412
  # Martinique
3413
- #: ../admin/view/wp-slimstat-reports.php:1811
3414
  msgid "c-mq"
3415
  msgstr "Martinique"
3416
 
3417
  # Mauritania
3418
- #: ../admin/view/wp-slimstat-reports.php:1811
3419
  msgid "c-mr"
3420
  msgstr "Mauritania"
3421
 
3422
  # Mauritius
3423
- #: ../admin/view/wp-slimstat-reports.php:1811
3424
  msgid "c-mu"
3425
  msgstr "Mauritius"
3426
 
3427
  # Mexico
3428
- #: ../admin/view/wp-slimstat-reports.php:1811
3429
  msgid "c-mx"
3430
  msgstr "Mexico"
3431
 
3432
  # Moldova
3433
- #: ../admin/view/wp-slimstat-reports.php:1811
3434
  msgid "c-md"
3435
  msgstr "Moldova"
3436
 
3437
  # Mongolia
3438
- #: ../admin/view/wp-slimstat-reports.php:1811
3439
  msgid "c-mn"
3440
  msgstr "Mongolia"
3441
 
3442
  # Montenegro
3443
- #: ../admin/view/wp-slimstat-reports.php:1811
3444
  msgid "c-me"
3445
  msgstr "Montenegro"
3446
 
3447
  # Montserrat
3448
- #: ../admin/view/wp-slimstat-reports.php:1811
3449
  msgid "c-ms"
3450
  msgstr "Montserrat"
3451
 
3452
  # Morocco
3453
- #: ../admin/view/wp-slimstat-reports.php:1811
3454
  msgid "c-ma"
3455
  msgstr "Morocco"
3456
 
3457
  # Mozambique
3458
- #: ../admin/view/wp-slimstat-reports.php:1811
3459
  msgid "c-mz"
3460
  msgstr "Mozambique"
3461
 
3462
  # Myanmar
3463
- #: ../admin/view/wp-slimstat-reports.php:1811
3464
  msgid "c-mm"
3465
  msgstr "Myanmar"
3466
 
3467
  # Namibia
3468
- #: ../admin/view/wp-slimstat-reports.php:1811
3469
  msgid "c-na"
3470
  msgstr "Namibia"
3471
 
3472
  # Nepal
3473
- #: ../admin/view/wp-slimstat-reports.php:1811
3474
  msgid "c-np"
3475
  msgstr "Nepal"
3476
 
3477
  # Netherlands
3478
- #: ../admin/view/wp-slimstat-reports.php:1811
3479
  msgid "c-nl"
3480
  msgstr "Netherlands"
3481
 
3482
  # New Caledonia
3483
- #: ../admin/view/wp-slimstat-reports.php:1811
3484
  msgid "c-nc"
3485
  msgstr "New Caledonia"
3486
 
3487
  # New Zealand
3488
- #: ../admin/view/wp-slimstat-reports.php:1811
3489
  msgid "c-nz"
3490
  msgstr "New Zealand"
3491
 
3492
  # Nicaragua
3493
- #: ../admin/view/wp-slimstat-reports.php:1811
3494
  msgid "c-ni"
3495
  msgstr "Nicaragua"
3496
 
3497
  # Niger
3498
- #: ../admin/view/wp-slimstat-reports.php:1811
3499
  msgid "c-ne"
3500
  msgstr "Niger"
3501
 
3502
  # Nigeria
3503
- #: ../admin/view/wp-slimstat-reports.php:1811
3504
  msgid "c-ng"
3505
  msgstr "Nigeria"
3506
 
3507
  # Norway
3508
- #: ../admin/view/wp-slimstat-reports.php:1811
3509
  msgid "c-no"
3510
  msgstr "Norway"
3511
 
3512
  # Oman
3513
- #: ../admin/view/wp-slimstat-reports.php:1811
3514
  msgid "c-om"
3515
  msgstr "Oman"
3516
 
3517
  # Pakistan
3518
- #: ../admin/view/wp-slimstat-reports.php:1811
3519
  msgid "c-pk"
3520
  msgstr "Pakistan"
3521
 
3522
  # Palau
3523
- #: ../admin/view/wp-slimstat-reports.php:1811
3524
  msgid "c-pw"
3525
  msgstr "Palau"
3526
 
3527
  # Occupied Palestinian Territory
3528
- #: ../admin/view/wp-slimstat-reports.php:1811
3529
  msgid "c-ps"
3530
  msgstr "Occupied Palestinian Territory"
3531
 
3532
  # Panama
3533
- #: ../admin/view/wp-slimstat-reports.php:1811
3534
  msgid "c-pa"
3535
  msgstr "Panama"
3536
 
3537
  # Papua New Guinea
3538
- #: ../admin/view/wp-slimstat-reports.php:1811
3539
  msgid "c-pg"
3540
  msgstr "Papua New Guinea"
3541
 
3542
  # Paraguay
3543
- #: ../admin/view/wp-slimstat-reports.php:1811
3544
  msgid "c-py"
3545
  msgstr "Paraguay"
3546
 
3547
  # Peru
3548
- #: ../admin/view/wp-slimstat-reports.php:1811
3549
  msgid "c-pe"
3550
  msgstr "Peru"
3551
 
3552
  # Philippines
3553
- #: ../admin/view/wp-slimstat-reports.php:1811
3554
  msgid "c-ph"
3555
  msgstr "Philippines"
3556
 
3557
  # Poland
3558
- #: ../admin/view/wp-slimstat-reports.php:1811
3559
  msgid "c-pl"
3560
  msgstr "Poland"
3561
 
3562
  # Portugal
3563
- #: ../admin/view/wp-slimstat-reports.php:1811
3564
  msgid "c-pt"
3565
  msgstr "Portugal"
3566
 
3567
  # Puerto Rico
3568
- #: ../admin/view/wp-slimstat-reports.php:1811
3569
  msgid "c-pr"
3570
  msgstr "Puerto Rico"
3571
 
3572
  # Qatar
3573
- #: ../admin/view/wp-slimstat-reports.php:1811
3574
  msgid "c-qa"
3575
  msgstr "Qatar"
3576
 
3577
  # Réunion
3578
- #: ../admin/view/wp-slimstat-reports.php:1811
3579
  msgid "c-re"
3580
  msgstr "Réunion"
3581
 
3582
  # Romania
3583
- #: ../admin/view/wp-slimstat-reports.php:1811
3584
  msgid "c-ro"
3585
  msgstr "Romania"
3586
 
3587
  # Russian Federation
3588
- #: ../admin/view/wp-slimstat-reports.php:1811
3589
  msgid "c-ru"
3590
  msgstr "Russian Federation"
3591
 
3592
  # Rwanda
3593
- #: ../admin/view/wp-slimstat-reports.php:1811
3594
  msgid "c-rw"
3595
  msgstr "Rwanda"
3596
 
3597
  # Saint Kitts and Nevis
3598
- #: ../admin/view/wp-slimstat-reports.php:1811
3599
  msgid "c-kn"
3600
  msgstr "Saint Kitts and Nevis"
3601
 
3602
  # Saint Lucia
3603
- #: ../admin/view/wp-slimstat-reports.php:1811
3604
  msgid "c-lc"
3605
  msgstr "Saint Lucia"
3606
 
3607
  # Saint Martin
3608
- #: ../admin/view/wp-slimstat-reports.php:1811
3609
  msgid "c-mf"
3610
  msgstr "Saint Martin"
3611
 
3612
  # Saint Vincent and the Grenadines
3613
- #: ../admin/view/wp-slimstat-reports.php:1811
3614
  msgid "c-vc"
3615
  msgstr "Saint Vincent and the Grenadines"
3616
 
3617
  # Samoa
3618
- #: ../admin/view/wp-slimstat-reports.php:1811
3619
  msgid "c-ws"
3620
  msgstr "Samoa"
3621
 
3622
  # Sao Tome and Principe
3623
- #: ../admin/view/wp-slimstat-reports.php:1811
3624
  msgid "c-st"
3625
  msgstr "Sao Tome and Principe"
3626
 
3627
  # Saudi Arabia
3628
- #: ../admin/view/wp-slimstat-reports.php:1811
3629
  msgid "c-sa"
3630
  msgstr "Saudi Arabia"
3631
 
3632
  # Senegal
3633
- #: ../admin/view/wp-slimstat-reports.php:1811
3634
  msgid "c-sn"
3635
  msgstr "Senegal"
3636
 
3637
  # Serbia
3638
- #: ../admin/view/wp-slimstat-reports.php:1811
3639
  msgid "c-rs"
3640
  msgstr "Serbia"
3641
 
3642
  # Sierra Leone
3643
- #: ../admin/view/wp-slimstat-reports.php:1811
3644
  msgid "c-sl"
3645
  msgstr "Sierra Leone"
3646
 
3647
  # Singapore
3648
- #: ../admin/view/wp-slimstat-reports.php:1811
3649
  msgid "c-sg"
3650
  msgstr "Singapore"
3651
 
3652
  # Slovakia
3653
- #: ../admin/view/wp-slimstat-reports.php:1811
3654
  msgid "c-sk"
3655
  msgstr "Slovakia"
3656
 
3657
  # Slovenia
3658
- #: ../admin/view/wp-slimstat-reports.php:1811
3659
  msgid "c-si"
3660
  msgstr "Slovenia"
3661
 
3662
  # Solomon Islands
3663
- #: ../admin/view/wp-slimstat-reports.php:1811
3664
  msgid "c-sb"
3665
  msgstr "Solomon Islands"
3666
 
3667
  # Somalia
3668
- #: ../admin/view/wp-slimstat-reports.php:1811
3669
  msgid "c-so"
3670
  msgstr "Somalia"
3671
 
3672
  # South Africa
3673
- #: ../admin/view/wp-slimstat-reports.php:1811
3674
  msgid "c-za"
3675
  msgstr "South Africa"
3676
 
3677
  # South Georgia and the South Sandwich Islands
3678
- #: ../admin/view/wp-slimstat-reports.php:1811
3679
  msgid "c-gs"
3680
  msgstr "South Georgia and the South Sandwich Islands"
3681
 
3682
  # Spain
3683
- #: ../admin/view/wp-slimstat-reports.php:1811
3684
  msgid "c-es"
3685
  msgstr "Spain"
3686
 
3687
  # Sri Lanka
3688
- #: ../admin/view/wp-slimstat-reports.php:1811
3689
  msgid "c-lk"
3690
  msgstr "Sri Lanka"
3691
 
3692
  # Seychelles
3693
- #: ../admin/view/wp-slimstat-reports.php:1811
3694
  msgid "c-sc"
3695
  msgstr "Seychelles"
3696
 
3697
  # Sudan
3698
- #: ../admin/view/wp-slimstat-reports.php:1811
3699
  msgid "c-sd"
3700
  msgstr "Sudan"
3701
 
3702
- #: ../admin/view/wp-slimstat-reports.php:1811
3703
  msgid "c-ss"
3704
  msgstr "c-ss"
3705
 
3706
  # Suriname
3707
- #: ../admin/view/wp-slimstat-reports.php:1811
3708
  msgid "c-sr"
3709
  msgstr "Suriname"
3710
 
3711
  # Svalbard and Jan Mayen
3712
- #: ../admin/view/wp-slimstat-reports.php:1811
3713
  msgid "c-sj"
3714
  msgstr "Svalbard and Jan Mayen"
3715
 
3716
  # Swaziland
3717
- #: ../admin/view/wp-slimstat-reports.php:1811
3718
  msgid "c-sz"
3719
  msgstr "Swaziland"
3720
 
3721
  # Sweden
3722
- #: ../admin/view/wp-slimstat-reports.php:1811
3723
  msgid "c-se"
3724
  msgstr "Sweden"
3725
 
3726
  # Switzerland
3727
- #: ../admin/view/wp-slimstat-reports.php:1811
3728
  msgid "c-ch"
3729
  msgstr "Switzerland"
3730
 
3731
  # Syrian Arab Republic
3732
- #: ../admin/view/wp-slimstat-reports.php:1811
3733
  msgid "c-sy"
3734
  msgstr "Syrian Arab Republic"
3735
 
3736
  # Taiwan, Province of China
3737
- #: ../admin/view/wp-slimstat-reports.php:1811
3738
  msgid "c-tw"
3739
  msgstr "Taiwan, Province of China"
3740
 
3741
  # Tajikistan
3742
- #: ../admin/view/wp-slimstat-reports.php:1811
3743
  msgid "c-tj"
3744
  msgstr "Tajikistan"
3745
 
3746
  # United Republic of Tanzania
3747
- #: ../admin/view/wp-slimstat-reports.php:1811
3748
  msgid "c-tz"
3749
  msgstr "United Republic of Tanzania"
3750
 
3751
  # Thailand
3752
- #: ../admin/view/wp-slimstat-reports.php:1811
3753
  msgid "c-th"
3754
  msgstr "Thailand"
3755
 
3756
  # Timor-Leste
3757
- #: ../admin/view/wp-slimstat-reports.php:1811
3758
  msgid "c-tl"
3759
  msgstr "Timor-Leste"
3760
 
3761
  # Togo
3762
- #: ../admin/view/wp-slimstat-reports.php:1811
3763
  msgid "c-tg"
3764
  msgstr "Togo"
3765
 
3766
  # Tonga
3767
- #: ../admin/view/wp-slimstat-reports.php:1811
3768
  msgid "c-to"
3769
  msgstr "Tonga"
3770
 
3771
  # Trinidad and Tobago
3772
- #: ../admin/view/wp-slimstat-reports.php:1811
3773
  msgid "c-tt"
3774
  msgstr "Trinidad and Tobago"
3775
 
3776
  # Tunisia
3777
- #: ../admin/view/wp-slimstat-reports.php:1811
3778
  msgid "c-tn"
3779
  msgstr "Tunisia"
3780
 
3781
  # Turkey
3782
- #: ../admin/view/wp-slimstat-reports.php:1811
3783
  msgid "c-tr"
3784
  msgstr "Turkey"
3785
 
3786
  # Turkmenistan
3787
- #: ../admin/view/wp-slimstat-reports.php:1811
3788
  msgid "c-tm"
3789
  msgstr "Turkmenistan"
3790
 
3791
  # Turks and Caicos Islands
3792
- #: ../admin/view/wp-slimstat-reports.php:1811
3793
  msgid "c-tc"
3794
  msgstr "Turks and Caicos Islands"
3795
 
3796
  # Uganda
3797
- #: ../admin/view/wp-slimstat-reports.php:1811
3798
  msgid "c-ug"
3799
  msgstr "Uganda"
3800
 
3801
  # Ukraine
3802
- #: ../admin/view/wp-slimstat-reports.php:1811
3803
  msgid "c-ua"
3804
  msgstr "Ukraine"
3805
 
3806
  # United Arab Emirates
3807
- #: ../admin/view/wp-slimstat-reports.php:1811
3808
  msgid "c-ae"
3809
  msgstr "United Arab Emirates"
3810
 
3811
  # United Kingdom
3812
- #: ../admin/view/wp-slimstat-reports.php:1811
3813
  msgid "c-gb"
3814
  msgstr "United Kingdom"
3815
 
3816
  # United States
3817
- #: ../admin/view/wp-slimstat-reports.php:1811
3818
  msgid "c-us"
3819
  msgstr "United States"
3820
 
3821
  # Uruguay
3822
- #: ../admin/view/wp-slimstat-reports.php:1811
3823
  msgid "c-uy"
3824
  msgstr "Uruguay"
3825
 
3826
  # Uzbekistan
3827
- #: ../admin/view/wp-slimstat-reports.php:1811
3828
  msgid "c-uz"
3829
  msgstr "Uzbekistan"
3830
 
3831
  # Vanuatu
3832
- #: ../admin/view/wp-slimstat-reports.php:1811
3833
  msgid "c-vu"
3834
  msgstr "Vanuatu"
3835
 
3836
  # Venezuela
3837
- #: ../admin/view/wp-slimstat-reports.php:1811
3838
  msgid "c-ve"
3839
  msgstr "Venezuela"
3840
 
3841
  # Viet Nam
3842
- #: ../admin/view/wp-slimstat-reports.php:1811
3843
  msgid "c-vn"
3844
  msgstr "Viet Nam"
3845
 
3846
  # British Virgin Islands
3847
- #: ../admin/view/wp-slimstat-reports.php:1811
3848
  msgid "c-vg"
3849
  msgstr "British Virgin Islands"
3850
 
3851
  # U.S. Virgin Islands
3852
- #: ../admin/view/wp-slimstat-reports.php:1811
3853
  msgid "c-vi"
3854
  msgstr "U.S. Virgin Islands"
3855
 
3856
  # Western Sahara
3857
- #: ../admin/view/wp-slimstat-reports.php:1811
3858
  msgid "c-eh"
3859
  msgstr "Western Sahara"
3860
 
3861
  # Yemen
3862
- #: ../admin/view/wp-slimstat-reports.php:1811
3863
  msgid "c-ye"
3864
  msgstr "Yemen"
3865
 
3866
  # Zambia
3867
- #: ../admin/view/wp-slimstat-reports.php:1811
3868
  msgid "c-zm"
3869
  msgstr "Zambia"
3870
 
3871
  # Zimbabwe
3872
- #: ../admin/view/wp-slimstat-reports.php:1811
3873
  msgid "c-zw"
3874
  msgstr "Zimbabwe"
3875
 
3876
  # Guernsey
3877
- #: ../admin/view/wp-slimstat-reports.php:1811
3878
  msgid "c-gg"
3879
  msgstr "Guernsey"
3880
 
3881
  # Jersey
3882
- #: ../admin/view/wp-slimstat-reports.php:1811
3883
  msgid "c-je"
3884
  msgstr "Jersey"
3885
 
3886
  # Isle of Man
3887
- #: ../admin/view/wp-slimstat-reports.php:1811
3888
  msgid "c-im"
3889
  msgstr "Isle of Man"
3890
 
3891
  # Maldives
3892
- #: ../admin/view/wp-slimstat-reports.php:1811
3893
  msgid "c-mv"
3894
  msgstr "Maldives"
3895
 
3896
  # European Union
3897
- #: ../admin/view/wp-slimstat-reports.php:1812
3898
  msgid "c-eu"
3899
  msgstr "European Union"
3900
 
3901
- #: ../admin/view/wp-slimstat-reports.php:1894
3902
  msgid "src"
3903
  msgstr "Src"
3904
 
3905
- #: ../admin/view/wp-slimstat-reports.php:1897
3906
  msgid "serp"
3907
  msgstr "Serp"
3908
 
3909
- #: ../admin/view/wp-slimstat-reports.php:1904
3910
  msgid "Go to the referring page"
3911
  msgstr "Vaya a la página de referencia"
3912
 
3913
- #: ../admin/view/wp-slimstat-reports.php:1926
3914
  #, fuzzy
3915
  msgid "Remove filter for"
3916
  msgstr "Seleccionar filtro"
3917
 
3918
- #: ../admin/view/wp-slimstat-reports.php:1930
3919
  msgid "Save"
3920
  msgstr ""
3921
 
3922
- #: ../admin/view/wp-slimstat-reports.php:1933
3923
  msgid "Reset All"
3924
  msgstr "Resetear todos"
3925
 
3926
- #: ../admin/view/wp-slimstat-reports.php:1937
3927
  msgid "Current filters:"
3928
  msgstr "Filtros Actuales:"
3929
 
3930
- #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3931
- #: ../admin/wp-slimstat-admin.php:495
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3932
  #, fuzzy
3933
  msgid "SlimStat"
3934
  msgstr "Acerca de WP-SlimStat"
3935
 
3936
- #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3937
- #: ../wp-slimstat.php:1799
3938
  #, fuzzy
3939
- msgid "Customize"
3940
- msgstr "CSS personalizado"
3941
 
3942
- #: ../admin/wp-slimstat-admin.php:587
3943
  #, fuzzy
3944
  msgid "Pageviews in the last "
3945
  msgstr "Visitas a la página en los últimos 365 días"
3946
 
3947
- #: ../admin/wp-slimstat-admin.php:590
3948
  #, fuzzy
3949
  msgid "Unique IPs in the last "
3950
  msgstr "Únicamente interno"
3951
 
3952
- #: ../admin/wp-slimstat-admin.php:644
3953
  msgid "Show on screen"
3954
  msgstr "Mostrar en pantalla"
3955
 
3956
- #: ../admin/wp-slimstat-admin.php:725
3957
  msgid "Already saved"
3958
  msgstr ""
3959
 
3960
- #: ../admin/wp-slimstat-admin.php:733
3961
  msgid "Saved"
3962
  msgstr ""
3963
 
3964
- #: ../admin/wp-slimstat-admin.php:753
3965
  #, fuzzy
3966
  msgid "Delete this filter"
3967
  msgstr "Filtrar páginas visitadas dondé:"
3968
 
3969
- #: ../admin/wp-slimstat-admin.php:797
3970
  msgid "There was an error updating the following options:"
3971
  msgstr "Hubo un error al actualizar las siguientes opciones:"
3972
 
3973
- #: ../admin/wp-slimstat-admin.php:800
3974
  #, fuzzy
3975
  msgid "Your changes have been saved."
3976
  msgstr "Sus ajustes se han actualizado correctamente."
3977
 
3978
- #: ../admin/wp-slimstat-admin.php:823
3979
  msgid "Save Changes"
3980
  msgstr "Guardar los cambios"
3981
 
3982
- #: ../admin/wp-slimstat-admin.php:839
3983
  msgid "Definitions"
3984
  msgstr "Definiciones"
3985
 
3986
- #: ../admin/wp-slimstat-admin.php:842
3987
  #, fuzzy
3988
  msgid "Pageview"
3989
  msgstr "Paginas visitadas"
3990
 
3991
- #: ../admin/wp-slimstat-admin.php:842
3992
  #, fuzzy
3993
  msgid ""
3994
  "A request to load a single HTML file (\"page\"). This should be contrasted "
@@ -4000,12 +3966,12 @@ msgstr ""
4000
  "archivo desde un servidor web. WP SLIMStat registra una visita de página "
4001
  "cada vez que el código de seguimiento se ejecuta"
4002
 
4003
- #: ../admin/wp-slimstat-admin.php:843
4004
  #, fuzzy
4005
  msgid "(Human) Visit"
4006
  msgstr "Visitas humanas"
4007
 
4008
- #: ../admin/wp-slimstat-admin.php:843
4009
  msgid ""
4010
  "A period of interaction between a visitor's browser and your website, ending "
4011
  "when the browser is closed or when the user has been inactive on that site "
@@ -4015,7 +3981,7 @@ msgstr ""
4015
  "termina cuando se cierra el navegador o cuando el usuario ha estado inactivo "
4016
  "en ese sitio durante 30 minutos"
4017
 
4018
- #: ../admin/wp-slimstat-admin.php:844
4019
  msgid ""
4020
  "Any user who has left a comment on your blog, and is thus identified by "
4021
  "Wordpress as a returning visitor"
@@ -4023,12 +3989,12 @@ msgstr ""
4023
  "Todo usuario que haya dejado un comentario en su blog, por lo que es "
4024
  "identificado por Wordpress como un visitante que regresó"
4025
 
4026
- #: ../admin/wp-slimstat-admin.php:845
4027
  #, fuzzy
4028
  msgid "Unique IP"
4029
  msgstr "IPs Unicas"
4030
 
4031
- #: ../admin/wp-slimstat-admin.php:845
4032
  msgid ""
4033
  "Used to differentiate between multiple requests to download a file from one "
4034
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -4041,7 +4007,7 @@ msgstr ""
4041
  "dirección de Internet de donde vino una visita de página, es útil, pero no "
4042
  "es perfecta"
4043
 
4044
- #: ../admin/wp-slimstat-admin.php:846
4045
  msgid ""
4046
  "the originating IP address of a client connecting to a web server through an "
4047
  "HTTP proxy or load balancer"
@@ -4049,12 +4015,12 @@ msgstr ""
4049
  "dirección IP de origen de un cliente que se conecta a un servidor web a "
4050
  "través de un proxy HTTP o equilibrador de carga"
4051
 
4052
- #: ../admin/wp-slimstat-admin.php:847
4053
  #, fuzzy
4054
  msgid "Direct Traffic"
4055
  msgstr "Visita Directa"
4056
 
4057
- #: ../admin/wp-slimstat-admin.php:847
4058
  msgid ""
4059
  "All those people showing up to your Web site by typing in the URL of your "
4060
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -4064,12 +4030,12 @@ msgstr ""
4064
  "URL de su sitio web o que vienen de un favorito, algunas personas también "
4065
  "llaman a esto \"tráfico por defecto\" o \"tráfico ambiente\""
4066
 
4067
- #: ../admin/wp-slimstat-admin.php:848
4068
  #, fuzzy
4069
  msgid "Search Engine"
4070
  msgstr "Motores de Búsqueda"
4071
 
4072
- #: ../admin/wp-slimstat-admin.php:848
4073
  msgid ""
4074
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
4075
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -4077,17 +4043,17 @@ msgstr ""
4077
  "Google, Yahoo, MSN, Ask, otros; este cubo incluirá tanto su tráfico "
4078
  "orgánico, así como por pago (PPC / SEM), así que tenga cuidado de que"
4079
 
4080
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
4081
  msgid "Keywords used by your visitors to find your website on a search engine"
4082
  msgstr ""
4083
  "Las palabras clave utilizadas por los visitantes para encontrar su sitio web "
4084
  "en un buscador"
4085
 
4086
- #: ../admin/wp-slimstat-admin.php:850
4087
  msgid "SERP"
4088
  msgstr "SERP"
4089
 
4090
- #: ../admin/wp-slimstat-admin.php:850
4091
  msgid ""
4092
  "Short for search engine results page, the Web page that a search engine "
4093
  "returns with the results of its search. The value shown represents your rank "
@@ -4098,7 +4064,7 @@ msgstr ""
4098
  "que se muestra representa su rango (o posición) dentro de esa lista de los "
4099
  "resultados"
4100
 
4101
- #: ../admin/wp-slimstat-admin.php:851
4102
  msgid ""
4103
  "Any program used for accessing a website; this includes browsers, robots, "
4104
  "spiders and any other program that was used to retrieve information from the "
@@ -4108,7 +4074,7 @@ msgstr ""
4108
  "navegadores, robots, arañas y cualquier otro programa que se utiliza para "
4109
  "recuperar información del sitio"
4110
 
4111
- #: ../admin/wp-slimstat-admin.php:852
4112
  msgid ""
4113
  "A link from one domain to another is said to be outbound from its source "
4114
  "anchor and inbound to its target. This report lists all the links to other "
@@ -4118,27 +4084,27 @@ msgstr ""
4118
  "de anclaje y de entrada a su objetivo. Este informe muestra todos los "
4119
  "enlaces a otros sitios web, seguidos por sus visitantes."
4120
 
4121
- #: ../admin/wp-slimstat-admin.php:859
4122
  msgid "Basic Filters"
4123
  msgstr "Filtros básicos"
4124
 
4125
- #: ../admin/wp-slimstat-admin.php:862
4126
  msgid "User agent (Firefox, Chrome, ...)"
4127
  msgstr "Agente usuario(Firefox, Chrome, ...)"
4128
 
4129
- #: ../admin/wp-slimstat-admin.php:863
4130
  msgid "2-letter code (us, ru, de, it, ...)"
4131
  msgstr "código de 2 letras (eu, ru, de, it, ...)"
4132
 
4133
- #: ../admin/wp-slimstat-admin.php:864
4134
  msgid "IP"
4135
  msgstr "IP"
4136
 
4137
- #: ../admin/wp-slimstat-admin.php:864
4138
  msgid "Visitor's public IP address"
4139
  msgstr "Dirección IP pública del visitante"
4140
 
4141
- #: ../admin/wp-slimstat-admin.php:866
4142
  msgid ""
4143
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4144
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -4148,7 +4114,7 @@ msgstr ""
4148
  "en-us/library/ee825488(v=cs.20).aspx\">págna de cultura del lenguaje</a> "
4149
  "(primera columna) para más información"
4150
 
4151
- #: ../admin/wp-slimstat-admin.php:867
4152
  msgid ""
4153
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4154
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -4158,15 +4124,20 @@ msgstr ""
4158
  "target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
4159
  "\">esta página del manual</a> para obtener más información"
4160
 
4161
- #: ../admin/wp-slimstat-admin.php:868
4162
  msgid "URL accessed on your site"
4163
  msgstr "URL visitada en su sitio"
4164
 
4165
- #: ../admin/wp-slimstat-admin.php:869
4166
  msgid "Complete address of the referrer page"
4167
  msgstr "Dirección completa de la página que refiere"
4168
 
4169
- #: ../admin/wp-slimstat-admin.php:870
 
 
 
 
 
4170
  msgid ""
4171
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4172
  "comment"
@@ -4174,15 +4145,15 @@ msgstr ""
4174
  "Nombres de visitantes según la cookie establecida por Wordpress después de "
4175
  "dejar un comentario"
4176
 
4177
- #: ../admin/wp-slimstat-admin.php:878
4178
  msgid "Advanced Filters"
4179
  msgstr "Filtros avanzados"
4180
 
4181
- #: ../admin/wp-slimstat-admin.php:881
4182
  msgid "user agent version (9.0, 11, ...)"
4183
  msgstr "versión del agente de usuario (9,0, 11, ...)"
4184
 
4185
- #: ../admin/wp-slimstat-admin.php:882
4186
  msgid ""
4187
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4188
  "all others"
@@ -4190,12 +4161,12 @@ msgstr ""
4190
  "1 = oruga del motor de búsqueda, 2 = dispositivo móvil, 3 = lector de "
4191
  "sindicación, 0 =a todos los demás"
4192
 
4193
- #: ../admin/wp-slimstat-admin.php:883
4194
  #, fuzzy
4195
  msgid "Pageview Attributes"
4196
  msgstr "Paginas visitadas"
4197
 
4198
- #: ../admin/wp-slimstat-admin.php:883
4199
  msgid ""
4200
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4201
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -4205,20 +4176,20 @@ msgstr ""
4205
  "través de <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4206
  "Link_prefetching_FAQ\">Preecaptura de Enlaces</a> o técnicas similares"
4207
 
4208
- #: ../admin/wp-slimstat-admin.php:884
4209
  msgid "author associated to that post/page when the resource was accessed"
4210
  msgstr "autor asociado a esa publicación/página cuando se accedió al recurso"
4211
 
4212
- #: ../admin/wp-slimstat-admin.php:885
4213
  msgid "ID of the category/term associated to the resource, when available"
4214
  msgstr ""
4215
  "ID de la categoría / término asociado al recurso, cuando esté disponible"
4216
 
4217
- #: ../admin/wp-slimstat-admin.php:886
4218
  msgid "visitor's originating IP address, if available"
4219
  msgstr "dirección IP de origen del visitante, si está disponible"
4220
 
4221
- #: ../admin/wp-slimstat-admin.php:887
4222
  msgid ""
4223
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4224
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -4232,15 +4203,15 @@ msgstr ""
4232
  "wordpress.org/Conditional_Tags\">Etiquetas condicionales</a> página del "
4233
  "manual para más información"
4234
 
4235
- #: ../admin/wp-slimstat-admin.php:888
4236
  msgid "Screen Resolution"
4237
  msgstr "Resolución de Pantalla"
4238
 
4239
- #: ../admin/wp-slimstat-admin.php:888
4240
  msgid "viewport width and height (1024x768, 800x600, ...)"
4241
  msgstr "ancho de vista y altura (1024x768, 800x600 , ...)"
4242
 
4243
- #: ../admin/wp-slimstat-admin.php:889
4244
  msgid ""
4245
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4246
  "visitors"
@@ -4248,11 +4219,11 @@ msgstr ""
4248
  "se utiliza generalmente en conjunción con <em> no está vacío </em>, "
4249
  "identifica los visitantes humanos"
4250
 
4251
- #: ../admin/wp-slimstat-admin.php:890
4252
  msgid "Date Filters"
4253
  msgstr "Filtros de fecha"
4254
 
4255
- #: ../admin/wp-slimstat-admin.php:890
4256
  msgid ""
4257
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4258
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -4263,11 +4234,11 @@ msgstr ""
4263
  "(es decir, día=1, mes=1, año=blank, intervalo=-1 establecerá un filtro de "
4264
  "año a la fecha)"
4265
 
4266
- #: ../admin/wp-slimstat-admin.php:891
4267
  msgid "SERP Position"
4268
  msgstr "Posición SERP"
4269
 
4270
- #: ../admin/wp-slimstat-admin.php:891
4271
  msgid ""
4272
  "set the filter to Referer contains cd=N&, where N is the position you are "
4273
  "looking for"
@@ -4275,15 +4246,15 @@ msgstr ""
4275
  "configurar el filtro para Referer contiene cd=N&, donde N es la posición que "
4276
  "usted está buscando"
4277
 
4278
- #: ../admin/wp-slimstat-admin.php:918
4279
  msgid "Yes"
4280
  msgstr "Si"
4281
 
4282
- #: ../admin/wp-slimstat-admin.php:919
4283
  msgid "No"
4284
  msgstr "No"
4285
 
4286
- #: ../admin/wp-slimstat-admin.php:920
4287
  msgid "Site Specific"
4288
  msgstr ""
4289
 
@@ -4312,1634 +4283,1741 @@ msgid "blackberry os"
4312
  msgstr "so blackberry"
4313
 
4314
  #: ../languages/dynamic_strings.php:11
 
 
 
 
 
4315
  msgid "chromeos"
4316
  msgstr ""
4317
 
4318
- #: ../languages/dynamic_strings.php:12
 
 
 
 
4319
  msgid "cygwin"
4320
  msgstr "Cygwin"
4321
 
4322
- #: ../languages/dynamic_strings.php:13
4323
  msgid "debian"
4324
  msgstr "Debian"
4325
 
4326
- #: ../languages/dynamic_strings.php:14
4327
  msgid "digital unix"
4328
  msgstr "Digital Unix"
4329
 
4330
- #: ../languages/dynamic_strings.php:15
 
 
 
 
4331
  msgid "firefoxos"
4332
  msgstr ""
4333
 
4334
- #: ../languages/dynamic_strings.php:16
4335
  msgid "freebsd"
4336
  msgstr "FreeBSD"
4337
 
4338
- #: ../languages/dynamic_strings.php:17
 
 
 
 
4339
  msgid "hp-ux"
4340
  msgstr "HP-UX"
4341
 
4342
- #: ../languages/dynamic_strings.php:18
4343
  #, fuzzy
4344
  msgid "ios"
4345
  msgstr "Apple iOS"
4346
 
4347
- #: ../languages/dynamic_strings.php:19
 
 
 
 
 
4348
  msgid "iphone osx"
4349
  msgstr "iPhone OS X"
4350
 
4351
- #: ../languages/dynamic_strings.php:20
4352
  msgid "irix"
4353
  msgstr "IRIX"
4354
 
4355
- #: ../languages/dynamic_strings.php:21
4356
  msgid "java"
4357
  msgstr "Java"
4358
 
4359
- #: ../languages/dynamic_strings.php:22
 
 
 
 
 
 
 
 
4360
  msgid "linux"
4361
  msgstr "Linux"
4362
 
4363
- #: ../languages/dynamic_strings.php:23
4364
  msgid "mac"
4365
  msgstr "Mac"
4366
 
4367
- #: ../languages/dynamic_strings.php:24
4368
  msgid "mac68k"
4369
  msgstr "Mac 68k"
4370
 
4371
- #: ../languages/dynamic_strings.php:25
4372
  msgid "macosx"
4373
  msgstr "Mac OS X"
4374
 
4375
- #: ../languages/dynamic_strings.php:26
4376
  msgid "macppc"
4377
  msgstr "Mac PowerPC"
4378
 
4379
- #: ../languages/dynamic_strings.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4380
  msgid "netbsd"
4381
  msgstr "NetBSD"
4382
 
4383
- #: ../languages/dynamic_strings.php:28
 
 
 
 
4384
  msgid "openbsd"
4385
  msgstr "OpenBSD"
4386
 
4387
- #: ../languages/dynamic_strings.php:29
4388
  msgid "openvms"
4389
  msgstr "OpenVMS"
4390
 
4391
- #: ../languages/dynamic_strings.php:30
4392
  msgid "os/2"
4393
  msgstr "IBM OS/2"
4394
 
4395
- #: ../languages/dynamic_strings.php:31
4396
  msgid "palm"
4397
  msgstr "Palm"
4398
 
4399
- #: ../languages/dynamic_strings.php:32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4400
  msgid "powertv"
4401
  msgstr "PowerTV"
4402
 
4403
- #: ../languages/dynamic_strings.php:33
 
 
 
 
4404
  msgid "rim os"
4405
  msgstr ""
4406
 
4407
- #: ../languages/dynamic_strings.php:34
4408
  msgid "risc os"
4409
  msgstr "Risc OS"
4410
 
4411
- #: ../languages/dynamic_strings.php:35
 
 
 
 
4412
  msgid "solaris"
4413
  msgstr "Solaris"
4414
 
4415
- #: ../languages/dynamic_strings.php:36
4416
  msgid "sunos"
4417
  msgstr "Sun OS"
4418
 
4419
- #: ../languages/dynamic_strings.php:37
 
 
 
 
4420
  msgid "symbianos"
4421
  msgstr "Symbian OS"
4422
 
4423
- #: ../languages/dynamic_strings.php:38
4424
  msgid "ubuntu"
4425
  msgstr ""
4426
 
4427
- #: ../languages/dynamic_strings.php:39
4428
  msgid "unix"
4429
  msgstr "Unix"
4430
 
4431
- #: ../languages/dynamic_strings.php:40
4432
  msgid "unknown"
4433
  msgstr "Desconocido"
4434
 
4435
- #: ../languages/dynamic_strings.php:41
 
 
 
 
 
4436
  msgid "wap"
4437
  msgstr "WAP"
4438
 
4439
- #: ../languages/dynamic_strings.php:42
4440
  msgid "webos"
4441
  msgstr "WebOS"
4442
 
4443
- #: ../languages/dynamic_strings.php:43
4444
  #, fuzzy
4445
  msgid "win10"
4446
  msgstr "Windows 16-bit"
4447
 
4448
- #: ../languages/dynamic_strings.php:44
4449
  msgid "win16"
4450
  msgstr "Windows 16-bit"
4451
 
4452
- #: ../languages/dynamic_strings.php:45
4453
  msgid "win2000"
4454
  msgstr "Windows 2000"
4455
 
4456
- #: ../languages/dynamic_strings.php:46
4457
  msgid "win2003"
4458
  msgstr "Windows 2003"
4459
 
4460
- #: ../languages/dynamic_strings.php:47
4461
  msgid "win31"
4462
  msgstr "Windows 3.1"
4463
 
4464
- #: ../languages/dynamic_strings.php:48
4465
  msgid "win32"
4466
  msgstr "Windows 32-bit"
4467
 
4468
- #: ../languages/dynamic_strings.php:49 ../languages/dynamic_strings.php:50
4469
  msgid "win7"
4470
  msgstr "Windows 7"
4471
 
4472
- #: ../languages/dynamic_strings.php:51
4473
  msgid "win8"
4474
  msgstr "win8"
4475
 
4476
- #: ../languages/dynamic_strings.php:52
4477
  msgid "win8.1"
4478
  msgstr "win8.1"
4479
 
4480
- #: ../languages/dynamic_strings.php:53
4481
  msgid "win95"
4482
  msgstr "Windows 95"
4483
 
4484
- #: ../languages/dynamic_strings.php:54
4485
  msgid "win98"
4486
  msgstr "Windows 98"
4487
 
4488
- #: ../languages/dynamic_strings.php:55
4489
  msgid "wince"
4490
  msgstr "Windows CE"
4491
 
4492
- #: ../languages/dynamic_strings.php:56
4493
- #, fuzzy
4494
- msgid "windows phone"
4495
- msgstr "iPhone OS X"
4496
-
4497
- #: ../languages/dynamic_strings.php:57
4498
  msgid "winme"
4499
  msgstr "Windows ME"
4500
 
4501
- #: ../languages/dynamic_strings.php:58
4502
  msgid "winnt"
4503
  msgstr "Windows NT"
4504
 
4505
- #: ../languages/dynamic_strings.php:59
4506
  #, fuzzy
4507
  msgid "winphone7"
4508
  msgstr "iPhone OS X"
4509
 
4510
- #: ../languages/dynamic_strings.php:60
4511
  #, fuzzy
4512
  msgid "winphone7.5"
4513
  msgstr "iPhone OS X"
4514
 
4515
- #: ../languages/dynamic_strings.php:61
4516
  #, fuzzy
4517
  msgid "winphone8"
4518
  msgstr "iPhone OS X"
4519
 
4520
- #: ../languages/dynamic_strings.php:62
4521
  #, fuzzy
4522
  msgid "winphone8.1"
4523
  msgstr "iPhone OS X"
4524
 
4525
- #: ../languages/dynamic_strings.php:63
 
 
 
 
4526
  msgid "winvista"
4527
  msgstr "Windows Vista"
4528
 
4529
- #: ../languages/dynamic_strings.php:64
4530
  msgid "winxp"
4531
  msgstr "Windows XP"
4532
 
4533
- #: ../languages/dynamic_strings.php:65
4534
  msgid "wyderos"
4535
  msgstr "WyderOS"
4536
 
4537
- #: ../languages/dynamic_strings.php:68
 
 
 
 
4538
  #, fuzzy
4539
  msgid "acrobat"
4540
  msgstr "Acrobat"
4541
 
4542
- #: ../languages/dynamic_strings.php:69
4543
  msgid "director"
4544
  msgstr "director"
4545
 
4546
- #: ../languages/dynamic_strings.php:70
4547
  #, fuzzy
4548
  msgid "flash"
4549
  msgstr "Flash"
4550
 
4551
- #: ../languages/dynamic_strings.php:71
4552
  #, fuzzy
4553
  msgid "mediaplayer"
4554
  msgstr "Media Player"
4555
 
4556
- #: ../languages/dynamic_strings.php:72
4557
  msgid "quicktime"
4558
  msgstr "quicktime"
4559
 
4560
- #: ../languages/dynamic_strings.php:73
4561
  msgid "real"
4562
  msgstr "real"
4563
 
4564
- #: ../languages/dynamic_strings.php:74
4565
  #, fuzzy
4566
  msgid "silverlight"
4567
  msgstr "Silverlight"
4568
 
4569
- #: ../languages/dynamic_strings.php:77
4570
  msgid "p-and"
4571
  msgstr "Android"
4572
 
4573
- #: ../languages/dynamic_strings.php:78
4574
  msgid "p-bla"
4575
  msgstr "BlackBerry"
4576
 
4577
- #: ../languages/dynamic_strings.php:79
4578
  msgid "p-chr"
4579
  msgstr "Chrome OS"
4580
 
4581
- #: ../languages/dynamic_strings.php:80
4582
  msgid "p-fir"
4583
  msgstr ""
4584
 
4585
- #: ../languages/dynamic_strings.php:81
4586
  msgid "p-fre"
4587
  msgstr "Linux FreeBSD"
4588
 
4589
- #: ../languages/dynamic_strings.php:82
4590
  msgid "p-ios"
4591
  msgstr "Apple iOS"
4592
 
4593
- #: ../languages/dynamic_strings.php:83
4594
  msgid "p-jav"
4595
  msgstr "Java-based OS"
4596
 
4597
- #: ../languages/dynamic_strings.php:84
4598
  msgid "p-lin"
4599
  msgstr "Linux"
4600
 
4601
- #: ../languages/dynamic_strings.php:85
4602
  msgid "p-mac"
4603
  msgstr "Apple"
4604
 
4605
- #: ../languages/dynamic_strings.php:86
4606
  msgid "p-rim"
4607
  msgstr ""
4608
 
4609
- #: ../languages/dynamic_strings.php:87
4610
  msgid "p-sym"
4611
  msgstr "Symbian OS"
4612
 
4613
- #: ../languages/dynamic_strings.php:88
4614
  msgid "p-ubu"
4615
  msgstr ""
4616
 
4617
- #: ../languages/dynamic_strings.php:89
4618
  msgid "p-unk"
4619
  msgstr "Unknown"
4620
 
4621
- #: ../languages/dynamic_strings.php:90
4622
  msgid "p-win"
4623
  msgstr "Microsoft"
4624
 
4625
  # Afrikaans
4626
- #: ../languages/dynamic_strings.php:93
4627
  msgid "l-af"
4628
  msgstr "Afrikaans"
4629
 
4630
  # Afrikaans
4631
- #: ../languages/dynamic_strings.php:94
4632
  #, fuzzy
4633
  msgid "l-af-za"
4634
  msgstr "Afrikaans"
4635
 
4636
  # Arabic
4637
- #: ../languages/dynamic_strings.php:95
4638
  msgid "l-ar"
4639
  msgstr "Arabic"
4640
 
4641
  # Arabic (United Arab Emirates)
4642
- #: ../languages/dynamic_strings.php:96
4643
  msgid "l-ar-ae"
4644
  msgstr "Arabic (United Arab Emirates)"
4645
 
4646
  # Arabic (Bahrain)
4647
- #: ../languages/dynamic_strings.php:97
4648
  msgid "l-ar-bh"
4649
  msgstr "Arabic (Bahrain)"
4650
 
4651
  # Arabic (Algeria)
4652
- #: ../languages/dynamic_strings.php:98
4653
  msgid "l-ar-dz"
4654
  msgstr "Arabic (Algeria)"
4655
 
4656
  # Arabic (Egypt)
4657
- #: ../languages/dynamic_strings.php:99
4658
  msgid "l-ar-eg"
4659
  msgstr "Arabic (Egypt)"
4660
 
4661
  # Arabic (Iraq)
4662
- #: ../languages/dynamic_strings.php:100
4663
  msgid "l-ar-iq"
4664
  msgstr "Arabic (Iraq)"
4665
 
4666
  # Arabic (Jordan)
4667
- #: ../languages/dynamic_strings.php:101
4668
  msgid "l-ar-jo"
4669
  msgstr "Arabic (Jordan)"
4670
 
4671
  # Arabic (Kuwait)
4672
- #: ../languages/dynamic_strings.php:102
4673
  msgid "l-ar-kw"
4674
  msgstr "Arabic (Kuwait)"
4675
 
4676
  # Arabic (Lebanon)
4677
- #: ../languages/dynamic_strings.php:103
4678
  msgid "l-ar-lb"
4679
  msgstr "Arabic (Lebanon)"
4680
 
4681
  # Arabic (Libya)
4682
- #: ../languages/dynamic_strings.php:104
4683
  msgid "l-ar-ly"
4684
  msgstr "Arabic (Libya)"
4685
 
4686
  # Arabic (Morocco)
4687
- #: ../languages/dynamic_strings.php:105
4688
  msgid "l-ar-ma"
4689
  msgstr "Arabic (Morocco)"
4690
 
4691
  # Arabic (Oman)
4692
- #: ../languages/dynamic_strings.php:106
4693
  msgid "l-ar-om"
4694
  msgstr "Arabic (Oman)"
4695
 
4696
  # Arabic (Qatar)
4697
- #: ../languages/dynamic_strings.php:107
4698
  msgid "l-ar-qa"
4699
  msgstr "Arabic (Qatar)"
4700
 
4701
  # Arabic (Saudi Arabia)
4702
- #: ../languages/dynamic_strings.php:108
4703
  msgid "l-ar-sa"
4704
  msgstr "Arabic (Saudi Arabia)"
4705
 
4706
  # Arabic (Syria)
4707
- #: ../languages/dynamic_strings.php:109
4708
  msgid "l-ar-sy"
4709
  msgstr "Arabic (Syria)"
4710
 
4711
  # Arabic (Tunisia)
4712
- #: ../languages/dynamic_strings.php:110
4713
  msgid "l-ar-tn"
4714
  msgstr "Arabic (Tunisia)"
4715
 
4716
  # Arabic (Yemen)
4717
- #: ../languages/dynamic_strings.php:111
4718
  msgid "l-ar-ye"
4719
  msgstr "Arabic (Yemen)"
4720
 
4721
  # Azerbaijani
4722
- #: ../languages/dynamic_strings.php:112
4723
  msgid "l-az"
4724
  msgstr "Azerbaijani"
4725
 
4726
  # Azerbaijani
4727
- #: ../languages/dynamic_strings.php:113
4728
  #, fuzzy
4729
  msgid "l-az-az"
4730
  msgstr "Azerbaijani"
4731
 
4732
  # Belarusian
4733
- #: ../languages/dynamic_strings.php:114
4734
  msgid "l-be"
4735
  msgstr "Belarusian"
4736
 
4737
  # Belarusian
4738
- #: ../languages/dynamic_strings.php:115
4739
  #, fuzzy
4740
  msgid "l-be-by"
4741
  msgstr "Belarusian"
4742
 
4743
  # Bulgarian
4744
- #: ../languages/dynamic_strings.php:116
4745
  msgid "l-bg"
4746
  msgstr "Bulgarian"
4747
 
4748
  # Bulgarian
4749
- #: ../languages/dynamic_strings.php:117
4750
  #, fuzzy
4751
  msgid "l-bg-bg"
4752
  msgstr "Bulgarian"
4753
 
4754
  # Bosnian
4755
- #: ../languages/dynamic_strings.php:118
4756
  #, fuzzy
4757
  msgid "l-bs-ba"
4758
  msgstr "Bosnian"
4759
 
4760
  # Catalan; Valencian
4761
- #: ../languages/dynamic_strings.php:119
4762
  msgid "l-ca"
4763
  msgstr "Catalan; Valencian"
4764
 
4765
  # Catalan; Valencian
4766
- #: ../languages/dynamic_strings.php:120
4767
  #, fuzzy
4768
  msgid "l-ca-es"
4769
  msgstr "Catalan; Valencian"
4770
 
4771
  # Czech
4772
- #: ../languages/dynamic_strings.php:121
4773
  msgid "l-cs"
4774
  msgstr "Czech"
4775
 
4776
  # Czech
4777
- #: ../languages/dynamic_strings.php:122
4778
  #, fuzzy
4779
  msgid "l-cs-cz"
4780
  msgstr "Czech"
4781
 
4782
  # Welsh
4783
- #: ../languages/dynamic_strings.php:123
4784
  msgid "l-cy"
4785
  msgstr "Welsh"
4786
 
4787
  # Welsh
4788
- #: ../languages/dynamic_strings.php:124
4789
  #, fuzzy
4790
  msgid "l-cy-gb"
4791
  msgstr "Welsh"
4792
 
4793
  # Danish
4794
- #: ../languages/dynamic_strings.php:125
4795
  msgid "l-da"
4796
  msgstr "Danish"
4797
 
4798
  # Danish
4799
- #: ../languages/dynamic_strings.php:126
4800
  #, fuzzy
4801
  msgid "l-da-dk"
4802
  msgstr "Danish"
4803
 
4804
  # German
4805
- #: ../languages/dynamic_strings.php:127
4806
  msgid "l-de"
4807
  msgstr "German"
4808
 
4809
  # German (Austria)
4810
- #: ../languages/dynamic_strings.php:128
4811
  msgid "l-de-at"
4812
  msgstr "German (Austria)"
4813
 
4814
  # German (Switzerland)
4815
- #: ../languages/dynamic_strings.php:129
4816
  msgid "l-de-ch"
4817
  msgstr "German (Switzerland)"
4818
 
4819
  # German (Germany)
4820
- #: ../languages/dynamic_strings.php:130
4821
  msgid "l-de-de"
4822
  msgstr "German (Germany)"
4823
 
4824
  # German (Liechtenstein)
4825
- #: ../languages/dynamic_strings.php:131
4826
  msgid "l-de-li"
4827
  msgstr "German (Liechtenstein)"
4828
 
4829
  # German (Luxembourg)
4830
- #: ../languages/dynamic_strings.php:132
4831
  msgid "l-de-lu"
4832
  msgstr "German (Luxembourg)"
4833
 
4834
  # Dhivehi; Divehi; Maldivian
4835
- #: ../languages/dynamic_strings.php:133
4836
  msgid "l-dv"
4837
  msgstr "Dhivehi; Divehi; Maldivian"
4838
 
4839
  # Dhivehi; Divehi; Maldivian
4840
- #: ../languages/dynamic_strings.php:134
4841
  #, fuzzy
4842
  msgid "l-dv-mv"
4843
  msgstr "Dhivehi; Divehi; Maldivian"
4844
 
4845
  # Modern Greek (1453-)
4846
- #: ../languages/dynamic_strings.php:135
4847
  msgid "l-el"
4848
  msgstr "Modern Greek (1453-)"
4849
 
4850
  # Greek (Greece)
4851
- #: ../languages/dynamic_strings.php:136
4852
  msgid "l-el-gr"
4853
  msgstr "Greek (Greece)"
4854
 
4855
  # English
4856
- #: ../languages/dynamic_strings.php:137
4857
  msgid "l-en"
4858
  msgstr "English"
4859
 
4860
  # English (Australia)
4861
- #: ../languages/dynamic_strings.php:138
4862
  msgid "l-en-au"
4863
  msgstr "English (Australia)"
4864
 
4865
  # English (Belize)
4866
- #: ../languages/dynamic_strings.php:139
4867
  msgid "l-en-bz"
4868
  msgstr "English (Belize)"
4869
 
4870
  # English (Canada)
4871
- #: ../languages/dynamic_strings.php:140
4872
  msgid "l-en-ca"
4873
  msgstr "English (Canada)"
4874
 
4875
  # English (Canada)
4876
- #: ../languages/dynamic_strings.php:141
4877
  #, fuzzy
4878
  msgid "l-en-cb"
4879
  msgstr "English (Canada)"
4880
 
4881
  # English (United Kingdom)
4882
- #: ../languages/dynamic_strings.php:142
4883
  msgid "l-en-gb"
4884
  msgstr "English (United Kingdom)"
4885
 
4886
  # English (Ireland)
4887
- #: ../languages/dynamic_strings.php:143
4888
  msgid "l-en-ie"
4889
  msgstr "English (Ireland)"
4890
 
4891
  # English (Jamaica)
4892
- #: ../languages/dynamic_strings.php:144
4893
  msgid "l-en-jm"
4894
  msgstr "English (Jamaica)"
4895
 
4896
  # English (New Zealand)
4897
- #: ../languages/dynamic_strings.php:145
4898
  msgid "l-en-nz"
4899
  msgstr "English (New Zealand)"
4900
 
4901
  # English
4902
- #: ../languages/dynamic_strings.php:146
4903
  #, fuzzy
4904
  msgid "l-en-ph"
4905
  msgstr "English"
4906
 
4907
  # English (Trinidad)
4908
- #: ../languages/dynamic_strings.php:147
4909
  msgid "l-en-tt"
4910
  msgstr "English (Trinidad)"
4911
 
4912
  # English (United States)
4913
- #: ../languages/dynamic_strings.php:148
4914
  msgid "l-en-us"
4915
  msgstr "English (United States)"
4916
 
4917
  # English (South Africa)
4918
- #: ../languages/dynamic_strings.php:149
4919
  msgid "l-en-za"
4920
  msgstr "English (South Africa)"
4921
 
4922
  # English (South Africa)
4923
- #: ../languages/dynamic_strings.php:150
4924
  #, fuzzy
4925
  msgid "l-en-zw"
4926
  msgstr "English (South Africa)"
4927
 
4928
  # Esperanto
4929
- #: ../languages/dynamic_strings.php:151
4930
  msgid "l-eo"
4931
  msgstr "Esperanto"
4932
 
4933
  # Spanish; Castilian
4934
- #: ../languages/dynamic_strings.php:152
4935
  msgid "l-es"
4936
  msgstr "Spanish; Castilian"
4937
 
4938
  # Spanish (Argentina)
4939
- #: ../languages/dynamic_strings.php:153
4940
  msgid "l-es-ar"
4941
  msgstr "Spanish (Argentina)"
4942
 
4943
  # Spanish (Bolivia)
4944
- #: ../languages/dynamic_strings.php:154
4945
  msgid "l-es-bo"
4946
  msgstr "Spanish (Bolivia)"
4947
 
4948
  # Spanish (Chile)
4949
- #: ../languages/dynamic_strings.php:155
4950
  msgid "l-es-cl"
4951
  msgstr "Spanish (Chile)"
4952
 
4953
  # Spanish (Colombia)
4954
- #: ../languages/dynamic_strings.php:156
4955
  msgid "l-es-co"
4956
  msgstr "Spanish (Colombia)"
4957
 
4958
  # Spanish (Costa Rica)
4959
- #: ../languages/dynamic_strings.php:157
4960
  msgid "l-es-cr"
4961
  msgstr "Spanish (Costa Rica)"
4962
 
4963
  # Spanish (Dominican Republic)
4964
- #: ../languages/dynamic_strings.php:158
4965
  msgid "l-es-do"
4966
  msgstr "Spanish (Dominican Republic)"
4967
 
4968
  # Spanish (Ecuador)
4969
- #: ../languages/dynamic_strings.php:159
4970
  msgid "l-es-ec"
4971
  msgstr "Spanish (Ecuador)"
4972
 
4973
  # Spanish (Spain)
4974
- #: ../languages/dynamic_strings.php:160
4975
  msgid "l-es-es"
4976
  msgstr "Spanish (Spain)"
4977
 
4978
  # Spanish (Guatemala)
4979
- #: ../languages/dynamic_strings.php:161
4980
  msgid "l-es-gt"
4981
  msgstr "Spanish (Guatemala)"
4982
 
4983
  # Spanish (Honduras)
4984
- #: ../languages/dynamic_strings.php:162
4985
  msgid "l-es-hn"
4986
  msgstr "Spanish (Honduras)"
4987
 
4988
  # Spanish (Mexico)
4989
- #: ../languages/dynamic_strings.php:163
4990
  msgid "l-es-mx"
4991
  msgstr "Spanish (Mexico)"
4992
 
4993
  # Spanish (Nicaragua)
4994
- #: ../languages/dynamic_strings.php:164
4995
  msgid "l-es-ni"
4996
  msgstr "Spanish (Nicaragua)"
4997
 
4998
  # Spanish (Panama)
4999
- #: ../languages/dynamic_strings.php:165
5000
  msgid "l-es-pa"
5001
  msgstr "Spanish (Panama)"
5002
 
5003
  # Spanish (Peru)
5004
- #: ../languages/dynamic_strings.php:166
5005
  msgid "l-es-pe"
5006
  msgstr "Spanish (Peru)"
5007
 
5008
  # Spanish (Puerto Rico)
5009
- #: ../languages/dynamic_strings.php:167
5010
  msgid "l-es-pr"
5011
  msgstr "Spanish (Puerto Rico)"
5012
 
5013
  # Spanish (Paraguay)
5014
- #: ../languages/dynamic_strings.php:168
5015
  msgid "l-es-py"
5016
  msgstr "Spanish (Paraguay)"
5017
 
5018
  # Spanish (El Salvador)
5019
- #: ../languages/dynamic_strings.php:169
5020
  msgid "l-es-sv"
5021
  msgstr "Spanish (El Salvador)"
5022
 
5023
  # Spanish (Uruguay)
5024
- #: ../languages/dynamic_strings.php:170
5025
  msgid "l-es-uy"
5026
  msgstr "Spanish (Uruguay)"
5027
 
5028
  # Spanish (Venezuela)
5029
- #: ../languages/dynamic_strings.php:171
5030
  msgid "l-es-ve"
5031
  msgstr "Spanish (Venezuela)"
5032
 
5033
  # Estonian
5034
- #: ../languages/dynamic_strings.php:172
5035
  msgid "l-et"
5036
  msgstr "Estonian"
5037
 
5038
  # Estonian
5039
- #: ../languages/dynamic_strings.php:173
5040
  #, fuzzy
5041
  msgid "l-et-ee"
5042
  msgstr "Estonian"
5043
 
5044
  # Basque
5045
- #: ../languages/dynamic_strings.php:174
5046
  msgid "l-eu"
5047
  msgstr "Basque"
5048
 
5049
  # Basque
5050
- #: ../languages/dynamic_strings.php:175
5051
  #, fuzzy
5052
  msgid "l-eu-es"
5053
  msgstr "Basque"
5054
 
5055
  # Persian
5056
- #: ../languages/dynamic_strings.php:176
5057
  msgid "l-fa"
5058
  msgstr "Persian"
5059
 
5060
  # Persian
5061
- #: ../languages/dynamic_strings.php:177
5062
  #, fuzzy
5063
  msgid "l-fa-ir"
5064
  msgstr "Persian"
5065
 
5066
  # Finnish
5067
- #: ../languages/dynamic_strings.php:178
5068
  msgid "l-fi"
5069
  msgstr "Finnish"
5070
 
5071
  # Finnish
5072
- #: ../languages/dynamic_strings.php:179
5073
  #, fuzzy
5074
  msgid "l-fi-fi"
5075
  msgstr "Finnish"
5076
 
5077
  # Faroese
5078
- #: ../languages/dynamic_strings.php:180
5079
  msgid "l-fo"
5080
  msgstr "Faroese"
5081
 
5082
  # Faroese
5083
- #: ../languages/dynamic_strings.php:181
5084
  #, fuzzy
5085
  msgid "l-fo-fo"
5086
  msgstr "Faroese"
5087
 
5088
  # French
5089
- #: ../languages/dynamic_strings.php:182
5090
  msgid "l-fr"
5091
  msgstr "French"
5092
 
5093
  # French (Belgium)
5094
- #: ../languages/dynamic_strings.php:183
5095
  msgid "l-fr-be"
5096
  msgstr "French (Belgium)"
5097
 
5098
  # French (Canada)
5099
- #: ../languages/dynamic_strings.php:184
5100
  msgid "l-fr-ca"
5101
  msgstr "French (Canada)"
5102
 
5103
  # French (Switzerland)
5104
- #: ../languages/dynamic_strings.php:185
5105
  msgid "l-fr-ch"
5106
  msgstr "French (Switzerland)"
5107
 
5108
  # French (France)
5109
- #: ../languages/dynamic_strings.php:186
5110
  msgid "l-fr-fr"
5111
  msgstr "French (France)"
5112
 
5113
  # French (Luxembourg)
5114
- #: ../languages/dynamic_strings.php:187
5115
  msgid "l-fr-lu"
5116
  msgstr "French (Luxembourg)"
5117
 
5118
  # French (Switzerland)
5119
- #: ../languages/dynamic_strings.php:188
5120
  #, fuzzy
5121
  msgid "l-fr-mc"
5122
  msgstr "French (Switzerland)"
5123
 
5124
  # Galician
5125
- #: ../languages/dynamic_strings.php:189
5126
  msgid "l-gl"
5127
  msgstr "Galician"
5128
 
5129
  # Spanish; Castilian
5130
- #: ../languages/dynamic_strings.php:190
5131
  #, fuzzy
5132
  msgid "l-gl-es"
5133
  msgstr "Spanish; Castilian"
5134
 
5135
  # Gujarati
5136
- #: ../languages/dynamic_strings.php:191
5137
  msgid "l-gu"
5138
  msgstr "Gujarati"
5139
 
5140
  # Gujarati
5141
- #: ../languages/dynamic_strings.php:192
5142
  #, fuzzy
5143
  msgid "l-gu-in"
5144
  msgstr "Gujarati"
5145
 
5146
  # Hebrew
5147
- #: ../languages/dynamic_strings.php:193
5148
  msgid "l-he"
5149
  msgstr "Hebrew"
5150
 
5151
  # Hebrew (Israel)
5152
- #: ../languages/dynamic_strings.php:194
5153
  msgid "l-he-il"
5154
  msgstr "Hebrew (Israel)"
5155
 
5156
  # Hindi
5157
- #: ../languages/dynamic_strings.php:195
5158
  msgid "l-hi"
5159
  msgstr "Hindi"
5160
 
5161
  # Hindi
5162
- #: ../languages/dynamic_strings.php:196
5163
  #, fuzzy
5164
  msgid "l-hi-in"
5165
  msgstr "Hindi"
5166
 
5167
  # Croatian
5168
- #: ../languages/dynamic_strings.php:197
5169
  msgid "l-hr"
5170
  msgstr "Croatian"
5171
 
5172
  # Croatian
5173
- #: ../languages/dynamic_strings.php:198
5174
  #, fuzzy
5175
  msgid "l-hr-ba"
5176
  msgstr "Croatian"
5177
 
5178
  # Croatian
5179
- #: ../languages/dynamic_strings.php:199
5180
  #, fuzzy
5181
  msgid "l-hr-hr"
5182
  msgstr "Croatian"
5183
 
5184
  # Hungarian
5185
- #: ../languages/dynamic_strings.php:200
5186
  msgid "l-hu"
5187
  msgstr "Hungarian"
5188
 
5189
  # Hungarian (Hungary)
5190
- #: ../languages/dynamic_strings.php:201
5191
  msgid "l-hu-hu"
5192
  msgstr "Hungarian (Hungary)"
5193
 
5194
  # Armenian
5195
- #: ../languages/dynamic_strings.php:202
5196
  msgid "l-hy"
5197
  msgstr "Armenian"
5198
 
5199
  # Armenian
5200
- #: ../languages/dynamic_strings.php:203
5201
  #, fuzzy
5202
  msgid "l-hy-am"
5203
  msgstr "Armenian"
5204
 
5205
  # Indonesian
5206
- #: ../languages/dynamic_strings.php:204
5207
  msgid "l-id"
5208
  msgstr "Indonesian"
5209
 
5210
  # Indonesian
5211
- #: ../languages/dynamic_strings.php:205
5212
  #, fuzzy
5213
  msgid "l-id-id"
5214
  msgstr "Indonesian"
5215
 
5216
  # Icelandic
5217
- #: ../languages/dynamic_strings.php:206
5218
  msgid "l-is"
5219
  msgstr "Icelandic"
5220
 
5221
  # Icelandic
5222
- #: ../languages/dynamic_strings.php:207
5223
  #, fuzzy
5224
  msgid "l-is-is"
5225
  msgstr "Icelandic"
5226
 
5227
  # Italian
5228
- #: ../languages/dynamic_strings.php:208
5229
  msgid "l-it"
5230
  msgstr "Italian"
5231
 
5232
  # Italian (Switzerland)
5233
- #: ../languages/dynamic_strings.php:209
5234
  msgid "l-it-ch"
5235
  msgstr "Italian (Switzerland)"
5236
 
5237
  # Italian (Italia)
5238
- #: ../languages/dynamic_strings.php:210
5239
  msgid "l-it-it"
5240
  msgstr "Italian (Italia)"
5241
 
5242
  # Japanese
5243
- #: ../languages/dynamic_strings.php:211
5244
  msgid "l-ja"
5245
  msgstr "Japanese"
5246
 
5247
  # Japanese
5248
- #: ../languages/dynamic_strings.php:212
5249
  #, fuzzy
5250
  msgid "l-ja-jp"
5251
  msgstr "Japanese"
5252
 
5253
  # Georgian
5254
- #: ../languages/dynamic_strings.php:213
5255
  msgid "l-ka"
5256
  msgstr "Georgian"
5257
 
5258
  # Georgian
5259
- #: ../languages/dynamic_strings.php:214
5260
  #, fuzzy
5261
  msgid "l-ka-ge"
5262
  msgstr "Georgian"
5263
 
5264
  # Kazakh
5265
- #: ../languages/dynamic_strings.php:215
5266
  msgid "l-kk"
5267
  msgstr "Kazakh"
5268
 
5269
  # Kazakh
5270
- #: ../languages/dynamic_strings.php:216
5271
  #, fuzzy
5272
  msgid "l-kk-kz"
5273
  msgstr "Kazakh"
5274
 
5275
  # Kannada
5276
- #: ../languages/dynamic_strings.php:217
5277
  msgid "l-kn"
5278
  msgstr "Kannada"
5279
 
5280
  # Kannada
5281
- #: ../languages/dynamic_strings.php:218
5282
  #, fuzzy
5283
  msgid "l-kn-in"
5284
  msgstr "Kannada"
5285
 
5286
  # Korean
5287
- #: ../languages/dynamic_strings.php:219
5288
  msgid "l-ko"
5289
  msgstr "Korean"
5290
 
5291
  # Korean (Republic of Korea)
5292
- #: ../languages/dynamic_strings.php:220
5293
  msgid "l-ko-kr"
5294
  msgstr "Korean (Republic of Korea)"
5295
 
5296
  # Korean
5297
- #: ../languages/dynamic_strings.php:221
5298
  #, fuzzy
5299
  msgid "l-kok"
5300
  msgstr "Korean"
5301
 
5302
  # Korean
5303
- #: ../languages/dynamic_strings.php:222
5304
  #, fuzzy
5305
  msgid "l-kok-in"
5306
  msgstr "Korean"
5307
 
5308
  # Kirghiz; Kyrgyz
5309
- #: ../languages/dynamic_strings.php:223
5310
  msgid "l-ky"
5311
  msgstr "Kirghiz; Kyrgyz"
5312
 
5313
  # Kirghiz; Kyrgyz
5314
- #: ../languages/dynamic_strings.php:224
5315
  #, fuzzy
5316
  msgid "l-ky-kg"
5317
  msgstr "Kirghiz; Kyrgyz"
5318
 
5319
  # Lithuanian
5320
- #: ../languages/dynamic_strings.php:225
5321
  msgid "l-lt"
5322
  msgstr "Lithuanian"
5323
 
5324
  # Lithuanian
5325
- #: ../languages/dynamic_strings.php:226
5326
  #, fuzzy
5327
  msgid "l-lt-lt"
5328
  msgstr "Lithuanian"
5329
 
5330
  # Latvian
5331
- #: ../languages/dynamic_strings.php:227
5332
  msgid "l-lv"
5333
  msgstr "Latvian"
5334
 
5335
  # Latvian
5336
- #: ../languages/dynamic_strings.php:228
5337
  #, fuzzy
5338
  msgid "l-lv-lv"
5339
  msgstr "Latvian"
5340
 
5341
  # Maori
5342
- #: ../languages/dynamic_strings.php:229
5343
  msgid "l-mi"
5344
  msgstr "Maori"
5345
 
5346
  # Maori
5347
- #: ../languages/dynamic_strings.php:230
5348
  #, fuzzy
5349
  msgid "l-mi-nz"
5350
  msgstr "Maori"
5351
 
5352
  # Macedonian
5353
- #: ../languages/dynamic_strings.php:231
5354
  msgid "l-mk"
5355
  msgstr "Macedonian"
5356
 
5357
  # Macedonian
5358
- #: ../languages/dynamic_strings.php:232
5359
  #, fuzzy
5360
  msgid "l-mk-ml"
5361
  msgstr "Macedonian"
5362
 
5363
  # Mongolian
5364
- #: ../languages/dynamic_strings.php:233
5365
  msgid "l-mn"
5366
  msgstr "Mongolian"
5367
 
5368
  # Mongolian
5369
- #: ../languages/dynamic_strings.php:234
5370
  #, fuzzy
5371
  msgid "l-mn-mn"
5372
  msgstr "Mongolian"
5373
 
5374
  # Marathi
5375
- #: ../languages/dynamic_strings.php:235
5376
  msgid "l-mr"
5377
  msgstr "Marathi"
5378
 
5379
  # Marathi
5380
- #: ../languages/dynamic_strings.php:236
5381
  #, fuzzy
5382
  msgid "l-mr-in"
5383
  msgstr "Marathi"
5384
 
5385
  # Malay
5386
- #: ../languages/dynamic_strings.php:237
5387
  msgid "l-ms"
5388
  msgstr "Malay"
5389
 
5390
  # Malay
5391
- #: ../languages/dynamic_strings.php:238
5392
  #, fuzzy
5393
  msgid "l-ms-bn"
5394
  msgstr "Malay"
5395
 
5396
  # Malay
5397
- #: ../languages/dynamic_strings.php:239
5398
  #, fuzzy
5399
  msgid "l-ms-my"
5400
  msgstr "Malay"
5401
 
5402
  # Maltese
5403
- #: ../languages/dynamic_strings.php:240
5404
  msgid "l-mt"
5405
  msgstr "Maltese"
5406
 
5407
  # Maltese
5408
- #: ../languages/dynamic_strings.php:241
5409
  #, fuzzy
5410
  msgid "l-mt-mt"
5411
  msgstr "Maltese"
5412
 
5413
  # Norwegian Bokmål
5414
- #: ../languages/dynamic_strings.php:242
5415
  msgid "l-nb"
5416
  msgstr "Norwegian Bokmål"
5417
 
5418
  # Norwegian Bokmål
5419
- #: ../languages/dynamic_strings.php:243
5420
  #, fuzzy
5421
  msgid "l-nb-no"
5422
  msgstr "Norwegian Bokmål"
5423
 
5424
  # Dutch; Flemish
5425
- #: ../languages/dynamic_strings.php:244
5426
  msgid "l-nl"
5427
  msgstr "Dutch; Flemish"
5428
 
5429
  # Dutch (Belgium)
5430
- #: ../languages/dynamic_strings.php:245
5431
  msgid "l-nl-be"
5432
  msgstr "Dutch (Belgium)"
5433
 
5434
  # Dutch (Netherlands)
5435
- #: ../languages/dynamic_strings.php:246
5436
  msgid "l-nl-nl"
5437
  msgstr "Dutch (Netherlands)"
5438
 
5439
  # Norwegian Nynorsk
5440
- #: ../languages/dynamic_strings.php:247
5441
  #, fuzzy
5442
  msgid "l-nn-no"
5443
  msgstr "Norwegian Nynorsk"
5444
 
5445
- #: ../languages/dynamic_strings.php:248
5446
  msgid "l-ns"
5447
  msgstr "l-ns"
5448
 
5449
- #: ../languages/dynamic_strings.php:249
5450
  msgid "l-ns-za"
5451
  msgstr "l-ns-za"
5452
 
5453
  # Panjabi; Punjabi
5454
- #: ../languages/dynamic_strings.php:250
5455
  msgid "l-pa"
5456
  msgstr "Panjabi; Punjabi"
5457
 
5458
  # Panjabi; Punjabi
5459
- #: ../languages/dynamic_strings.php:251
5460
  #, fuzzy
5461
  msgid "l-pa-in"
5462
  msgstr "Panjabi; Punjabi"
5463
 
5464
  # Polish
5465
- #: ../languages/dynamic_strings.php:252
5466
  msgid "l-pl"
5467
  msgstr "Polish"
5468
 
5469
  # Polish
5470
- #: ../languages/dynamic_strings.php:253
5471
  #, fuzzy
5472
  msgid "l-pl-pl"
5473
  msgstr "Polish"
5474
 
5475
  # Pushto; Pashto
5476
- #: ../languages/dynamic_strings.php:254
5477
  msgid "l-ps"
5478
  msgstr "Pushto; Pashto"
5479
 
5480
  # Spanish (Argentina)
5481
- #: ../languages/dynamic_strings.php:255
5482
  #, fuzzy
5483
  msgid "l-ps-ar"
5484
  msgstr "Spanish (Argentina)"
5485
 
5486
  # Portuguese
5487
- #: ../languages/dynamic_strings.php:256
5488
  msgid "l-pt"
5489
  msgstr "Portuguese"
5490
 
5491
  # Portuguese (Brazil)
5492
- #: ../languages/dynamic_strings.php:257
5493
  msgid "l-pt-br"
5494
  msgstr "Portuguese (Brazil)"
5495
 
5496
  # Portuguese
5497
- #: ../languages/dynamic_strings.php:258
5498
  #, fuzzy
5499
  msgid "l-pt-pt"
5500
  msgstr "Portuguese"
5501
 
5502
  # Quechua
5503
- #: ../languages/dynamic_strings.php:259
5504
  msgid "l-qu"
5505
  msgstr "Quechua"
5506
 
5507
  # Quechua
5508
- #: ../languages/dynamic_strings.php:260
5509
  #, fuzzy
5510
  msgid "l-qu-bo"
5511
  msgstr "Quechua"
5512
 
5513
  # Quechua
5514
- #: ../languages/dynamic_strings.php:261
5515
  #, fuzzy
5516
  msgid "l-qu-ec"
5517
  msgstr "Quechua"
5518
 
5519
  # Quechua
5520
- #: ../languages/dynamic_strings.php:262
5521
  #, fuzzy
5522
  msgid "l-qu-pe"
5523
  msgstr "Quechua"
5524
 
5525
  # Romanian; Moldavian; Moldovan
5526
- #: ../languages/dynamic_strings.php:263
5527
  msgid "l-ro"
5528
  msgstr "Romanian; Moldavian; Moldovan"
5529
 
5530
  # Romanian; Moldavian; Moldovan
5531
- #: ../languages/dynamic_strings.php:264
5532
  #, fuzzy
5533
  msgid "l-ro-ro"
5534
  msgstr "Romanian; Moldavian; Moldovan"
5535
 
5536
  # Russian
5537
- #: ../languages/dynamic_strings.php:265
5538
  msgid "l-ru"
5539
  msgstr "Russian"
5540
 
5541
  # Russian (Russia)
5542
- #: ../languages/dynamic_strings.php:266
5543
  msgid "l-ru-ru"
5544
  msgstr "Russian (Russia)"
5545
 
5546
  # Sanskrit
5547
- #: ../languages/dynamic_strings.php:267
5548
  msgid "l-sa"
5549
  msgstr "Sanskrit"
5550
 
5551
  # Sanskrit
5552
- #: ../languages/dynamic_strings.php:268
5553
  #, fuzzy
5554
  msgid "l-sa-in"
5555
  msgstr "Sanskrit"
5556
 
5557
  # Northern Sami
5558
- #: ../languages/dynamic_strings.php:269
5559
  msgid "l-se"
5560
  msgstr "Northern Sami"
5561
 
5562
  # Northern Sami
5563
- #: ../languages/dynamic_strings.php:270
5564
  #, fuzzy
5565
  msgid "l-se-fi"
5566
  msgstr "Northern Sami"
5567
 
5568
  # Northern Sami
5569
- #: ../languages/dynamic_strings.php:271
5570
  #, fuzzy
5571
  msgid "l-se-no"
5572
  msgstr "Northern Sami"
5573
 
5574
  # Northern Sami
5575
- #: ../languages/dynamic_strings.php:272
5576
  #, fuzzy
5577
  msgid "l-se-se"
5578
  msgstr "Northern Sami"
5579
 
5580
  # Slovak
5581
- #: ../languages/dynamic_strings.php:273
5582
  msgid "l-sk"
5583
  msgstr "Slovak"
5584
 
5585
  # Slovak
5586
- #: ../languages/dynamic_strings.php:274
5587
  #, fuzzy
5588
  msgid "l-sk-sk"
5589
  msgstr "Slovak"
5590
 
5591
  # Slovenian
5592
- #: ../languages/dynamic_strings.php:275
5593
  msgid "l-sl"
5594
  msgstr "Slovenian"
5595
 
5596
  # Slovenian
5597
- #: ../languages/dynamic_strings.php:276
5598
  #, fuzzy
5599
  msgid "l-sl-si"
5600
  msgstr "Slovenian"
5601
 
5602
  # Albanian
5603
- #: ../languages/dynamic_strings.php:277
5604
  msgid "l-sq"
5605
  msgstr "Albanian"
5606
 
5607
  # Albanian
5608
- #: ../languages/dynamic_strings.php:278
5609
  #, fuzzy
5610
  msgid "l-sq-al"
5611
  msgstr "Albanian"
5612
 
5613
  # Serbian
5614
- #: ../languages/dynamic_strings.php:279
5615
  #, fuzzy
5616
  msgid "l-sr-ba"
5617
  msgstr "Serbian"
5618
 
5619
  # Serbian
5620
- #: ../languages/dynamic_strings.php:280
5621
  #, fuzzy
5622
  msgid "l-sr-sp"
5623
  msgstr "Serbian"
5624
 
5625
  # Swedish
5626
- #: ../languages/dynamic_strings.php:281
5627
  msgid "l-sv"
5628
  msgstr "Swedish"
5629
 
5630
  # Swedish (Finland)
5631
- #: ../languages/dynamic_strings.php:282
5632
  msgid "l-sv-fi"
5633
  msgstr "Swedish (Finland)"
5634
 
5635
  # Swedish (Sweden)
5636
- #: ../languages/dynamic_strings.php:283
5637
  msgid "l-sv-se"
5638
  msgstr "Swedish (Sweden)"
5639
 
5640
  # Swahili
5641
- #: ../languages/dynamic_strings.php:284
5642
  msgid "l-sw"
5643
  msgstr "Swahili"
5644
 
5645
  # Swahili
5646
- #: ../languages/dynamic_strings.php:285
5647
  #, fuzzy
5648
  msgid "l-sw-ke"
5649
  msgstr "Swahili"
5650
 
5651
  # Tamil
5652
- #: ../languages/dynamic_strings.php:286
5653
  msgid "l-ta"
5654
  msgstr "Tamil"
5655
 
5656
  # Tamil
5657
- #: ../languages/dynamic_strings.php:287
5658
  #, fuzzy
5659
  msgid "l-ta-in"
5660
  msgstr "Tamil"
5661
 
5662
  # Telugu
5663
- #: ../languages/dynamic_strings.php:288
5664
  msgid "l-te"
5665
  msgstr "Telugu"
5666
 
5667
  # Telugu
5668
- #: ../languages/dynamic_strings.php:289
5669
  #, fuzzy
5670
  msgid "l-te-in"
5671
  msgstr "Telugu"
5672
 
5673
  # Thai
5674
- #: ../languages/dynamic_strings.php:290
5675
  msgid "l-th"
5676
  msgstr "Thai"
5677
 
5678
  # Thai
5679
- #: ../languages/dynamic_strings.php:291
5680
  #, fuzzy
5681
  msgid "l-th-th"
5682
  msgstr "Thai"
5683
 
5684
  # Tagalog
5685
- #: ../languages/dynamic_strings.php:292
5686
  msgid "l-tl"
5687
  msgstr "Tagalog"
5688
 
5689
  # Tagalog
5690
- #: ../languages/dynamic_strings.php:293
5691
  #, fuzzy
5692
  msgid "l-tl-ph"
5693
  msgstr "Tagalog"
5694
 
5695
  # Tswana
5696
- #: ../languages/dynamic_strings.php:294
5697
  msgid "l-tn"
5698
  msgstr "Tswana"
5699
 
5700
  # English (South Africa)
5701
- #: ../languages/dynamic_strings.php:295
5702
  #, fuzzy
5703
  msgid "l-tn-za"
5704
  msgstr "English (South Africa)"
5705
 
5706
  # Turkish
5707
- #: ../languages/dynamic_strings.php:296
5708
  msgid "l-tr"
5709
  msgstr "Turkish"
5710
 
5711
  # Turkish
5712
- #: ../languages/dynamic_strings.php:297
5713
  #, fuzzy
5714
  msgid "l-tr-tr"
5715
  msgstr "Turkish"
5716
 
5717
  # Tatar
5718
- #: ../languages/dynamic_strings.php:298
5719
  msgid "l-tt"
5720
  msgstr "Tatar"
5721
 
5722
  # Tatar
5723
- #: ../languages/dynamic_strings.php:299
5724
  #, fuzzy
5725
  msgid "l-tt-ru"
5726
  msgstr "Tatar"
5727
 
5728
  # Tsonga
5729
- #: ../languages/dynamic_strings.php:300
5730
  msgid "l-ts"
5731
  msgstr "Tsonga"
5732
 
5733
  # Ukrainian
5734
- #: ../languages/dynamic_strings.php:301
5735
  msgid "l-uk"
5736
  msgstr "Ukrainian"
5737
 
5738
  # Ukrainian
5739
- #: ../languages/dynamic_strings.php:302
5740
  #, fuzzy
5741
  msgid "l-uk-ua"
5742
  msgstr "Ukrainian"
5743
 
5744
  # Urdu
5745
- #: ../languages/dynamic_strings.php:303
5746
  msgid "l-ur"
5747
  msgstr "Urdu"
5748
 
5749
  # Urdu
5750
- #: ../languages/dynamic_strings.php:304
5751
  #, fuzzy
5752
  msgid "l-ur-pk"
5753
  msgstr "Urdu"
5754
 
5755
  # Uzbek
5756
- #: ../languages/dynamic_strings.php:305
5757
  msgid "l-uz"
5758
  msgstr "Uzbek"
5759
 
5760
  # Uzbek
5761
- #: ../languages/dynamic_strings.php:306
5762
  #, fuzzy
5763
  msgid "l-uz-uz"
5764
  msgstr "Uzbek"
5765
 
5766
  # Vietnamese
5767
- #: ../languages/dynamic_strings.php:307
5768
  msgid "l-vi"
5769
  msgstr "Vietnamese"
5770
 
5771
  # Vietnamese
5772
- #: ../languages/dynamic_strings.php:308
5773
  #, fuzzy
5774
  msgid "l-vi-vn"
5775
  msgstr "Vietnamese"
5776
 
5777
  # Xhosa
5778
- #: ../languages/dynamic_strings.php:309
5779
  msgid "l-xh"
5780
  msgstr "Xhosa"
5781
 
5782
  # Xhosa
5783
- #: ../languages/dynamic_strings.php:310
5784
  #, fuzzy
5785
  msgid "l-xh-za"
5786
  msgstr "Xhosa"
5787
 
5788
  # Chinese
5789
- #: ../languages/dynamic_strings.php:311
5790
  msgid "l-zh"
5791
  msgstr "Chinese"
5792
 
5793
  # Chinese (China)
5794
- #: ../languages/dynamic_strings.php:312
5795
  msgid "l-zh-cn"
5796
  msgstr "Chinese (China)"
5797
 
5798
  # Chinese (Hong Kong)
5799
- #: ../languages/dynamic_strings.php:313
5800
  msgid "l-zh-hk"
5801
  msgstr "Chinese (Hong Kong)"
5802
 
5803
  # Chinese
5804
- #: ../languages/dynamic_strings.php:314
5805
  #, fuzzy
5806
  msgid "l-zh-mo"
5807
  msgstr "Chinese"
5808
 
5809
  # Chinese (Singapore)
5810
- #: ../languages/dynamic_strings.php:315
5811
  msgid "l-zh-sg"
5812
  msgstr "Chinese (Singapore)"
5813
 
5814
  # Chinese (Taiwan)
5815
- #: ../languages/dynamic_strings.php:316
5816
  msgid "l-zh-tw"
5817
  msgstr "Chinese (Taiwan)"
5818
 
5819
  # Zulu
5820
- #: ../languages/dynamic_strings.php:317
5821
  msgid "l-zu"
5822
  msgstr "Zulu"
5823
 
5824
  # Zulu
5825
- #: ../languages/dynamic_strings.php:318
5826
  #, fuzzy
5827
  msgid "l-zu-za"
5828
  msgstr "Zulu"
5829
 
5830
  # Unknown
5831
- #: ../languages/dynamic_strings.php:320
5832
  msgid "l-empty"
5833
  msgstr "Unknown"
5834
 
5835
  # Unknown
5836
- #: ../languages/dynamic_strings.php:321
5837
  msgid "l-xx"
5838
  msgstr "Unknown"
5839
 
5840
- #: ../languages/dynamic_strings.php:323
5841
  msgid "c-xy"
5842
  msgstr "Local IP"
5843
 
5844
- #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5845
  msgid "Notice: Pageview filtered by third-party code"
5846
  msgstr ""
5847
 
5848
- #: ../wp-slimstat.php:240
5849
  #, fuzzy, php-format
5850
  msgid "Error: Malformed URL %s"
5851
  msgstr "Navegadores recientes"
5852
 
5853
- #: ../wp-slimstat.php:259
5854
  #, fuzzy, php-format
5855
  msgid "Notice: Referrer %s is blacklisted"
5856
  msgstr "Navegador"
5857
 
5858
- #: ../wp-slimstat.php:347
5859
  #, fuzzy, php-format
5860
  msgid "Notice: Permalink %s is blacklisted"
5861
  msgstr "Navegador"
5862
 
5863
- #: ../wp-slimstat.php:358
5864
  msgid "Error: Empty or not supported IP address format (IPv6)"
5865
  msgstr ""
5866
 
5867
- #: ../wp-slimstat.php:367
5868
  #, php-format
5869
  msgid "Notice: Logged in user %s not tracked"
5870
  msgstr ""
5871
 
5872
- #: ../wp-slimstat.php:375
5873
  #, php-format
5874
  msgid "Notice: User with capability %s not tracked"
5875
  msgstr ""
5876
 
5877
- #: ../wp-slimstat.php:385
5878
  #, fuzzy, php-format
5879
  msgid "Notice: User %s is blacklisted"
5880
  msgstr "Navegador"
5881
 
5882
- #: ../wp-slimstat.php:406
5883
  #, fuzzy, php-format
5884
  msgid "Notice: Spammer %s not tracked"
5885
  msgstr "Bot o Crawler"
5886
 
5887
- #: ../wp-slimstat.php:435
5888
  #, fuzzy, php-format
5889
  msgid "Notice: IP address %s is blacklisted"
5890
  msgstr "Navegador"
5891
 
5892
- #: ../wp-slimstat.php:464
5893
  #, fuzzy, php-format
5894
  msgid "Notice: Country %s is blacklisted"
5895
  msgstr "Navegador"
5896
 
5897
- #: ../wp-slimstat.php:473
5898
  #, fuzzy
5899
  msgid "Notice: Prefetch requests are ignored"
5900
  msgstr "Ignorar PPeticiones Prefetch"
5901
 
5902
- #: ../wp-slimstat.php:489
5903
  #, fuzzy
5904
  msgid "Notice: Bot not tracked"
5905
  msgstr "Bot o Crawler"
5906
 
5907
- #: ../wp-slimstat.php:498
5908
  #, fuzzy, php-format
5909
  msgid "Notice: Browser %s is blacklisted"
5910
  msgstr "Navegador"
5911
 
5912
- #: ../wp-slimstat.php:528
5913
  msgid "Error:"
5914
  msgstr ""
5915
 
5916
- #: ../wp-slimstat.php:1209
5917
  msgid "Invalid payload string. Try clearing your WordPress cache."
5918
  msgstr ""
5919
 
5920
- #: ../wp-slimstat.php:1219
5921
  msgid "Invalid data signature. Try clearing your WordPress cache."
5922
  msgstr ""
5923
 
5924
- #: ../wp-slimstat.php:1289
5925
  #, fuzzy
5926
  msgid "There was an error downloading the MaxMind Geolite DB:"
5927
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5928
 
5929
- #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5930
  #, fuzzy
5931
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5932
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5933
 
5934
- #: ../wp-slimstat.php:1301
5935
  msgid "Function gzopen not defined. Aborting."
5936
  msgstr ""
5937
 
5938
- #: ../wp-slimstat.php:1311
5939
  #, fuzzy
5940
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5941
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5942
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5943
  #~ msgid "Ignore users (username not found)"
5944
  #~ msgstr "Ignorar usuarios (nombre de usuario no encontrado)"
5945
 
2
  msgstr ""
3
  "Project-Id-Version: WP Slimstat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-28 21:19-0500\n"
6
+ "PO-Revision-Date: 2016-01-28 21:20-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_ES\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../admin/config/index.php:33
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
26
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> esta página </a> "
27
  "para obtener más información"
28
 
29
+ #: ../admin/config/index.php:48
30
  msgid "Read access: username not found"
31
  msgstr "Acceso de lectura: Nombre de usuario no se encuentra"
32
 
33
+ #: ../admin/config/index.php:58 ../admin/config/index.php:83
34
  msgid ""
35
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
36
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
40
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\">esta página</a> para "
41
  "obtener más información"
42
 
43
+ #: ../admin/config/index.php:73
44
  msgid "Config access: username not found"
45
  msgstr "Acceso de configuración: Nombre de usuario no encontrado"
46
 
47
+ #: ../admin/config/index.php:92
48
  msgid "Basic"
49
  msgstr ""
50
 
51
+ #: ../admin/config/index.php:94 ../admin/config/index.php:115
52
  msgid "Tracker"
53
  msgstr "Rastreador"
54
 
55
+ #: ../admin/config/index.php:95
56
  msgid "Enable Tracking"
57
  msgstr "Activar Seguimiento"
58
 
59
+ #: ../admin/config/index.php:95
60
  #, fuzzy
61
  msgid "Turn the tracker on or off, while keeping the reports accessible."
62
  msgstr ""
63
  "Activar el rastreador de encendido o apagado, pero conserve los informes "
64
  "accesibles (que no tendría, si desactivó el plugin)."
65
 
66
+ #: ../admin/config/index.php:96
67
  #, fuzzy
68
  msgid "Tracking Mode"
69
  msgstr "Seguimiento Activo"
70
 
71
+ #: ../admin/config/index.php:96
72
  #, fuzzy
73
  msgid ""
74
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
84
  "la mayoría de los <strong> spammers, buscadores y otros rastreadores </"
85
  "strong> no serán registrados."
86
 
87
+ #: ../admin/config/index.php:96
88
  msgid "Client Side"
89
  msgstr ""
90
 
91
+ #: ../admin/config/index.php:96
92
  #, fuzzy
93
  msgid "Server Side"
94
  msgstr "Del lado del servidor"
95
 
96
+ #: ../admin/config/index.php:97
97
  msgid "Stealth Mode"
98
  msgstr ""
99
 
100
+ #: ../admin/config/index.php:97
101
  msgid ""
102
  "Do not add the javascript tracking code to your pages, if tracking mode is "
103
  "set to Server. Please note: if enabled, this will prevent the tracker from "
104
  "collecting information such as screen resolution, outbound links, downloads, "
105
+ "etc. This option is ignored if Tracking Mode is set to Client."
106
  msgstr ""
107
 
108
+ #: ../admin/config/index.php:97 ../admin/view/wp-slimstat-reports.php:1368
109
  msgid "Off"
110
  msgstr ""
111
 
112
+ #: ../admin/config/index.php:97
113
  msgid "On"
114
  msgstr "El"
115
 
116
+ #: ../admin/config/index.php:98
117
  #, fuzzy
118
  msgid "Admin Pages"
119
  msgstr "Principales Páginas de Salida"
120
 
121
+ #: ../admin/config/index.php:98
122
  msgid "Enable this option to track your users' activity within the admin."
123
  msgstr ""
124
  "Habilite esta opción para realizar un seguimiento de la actividad de sus "
125
  "usuarios dentro de la administración."
126
 
127
+ #: ../admin/config/index.php:98
128
  #, fuzzy
129
  msgid "Track"
130
  msgstr "Rastreador"
131
 
132
+ #: ../admin/config/index.php:98
133
  #, fuzzy
134
  msgid "Do not track"
135
  msgstr "Bot o Crawler"
136
 
137
+ #: ../admin/config/index.php:100
138
  msgid "WordPress Integration"
139
  msgstr "Integración WordPress"
140
 
141
+ #: ../admin/config/index.php:101
142
  msgid "Menu Position"
143
  msgstr "Posición de menú"
144
 
145
+ #: ../admin/config/index.php:101
146
  #, fuzzy
147
  msgid ""
148
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
151
  "Elija entre un menú de administración independiente para WP SLIMStat o un "
152
  "menú desplegable en la barra de administrador (si está visible)."
153
 
154
+ #: ../admin/config/index.php:101
155
  msgid "Side Menu"
156
  msgstr "Menú lateral"
157
 
158
+ #: ../admin/config/index.php:101
159
  msgid "Admin Bar"
160
  msgstr "Barra de administración"
161
 
162
+ #: ../admin/config/index.php:102
163
  #, fuzzy
164
  msgid "Posts and Pages"
165
  msgstr "Añadir columna a Publicaciones"
166
 
167
+ #: ../admin/config/index.php:102
168
  #, fuzzy
169
  msgid ""
170
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
173
  "Añadir una nueva columna a la pantalla Editar publicaciones, con el número "
174
  "de visitas por publicación (pueden ralentizar la renderización de páginas)."
175
 
176
+ #: ../admin/config/index.php:103
177
  #, fuzzy
178
  msgid "Report Interval"
179
  msgstr "Únicamente interno"
180
 
181
+ #: ../admin/config/index.php:103
182
  msgid ""
183
  "Enter the time range, in days, that should be used to calculate the value "
184
  "here above."
185
  msgstr ""
186
 
187
+ #: ../admin/config/index.php:104
188
  #, fuzzy
189
  msgid "Report Type"
190
  msgstr "Informes Personalizados"
191
 
192
+ #: ../admin/config/index.php:104
193
  msgid ""
194
  "Select what kind of information you would like to see displayed on the Posts "
195
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
196
  "IPs consider only one hit per user in the given time range."
197
  msgstr ""
198
 
199
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:81
200
+ #: ../admin/view/wp-slimstat-reports.php:90
201
+ #: ../admin/view/wp-slimstat-reports.php:1384
202
+ #: ../admin/view/wp-slimstat-reports.php:1542
203
  msgid "Pageviews"
204
  msgstr "Paginas visitadas"
205
 
206
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:91
207
+ #: ../admin/view/wp-slimstat-reports.php:284
208
+ #: ../admin/view/wp-slimstat-reports.php:525
209
+ #: ../admin/view/wp-slimstat-reports.php:1399
210
+ #: ../admin/view/wp-slimstat-reports.php:1444
211
  msgid "Unique IPs"
212
  msgstr "IPs Unicas"
213
 
214
+ #: ../admin/config/index.php:105
215
  #, fuzzy
216
  msgid "Dashboard Widgets"
217
  msgstr "Sumario"
218
 
219
+ #: ../admin/config/index.php:105
220
  msgid ""
221
  "Choose if you want to have the most important reports on your WordPress "
222
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
223
  msgstr ""
224
 
225
+ #: ../admin/config/index.php:106
226
  #, fuzzy
227
  msgid "Hide Add-ons"
228
  msgstr "Añadidos"
229
 
230
+ #: ../admin/config/index.php:106
231
  msgid ""
232
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
233
  "from the list of plugins in WordPress. Please note that you will still "
234
  "receive updates for hidden add-ons."
235
  msgstr ""
236
 
237
+ #: ../admin/config/index.php:108
238
  msgid "Database"
239
  msgstr "Base de datos"
240
 
241
+ #: ../admin/config/index.php:109
242
  msgid "Retain data for"
243
  msgstr "Conservar los datos durante"
244
 
245
+ #: ../admin/config/index.php:109
246
  #, fuzzy
247
  msgid ""
248
  "Clean-up log entries older than the number of days specified here above. "
253
  "aquí arriba. Introduzca <strong> 0 </strong> (número cero) si desea "
254
  "conservar sus datos independientemente de su edad."
255
 
256
+ #: ../admin/config/index.php:109
257
  msgid "Next clean-up on"
258
  msgstr "Siguiente limpieza en"
259
 
260
+ #: ../admin/config/index.php:109
261
  #, fuzzy, php-format
262
  msgid ""
263
  "Entries logged on or before %s will be archived or deleted according to the "
266
  "Los comentarios registrados en o antes del %s se eliminarán de forma "
267
  "permanente."
268
 
269
+ #: ../admin/config/index.php:109 ../admin/view/index.php:102
270
  #: ../admin/view/wp-slimstat-db.php:79
271
+ #: ../admin/view/wp-slimstat-reports.php:1368
272
  msgid "days"
273
  msgstr "dias"
274
 
275
+ #: ../admin/config/index.php:110
276
  #, fuzzy
277
+ msgid "Archive records"
278
  msgstr "Palabras clave"
279
 
280
+ #: ../admin/config/index.php:110
281
  msgid ""
282
  "If DB space is not an issue, you can decide to archive older records in "
283
  "another table, instead of deleting them. This way performance is preserved, "
287
  "is uninstalled. Make sure to backup your data before you proceed."
288
  msgstr ""
289
 
290
+ #: ../admin/config/index.php:117
291
  #, fuzzy
292
  msgid "Advanced Options"
293
  msgstr "Filtros avanzados"
294
 
295
+ #: ../admin/config/index.php:118
296
  #, fuzzy
297
  msgid "Session Duration"
298
  msgstr "Visitas"
299
 
300
+ #: ../admin/config/index.php:118
301
  #, fuzzy
302
  msgid ""
303
  "How many seconds should a human session last? Google Analytics sets it to "
306
  "¿Cuántos segundos debe durar una sesión humana en su sitio? Google Analytics "
307
  "lo establece en 1.800 segundos."
308
 
309
+ #: ../admin/config/index.php:118 ../admin/config/index.php:189
310
  msgid "seconds"
311
  msgstr "Segundos"
312
 
313
+ #: ../admin/config/index.php:119
314
  msgid "Extend Session"
315
  msgstr "Extender Sesión"
316
 
317
+ #: ../admin/config/index.php:119
318
  msgid "Extend the duration of a session each time the user visits a new page."
319
  msgstr ""
320
  "Extender la duración de una sesión cada vez que el usuario visita una página "
321
  "nueva."
322
 
323
+ #: ../admin/config/index.php:120
324
+ #, fuzzy
325
+ msgid "Browser Detection"
326
+ msgstr "Versión del Navegador"
327
+
328
+ #: ../admin/config/index.php:120
329
+ msgid ""
330
+ "The heuristic function is much faster and requires very little memory, but "
331
+ "for uncommon user agent strings it might be less accurate, and produce a "
332
+ "unreliable match. Browscap.ini, the third party database we use, is memory "
333
+ "intensive and it uses a bruteforce approach to determine a visitor's "
334
+ "browser, but it's very accurate and precise even with the most obscure user "
335
+ "agent strings (almost all of them). You decide which one should be used "
336
+ "first: the other one will only be invoked if the one you chose did not "
337
+ "produce a match."
338
+ msgstr ""
339
+
340
+ #: ../admin/config/index.php:120
341
+ #, fuzzy
342
+ msgid "Browscap"
343
+ msgstr "Navegador"
344
+
345
+ #: ../admin/config/index.php:120
346
+ msgid "Heuristic"
347
+ msgstr ""
348
+
349
+ #: ../admin/config/index.php:121
350
  msgid "Enable CDN"
351
  msgstr "Habilitar CDN"
352
 
353
+ #: ../admin/config/index.php:121
354
  msgid ""
355
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
356
  "by serving our tracking code from their fast and reliable network (free "
360
  "CDN, sirviendo nuestro código de seguimiento de su red rápida y confiable "
361
  "(servicio gratuito)."
362
 
363
+ #: ../admin/config/index.php:122
364
  msgid "Extensions to Track"
365
  msgstr "Extensiones a rastreo"
366
 
367
+ #: ../admin/config/index.php:122
368
  msgid ""
369
  "List all the file extensions that you want to be treated as Downloads. "
370
  "Please note that links pointing to external resources (i.e. PDFs on a "
378
  "Descargas y no Vínculos salientes (y rastreado como tal), si su extensión "
379
  "coincide con uno de los que se enumeran a continuación."
380
 
381
+ #: ../admin/config/index.php:124
382
  #, fuzzy
383
  msgid "Internal and Outbound Links"
384
  msgstr "Enlaces Salientes Recientes"
385
 
386
+ #: ../admin/config/index.php:125
387
  #, fuzzy
388
  msgid "Track Outbound Clicks"
389
  msgstr "Enlaces Salientes Recientes"
390
 
391
+ #: ../admin/config/index.php:125
392
  msgid ""
393
  "Track when your visitors click on link to external websites. This option "
394
  "required Spy Mode to be enabled."
396
  "Rastree cuando los usuarios hacen clic en el enlace a sitios web externos. "
397
  "Esta opción requere que el modo Espía esté habilitado."
398
 
399
+ #: ../admin/config/index.php:126
400
  #, fuzzy
401
  msgid "Track Coordinates"
402
  msgstr "Seguimiento Activo"
403
 
404
+ #: ../admin/config/index.php:126
405
  msgid ""
406
  "Collect mouse coordinates and other information for clicks on internal "
407
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
408
  "this information is only collected for external links."
409
  msgstr ""
410
 
411
+ #: ../admin/config/index.php:127
412
  msgid "No Callback"
413
  msgstr ""
414
 
415
+ #: ../admin/config/index.php:127
416
  msgid ""
417
  "Track the event but do not invoke the callback function on links marked with "
418
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
420
  "prevent conflicts with lightbox and similar libraries."
421
  msgstr ""
422
 
423
+ #: ../admin/config/index.php:128
424
  msgid "Do Not Track"
425
  msgstr ""
426
 
427
+ #: ../admin/config/index.php:128
428
  msgid ""
429
  "Do not track links marked with one of these class names, <em>rel</em> "
430
  "attributes or whose <em>href</em> attribute contains one of these strings "
431
  "(separated by comma)."
432
  msgstr ""
433
 
434
+ #: ../admin/config/index.php:130
435
  msgid "Pages not belonging to this site"
436
  msgstr ""
437
 
438
+ #: ../admin/config/index.php:131
439
  msgid ""
440
  "Add the following code to all the non-WP pages you want to track, right "
441
  "before the closing BODY tag. Please make sure to change the protocol of all "
442
  "the URLs to HTTPS, if you external site is served over a secure channel."
443
  msgstr ""
444
 
445
+ #: ../admin/config/index.php:141
446
  #, fuzzy
447
  msgid "Allow External Domains"
448
  msgstr "Enlaces Externos Hostiles"
449
 
450
+ #: ../admin/config/index.php:141
451
  msgid ""
452
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
453
  "header is present on the requested resource, when using the external "
458
  "security implications of allowing CORS requests."
459
  msgstr ""
460
 
461
+ #: ../admin/config/index.php:142 ../admin/config/index.php:164
462
+ #: ../admin/config/index.php:192
463
  msgid "Miscellaneous"
464
  msgstr "Varios"
465
 
466
+ #: ../admin/config/index.php:143
467
  msgid "Enable UAN"
468
  msgstr "Habilitar UAN"
469
 
470
+ #: ../admin/config/index.php:143
471
  #, fuzzy
472
  msgid ""
473
  "Send anonymous data about user agents to our server for analysis. This "
482
  "opensource BrowsCap </a>, y mejorar la precisión de la funcionalidad de "
483
  "detección de navegador del SLIMStat."
484
 
485
+ #: ../admin/config/index.php:148
486
  msgid "Filters"
487
  msgstr "Filtros"
488
 
489
+ #: ../admin/config/index.php:150
490
  #, fuzzy
491
  msgid "Do not track settings"
492
  msgstr "Bot o Crawler"
493
 
494
+ #: ../admin/config/index.php:151
495
  msgid "Track Registered Users"
496
  msgstr "Seguimiento Usuarios Registrados"
497
 
498
+ #: ../admin/config/index.php:151
499
  msgid "Enable this option to track logged in users."
500
  msgstr "Active esta opción para rastrear usuarios registrados."
501
 
502
+ #: ../admin/config/index.php:152
503
  #, fuzzy
504
  msgid "Blacklist by Username"
505
  msgstr "Direcciones IP Blacklist"
506
 
507
+ #: ../admin/config/index.php:152
508
  #, fuzzy
509
  msgid ""
510
  "List all the usernames you don't want to track, separated by commas. Please "
523
  "<code> / abo! T </ code > coincidirá con /about and /abort. Las cadenas no "
524
  "se afectan por mayúsculas y minúsculas."
525
 
526
+ #: ../admin/config/index.php:153
527
  msgid "Blacklist by IP Address"
528
  msgstr "Direcciones IP Blacklist"
529
 
530
+ #: ../admin/config/index.php:153
531
  #, fuzzy
532
  msgid ""
533
  "List all the IP addresses you don't want to track, separated by commas. Each "
542
  "CIDR </a> (es decir, < em> 192.168.0.0/24 </em>). Si el formato no es "
543
  "correcto, WP SLIMStat no puede rastrear páginas vistas correctamente."
544
 
545
+ #: ../admin/config/index.php:154
546
  #, fuzzy
547
  msgid "Blacklist by Capability"
548
  msgstr "Navegador"
549
 
550
+ #: ../admin/config/index.php:154
551
  msgid ""
552
  "Users having at least one of the <a href='http://codex.wordpress.org/"
553
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
558
  "no se les rastreará. Las Capacidades distinguen entre mayúsculas y "
559
  "minúsculas."
560
 
561
+ #: ../admin/config/index.php:156
562
  msgid "Profiling"
563
  msgstr "Haciendo perfil"
564
 
565
+ #: ../admin/config/index.php:157
566
  msgid "Ignore Spammers"
567
  msgstr "Ignorar Spammers"
568
 
569
+ #: ../admin/config/index.php:157
570
  msgid ""
571
  "Enable this option if you don't want to track visits from users identified "
572
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
579
  "adelante se marcan como correo no deseado, también se eliminarán de la base "
580
  "de datos."
581
 
582
+ #: ../admin/config/index.php:158
583
  #, fuzzy
584
  msgid "Ignore Bots"
585
  msgstr "Navegadores recientes"
586
 
587
+ #: ../admin/config/index.php:158
588
  msgid ""
589
  "Turn on this feature if you want to have the accuracy level of server-side "
590
  "tracking, but not the inconvenience of getting your database clogged with "
592
  "note that in Client mode, bots are ignored regardless of this setting."
593
  msgstr ""
594
 
595
+ #: ../admin/config/index.php:159
596
  #, fuzzy
597
  msgid "Permalinks"
598
  msgstr "Enlace Permanente"
599
 
600
+ #: ../admin/config/index.php:159
601
  msgid ""
602
  "List all the URLs on your website that you don't want to track, separated by "
603
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
616
  "<code> / abo! T </ code > coincidirá con /about and /abort. Las cadenas no "
617
  "se afectan por mayúsculas y minúsculas."
618
 
619
+ #: ../admin/config/index.php:160
620
  #, fuzzy
621
  msgid "Countries"
622
  msgstr "Paises que más visitan"
623
 
624
+ #: ../admin/config/index.php:160
625
  msgid ""
626
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
627
  "track, separated by commas."
629
  "Los códigos de país (Es decir: <code> es-es, it, es </code>) a los que no "
630
  "desee realizar el seguimiento, separados por comas"
631
 
632
+ #: ../admin/config/index.php:161
633
  #, fuzzy
634
  msgid "User Agents"
635
  msgstr "Buscadores"
636
 
637
+ #: ../admin/config/index.php:161
638
  msgid ""
639
  "Browsers (user agents) you don't want to track, separated by commas. You can "
640
  "specify the browser's version adding a slash after the name (i.e. "
651
  "code> coincidirá Chrome y cromo, <code> IE /! 0.0 </code> coincidirá IE/7.0 "
652
  "y IE/8.0. Las cadenas son de mayúsculas y minúsculas."
653
 
654
+ #: ../admin/config/index.php:162
655
  #, fuzzy
656
  msgid "Referring Sites"
657
  msgstr "Motores de Búsqueda"
658
 
659
+ #: ../admin/config/index.php:162
660
  msgid ""
661
  "Referring URLs that you don't want to track, separated by commas: "
662
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
671
  "cadenas son mayúsculas y minúsculas. Por favor incluya ya sea un comodín o "
672
  "el protocolo que desea filtrar (http://, https://)."
673
 
674
+ #: ../admin/config/index.php:165
675
  msgid "Enable Privacy Mode"
676
  msgstr "Activar el modo de privacidad"
677
 
678
+ #: ../admin/config/index.php:165
679
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
680
  msgstr ""
681
  "Enmascarar direcciones IP de sus visitantes para cumplir con leyes de "
682
  "privacidad europeas."
683
 
684
+ #: ../admin/config/index.php:166
685
  msgid "Ignore Prefetch Requests"
686
  msgstr "Ignorar PPeticiones Prefetch"
687
 
688
+ #: ../admin/config/index.php:166
689
  #, fuzzy
690
  msgid ""
691
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
696
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
697
  "target='_blank'> Función de Prellamado de enlaces de Firefox </a>."
698
 
699
+ #: ../admin/config/index.php:171 ../admin/config/index.php:203
700
  #, fuzzy
701
  msgid "Reports"
702
  msgstr "Informes Personalizados"
703
 
704
+ #: ../admin/config/index.php:173
705
  msgid "Formats and Conversions"
706
  msgstr ""
707
 
708
+ #: ../admin/config/index.php:174
709
  msgid "Number Format"
710
  msgstr "Formato de número"
711
 
712
+ #: ../admin/config/index.php:174
713
  #, fuzzy
714
  msgid "Choose the number format you want to use for your reports."
715
  msgstr ""
716
  "Seleccione el formato de número que desea utilizar para sus informes, "
717
  "europeos o americanos."
718
 
719
+ #: ../admin/config/index.php:175
720
  #, fuzzy
721
  msgid "Date Format"
722
  msgstr "Fecha y hora"
723
 
724
+ #: ../admin/config/index.php:175
725
  msgid ""
726
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
727
  "Format</a> to use when displaying a pageview's date."
728
  msgstr ""
729
 
730
+ #: ../admin/config/index.php:176
731
  #, fuzzy
732
  msgid "Time Format"
733
  msgstr "Formato de número"
734
 
735
+ #: ../admin/config/index.php:176
736
  msgid ""
737
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
738
  "Format</a> to use when displaying a pageview's time."
739
  msgstr ""
740
 
741
+ #: ../admin/config/index.php:177
742
  #, fuzzy
743
  msgid "Use Display Name"
744
  msgstr "Mostrar Nombre para mostrar"
745
 
746
+ #: ../admin/config/index.php:177
747
  msgid ""
748
  "By default, users are listed by their usernames. Use this option to "
749
  "visualize their display names instead."
752
  "usuario. Utilice esta opción para visualizar los nombres para mostrar en su "
753
  "lugar."
754
 
755
+ #: ../admin/config/index.php:178
756
  #, fuzzy
757
  msgid "Use Titles"
758
  msgstr "Mostrar Títulos"
759
 
760
+ #: ../admin/config/index.php:178
761
  #, fuzzy
762
  msgid ""
763
  "Slimstat converts your permalinks into post, page and category titles. "
766
  "WP SLIMStat convierte tus enlaces permanentes en títulos de publicaciones y "
767
  "páginas. Desactive esta función si necesita ver la URL en sus informes."
768
 
769
+ #: ../admin/config/index.php:179
770
  msgid "Convert IP Addresses"
771
  msgstr "Convertir Direcciones IP"
772
 
773
+ #: ../admin/config/index.php:179
774
  msgid "Display provider names instead of IP addresses."
775
  msgstr "Muestra los nombres de proveedores, en lugar de direcciones IP."
776
 
777
+ #: ../admin/config/index.php:181
778
  msgid "Functionality"
779
  msgstr "Funcionalidad"
780
 
781
+ #: ../admin/config/index.php:182
782
  msgid "SlimScroll"
783
  msgstr ""
784
 
785
+ #: ../admin/config/index.php:182
786
  msgid ""
787
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
788
  "scrollbar."
789
  msgstr ""
790
 
791
+ #: ../admin/config/index.php:183
792
  msgid "Expand Details"
793
  msgstr "Expandir Detalles"
794
 
795
+ #: ../admin/config/index.php:183
796
  msgid "Expand each row's details by default, insted of on mousehover."
797
  msgstr ""
798
  "Expandir cada fila de forma predeterminada, en vez de al sobreponer el ratón."
799
 
800
+ #: ../admin/config/index.php:184 ../admin/config/index.php:190
801
  #, fuzzy
802
  msgid "Rows to Display"
803
  msgstr "No hay datos que mostrar"
804
 
805
+ #: ../admin/config/index.php:184
806
  msgid "Specify the number of items in each report."
807
  msgstr "Especifique el número de elementos en cada informe."
808
 
809
+ #: ../admin/config/index.php:185 ../admin/view/wp-slimstat-db.php:101
810
  #, fuzzy
811
  msgid "Max Results"
812
  msgstr "Limitar Resultados"
813
 
814
+ #: ../admin/config/index.php:185
815
  msgid ""
816
  "Decide how many records should be retrieved from the database in total. "
817
  "Depending on your server configuration, you may want to fine tune this value "
818
  "to avoid exceeding your PHP memory limit."
819
  msgstr ""
820
 
821
+ #: ../admin/config/index.php:186
822
  msgid "IP Lookup"
823
  msgstr "Búsqueda de IP"
824
 
825
+ #: ../admin/config/index.php:186
826
  msgid "Customize the Geolocation service to be used in the reports."
827
  msgstr ""
828
  "Personalizar el servicio de Geolocalización de ser utilizado en los informes."
829
 
830
+ #: ../admin/config/index.php:188
831
  msgid "Activity Log"
832
  msgstr "Bitácora de actividades"
833
 
834
+ #: ../admin/config/index.php:189
835
  msgid "Live Stream"
836
  msgstr "Transmisión en Vivo"
837
 
838
+ #: ../admin/config/index.php:189
839
  #, fuzzy
840
  msgid ""
841
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
845
  "segundos. Introduzca <strong> 0 </strong> (número cero) para deshabilitar "
846
  "esta funcionalidad."
847
 
848
+ #: ../admin/config/index.php:190
849
  #, fuzzy
850
  msgid "Specify the number of items in the Activity Log."
851
  msgstr "Especifica el número de elementos en Ahora."
852
 
853
+ #: ../admin/config/index.php:193
854
  msgid "Custom CSS"
855
  msgstr "CSS personalizado"
856
 
857
+ #: ../admin/config/index.php:193
858
  #, fuzzy
859
  msgid ""
860
  "Paste here your custom stylesheet to personalize the way your reports look. "
868
  "target='_blank'> Compruebe la FAQ </a> para obtener más información sobre "
869
  "cómo utilizar esta funcionalidad."
870
 
871
+ #: ../admin/config/index.php:194
872
  #, fuzzy
873
  msgid "Chart Colors"
874
  msgstr "Controles de gráfica"
875
 
876
+ #: ../admin/config/index.php:194
877
  msgid ""
878
  "Customize the look and feel of your charts by assigning personalized colors "
879
  "to each metric. List 4 hex colors separated by commas, strictly in the "
881
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
882
  msgstr ""
883
 
884
+ #: ../admin/config/index.php:195
885
  #, fuzzy
886
  msgid "Show User Agent"
887
  msgstr "Buscadores"
888
 
889
+ #: ../admin/config/index.php:195
890
  msgid ""
891
  "Choose if you want to see the browser name or a complete user agent string "
892
  "when hovering on browser icons."
894
  "Seleccione si desea ver el nombre del navegador o una cadena completa de "
895
  "agente de usuario al pasar el cursor sobre los iconos del navegador."
896
 
897
+ #: ../admin/config/index.php:196
898
  #, fuzzy
899
  msgid "Enable SOV"
900
  msgstr "Habilitar CDN"
901
 
902
+ #: ../admin/config/index.php:196
903
  msgid ""
904
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
905
  "the subject, object, and verb of a sentence appear in that order, like in "
906
  "Japanese."
907
  msgstr ""
908
 
909
+ #: ../admin/config/index.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
910
  msgid "Access Control"
911
  msgstr ""
912
 
913
+ #: ../admin/config/index.php:204
914
  #, fuzzy
915
  msgid "Restrict Authors"
916
  msgstr "Autor de la entrada(sección)"
917
 
918
+ #: ../admin/config/index.php:204
919
  #, fuzzy
920
  msgid ""
921
  "Enable this option if you want your authors to only see stats related to "
924
  "Habilite esta opción si desea que sus autores sólo vean las estadísticas "
925
  "relacionadas con su propio contenido"
926
 
927
+ #: ../admin/config/index.php:205 ../admin/config/index.php:209
928
  #, fuzzy
929
  msgid "Capability"
930
  msgstr "Navegador"
931
 
932
+ #: ../admin/config/index.php:205
933
  #, fuzzy
934
  msgid ""
935
  "Specify the minimum <a href='http://codex.wordpress.org/"
947
  "blanca 'Acceso de lectura' aquí abajo. En este caso, la lista tiene "
948
  "prioridad sobre la capacidad."
949
 
950
+ #: ../admin/config/index.php:206 ../admin/config/index.php:210
951
  msgid "Whitelist"
952
  msgstr "Lista blanca"
953
 
954
+ #: ../admin/config/index.php:206
955
  msgid ""
956
  "List all the users who should have access to the reports, separated by "
957
  "commas. Administrators are implicitly allowed, so you don't need to list "
962
  "es necesario enumerarlos aquí. Los nombres de usuario distinguen entre "
963
  "mayúsculas y minúsculasdefecto."
964
 
965
+ #: ../admin/config/index.php:208 ../admin/config/index.php:233
966
+ #: ../admin/wp-slimstat-admin.php:636 ../admin/wp-slimstat-admin.php:654
967
+ #: ../admin/wp-slimstat-admin.php:657
968
  #, fuzzy
969
  msgid "Settings"
970
  msgstr "Seleccionar orden"
971
 
972
+ #: ../admin/config/index.php:209
973
  #, fuzzy
974
  msgid ""
975
  "Specify the minimum <a href='http://codex.wordpress.org/"
983
  "blanca de aquí abajo se puede utilizar para anular esta opción para usuarios "
984
  "específicos."
985
 
986
+ #: ../admin/config/index.php:210
987
  msgid ""
988
  "List all the users who can edit these options, separated by commas. Please "
989
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
994
  "implícitamente permitidos, así que ¡no se olvide de incluirse a si mismo! "
995
  "Los nombres de usuario distinguen entre mayúsculas y minúsculas."
996
 
997
+ #: ../admin/config/index.php:215
998
  msgid "Maintenance"
999
  msgstr "Mantenimiento"
1000
 
1001
+ #: ../admin/config/index.php:220 ../admin/view/addons.php:32
1002
+ #: ../admin/wp-slimstat-admin.php:124
 
1003
  msgid "Add-ons"
1004
  msgstr "Añadidos"
1005
 
1031
  msgid "The geolocation database has been installed on your server."
1032
  msgstr ""
1033
 
1034
+ #: ../admin/config/maintenance.php:82
 
 
 
 
 
 
 
 
 
1035
  msgid "Your reports were successfully restored to their default arrangement."
1036
  msgstr ""
1037
  "Sus informes fueron restaurados con éxito a su disposición de forma "
1038
  "predeterminada."
1039
 
1040
+ #: ../admin/config/maintenance.php:92
1041
  #, fuzzy
1042
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1043
  msgstr "Sus tablas WP SLIMStat han sido convertidas correctamente a. InnoDB"
1044
 
1045
+ #: ../admin/config/maintenance.php:98
1046
  #, fuzzy
1047
  msgid "All the archived records were successfully deleted."
1048
  msgstr "Todos los registros se han eliminado con éxito."
1049
 
1050
+ #: ../admin/config/maintenance.php:106
1051
  msgid "All the records were successfully deleted."
1052
  msgstr "Todos los registros se han eliminado con éxito."
1053
 
1054
+ #: ../admin/config/maintenance.php:128
1055
+ msgid "Troubleshooting"
1056
  msgstr ""
1057
 
1058
+ #: ../admin/config/maintenance.php:131
1059
  #, fuzzy
1060
  msgid "Tracker Status"
1061
  msgstr "Rastreador"
1062
 
1063
+ #: ../admin/config/maintenance.php:133
1064
  #, fuzzy
1065
+ msgid "Reset the tracker status"
1066
+ msgstr "Rastreador"
1067
 
1068
+ #: ../admin/config/maintenance.php:133
1069
  msgid "No Errors so far"
1070
  msgstr ""
1071
 
1072
+ #: ../admin/config/maintenance.php:134
1073
  msgid ""
1074
  "The information here above is useful to troubleshoot issues with the "
1075
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1076
  "the tracker could not record a pageview and are indicative of some kind of "
1077
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1078
  "most recent pageview was not recorded, based on your settings (filters, "
1079
+ "blackslists, etc). Please include the message here above when sending a "
1080
+ "support request."
1081
  msgstr ""
1082
 
1083
+ #: ../admin/config/maintenance.php:140
1084
  #, fuzzy
1085
  msgid "Enable SQL Debug"
1086
  msgstr "Habilitar modo Espía"
1087
 
1088
+ #: ../admin/config/maintenance.php:143
1089
  msgid ""
1090
  "Display the SQL code used to retrieve the data from the database. Useful to "
1091
  "troubleshoot issues with data consistency or missing pageviews."
1092
  msgstr ""
1093
 
1094
+ #: ../admin/config/maintenance.php:147
1095
  msgid "Disable SQL Debug"
1096
  msgstr ""
1097
 
1098
+ #: ../admin/config/maintenance.php:150
1099
  msgid "Deactivate the SQL output on top of each report."
1100
  msgstr ""
1101
 
1102
+ #: ../admin/config/maintenance.php:155
 
 
 
 
1103
  #, fuzzy
1104
  msgid ""
1105
  "Are you sure you want to restore the default arrangement of your reports?"
1107
  "¿Está seguro de que desea restaurar la disposición por defecto de sus "
1108
  "informes?"
1109
 
1110
+ #: ../admin/config/maintenance.php:155
1111
  msgid "No Panic Button"
1112
  msgstr "Botón No Pánico"
1113
 
1114
+ #: ../admin/config/maintenance.php:157
1115
  #, fuzzy
1116
  msgid ""
1117
  "Reset the default arrangement of your reports. Helpful when, for some "
1121
  "Cambiar la disposición por defecto de sus informes. Útil cuando, por alguna "
1122
  "razón, los informes desaparecen de sus paneles."
1123
 
1124
+ #: ../admin/config/maintenance.php:161
1125
  msgid "Data Maintenance"
1126
  msgstr "Mantenimiento de Datos"
1127
 
1128
+ #: ../admin/config/maintenance.php:164
1129
  #, fuzzy
1130
  msgid "Delete pageviews where"
1131
  msgstr "Filtrar páginas visitadas dondé:"
1132
 
1133
+ #: ../admin/config/maintenance.php:178 ../admin/view/index.php:16
1134
  msgid "equals"
1135
  msgstr "es igual a"
1136
 
1137
+ #: ../admin/config/maintenance.php:179 ../admin/view/index.php:17
1138
  msgid "is not equal to"
1139
  msgstr "no es igual a"
1140
 
1141
+ #: ../admin/config/maintenance.php:180 ../admin/view/index.php:18
1142
  #, fuzzy
1143
  msgid "contains"
1144
  msgstr "Contiene"
1145
 
1146
+ #: ../admin/config/maintenance.php:181 ../admin/view/index.php:19
1147
  msgid "is included in"
1148
  msgstr ""
1149
 
1150
+ #: ../admin/config/maintenance.php:182 ../admin/view/index.php:20
1151
  #, fuzzy
1152
  msgid "does not contain"
1153
  msgstr "No contiene"
1154
 
1155
+ #: ../admin/config/maintenance.php:183 ../admin/view/index.php:21
1156
  #, fuzzy
1157
  msgid "starts with"
1158
  msgstr "Empieza por"
1159
 
1160
+ #: ../admin/config/maintenance.php:184 ../admin/view/index.php:22
1161
  #, fuzzy
1162
  msgid "ends with"
1163
  msgstr "Acaba en"
1164
 
1165
+ #: ../admin/config/maintenance.php:185 ../admin/view/index.php:23
1166
  msgid "sounds like"
1167
  msgstr "suena como"
1168
 
1169
+ #: ../admin/config/maintenance.php:186 ../admin/view/index.php:24
1170
  msgid "is greater than"
1171
  msgstr "es mayor que"
1172
 
1173
+ #: ../admin/config/maintenance.php:187 ../admin/view/index.php:25
1174
  msgid "is less than"
1175
  msgstr "es menor que"
1176
 
1177
+ #: ../admin/config/maintenance.php:188 ../admin/view/index.php:27
1178
  msgid "matches"
1179
  msgstr "coincide"
1180
 
1181
+ #: ../admin/config/maintenance.php:189 ../admin/view/index.php:28
1182
  #, fuzzy
1183
  msgid "does not match"
1184
  msgstr "No contiene"
1185
 
1186
+ #: ../admin/config/maintenance.php:190 ../admin/view/index.php:29
1187
  msgid "is empty"
1188
  msgstr "está vacío"
1189
 
1190
+ #: ../admin/config/maintenance.php:191 ../admin/view/index.php:30
1191
  msgid "is not empty"
1192
  msgstr "no está vacío"
1193
 
1194
+ #: ../admin/config/maintenance.php:194 ../admin/view/index.php:42
1195
  #: ../admin/view/index.php:105
1196
  msgid "Apply"
1197
  msgstr "Aplicar"
1198
 
1199
+ #: ../admin/config/maintenance.php:195
1200
  msgid ""
1201
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1202
  msgstr ""
1203
  "¿Está seguro que desea eliminar PERMANENTEMENTE estos registros de su base "
1204
  "de datos?"
1205
 
1206
+ #: ../admin/config/maintenance.php:202
1207
  msgid ""
1208
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1209
  "database?"
1211
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1212
  "base de datos?"
1213
 
1214
+ #: ../admin/config/maintenance.php:202
1215
  #, fuzzy
1216
  msgid "Delete All Records"
1217
  msgstr "Paginas visitadas"
1218
 
1219
+ #: ../admin/config/maintenance.php:205
1220
  #, fuzzy
1221
  msgid ""
1222
+ "Erase all the information collected so far by Slimstat, but not the archived "
1223
+ "records (<code>wp_slim_stats_archive</code>). This operation <strong>does "
1224
+ "not</strong> reset your settings and it can be undone by manually copying "
1225
+ "your records from the archive table."
1226
  msgstr ""
1227
  "Borrar toda la información recopilada hasta el momento por WP SLIMStat. Esta "
1228
  "<strong> operación no </strong> restablece la configuración."
1229
 
1230
+ #: ../admin/config/maintenance.php:211
1231
  #, fuzzy
1232
  msgid ""
1233
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1236
  "¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
1237
  "base de datos?"
1238
 
1239
+ #: ../admin/config/maintenance.php:211
1240
  #, fuzzy
1241
  msgid "Delete Archive"
1242
  msgstr "Filtrar páginas visitadas dondé:"
1243
 
1244
+ #: ../admin/config/maintenance.php:214
1245
  msgid "Erase all the archived records. This operation cannot be undone."
1246
  msgstr ""
1247
 
1248
+ #: ../admin/config/maintenance.php:220
1249
  msgid "Improve Performance"
1250
  msgstr "Mejorar el rendimiento"
1251
 
1252
+ #: ../admin/config/maintenance.php:224
1253
  msgid ""
1254
  "Please note that you will need about 30% more DB space to store the extra "
1255
  "information required."
1257
  "Por favor, tenga en cuenta que necesitará un 30% más de espacio BD para "
1258
  "almacenar la información adicional que se requiere."
1259
 
1260
+ #: ../admin/config/maintenance.php:228
1261
  msgid "Save DB Space"
1262
  msgstr "Guardar Espacio BD"
1263
 
1264
+ #: ../admin/config/maintenance.php:231
1265
  #, fuzzy
1266
  msgid ""
1267
  "Please note that by removing table indexes, Slimstat's performance will be "
1270
  "Tenga en cuenta que al eliminar los índices de tabla, el rendimiento de WP "
1271
  "SLIMStat se verá afectado."
1272
 
1273
+ #: ../admin/config/maintenance.php:236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1274
  msgid "MaxMind IP to Country"
1275
  msgstr ""
1276
 
1277
+ #: ../admin/config/maintenance.php:242
1278
  msgid ""
1279
  "Do you want to download and install the geolocation database from MaxMind's "
1280
  "server?"
1281
  msgstr ""
1282
 
1283
+ #: ../admin/config/maintenance.php:242
1284
  msgid "Install GeoLite DB"
1285
  msgstr ""
1286
 
1287
+ #: ../admin/config/maintenance.php:245
1288
  msgid "Do you want to uninstall the geolocation database?"
1289
  msgstr ""
1290
 
1291
+ #: ../admin/config/maintenance.php:245
1292
  msgid "Uninstall GeoLite DB"
1293
  msgstr ""
1294
 
1295
+ #: ../admin/config/maintenance.php:249
1296
  msgid ""
1297
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1298
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1302
  "enable this functionality."
1303
  msgstr ""
1304
 
1305
+ #: ../admin/config/maintenance.php:254
1306
  msgid "Import and Export"
1307
  msgstr "Importar y Exportar"
1308
 
1309
+ #: ../admin/config/maintenance.php:258
1310
  #, fuzzy
1311
  msgid ""
1312
  "Here below you can find the current configuration string for Slimstat. You "
1317
  "SlimStat. Puede actualizar su configuración pegando una nueva cadena aquí "
1318
  "abajo y haciendo clic en Importar."
1319
 
1320
+ #: ../admin/config/maintenance.php:263
1321
  msgid "Import"
1322
  msgstr "Importar"
1323
 
1324
+ #: ../admin/config/maintenance.php:264
1325
  msgid "Are you sure you want to OVERWRITE your current settings?"
1326
  msgstr "¿Seguro de que desea sobrescribir la configuración actual?"
1327
 
1328
+ #: ../admin/config/maintenance.php:269
1329
  msgid "Database Information"
1330
  msgstr "Información Base de datos"
1331
 
1332
+ #: ../admin/config/maintenance.php:272
1333
  #, fuzzy
1334
  msgid "Engine"
1335
  msgstr "Motores de Búsqueda"
1336
 
1337
+ #: ../admin/config/maintenance.php:276
1338
  msgid "switch to InnoDB"
1339
  msgstr "cambiar a InnoDB"
1340
 
1341
+ #: ../admin/config/maintenance.php:287
1342
  #, fuzzy
1343
  msgid "records"
1344
  msgstr "Palabras clave"
1419
  msgid "Load"
1420
  msgstr ""
1421
 
1422
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1406
1423
  msgid "Today"
1424
  msgstr "Hoy"
1425
 
1426
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1409
1427
  msgid "Yesterday"
1428
  msgstr "Ayer"
1429
 
1490
  "country of origin."
1491
  msgstr ""
1492
 
1493
+ #: ../admin/view/layout.php:47
1494
  msgid "Customize and organize your reports"
1495
  msgstr ""
1496
 
1497
+ #: ../admin/view/layout.php:48
1498
  msgid ""
1499
  "Drag and drop report placeholders from one container to another, to "
1500
  "customize the information you want to see right away when you open Slimstat. "
1506
  "(Screen Options tab)."
1507
  msgstr ""
1508
 
1509
+ #: ../admin/view/layout.php:60
1510
  msgid "Clone"
1511
  msgstr ""
1512
 
1513
+ #: ../admin/view/layout.php:64
1514
  #, fuzzy
1515
  msgid "Delete"
1516
  msgstr "Palabras clave"
1531
  msgid "Syndication Reader"
1532
  msgstr "Lector de Sindicación"
1533
 
1534
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1032
1535
+ #: ../admin/view/wp-slimstat-reports.php:1715
1536
  msgid "No data to display"
1537
  msgstr "No hay datos que mostrar"
1538
 
1542
  msgstr "Fecha/Hora"
1543
 
1544
  # Unknown
1545
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1084
1546
+ #: ../admin/view/wp-slimstat-reports.php:1758 ../wp-slimstat.php:1355
1547
  msgid "c-"
1548
  msgstr "Unknown"
1549
 
1550
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1551
+ #: ../admin/wp-slimstat-admin.php:968 ../admin/wp-slimstat-admin.php:1008
1552
  msgid "Originating IP"
1553
  msgstr "IP de Origen"
1554
 
1555
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1181
1556
+ #: ../admin/view/wp-slimstat-reports.php:1186
1557
+ #: ../admin/view/wp-slimstat-reports.php:1191
1558
  #, fuzzy
1559
  msgid "Open this URL in a new window"
1560
  msgstr "Abrir %s en una nueva ventana"
1563
  msgid "Local search results page"
1564
  msgstr "Página de resultados de búsqueda local"
1565
 
1566
+ #: ../admin/view/right-now.php:157 ../admin/view/wp-slimstat-db.php:42
1567
+ #: ../admin/view/wp-slimstat-reports.php:242
1568
+ #: ../admin/view/wp-slimstat-reports.php:251
1569
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
1570
  #, fuzzy
1571
  msgid "Search Terms"
1572
  msgstr "Principales Recursos"
1573
 
1574
+ #: ../admin/view/right-now.php:166
1575
  msgid "Server Latency and Page Speed in milliseconds"
1576
  msgstr ""
1577
 
1578
+ #: ../admin/view/right-now.php:166
1579
  msgid "SL"
1580
  msgstr ""
1581
 
1582
+ #: ../admin/view/right-now.php:166
1583
  msgid "PS"
1584
  msgstr ""
1585
 
1586
+ #: ../admin/view/right-now.php:173
1587
  #, fuzzy
1588
+ msgid "Time spent on this page"
1589
  msgstr "Abrir %s en una nueva ventana"
1590
 
1591
+ #: ../admin/view/right-now.php:183
1592
  #, fuzzy
1593
  msgid "Open this referrer in a new window"
1594
  msgstr "Abrir referido en una nueva página"
1595
 
1596
+ #: ../admin/view/right-now.php:184
1597
  #, fuzzy
1598
  msgid "Open this outbound link in a new window"
1599
  msgstr "Abrir %s en una nueva ventana"
1600
 
1601
+ #: ../admin/view/right-now.php:185
1602
  #, fuzzy
1603
  msgid "Content Type"
1604
  msgstr "Contenido"
1605
 
1606
+ #: ../admin/view/right-now.php:188
1607
  #, fuzzy
1608
  msgid "Delete this pageview"
1609
  msgstr "Filtrar páginas visitadas dondé:"
1610
 
1611
+ #: ../admin/view/right-now.php:199
1612
  #, fuzzy
1613
  msgid "User Logged In"
1614
  msgstr "Buscadores"
1615
 
1616
+ #: ../admin/view/right-now.php:209
1617
  #, fuzzy
1618
  msgid "User Logged Out"
1619
  msgstr "Buscadores"
1620
 
1621
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:984
1622
  msgid "Browser"
1623
  msgstr "Navegador"
1624
 
1625
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:985
1626
  msgid "Country Code"
1627
  msgstr "Código de Pais"
1628
 
1630
  msgid "IP Address"
1631
  msgstr "Dirección IP"
1632
 
1633
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:988
1634
  msgid "Language Code"
1635
  msgstr "Código de Idioma"
1636
 
1637
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1638
+ #: ../admin/wp-slimstat-admin.php:989
1639
  msgid "Operating System"
1640
  msgstr "Sistema Operativo"
1641
 
1642
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1643
+ #: ../admin/wp-slimstat-admin.php:990
1644
  msgid "Permalink"
1645
  msgstr "Enlace Permanente"
1646
 
1647
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:991
1648
  msgid "Referer"
1649
  msgstr "Referido"
1650
 
1651
+ #: ../admin/view/wp-slimstat-db.php:47
1652
  #, fuzzy
1653
+ msgid "Visitor's Username"
1654
  msgstr "Visitantes"
1655
 
1656
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:974
1657
  #, fuzzy
1658
  msgid "Outbound Link"
1659
  msgstr "Enlaces Salientes Recientes"
1667
  msgstr "-- Filtros Avanzados --"
1668
 
1669
  #: ../admin/view/wp-slimstat-db.php:52
1670
+ #: ../admin/view/wp-slimstat-reports.php:372
1671
  #, fuzzy
1672
  msgid "Browser Capabilities"
1673
  msgstr "Navegador"
1674
 
1675
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1003
1676
  #, fuzzy
1677
  msgid "Browser Version"
1678
  msgstr "Versión del Navegador"
1679
 
1680
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1004
1681
  #, fuzzy
1682
  msgid "Browser Type"
1683
  msgstr "Navegador"
1684
 
1685
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:973
1686
  #, fuzzy
1687
  msgid "User Agent"
1688
  msgstr "Buscadores"
1696
  msgid "Server Latency"
1697
  msgstr ""
1698
 
1699
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1006
1700
  msgid "Post Author"
1701
  msgstr "Autor de la entrada(sección)"
1702
 
1703
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1007
1704
  msgid "Post Category ID"
1705
  msgstr "ID de la entrada(sección) de la Categoria"
1706
 
1707
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1009
1708
  #, fuzzy
1709
  msgid "Resource Content Type"
1710
  msgstr "Contenidos Recientes"
1727
  msgid "Viewport Size"
1728
  msgstr ""
1729
 
1730
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1011
1731
  #, fuzzy
1732
  msgid "Visit ID"
1733
  msgstr "Visitas"
1774
  msgstr ""
1775
 
1776
  #: ../admin/view/wp-slimstat-db.php:96
1777
+ #: ../admin/view/wp-slimstat-reports.php:1729
1778
  msgid "Type"
1779
  msgstr ""
1780
 
1797
  msgid "Offset"
1798
  msgstr ""
1799
 
1800
+ #: ../admin/view/wp-slimstat-reports.php:65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1801
  msgid "Chart controls"
1802
  msgstr "Controles de gráfica"
1803
 
1804
+ #: ../admin/view/wp-slimstat-reports.php:65
1805
  msgid "Use your mouse wheel to zoom in and out"
1806
  msgstr "Use su ratón para acercarse y alejarse"
1807
 
1808
+ #: ../admin/view/wp-slimstat-reports.php:65
1809
  msgid "While zooming in, drag the chart to move to a different area"
1810
  msgstr "Al acercarse, arrastre la gráfica para mverla a otra área"
1811
 
1812
+ #: ../admin/view/wp-slimstat-reports.php:68
 
 
 
 
1813
  #, fuzzy
1814
  msgid "Visitors Activity"
1815
  msgstr "Bitácora de actividades"
1816
 
1817
+ #: ../admin/view/wp-slimstat-reports.php:77
1818
  #, fuzzy
1819
  msgid "Color codes"
1820
  msgstr "Código de Pais"
1821
 
1822
+ #: ../admin/view/wp-slimstat-reports.php:77
1823
  #, fuzzy
1824
  msgid "From search result page"
1825
  msgstr "Desde una página con resultados de búsqueda"
1826
 
1827
+ #: ../admin/view/wp-slimstat-reports.php:77 ../admin/wp-slimstat-admin.php:966
1828
  #, fuzzy
1829
  msgid "Known Visitor"
1830
  msgstr "Palabras clave recientes"
1831
 
1832
+ #: ../admin/view/wp-slimstat-reports.php:77
1833
  #, fuzzy
1834
  msgid "Known Users"
1835
  msgstr "Navegadores recientes"
1836
 
1837
+ #: ../admin/view/wp-slimstat-reports.php:77
1838
  msgid "Other Humans"
1839
  msgstr "Otros seres humanos"
1840
 
1841
+ #: ../admin/view/wp-slimstat-reports.php:77
1842
  msgid "Bot or Crawler"
1843
  msgstr "Bot o Crawler"
1844
 
1845
+ #: ../admin/view/wp-slimstat-reports.php:99
1846
  #, fuzzy
1847
  msgid "About Slimstat"
1848
  msgstr "Acerca de WP-SlimStat"
1849
 
1850
+ #: ../admin/view/wp-slimstat-reports.php:108
1851
  #, fuzzy
1852
  msgid "Traffic at a Glance"
1853
  msgstr "Un vistazo"
1854
 
1855
+ #: ../admin/view/wp-slimstat-reports.php:118
1856
  #, fuzzy
1857
  msgid "Currently Online"
1858
  msgstr "Filtros Actuales:"
1859
 
1860
+ #: ../admin/view/wp-slimstat-reports.php:131
1861
  #, fuzzy
1862
  msgid "Recent Search Terms"
1863
  msgstr "Búsquedas Internas Recientes"
1864
 
1865
+ #: ../admin/view/wp-slimstat-reports.php:142
1866
  msgid "Keywords used by your visitors to find your website on a search engine."
1867
  msgstr ""
1868
  "Palabras clave utilizadas por los visitantes para encontrar su sitio en un "
1869
  "motor de búsqueda."
1870
 
1871
+ #: ../admin/view/wp-slimstat-reports.php:145
1872
  #, fuzzy
1873
  msgid "Top Web Pages"
1874
  msgstr "Principales Páginas de Salida"
1875
 
1876
+ #: ../admin/view/wp-slimstat-reports.php:156
1877
  msgid ""
1878
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1879
  "site, including posts, products, categories, and so on. You can set the "
1882
  "have."
1883
  msgstr ""
1884
 
1885
+ #: ../admin/view/wp-slimstat-reports.php:159
1886
  #, fuzzy
1887
+ msgid "Top Referring Domains"
1888
+ msgstr "Motores de Búsqueda"
1889
 
1890
+ #: ../admin/view/wp-slimstat-reports.php:173
1891
  #, fuzzy
1892
  msgid "Top Known Visitors"
1893
  msgstr "Palabras clave recientes"
1894
 
1895
+ #: ../admin/view/wp-slimstat-reports.php:184
1896
  #, fuzzy
1897
  msgid "Top Search Terms"
1898
  msgstr "Principales Recursos"
1899
 
1900
+ #: ../admin/view/wp-slimstat-reports.php:196
1901
  msgid "Top Countries"
1902
  msgstr "Paises que más visitan"
1903
 
1904
+ #: ../admin/view/wp-slimstat-reports.php:205
1905
  #, fuzzy
1906
  msgid ""
1907
  "You can configure Slimstat to ignore a specific Country by setting the "
1911
  "el establecimiento de el filtro correspondiente en Configuración> SLIMStat> "
1912
  "Filtros."
1913
 
1914
+ #: ../admin/view/wp-slimstat-reports.php:208
1915
  msgid "Rankings"
1916
  msgstr "Calificaciones"
1917
 
1918
+ #: ../admin/view/wp-slimstat-reports.php:212
1919
  #, fuzzy
1920
  msgid ""
1921
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1926
  "para medir el ranking de su sitio. Los valores se actualizan cada 12 horas. "
1927
  "Filtros indicados anteriormente no se aplican a este informe."
1928
 
1929
+ #: ../admin/view/wp-slimstat-reports.php:215
1930
  #, fuzzy
1931
  msgid "Top Language Families"
1932
  msgstr "Idiomas"
1933
 
1934
+ #: ../admin/view/wp-slimstat-reports.php:228
1935
  #, fuzzy
1936
  msgid "Users Currently Online"
1937
  msgstr "Filtros Actuales:"
1938
 
1939
+ #: ../admin/view/wp-slimstat-reports.php:239
1940
  #, fuzzy
1941
  msgid ""
1942
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1948
  "visitantes que regresan. Por favor, tenga en cuenta que los visitantes "
1949
  "también incluyen a los usuarios registrados."
1950
 
1951
+ #: ../admin/view/wp-slimstat-reports.php:252
1952
  #, fuzzy
1953
  msgid "Unique Terms"
1954
  msgstr "IPs Unicas"
1955
 
1956
+ #: ../admin/view/wp-slimstat-reports.php:261
1957
+ #, fuzzy
1958
+ msgid "Top Referring URLs"
1959
+ msgstr "Motores de Búsqueda"
1960
+
1961
+ #: ../admin/view/wp-slimstat-reports.php:274
1962
  msgid "Human Visits"
1963
  msgstr "Visitas humanas"
1964
 
1965
+ #: ../admin/view/wp-slimstat-reports.php:283
1966
+ #: ../admin/view/wp-slimstat-reports.php:1440
1967
  msgid "Visits"
1968
  msgstr "Visitas"
1969
 
1970
+ #: ../admin/view/wp-slimstat-reports.php:293
1971
  #, fuzzy
1972
  msgid "Audience Overview"
1973
  msgstr "Visión general"
1974
 
1975
+ #: ../admin/view/wp-slimstat-reports.php:300
1976
  msgid ""
1977
  "Where not otherwise specified, the metrics in this report are referred to "
1978
  "human visitors."
1979
  msgstr ""
1980
 
1981
+ #: ../admin/view/wp-slimstat-reports.php:303
1982
  #, fuzzy
1983
  msgid "Top Languages"
1984
  msgstr "Idiomas"
1985
 
1986
+ #: ../admin/view/wp-slimstat-reports.php:314
1987
  #, fuzzy
1988
  msgid "Top Browsers"
1989
  msgstr "Navegador"
1990
 
1991
+ #: ../admin/view/wp-slimstat-reports.php:325
1992
  #, fuzzy
1993
  msgid "Top Service Providers"
1994
  msgstr "Principales Recursos"
1995
 
1996
+ #: ../admin/view/wp-slimstat-reports.php:334
1997
+ #: ../admin/view/wp-slimstat-reports.php:346
1998
  #, fuzzy
1999
  msgid ""
2000
  "Internet Service Provider: a company which provides other companies or "
2008
  "IP específicas estableciendo el filtro correspondiente en Configuración> "
2009
  "SLIMStat> Filtros."
2010
 
2011
+ #: ../admin/view/wp-slimstat-reports.php:337
2012
  #, fuzzy
2013
  msgid "Top Operating Systems"
2014
  msgstr "Sistemas Operativos"
2015
 
2016
+ #: ../admin/view/wp-slimstat-reports.php:349
2017
  #, fuzzy
2018
  msgid "Top Screen Resolutions"
2019
  msgstr "Resolución de Pantalla"
2020
 
2021
+ #: ../admin/view/wp-slimstat-reports.php:361
2022
  #, fuzzy
2023
  msgid "Top Viewport Sizes"
2024
  msgstr "Principales Páginas de Salida"
2025
 
2026
+ #: ../admin/view/wp-slimstat-reports.php:381
2027
  #, fuzzy
2028
  msgid "Visit Duration"
2029
  msgstr "Visitas"
2030
 
2031
+ #: ../admin/view/wp-slimstat-reports.php:388
2032
  #, fuzzy
2033
  msgid ""
2034
  "All values represent the percentages of pageviews within the corresponding "
2037
  "Mapa del Mundo - Los valores representan el porcentaje de visitas "
2038
  "procedentes de ese país"
2039
 
2040
+ #: ../admin/view/wp-slimstat-reports.php:391
2041
  msgid "Recent Countries"
2042
  msgstr "Paises Recientes"
2043
 
2044
+ #: ../admin/view/wp-slimstat-reports.php:402
2045
  #, fuzzy
2046
  msgid "Recent Viewport Sizes"
2047
  msgstr "Paises Recientes"
2048
 
2049
+ #: ../admin/view/wp-slimstat-reports.php:413
2050
  #, fuzzy
2051
  msgid "Recent Operating Systems"
2052
  msgstr "Sistemas Operativos"
2053
 
2054
+ #: ../admin/view/wp-slimstat-reports.php:424
2055
  #, fuzzy
2056
  msgid "Recent Browsers"
2057
  msgstr "Contenidos Recientes"
2058
 
2059
+ #: ../admin/view/wp-slimstat-reports.php:435
2060
  #, fuzzy
2061
  msgid "Recent Languages"
2062
  msgstr "Idiomas"
2063
 
2064
+ #: ../admin/view/wp-slimstat-reports.php:446
2065
  #, fuzzy
2066
  msgid "Top Browser Families"
2067
  msgstr "Navegador"
2068
 
2069
+ #: ../admin/view/wp-slimstat-reports.php:455
2070
  msgid ""
2071
  "This report shows you what user agent families (no version considered) are "
2072
  "popular among your visitors."
2074
  "Este informe muestra qué familias de agentes de usuarios son populares entre "
2075
  "los visitantes (no considerada la versión)."
2076
 
2077
+ #: ../admin/view/wp-slimstat-reports.php:458
2078
  msgid "Top OS Families"
2079
  msgstr "Páginas Recientes no encontradas"
2080
 
2081
+ #: ../admin/view/wp-slimstat-reports.php:469
2082
  msgid ""
2083
  "This report shows you what operating system families (no version considered) "
2084
  "are popular among your visitors."
2086
  "Este informe le muestra qué familias de sistema operativo (sin versión "
2087
  "considerado) son populares entre los visitantes."
2088
 
2089
+ #: ../admin/view/wp-slimstat-reports.php:472
2090
  #, fuzzy
2091
  msgid "Recent Users"
2092
  msgstr "Buscadores"
2093
 
2094
+ #: ../admin/view/wp-slimstat-reports.php:484
2095
  #, fuzzy
2096
  msgid "Top Users"
2097
  msgstr "Buscadores"
2098
 
2099
+ #: ../admin/view/wp-slimstat-reports.php:496
2100
+ #: ../admin/view/wp-slimstat-reports.php:505
2101
  #, fuzzy
2102
  msgid "Users"
2103
  msgstr "Navegadores recientes"
2104
 
2105
+ #: ../admin/view/wp-slimstat-reports.php:506
2106
  #, fuzzy
2107
  msgid "Unique Users"
2108
  msgstr "IPs Unicas"
2109
 
2110
+ #: ../admin/view/wp-slimstat-reports.php:515
2111
+ #: ../admin/wp-slimstat-admin.php:106
2112
+ msgid "Traffic Sources"
2113
+ msgstr "Origen del Tráfico"
2114
+
2115
+ #: ../admin/view/wp-slimstat-reports.php:524
2116
  msgid "Domains"
2117
  msgstr "Dominios"
2118
 
2119
+ #: ../admin/view/wp-slimstat-reports.php:534
2120
  #, fuzzy
2121
  msgid "Traffic Summary"
2122
  msgstr "Origen del Tráfico"
2123
 
2124
+ #: ../admin/view/wp-slimstat-reports.php:543
2125
  #, fuzzy
2126
  msgid "Top Referring Search Engines"
2127
  msgstr "Motores de Búsqueda"
2128
 
2129
+ #: ../admin/view/wp-slimstat-reports.php:572
2130
  msgid "Recent Outbound Links"
2131
  msgstr "Enlaces Salientes Recientes"
2132
 
2133
+ #: ../admin/view/wp-slimstat-reports.php:584
2134
  #, fuzzy
2135
  msgid "Recent Posts"
2136
  msgstr "Contenidos Recientes"
2137
 
2138
+ #: ../admin/view/wp-slimstat-reports.php:612
2139
  msgid "Recent Feeds"
2140
  msgstr "Feeds Recientes"
2141
 
2142
+ #: ../admin/view/wp-slimstat-reports.php:624
2143
  msgid "Recent Pages Not Found"
2144
  msgstr "Páginas Recientes no encontradas"
2145
 
2146
+ #: ../admin/view/wp-slimstat-reports.php:636
2147
  msgid "Recent Internal Searches"
2148
  msgstr "Búsquedas Internas Recientes"
2149
 
2150
+ #: ../admin/view/wp-slimstat-reports.php:646
2151
  #, fuzzy
2152
  msgid "Searches performed using WordPress' built-in search functionality."
2153
  msgstr ""
2154
  "Búsquedas realizadas utilizando la funcionalidad integrada de búsqueda de "
2155
  "Wordpress"
2156
 
2157
+ #: ../admin/view/wp-slimstat-reports.php:649
2158
  #, fuzzy
2159
  msgid "Top Categories"
2160
  msgstr "Principales Páginas de Salida"
2161
 
2162
+ #: ../admin/view/wp-slimstat-reports.php:662
2163
  #, fuzzy
2164
  msgid "Top Downloads"
2165
  msgstr "Descargas Recientes"
2166
 
2167
+ #: ../admin/view/wp-slimstat-reports.php:673
2168
  msgid ""
2169
  "You can configure Slimstat to track specific file extensions as downloads."
2170
  msgstr ""
2171
 
2172
+ #: ../admin/view/wp-slimstat-reports.php:676
2173
  #, fuzzy
2174
  msgid "Recent Events"
2175
  msgstr "Contenidos Recientes"
2176
 
2177
+ #: ../admin/view/wp-slimstat-reports.php:685
2178
+ #: ../admin/view/wp-slimstat-reports.php:709
2179
  #, fuzzy
2180
  msgid ""
2181
  "This report lists any <em>event</em> occurred on your website. Please refer "
2185
  "Por favor, consulte las preguntas frecuentes para más información sobre cómo "
2186
  "aprovechar esta funcionalidad."
2187
 
2188
+ #: ../admin/view/wp-slimstat-reports.php:688
2189
  #, fuzzy
2190
  msgid "Top Posts"
2191
  msgstr "Paises que más visitan"
2192
 
2193
+ #: ../admin/view/wp-slimstat-reports.php:700
2194
  #, fuzzy
2195
  msgid "Top Events"
2196
  msgstr "Principales Páginas de Salida"
2197
 
2198
+ #: ../admin/view/wp-slimstat-reports.php:712
2199
  #, fuzzy
2200
  msgid "Top Internal Searches"
2201
  msgstr "Búsquedas Internas Recientes"
2202
 
2203
+ #: ../admin/view/wp-slimstat-reports.php:724
2204
  #, fuzzy
2205
  msgid "Recent Categories"
2206
  msgstr "Paises Recientes"
2207
 
2208
+ #: ../admin/view/wp-slimstat-reports.php:736
2209
  #, fuzzy
2210
  msgid "Top Pages Not Found"
2211
  msgstr "Principales Páginas de Salida"
2212
 
2213
+ #: ../admin/view/wp-slimstat-reports.php:748
2214
  #, fuzzy
2215
  msgid "Top Authors"
2216
  msgstr "Autor de la entrada(sección)"
2217
 
2218
+ #: ../admin/view/wp-slimstat-reports.php:759
2219
  #, fuzzy
2220
  msgid "Top Tags"
2221
  msgstr "Principales Páginas de Salida"
2222
 
2223
+ #: ../admin/view/wp-slimstat-reports.php:771
2224
  msgid "Recent Downloads"
2225
  msgstr "Descargas Recientes"
2226
 
2227
+ #: ../admin/view/wp-slimstat-reports.php:783
2228
  #, fuzzy
2229
  msgid "Top Outbound Links"
2230
  msgstr "Enlaces Salientes Recientes"
2231
 
2232
+ #: ../admin/view/wp-slimstat-reports.php:795
2233
  msgid "Your Website"
2234
  msgstr "Su sitio web"
2235
 
2236
+ #: ../admin/view/wp-slimstat-reports.php:802
2237
  msgid ""
2238
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2239
  "this report is not affected by the filters set here above."
2242
  "en cuenta que este informe no es afectado por los filtros establecidos aquí "
2243
  "arriba."
2244
 
2245
+ #: ../admin/view/wp-slimstat-reports.php:805
2246
  #, fuzzy
2247
  msgid "Top Bounce Pages"
2248
  msgstr "Porcentaje de Abandonos"
2249
 
2250
+ #: ../admin/view/wp-slimstat-reports.php:818
2251
  #, fuzzy
2252
  msgid "Top Exit Pages"
2253
  msgstr "Principales Páginas de Salida"
2254
 
2255
+ #: ../admin/view/wp-slimstat-reports.php:831
2256
  #, fuzzy
2257
  msgid "Top Entry Pages"
2258
  msgstr "Principales Páginas de Salida"
2259
 
2260
+ #: ../admin/view/wp-slimstat-reports.php:844
2261
+ #: ../admin/view/wp-slimstat-reports.php:853
2262
  #, fuzzy
2263
  msgid "Outbound Links"
2264
  msgstr "Enlaces Salientes Recientes"
2265
 
2266
+ #: ../admin/view/wp-slimstat-reports.php:854
2267
  msgid "Unique Outbound"
2268
  msgstr ""
2269
 
2270
+ #: ../admin/view/wp-slimstat-reports.php:863
2271
  msgid "World Map"
2272
  msgstr "Mapa del Mundo"
2273
 
2274
+ #: ../admin/view/wp-slimstat-reports.php:945
2275
  msgid "Refresh"
2276
  msgstr "Refrescar"
2277
 
2278
+ #: ../admin/view/wp-slimstat-reports.php:982
2279
  #, php-format
2280
  msgid "Results %s - %s of %s"
2281
  msgstr "Resultados %s - %s de %s"
2282
 
2283
+ #: ../admin/view/wp-slimstat-reports.php:984
2284
  msgid "Refresh in"
2285
  msgstr "Refrescar en"
2286
 
2287
+ #: ../admin/view/wp-slimstat-reports.php:1078
2288
  #, fuzzy
2289
  msgid "Category ID"
2290
  msgstr "ID de la entrada(sección) de la Categoria"
2291
 
2292
+ #: ../admin/view/wp-slimstat-reports.php:1083
2293
+ #: ../admin/view/wp-slimstat-reports.php:1097
2294
  #: ../admin/view/wp-slimstat-reports.php:1102
2295
  #, fuzzy
2296
  msgid "Code"
2297
  msgstr "Código OS"
2298
 
2299
+ #: ../admin/view/wp-slimstat-reports.php:1098
2300
+ #: ../languages/dynamic_strings.php:339 ../wp-slimstat.php:1367
2301
  msgid "l-"
2302
  msgstr "l-"
2303
 
2304
+ #: ../admin/view/wp-slimstat-reports.php:1115
2305
  msgid "URL"
2306
  msgstr ""
2307
 
2308
+ #: ../admin/view/wp-slimstat-reports.php:1128
2309
  #, fuzzy
2310
  msgid "Referrer"
2311
  msgstr "Referido"
2312
 
2313
+ #: ../admin/view/wp-slimstat-reports.php:1170
2314
+ #: ../admin/view/wp-slimstat-reports.php:1424
2315
+ #: ../admin/view/wp-slimstat-reports.php:1480
2316
+ #: ../admin/view/wp-slimstat-reports.php:1486
2317
+ #: ../admin/view/wp-slimstat-reports.php:1492
2318
+ #: ../admin/view/wp-slimstat-reports.php:1498
2319
+ #: ../admin/view/wp-slimstat-reports.php:1504
2320
+ #: ../admin/view/wp-slimstat-reports.php:1510
2321
+ #: ../admin/view/wp-slimstat-reports.php:1516
2322
+ #: ../admin/view/wp-slimstat-reports.php:1736
2323
  #, fuzzy
2324
  msgid "Hits"
2325
  msgstr "Visitas"
2326
 
2327
+ #: ../admin/view/wp-slimstat-reports.php:1351
2328
  #, fuzzy
2329
  msgid "Dataset Size"
2330
  msgstr "Tamaño de los Datos"
2331
 
2332
+ #: ../admin/view/wp-slimstat-reports.php:1353
2333
  msgid "Total number of records stored in the database."
2334
  msgstr ""
2335
 
2336
+ #: ../admin/view/wp-slimstat-reports.php:1355
2337
  #, fuzzy
2338
  msgid "DB Size"
2339
  msgstr "Tamaño de los Datos"
2340
 
2341
+ #: ../admin/view/wp-slimstat-reports.php:1358
2342
  #, fuzzy
2343
  msgid "Tracking Enabled"
2344
  msgstr "Seguimiento Activo"
2345
 
2346
+ #: ../admin/view/wp-slimstat-reports.php:1361
2347
  msgid "Javascript Mode"
2348
  msgstr "Modo Javascript"
2349
 
2350
+ #: ../admin/view/wp-slimstat-reports.php:1364
2351
  msgid "Tracking Browser Caps"
2352
  msgstr "Caps para rastreo de Navegador"
2353
 
2354
+ #: ../admin/view/wp-slimstat-reports.php:1367
2355
  msgid "Auto purge"
2356
  msgstr "Autopurgar"
2357
 
2358
+ #: ../admin/view/wp-slimstat-reports.php:1370
2359
  #, fuzzy
2360
  msgid "Oldest pageview"
2361
  msgstr "Visita más larga"
2362
 
2363
+ #: ../admin/view/wp-slimstat-reports.php:1371
2364
  #, fuzzy
2365
  msgid "No visits"
2366
  msgstr "Visitantes"
2367
 
2368
+ #: ../admin/view/wp-slimstat-reports.php:1373
2369
+ #: ../admin/wp-slimstat-admin.php:112
2370
+ #, fuzzy
2371
+ msgid "Geolocation"
2372
+ msgstr "director"
2373
+
2374
+ #: ../admin/view/wp-slimstat-reports.php:1375
2375
  msgid "Date when the MaxMind Geolocation database was last updated."
2376
  msgstr ""
2377
 
2378
+ #: ../admin/view/wp-slimstat-reports.php:1386
2379
+ #: ../admin/view/wp-slimstat-reports.php:1544
2380
  #, fuzzy
2381
  msgid ""
2382
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2385
  "Una petición para cargar un archivo HTML único. WP SlimStat registra un "
2386
  "\"pageview\" cada vez que se ejecuta el código de rastreo."
2387
 
2388
+ #: ../admin/view/wp-slimstat-reports.php:1388
2389
  #, fuzzy
2390
  msgid "Days in Range"
2391
  msgstr "Fecha y hora"
2392
 
2393
+ #: ../admin/view/wp-slimstat-reports.php:1391
2394
  #, fuzzy
2395
  msgid "Average Daily Pageviews"
2396
  msgstr "Promedio Paginas Visitadas"
2397
 
2398
+ #: ../admin/view/wp-slimstat-reports.php:1393
2399
  #, fuzzy
2400
  msgid ""
2401
  "How many pages have been visited on average every day during the current "
2402
  "period."
2403
  msgstr "Cuántas páginas se han visitado en promedio durante el período actual."
2404
 
2405
+ #: ../admin/view/wp-slimstat-reports.php:1395
2406
  #, fuzzy
2407
  msgid "From Search Results"
2408
  msgstr "Principales Recursos"
2409
 
2410
+ #: ../admin/view/wp-slimstat-reports.php:1397
2411
  msgid ""
2412
  "Visitors who landed on your site after searching for a keyword on Google, "
2413
  "Yahoo, etc."
2415
  "Visitantes que han llegado a su sitio después de buscar una palabra clave en "
2416
  "Google, yahoo, etc."
2417
 
2418
+ #: ../admin/view/wp-slimstat-reports.php:1401
2419
  msgid ""
2420
  "Used to differentiate between multiple requests to download a file from one "
2421
  "internet address (IP) and requests originating from many distinct addresses"
2424
  "desde una dirección de internet (IP) y peticiones que se originan en muchas "
2425
  "diferentes direcciones"
2426
 
2427
+ #: ../admin/view/wp-slimstat-reports.php:1403
2428
  msgid "Last 30 minutes"
2429
  msgstr "Últimos 30 minutos"
2430
 
2431
+ #: ../admin/view/wp-slimstat-reports.php:1442
2432
  msgid ""
2433
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2434
  "multiple times if they perform multiple visits."
2436
  "Una visita es una sesión de cuando mucho 30 minutos.Los visitantes de "
2437
  "regreso se cuentan múltiples veces si llevan a cabo múltiples visitas."
2438
 
2439
+ #: ../admin/view/wp-slimstat-reports.php:1446
2440
  msgid "It includes only traffic generated by human visitors."
2441
  msgstr "Incluye sólo tráfico generado por visitantes humanos."
2442
 
2443
+ #: ../admin/view/wp-slimstat-reports.php:1448
2444
  msgid "Bounce rate"
2445
  msgstr "Porcentaje de Abandonos"
2446
 
2447
+ #: ../admin/view/wp-slimstat-reports.php:1450
2448
  msgid ""
2449
  "Percentage of single-page visits, i.e. visits in which the person left your "
2450
  "site from the entrance page."
2452
  "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
2453
  "dejó su sitio desde la página de entrada."
2454
 
2455
+ #: ../admin/view/wp-slimstat-reports.php:1452
2456
  #, fuzzy
2457
  msgid "Known visitors"
2458
  msgstr "Palabras clave recientes"
2459
 
2460
+ #: ../admin/view/wp-slimstat-reports.php:1454
2461
  msgid "Visitors who had previously left a comment on your blog."
2462
  msgstr "Visitantes que han dejado un comentario en su blog previamente."
2463
 
2464
+ #: ../admin/view/wp-slimstat-reports.php:1456
2465
  #, fuzzy
2466
  msgid "New visitors"
2467
  msgstr "Visitantes"
2468
 
2469
+ #: ../admin/view/wp-slimstat-reports.php:1458
2470
  msgid "Human users who visited your site only once."
2471
  msgstr "Visitantes humanos que visitaron su sitio sólo una vez."
2472
 
2473
+ #: ../admin/view/wp-slimstat-reports.php:1460
2474
  msgid "Bots"
2475
  msgstr "Motores de Búsqueda"
2476
 
2477
+ #: ../admin/view/wp-slimstat-reports.php:1463
2478
  #, fuzzy
2479
  msgid "Pageviews per visit"
2480
  msgstr "Páginas por visita"
2481
 
2482
+ #: ../admin/view/wp-slimstat-reports.php:1466
2483
  msgid "Longest visit"
2484
  msgstr "Visita más larga"
2485
 
2486
+ #: ../admin/view/wp-slimstat-reports.php:1467
2487
  #, fuzzy
2488
  msgid "hits"
2489
  msgstr "Visitas"
2490
 
2491
+ #: ../admin/view/wp-slimstat-reports.php:1478
2492
  msgid "0 - 30 seconds"
2493
  msgstr "0 - 30 segundos"
2494
 
2495
+ #: ../admin/view/wp-slimstat-reports.php:1484
2496
  msgid "31 - 60 seconds"
2497
  msgstr "31 - 60 segundos"
2498
 
2499
+ #: ../admin/view/wp-slimstat-reports.php:1490
2500
  msgid "1 - 3 minutes"
2501
  msgstr "1 - 3 minutos"
2502
 
2503
+ #: ../admin/view/wp-slimstat-reports.php:1496
2504
  msgid "3 - 5 minutes"
2505
  msgstr "3 - 5 minutos"
2506
 
2507
+ #: ../admin/view/wp-slimstat-reports.php:1502
2508
  msgid "5 - 7 minutes"
2509
  msgstr "5 - 7 minutos"
2510
 
2511
+ #: ../admin/view/wp-slimstat-reports.php:1508
2512
  msgid "7 - 10 minutes"
2513
  msgstr "7 - 10 minutos"
2514
 
2515
+ #: ../admin/view/wp-slimstat-reports.php:1514
2516
  msgid "More than 10 minutes"
2517
  msgstr "Más de 10 minutos"
2518
 
2519
+ #: ../admin/view/wp-slimstat-reports.php:1526
2520
  #, fuzzy
2521
  msgid "Average visit duration"
2522
  msgstr "Visitas"
2523
 
2524
+ #: ../admin/view/wp-slimstat-reports.php:1546
2525
  #, fuzzy
2526
  msgid "Unique Referrers"
2527
  msgstr "Referidos Únicos"
2528
 
2529
+ #: ../admin/view/wp-slimstat-reports.php:1548
2530
  msgid ""
2531
  "A referrer (or referring site) is the site that a visitor previously visited "
2532
  "before following a link to your site."
2534
  "Un sitio referente (o que refiere) es el sitio al cual el visitante tuvo "
2535
  "acceso antes de seguir un enlace a su sitio."
2536
 
2537
+ #: ../admin/view/wp-slimstat-reports.php:1550
2538
  #, fuzzy
2539
  msgid "Direct Pageviews"
2540
  msgstr "Paginas visitadas"
2541
 
2542
+ #: ../admin/view/wp-slimstat-reports.php:1552
2543
  msgid ""
2544
  "Visitors who visited the site by typing the URL directly into their browser. "
2545
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2551
  "hicieron clic en sus favoritos, usaron etiquetas de enlaces en emails, o "
2552
  "enlaces de documentos que no incluyen variables de rastreo."
2553
 
2554
+ #: ../admin/view/wp-slimstat-reports.php:1554
2555
  msgid "From a search result"
2556
  msgstr "Desde un resultado de búsqueda"
2557
 
2558
+ #: ../admin/view/wp-slimstat-reports.php:1556
2559
  msgid ""
2560
  "Visitors who came to your site via searches on Google or some other search "
2561
  "engine."
2563
  "Visitantes que llegaron a su sitio después de buscar una palabra clave en "
2564
  "Google, yahoo, etc."
2565
 
2566
+ #: ../admin/view/wp-slimstat-reports.php:1558
2567
  #, fuzzy
2568
  msgid "Unique Landing Pages"
2569
  msgstr "IPs Unicas"
2570
 
2571
+ #: ../admin/view/wp-slimstat-reports.php:1560
2572
  msgid ""
2573
  "The first page that a user views during a session. This is also known as the "
2574
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2580
  "Brooklyn,” y llegan a su página de inicio, se cuenta (para esa visita) como "
2581
  "página de entrada."
2582
 
2583
+ #: ../admin/view/wp-slimstat-reports.php:1562
2584
  #, fuzzy
2585
  msgid "Bounce Pages"
2586
  msgstr "Porcentaje de Abandonos"
2587
 
2588
+ #: ../admin/view/wp-slimstat-reports.php:1564
2589
  #, fuzzy
2590
  msgid "Number of single page visits to your site over the selected period."
2591
  msgstr "Número de visitas a una página en el período seleccionado."
2592
 
2593
+ #: ../admin/view/wp-slimstat-reports.php:1566
2594
  #, fuzzy
2595
  msgid "New Visitors Rate"
2596
  msgstr "Visitantes"
2597
 
2598
+ #: ../admin/view/wp-slimstat-reports.php:1568
2599
  #, fuzzy
2600
  msgid ""
2601
  "Percentage of single page visits, i.e. visits in which the person left your "
2604
  "Porcentaje de visitas de una página, p. ej. visitas en las cuales la persona "
2605
  "dejó su sitio desde la página de entrada."
2606
 
2607
+ #: ../admin/view/wp-slimstat-reports.php:1570
2608
  #, fuzzy
2609
  msgid "Currently from search engines"
2610
  msgstr "Motores de Búsqueda"
2611
 
2612
+ #: ../admin/view/wp-slimstat-reports.php:1572
2613
  msgid ""
2614
  "Visitors who visited the site in the last 5 minutes coming from a search "
2615
  "engine."
2617
  "Visitantes que visitaron el sitio en los últimos 5 minutos y vienen de un "
2618
  "motor de búsqueda."
2619
 
2620
+ #: ../admin/view/wp-slimstat-reports.php:1642
2621
  msgid "Number of pages in your site included in Google's index."
2622
  msgstr "Número de páginas en su sitio incluidas en el índice de Google."
2623
 
2624
+ #: ../admin/view/wp-slimstat-reports.php:1643
2625
  msgid "Google Index"
2626
  msgstr "Indice de Google"
2627
 
2628
+ #: ../admin/view/wp-slimstat-reports.php:1644
2629
  msgid "Number of pages, according to Google, that link back to your site."
2630
  msgstr ""
2631
  "Número de páginas, de acuerdo a Google, que enlazan de regreso a su sitio."
2632
 
2633
+ #: ../admin/view/wp-slimstat-reports.php:1645
2634
  msgid "Google Backlinks"
2635
  msgstr "Backlinks Google"
2636
 
2637
+ #: ../admin/view/wp-slimstat-reports.php:1646
2638
  msgid ""
2639
  "How many times the Facebook Like button has been approximately clicked on "
2640
  "your site."
2642
  "Aproximadamente cuántas veces se ha hecho clic en el botón “Me Gusta” de "
2643
  "Facebook en su sitio."
2644
 
2645
+ #: ../admin/view/wp-slimstat-reports.php:1647
2646
  msgid "Facebook Likes"
2647
  msgstr "Me Gusta de Facebook"
2648
 
2649
+ #: ../admin/view/wp-slimstat-reports.php:1648
2650
  msgid ""
2651
  "How many times your site has been shared by someone on the social network."
2652
  msgstr ""
2653
  "Cuántas veces ha sido compartido su sitio con alguien en las redes sociales."
2654
 
2655
+ #: ../admin/view/wp-slimstat-reports.php:1649
2656
  msgid "Facebook Shares"
2657
  msgstr "Compartidas en Facebook"
2658
 
2659
+ #: ../admin/view/wp-slimstat-reports.php:1650
2660
  msgid "How many times links to your website have been clicked on Facebook."
2661
  msgstr "Cuántas veces se ha hecho clic en enlaces a su sitio en Facebook."
2662
 
2663
+ #: ../admin/view/wp-slimstat-reports.php:1651
2664
  #, fuzzy
2665
  msgid "Facebook Clicks"
2666
  msgstr "Enlaces Salientes Recientes"
2667
 
2668
+ #: ../admin/view/wp-slimstat-reports.php:1652
2669
  msgid ""
2670
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2671
  "traffic data."
2673
  "Alexa es una compaañ+ía subsidiaria de Amazon.com que proporciona "
2674
  "información de tráfico de datos."
2675
 
2676
+ #: ../admin/view/wp-slimstat-reports.php:1653
2677
  msgid "Alexa World Rank"
2678
  msgstr "Clasificación Mundial Alexa."
2679
 
2680
+ #: ../admin/view/wp-slimstat-reports.php:1654
2681
  msgid "Alexa Country Rank"
2682
  msgstr "Clasificación por país Alexa"
2683
 
2684
+ #: ../admin/view/wp-slimstat-reports.php:1655
2685
  msgid "Alexa Popularity"
2686
  msgstr "Popularidad Alexa"
2687
 
2688
+ #: ../admin/view/wp-slimstat-reports.php:1666
2689
  #, fuzzy
2690
  msgid "Content Items"
2691
  msgstr "Contenido"
2692
 
2693
+ #: ../admin/view/wp-slimstat-reports.php:1668
2694
  msgid ""
2695
  "This value includes not only posts, but also custom post types, regardless "
2696
  "of their status"
2698
  "Este valor incluye no sólo publicaciones, sino también tipos de publicación "
2699
  "personalizados, sin importar su estado"
2700
 
2701
+ #: ../admin/view/wp-slimstat-reports.php:1670
2702
  #, fuzzy
2703
  msgid "Posts"
2704
  msgstr "Paises que más visitan"
2705
 
2706
+ #: ../admin/view/wp-slimstat-reports.php:1673
2707
  #, fuzzy
2708
  msgid "Pages"
2709
  msgstr "Principales Páginas de Salida"
2710
 
2711
+ #: ../admin/view/wp-slimstat-reports.php:1676
2712
  msgid "Attachments"
2713
  msgstr ""
2714
 
2715
+ #: ../admin/view/wp-slimstat-reports.php:1679
2716
  #, fuzzy
2717
  msgid "Revisions"
2718
  msgstr "Enlace Permanente"
2719
 
2720
+ #: ../admin/view/wp-slimstat-reports.php:1682
2721
  #, fuzzy
2722
  msgid "Comments"
2723
  msgstr "Total de Accesos"
2724
 
2725
+ #: ../admin/view/wp-slimstat-reports.php:1685
2726
  #, fuzzy
2727
  msgid "Avg Comments per Post"
2728
  msgstr "Promedio de Comentarios por Publicación"
2729
 
2730
+ #: ../admin/view/wp-slimstat-reports.php:1688
2731
  msgid "Avg Server Latency"
2732
  msgstr ""
2733
 
2734
+ #: ../admin/view/wp-slimstat-reports.php:1690
2735
  msgid ""
2736
  "Latency is the amount of time it takes for the host server to receive and "
2737
  "process a request for a page object. The amount of latency depends largely "
2738
  "on how far away the user is from the server."
2739
  msgstr ""
2740
 
2741
+ #: ../admin/view/wp-slimstat-reports.php:1733
2742
  #, fuzzy
2743
  msgid "Coordinates"
2744
  msgstr "Seguimiento Activo"
2745
 
2746
+ #: ../admin/view/wp-slimstat-reports.php:1733
2747
  msgid "Date"
2748
  msgstr ""
2749
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2750
  # Unknown
2751
+ #: ../admin/view/wp-slimstat-reports.php:1749
2752
  msgid "c-xx"
2753
  msgstr "Unknown"
2754
 
2755
  # Afghanistan
2756
+ #: ../admin/view/wp-slimstat-reports.php:1749
2757
  msgid "c-af"
2758
  msgstr "Afghanistan"
2759
 
2760
  # Åland Islands
2761
+ #: ../admin/view/wp-slimstat-reports.php:1749
2762
  msgid "c-ax"
2763
  msgstr "Åland Islands"
2764
 
2765
  # Albania
2766
+ #: ../admin/view/wp-slimstat-reports.php:1749
2767
  msgid "c-al"
2768
  msgstr "Albania"
2769
 
2770
  # Algeria
2771
+ #: ../admin/view/wp-slimstat-reports.php:1749
2772
  msgid "c-dz"
2773
  msgstr "Algeria"
2774
 
2775
  # Andorra
2776
+ #: ../admin/view/wp-slimstat-reports.php:1749
2777
  msgid "c-ad"
2778
  msgstr "Andorra"
2779
 
2780
  # Angola
2781
+ #: ../admin/view/wp-slimstat-reports.php:1749
2782
  msgid "c-ao"
2783
  msgstr "Angola"
2784
 
2785
  # Anguilla
2786
+ #: ../admin/view/wp-slimstat-reports.php:1749
2787
  msgid "c-ai"
2788
  msgstr "Anguilla"
2789
 
2790
  # Antigua and Barbuda
2791
+ #: ../admin/view/wp-slimstat-reports.php:1749
2792
  msgid "c-ag"
2793
  msgstr "Antigua and Barbuda"
2794
 
2795
  # Argentina
2796
+ #: ../admin/view/wp-slimstat-reports.php:1749
2797
  msgid "c-ar"
2798
  msgstr "Argentina"
2799
 
2800
  # Armenia
2801
+ #: ../admin/view/wp-slimstat-reports.php:1749
2802
  msgid "c-am"
2803
  msgstr "Armenia"
2804
 
2805
  # Aruba
2806
+ #: ../admin/view/wp-slimstat-reports.php:1749
2807
  msgid "c-aw"
2808
  msgstr "Aruba"
2809
 
2810
  # Australia
2811
+ #: ../admin/view/wp-slimstat-reports.php:1749
2812
  msgid "c-au"
2813
  msgstr "Australia"
2814
 
2815
  # Austria
2816
+ #: ../admin/view/wp-slimstat-reports.php:1749
2817
  msgid "c-at"
2818
  msgstr "Austria"
2819
 
2820
  # Azerbaijan
2821
+ #: ../admin/view/wp-slimstat-reports.php:1749
2822
  msgid "c-az"
2823
  msgstr "Azerbaijan"
2824
 
2825
  # Bahamas
2826
+ #: ../admin/view/wp-slimstat-reports.php:1749
2827
  msgid "c-bs"
2828
  msgstr "Bahamas"
2829
 
2830
  # Bahrain
2831
+ #: ../admin/view/wp-slimstat-reports.php:1749
2832
  msgid "c-bh"
2833
  msgstr "Bahrain"
2834
 
2835
  # Bangladesh
2836
+ #: ../admin/view/wp-slimstat-reports.php:1749
2837
  msgid "c-bd"
2838
  msgstr "Bangladesh"
2839
 
2840
  # Barbados
2841
+ #: ../admin/view/wp-slimstat-reports.php:1749
2842
  msgid "c-bb"
2843
  msgstr "Barbados"
2844
 
2845
  # Belarus
2846
+ #: ../admin/view/wp-slimstat-reports.php:1749
2847
  msgid "c-by"
2848
  msgstr "Belarus"
2849
 
2850
  # Belgium
2851
+ #: ../admin/view/wp-slimstat-reports.php:1749
2852
  msgid "c-be"
2853
  msgstr "Belgium"
2854
 
2855
  # Belize
2856
+ #: ../admin/view/wp-slimstat-reports.php:1749
2857
  msgid "c-bz"
2858
  msgstr "Belize"
2859
 
2860
  # Benin
2861
+ #: ../admin/view/wp-slimstat-reports.php:1749
2862
  msgid "c-bj"
2863
  msgstr "Benin"
2864
 
2865
  # Bermuda
2866
+ #: ../admin/view/wp-slimstat-reports.php:1749
2867
  msgid "c-bm"
2868
  msgstr "Bermuda"
2869
 
2870
  # Bhutan
2871
+ #: ../admin/view/wp-slimstat-reports.php:1749
2872
  msgid "c-bt"
2873
  msgstr "Bhutan"
2874
 
2875
  # Bolivia
2876
+ #: ../admin/view/wp-slimstat-reports.php:1749
2877
  msgid "c-bo"
2878
  msgstr "Bolivia"
2879
 
2880
  # Bosnia and Herzegovina
2881
+ #: ../admin/view/wp-slimstat-reports.php:1749
2882
  msgid "c-ba"
2883
  msgstr "Bosnia and Herzegovina"
2884
 
2885
  # Botswana
2886
+ #: ../admin/view/wp-slimstat-reports.php:1749
2887
  msgid "c-bw"
2888
  msgstr "Botswana"
2889
 
2890
  # Brazil
2891
+ #: ../admin/view/wp-slimstat-reports.php:1749
2892
  msgid "c-br"
2893
  msgstr "Brazil"
2894
 
2895
  # Brunei Darussalam
2896
+ #: ../admin/view/wp-slimstat-reports.php:1749
2897
  msgid "c-bn"
2898
  msgstr "Brunei Darussalam"
2899
 
2900
  # Bulgaria
2901
+ #: ../admin/view/wp-slimstat-reports.php:1749
2902
  msgid "c-bg"
2903
  msgstr "Bulgaria"
2904
 
2905
  # Burkina Faso
2906
+ #: ../admin/view/wp-slimstat-reports.php:1749
2907
  msgid "c-bf"
2908
  msgstr "Burkina Faso"
2909
 
2910
  # Burundi
2911
+ #: ../admin/view/wp-slimstat-reports.php:1749
2912
  msgid "c-bi"
2913
  msgstr "Burundi"
2914
 
2915
  # Cambodia
2916
+ #: ../admin/view/wp-slimstat-reports.php:1749
2917
  msgid "c-kh"
2918
  msgstr "Cambodia"
2919
 
2920
  # Cameroon
2921
+ #: ../admin/view/wp-slimstat-reports.php:1749
2922
  msgid "c-cm"
2923
  msgstr "Cameroon"
2924
 
2925
  # Canada
2926
+ #: ../admin/view/wp-slimstat-reports.php:1749
2927
  msgid "c-ca"
2928
  msgstr "Canada"
2929
 
2930
  # Cape Verde
2931
+ #: ../admin/view/wp-slimstat-reports.php:1749
2932
  msgid "c-cv"
2933
  msgstr "Cape Verde"
2934
 
2935
  # Cayman Islands
2936
+ #: ../admin/view/wp-slimstat-reports.php:1749
2937
  msgid "c-ky"
2938
  msgstr "Cayman Islands"
2939
 
2940
  # Central African Republic
2941
+ #: ../admin/view/wp-slimstat-reports.php:1749
2942
  msgid "c-cf"
2943
  msgstr "Central African Republic"
2944
 
2945
  # Chad
2946
+ #: ../admin/view/wp-slimstat-reports.php:1749
2947
  msgid "c-td"
2948
  msgstr "Chad"
2949
 
2950
  # Chile
2951
+ #: ../admin/view/wp-slimstat-reports.php:1749
2952
  msgid "c-cl"
2953
  msgstr "Chile"
2954
 
2955
  # China
2956
+ #: ../admin/view/wp-slimstat-reports.php:1749
2957
  msgid "c-cn"
2958
  msgstr "China"
2959
 
2960
  # Colombia
2961
+ #: ../admin/view/wp-slimstat-reports.php:1749
2962
  msgid "c-co"
2963
  msgstr "Colombia"
2964
 
2965
  # Comoros
2966
+ #: ../admin/view/wp-slimstat-reports.php:1749
2967
  msgid "c-km"
2968
  msgstr "Comoros"
2969
 
2970
  # Congo
2971
+ #: ../admin/view/wp-slimstat-reports.php:1749
2972
  msgid "c-cg"
2973
  msgstr "Congo"
2974
 
2975
  # The Democratic Republic of the Congo
2976
+ #: ../admin/view/wp-slimstat-reports.php:1749
2977
  msgid "c-cd"
2978
  msgstr "The Democratic Republic of the Congo"
2979
 
2980
  # Costa Rica
2981
+ #: ../admin/view/wp-slimstat-reports.php:1749
2982
  msgid "c-cr"
2983
  msgstr "Costa Rica"
2984
 
2985
  # Côte d'Ivoire
2986
+ #: ../admin/view/wp-slimstat-reports.php:1749
2987
  msgid "c-ci"
2988
  msgstr "Côte d'Ivoire"
2989
 
2990
  # Croatia
2991
+ #: ../admin/view/wp-slimstat-reports.php:1749
2992
  msgid "c-hr"
2993
  msgstr "Croatia"
2994
 
2995
  # Cuba
2996
+ #: ../admin/view/wp-slimstat-reports.php:1749
2997
  msgid "c-cu"
2998
  msgstr "Cuba"
2999
 
3000
  # Cyprus
3001
+ #: ../admin/view/wp-slimstat-reports.php:1749
3002
  msgid "c-cy"
3003
  msgstr "Cyprus"
3004
 
3005
  # Czech Republic
3006
+ #: ../admin/view/wp-slimstat-reports.php:1749
3007
  msgid "c-cz"
3008
  msgstr "Czech Republic"
3009
 
3010
  # Denmark
3011
+ #: ../admin/view/wp-slimstat-reports.php:1749
3012
  msgid "c-dk"
3013
  msgstr "Denmark"
3014
 
3015
  # Djibouti
3016
+ #: ../admin/view/wp-slimstat-reports.php:1749
3017
  msgid "c-dj"
3018
  msgstr "Djibouti"
3019
 
3020
  # Dominica
3021
+ #: ../admin/view/wp-slimstat-reports.php:1749
3022
  msgid "c-dm"
3023
  msgstr "Dominica"
3024
 
3025
  # Dominican Republic
3026
+ #: ../admin/view/wp-slimstat-reports.php:1749
3027
  msgid "c-do"
3028
  msgstr "Dominican Republic"
3029
 
3030
  # Ecuador
3031
+ #: ../admin/view/wp-slimstat-reports.php:1749
3032
  msgid "c-ec"
3033
  msgstr "Ecuador"
3034
 
3035
  # Egypt
3036
+ #: ../admin/view/wp-slimstat-reports.php:1749
3037
  msgid "c-eg"
3038
  msgstr "Egypt"
3039
 
3040
  # El Salvador
3041
+ #: ../admin/view/wp-slimstat-reports.php:1749
3042
  msgid "c-sv"
3043
  msgstr "El Salvador"
3044
 
3045
  # Equatorial Guinea
3046
+ #: ../admin/view/wp-slimstat-reports.php:1749
3047
  msgid "c-gq"
3048
  msgstr "Equatorial Guinea"
3049
 
3050
  # Eritrea
3051
+ #: ../admin/view/wp-slimstat-reports.php:1749
3052
  msgid "c-er"
3053
  msgstr "Eritrea"
3054
 
3055
  # Estonia
3056
+ #: ../admin/view/wp-slimstat-reports.php:1749
3057
  msgid "c-ee"
3058
  msgstr "Estonia"
3059
 
3060
  # Ethiopia
3061
+ #: ../admin/view/wp-slimstat-reports.php:1749
3062
  msgid "c-et"
3063
  msgstr "Ethiopia"
3064
 
3065
  # Faroe Islands
3066
+ #: ../admin/view/wp-slimstat-reports.php:1749
3067
  msgid "c-fo"
3068
  msgstr "Faroe Islands"
3069
 
3070
  # Falkland Islands (Malvinas)
3071
+ #: ../admin/view/wp-slimstat-reports.php:1749
3072
  msgid "c-fk"
3073
  msgstr "Falkland Islands (Malvinas)"
3074
 
3075
  # Fiji
3076
+ #: ../admin/view/wp-slimstat-reports.php:1749
3077
  msgid "c-fj"
3078
  msgstr "Fiji"
3079
 
3080
  # Finland
3081
+ #: ../admin/view/wp-slimstat-reports.php:1749
3082
  msgid "c-fi"
3083
  msgstr "Finland"
3084
 
3085
  # France
3086
+ #: ../admin/view/wp-slimstat-reports.php:1749
3087
  msgid "c-fr"
3088
  msgstr "France"
3089
 
3090
  # French Guiana
3091
+ #: ../admin/view/wp-slimstat-reports.php:1749
3092
  msgid "c-gf"
3093
  msgstr "French Guiana"
3094
 
3095
  # Gabon
3096
+ #: ../admin/view/wp-slimstat-reports.php:1749
3097
  msgid "c-ga"
3098
  msgstr "Gabon"
3099
 
3100
  # Gambia
3101
+ #: ../admin/view/wp-slimstat-reports.php:1749
3102
  msgid "c-gm"
3103
  msgstr "Gambia"
3104
 
3105
  # Georgia
3106
+ #: ../admin/view/wp-slimstat-reports.php:1749
3107
  msgid "c-ge"
3108
  msgstr "Georgia"
3109
 
3110
  # Germany
3111
+ #: ../admin/view/wp-slimstat-reports.php:1749
3112
  msgid "c-de"
3113
  msgstr "Germany"
3114
 
3115
  # Ghana
3116
+ #: ../admin/view/wp-slimstat-reports.php:1749
3117
  msgid "c-gh"
3118
  msgstr "Ghana"
3119
 
3120
  # Greece
3121
+ #: ../admin/view/wp-slimstat-reports.php:1749
3122
  msgid "c-gr"
3123
  msgstr "Greece"
3124
 
3125
  # Greenland
3126
+ #: ../admin/view/wp-slimstat-reports.php:1749
3127
  msgid "c-gl"
3128
  msgstr "Greenland"
3129
 
3130
  # Grenada
3131
+ #: ../admin/view/wp-slimstat-reports.php:1749
3132
  msgid "c-gd"
3133
  msgstr "Grenada"
3134
 
3135
  # Guadeloupe
3136
+ #: ../admin/view/wp-slimstat-reports.php:1749
3137
  msgid "c-gp"
3138
  msgstr "Guadeloupe"
3139
 
3140
  # Guatemala
3141
+ #: ../admin/view/wp-slimstat-reports.php:1749
3142
  msgid "c-gt"
3143
  msgstr "Guatemala"
3144
 
3145
  # Guinea
3146
+ #: ../admin/view/wp-slimstat-reports.php:1749
3147
  msgid "c-gn"
3148
  msgstr "Guinea"
3149
 
3150
  # Guinea-Bissau
3151
+ #: ../admin/view/wp-slimstat-reports.php:1749
3152
  msgid "c-gw"
3153
  msgstr "Guinea-Bissau"
3154
 
3155
  # Guyana
3156
+ #: ../admin/view/wp-slimstat-reports.php:1749
3157
  msgid "c-gy"
3158
  msgstr "Guyana"
3159
 
3160
  # Haiti
3161
+ #: ../admin/view/wp-slimstat-reports.php:1749
3162
  msgid "c-ht"
3163
  msgstr "Haiti"
3164
 
3165
  # Honduras
3166
+ #: ../admin/view/wp-slimstat-reports.php:1749
3167
  msgid "c-hn"
3168
  msgstr "Honduras"
3169
 
3170
  # Hong Kong
3171
+ #: ../admin/view/wp-slimstat-reports.php:1749
3172
  msgid "c-hk"
3173
  msgstr "Hong Kong"
3174
 
3175
  # Hungary
3176
+ #: ../admin/view/wp-slimstat-reports.php:1749
3177
  msgid "c-hu"
3178
  msgstr "Hungary"
3179
 
3180
  # Iceland
3181
+ #: ../admin/view/wp-slimstat-reports.php:1749
3182
  msgid "c-is"
3183
  msgstr "Iceland"
3184
 
3185
  # India
3186
+ #: ../admin/view/wp-slimstat-reports.php:1749
3187
  msgid "c-in"
3188
  msgstr "India"
3189
 
3190
  # Indonesia
3191
+ #: ../admin/view/wp-slimstat-reports.php:1749
3192
  msgid "c-id"
3193
  msgstr "Indonesia"
3194
 
3195
  # Islamic Republic of Iran
3196
+ #: ../admin/view/wp-slimstat-reports.php:1749
3197
  msgid "c-ir"
3198
  msgstr "Islamic Republic of Iran"
3199
 
3200
  # Iraq
3201
+ #: ../admin/view/wp-slimstat-reports.php:1749
3202
  msgid "c-iq"
3203
  msgstr "Iraq"
3204
 
3205
  # Ireland
3206
+ #: ../admin/view/wp-slimstat-reports.php:1749
3207
  msgid "c-ie"
3208
  msgstr "Ireland"
3209
 
3210
  # Israel
3211
+ #: ../admin/view/wp-slimstat-reports.php:1749
3212
  msgid "c-il"
3213
  msgstr "Israel"
3214
 
3215
  # Italy
3216
+ #: ../admin/view/wp-slimstat-reports.php:1749
3217
  msgid "c-it"
3218
  msgstr "Italy"
3219
 
3220
  # Jamaica
3221
+ #: ../admin/view/wp-slimstat-reports.php:1749
3222
  msgid "c-jm"
3223
  msgstr "Jamaica"
3224
 
3225
  # Japan
3226
+ #: ../admin/view/wp-slimstat-reports.php:1749
3227
  msgid "c-jp"
3228
  msgstr "Japan"
3229
 
3230
  # Jordan
3231
+ #: ../admin/view/wp-slimstat-reports.php:1749
3232
  msgid "c-jo"
3233
  msgstr "Jordan"
3234
 
3235
  # Kazakhstan
3236
+ #: ../admin/view/wp-slimstat-reports.php:1749
3237
  msgid "c-kz"
3238
  msgstr "Kazakhstan"
3239
 
3240
  # Kenya
3241
+ #: ../admin/view/wp-slimstat-reports.php:1749
3242
  msgid "c-ke"
3243
  msgstr "Kenya"
3244
 
3245
  # Nauru
3246
+ #: ../admin/view/wp-slimstat-reports.php:1749
3247
  msgid "c-nr"
3248
  msgstr "Nauru"
3249
 
3250
  # Democratic People's Republic of Korea
3251
+ #: ../admin/view/wp-slimstat-reports.php:1749
3252
  msgid "c-kp"
3253
  msgstr "Democratic People's Republic of Korea"
3254
 
3255
  # Republic of Korea
3256
+ #: ../admin/view/wp-slimstat-reports.php:1749
3257
  msgid "c-kr"
3258
  msgstr "Republic of Korea"
3259
 
3260
+ #: ../admin/view/wp-slimstat-reports.php:1749
3261
  msgid "c-kv"
3262
  msgstr "c-kv"
3263
 
3264
  # Kuwait
3265
+ #: ../admin/view/wp-slimstat-reports.php:1749
3266
  msgid "c-kw"
3267
  msgstr "Kuwait"
3268
 
3269
  # Kyrgyzstan
3270
+ #: ../admin/view/wp-slimstat-reports.php:1749
3271
  msgid "c-kg"
3272
  msgstr "Kyrgyzstan"
3273
 
3274
  # Lao People's Democratic Republic
3275
+ #: ../admin/view/wp-slimstat-reports.php:1749
3276
  msgid "c-la"
3277
  msgstr "Lao People's Democratic Republic"
3278
 
3279
  # Latvia
3280
+ #: ../admin/view/wp-slimstat-reports.php:1749
3281
  msgid "c-lv"
3282
  msgstr "Latvia"
3283
 
3284
  # Lebanon
3285
+ #: ../admin/view/wp-slimstat-reports.php:1749
3286
  msgid "c-lb"
3287
  msgstr "Lebanon"
3288
 
3289
  # Lesotho
3290
+ #: ../admin/view/wp-slimstat-reports.php:1749
3291
  msgid "c-ls"
3292
  msgstr "Lesotho"
3293
 
3294
  # Liberia
3295
+ #: ../admin/view/wp-slimstat-reports.php:1749
3296
  msgid "c-lr"
3297
  msgstr "Liberia"
3298
 
3299
  # Libyan Arab Jamahiriya
3300
+ #: ../admin/view/wp-slimstat-reports.php:1749
3301
  msgid "c-ly"
3302
  msgstr "Libyan Arab Jamahiriya"
3303
 
3304
  # Liechtenstein
3305
+ #: ../admin/view/wp-slimstat-reports.php:1749
3306
  msgid "c-li"
3307
  msgstr "Liechtenstein"
3308
 
3309
  # Lithuania
3310
+ #: ../admin/view/wp-slimstat-reports.php:1749
3311
  msgid "c-lt"
3312
  msgstr "Lithuania"
3313
 
3314
  # Luxembourg
3315
+ #: ../admin/view/wp-slimstat-reports.php:1749
3316
  msgid "c-lu"
3317
  msgstr "Luxembourg"
3318
 
3319
  # The Former Yugoslav Republic of Macedonia
3320
+ #: ../admin/view/wp-slimstat-reports.php:1749
3321
  msgid "c-mk"
3322
  msgstr "The Former Yugoslav Republic of Macedonia"
3323
 
3324
  # Madagascar
3325
+ #: ../admin/view/wp-slimstat-reports.php:1749
3326
  msgid "c-mg"
3327
  msgstr "Madagascar"
3328
 
3329
  # Malawi
3330
+ #: ../admin/view/wp-slimstat-reports.php:1749
3331
  msgid "c-mw"
3332
  msgstr "Malawi"
3333
 
3334
  # Malaysia
3335
+ #: ../admin/view/wp-slimstat-reports.php:1749
3336
  msgid "c-my"
3337
  msgstr "Malaysia"
3338
 
3339
  # Mali
3340
+ #: ../admin/view/wp-slimstat-reports.php:1749
3341
  msgid "c-ml"
3342
  msgstr "Mali"
3343
 
3344
  # Malta
3345
+ #: ../admin/view/wp-slimstat-reports.php:1749
3346
  msgid "c-mt"
3347
  msgstr "Malta"
3348
 
3349
  # Martinique
3350
+ #: ../admin/view/wp-slimstat-reports.php:1749
3351
  msgid "c-mq"
3352
  msgstr "Martinique"
3353
 
3354
  # Mauritania
3355
+ #: ../admin/view/wp-slimstat-reports.php:1749
3356
  msgid "c-mr"
3357
  msgstr "Mauritania"
3358
 
3359
  # Mauritius
3360
+ #: ../admin/view/wp-slimstat-reports.php:1749
3361
  msgid "c-mu"
3362
  msgstr "Mauritius"
3363
 
3364
  # Mexico
3365
+ #: ../admin/view/wp-slimstat-reports.php:1749
3366
  msgid "c-mx"
3367
  msgstr "Mexico"
3368
 
3369
  # Moldova
3370
+ #: ../admin/view/wp-slimstat-reports.php:1749
3371
  msgid "c-md"
3372
  msgstr "Moldova"
3373
 
3374
  # Mongolia
3375
+ #: ../admin/view/wp-slimstat-reports.php:1749
3376
  msgid "c-mn"
3377
  msgstr "Mongolia"
3378
 
3379
  # Montenegro
3380
+ #: ../admin/view/wp-slimstat-reports.php:1749
3381
  msgid "c-me"
3382
  msgstr "Montenegro"
3383
 
3384
  # Montserrat
3385
+ #: ../admin/view/wp-slimstat-reports.php:1749
3386
  msgid "c-ms"
3387
  msgstr "Montserrat"
3388
 
3389
  # Morocco
3390
+ #: ../admin/view/wp-slimstat-reports.php:1749
3391
  msgid "c-ma"
3392
  msgstr "Morocco"
3393
 
3394
  # Mozambique
3395
+ #: ../admin/view/wp-slimstat-reports.php:1749
3396
  msgid "c-mz"
3397
  msgstr "Mozambique"
3398
 
3399
  # Myanmar
3400
+ #: ../admin/view/wp-slimstat-reports.php:1749
3401
  msgid "c-mm"
3402
  msgstr "Myanmar"
3403
 
3404
  # Namibia
3405
+ #: ../admin/view/wp-slimstat-reports.php:1749
3406
  msgid "c-na"
3407
  msgstr "Namibia"
3408
 
3409
  # Nepal
3410
+ #: ../admin/view/wp-slimstat-reports.php:1749
3411
  msgid "c-np"
3412
  msgstr "Nepal"
3413
 
3414
  # Netherlands
3415
+ #: ../admin/view/wp-slimstat-reports.php:1749
3416
  msgid "c-nl"
3417
  msgstr "Netherlands"
3418
 
3419
  # New Caledonia
3420
+ #: ../admin/view/wp-slimstat-reports.php:1749
3421
  msgid "c-nc"
3422
  msgstr "New Caledonia"
3423
 
3424
  # New Zealand
3425
+ #: ../admin/view/wp-slimstat-reports.php:1749
3426
  msgid "c-nz"
3427
  msgstr "New Zealand"
3428
 
3429
  # Nicaragua
3430
+ #: ../admin/view/wp-slimstat-reports.php:1749
3431
  msgid "c-ni"
3432
  msgstr "Nicaragua"
3433
 
3434
  # Niger
3435
+ #: ../admin/view/wp-slimstat-reports.php:1749
3436
  msgid "c-ne"
3437
  msgstr "Niger"
3438
 
3439
  # Nigeria
3440
+ #: ../admin/view/wp-slimstat-reports.php:1749
3441
  msgid "c-ng"
3442
  msgstr "Nigeria"
3443
 
3444
  # Norway
3445
+ #: ../admin/view/wp-slimstat-reports.php:1749
3446
  msgid "c-no"
3447
  msgstr "Norway"
3448
 
3449
  # Oman
3450
+ #: ../admin/view/wp-slimstat-reports.php:1749
3451
  msgid "c-om"
3452
  msgstr "Oman"
3453
 
3454
  # Pakistan
3455
+ #: ../admin/view/wp-slimstat-reports.php:1749
3456
  msgid "c-pk"
3457
  msgstr "Pakistan"
3458
 
3459
  # Palau
3460
+ #: ../admin/view/wp-slimstat-reports.php:1749
3461
  msgid "c-pw"
3462
  msgstr "Palau"
3463
 
3464
  # Occupied Palestinian Territory
3465
+ #: ../admin/view/wp-slimstat-reports.php:1749
3466
  msgid "c-ps"
3467
  msgstr "Occupied Palestinian Territory"
3468
 
3469
  # Panama
3470
+ #: ../admin/view/wp-slimstat-reports.php:1749
3471
  msgid "c-pa"
3472
  msgstr "Panama"
3473
 
3474
  # Papua New Guinea
3475
+ #: ../admin/view/wp-slimstat-reports.php:1749
3476
  msgid "c-pg"
3477
  msgstr "Papua New Guinea"
3478
 
3479
  # Paraguay
3480
+ #: ../admin/view/wp-slimstat-reports.php:1749
3481
  msgid "c-py"
3482
  msgstr "Paraguay"
3483
 
3484
  # Peru
3485
+ #: ../admin/view/wp-slimstat-reports.php:1749
3486
  msgid "c-pe"
3487
  msgstr "Peru"
3488
 
3489
  # Philippines
3490
+ #: ../admin/view/wp-slimstat-reports.php:1749
3491
  msgid "c-ph"
3492
  msgstr "Philippines"
3493
 
3494
  # Poland
3495
+ #: ../admin/view/wp-slimstat-reports.php:1749
3496
  msgid "c-pl"
3497
  msgstr "Poland"
3498
 
3499
  # Portugal
3500
+ #: ../admin/view/wp-slimstat-reports.php:1749
3501
  msgid "c-pt"
3502
  msgstr "Portugal"
3503
 
3504
  # Puerto Rico
3505
+ #: ../admin/view/wp-slimstat-reports.php:1749
3506
  msgid "c-pr"
3507
  msgstr "Puerto Rico"
3508
 
3509
  # Qatar
3510
+ #: ../admin/view/wp-slimstat-reports.php:1749
3511
  msgid "c-qa"
3512
  msgstr "Qatar"
3513
 
3514
  # Réunion
3515
+ #: ../admin/view/wp-slimstat-reports.php:1749
3516
  msgid "c-re"
3517
  msgstr "Réunion"
3518
 
3519
  # Romania
3520
+ #: ../admin/view/wp-slimstat-reports.php:1749
3521
  msgid "c-ro"
3522
  msgstr "Romania"
3523
 
3524
  # Russian Federation
3525
+ #: ../admin/view/wp-slimstat-reports.php:1749
3526
  msgid "c-ru"
3527
  msgstr "Russian Federation"
3528
 
3529
  # Rwanda
3530
+ #: ../admin/view/wp-slimstat-reports.php:1749
3531
  msgid "c-rw"
3532
  msgstr "Rwanda"
3533
 
3534
  # Saint Kitts and Nevis
3535
+ #: ../admin/view/wp-slimstat-reports.php:1749
3536
  msgid "c-kn"
3537
  msgstr "Saint Kitts and Nevis"
3538
 
3539
  # Saint Lucia
3540
+ #: ../admin/view/wp-slimstat-reports.php:1749
3541
  msgid "c-lc"
3542
  msgstr "Saint Lucia"
3543
 
3544
  # Saint Martin
3545
+ #: ../admin/view/wp-slimstat-reports.php:1749
3546
  msgid "c-mf"
3547
  msgstr "Saint Martin"
3548
 
3549
  # Saint Vincent and the Grenadines
3550
+ #: ../admin/view/wp-slimstat-reports.php:1749
3551
  msgid "c-vc"
3552
  msgstr "Saint Vincent and the Grenadines"
3553
 
3554
  # Samoa
3555
+ #: ../admin/view/wp-slimstat-reports.php:1749
3556
  msgid "c-ws"
3557
  msgstr "Samoa"
3558
 
3559
  # Sao Tome and Principe
3560
+ #: ../admin/view/wp-slimstat-reports.php:1749
3561
  msgid "c-st"
3562
  msgstr "Sao Tome and Principe"
3563
 
3564
  # Saudi Arabia
3565
+ #: ../admin/view/wp-slimstat-reports.php:1749
3566
  msgid "c-sa"
3567
  msgstr "Saudi Arabia"
3568
 
3569
  # Senegal
3570
+ #: ../admin/view/wp-slimstat-reports.php:1749
3571
  msgid "c-sn"
3572
  msgstr "Senegal"
3573
 
3574
  # Serbia
3575
+ #: ../admin/view/wp-slimstat-reports.php:1749
3576
  msgid "c-rs"
3577
  msgstr "Serbia"
3578
 
3579
  # Sierra Leone
3580
+ #: ../admin/view/wp-slimstat-reports.php:1749
3581
  msgid "c-sl"
3582
  msgstr "Sierra Leone"
3583
 
3584
  # Singapore
3585
+ #: ../admin/view/wp-slimstat-reports.php:1749
3586
  msgid "c-sg"
3587
  msgstr "Singapore"
3588
 
3589
  # Slovakia
3590
+ #: ../admin/view/wp-slimstat-reports.php:1749
3591
  msgid "c-sk"
3592
  msgstr "Slovakia"
3593
 
3594
  # Slovenia
3595
+ #: ../admin/view/wp-slimstat-reports.php:1749
3596
  msgid "c-si"
3597
  msgstr "Slovenia"
3598
 
3599
  # Solomon Islands
3600
+ #: ../admin/view/wp-slimstat-reports.php:1749
3601
  msgid "c-sb"
3602
  msgstr "Solomon Islands"
3603
 
3604
  # Somalia
3605
+ #: ../admin/view/wp-slimstat-reports.php:1749
3606
  msgid "c-so"
3607
  msgstr "Somalia"
3608
 
3609
  # South Africa
3610
+ #: ../admin/view/wp-slimstat-reports.php:1749
3611
  msgid "c-za"
3612
  msgstr "South Africa"
3613
 
3614
  # South Georgia and the South Sandwich Islands
3615
+ #: ../admin/view/wp-slimstat-reports.php:1749
3616
  msgid "c-gs"
3617
  msgstr "South Georgia and the South Sandwich Islands"
3618
 
3619
  # Spain
3620
+ #: ../admin/view/wp-slimstat-reports.php:1749
3621
  msgid "c-es"
3622
  msgstr "Spain"
3623
 
3624
  # Sri Lanka
3625
+ #: ../admin/view/wp-slimstat-reports.php:1749
3626
  msgid "c-lk"
3627
  msgstr "Sri Lanka"
3628
 
3629
  # Seychelles
3630
+ #: ../admin/view/wp-slimstat-reports.php:1749
3631
  msgid "c-sc"
3632
  msgstr "Seychelles"
3633
 
3634
  # Sudan
3635
+ #: ../admin/view/wp-slimstat-reports.php:1749
3636
  msgid "c-sd"
3637
  msgstr "Sudan"
3638
 
3639
+ #: ../admin/view/wp-slimstat-reports.php:1749
3640
  msgid "c-ss"
3641
  msgstr "c-ss"
3642
 
3643
  # Suriname
3644
+ #: ../admin/view/wp-slimstat-reports.php:1749
3645
  msgid "c-sr"
3646
  msgstr "Suriname"
3647
 
3648
  # Svalbard and Jan Mayen
3649
+ #: ../admin/view/wp-slimstat-reports.php:1749
3650
  msgid "c-sj"
3651
  msgstr "Svalbard and Jan Mayen"
3652
 
3653
  # Swaziland
3654
+ #: ../admin/view/wp-slimstat-reports.php:1749
3655
  msgid "c-sz"
3656
  msgstr "Swaziland"
3657
 
3658
  # Sweden
3659
+ #: ../admin/view/wp-slimstat-reports.php:1749
3660
  msgid "c-se"
3661
  msgstr "Sweden"
3662
 
3663
  # Switzerland
3664
+ #: ../admin/view/wp-slimstat-reports.php:1749
3665
  msgid "c-ch"
3666
  msgstr "Switzerland"
3667
 
3668
  # Syrian Arab Republic
3669
+ #: ../admin/view/wp-slimstat-reports.php:1749
3670
  msgid "c-sy"
3671
  msgstr "Syrian Arab Republic"
3672
 
3673
  # Taiwan, Province of China
3674
+ #: ../admin/view/wp-slimstat-reports.php:1749
3675
  msgid "c-tw"
3676
  msgstr "Taiwan, Province of China"
3677
 
3678
  # Tajikistan
3679
+ #: ../admin/view/wp-slimstat-reports.php:1749
3680
  msgid "c-tj"
3681
  msgstr "Tajikistan"
3682
 
3683
  # United Republic of Tanzania
3684
+ #: ../admin/view/wp-slimstat-reports.php:1749
3685
  msgid "c-tz"
3686
  msgstr "United Republic of Tanzania"
3687
 
3688
  # Thailand
3689
+ #: ../admin/view/wp-slimstat-reports.php:1749
3690
  msgid "c-th"
3691
  msgstr "Thailand"
3692
 
3693
  # Timor-Leste
3694
+ #: ../admin/view/wp-slimstat-reports.php:1749
3695
  msgid "c-tl"
3696
  msgstr "Timor-Leste"
3697
 
3698
  # Togo
3699
+ #: ../admin/view/wp-slimstat-reports.php:1749
3700
  msgid "c-tg"
3701
  msgstr "Togo"
3702
 
3703
  # Tonga
3704
+ #: ../admin/view/wp-slimstat-reports.php:1749
3705
  msgid "c-to"
3706
  msgstr "Tonga"
3707
 
3708
  # Trinidad and Tobago
3709
+ #: ../admin/view/wp-slimstat-reports.php:1749
3710
  msgid "c-tt"
3711
  msgstr "Trinidad and Tobago"
3712
 
3713
  # Tunisia
3714
+ #: ../admin/view/wp-slimstat-reports.php:1749
3715
  msgid "c-tn"
3716
  msgstr "Tunisia"
3717
 
3718
  # Turkey
3719
+ #: ../admin/view/wp-slimstat-reports.php:1749
3720
  msgid "c-tr"
3721
  msgstr "Turkey"
3722
 
3723
  # Turkmenistan
3724
+ #: ../admin/view/wp-slimstat-reports.php:1749
3725
  msgid "c-tm"
3726
  msgstr "Turkmenistan"
3727
 
3728
  # Turks and Caicos Islands
3729
+ #: ../admin/view/wp-slimstat-reports.php:1749
3730
  msgid "c-tc"
3731
  msgstr "Turks and Caicos Islands"
3732
 
3733
  # Uganda
3734
+ #: ../admin/view/wp-slimstat-reports.php:1749
3735
  msgid "c-ug"
3736
  msgstr "Uganda"
3737
 
3738
  # Ukraine
3739
+ #: ../admin/view/wp-slimstat-reports.php:1749
3740
  msgid "c-ua"
3741
  msgstr "Ukraine"
3742
 
3743
  # United Arab Emirates
3744
+ #: ../admin/view/wp-slimstat-reports.php:1749
3745
  msgid "c-ae"
3746
  msgstr "United Arab Emirates"
3747
 
3748
  # United Kingdom
3749
+ #: ../admin/view/wp-slimstat-reports.php:1749
3750
  msgid "c-gb"
3751
  msgstr "United Kingdom"
3752
 
3753
  # United States
3754
+ #: ../admin/view/wp-slimstat-reports.php:1749
3755
  msgid "c-us"
3756
  msgstr "United States"
3757
 
3758
  # Uruguay
3759
+ #: ../admin/view/wp-slimstat-reports.php:1749
3760
  msgid "c-uy"
3761
  msgstr "Uruguay"
3762
 
3763
  # Uzbekistan
3764
+ #: ../admin/view/wp-slimstat-reports.php:1749
3765
  msgid "c-uz"
3766
  msgstr "Uzbekistan"
3767
 
3768
  # Vanuatu
3769
+ #: ../admin/view/wp-slimstat-reports.php:1749
3770
  msgid "c-vu"
3771
  msgstr "Vanuatu"
3772
 
3773
  # Venezuela
3774
+ #: ../admin/view/wp-slimstat-reports.php:1749
3775
  msgid "c-ve"
3776
  msgstr "Venezuela"
3777
 
3778
  # Viet Nam
3779
+ #: ../admin/view/wp-slimstat-reports.php:1749
3780
  msgid "c-vn"
3781
  msgstr "Viet Nam"
3782
 
3783
  # British Virgin Islands
3784
+ #: ../admin/view/wp-slimstat-reports.php:1749
3785
  msgid "c-vg"
3786
  msgstr "British Virgin Islands"
3787
 
3788
  # U.S. Virgin Islands
3789
+ #: ../admin/view/wp-slimstat-reports.php:1749
3790
  msgid "c-vi"
3791
  msgstr "U.S. Virgin Islands"
3792
 
3793
  # Western Sahara
3794
+ #: ../admin/view/wp-slimstat-reports.php:1749
3795
  msgid "c-eh"
3796
  msgstr "Western Sahara"
3797
 
3798
  # Yemen
3799
+ #: ../admin/view/wp-slimstat-reports.php:1749
3800
  msgid "c-ye"
3801
  msgstr "Yemen"
3802
 
3803
  # Zambia
3804
+ #: ../admin/view/wp-slimstat-reports.php:1749
3805
  msgid "c-zm"
3806
  msgstr "Zambia"
3807
 
3808
  # Zimbabwe
3809
+ #: ../admin/view/wp-slimstat-reports.php:1749
3810
  msgid "c-zw"
3811
  msgstr "Zimbabwe"
3812
 
3813
  # Guernsey
3814
+ #: ../admin/view/wp-slimstat-reports.php:1749
3815
  msgid "c-gg"
3816
  msgstr "Guernsey"
3817
 
3818
  # Jersey
3819
+ #: ../admin/view/wp-slimstat-reports.php:1749
3820
  msgid "c-je"
3821
  msgstr "Jersey"
3822
 
3823
  # Isle of Man
3824
+ #: ../admin/view/wp-slimstat-reports.php:1749
3825
  msgid "c-im"
3826
  msgstr "Isle of Man"
3827
 
3828
  # Maldives
3829
+ #: ../admin/view/wp-slimstat-reports.php:1749
3830
  msgid "c-mv"
3831
  msgstr "Maldives"
3832
 
3833
  # European Union
3834
+ #: ../admin/view/wp-slimstat-reports.php:1750
3835
  msgid "c-eu"
3836
  msgstr "European Union"
3837
 
3838
+ #: ../admin/view/wp-slimstat-reports.php:1827
3839
  msgid "src"
3840
  msgstr "Src"
3841
 
3842
+ #: ../admin/view/wp-slimstat-reports.php:1831
3843
  msgid "serp"
3844
  msgstr "Serp"
3845
 
3846
+ #: ../admin/view/wp-slimstat-reports.php:1839
3847
  msgid "Go to the referring page"
3848
  msgstr "Vaya a la página de referencia"
3849
 
3850
+ #: ../admin/view/wp-slimstat-reports.php:1861
3851
  #, fuzzy
3852
  msgid "Remove filter for"
3853
  msgstr "Seleccionar filtro"
3854
 
3855
+ #: ../admin/view/wp-slimstat-reports.php:1865
3856
  msgid "Save"
3857
  msgstr ""
3858
 
3859
+ #: ../admin/view/wp-slimstat-reports.php:1868
3860
  msgid "Reset All"
3861
  msgstr "Resetear todos"
3862
 
3863
+ #: ../admin/view/wp-slimstat-reports.php:1872
3864
  msgid "Current filters:"
3865
  msgstr "Filtros Actuales:"
3866
 
3867
+ #: ../admin/wp-slimstat-admin.php:82
3868
+ msgid "Access Log"
3869
+ msgstr ""
3870
+
3871
+ #: ../admin/wp-slimstat-admin.php:88
3872
+ msgid "Overview"
3873
+ msgstr "Visión general"
3874
+
3875
+ #: ../admin/wp-slimstat-admin.php:94
3876
+ msgid "Audience"
3877
+ msgstr ""
3878
+
3879
+ #: ../admin/wp-slimstat-admin.php:100
3880
+ msgid "Site Analysis"
3881
+ msgstr ""
3882
+
3883
+ #: ../admin/wp-slimstat-admin.php:118
3884
+ #, fuzzy
3885
+ msgid "Customize"
3886
+ msgstr "CSS personalizado"
3887
+
3888
+ #: ../admin/wp-slimstat-admin.php:130
3889
+ #, fuzzy
3890
+ msgid "WordPress Dashboard"
3891
+ msgstr "Integración WordPress"
3892
+
3893
+ #: ../admin/wp-slimstat-admin.php:136
3894
+ #, fuzzy
3895
+ msgid "Inactive Reports"
3896
+ msgstr "Informes Personalizados"
3897
+
3898
+ #: ../admin/wp-slimstat-admin.php:562
3899
  #, fuzzy
3900
  msgid "SlimStat"
3901
  msgstr "Acerca de WP-SlimStat"
3902
 
3903
+ #: ../admin/wp-slimstat-admin.php:620
 
3904
  #, fuzzy
3905
+ msgid "Slimstat"
3906
+ msgstr "Acerca de WP-SlimStat"
3907
 
3908
+ #: ../admin/wp-slimstat-admin.php:709
3909
  #, fuzzy
3910
  msgid "Pageviews in the last "
3911
  msgstr "Visitas a la página en los últimos 365 días"
3912
 
3913
+ #: ../admin/wp-slimstat-admin.php:712
3914
  #, fuzzy
3915
  msgid "Unique IPs in the last "
3916
  msgstr "Únicamente interno"
3917
 
3918
+ #: ../admin/wp-slimstat-admin.php:766
3919
  msgid "Show on screen"
3920
  msgstr "Mostrar en pantalla"
3921
 
3922
+ #: ../admin/wp-slimstat-admin.php:847
3923
  msgid "Already saved"
3924
  msgstr ""
3925
 
3926
+ #: ../admin/wp-slimstat-admin.php:855
3927
  msgid "Saved"
3928
  msgstr ""
3929
 
3930
+ #: ../admin/wp-slimstat-admin.php:875
3931
  #, fuzzy
3932
  msgid "Delete this filter"
3933
  msgstr "Filtrar páginas visitadas dondé:"
3934
 
3935
+ #: ../admin/wp-slimstat-admin.php:919
3936
  msgid "There was an error updating the following options:"
3937
  msgstr "Hubo un error al actualizar las siguientes opciones:"
3938
 
3939
+ #: ../admin/wp-slimstat-admin.php:922
3940
  #, fuzzy
3941
  msgid "Your changes have been saved."
3942
  msgstr "Sus ajustes se han actualizado correctamente."
3943
 
3944
+ #: ../admin/wp-slimstat-admin.php:945
3945
  msgid "Save Changes"
3946
  msgstr "Guardar los cambios"
3947
 
3948
+ #: ../admin/wp-slimstat-admin.php:961
3949
  msgid "Definitions"
3950
  msgstr "Definiciones"
3951
 
3952
+ #: ../admin/wp-slimstat-admin.php:964
3953
  #, fuzzy
3954
  msgid "Pageview"
3955
  msgstr "Paginas visitadas"
3956
 
3957
+ #: ../admin/wp-slimstat-admin.php:964
3958
  #, fuzzy
3959
  msgid ""
3960
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3966
  "archivo desde un servidor web. WP SLIMStat registra una visita de página "
3967
  "cada vez que el código de seguimiento se ejecuta"
3968
 
3969
+ #: ../admin/wp-slimstat-admin.php:965
3970
  #, fuzzy
3971
  msgid "(Human) Visit"
3972
  msgstr "Visitas humanas"
3973
 
3974
+ #: ../admin/wp-slimstat-admin.php:965
3975
  msgid ""
3976
  "A period of interaction between a visitor's browser and your website, ending "
3977
  "when the browser is closed or when the user has been inactive on that site "
3981
  "termina cuando se cierra el navegador o cuando el usuario ha estado inactivo "
3982
  "en ese sitio durante 30 minutos"
3983
 
3984
+ #: ../admin/wp-slimstat-admin.php:966
3985
  msgid ""
3986
  "Any user who has left a comment on your blog, and is thus identified by "
3987
  "Wordpress as a returning visitor"
3989
  "Todo usuario que haya dejado un comentario en su blog, por lo que es "
3990
  "identificado por Wordpress como un visitante que regresó"
3991
 
3992
+ #: ../admin/wp-slimstat-admin.php:967
3993
  #, fuzzy
3994
  msgid "Unique IP"
3995
  msgstr "IPs Unicas"
3996
 
3997
+ #: ../admin/wp-slimstat-admin.php:967
3998
  msgid ""
3999
  "Used to differentiate between multiple requests to download a file from one "
4000
  "internet address (IP) and requests originating from many distinct addresses; "
4007
  "dirección de Internet de donde vino una visita de página, es útil, pero no "
4008
  "es perfecta"
4009
 
4010
+ #: ../admin/wp-slimstat-admin.php:968
4011
  msgid ""
4012
  "the originating IP address of a client connecting to a web server through an "
4013
  "HTTP proxy or load balancer"
4015
  "dirección IP de origen de un cliente que se conecta a un servidor web a "
4016
  "través de un proxy HTTP o equilibrador de carga"
4017
 
4018
+ #: ../admin/wp-slimstat-admin.php:969
4019
  #, fuzzy
4020
  msgid "Direct Traffic"
4021
  msgstr "Visita Directa"
4022
 
4023
+ #: ../admin/wp-slimstat-admin.php:969
4024
  msgid ""
4025
  "All those people showing up to your Web site by typing in the URL of your "
4026
  "Web site coming or from a bookmark; some people also call this \"default "
4030
  "URL de su sitio web o que vienen de un favorito, algunas personas también "
4031
  "llaman a esto \"tráfico por defecto\" o \"tráfico ambiente\""
4032
 
4033
+ #: ../admin/wp-slimstat-admin.php:970
4034
  #, fuzzy
4035
  msgid "Search Engine"
4036
  msgstr "Motores de Búsqueda"
4037
 
4038
+ #: ../admin/wp-slimstat-admin.php:970
4039
  msgid ""
4040
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
4041
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
4043
  "Google, Yahoo, MSN, Ask, otros; este cubo incluirá tanto su tráfico "
4044
  "orgánico, así como por pago (PPC / SEM), así que tenga cuidado de que"
4045
 
4046
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
4047
  msgid "Keywords used by your visitors to find your website on a search engine"
4048
  msgstr ""
4049
  "Las palabras clave utilizadas por los visitantes para encontrar su sitio web "
4050
  "en un buscador"
4051
 
4052
+ #: ../admin/wp-slimstat-admin.php:972
4053
  msgid "SERP"
4054
  msgstr "SERP"
4055
 
4056
+ #: ../admin/wp-slimstat-admin.php:972
4057
  msgid ""
4058
  "Short for search engine results page, the Web page that a search engine "
4059
  "returns with the results of its search. The value shown represents your rank "
4064
  "que se muestra representa su rango (o posición) dentro de esa lista de los "
4065
  "resultados"
4066
 
4067
+ #: ../admin/wp-slimstat-admin.php:973
4068
  msgid ""
4069
  "Any program used for accessing a website; this includes browsers, robots, "
4070
  "spiders and any other program that was used to retrieve information from the "
4074
  "navegadores, robots, arañas y cualquier otro programa que se utiliza para "
4075
  "recuperar información del sitio"
4076
 
4077
+ #: ../admin/wp-slimstat-admin.php:974
4078
  msgid ""
4079
  "A link from one domain to another is said to be outbound from its source "
4080
  "anchor and inbound to its target. This report lists all the links to other "
4084
  "de anclaje y de entrada a su objetivo. Este informe muestra todos los "
4085
  "enlaces a otros sitios web, seguidos por sus visitantes."
4086
 
4087
+ #: ../admin/wp-slimstat-admin.php:981
4088
  msgid "Basic Filters"
4089
  msgstr "Filtros básicos"
4090
 
4091
+ #: ../admin/wp-slimstat-admin.php:984
4092
  msgid "User agent (Firefox, Chrome, ...)"
4093
  msgstr "Agente usuario(Firefox, Chrome, ...)"
4094
 
4095
+ #: ../admin/wp-slimstat-admin.php:985
4096
  msgid "2-letter code (us, ru, de, it, ...)"
4097
  msgstr "código de 2 letras (eu, ru, de, it, ...)"
4098
 
4099
+ #: ../admin/wp-slimstat-admin.php:986
4100
  msgid "IP"
4101
  msgstr "IP"
4102
 
4103
+ #: ../admin/wp-slimstat-admin.php:986
4104
  msgid "Visitor's public IP address"
4105
  msgstr "Dirección IP pública del visitante"
4106
 
4107
+ #: ../admin/wp-slimstat-admin.php:988
4108
  msgid ""
4109
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4110
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
4114
  "en-us/library/ee825488(v=cs.20).aspx\">págna de cultura del lenguaje</a> "
4115
  "(primera columna) para más información"
4116
 
4117
+ #: ../admin/wp-slimstat-admin.php:989
4118
  msgid ""
4119
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4120
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
4124
  "target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
4125
  "\">esta página del manual</a> para obtener más información"
4126
 
4127
+ #: ../admin/wp-slimstat-admin.php:990
4128
  msgid "URL accessed on your site"
4129
  msgstr "URL visitada en su sitio"
4130
 
4131
+ #: ../admin/wp-slimstat-admin.php:991
4132
  msgid "Complete address of the referrer page"
4133
  msgstr "Dirección completa de la página que refiere"
4134
 
4135
+ #: ../admin/wp-slimstat-admin.php:992
4136
+ #, fuzzy
4137
+ msgid "Visitor's Name"
4138
+ msgstr "Visitantes"
4139
+
4140
+ #: ../admin/wp-slimstat-admin.php:992
4141
  msgid ""
4142
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4143
  "comment"
4145
  "Nombres de visitantes según la cookie establecida por Wordpress después de "
4146
  "dejar un comentario"
4147
 
4148
+ #: ../admin/wp-slimstat-admin.php:1000
4149
  msgid "Advanced Filters"
4150
  msgstr "Filtros avanzados"
4151
 
4152
+ #: ../admin/wp-slimstat-admin.php:1003
4153
  msgid "user agent version (9.0, 11, ...)"
4154
  msgstr "versión del agente de usuario (9,0, 11, ...)"
4155
 
4156
+ #: ../admin/wp-slimstat-admin.php:1004
4157
  msgid ""
4158
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4159
  "all others"
4161
  "1 = oruga del motor de búsqueda, 2 = dispositivo móvil, 3 = lector de "
4162
  "sindicación, 0 =a todos los demás"
4163
 
4164
+ #: ../admin/wp-slimstat-admin.php:1005
4165
  #, fuzzy
4166
  msgid "Pageview Attributes"
4167
  msgstr "Paginas visitadas"
4168
 
4169
+ #: ../admin/wp-slimstat-admin.php:1005
4170
  msgid ""
4171
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4172
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4176
  "través de <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4177
  "Link_prefetching_FAQ\">Preecaptura de Enlaces</a> o técnicas similares"
4178
 
4179
+ #: ../admin/wp-slimstat-admin.php:1006
4180
  msgid "author associated to that post/page when the resource was accessed"
4181
  msgstr "autor asociado a esa publicación/página cuando se accedió al recurso"
4182
 
4183
+ #: ../admin/wp-slimstat-admin.php:1007
4184
  msgid "ID of the category/term associated to the resource, when available"
4185
  msgstr ""
4186
  "ID de la categoría / término asociado al recurso, cuando esté disponible"
4187
 
4188
+ #: ../admin/wp-slimstat-admin.php:1008
4189
  msgid "visitor's originating IP address, if available"
4190
  msgstr "dirección IP de origen del visitante, si está disponible"
4191
 
4192
+ #: ../admin/wp-slimstat-admin.php:1009
4193
  msgid ""
4194
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4195
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4203
  "wordpress.org/Conditional_Tags\">Etiquetas condicionales</a> página del "
4204
  "manual para más información"
4205
 
4206
+ #: ../admin/wp-slimstat-admin.php:1010
4207
  msgid "Screen Resolution"
4208
  msgstr "Resolución de Pantalla"
4209
 
4210
+ #: ../admin/wp-slimstat-admin.php:1010
4211
  msgid "viewport width and height (1024x768, 800x600, ...)"
4212
  msgstr "ancho de vista y altura (1024x768, 800x600 , ...)"
4213
 
4214
+ #: ../admin/wp-slimstat-admin.php:1011
4215
  msgid ""
4216
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4217
  "visitors"
4219
  "se utiliza generalmente en conjunción con <em> no está vacío </em>, "
4220
  "identifica los visitantes humanos"
4221
 
4222
+ #: ../admin/wp-slimstat-admin.php:1012
4223
  msgid "Date Filters"
4224
  msgstr "Filtros de fecha"
4225
 
4226
+ #: ../admin/wp-slimstat-admin.php:1012
4227
  msgid ""
4228
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4229
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4234
  "(es decir, día=1, mes=1, año=blank, intervalo=-1 establecerá un filtro de "
4235
  "año a la fecha)"
4236
 
4237
+ #: ../admin/wp-slimstat-admin.php:1013
4238
  msgid "SERP Position"
4239
  msgstr "Posición SERP"
4240
 
4241
+ #: ../admin/wp-slimstat-admin.php:1013
4242
  msgid ""
4243
  "set the filter to Referer contains cd=N&, where N is the position you are "
4244
  "looking for"
4246
  "configurar el filtro para Referer contiene cd=N&, donde N es la posición que "
4247
  "usted está buscando"
4248
 
4249
+ #: ../admin/wp-slimstat-admin.php:1040
4250
  msgid "Yes"
4251
  msgstr "Si"
4252
 
4253
+ #: ../admin/wp-slimstat-admin.php:1041
4254
  msgid "No"
4255
  msgstr "No"
4256
 
4257
+ #: ../admin/wp-slimstat-admin.php:1042
4258
  msgid "Site Specific"
4259
  msgstr ""
4260
 
4283
  msgstr "so blackberry"
4284
 
4285
  #: ../languages/dynamic_strings.php:11
4286
+ #, fuzzy
4287
+ msgid "centos"
4288
+ msgstr "Contenidos Recientes"
4289
+
4290
+ #: ../languages/dynamic_strings.php:12
4291
  msgid "chromeos"
4292
  msgstr ""
4293
 
4294
+ #: ../languages/dynamic_strings.php:13
4295
+ msgid "commodore64"
4296
+ msgstr ""
4297
+
4298
+ #: ../languages/dynamic_strings.php:14
4299
  msgid "cygwin"
4300
  msgstr "Cygwin"
4301
 
4302
+ #: ../languages/dynamic_strings.php:15
4303
  msgid "debian"
4304
  msgstr "Debian"
4305
 
4306
+ #: ../languages/dynamic_strings.php:16
4307
  msgid "digital unix"
4308
  msgstr "Digital Unix"
4309
 
4310
+ #: ../languages/dynamic_strings.php:17
4311
+ msgid "fedora"
4312
+ msgstr ""
4313
+
4314
+ #: ../languages/dynamic_strings.php:18
4315
  msgid "firefoxos"
4316
  msgstr ""
4317
 
4318
+ #: ../languages/dynamic_strings.php:19
4319
  msgid "freebsd"
4320
  msgstr "FreeBSD"
4321
 
4322
+ #: ../languages/dynamic_strings.php:20
4323
+ msgid "gentoo"
4324
+ msgstr ""
4325
+
4326
+ #: ../languages/dynamic_strings.php:21
4327
  msgid "hp-ux"
4328
  msgstr "HP-UX"
4329
 
4330
+ #: ../languages/dynamic_strings.php:22
4331
  #, fuzzy
4332
  msgid "ios"
4333
  msgstr "Apple iOS"
4334
 
4335
+ #: ../languages/dynamic_strings.php:23
4336
+ #, fuzzy
4337
+ msgid "iphone os"
4338
+ msgstr "iPhone OS X"
4339
+
4340
+ #: ../languages/dynamic_strings.php:24
4341
  msgid "iphone osx"
4342
  msgstr "iPhone OS X"
4343
 
4344
+ #: ../languages/dynamic_strings.php:25
4345
  msgid "irix"
4346
  msgstr "IRIX"
4347
 
4348
+ #: ../languages/dynamic_strings.php:26
4349
  msgid "java"
4350
  msgstr "Java"
4351
 
4352
+ #: ../languages/dynamic_strings.php:27
4353
+ msgid "kanotix"
4354
+ msgstr ""
4355
+
4356
+ #: ../languages/dynamic_strings.php:28
4357
+ msgid "knoppix"
4358
+ msgstr ""
4359
+
4360
+ #: ../languages/dynamic_strings.php:29
4361
  msgid "linux"
4362
  msgstr "Linux"
4363
 
4364
+ #: ../languages/dynamic_strings.php:30
4365
  msgid "mac"
4366
  msgstr "Mac"
4367
 
4368
+ #: ../languages/dynamic_strings.php:31
4369
  msgid "mac68k"
4370
  msgstr "Mac 68k"
4371
 
4372
+ #: ../languages/dynamic_strings.php:32
4373
  msgid "macosx"
4374
  msgstr "Mac OS X"
4375
 
4376
+ #: ../languages/dynamic_strings.php:33
4377
  msgid "macppc"
4378
  msgstr "Mac PowerPC"
4379
 
4380
+ #: ../languages/dynamic_strings.php:34
4381
+ msgid "mandrake"
4382
+ msgstr ""
4383
+
4384
+ #: ../languages/dynamic_strings.php:35
4385
+ #, fuzzy
4386
+ msgid "mandriva"
4387
+ msgstr "Android"
4388
+
4389
+ #: ../languages/dynamic_strings.php:36
4390
+ msgid "mepis"
4391
+ msgstr ""
4392
+
4393
+ # Spanish (Dominican Republic)
4394
+ #: ../languages/dynamic_strings.php:37
4395
+ #, fuzzy
4396
+ msgid "ms-dos"
4397
+ msgstr "Spanish (Dominican Republic)"
4398
+
4399
+ #: ../languages/dynamic_strings.php:38
4400
  msgid "netbsd"
4401
  msgstr "NetBSD"
4402
 
4403
+ #: ../languages/dynamic_strings.php:39
4404
+ msgid "nintendo"
4405
+ msgstr ""
4406
+
4407
+ #: ../languages/dynamic_strings.php:40
4408
  msgid "openbsd"
4409
  msgstr "OpenBSD"
4410
 
4411
+ #: ../languages/dynamic_strings.php:41
4412
  msgid "openvms"
4413
  msgstr "OpenVMS"
4414
 
4415
+ #: ../languages/dynamic_strings.php:42
4416
  msgid "os/2"
4417
  msgstr "IBM OS/2"
4418
 
4419
+ #: ../languages/dynamic_strings.php:43
4420
  msgid "palm"
4421
  msgstr "Palm"
4422
 
4423
+ #: ../languages/dynamic_strings.php:44
4424
+ #, fuzzy
4425
+ msgid "palmos"
4426
+ msgstr "Palm"
4427
+
4428
+ #: ../languages/dynamic_strings.php:45
4429
+ #, fuzzy
4430
+ msgid "pclinuxos"
4431
+ msgstr "Linux"
4432
+
4433
+ #: ../languages/dynamic_strings.php:46
4434
+ msgid "playstation"
4435
+ msgstr ""
4436
+
4437
+ #: ../languages/dynamic_strings.php:47
4438
  msgid "powertv"
4439
  msgstr "PowerTV"
4440
 
4441
+ #: ../languages/dynamic_strings.php:48
4442
+ msgid "redhat"
4443
+ msgstr ""
4444
+
4445
+ #: ../languages/dynamic_strings.php:49
4446
  msgid "rim os"
4447
  msgstr ""
4448
 
4449
+ #: ../languages/dynamic_strings.php:50
4450
  msgid "risc os"
4451
  msgstr "Risc OS"
4452
 
4453
+ #: ../languages/dynamic_strings.php:51
4454
+ msgid "slackware"
4455
+ msgstr ""
4456
+
4457
+ #: ../languages/dynamic_strings.php:52
4458
  msgid "solaris"
4459
  msgstr "Solaris"
4460
 
4461
+ #: ../languages/dynamic_strings.php:53
4462
  msgid "sunos"
4463
  msgstr "Sun OS"
4464
 
4465
+ #: ../languages/dynamic_strings.php:54
4466
+ msgid "suse"
4467
+ msgstr ""
4468
+
4469
+ #: ../languages/dynamic_strings.php:55
4470
  msgid "symbianos"
4471
  msgstr "Symbian OS"
4472
 
4473
+ #: ../languages/dynamic_strings.php:56
4474
  msgid "ubuntu"
4475
  msgstr ""
4476
 
4477
+ #: ../languages/dynamic_strings.php:57
4478
  msgid "unix"
4479
  msgstr "Unix"
4480
 
4481
+ #: ../languages/dynamic_strings.php:58
4482
  msgid "unknown"
4483
  msgstr "Desconocido"
4484
 
4485
+ #: ../languages/dynamic_strings.php:59
4486
+ #, fuzzy
4487
+ msgid "xandros"
4488
+ msgstr "Android"
4489
+
4490
+ #: ../languages/dynamic_strings.php:60
4491
  msgid "wap"
4492
  msgstr "WAP"
4493
 
4494
+ #: ../languages/dynamic_strings.php:61
4495
  msgid "webos"
4496
  msgstr "WebOS"
4497
 
4498
+ #: ../languages/dynamic_strings.php:62
4499
  #, fuzzy
4500
  msgid "win10"
4501
  msgstr "Windows 16-bit"
4502
 
4503
+ #: ../languages/dynamic_strings.php:63
4504
  msgid "win16"
4505
  msgstr "Windows 16-bit"
4506
 
4507
+ #: ../languages/dynamic_strings.php:64
4508
  msgid "win2000"
4509
  msgstr "Windows 2000"
4510
 
4511
+ #: ../languages/dynamic_strings.php:65
4512
  msgid "win2003"
4513
  msgstr "Windows 2003"
4514
 
4515
+ #: ../languages/dynamic_strings.php:66
4516
  msgid "win31"
4517
  msgstr "Windows 3.1"
4518
 
4519
+ #: ../languages/dynamic_strings.php:67
4520
  msgid "win32"
4521
  msgstr "Windows 32-bit"
4522
 
4523
+ #: ../languages/dynamic_strings.php:68 ../languages/dynamic_strings.php:69
4524
  msgid "win7"
4525
  msgstr "Windows 7"
4526
 
4527
+ #: ../languages/dynamic_strings.php:70
4528
  msgid "win8"
4529
  msgstr "win8"
4530
 
4531
+ #: ../languages/dynamic_strings.php:71
4532
  msgid "win8.1"
4533
  msgstr "win8.1"
4534
 
4535
+ #: ../languages/dynamic_strings.php:72
4536
  msgid "win95"
4537
  msgstr "Windows 95"
4538
 
4539
+ #: ../languages/dynamic_strings.php:73
4540
  msgid "win98"
4541
  msgstr "Windows 98"
4542
 
4543
+ #: ../languages/dynamic_strings.php:74
4544
  msgid "wince"
4545
  msgstr "Windows CE"
4546
 
4547
+ #: ../languages/dynamic_strings.php:75
 
 
 
 
 
4548
  msgid "winme"
4549
  msgstr "Windows ME"
4550
 
4551
+ #: ../languages/dynamic_strings.php:76
4552
  msgid "winnt"
4553
  msgstr "Windows NT"
4554
 
4555
+ #: ../languages/dynamic_strings.php:77
4556
  #, fuzzy
4557
  msgid "winphone7"
4558
  msgstr "iPhone OS X"
4559
 
4560
+ #: ../languages/dynamic_strings.php:78
4561
  #, fuzzy
4562
  msgid "winphone7.5"
4563
  msgstr "iPhone OS X"
4564
 
4565
+ #: ../languages/dynamic_strings.php:79
4566
  #, fuzzy
4567
  msgid "winphone8"
4568
  msgstr "iPhone OS X"
4569
 
4570
+ #: ../languages/dynamic_strings.php:80
4571
  #, fuzzy
4572
  msgid "winphone8.1"
4573
  msgstr "iPhone OS X"
4574
 
4575
+ #: ../languages/dynamic_strings.php:81
4576
+ msgid "winrt"
4577
+ msgstr ""
4578
+
4579
+ #: ../languages/dynamic_strings.php:82
4580
  msgid "winvista"
4581
  msgstr "Windows Vista"
4582
 
4583
+ #: ../languages/dynamic_strings.php:83
4584
  msgid "winxp"
4585
  msgstr "Windows XP"
4586
 
4587
+ #: ../languages/dynamic_strings.php:84
4588
  msgid "wyderos"
4589
  msgstr "WyderOS"
4590
 
4591
+ #: ../languages/dynamic_strings.php:85
4592
+ msgid "zaurus"
4593
+ msgstr ""
4594
+
4595
+ #: ../languages/dynamic_strings.php:88
4596
  #, fuzzy
4597
  msgid "acrobat"
4598
  msgstr "Acrobat"
4599
 
4600
+ #: ../languages/dynamic_strings.php:89
4601
  msgid "director"
4602
  msgstr "director"
4603
 
4604
+ #: ../languages/dynamic_strings.php:90
4605
  #, fuzzy
4606
  msgid "flash"
4607
  msgstr "Flash"
4608
 
4609
+ #: ../languages/dynamic_strings.php:91
4610
  #, fuzzy
4611
  msgid "mediaplayer"
4612
  msgstr "Media Player"
4613
 
4614
+ #: ../languages/dynamic_strings.php:92
4615
  msgid "quicktime"
4616
  msgstr "quicktime"
4617
 
4618
+ #: ../languages/dynamic_strings.php:93
4619
  msgid "real"
4620
  msgstr "real"
4621
 
4622
+ #: ../languages/dynamic_strings.php:94
4623
  #, fuzzy
4624
  msgid "silverlight"
4625
  msgstr "Silverlight"
4626
 
4627
+ #: ../languages/dynamic_strings.php:97
4628
  msgid "p-and"
4629
  msgstr "Android"
4630
 
4631
+ #: ../languages/dynamic_strings.php:98
4632
  msgid "p-bla"
4633
  msgstr "BlackBerry"
4634
 
4635
+ #: ../languages/dynamic_strings.php:99
4636
  msgid "p-chr"
4637
  msgstr "Chrome OS"
4638
 
4639
+ #: ../languages/dynamic_strings.php:100
4640
  msgid "p-fir"
4641
  msgstr ""
4642
 
4643
+ #: ../languages/dynamic_strings.php:101
4644
  msgid "p-fre"
4645
  msgstr "Linux FreeBSD"
4646
 
4647
+ #: ../languages/dynamic_strings.php:102
4648
  msgid "p-ios"
4649
  msgstr "Apple iOS"
4650
 
4651
+ #: ../languages/dynamic_strings.php:103
4652
  msgid "p-jav"
4653
  msgstr "Java-based OS"
4654
 
4655
+ #: ../languages/dynamic_strings.php:104
4656
  msgid "p-lin"
4657
  msgstr "Linux"
4658
 
4659
+ #: ../languages/dynamic_strings.php:105
4660
  msgid "p-mac"
4661
  msgstr "Apple"
4662
 
4663
+ #: ../languages/dynamic_strings.php:106
4664
  msgid "p-rim"
4665
  msgstr ""
4666
 
4667
+ #: ../languages/dynamic_strings.php:107
4668
  msgid "p-sym"
4669
  msgstr "Symbian OS"
4670
 
4671
+ #: ../languages/dynamic_strings.php:108
4672
  msgid "p-ubu"
4673
  msgstr ""
4674
 
4675
+ #: ../languages/dynamic_strings.php:109
4676
  msgid "p-unk"
4677
  msgstr "Unknown"
4678
 
4679
+ #: ../languages/dynamic_strings.php:110
4680
  msgid "p-win"
4681
  msgstr "Microsoft"
4682
 
4683
  # Afrikaans
4684
+ #: ../languages/dynamic_strings.php:113
4685
  msgid "l-af"
4686
  msgstr "Afrikaans"
4687
 
4688
  # Afrikaans
4689
+ #: ../languages/dynamic_strings.php:114
4690
  #, fuzzy
4691
  msgid "l-af-za"
4692
  msgstr "Afrikaans"
4693
 
4694
  # Arabic
4695
+ #: ../languages/dynamic_strings.php:115
4696
  msgid "l-ar"
4697
  msgstr "Arabic"
4698
 
4699
  # Arabic (United Arab Emirates)
4700
+ #: ../languages/dynamic_strings.php:116
4701
  msgid "l-ar-ae"
4702
  msgstr "Arabic (United Arab Emirates)"
4703
 
4704
  # Arabic (Bahrain)
4705
+ #: ../languages/dynamic_strings.php:117
4706
  msgid "l-ar-bh"
4707
  msgstr "Arabic (Bahrain)"
4708
 
4709
  # Arabic (Algeria)
4710
+ #: ../languages/dynamic_strings.php:118
4711
  msgid "l-ar-dz"
4712
  msgstr "Arabic (Algeria)"
4713
 
4714
  # Arabic (Egypt)
4715
+ #: ../languages/dynamic_strings.php:119
4716
  msgid "l-ar-eg"
4717
  msgstr "Arabic (Egypt)"
4718
 
4719
  # Arabic (Iraq)
4720
+ #: ../languages/dynamic_strings.php:120
4721
  msgid "l-ar-iq"
4722
  msgstr "Arabic (Iraq)"
4723
 
4724
  # Arabic (Jordan)
4725
+ #: ../languages/dynamic_strings.php:121
4726
  msgid "l-ar-jo"
4727
  msgstr "Arabic (Jordan)"
4728
 
4729
  # Arabic (Kuwait)
4730
+ #: ../languages/dynamic_strings.php:122
4731
  msgid "l-ar-kw"
4732
  msgstr "Arabic (Kuwait)"
4733
 
4734
  # Arabic (Lebanon)
4735
+ #: ../languages/dynamic_strings.php:123
4736
  msgid "l-ar-lb"
4737
  msgstr "Arabic (Lebanon)"
4738
 
4739
  # Arabic (Libya)
4740
+ #: ../languages/dynamic_strings.php:124
4741
  msgid "l-ar-ly"
4742
  msgstr "Arabic (Libya)"
4743
 
4744
  # Arabic (Morocco)
4745
+ #: ../languages/dynamic_strings.php:125
4746
  msgid "l-ar-ma"
4747
  msgstr "Arabic (Morocco)"
4748
 
4749
  # Arabic (Oman)
4750
+ #: ../languages/dynamic_strings.php:126
4751
  msgid "l-ar-om"
4752
  msgstr "Arabic (Oman)"
4753
 
4754
  # Arabic (Qatar)
4755
+ #: ../languages/dynamic_strings.php:127
4756
  msgid "l-ar-qa"
4757
  msgstr "Arabic (Qatar)"
4758
 
4759
  # Arabic (Saudi Arabia)
4760
+ #: ../languages/dynamic_strings.php:128
4761
  msgid "l-ar-sa"
4762
  msgstr "Arabic (Saudi Arabia)"
4763
 
4764
  # Arabic (Syria)
4765
+ #: ../languages/dynamic_strings.php:129
4766
  msgid "l-ar-sy"
4767
  msgstr "Arabic (Syria)"
4768
 
4769
  # Arabic (Tunisia)
4770
+ #: ../languages/dynamic_strings.php:130
4771
  msgid "l-ar-tn"
4772
  msgstr "Arabic (Tunisia)"
4773
 
4774
  # Arabic (Yemen)
4775
+ #: ../languages/dynamic_strings.php:131
4776
  msgid "l-ar-ye"
4777
  msgstr "Arabic (Yemen)"
4778
 
4779
  # Azerbaijani
4780
+ #: ../languages/dynamic_strings.php:132
4781
  msgid "l-az"
4782
  msgstr "Azerbaijani"
4783
 
4784
  # Azerbaijani
4785
+ #: ../languages/dynamic_strings.php:133
4786
  #, fuzzy
4787
  msgid "l-az-az"
4788
  msgstr "Azerbaijani"
4789
 
4790
  # Belarusian
4791
+ #: ../languages/dynamic_strings.php:134
4792
  msgid "l-be"
4793
  msgstr "Belarusian"
4794
 
4795
  # Belarusian
4796
+ #: ../languages/dynamic_strings.php:135
4797
  #, fuzzy
4798
  msgid "l-be-by"
4799
  msgstr "Belarusian"
4800
 
4801
  # Bulgarian
4802
+ #: ../languages/dynamic_strings.php:136
4803
  msgid "l-bg"
4804
  msgstr "Bulgarian"
4805
 
4806
  # Bulgarian
4807
+ #: ../languages/dynamic_strings.php:137
4808
  #, fuzzy
4809
  msgid "l-bg-bg"
4810
  msgstr "Bulgarian"
4811
 
4812
  # Bosnian
4813
+ #: ../languages/dynamic_strings.php:138
4814
  #, fuzzy
4815
  msgid "l-bs-ba"
4816
  msgstr "Bosnian"
4817
 
4818
  # Catalan; Valencian
4819
+ #: ../languages/dynamic_strings.php:139
4820
  msgid "l-ca"
4821
  msgstr "Catalan; Valencian"
4822
 
4823
  # Catalan; Valencian
4824
+ #: ../languages/dynamic_strings.php:140
4825
  #, fuzzy
4826
  msgid "l-ca-es"
4827
  msgstr "Catalan; Valencian"
4828
 
4829
  # Czech
4830
+ #: ../languages/dynamic_strings.php:141
4831
  msgid "l-cs"
4832
  msgstr "Czech"
4833
 
4834
  # Czech
4835
+ #: ../languages/dynamic_strings.php:142
4836
  #, fuzzy
4837
  msgid "l-cs-cz"
4838
  msgstr "Czech"
4839
 
4840
  # Welsh
4841
+ #: ../languages/dynamic_strings.php:143
4842
  msgid "l-cy"
4843
  msgstr "Welsh"
4844
 
4845
  # Welsh
4846
+ #: ../languages/dynamic_strings.php:144
4847
  #, fuzzy
4848
  msgid "l-cy-gb"
4849
  msgstr "Welsh"
4850
 
4851
  # Danish
4852
+ #: ../languages/dynamic_strings.php:145
4853
  msgid "l-da"
4854
  msgstr "Danish"
4855
 
4856
  # Danish
4857
+ #: ../languages/dynamic_strings.php:146
4858
  #, fuzzy
4859
  msgid "l-da-dk"
4860
  msgstr "Danish"
4861
 
4862
  # German
4863
+ #: ../languages/dynamic_strings.php:147
4864
  msgid "l-de"
4865
  msgstr "German"
4866
 
4867
  # German (Austria)
4868
+ #: ../languages/dynamic_strings.php:148
4869
  msgid "l-de-at"
4870
  msgstr "German (Austria)"
4871
 
4872
  # German (Switzerland)
4873
+ #: ../languages/dynamic_strings.php:149
4874
  msgid "l-de-ch"
4875
  msgstr "German (Switzerland)"
4876
 
4877
  # German (Germany)
4878
+ #: ../languages/dynamic_strings.php:150
4879
  msgid "l-de-de"
4880
  msgstr "German (Germany)"
4881
 
4882
  # German (Liechtenstein)
4883
+ #: ../languages/dynamic_strings.php:151
4884
  msgid "l-de-li"
4885
  msgstr "German (Liechtenstein)"
4886
 
4887
  # German (Luxembourg)
4888
+ #: ../languages/dynamic_strings.php:152
4889
  msgid "l-de-lu"
4890
  msgstr "German (Luxembourg)"
4891
 
4892
  # Dhivehi; Divehi; Maldivian
4893
+ #: ../languages/dynamic_strings.php:153
4894
  msgid "l-dv"
4895
  msgstr "Dhivehi; Divehi; Maldivian"
4896
 
4897
  # Dhivehi; Divehi; Maldivian
4898
+ #: ../languages/dynamic_strings.php:154
4899
  #, fuzzy
4900
  msgid "l-dv-mv"
4901
  msgstr "Dhivehi; Divehi; Maldivian"
4902
 
4903
  # Modern Greek (1453-)
4904
+ #: ../languages/dynamic_strings.php:155
4905
  msgid "l-el"
4906
  msgstr "Modern Greek (1453-)"
4907
 
4908
  # Greek (Greece)
4909
+ #: ../languages/dynamic_strings.php:156
4910
  msgid "l-el-gr"
4911
  msgstr "Greek (Greece)"
4912
 
4913
  # English
4914
+ #: ../languages/dynamic_strings.php:157
4915
  msgid "l-en"
4916
  msgstr "English"
4917
 
4918
  # English (Australia)
4919
+ #: ../languages/dynamic_strings.php:158
4920
  msgid "l-en-au"
4921
  msgstr "English (Australia)"
4922
 
4923
  # English (Belize)
4924
+ #: ../languages/dynamic_strings.php:159
4925
  msgid "l-en-bz"
4926
  msgstr "English (Belize)"
4927
 
4928
  # English (Canada)
4929
+ #: ../languages/dynamic_strings.php:160
4930
  msgid "l-en-ca"
4931
  msgstr "English (Canada)"
4932
 
4933
  # English (Canada)
4934
+ #: ../languages/dynamic_strings.php:161
4935
  #, fuzzy
4936
  msgid "l-en-cb"
4937
  msgstr "English (Canada)"
4938
 
4939
  # English (United Kingdom)
4940
+ #: ../languages/dynamic_strings.php:162
4941
  msgid "l-en-gb"
4942
  msgstr "English (United Kingdom)"
4943
 
4944
  # English (Ireland)
4945
+ #: ../languages/dynamic_strings.php:163
4946
  msgid "l-en-ie"
4947
  msgstr "English (Ireland)"
4948
 
4949
  # English (Jamaica)
4950
+ #: ../languages/dynamic_strings.php:164
4951
  msgid "l-en-jm"
4952
  msgstr "English (Jamaica)"
4953
 
4954
  # English (New Zealand)
4955
+ #: ../languages/dynamic_strings.php:165
4956
  msgid "l-en-nz"
4957
  msgstr "English (New Zealand)"
4958
 
4959
  # English
4960
+ #: ../languages/dynamic_strings.php:166
4961
  #, fuzzy
4962
  msgid "l-en-ph"
4963
  msgstr "English"
4964
 
4965
  # English (Trinidad)
4966
+ #: ../languages/dynamic_strings.php:167
4967
  msgid "l-en-tt"
4968
  msgstr "English (Trinidad)"
4969
 
4970
  # English (United States)
4971
+ #: ../languages/dynamic_strings.php:168
4972
  msgid "l-en-us"
4973
  msgstr "English (United States)"
4974
 
4975
  # English (South Africa)
4976
+ #: ../languages/dynamic_strings.php:169
4977
  msgid "l-en-za"
4978
  msgstr "English (South Africa)"
4979
 
4980
  # English (South Africa)
4981
+ #: ../languages/dynamic_strings.php:170
4982
  #, fuzzy
4983
  msgid "l-en-zw"
4984
  msgstr "English (South Africa)"
4985
 
4986
  # Esperanto
4987
+ #: ../languages/dynamic_strings.php:171
4988
  msgid "l-eo"
4989
  msgstr "Esperanto"
4990
 
4991
  # Spanish; Castilian
4992
+ #: ../languages/dynamic_strings.php:172
4993
  msgid "l-es"
4994
  msgstr "Spanish; Castilian"
4995
 
4996
  # Spanish (Argentina)
4997
+ #: ../languages/dynamic_strings.php:173
4998
  msgid "l-es-ar"
4999
  msgstr "Spanish (Argentina)"
5000
 
5001
  # Spanish (Bolivia)
5002
+ #: ../languages/dynamic_strings.php:174
5003
  msgid "l-es-bo"
5004
  msgstr "Spanish (Bolivia)"
5005
 
5006
  # Spanish (Chile)
5007
+ #: ../languages/dynamic_strings.php:175
5008
  msgid "l-es-cl"
5009
  msgstr "Spanish (Chile)"
5010
 
5011
  # Spanish (Colombia)
5012
+ #: ../languages/dynamic_strings.php:176
5013
  msgid "l-es-co"
5014
  msgstr "Spanish (Colombia)"
5015
 
5016
  # Spanish (Costa Rica)
5017
+ #: ../languages/dynamic_strings.php:177
5018
  msgid "l-es-cr"
5019
  msgstr "Spanish (Costa Rica)"
5020
 
5021
  # Spanish (Dominican Republic)
5022
+ #: ../languages/dynamic_strings.php:178
5023
  msgid "l-es-do"
5024
  msgstr "Spanish (Dominican Republic)"
5025
 
5026
  # Spanish (Ecuador)
5027
+ #: ../languages/dynamic_strings.php:179
5028
  msgid "l-es-ec"
5029
  msgstr "Spanish (Ecuador)"
5030
 
5031
  # Spanish (Spain)
5032
+ #: ../languages/dynamic_strings.php:180
5033
  msgid "l-es-es"
5034
  msgstr "Spanish (Spain)"
5035
 
5036
  # Spanish (Guatemala)
5037
+ #: ../languages/dynamic_strings.php:181
5038
  msgid "l-es-gt"
5039
  msgstr "Spanish (Guatemala)"
5040
 
5041
  # Spanish (Honduras)
5042
+ #: ../languages/dynamic_strings.php:182
5043
  msgid "l-es-hn"
5044
  msgstr "Spanish (Honduras)"
5045
 
5046
  # Spanish (Mexico)
5047
+ #: ../languages/dynamic_strings.php:183
5048
  msgid "l-es-mx"
5049
  msgstr "Spanish (Mexico)"
5050
 
5051
  # Spanish (Nicaragua)
5052
+ #: ../languages/dynamic_strings.php:184
5053
  msgid "l-es-ni"
5054
  msgstr "Spanish (Nicaragua)"
5055
 
5056
  # Spanish (Panama)
5057
+ #: ../languages/dynamic_strings.php:185
5058
  msgid "l-es-pa"
5059
  msgstr "Spanish (Panama)"
5060
 
5061
  # Spanish (Peru)
5062
+ #: ../languages/dynamic_strings.php:186
5063
  msgid "l-es-pe"
5064
  msgstr "Spanish (Peru)"
5065
 
5066
  # Spanish (Puerto Rico)
5067
+ #: ../languages/dynamic_strings.php:187
5068
  msgid "l-es-pr"
5069
  msgstr "Spanish (Puerto Rico)"
5070
 
5071
  # Spanish (Paraguay)
5072
+ #: ../languages/dynamic_strings.php:188
5073
  msgid "l-es-py"
5074
  msgstr "Spanish (Paraguay)"
5075
 
5076
  # Spanish (El Salvador)
5077
+ #: ../languages/dynamic_strings.php:189
5078
  msgid "l-es-sv"
5079
  msgstr "Spanish (El Salvador)"
5080
 
5081
  # Spanish (Uruguay)
5082
+ #: ../languages/dynamic_strings.php:190
5083
  msgid "l-es-uy"
5084
  msgstr "Spanish (Uruguay)"
5085
 
5086
  # Spanish (Venezuela)
5087
+ #: ../languages/dynamic_strings.php:191
5088
  msgid "l-es-ve"
5089
  msgstr "Spanish (Venezuela)"
5090
 
5091
  # Estonian
5092
+ #: ../languages/dynamic_strings.php:192
5093
  msgid "l-et"
5094
  msgstr "Estonian"
5095
 
5096
  # Estonian
5097
+ #: ../languages/dynamic_strings.php:193
5098
  #, fuzzy
5099
  msgid "l-et-ee"
5100
  msgstr "Estonian"
5101
 
5102
  # Basque
5103
+ #: ../languages/dynamic_strings.php:194
5104
  msgid "l-eu"
5105
  msgstr "Basque"
5106
 
5107
  # Basque
5108
+ #: ../languages/dynamic_strings.php:195
5109
  #, fuzzy
5110
  msgid "l-eu-es"
5111
  msgstr "Basque"
5112
 
5113
  # Persian
5114
+ #: ../languages/dynamic_strings.php:196
5115
  msgid "l-fa"
5116
  msgstr "Persian"
5117
 
5118
  # Persian
5119
+ #: ../languages/dynamic_strings.php:197
5120
  #, fuzzy
5121
  msgid "l-fa-ir"
5122
  msgstr "Persian"
5123
 
5124
  # Finnish
5125
+ #: ../languages/dynamic_strings.php:198
5126
  msgid "l-fi"
5127
  msgstr "Finnish"
5128
 
5129
  # Finnish
5130
+ #: ../languages/dynamic_strings.php:199
5131
  #, fuzzy
5132
  msgid "l-fi-fi"
5133
  msgstr "Finnish"
5134
 
5135
  # Faroese
5136
+ #: ../languages/dynamic_strings.php:200
5137
  msgid "l-fo"
5138
  msgstr "Faroese"
5139
 
5140
  # Faroese
5141
+ #: ../languages/dynamic_strings.php:201
5142
  #, fuzzy
5143
  msgid "l-fo-fo"
5144
  msgstr "Faroese"
5145
 
5146
  # French
5147
+ #: ../languages/dynamic_strings.php:202
5148
  msgid "l-fr"
5149
  msgstr "French"
5150
 
5151
  # French (Belgium)
5152
+ #: ../languages/dynamic_strings.php:203
5153
  msgid "l-fr-be"
5154
  msgstr "French (Belgium)"
5155
 
5156
  # French (Canada)
5157
+ #: ../languages/dynamic_strings.php:204
5158
  msgid "l-fr-ca"
5159
  msgstr "French (Canada)"
5160
 
5161
  # French (Switzerland)
5162
+ #: ../languages/dynamic_strings.php:205
5163
  msgid "l-fr-ch"
5164
  msgstr "French (Switzerland)"
5165
 
5166
  # French (France)
5167
+ #: ../languages/dynamic_strings.php:206
5168
  msgid "l-fr-fr"
5169
  msgstr "French (France)"
5170
 
5171
  # French (Luxembourg)
5172
+ #: ../languages/dynamic_strings.php:207
5173
  msgid "l-fr-lu"
5174
  msgstr "French (Luxembourg)"
5175
 
5176
  # French (Switzerland)
5177
+ #: ../languages/dynamic_strings.php:208
5178
  #, fuzzy
5179
  msgid "l-fr-mc"
5180
  msgstr "French (Switzerland)"
5181
 
5182
  # Galician
5183
+ #: ../languages/dynamic_strings.php:209
5184
  msgid "l-gl"
5185
  msgstr "Galician"
5186
 
5187
  # Spanish; Castilian
5188
+ #: ../languages/dynamic_strings.php:210
5189
  #, fuzzy
5190
  msgid "l-gl-es"
5191
  msgstr "Spanish; Castilian"
5192
 
5193
  # Gujarati
5194
+ #: ../languages/dynamic_strings.php:211
5195
  msgid "l-gu"
5196
  msgstr "Gujarati"
5197
 
5198
  # Gujarati
5199
+ #: ../languages/dynamic_strings.php:212
5200
  #, fuzzy
5201
  msgid "l-gu-in"
5202
  msgstr "Gujarati"
5203
 
5204
  # Hebrew
5205
+ #: ../languages/dynamic_strings.php:213
5206
  msgid "l-he"
5207
  msgstr "Hebrew"
5208
 
5209
  # Hebrew (Israel)
5210
+ #: ../languages/dynamic_strings.php:214
5211
  msgid "l-he-il"
5212
  msgstr "Hebrew (Israel)"
5213
 
5214
  # Hindi
5215
+ #: ../languages/dynamic_strings.php:215
5216
  msgid "l-hi"
5217
  msgstr "Hindi"
5218
 
5219
  # Hindi
5220
+ #: ../languages/dynamic_strings.php:216
5221
  #, fuzzy
5222
  msgid "l-hi-in"
5223
  msgstr "Hindi"
5224
 
5225
  # Croatian
5226
+ #: ../languages/dynamic_strings.php:217
5227
  msgid "l-hr"
5228
  msgstr "Croatian"
5229
 
5230
  # Croatian
5231
+ #: ../languages/dynamic_strings.php:218
5232
  #, fuzzy
5233
  msgid "l-hr-ba"
5234
  msgstr "Croatian"
5235
 
5236
  # Croatian
5237
+ #: ../languages/dynamic_strings.php:219
5238
  #, fuzzy
5239
  msgid "l-hr-hr"
5240
  msgstr "Croatian"
5241
 
5242
  # Hungarian
5243
+ #: ../languages/dynamic_strings.php:220
5244
  msgid "l-hu"
5245
  msgstr "Hungarian"
5246
 
5247
  # Hungarian (Hungary)
5248
+ #: ../languages/dynamic_strings.php:221
5249
  msgid "l-hu-hu"
5250
  msgstr "Hungarian (Hungary)"
5251
 
5252
  # Armenian
5253
+ #: ../languages/dynamic_strings.php:222
5254
  msgid "l-hy"
5255
  msgstr "Armenian"
5256
 
5257
  # Armenian
5258
+ #: ../languages/dynamic_strings.php:223
5259
  #, fuzzy
5260
  msgid "l-hy-am"
5261
  msgstr "Armenian"
5262
 
5263
  # Indonesian
5264
+ #: ../languages/dynamic_strings.php:224
5265
  msgid "l-id"
5266
  msgstr "Indonesian"
5267
 
5268
  # Indonesian
5269
+ #: ../languages/dynamic_strings.php:225
5270
  #, fuzzy
5271
  msgid "l-id-id"
5272
  msgstr "Indonesian"
5273
 
5274
  # Icelandic
5275
+ #: ../languages/dynamic_strings.php:226
5276
  msgid "l-is"
5277
  msgstr "Icelandic"
5278
 
5279
  # Icelandic
5280
+ #: ../languages/dynamic_strings.php:227
5281
  #, fuzzy
5282
  msgid "l-is-is"
5283
  msgstr "Icelandic"
5284
 
5285
  # Italian
5286
+ #: ../languages/dynamic_strings.php:228
5287
  msgid "l-it"
5288
  msgstr "Italian"
5289
 
5290
  # Italian (Switzerland)
5291
+ #: ../languages/dynamic_strings.php:229
5292
  msgid "l-it-ch"
5293
  msgstr "Italian (Switzerland)"
5294
 
5295
  # Italian (Italia)
5296
+ #: ../languages/dynamic_strings.php:230
5297
  msgid "l-it-it"
5298
  msgstr "Italian (Italia)"
5299
 
5300
  # Japanese
5301
+ #: ../languages/dynamic_strings.php:231
5302
  msgid "l-ja"
5303
  msgstr "Japanese"
5304
 
5305
  # Japanese
5306
+ #: ../languages/dynamic_strings.php:232
5307
  #, fuzzy
5308
  msgid "l-ja-jp"
5309
  msgstr "Japanese"
5310
 
5311
  # Georgian
5312
+ #: ../languages/dynamic_strings.php:233
5313
  msgid "l-ka"
5314
  msgstr "Georgian"
5315
 
5316
  # Georgian
5317
+ #: ../languages/dynamic_strings.php:234
5318
  #, fuzzy
5319
  msgid "l-ka-ge"
5320
  msgstr "Georgian"
5321
 
5322
  # Kazakh
5323
+ #: ../languages/dynamic_strings.php:235
5324
  msgid "l-kk"
5325
  msgstr "Kazakh"
5326
 
5327
  # Kazakh
5328
+ #: ../languages/dynamic_strings.php:236
5329
  #, fuzzy
5330
  msgid "l-kk-kz"
5331
  msgstr "Kazakh"
5332
 
5333
  # Kannada
5334
+ #: ../languages/dynamic_strings.php:237
5335
  msgid "l-kn"
5336
  msgstr "Kannada"
5337
 
5338
  # Kannada
5339
+ #: ../languages/dynamic_strings.php:238
5340
  #, fuzzy
5341
  msgid "l-kn-in"
5342
  msgstr "Kannada"
5343
 
5344
  # Korean
5345
+ #: ../languages/dynamic_strings.php:239
5346
  msgid "l-ko"
5347
  msgstr "Korean"
5348
 
5349
  # Korean (Republic of Korea)
5350
+ #: ../languages/dynamic_strings.php:240
5351
  msgid "l-ko-kr"
5352
  msgstr "Korean (Republic of Korea)"
5353
 
5354
  # Korean
5355
+ #: ../languages/dynamic_strings.php:241
5356
  #, fuzzy
5357
  msgid "l-kok"
5358
  msgstr "Korean"
5359
 
5360
  # Korean
5361
+ #: ../languages/dynamic_strings.php:242
5362
  #, fuzzy
5363
  msgid "l-kok-in"
5364
  msgstr "Korean"
5365
 
5366
  # Kirghiz; Kyrgyz
5367
+ #: ../languages/dynamic_strings.php:243
5368
  msgid "l-ky"
5369
  msgstr "Kirghiz; Kyrgyz"
5370
 
5371
  # Kirghiz; Kyrgyz
5372
+ #: ../languages/dynamic_strings.php:244
5373
  #, fuzzy
5374
  msgid "l-ky-kg"
5375
  msgstr "Kirghiz; Kyrgyz"
5376
 
5377
  # Lithuanian
5378
+ #: ../languages/dynamic_strings.php:245
5379
  msgid "l-lt"
5380
  msgstr "Lithuanian"
5381
 
5382
  # Lithuanian
5383
+ #: ../languages/dynamic_strings.php:246
5384
  #, fuzzy
5385
  msgid "l-lt-lt"
5386
  msgstr "Lithuanian"
5387
 
5388
  # Latvian
5389
+ #: ../languages/dynamic_strings.php:247
5390
  msgid "l-lv"
5391
  msgstr "Latvian"
5392
 
5393
  # Latvian
5394
+ #: ../languages/dynamic_strings.php:248
5395
  #, fuzzy
5396
  msgid "l-lv-lv"
5397
  msgstr "Latvian"
5398
 
5399
  # Maori
5400
+ #: ../languages/dynamic_strings.php:249
5401
  msgid "l-mi"
5402
  msgstr "Maori"
5403
 
5404
  # Maori
5405
+ #: ../languages/dynamic_strings.php:250
5406
  #, fuzzy
5407
  msgid "l-mi-nz"
5408
  msgstr "Maori"
5409
 
5410
  # Macedonian
5411
+ #: ../languages/dynamic_strings.php:251
5412
  msgid "l-mk"
5413
  msgstr "Macedonian"
5414
 
5415
  # Macedonian
5416
+ #: ../languages/dynamic_strings.php:252
5417
  #, fuzzy
5418
  msgid "l-mk-ml"
5419
  msgstr "Macedonian"
5420
 
5421
  # Mongolian
5422
+ #: ../languages/dynamic_strings.php:253
5423
  msgid "l-mn"
5424
  msgstr "Mongolian"
5425
 
5426
  # Mongolian
5427
+ #: ../languages/dynamic_strings.php:254
5428
  #, fuzzy
5429
  msgid "l-mn-mn"
5430
  msgstr "Mongolian"
5431
 
5432
  # Marathi
5433
+ #: ../languages/dynamic_strings.php:255
5434
  msgid "l-mr"
5435
  msgstr "Marathi"
5436
 
5437
  # Marathi
5438
+ #: ../languages/dynamic_strings.php:256
5439
  #, fuzzy
5440
  msgid "l-mr-in"
5441
  msgstr "Marathi"
5442
 
5443
  # Malay
5444
+ #: ../languages/dynamic_strings.php:257
5445
  msgid "l-ms"
5446
  msgstr "Malay"
5447
 
5448
  # Malay
5449
+ #: ../languages/dynamic_strings.php:258
5450
  #, fuzzy
5451
  msgid "l-ms-bn"
5452
  msgstr "Malay"
5453
 
5454
  # Malay
5455
+ #: ../languages/dynamic_strings.php:259
5456
  #, fuzzy
5457
  msgid "l-ms-my"
5458
  msgstr "Malay"
5459
 
5460
  # Maltese
5461
+ #: ../languages/dynamic_strings.php:260
5462
  msgid "l-mt"
5463
  msgstr "Maltese"
5464
 
5465
  # Maltese
5466
+ #: ../languages/dynamic_strings.php:261
5467
  #, fuzzy
5468
  msgid "l-mt-mt"
5469
  msgstr "Maltese"
5470
 
5471
  # Norwegian Bokmål
5472
+ #: ../languages/dynamic_strings.php:262
5473
  msgid "l-nb"
5474
  msgstr "Norwegian Bokmål"
5475
 
5476
  # Norwegian Bokmål
5477
+ #: ../languages/dynamic_strings.php:263
5478
  #, fuzzy
5479
  msgid "l-nb-no"
5480
  msgstr "Norwegian Bokmål"
5481
 
5482
  # Dutch; Flemish
5483
+ #: ../languages/dynamic_strings.php:264
5484
  msgid "l-nl"
5485
  msgstr "Dutch; Flemish"
5486
 
5487
  # Dutch (Belgium)
5488
+ #: ../languages/dynamic_strings.php:265
5489
  msgid "l-nl-be"
5490
  msgstr "Dutch (Belgium)"
5491
 
5492
  # Dutch (Netherlands)
5493
+ #: ../languages/dynamic_strings.php:266
5494
  msgid "l-nl-nl"
5495
  msgstr "Dutch (Netherlands)"
5496
 
5497
  # Norwegian Nynorsk
5498
+ #: ../languages/dynamic_strings.php:267
5499
  #, fuzzy
5500
  msgid "l-nn-no"
5501
  msgstr "Norwegian Nynorsk"
5502
 
5503
+ #: ../languages/dynamic_strings.php:268
5504
  msgid "l-ns"
5505
  msgstr "l-ns"
5506
 
5507
+ #: ../languages/dynamic_strings.php:269
5508
  msgid "l-ns-za"
5509
  msgstr "l-ns-za"
5510
 
5511
  # Panjabi; Punjabi
5512
+ #: ../languages/dynamic_strings.php:270
5513
  msgid "l-pa"
5514
  msgstr "Panjabi; Punjabi"
5515
 
5516
  # Panjabi; Punjabi
5517
+ #: ../languages/dynamic_strings.php:271
5518
  #, fuzzy
5519
  msgid "l-pa-in"
5520
  msgstr "Panjabi; Punjabi"
5521
 
5522
  # Polish
5523
+ #: ../languages/dynamic_strings.php:272
5524
  msgid "l-pl"
5525
  msgstr "Polish"
5526
 
5527
  # Polish
5528
+ #: ../languages/dynamic_strings.php:273
5529
  #, fuzzy
5530
  msgid "l-pl-pl"
5531
  msgstr "Polish"
5532
 
5533
  # Pushto; Pashto
5534
+ #: ../languages/dynamic_strings.php:274
5535
  msgid "l-ps"
5536
  msgstr "Pushto; Pashto"
5537
 
5538
  # Spanish (Argentina)
5539
+ #: ../languages/dynamic_strings.php:275
5540
  #, fuzzy
5541
  msgid "l-ps-ar"
5542
  msgstr "Spanish (Argentina)"
5543
 
5544
  # Portuguese
5545
+ #: ../languages/dynamic_strings.php:276
5546
  msgid "l-pt"
5547
  msgstr "Portuguese"
5548
 
5549
  # Portuguese (Brazil)
5550
+ #: ../languages/dynamic_strings.php:277
5551
  msgid "l-pt-br"
5552
  msgstr "Portuguese (Brazil)"
5553
 
5554
  # Portuguese
5555
+ #: ../languages/dynamic_strings.php:278
5556
  #, fuzzy
5557
  msgid "l-pt-pt"
5558
  msgstr "Portuguese"
5559
 
5560
  # Quechua
5561
+ #: ../languages/dynamic_strings.php:279
5562
  msgid "l-qu"
5563
  msgstr "Quechua"
5564
 
5565
  # Quechua
5566
+ #: ../languages/dynamic_strings.php:280
5567
  #, fuzzy
5568
  msgid "l-qu-bo"
5569
  msgstr "Quechua"
5570
 
5571
  # Quechua
5572
+ #: ../languages/dynamic_strings.php:281
5573
  #, fuzzy
5574
  msgid "l-qu-ec"
5575
  msgstr "Quechua"
5576
 
5577
  # Quechua
5578
+ #: ../languages/dynamic_strings.php:282
5579
  #, fuzzy
5580
  msgid "l-qu-pe"
5581
  msgstr "Quechua"
5582
 
5583
  # Romanian; Moldavian; Moldovan
5584
+ #: ../languages/dynamic_strings.php:283
5585
  msgid "l-ro"
5586
  msgstr "Romanian; Moldavian; Moldovan"
5587
 
5588
  # Romanian; Moldavian; Moldovan
5589
+ #: ../languages/dynamic_strings.php:284
5590
  #, fuzzy
5591
  msgid "l-ro-ro"
5592
  msgstr "Romanian; Moldavian; Moldovan"
5593
 
5594
  # Russian
5595
+ #: ../languages/dynamic_strings.php:285
5596
  msgid "l-ru"
5597
  msgstr "Russian"
5598
 
5599
  # Russian (Russia)
5600
+ #: ../languages/dynamic_strings.php:286
5601
  msgid "l-ru-ru"
5602
  msgstr "Russian (Russia)"
5603
 
5604
  # Sanskrit
5605
+ #: ../languages/dynamic_strings.php:287
5606
  msgid "l-sa"
5607
  msgstr "Sanskrit"
5608
 
5609
  # Sanskrit
5610
+ #: ../languages/dynamic_strings.php:288
5611
  #, fuzzy
5612
  msgid "l-sa-in"
5613
  msgstr "Sanskrit"
5614
 
5615
  # Northern Sami
5616
+ #: ../languages/dynamic_strings.php:289
5617
  msgid "l-se"
5618
  msgstr "Northern Sami"
5619
 
5620
  # Northern Sami
5621
+ #: ../languages/dynamic_strings.php:290
5622
  #, fuzzy
5623
  msgid "l-se-fi"
5624
  msgstr "Northern Sami"
5625
 
5626
  # Northern Sami
5627
+ #: ../languages/dynamic_strings.php:291
5628
  #, fuzzy
5629
  msgid "l-se-no"
5630
  msgstr "Northern Sami"
5631
 
5632
  # Northern Sami
5633
+ #: ../languages/dynamic_strings.php:292
5634
  #, fuzzy
5635
  msgid "l-se-se"
5636
  msgstr "Northern Sami"
5637
 
5638
  # Slovak
5639
+ #: ../languages/dynamic_strings.php:293
5640
  msgid "l-sk"
5641
  msgstr "Slovak"
5642
 
5643
  # Slovak
5644
+ #: ../languages/dynamic_strings.php:294
5645
  #, fuzzy
5646
  msgid "l-sk-sk"
5647
  msgstr "Slovak"
5648
 
5649
  # Slovenian
5650
+ #: ../languages/dynamic_strings.php:295
5651
  msgid "l-sl"
5652
  msgstr "Slovenian"
5653
 
5654
  # Slovenian
5655
+ #: ../languages/dynamic_strings.php:296
5656
  #, fuzzy
5657
  msgid "l-sl-si"
5658
  msgstr "Slovenian"
5659
 
5660
  # Albanian
5661
+ #: ../languages/dynamic_strings.php:297
5662
  msgid "l-sq"
5663
  msgstr "Albanian"
5664
 
5665
  # Albanian
5666
+ #: ../languages/dynamic_strings.php:298
5667
  #, fuzzy
5668
  msgid "l-sq-al"
5669
  msgstr "Albanian"
5670
 
5671
  # Serbian
5672
+ #: ../languages/dynamic_strings.php:299
5673
  #, fuzzy
5674
  msgid "l-sr-ba"
5675
  msgstr "Serbian"
5676
 
5677
  # Serbian
5678
+ #: ../languages/dynamic_strings.php:300
5679
  #, fuzzy
5680
  msgid "l-sr-sp"
5681
  msgstr "Serbian"
5682
 
5683
  # Swedish
5684
+ #: ../languages/dynamic_strings.php:301
5685
  msgid "l-sv"
5686
  msgstr "Swedish"
5687
 
5688
  # Swedish (Finland)
5689
+ #: ../languages/dynamic_strings.php:302
5690
  msgid "l-sv-fi"
5691
  msgstr "Swedish (Finland)"
5692
 
5693
  # Swedish (Sweden)
5694
+ #: ../languages/dynamic_strings.php:303
5695
  msgid "l-sv-se"
5696
  msgstr "Swedish (Sweden)"
5697
 
5698
  # Swahili
5699
+ #: ../languages/dynamic_strings.php:304
5700
  msgid "l-sw"
5701
  msgstr "Swahili"
5702
 
5703
  # Swahili
5704
+ #: ../languages/dynamic_strings.php:305
5705
  #, fuzzy
5706
  msgid "l-sw-ke"
5707
  msgstr "Swahili"
5708
 
5709
  # Tamil
5710
+ #: ../languages/dynamic_strings.php:306
5711
  msgid "l-ta"
5712
  msgstr "Tamil"
5713
 
5714
  # Tamil
5715
+ #: ../languages/dynamic_strings.php:307
5716
  #, fuzzy
5717
  msgid "l-ta-in"
5718
  msgstr "Tamil"
5719
 
5720
  # Telugu
5721
+ #: ../languages/dynamic_strings.php:308
5722
  msgid "l-te"
5723
  msgstr "Telugu"
5724
 
5725
  # Telugu
5726
+ #: ../languages/dynamic_strings.php:309
5727
  #, fuzzy
5728
  msgid "l-te-in"
5729
  msgstr "Telugu"
5730
 
5731
  # Thai
5732
+ #: ../languages/dynamic_strings.php:310
5733
  msgid "l-th"
5734
  msgstr "Thai"
5735
 
5736
  # Thai
5737
+ #: ../languages/dynamic_strings.php:311
5738
  #, fuzzy
5739
  msgid "l-th-th"
5740
  msgstr "Thai"
5741
 
5742
  # Tagalog
5743
+ #: ../languages/dynamic_strings.php:312
5744
  msgid "l-tl"
5745
  msgstr "Tagalog"
5746
 
5747
  # Tagalog
5748
+ #: ../languages/dynamic_strings.php:313
5749
  #, fuzzy
5750
  msgid "l-tl-ph"
5751
  msgstr "Tagalog"
5752
 
5753
  # Tswana
5754
+ #: ../languages/dynamic_strings.php:314
5755
  msgid "l-tn"
5756
  msgstr "Tswana"
5757
 
5758
  # English (South Africa)
5759
+ #: ../languages/dynamic_strings.php:315
5760
  #, fuzzy
5761
  msgid "l-tn-za"
5762
  msgstr "English (South Africa)"
5763
 
5764
  # Turkish
5765
+ #: ../languages/dynamic_strings.php:316
5766
  msgid "l-tr"
5767
  msgstr "Turkish"
5768
 
5769
  # Turkish
5770
+ #: ../languages/dynamic_strings.php:317
5771
  #, fuzzy
5772
  msgid "l-tr-tr"
5773
  msgstr "Turkish"
5774
 
5775
  # Tatar
5776
+ #: ../languages/dynamic_strings.php:318
5777
  msgid "l-tt"
5778
  msgstr "Tatar"
5779
 
5780
  # Tatar
5781
+ #: ../languages/dynamic_strings.php:319
5782
  #, fuzzy
5783
  msgid "l-tt-ru"
5784
  msgstr "Tatar"
5785
 
5786
  # Tsonga
5787
+ #: ../languages/dynamic_strings.php:320
5788
  msgid "l-ts"
5789
  msgstr "Tsonga"
5790
 
5791
  # Ukrainian
5792
+ #: ../languages/dynamic_strings.php:321
5793
  msgid "l-uk"
5794
  msgstr "Ukrainian"
5795
 
5796
  # Ukrainian
5797
+ #: ../languages/dynamic_strings.php:322
5798
  #, fuzzy
5799
  msgid "l-uk-ua"
5800
  msgstr "Ukrainian"
5801
 
5802
  # Urdu
5803
+ #: ../languages/dynamic_strings.php:323
5804
  msgid "l-ur"
5805
  msgstr "Urdu"
5806
 
5807
  # Urdu
5808
+ #: ../languages/dynamic_strings.php:324
5809
  #, fuzzy
5810
  msgid "l-ur-pk"
5811
  msgstr "Urdu"
5812
 
5813
  # Uzbek
5814
+ #: ../languages/dynamic_strings.php:325
5815
  msgid "l-uz"
5816
  msgstr "Uzbek"
5817
 
5818
  # Uzbek
5819
+ #: ../languages/dynamic_strings.php:326
5820
  #, fuzzy
5821
  msgid "l-uz-uz"
5822
  msgstr "Uzbek"
5823
 
5824
  # Vietnamese
5825
+ #: ../languages/dynamic_strings.php:327
5826
  msgid "l-vi"
5827
  msgstr "Vietnamese"
5828
 
5829
  # Vietnamese
5830
+ #: ../languages/dynamic_strings.php:328
5831
  #, fuzzy
5832
  msgid "l-vi-vn"
5833
  msgstr "Vietnamese"
5834
 
5835
  # Xhosa
5836
+ #: ../languages/dynamic_strings.php:329
5837
  msgid "l-xh"
5838
  msgstr "Xhosa"
5839
 
5840
  # Xhosa
5841
+ #: ../languages/dynamic_strings.php:330
5842
  #, fuzzy
5843
  msgid "l-xh-za"
5844
  msgstr "Xhosa"
5845
 
5846
  # Chinese
5847
+ #: ../languages/dynamic_strings.php:331
5848
  msgid "l-zh"
5849
  msgstr "Chinese"
5850
 
5851
  # Chinese (China)
5852
+ #: ../languages/dynamic_strings.php:332
5853
  msgid "l-zh-cn"
5854
  msgstr "Chinese (China)"
5855
 
5856
  # Chinese (Hong Kong)
5857
+ #: ../languages/dynamic_strings.php:333
5858
  msgid "l-zh-hk"
5859
  msgstr "Chinese (Hong Kong)"
5860
 
5861
  # Chinese
5862
+ #: ../languages/dynamic_strings.php:334
5863
  #, fuzzy
5864
  msgid "l-zh-mo"
5865
  msgstr "Chinese"
5866
 
5867
  # Chinese (Singapore)
5868
+ #: ../languages/dynamic_strings.php:335
5869
  msgid "l-zh-sg"
5870
  msgstr "Chinese (Singapore)"
5871
 
5872
  # Chinese (Taiwan)
5873
+ #: ../languages/dynamic_strings.php:336
5874
  msgid "l-zh-tw"
5875
  msgstr "Chinese (Taiwan)"
5876
 
5877
  # Zulu
5878
+ #: ../languages/dynamic_strings.php:337
5879
  msgid "l-zu"
5880
  msgstr "Zulu"
5881
 
5882
  # Zulu
5883
+ #: ../languages/dynamic_strings.php:338
5884
  #, fuzzy
5885
  msgid "l-zu-za"
5886
  msgstr "Zulu"
5887
 
5888
  # Unknown
5889
+ #: ../languages/dynamic_strings.php:340
5890
  msgid "l-empty"
5891
  msgstr "Unknown"
5892
 
5893
  # Unknown
5894
+ #: ../languages/dynamic_strings.php:341
5895
  msgid "l-xx"
5896
  msgstr "Unknown"
5897
 
5898
+ #: ../languages/dynamic_strings.php:343
5899
  msgid "c-xy"
5900
  msgstr "Local IP"
5901
 
5902
+ #: ../wp-slimstat.php:237 ../wp-slimstat.php:524
5903
  msgid "Notice: Pageview filtered by third-party code"
5904
  msgstr ""
5905
 
5906
+ #: ../wp-slimstat.php:254
5907
  #, fuzzy, php-format
5908
  msgid "Error: Malformed URL %s"
5909
  msgstr "Navegadores recientes"
5910
 
5911
+ #: ../wp-slimstat.php:278
5912
  #, fuzzy, php-format
5913
  msgid "Notice: Referrer %s is blacklisted"
5914
  msgstr "Navegador"
5915
 
5916
+ #: ../wp-slimstat.php:356
5917
  #, fuzzy, php-format
5918
  msgid "Notice: Permalink %s is blacklisted"
5919
  msgstr "Navegador"
5920
 
5921
+ #: ../wp-slimstat.php:367
5922
  msgid "Error: Empty or not supported IP address format (IPv6)"
5923
  msgstr ""
5924
 
5925
+ #: ../wp-slimstat.php:376
5926
  #, php-format
5927
  msgid "Notice: Logged in user %s not tracked"
5928
  msgstr ""
5929
 
5930
+ #: ../wp-slimstat.php:384
5931
  #, php-format
5932
  msgid "Notice: User with capability %s not tracked"
5933
  msgstr ""
5934
 
5935
+ #: ../wp-slimstat.php:394
5936
  #, fuzzy, php-format
5937
  msgid "Notice: User %s is blacklisted"
5938
  msgstr "Navegador"
5939
 
5940
+ #: ../wp-slimstat.php:415
5941
  #, fuzzy, php-format
5942
  msgid "Notice: Spammer %s not tracked"
5943
  msgstr "Bot o Crawler"
5944
 
5945
+ #: ../wp-slimstat.php:444
5946
  #, fuzzy, php-format
5947
  msgid "Notice: IP address %s is blacklisted"
5948
  msgstr "Navegador"
5949
 
5950
+ #: ../wp-slimstat.php:473
5951
  #, fuzzy, php-format
5952
  msgid "Notice: Country %s is blacklisted"
5953
  msgstr "Navegador"
5954
 
5955
+ #: ../wp-slimstat.php:482
5956
  #, fuzzy
5957
  msgid "Notice: Prefetch requests are ignored"
5958
  msgstr "Ignorar PPeticiones Prefetch"
5959
 
5960
+ #: ../wp-slimstat.php:498
5961
  #, fuzzy
5962
  msgid "Notice: Bot not tracked"
5963
  msgstr "Bot o Crawler"
5964
 
5965
+ #: ../wp-slimstat.php:507
5966
  #, fuzzy, php-format
5967
  msgid "Notice: Browser %s is blacklisted"
5968
  msgstr "Navegador"
5969
 
5970
+ #: ../wp-slimstat.php:537
5971
  msgid "Error:"
5972
  msgstr ""
5973
 
5974
+ #: ../wp-slimstat.php:1153
5975
  msgid "Invalid payload string. Try clearing your WordPress cache."
5976
  msgstr ""
5977
 
5978
+ #: ../wp-slimstat.php:1163
5979
  msgid "Invalid data signature. Try clearing your WordPress cache."
5980
  msgstr ""
5981
 
5982
+ #: ../wp-slimstat.php:1235
5983
  #, fuzzy
5984
  msgid "There was an error downloading the MaxMind Geolite DB:"
5985
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5986
 
5987
+ #: ../wp-slimstat.php:1243 ../wp-slimstat.php:1252
5988
  #, fuzzy
5989
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5990
  msgstr "Hubo un error al actualizar las siguientes opciones:"
5991
 
5992
+ #: ../wp-slimstat.php:1247
5993
  msgid "Function gzopen not defined. Aborting."
5994
  msgstr ""
5995
 
5996
+ #: ../wp-slimstat.php:1257
5997
  #, fuzzy
5998
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5999
  msgstr "Hubo un error al actualizar las siguientes opciones:"
6000
 
6001
+ #, fuzzy
6002
+ #~ msgid "Delete records"
6003
+ #~ msgstr "Palabras clave"
6004
+
6005
+ #, fuzzy
6006
+ #~ msgid "recorded on"
6007
+ #~ msgstr "Palabras clave"
6008
+
6009
+ #, fuzzy
6010
+ #~ msgid "Import old data"
6011
+ #~ msgstr "Importar y Exportar"
6012
+
6013
+ #, fuzzy
6014
+ #~ msgid "Top Traffic Sources"
6015
+ #~ msgstr "Origen del Tráfico"
6016
+
6017
+ #, fuzzy
6018
+ #~ msgid "windows phone"
6019
+ #~ msgstr "iPhone OS X"
6020
+
6021
  #~ msgid "Ignore users (username not found)"
6022
  #~ msgstr "Ignorar usuarios (nombre de usuario no encontrado)"
6023
 
languages/wp-slimstat-fa_IR.mo CHANGED
Binary file
languages/wp-slimstat-fa_IR.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2015-12-24 09:21-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: Salman <salmanmp@gmail.com>\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../admin/config/index.php:50
20
  msgid ""
21
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
22
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -25,11 +25,11 @@ msgstr ""
25
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
26
  "مراجعه کنید."
27
 
28
- #: ../admin/config/index.php:65
29
  msgid "Read access: username not found"
30
  msgstr "دست‌رسی خواندن: شناسه کاربری یافت نشد"
31
 
32
- #: ../admin/config/index.php:75 ../admin/config/index.php:100
33
  msgid ""
34
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
35
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -39,34 +39,34 @@ msgstr ""
39
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
40
  "مراجعه کنید."
41
 
42
- #: ../admin/config/index.php:90
43
  msgid "Config access: username not found"
44
  msgstr "دست‌رسی پیکربندی: شناسه کاربری یافت نشد"
45
 
46
- #: ../admin/config/index.php:109
47
  msgid "Basic"
48
  msgstr ""
49
 
50
- #: ../admin/config/index.php:111 ../admin/config/index.php:132
51
  msgid "Tracker"
52
  msgstr "ره‌گیری"
53
 
54
- #: ../admin/config/index.php:112
55
  msgid "Enable Tracking"
56
  msgstr "فعال‌سازی رد‌گیری"
57
 
58
- #: ../admin/config/index.php:112
59
  #, fuzzy
60
  msgid "Turn the tracker on or off, while keeping the reports accessible."
61
  msgstr ""
62
  "رهگیری را روشن و یا خاموش میکند ولی گزارش ها در دسترس خواهد بود که در صورت "
63
  "غیر فعال کردن افزونه بدین گونه نخواهد بود."
64
 
65
- #: ../admin/config/index.php:113
66
  msgid "Tracking Mode"
67
  msgstr " حالت ردگیری"
68
 
69
- #: ../admin/config/index.php:113
70
  #, fuzzy
71
  msgid ""
72
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
@@ -81,83 +81,83 @@ msgstr ""
81
  "پذیرفته نمیشود. اثر جانبی این حالت این است که بیشتر هرز ها، موتورهای جستجو و "
82
  "دیگر خزنده ها نیز دیگر رهگیری نمیشوند."
83
 
84
- #: ../admin/config/index.php:113
85
  msgid "Client Side"
86
  msgstr ""
87
 
88
- #: ../admin/config/index.php:113
89
  #, fuzzy
90
  msgid "Server Side"
91
  msgstr "طرف دامنه"
92
 
93
- #: ../admin/config/index.php:114
94
  msgid "Stealth Mode"
95
  msgstr ""
96
 
97
- #: ../admin/config/index.php:114
98
  msgid ""
99
  "Do not add the javascript tracking code to your pages, if tracking mode is "
100
  "set to Server. Please note: if enabled, this will prevent the tracker from "
101
  "collecting information such as screen resolution, outbound links, downloads, "
102
- "etc. This option is ignored is Tracking Mode is set to Client."
103
  msgstr ""
104
 
105
- #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
106
  msgid "Off"
107
  msgstr ""
108
 
109
- #: ../admin/config/index.php:114
110
  msgid "On"
111
  msgstr ""
112
 
113
- #: ../admin/config/index.php:115
114
  #, fuzzy
115
  msgid "Admin Pages"
116
  msgstr "نظارت صفحه مدیریت"
117
 
118
- #: ../admin/config/index.php:115
119
  msgid "Enable this option to track your users' activity within the admin."
120
  msgstr "برای رهگیری کاربران در ناحیه مدیریتی ین گزینه را فعال کنید."
121
 
122
- #: ../admin/config/index.php:115
123
  #, fuzzy
124
  msgid "Track"
125
  msgstr "ره‌گیری"
126
 
127
- #: ../admin/config/index.php:115
128
  #, fuzzy
129
  msgid "Do not track"
130
  msgstr "ناشامل"
131
 
132
- #: ../admin/config/index.php:117
133
  msgid "WordPress Integration"
134
  msgstr "تلفیق کردن وردپرس"
135
 
136
- #: ../admin/config/index.php:118
137
  msgid "Menu Position"
138
  msgstr "محل گزینگان"
139
 
140
- #: ../admin/config/index.php:118
141
  #, fuzzy
142
  msgid ""
143
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
144
  "admin bar (if visible)."
145
  msgstr "بین گزینگان مدیریتی ثابت و یا گزینگان مدیریتی ابشاری انتخاب کنید."
146
 
147
- #: ../admin/config/index.php:118
148
  msgid "Side Menu"
149
  msgstr "گزینگان کناره"
150
 
151
- #: ../admin/config/index.php:118
152
  msgid "Admin Bar"
153
  msgstr " منوی مدیریت"
154
 
155
- #: ../admin/config/index.php:119
156
  #, fuzzy
157
  msgid "Posts and Pages"
158
  msgstr "یک ستون به نوشته‌ها اضافه کن"
159
 
160
- #: ../admin/config/index.php:119
161
  #, fuzzy
162
  msgid ""
163
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
@@ -166,74 +166,74 @@ msgstr ""
166
  "یک ستون جدید به صفحه «ویرایش ارسال» اضافه می‌کند، که شامل تعداد بازدید برای "
167
  "هر ارسال میباشد (ممکن است مدت تحویل را زیاد کند)"
168
 
169
- #: ../admin/config/index.php:120
170
  msgid "Report Interval"
171
  msgstr ""
172
 
173
- #: ../admin/config/index.php:120
174
  msgid ""
175
  "Enter the time range, in days, that should be used to calculate the value "
176
  "here above."
177
  msgstr ""
178
 
179
- #: ../admin/config/index.php:121
180
  #, fuzzy
181
  msgid "Report Type"
182
  msgstr "گزارش ها"
183
 
184
- #: ../admin/config/index.php:121
185
  msgid ""
186
  "Select what kind of information you would like to see displayed on the Posts "
187
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
188
  "IPs consider only one hit per user in the given time range."
189
  msgstr ""
190
 
191
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
192
- #: ../admin/view/wp-slimstat-reports.php:109
193
- #: ../admin/view/wp-slimstat-reports.php:1375
194
- #: ../admin/view/wp-slimstat-reports.php:1533
195
  msgid "Pageviews"
196
  msgstr "مشاهدات صفحات"
197
 
198
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
199
- #: ../admin/view/wp-slimstat-reports.php:286
200
- #: ../admin/view/wp-slimstat-reports.php:526
201
- #: ../admin/view/wp-slimstat-reports.php:1390
202
- #: ../admin/view/wp-slimstat-reports.php:1435
203
  msgid "Unique IPs"
204
  msgstr "آی‌پی‌های یکتا"
205
 
206
- #: ../admin/config/index.php:122
207
  msgid "Dashboard Widgets"
208
  msgstr ""
209
 
210
- #: ../admin/config/index.php:122
211
  msgid ""
212
  "Choose if you want to have the most important reports on your WordPress "
213
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
214
  msgstr ""
215
 
216
- #: ../admin/config/index.php:123
217
  #, fuzzy
218
  msgid "Hide Add-ons"
219
  msgstr "افزونه ها"
220
 
221
- #: ../admin/config/index.php:123
222
  msgid ""
223
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
224
  "from the list of plugins in WordPress. Please note that you will still "
225
  "receive updates for hidden add-ons."
226
  msgstr ""
227
 
228
- #: ../admin/config/index.php:125
229
  msgid "Database"
230
  msgstr "پایگاه داده"
231
 
232
- #: ../admin/config/index.php:126
233
  msgid "Retain data for"
234
  msgstr "نگاه داشتن داده برای"
235
 
236
- #: ../admin/config/index.php:126
237
  #, fuzzy
238
  msgid ""
239
  "Clean-up log entries older than the number of days specified here above. "
@@ -243,29 +243,29 @@ msgstr ""
243
  "ورودی هایی که از تعداد روزها زیر بیشتر باشد حذف میشوند. صفر وارد کنید اگر "
244
  "مایل به حفظ داده ها صرفنظر از تاریخ آن هستید."
245
 
246
- #: ../admin/config/index.php:126
247
  msgid "Next clean-up on"
248
  msgstr "تمیزکاری بعدی در"
249
 
250
- #: ../admin/config/index.php:126
251
  #, fuzzy, php-format
252
  msgid ""
253
  "Entries logged on or before %s will be archived or deleted according to the "
254
  "option here below."
255
  msgstr "ردیف‌های مربوط به روز %s و قبل از آن حذف خواهند شد."
256
 
257
- #: ../admin/config/index.php:126 ../admin/view/index.php:102
258
  #: ../admin/view/wp-slimstat-db.php:79
259
- #: ../admin/view/wp-slimstat-reports.php:1359
260
  msgid "days"
261
  msgstr "روز"
262
 
263
- #: ../admin/config/index.php:127
264
  #, fuzzy
265
- msgid "Delete records"
266
  msgstr "اطلاعات"
267
 
268
- #: ../admin/config/index.php:127
269
  msgid ""
270
  "If DB space is not an issue, you can decide to archive older records in "
271
  "another table, instead of deleting them. This way performance is preserved, "
@@ -275,16 +275,16 @@ msgid ""
275
  "is uninstalled. Make sure to backup your data before you proceed."
276
  msgstr ""
277
 
278
- #: ../admin/config/index.php:134
279
  #, fuzzy
280
  msgid "Advanced Options"
281
  msgstr "فیلترهای پیش‌رفته"
282
 
283
- #: ../admin/config/index.php:135
284
  msgid "Session Duration"
285
  msgstr "مدت جلسه"
286
 
287
- #: ../admin/config/index.php:135
288
  #, fuzzy
289
  msgid ""
290
  "How many seconds should a human session last? Google Analytics sets it to "
@@ -293,25 +293,51 @@ msgstr ""
293
  "چند ثانیه جلسه (انسان) در پایگاه به طول انجامد؟ گوگل آنالیتیک این مقدار را "
294
  "۱۸۰۰ ثانیه در نظر می‌گیرد."
295
 
296
- #: ../admin/config/index.php:135 ../admin/config/index.php:205
297
  msgid "seconds"
298
  msgstr "ثانیه"
299
 
300
- #: ../admin/config/index.php:136
301
  msgid "Extend Session"
302
  msgstr "گسترش جلسه"
303
 
304
- #: ../admin/config/index.php:136
305
  msgid "Extend the duration of a session each time the user visits a new page."
306
  msgstr ""
307
  "هر بار که کاربر یک صفحه جدید را دیدن می‌کند مدت جلسه را به این مقدار گسترش "
308
  "می‌دهد."
309
 
310
- #: ../admin/config/index.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
311
  msgid "Enable CDN"
312
  msgstr "فعال‌سازی CDN"
313
 
314
- #: ../admin/config/index.php:137
315
  msgid ""
316
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
317
  "by serving our tracking code from their fast and reliable network (free "
@@ -321,11 +347,11 @@ msgstr ""
321
  "استفاده کنید و از خدمات ردگیری ما در شبکه سریع و مطمئن بهره مند شوید "
322
  "(رایگان)."
323
 
324
- #: ../admin/config/index.php:138
325
  msgid "Extensions to Track"
326
  msgstr "پسوندهایی که رهیابی شوند"
327
 
328
- #: ../admin/config/index.php:138
329
  msgid ""
330
  "List all the file extensions that you want to be treated as Downloads. "
331
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -337,16 +363,16 @@ msgstr ""
337
  "باشید که پیوندهای منابع خارجی (مثل پی دی اف در پایگاه دیگر) بارگیری محسوب "
338
  "میشود و نه پیوند بیرونی اگر پسوند آنها با این فهرست تطبیق داشته باشد."
339
 
340
- #: ../admin/config/index.php:140
341
  #, fuzzy
342
  msgid "Internal and Outbound Links"
343
  msgstr "پیوندهای بیرونی اخیر"
344
 
345
- #: ../admin/config/index.php:141
346
  msgid "Track Outbound Clicks"
347
  msgstr "ره‌گیری کلیک های بیرونی"
348
 
349
- #: ../admin/config/index.php:141
350
  msgid ""
351
  "Track when your visitors click on link to external websites. This option "
352
  "required Spy Mode to be enabled."
@@ -354,23 +380,23 @@ msgstr ""
354
  "پیوندهایی که بازدیدکننده را به خارج از پایگاه ها میبرد رهگیری کنید. این "
355
  "گزینه نیاز به فعال کردن دید دزدکی دارد."
356
 
357
- #: ../admin/config/index.php:142
358
  #, fuzzy
359
  msgid "Track Coordinates"
360
  msgstr " حالت ردگیری"
361
 
362
- #: ../admin/config/index.php:142
363
  msgid ""
364
  "Collect mouse coordinates and other information for clicks on internal "
365
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
366
  "this information is only collected for external links."
367
  msgstr ""
368
 
369
- #: ../admin/config/index.php:143
370
  msgid "No Callback"
371
  msgstr ""
372
 
373
- #: ../admin/config/index.php:143
374
  msgid ""
375
  "Track the event but do not invoke the callback function on links marked with "
376
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
@@ -378,34 +404,34 @@ msgid ""
378
  "prevent conflicts with lightbox and similar libraries."
379
  msgstr ""
380
 
381
- #: ../admin/config/index.php:144
382
  msgid "Do Not Track"
383
  msgstr ""
384
 
385
- #: ../admin/config/index.php:144
386
  msgid ""
387
  "Do not track links marked with one of these class names, <em>rel</em> "
388
  "attributes or whose <em>href</em> attribute contains one of these strings "
389
  "(separated by comma)."
390
  msgstr ""
391
 
392
- #: ../admin/config/index.php:146
393
  msgid "Pages not belonging to this site"
394
  msgstr ""
395
 
396
- #: ../admin/config/index.php:147
397
  msgid ""
398
  "Add the following code to all the non-WP pages you want to track, right "
399
  "before the closing BODY tag. Please make sure to change the protocol of all "
400
  "the URLs to HTTPS, if you external site is served over a secure channel."
401
  msgstr ""
402
 
403
- #: ../admin/config/index.php:157
404
  #, fuzzy
405
  msgid "Allow External Domains"
406
  msgstr "پیوند خارجی خطرناک"
407
 
408
- #: ../admin/config/index.php:157
409
  msgid ""
410
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
411
  "header is present on the requested resource, when using the external "
@@ -416,16 +442,16 @@ msgid ""
416
  "security implications of allowing CORS requests."
417
  msgstr ""
418
 
419
- #: ../admin/config/index.php:158 ../admin/config/index.php:180
420
- #: ../admin/config/index.php:208
421
  msgid "Miscellaneous"
422
  msgstr "متفرقه"
423
 
424
- #: ../admin/config/index.php:159
425
  msgid "Enable UAN"
426
  msgstr "فعال‌سازی UAN"
427
 
428
- #: ../admin/config/index.php:159
429
  #, fuzzy
430
  msgid ""
431
  "Send anonymous data about user agents to our server for analysis. This "
@@ -438,28 +464,28 @@ msgstr ""
438
  "کنید. با کمک کردن به <a href='http://browscap.co/' target='_blank'>BrowsCap "
439
  "opensource project</a> توانایی برنامه برای شناختن مرورگرها را بیشتر میشود."
440
 
441
- #: ../admin/config/index.php:164
442
  msgid "Filters"
443
  msgstr "فیلترها"
444
 
445
- #: ../admin/config/index.php:166
446
  #, fuzzy
447
  msgid "Do not track settings"
448
  msgstr "ناشامل"
449
 
450
- #: ../admin/config/index.php:167
451
  msgid "Track Registered Users"
452
  msgstr "ره‌گیری کاربران ثبت شده"
453
 
454
- #: ../admin/config/index.php:167
455
  msgid "Enable this option to track logged in users."
456
  msgstr "اگر می‌خواهید کاربران وارد شده را ره‌گیری کنید این گزینه را فعال کنید."
457
 
458
- #: ../admin/config/index.php:168
459
  msgid "Blacklist by Username"
460
  msgstr " فهرست سیاه با نشانی آی‌پی"
461
 
462
- #: ../admin/config/index.php:168
463
  #, fuzzy
464
  msgid ""
465
  "List all the usernames you don't want to track, separated by commas. Please "
@@ -477,11 +503,11 @@ msgstr ""
477
  "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
478
  "case-insensitive."
479
 
480
- #: ../admin/config/index.php:169
481
  msgid "Blacklist by IP Address"
482
  msgstr " فهرست سیاه با نشانی آی‌پی"
483
 
484
- #: ../admin/config/index.php:169
485
  #, fuzzy
486
  msgid ""
487
  "List all the IP addresses you don't want to track, separated by commas. Each "
@@ -495,11 +521,11 @@ msgstr ""
495
  "Classless_Inter-Domain_Routing' target='_blank'>CIDR</a> تعریف شود (مثل "
496
  "<em>192.168.0.0/24</em>) و اگر نگارش صحیح نباشد رهگیری به درستی انجام نمیشود."
497
 
498
- #: ../admin/config/index.php:170
499
  msgid "Blacklist by Capability"
500
  msgstr "کاربران بر اساس توانایی"
501
 
502
- #: ../admin/config/index.php:170
503
  msgid ""
504
  "Users having at least one of the <a href='http://codex.wordpress.org/"
505
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -509,15 +535,15 @@ msgstr ""
509
  "Roles_and_Capabilities' target='_new'> خواص</a> زیر را داشته باشند ردگیری "
510
  "نمیشوند (به بزرگ و کوچک بودن را دقت داشته باشید)."
511
 
512
- #: ../admin/config/index.php:172
513
  msgid "Profiling"
514
  msgstr "نمایه"
515
 
516
- #: ../admin/config/index.php:173
517
  msgid "Ignore Spammers"
518
  msgstr "نادیده گرفتن هرزها"
519
 
520
- #: ../admin/config/index.php:173
521
  msgid ""
522
  "Enable this option if you don't want to track visits from users identified "
523
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -528,12 +554,12 @@ msgstr ""
528
  "Akismet) را رهگیری کنید این گزینه را فعال کنید. بازدید های کاربرانی که بعدا "
529
  "به صورت هرز شناخته شوند از پایگاه داده ها نیز حذف میشوند."
530
 
531
- #: ../admin/config/index.php:174
532
  #, fuzzy
533
  msgid "Ignore Bots"
534
  msgstr "کاربران را نادیده بگیر"
535
 
536
- #: ../admin/config/index.php:174
537
  msgid ""
538
  "Turn on this feature if you want to have the accuracy level of server-side "
539
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -541,11 +567,11 @@ msgid ""
541
  "note that in Client mode, bots are ignored regardless of this setting."
542
  msgstr ""
543
 
544
- #: ../admin/config/index.php:175
545
  msgid "Permalinks"
546
  msgstr "پیوندهای یکتا"
547
 
548
- #: ../admin/config/index.php:175
549
  msgid ""
550
  "List all the URLs on your website that you don't want to track, separated by "
551
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -563,11 +589,11 @@ msgstr ""
563
  "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
564
  "case-insensitive."
565
 
566
- #: ../admin/config/index.php:176
567
  msgid "Countries"
568
  msgstr "کشورها"
569
 
570
- #: ../admin/config/index.php:176
571
  msgid ""
572
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
573
  "track, separated by commas."
@@ -575,11 +601,11 @@ msgstr ""
575
  "کد کشورهایی که مایل به رهگیری نیستید، تفکیک شده با ویرگول مثل <code>en-us, "
576
  "it, es</code>"
577
 
578
- #: ../admin/config/index.php:177
579
  msgid "User Agents"
580
  msgstr "مرورگرهای کاربران"
581
 
582
- #: ../admin/config/index.php:177
583
  msgid ""
584
  "Browsers (user agents) you don't want to track, separated by commas. You can "
585
  "specify the browser's version adding a slash after the name (i.e. "
@@ -594,11 +620,11 @@ msgstr ""
594
  "Strings are case-insensitive.مرورگرهایی که نمیخواهید رهگیری کنید، تفکیک شده "
595
  "با ویرگول. میتوانید نسخه مرورگر را نیز مشخص کنید. مثلا <em>Firefox/3.6</em>. "
596
 
597
- #: ../admin/config/index.php:178
598
  msgid "Referring Sites"
599
  msgstr "سایت ارجاع دهنده"
600
 
601
- #: ../admin/config/index.php:178
602
  msgid ""
603
  "Referring URLs that you don't want to track, separated by commas: "
604
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -614,19 +640,19 @@ msgstr ""
614
  "insensitive. Include either a wildcard or the protocol you want to filter "
615
  "(http://, https://)."
616
 
617
- #: ../admin/config/index.php:181
618
  msgid "Enable Privacy Mode"
619
  msgstr "فعال کردن حالت حریم"
620
 
621
- #: ../admin/config/index.php:181
622
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
623
  msgstr "این گزینه نشانی آی‌پی بیننده را طبق قوانین حریم خصوصی اروپا پنهان میکند"
624
 
625
- #: ../admin/config/index.php:182
626
  msgid "Ignore Prefetch Requests"
627
  msgstr "نادیده گرفتن درخواست صفحه‌بندی"
628
 
629
- #: ../admin/config/index.php:182
630
  #, fuzzy
631
  msgid ""
632
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
@@ -637,52 +663,52 @@ msgstr ""
637
  "org/en/Link_prefetching_FAQ' target='_blank'>صفحه‌بندی</a> برنامه Firefox "
638
  "صورت میگیرد."
639
 
640
- #: ../admin/config/index.php:187 ../admin/config/index.php:220
641
  msgid "Reports"
642
  msgstr "گزارش ها"
643
 
644
- #: ../admin/config/index.php:189
645
  msgid "Formats and Conversions"
646
  msgstr ""
647
 
648
- #: ../admin/config/index.php:190
649
  msgid "Number Format"
650
  msgstr "نگارش اعداد"
651
 
652
- #: ../admin/config/index.php:190
653
  #, fuzzy
654
  msgid "Choose the number format you want to use for your reports."
655
  msgstr ""
656
  "نگارش مناسب برای ملاحظه گزارش اعداد را نتخاب کنید، امریکایی یا اروپایی."
657
 
658
- #: ../admin/config/index.php:191
659
  #, fuzzy
660
  msgid "Date Format"
661
  msgstr "داده و نگارش ها"
662
 
663
- #: ../admin/config/index.php:191
664
  msgid ""
665
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
666
  "Format</a> to use when displaying a pageview's date."
667
  msgstr ""
668
 
669
- #: ../admin/config/index.php:192
670
  #, fuzzy
671
  msgid "Time Format"
672
  msgstr "نگارش اعداد"
673
 
674
- #: ../admin/config/index.php:192
675
  msgid ""
676
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
677
  "Format</a> to use when displaying a pageview's time."
678
  msgstr ""
679
 
680
- #: ../admin/config/index.php:193
681
  #, fuzzy
682
  msgid "Use Display Name"
683
  msgstr "نمایش نام صفحه نمایش"
684
 
685
- #: ../admin/config/index.php:193
686
  msgid ""
687
  "By default, users are listed by their usernames. Use this option to "
688
  "visualize their display names instead."
@@ -690,12 +716,12 @@ msgstr ""
690
  "به طور پیش فرظ، کاربران با نام کاربری فهرست بندی میشوند. این گزینه کاربران "
691
  "را با نام فهرست بندی میکند."
692
 
693
- #: ../admin/config/index.php:194
694
  #, fuzzy
695
  msgid "Use Titles"
696
  msgstr "نمایش عناوین"
697
 
698
- #: ../admin/config/index.php:194
699
  #, fuzzy
700
  msgid ""
701
  "Slimstat converts your permalinks into post, page and category titles. "
@@ -704,73 +730,73 @@ msgstr ""
704
  " تمامی پیوندهای یکتا را به ارسال و صفحه تبدیل میکند. این ویژگی را غیرفعال "
705
  "کنید اگر در گزارش به نشانی نیاز دارید"
706
 
707
- #: ../admin/config/index.php:195
708
  msgid "Convert IP Addresses"
709
  msgstr "تبدیل نشانی آی‌پی"
710
 
711
- #: ../admin/config/index.php:195
712
  msgid "Display provider names instead of IP addresses."
713
  msgstr "نمایش خدمات دهنده ها به جای ای پی"
714
 
715
- #: ../admin/config/index.php:197
716
  msgid "Functionality"
717
  msgstr "کاربردی"
718
 
719
- #: ../admin/config/index.php:198
720
  msgid "SlimScroll"
721
  msgstr ""
722
 
723
- #: ../admin/config/index.php:198
724
  msgid ""
725
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
726
  "scrollbar."
727
  msgstr ""
728
 
729
- #: ../admin/config/index.php:199
730
  msgid "Expand Details"
731
  msgstr "گسترش جزئیات"
732
 
733
- #: ../admin/config/index.php:199
734
  msgid "Expand each row's details by default, insted of on mousehover."
735
  msgstr "گشترش جزئیات‌ هر سطر به طور پیش فرظ، به جای رویت با توقف اشاره گر"
736
 
737
- #: ../admin/config/index.php:200 ../admin/config/index.php:206
738
  msgid "Rows to Display"
739
  msgstr "نمایش ردیف ها"
740
 
741
- #: ../admin/config/index.php:200
742
  msgid "Specify the number of items in each report."
743
  msgstr "تعداد موردها در هر گزارش را مشخص کنید."
744
 
745
- #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
746
  #, fuzzy
747
  msgid "Max Results"
748
  msgstr "نتایج محدود به"
749
 
750
- #: ../admin/config/index.php:201
751
  msgid ""
752
  "Decide how many records should be retrieved from the database in total. "
753
  "Depending on your server configuration, you may want to fine tune this value "
754
  "to avoid exceeding your PHP memory limit."
755
  msgstr ""
756
 
757
- #: ../admin/config/index.php:202
758
  msgid "IP Lookup"
759
  msgstr "ره‌گیری بر اساس نشانی آی‌پی"
760
 
761
- #: ../admin/config/index.php:202
762
  msgid "Customize the Geolocation service to be used in the reports."
763
  msgstr "خدمات مکان-جفرافی برای گزارش ها را دلخواه کنید. "
764
 
765
- #: ../admin/config/index.php:204
766
  msgid "Activity Log"
767
  msgstr "فهرست فعالیت ها"
768
 
769
- #: ../admin/config/index.php:205
770
  msgid "Live Stream"
771
  msgstr "پخش زنده"
772
 
773
- #: ../admin/config/index.php:205
774
  #, fuzzy
775
  msgid ""
776
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
@@ -779,16 +805,16 @@ msgstr ""
779
  "فعال کردن «نمای زنده» صفحه «همین حالا» را هر چند ثانیه تازه سازی میکند. برای "
780
  "فیرفعال کردن صفر وارد کنید."
781
 
782
- #: ../admin/config/index.php:206
783
  #, fuzzy
784
  msgid "Specify the number of items in the Activity Log."
785
  msgstr " تعداد موردها در فهرست صفحه «همین حالا» را مشخص کنید"
786
 
787
- #: ../admin/config/index.php:209
788
  msgid "Custom CSS"
789
  msgstr "سی‌اس‌اس دلخواه"
790
 
791
- #: ../admin/config/index.php:209
792
  #, fuzzy
793
  msgid ""
794
  "Paste here your custom stylesheet to personalize the way your reports look. "
@@ -801,12 +827,12 @@ msgstr ""
801
  "بیشتر به<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
802
  "target='_blank'> سوالهای رایج</a> مراجعه کنید."
803
 
804
- #: ../admin/config/index.php:210
805
  #, fuzzy
806
  msgid "Chart Colors"
807
  msgstr "کنترل‌های نمودار"
808
 
809
- #: ../admin/config/index.php:210
810
  msgid ""
811
  "Customize the look and feel of your charts by assigning personalized colors "
812
  "to each metric. List 4 hex colors separated by commas, strictly in the "
@@ -814,11 +840,11 @@ msgid ""
814
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
815
  msgstr ""
816
 
817
- #: ../admin/config/index.php:211
818
  msgid "Show User Agent"
819
  msgstr "نمایش عامل کاربر "
820
 
821
- #: ../admin/config/index.php:211
822
  msgid ""
823
  "Choose if you want to see the browser name or a complete user agent string "
824
  "when hovering on browser icons."
@@ -826,41 +852,27 @@ msgstr ""
826
  " این گزینه را انتخاب کنید اگر میخواهید اسم مرورگر یا نام کامل کاربر را با "
827
  "توقف اشاره گر بر روی نقشک ملاحظه کنید."
828
 
829
- #: ../admin/config/index.php:212
830
  #, fuzzy
831
  msgid "Enable SOV"
832
  msgstr "فعال‌سازی CDN"
833
 
834
- #: ../admin/config/index.php:212
835
  msgid ""
836
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
837
  "the subject, object, and verb of a sentence appear in that order, like in "
838
  "Japanese."
839
  msgstr ""
840
 
841
- #: ../admin/config/index.php:213
842
- msgid "Social Analytics"
843
- msgstr ""
844
-
845
- #: ../admin/config/index.php:213
846
- msgid ""
847
- "Thanks to a <a href='http://getsocial.io/enterprise' "
848
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
849
- "set of analytics for social media where you can identify top performing "
850
- "posts. Track social sharing to understand which of your posts are generating "
851
- "more engagement. When this option is enabled, Slimstat sends a list of all "
852
- "your posts's URLs to their service for analysis once daily."
853
- msgstr ""
854
-
855
- #: ../admin/config/index.php:218
856
  msgid "Access Control"
857
  msgstr ""
858
 
859
- #: ../admin/config/index.php:221
860
  msgid "Restrict Authors"
861
  msgstr "محدود کردن نویسنده‌ها"
862
 
863
- #: ../admin/config/index.php:221
864
  #, fuzzy
865
  msgid ""
866
  "Enable this option if you want your authors to only see stats related to "
@@ -869,11 +881,11 @@ msgstr ""
869
  "اگر میخواهید نویسنده ها فقط آمار مربوط به محتوای خود را رویت کنند این گزینه "
870
  "را فعال کنید."
871
 
872
- #: ../admin/config/index.php:222 ../admin/config/index.php:226
873
  msgid "Capability"
874
  msgstr "کاربران بر اساس توانایی"
875
 
876
- #: ../admin/config/index.php:222
877
  #, fuzzy
878
  msgid ""
879
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -889,11 +901,11 @@ msgstr ""
889
  "داشت، مگر اینکه اجازه فهرست سفید اینجا مشخص شود. در این صورت فهرست اولویت "
890
  "میگیرد بر قابلیت."
891
 
892
- #: ../admin/config/index.php:223 ../admin/config/index.php:227
893
  msgid "Whitelist"
894
  msgstr "فهرست سفید"
895
 
896
- #: ../admin/config/index.php:223
897
  msgid ""
898
  "List all the users who should have access to the reports, separated by "
899
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -903,13 +915,13 @@ msgstr ""
903
  "طور کامل دسترسی دارند و نیاز به وارد کردن اینجا نخواهند داشت. کوچک و بزرگ "
904
  "بودن حروف مهم است."
905
 
906
- #: ../admin/config/index.php:225 ../admin/config/index.php:250
907
- #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
908
- #: ../wp-slimstat.php:1803
909
  msgid "Settings"
910
  msgstr "تنظیمات"
911
 
912
- #: ../admin/config/index.php:226
913
  #, fuzzy
914
  msgid ""
915
  "Specify the minimum <a href='http://codex.wordpress.org/"
@@ -921,7 +933,7 @@ msgstr ""
921
  "target='_new'> توانایی</a> برای دسترسی برای تنظیمات را مشخص کنید. این فهرست "
922
  "سفید اختیارات کاربران خاص را لفو میکند."
923
 
924
- #: ../admin/config/index.php:227
925
  msgid ""
926
  "List all the users who can edit these options, separated by commas. Please "
927
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -930,13 +942,12 @@ msgstr ""
930
  "فهرست کاربرانی که توانایی ویرایش این گزینه ها را دارند، تفکیک شده با ویرگول. "
931
  "از وارد کردن نام خود در این فهرست مطمئن شوید."
932
 
933
- #: ../admin/config/index.php:232
934
  msgid "Maintenance"
935
  msgstr "نگهداری"
936
 
937
- #: ../admin/config/index.php:237 ../admin/view/addons.php:32
938
- #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
939
- #: ../wp-slimstat.php:1800
940
  msgid "Add-ons"
941
  msgstr "افزونه ها"
942
 
@@ -968,94 +979,82 @@ msgstr ""
968
  msgid "The geolocation database has been installed on your server."
969
  msgstr ""
970
 
971
- #: ../admin/config/maintenance.php:166
972
- msgid ""
973
- "Your data was successfully imported. You may now drop the old tables: "
974
- "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
975
- "wp_slim_outbound. Please note: if you are using Slimstat in a MU network, "
976
- "you will need to run the import script on all your sites before you can "
977
- "delete the old tables."
978
- msgstr ""
979
-
980
- #: ../admin/config/maintenance.php:175
981
  msgid "Your reports were successfully restored to their default arrangement."
982
  msgstr "گزارش ها با موفقیت به حالت پیش فرض بازنشانی شدند."
983
 
984
- #: ../admin/config/maintenance.php:185
985
  #, fuzzy
986
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
987
  msgstr "جداول WP SlimStat با موفقیت به InnoDB تبدیل شد."
988
 
989
- #: ../admin/config/maintenance.php:191
990
  #, fuzzy
991
  msgid "All the archived records were successfully deleted."
992
  msgstr "همه اطلاعات با موفقیت حذف شد."
993
 
994
- #: ../admin/config/maintenance.php:199
995
  msgid "All the records were successfully deleted."
996
  msgstr "همه اطلاعات با موفقیت حذف شد."
997
 
998
- #: ../admin/config/maintenance.php:221
999
- msgid "Debugging"
1000
  msgstr ""
1001
 
1002
- #: ../admin/config/maintenance.php:224
1003
  #, fuzzy
1004
  msgid "Tracker Status"
1005
  msgstr "ره‌گیری"
1006
 
1007
- #: ../admin/config/maintenance.php:226
1008
  #, fuzzy
1009
- msgid "recorded on"
1010
- msgstr "اطلاعات"
1011
 
1012
- #: ../admin/config/maintenance.php:226
1013
  msgid "No Errors so far"
1014
  msgstr ""
1015
 
1016
- #: ../admin/config/maintenance.php:227
1017
  msgid ""
1018
  "The information here above is useful to troubleshoot issues with the "
1019
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1020
  "the tracker could not record a pageview and are indicative of some kind of "
1021
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1022
  "most recent pageview was not recorded, based on your settings (filters, "
1023
- "blackslists, etc). Please include this code when sending a support request."
 
1024
  msgstr ""
1025
 
1026
- #: ../admin/config/maintenance.php:233
1027
  #, fuzzy
1028
  msgid "Enable SQL Debug"
1029
  msgstr "فعال کردن دید دزدکی"
1030
 
1031
- #: ../admin/config/maintenance.php:236
1032
  msgid ""
1033
  "Display the SQL code used to retrieve the data from the database. Useful to "
1034
  "troubleshoot issues with data consistency or missing pageviews."
1035
  msgstr ""
1036
 
1037
- #: ../admin/config/maintenance.php:240
1038
  msgid "Disable SQL Debug"
1039
  msgstr ""
1040
 
1041
- #: ../admin/config/maintenance.php:243
1042
  msgid "Deactivate the SQL output on top of each report."
1043
  msgstr ""
1044
 
1045
- #: ../admin/config/maintenance.php:248
1046
- msgid "Layout"
1047
- msgstr ""
1048
-
1049
- #: ../admin/config/maintenance.php:251
1050
  msgid ""
1051
  "Are you sure you want to restore the default arrangement of your reports?"
1052
  msgstr " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها را بازنشانی کنید؟"
1053
 
1054
- #: ../admin/config/maintenance.php:251
1055
  msgid "No Panic Button"
1056
  msgstr "دکمه خطر نباشد"
1057
 
1058
- #: ../admin/config/maintenance.php:253
1059
  #, fuzzy
1060
  msgid ""
1061
  "Reset the default arrangement of your reports. Helpful when, for some "
@@ -1065,103 +1064,105 @@ msgstr ""
1065
  " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها به حالت پیش فرض بازنشانی "
1066
  "کنید. این در برطرف کردن ناپدید شدن گزارش ها مفید است."
1067
 
1068
- #: ../admin/config/maintenance.php:257
1069
  msgid "Data Maintenance"
1070
  msgstr "تعمیر داده ها"
1071
 
1072
- #: ../admin/config/maintenance.php:260
1073
  msgid "Delete pageviews where"
1074
  msgstr "حذف بازدید‌ها وقتی"
1075
 
1076
- #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1077
  msgid "equals"
1078
  msgstr "مساوی‌ست با"
1079
 
1080
- #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1081
  msgid "is not equal to"
1082
  msgstr "مساوی نیست با"
1083
 
1084
- #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1085
  msgid "contains"
1086
  msgstr "شامل"
1087
 
1088
- #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1089
  msgid "is included in"
1090
  msgstr ""
1091
 
1092
- #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1093
  msgid "does not contain"
1094
  msgstr "ناشامل"
1095
 
1096
- #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1097
  msgid "starts with"
1098
  msgstr "شروع می‌شود با"
1099
 
1100
- #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1101
  msgid "ends with"
1102
  msgstr "پایان می‌یابد با"
1103
 
1104
- #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1105
  msgid "sounds like"
1106
  msgstr " شبیه به"
1107
 
1108
- #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1109
  msgid "is greater than"
1110
  msgstr "بزرگ‌تر است از"
1111
 
1112
- #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1113
  msgid "is less than"
1114
  msgstr "کوچک‌تر است از"
1115
 
1116
- #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1117
  msgid "matches"
1118
  msgstr "مطابق است با"
1119
 
1120
- #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1121
  msgid "does not match"
1122
  msgstr "مطابق نیست"
1123
 
1124
- #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1125
  msgid "is empty"
1126
  msgstr "خالی‌ است"
1127
 
1128
- #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1129
  msgid "is not empty"
1130
  msgstr "خالی نیست"
1131
 
1132
- #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1133
  #: ../admin/view/index.php:105
1134
  msgid "Apply"
1135
  msgstr "انجام"
1136
 
1137
- #: ../admin/config/maintenance.php:291
1138
  msgid ""
1139
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1140
  msgstr ""
1141
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1142
 
1143
- #: ../admin/config/maintenance.php:298
1144
  msgid ""
1145
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1146
  "database?"
1147
  msgstr ""
1148
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1149
 
1150
- #: ../admin/config/maintenance.php:298
1151
  #, fuzzy
1152
  msgid "Delete All Records"
1153
  msgstr "حذف همه صفحات"
1154
 
1155
- #: ../admin/config/maintenance.php:301
1156
  #, fuzzy
1157
  msgid ""
1158
- "Erase all the information collected so far by Slimstat, including the "
1159
- "archive. This operation <strong>does not</strong> reset your settings."
 
 
1160
  msgstr ""
1161
  "حذف همه اطلاعاتی که تا حال توسط WP SlimStat جمع آوری شده است. این عملیات "
1162
  "تنظیمات را بازنشانی نمیکند."
1163
 
1164
- #: ../admin/config/maintenance.php:307
1165
  #, fuzzy
1166
  msgid ""
1167
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1169,20 +1170,20 @@ msgid ""
1169
  msgstr ""
1170
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1171
 
1172
- #: ../admin/config/maintenance.php:307
1173
  #, fuzzy
1174
  msgid "Delete Archive"
1175
  msgstr "حذف بازدید‌ها وقتی"
1176
 
1177
- #: ../admin/config/maintenance.php:310
1178
  msgid "Erase all the archived records. This operation cannot be undone."
1179
  msgstr ""
1180
 
1181
- #: ../admin/config/maintenance.php:316
1182
  msgid "Improve Performance"
1183
  msgstr "بهبود عملکرد"
1184
 
1185
- #: ../admin/config/maintenance.php:320
1186
  msgid ""
1187
  "Please note that you will need about 30% more DB space to store the extra "
1188
  "information required."
@@ -1190,11 +1191,11 @@ msgstr ""
1190
  "در نظر داشته باشید که زخیره کردن این اطلاعات ٪۳۰ درصد حجم بیشتر در پایگاه "
1191
  "داده اشغال میکند."
1192
 
1193
- #: ../admin/config/maintenance.php:324
1194
  msgid "Save DB Space"
1195
  msgstr "زخیره کردن پایگاه داده"
1196
 
1197
- #: ../admin/config/maintenance.php:327
1198
  #, fuzzy
1199
  msgid ""
1200
  "Please note that by removing table indexes, Slimstat's performance will be "
@@ -1202,46 +1203,29 @@ msgid ""
1202
  msgstr ""
1203
  "در نظر داشته باشید که حذف کردن شاخص بر عملکرد WP SlimStat تاثیر میگذارد"
1204
 
1205
- #: ../admin/config/maintenance.php:334
1206
- msgid ""
1207
- "Hold on tight, we are about to import all your old data. Are you sure you "
1208
- "want to proceed?"
1209
- msgstr ""
1210
-
1211
- #: ../admin/config/maintenance.php:334
1212
- #, fuzzy
1213
- msgid "Import old data"
1214
- msgstr "وارد و صادر"
1215
-
1216
- #: ../admin/config/maintenance.php:337
1217
- msgid ""
1218
- "Import all the records from the old table structure. No data will be deleted "
1219
- "from your database."
1220
- msgstr ""
1221
-
1222
- #: ../admin/config/maintenance.php:341
1223
  msgid "MaxMind IP to Country"
1224
  msgstr ""
1225
 
1226
- #: ../admin/config/maintenance.php:347
1227
  msgid ""
1228
  "Do you want to download and install the geolocation database from MaxMind's "
1229
  "server?"
1230
  msgstr ""
1231
 
1232
- #: ../admin/config/maintenance.php:347
1233
  msgid "Install GeoLite DB"
1234
  msgstr ""
1235
 
1236
- #: ../admin/config/maintenance.php:350
1237
  msgid "Do you want to uninstall the geolocation database?"
1238
  msgstr ""
1239
 
1240
- #: ../admin/config/maintenance.php:350
1241
  msgid "Uninstall GeoLite DB"
1242
  msgstr ""
1243
 
1244
- #: ../admin/config/maintenance.php:354
1245
  msgid ""
1246
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1247
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1251,38 +1235,38 @@ msgid ""
1251
  "enable this functionality."
1252
  msgstr ""
1253
 
1254
- #: ../admin/config/maintenance.php:359
1255
  msgid "Import and Export"
1256
  msgstr "وارد و صادر"
1257
 
1258
- #: ../admin/config/maintenance.php:363
1259
  msgid ""
1260
  "Here below you can find the current configuration string for Slimstat. You "
1261
  "can update your settings by pasting a new string inside the text area and "
1262
  "clicking the Import button."
1263
  msgstr ""
1264
 
1265
- #: ../admin/config/maintenance.php:368
1266
  msgid "Import"
1267
  msgstr "واردات"
1268
 
1269
- #: ../admin/config/maintenance.php:369
1270
  msgid "Are you sure you want to OVERWRITE your current settings?"
1271
  msgstr "مطمئنید می‌خواهید تنظیمات را بازنشانی کنید؟"
1272
 
1273
- #: ../admin/config/maintenance.php:374
1274
  msgid "Database Information"
1275
  msgstr "اطلاعات پایگاه داده"
1276
 
1277
- #: ../admin/config/maintenance.php:377
1278
  msgid "Engine"
1279
  msgstr "موتور"
1280
 
1281
- #: ../admin/config/maintenance.php:381
1282
  msgid "switch to InnoDB"
1283
  msgstr "تغییر حالت به InnoDB"
1284
 
1285
- #: ../admin/config/maintenance.php:392
1286
  msgid "records"
1287
  msgstr "اطلاعات"
1288
 
@@ -1358,11 +1342,11 @@ msgstr ""
1358
  msgid "Load"
1359
  msgstr ""
1360
 
1361
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1362
  msgid "Today"
1363
  msgstr "امروز‍"
1364
 
1365
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1366
  msgid "Yesterday"
1367
  msgstr "دیروز"
1368
 
@@ -1428,11 +1412,11 @@ msgid ""
1428
  "country of origin."
1429
  msgstr ""
1430
 
1431
- #: ../admin/view/layout.php:40
1432
  msgid "Customize and organize your reports"
1433
  msgstr ""
1434
 
1435
- #: ../admin/view/layout.php:41
1436
  msgid ""
1437
  "Drag and drop report placeholders from one container to another, to "
1438
  "customize the information you want to see right away when you open Slimstat. "
@@ -1444,11 +1428,11 @@ msgid ""
1444
  "(Screen Options tab)."
1445
  msgstr ""
1446
 
1447
- #: ../admin/view/layout.php:53
1448
  msgid "Clone"
1449
  msgstr ""
1450
 
1451
- #: ../admin/view/layout.php:57
1452
  #, fuzzy
1453
  msgid "Delete"
1454
  msgstr "اطلاعات"
@@ -1469,8 +1453,8 @@ msgstr "همراه"
1469
  msgid "Syndication Reader"
1470
  msgstr "پیوند ریدر"
1471
 
1472
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1473
- #: ../admin/view/wp-slimstat-reports.php:1706
1474
  msgid "No data to display"
1475
  msgstr "داده‌ای برای نمایش نیست"
1476
 
@@ -1479,18 +1463,19 @@ msgid "Date and Time"
1479
  msgstr "روز و ساعت"
1480
 
1481
  # Unknown
1482
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1483
- #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1484
  msgid "c-"
1485
  msgstr "Unknown"
1486
 
1487
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1488
- #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1489
  msgid "Originating IP"
1490
  msgstr "آی‌پی منشا"
1491
 
1492
- #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1493
- #: ../admin/view/wp-slimstat-reports.php:1183
 
1494
  msgid "Open this URL in a new window"
1495
  msgstr "نشانی را در پنجره جدید باز کن"
1496
 
@@ -1498,61 +1483,62 @@ msgstr "نشانی را در پنجره جدید باز کن"
1498
  msgid "Local search results page"
1499
  msgstr "صفحه نتایج جستجوی محلی"
1500
 
1501
- #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1502
- #: ../admin/view/wp-slimstat-reports.php:257
1503
- #: ../admin/view/wp-slimstat-reports.php:266
1504
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1505
  msgid "Search Terms"
1506
  msgstr "عبارت‌های جستجو"
1507
 
1508
- #: ../admin/view/right-now.php:162
1509
  msgid "Server Latency and Page Speed in milliseconds"
1510
  msgstr ""
1511
 
1512
- #: ../admin/view/right-now.php:162
1513
  msgid "SL"
1514
  msgstr ""
1515
 
1516
- #: ../admin/view/right-now.php:162
1517
  msgid "PS"
1518
  msgstr ""
1519
 
1520
- #: ../admin/view/right-now.php:169
1521
- msgid "Time spent on this page in seconds"
1522
- msgstr ""
 
1523
 
1524
- #: ../admin/view/right-now.php:179
1525
  msgid "Open this referrer in a new window"
1526
  msgstr "این ارجاعی دهنده را در پنجره جدید باز کن"
1527
 
1528
- #: ../admin/view/right-now.php:180
1529
  msgid "Open this outbound link in a new window"
1530
  msgstr " پیوندهای بیرونی را در پنجره جدید باز کن"
1531
 
1532
- #: ../admin/view/right-now.php:181
1533
  msgid "Content Type"
1534
  msgstr " نوع محتوا"
1535
 
1536
- #: ../admin/view/right-now.php:184
1537
  #, fuzzy
1538
  msgid "Delete this pageview"
1539
  msgstr "حذف بازدید‌ها وقتی"
1540
 
1541
- #: ../admin/view/right-now.php:195
1542
  #, fuzzy
1543
  msgid "User Logged In"
1544
  msgstr "مرورگرهای کاربران"
1545
 
1546
- #: ../admin/view/right-now.php:205
1547
  #, fuzzy
1548
  msgid "User Logged Out"
1549
  msgstr "مرورگرهای کاربران"
1550
 
1551
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1552
  msgid "Browser"
1553
  msgstr "مرورگر"
1554
 
1555
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1556
  msgid "Country Code"
1557
  msgstr "علامت کشور"
1558
 
@@ -1560,29 +1546,30 @@ msgstr "علامت کشور"
1560
  msgid "IP Address"
1561
  msgstr "نشانی آی‌پی"
1562
 
1563
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1564
  msgid "Language Code"
1565
  msgstr "علامت زبان"
1566
 
1567
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1568
- #: ../admin/wp-slimstat-admin.php:867
1569
  msgid "Operating System"
1570
  msgstr "سامانه عامل"
1571
 
1572
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1573
- #: ../admin/wp-slimstat-admin.php:868
1574
  msgid "Permalink"
1575
  msgstr "پیوند یکتا"
1576
 
1577
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1578
  msgid "Referer"
1579
  msgstr "ارجاع‌دهنده"
1580
 
1581
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1582
- msgid "Visitor's Name"
 
1583
  msgstr "نام بیننده"
1584
 
1585
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1586
  msgid "Outbound Link"
1587
  msgstr "پیوند بیرونی"
1588
 
@@ -1595,19 +1582,19 @@ msgid "-- Advanced filters --"
1595
  msgstr "-- فیلترهای پیش‌رفته --"
1596
 
1597
  #: ../admin/view/wp-slimstat-db.php:52
1598
- #: ../admin/view/wp-slimstat-reports.php:373
1599
  msgid "Browser Capabilities"
1600
  msgstr "قابلیت‌های مرورگر"
1601
 
1602
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1603
  msgid "Browser Version"
1604
  msgstr "نسخه مرورگر"
1605
 
1606
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1607
  msgid "Browser Type"
1608
  msgstr "نوع مرورگر"
1609
 
1610
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1611
  msgid "User Agent"
1612
  msgstr "مرورگرهای کاربران"
1613
 
@@ -1620,15 +1607,15 @@ msgstr "حاشیه نمودار"
1620
  msgid "Server Latency"
1621
  msgstr ""
1622
 
1623
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1624
  msgid "Post Author"
1625
  msgstr "نویسنده مطلب"
1626
 
1627
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1628
  msgid "Post Category ID"
1629
  msgstr "شناسه دسته‌بندی مطلب"
1630
 
1631
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1632
  msgid "Resource Content Type"
1633
  msgstr "نوع محتوای منبع"
1634
 
@@ -1649,7 +1636,7 @@ msgstr "ابعاد صفحه نمایش"
1649
  msgid "Viewport Size"
1650
  msgstr ""
1651
 
1652
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1653
  msgid "Visit ID"
1654
  msgstr "شناسه دیدن"
1655
 
@@ -1696,7 +1683,7 @@ msgid "Event ID"
1696
  msgstr ""
1697
 
1698
  #: ../admin/view/wp-slimstat-db.php:96
1699
- #: ../admin/view/wp-slimstat-reports.php:1720
1700
  msgid "Type"
1701
  msgstr ""
1702
 
@@ -1719,126 +1706,77 @@ msgstr "توضیحات"
1719
  msgid "Offset"
1720
  msgstr ""
1721
 
1722
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1723
- #: ../wp-slimstat.php:1793
1724
- msgid "Access Log"
1725
- msgstr ""
1726
-
1727
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1728
- #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1729
- msgid "Overview"
1730
- msgstr "مرور"
1731
-
1732
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1733
- #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1734
- msgid "Audience"
1735
- msgstr ""
1736
-
1737
- #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1738
- #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1739
- msgid "Site Analysis"
1740
- msgstr ""
1741
-
1742
- #: ../admin/view/wp-slimstat-reports.php:25
1743
- #: ../admin/view/wp-slimstat-reports.php:516
1744
- #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1745
- #: ../wp-slimstat.php:1797
1746
- msgid "Traffic Sources"
1747
- msgstr "منابع ترافیک"
1748
-
1749
- #: ../admin/view/wp-slimstat-reports.php:26
1750
- #: ../admin/view/wp-slimstat-reports.php:1364
1751
- #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1752
- #: ../wp-slimstat.php:1798
1753
- #, fuzzy
1754
- msgid "Geolocation"
1755
- msgstr "به‌روزآوری پایگاه داده مکان‌یابی"
1756
-
1757
- #: ../admin/view/wp-slimstat-reports.php:27
1758
- #, fuzzy
1759
- msgid "WordPress Dashboard"
1760
- msgstr "تلفیق کردن وردپرس"
1761
-
1762
- #: ../admin/view/wp-slimstat-reports.php:28
1763
- #, fuzzy
1764
- msgid "Inactive Reports"
1765
- msgstr "تنظیم مجدد گزارش ها"
1766
-
1767
- #: ../admin/view/wp-slimstat-reports.php:77
1768
  msgid "Chart controls"
1769
  msgstr "کنترل‌های نمودار"
1770
 
1771
- #: ../admin/view/wp-slimstat-reports.php:77
1772
  msgid "Use your mouse wheel to zoom in and out"
1773
  msgstr "از غلطانک موش‌واره برای بزرگ‌نمایی و کوچک‌نمایی استفاده کنید"
1774
 
1775
- #: ../admin/view/wp-slimstat-reports.php:77
1776
  msgid "While zooming in, drag the chart to move to a different area"
1777
  msgstr ""
1778
  "زمانی‌که بزرگ‌نمایی می‌کنید، نمودار را می‌توانید بکشید و به نقاط دیگر بروید"
1779
 
1780
- #: ../admin/view/wp-slimstat-reports.php:80
1781
- msgid "Social Sharing Analytics"
1782
- msgstr ""
1783
-
1784
- #: ../admin/view/wp-slimstat-reports.php:87
1785
  #, fuzzy
1786
  msgid "Visitors Activity"
1787
  msgstr "فهرست فعالیت ها"
1788
 
1789
- #: ../admin/view/wp-slimstat-reports.php:96
1790
  msgid "Color codes"
1791
  msgstr "علامت رنگی"
1792
 
1793
- #: ../admin/view/wp-slimstat-reports.php:96
1794
  #, fuzzy
1795
  msgid "From search result page"
1796
  msgstr "از صفحه نتایج جستجو"
1797
 
1798
- #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
1799
  msgid "Known Visitor"
1800
  msgstr "بیننده آشنا"
1801
 
1802
- #: ../admin/view/wp-slimstat-reports.php:96
1803
  msgid "Known Users"
1804
  msgstr "کاربران آشنا"
1805
 
1806
- #: ../admin/view/wp-slimstat-reports.php:96
1807
  msgid "Other Humans"
1808
  msgstr "دیگران"
1809
 
1810
- #: ../admin/view/wp-slimstat-reports.php:96
1811
  msgid "Bot or Crawler"
1812
  msgstr "روبات یا خزنده"
1813
 
1814
- #: ../admin/view/wp-slimstat-reports.php:118
1815
  #, fuzzy
1816
  msgid "About Slimstat"
1817
  msgstr "درباره WP SlimStat"
1818
 
1819
- #: ../admin/view/wp-slimstat-reports.php:127
1820
  #, fuzzy
1821
  msgid "Traffic at a Glance"
1822
  msgstr "در یک نگاه"
1823
 
1824
- #: ../admin/view/wp-slimstat-reports.php:137
1825
  msgid "Currently Online"
1826
  msgstr "حالا روی خط"
1827
 
1828
- #: ../admin/view/wp-slimstat-reports.php:150
1829
  msgid "Recent Search Terms"
1830
  msgstr "عبارت‌های جستجو شده اخیر"
1831
 
1832
- #: ../admin/view/wp-slimstat-reports.php:160
1833
  msgid "Keywords used by your visitors to find your website on a search engine."
1834
  msgstr "عبارات کلیدی در موتورهای جستجو که بیننده را به پایگاه شما را یافته‌اند."
1835
 
1836
- #: ../admin/view/wp-slimstat-reports.php:163
1837
  #, fuzzy
1838
  msgid "Top Web Pages"
1839
  msgstr "برترین صفحات"
1840
 
1841
- #: ../admin/view/wp-slimstat-reports.php:174
1842
  msgid ""
1843
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1844
  "site, including posts, products, categories, and so on. You can set the "
@@ -1847,23 +1785,24 @@ msgid ""
1847
  "have."
1848
  msgstr ""
1849
 
1850
- #: ../admin/view/wp-slimstat-reports.php:177
1851
- msgid "Top Traffic Sources"
1852
- msgstr "برترین منابع ترافیک"
 
1853
 
1854
- #: ../admin/view/wp-slimstat-reports.php:189
1855
  msgid "Top Known Visitors"
1856
  msgstr "برترین بیننده های آشنا"
1857
 
1858
- #: ../admin/view/wp-slimstat-reports.php:200
1859
  msgid "Top Search Terms"
1860
  msgstr "برترین عبارت های جستجو"
1861
 
1862
- #: ../admin/view/wp-slimstat-reports.php:211
1863
  msgid "Top Countries"
1864
  msgstr "برترین کشورها"
1865
 
1866
- #: ../admin/view/wp-slimstat-reports.php:220
1867
  #, fuzzy
1868
  msgid ""
1869
  "You can configure Slimstat to ignore a specific Country by setting the "
@@ -1872,11 +1811,11 @@ msgstr ""
1872
  "میتوانید تنظیمات برنامه برای نادیده گرفتن بعضی کشورها را تغییر دهید:Settings "
1873
  "> SlimStat > Filters"
1874
 
1875
- #: ../admin/view/wp-slimstat-reports.php:223
1876
  msgid "Rankings"
1877
  msgstr "رتبه ها"
1878
 
1879
- #: ../admin/view/wp-slimstat-reports.php:227
1880
  #, fuzzy
1881
  msgid ""
1882
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
@@ -1886,16 +1825,16 @@ msgstr ""
1886
  "با کسب اطلاعات خود از Google، Facebook و یا Alexa، رتبه خود را محک بزنید. "
1887
  "مقادیر هر ۱۲ ساعت به روز میشوند. صافی ها بالا در این گزارش کاربرد نمیشوند. "
1888
 
1889
- #: ../admin/view/wp-slimstat-reports.php:230
1890
  msgid "Top Language Families"
1891
  msgstr "برترین زبان‌ها"
1892
 
1893
- #: ../admin/view/wp-slimstat-reports.php:243
1894
  #, fuzzy
1895
  msgid "Users Currently Online"
1896
  msgstr "حالا روی خط"
1897
 
1898
- #: ../admin/view/wp-slimstat-reports.php:254
1899
  #, fuzzy
1900
  msgid ""
1901
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
@@ -1906,45 +1845,50 @@ msgstr ""
1906
  "WP SlimStat از این اطلاعات برای شناسایی «بیننده دوباره» استفاده میکند. در "
1907
  "نظر داشته باشید که بیننده ها شامل کاربران ثبت شده نیز میباشد."
1908
 
1909
- #: ../admin/view/wp-slimstat-reports.php:267
1910
  #, fuzzy
1911
  msgid "Unique Terms"
1912
  msgstr "آی‌پی‌های یکتا"
1913
 
1914
- #: ../admin/view/wp-slimstat-reports.php:276
 
 
 
 
 
1915
  msgid "Human Visits"
1916
  msgstr "بازدیدهای انسانی"
1917
 
1918
- #: ../admin/view/wp-slimstat-reports.php:285
1919
- #: ../admin/view/wp-slimstat-reports.php:1431
1920
  msgid "Visits"
1921
  msgstr "بازدیدها"
1922
 
1923
- #: ../admin/view/wp-slimstat-reports.php:295
1924
  #, fuzzy
1925
  msgid "Audience Overview"
1926
  msgstr "مرور"
1927
 
1928
- #: ../admin/view/wp-slimstat-reports.php:302
1929
  msgid ""
1930
  "Where not otherwise specified, the metrics in this report are referred to "
1931
  "human visitors."
1932
  msgstr ""
1933
 
1934
- #: ../admin/view/wp-slimstat-reports.php:305
1935
  msgid "Top Languages"
1936
  msgstr "بیش‌ترین زبان‌ها"
1937
 
1938
- #: ../admin/view/wp-slimstat-reports.php:316
1939
  msgid "Top Browsers"
1940
  msgstr "برترین مرورگرها"
1941
 
1942
- #: ../admin/view/wp-slimstat-reports.php:327
1943
  msgid "Top Service Providers"
1944
  msgstr "برترین خدمات دهنده‌ها"
1945
 
1946
- #: ../admin/view/wp-slimstat-reports.php:336
1947
- #: ../admin/view/wp-slimstat-reports.php:348
1948
  #, fuzzy
1949
  msgid ""
1950
  "Internet Service Provider: a company which provides other companies or "
@@ -1955,55 +1899,55 @@ msgstr ""
1955
  "اینترنت توسط یک شرکت خدماتی (ISP) برای شما فراهم میشود. میتوانید این نشانی "
1956
  "ای پی را با وارد کردن صافی نادیده بگیرید."
1957
 
1958
- #: ../admin/view/wp-slimstat-reports.php:339
1959
  msgid "Top Operating Systems"
1960
  msgstr "برترین محیط‌های عامل"
1961
 
1962
- #: ../admin/view/wp-slimstat-reports.php:351
1963
  msgid "Top Screen Resolutions"
1964
  msgstr "برترین ابعاد صفحه نماش‌ها"
1965
 
1966
- #: ../admin/view/wp-slimstat-reports.php:362
1967
  #, fuzzy
1968
  msgid "Top Viewport Sizes"
1969
  msgstr "برترین دسته‌ها"
1970
 
1971
- #: ../admin/view/wp-slimstat-reports.php:382
1972
  msgid "Visit Duration"
1973
  msgstr "طول دوره بازدید"
1974
 
1975
- #: ../admin/view/wp-slimstat-reports.php:389
1976
  msgid ""
1977
  "All values represent the percentages of pageviews within the corresponding "
1978
  "time range."
1979
  msgstr ""
1980
 
1981
- #: ../admin/view/wp-slimstat-reports.php:392
1982
  msgid "Recent Countries"
1983
  msgstr "کشورهای اخیر"
1984
 
1985
- #: ../admin/view/wp-slimstat-reports.php:403
1986
  #, fuzzy
1987
  msgid "Recent Viewport Sizes"
1988
  msgstr "دسته‌های اخیر"
1989
 
1990
- #: ../admin/view/wp-slimstat-reports.php:414
1991
  msgid "Recent Operating Systems"
1992
  msgstr "محیطهای عامل اخیر"
1993
 
1994
- #: ../admin/view/wp-slimstat-reports.php:425
1995
  msgid "Recent Browsers"
1996
  msgstr "مرورگرهای اخیر"
1997
 
1998
- #: ../admin/view/wp-slimstat-reports.php:436
1999
  msgid "Recent Languages"
2000
  msgstr "زبان‌های اخیر"
2001
 
2002
- #: ../admin/view/wp-slimstat-reports.php:447
2003
  msgid "Top Browser Families"
2004
  msgstr "برترین مرورگرها"
2005
 
2006
- #: ../admin/view/wp-slimstat-reports.php:456
2007
  msgid ""
2008
  "This report shows you what user agent families (no version considered) are "
2009
  "popular among your visitors."
@@ -2011,11 +1955,11 @@ msgstr ""
2011
  "این گزارش نشانگر عامل کابر (بدون در نظر گرفتن نسخه) که در میان بیننده ها "
2012
  "محبوب تر هستند میباشد."
2013
 
2014
- #: ../admin/view/wp-slimstat-reports.php:459
2015
  msgid "Top OS Families"
2016
  msgstr "برترین محیط عامل ها"
2017
 
2018
- #: ../admin/view/wp-slimstat-reports.php:470
2019
  msgid ""
2020
  "This report shows you what operating system families (no version considered) "
2021
  "are popular among your visitors."
@@ -2023,82 +1967,87 @@ msgstr ""
2023
  "این گزارش نشانگر محیط عامل هایی (بدون در نظر گرفتن نسخه) که در میان بیننده "
2024
  "ها محبوب تر هستند میباشد."
2025
 
2026
- #: ../admin/view/wp-slimstat-reports.php:473
2027
  msgid "Recent Users"
2028
  msgstr "کاربرهای اخیر"
2029
 
2030
- #: ../admin/view/wp-slimstat-reports.php:485
2031
  msgid "Top Users"
2032
  msgstr "برترین کاربرها"
2033
 
2034
- #: ../admin/view/wp-slimstat-reports.php:497
2035
- #: ../admin/view/wp-slimstat-reports.php:506
2036
  msgid "Users"
2037
  msgstr "کاربران"
2038
 
2039
- #: ../admin/view/wp-slimstat-reports.php:507
2040
  #, fuzzy
2041
  msgid "Unique Users"
2042
  msgstr "آی‌پی‌های یکتا"
2043
 
2044
- #: ../admin/view/wp-slimstat-reports.php:525
 
 
 
 
 
2045
  msgid "Domains"
2046
  msgstr "دامنه‌ها"
2047
 
2048
- #: ../admin/view/wp-slimstat-reports.php:535
2049
  #, fuzzy
2050
  msgid "Traffic Summary"
2051
  msgstr "منابع ترافیک"
2052
 
2053
- #: ../admin/view/wp-slimstat-reports.php:544
2054
  msgid "Top Referring Search Engines"
2055
  msgstr "برترین موتور جستجو های ارجاع‌دهنده"
2056
 
2057
- #: ../admin/view/wp-slimstat-reports.php:571
2058
  msgid "Recent Outbound Links"
2059
  msgstr "پیوندهای بیرونی اخیر"
2060
 
2061
- #: ../admin/view/wp-slimstat-reports.php:583
2062
  msgid "Recent Posts"
2063
  msgstr "ارسال های اخیر"
2064
 
2065
- #: ../admin/view/wp-slimstat-reports.php:611
2066
  msgid "Recent Feeds"
2067
  msgstr "خوراک‌های اخیر"
2068
 
2069
- #: ../admin/view/wp-slimstat-reports.php:623
2070
  msgid "Recent Pages Not Found"
2071
  msgstr "صفحه هایی پیدا نشده اخیر"
2072
 
2073
- #: ../admin/view/wp-slimstat-reports.php:635
2074
  msgid "Recent Internal Searches"
2075
  msgstr "جستجوهای داخلی اخیر"
2076
 
2077
- #: ../admin/view/wp-slimstat-reports.php:645
2078
  #, fuzzy
2079
  msgid "Searches performed using WordPress' built-in search functionality."
2080
  msgstr "جستجوهایی که توسط جستجوی داخلی Wordpress انجام میشوند."
2081
 
2082
- #: ../admin/view/wp-slimstat-reports.php:648
2083
  msgid "Top Categories"
2084
  msgstr "برترین دسته‌ها"
2085
 
2086
- #: ../admin/view/wp-slimstat-reports.php:661
2087
  #, fuzzy
2088
  msgid "Top Downloads"
2089
  msgstr "بارگیری های اخیر"
2090
 
2091
- #: ../admin/view/wp-slimstat-reports.php:672
2092
  msgid ""
2093
  "You can configure Slimstat to track specific file extensions as downloads."
2094
  msgstr ""
2095
 
2096
- #: ../admin/view/wp-slimstat-reports.php:675
2097
  msgid "Recent Events"
2098
  msgstr "اتفاقات اخیر"
2099
 
2100
- #: ../admin/view/wp-slimstat-reports.php:684
2101
- #: ../admin/view/wp-slimstat-reports.php:708
2102
  #, fuzzy
2103
  msgid ""
2104
  "This report lists any <em>event</em> occurred on your website. Please refer "
@@ -2107,49 +2056,49 @@ msgstr ""
2107
  "این گزارش تمامی رویداد های پایگاه شما را فهرست میکند. لطفا برای کسب اطلاع "
2108
  "بیشتر در این مورد به بخش پرسش و پاسخ مراجعه کنید."
2109
 
2110
- #: ../admin/view/wp-slimstat-reports.php:687
2111
  msgid "Top Posts"
2112
  msgstr "برترین ارسال ها"
2113
 
2114
- #: ../admin/view/wp-slimstat-reports.php:699
2115
  #, fuzzy
2116
  msgid "Top Events"
2117
  msgstr "برترین صفحات"
2118
 
2119
- #: ../admin/view/wp-slimstat-reports.php:711
2120
  msgid "Top Internal Searches"
2121
  msgstr "برترین جستجوهای داخلی"
2122
 
2123
- #: ../admin/view/wp-slimstat-reports.php:723
2124
  msgid "Recent Categories"
2125
  msgstr "دسته‌های اخیر"
2126
 
2127
- #: ../admin/view/wp-slimstat-reports.php:735
2128
  msgid "Top Pages Not Found"
2129
  msgstr "برترین صفحاتی که پیدا نشد"
2130
 
2131
- #: ../admin/view/wp-slimstat-reports.php:747
2132
  msgid "Top Authors"
2133
  msgstr "برترین نویسنده‌ها"
2134
 
2135
- #: ../admin/view/wp-slimstat-reports.php:758
2136
  msgid "Top Tags"
2137
  msgstr "برترین نشانه ها"
2138
 
2139
- #: ../admin/view/wp-slimstat-reports.php:770
2140
  msgid "Recent Downloads"
2141
  msgstr "بارگیری های اخیر"
2142
 
2143
- #: ../admin/view/wp-slimstat-reports.php:782
2144
  #, fuzzy
2145
  msgid "Top Outbound Links"
2146
  msgstr "پیوند بیرونی"
2147
 
2148
- #: ../admin/view/wp-slimstat-reports.php:794
2149
  msgid "Your Website"
2150
  msgstr "تارنمای شما"
2151
 
2152
- #: ../admin/view/wp-slimstat-reports.php:801
2153
  msgid ""
2154
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2155
  "this report is not affected by the filters set here above."
@@ -2157,129 +2106,135 @@ msgstr ""
2157
  "محتوای شما در یک نگاه: ارسال ها، نظرها و غیره. این گزارش با صافی های بالا "
2158
  "کاربرد نمیشود."
2159
 
2160
- #: ../admin/view/wp-slimstat-reports.php:804
2161
  #, fuzzy
2162
  msgid "Top Bounce Pages"
2163
  msgstr "صفحات وازده"
2164
 
2165
- #: ../admin/view/wp-slimstat-reports.php:817
2166
  #, fuzzy
2167
  msgid "Top Exit Pages"
2168
  msgstr "برترین صفحات"
2169
 
2170
- #: ../admin/view/wp-slimstat-reports.php:830
2171
  #, fuzzy
2172
  msgid "Top Entry Pages"
2173
  msgstr "برترین صفحات"
2174
 
2175
- #: ../admin/view/wp-slimstat-reports.php:843
2176
- #: ../admin/view/wp-slimstat-reports.php:852
2177
  #, fuzzy
2178
  msgid "Outbound Links"
2179
  msgstr "پیوند بیرونی"
2180
 
2181
- #: ../admin/view/wp-slimstat-reports.php:853
2182
  msgid "Unique Outbound"
2183
  msgstr ""
2184
 
2185
- #: ../admin/view/wp-slimstat-reports.php:862
2186
  msgid "World Map"
2187
  msgstr "نقشه جهان"
2188
 
2189
- #: ../admin/view/wp-slimstat-reports.php:944
2190
  msgid "Refresh"
2191
  msgstr "تازه سازی"
2192
 
2193
- #: ../admin/view/wp-slimstat-reports.php:981
2194
  #, php-format
2195
  msgid "Results %s - %s of %s"
2196
  msgstr " نتایج %s - %s از %s"
2197
 
2198
- #: ../admin/view/wp-slimstat-reports.php:983
2199
  msgid "Refresh in"
2200
  msgstr "تازه سازی در"
2201
 
2202
- #: ../admin/view/wp-slimstat-reports.php:1076
2203
  msgid "Category ID"
2204
  msgstr "شناسه دسته"
2205
 
2206
- #: ../admin/view/wp-slimstat-reports.php:1081
2207
- #: ../admin/view/wp-slimstat-reports.php:1096
2208
  #: ../admin/view/wp-slimstat-reports.php:1102
2209
  #, fuzzy
2210
  msgid "Code"
2211
  msgstr "کد محیط عامل"
2212
 
2213
- #: ../admin/view/wp-slimstat-reports.php:1097
2214
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2215
  msgid "l-"
2216
  msgstr ""
2217
 
2218
- #: ../admin/view/wp-slimstat-reports.php:1114
2219
  msgid "URL"
2220
  msgstr ""
2221
 
2222
- #: ../admin/view/wp-slimstat-reports.php:1127
2223
  msgid "Referrer"
2224
  msgstr "ارجاع دهنده"
2225
 
2226
- #: ../admin/view/wp-slimstat-reports.php:1168
2227
- #: ../admin/view/wp-slimstat-reports.php:1415
2228
- #: ../admin/view/wp-slimstat-reports.php:1471
2229
- #: ../admin/view/wp-slimstat-reports.php:1477
2230
- #: ../admin/view/wp-slimstat-reports.php:1483
2231
- #: ../admin/view/wp-slimstat-reports.php:1489
2232
- #: ../admin/view/wp-slimstat-reports.php:1495
2233
- #: ../admin/view/wp-slimstat-reports.php:1501
2234
- #: ../admin/view/wp-slimstat-reports.php:1507
2235
- #: ../admin/view/wp-slimstat-reports.php:1727
2236
  msgid "Hits"
2237
  msgstr "بازدیدها"
2238
 
2239
- #: ../admin/view/wp-slimstat-reports.php:1342
2240
  #, fuzzy
2241
  msgid "Dataset Size"
2242
  msgstr "اندازه پایگاه داده"
2243
 
2244
- #: ../admin/view/wp-slimstat-reports.php:1344
2245
  msgid "Total number of records stored in the database."
2246
  msgstr ""
2247
 
2248
- #: ../admin/view/wp-slimstat-reports.php:1346
2249
  msgid "DB Size"
2250
  msgstr "اندازه پایگاه داده"
2251
 
2252
- #: ../admin/view/wp-slimstat-reports.php:1349
2253
  #, fuzzy
2254
  msgid "Tracking Enabled"
2255
  msgstr " حالت ردگیری"
2256
 
2257
- #: ../admin/view/wp-slimstat-reports.php:1352
2258
  msgid "Javascript Mode"
2259
  msgstr "فعال سازی حالت جاوااسکریپت"
2260
 
2261
- #: ../admin/view/wp-slimstat-reports.php:1355
2262
  msgid "Tracking Browser Caps"
2263
  msgstr "ردگیری قابلیت‌های مرورگر"
2264
 
2265
- #: ../admin/view/wp-slimstat-reports.php:1358
2266
  msgid "Auto purge"
2267
  msgstr "پاک‌سازی خودکار"
2268
 
2269
- #: ../admin/view/wp-slimstat-reports.php:1361
2270
  msgid "Oldest pageview"
2271
  msgstr "قدیمی‌ترین بازدید"
2272
 
2273
- #: ../admin/view/wp-slimstat-reports.php:1362
2274
  msgid "No visits"
2275
  msgstr "بازدیدی نیست"
2276
 
2277
- #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
 
2278
  msgid "Date when the MaxMind Geolocation database was last updated."
2279
  msgstr ""
2280
 
2281
- #: ../admin/view/wp-slimstat-reports.php:1377
2282
- #: ../admin/view/wp-slimstat-reports.php:1535
2283
  #, fuzzy
2284
  msgid ""
2285
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
@@ -2287,34 +2242,34 @@ msgid ""
2287
  msgstr ""
2288
  "درخواست بارگیری یک پرونده زنگام. هر اجرای ردگیری منجر به ثبت یک بازید میشود."
2289
 
2290
- #: ../admin/view/wp-slimstat-reports.php:1379
2291
  #, fuzzy
2292
  msgid "Days in Range"
2293
  msgstr "محدوده زمانی"
2294
 
2295
- #: ../admin/view/wp-slimstat-reports.php:1382
2296
  #, fuzzy
2297
  msgid "Average Daily Pageviews"
2298
  msgstr "میان‌گین مشاهده صفحات"
2299
 
2300
- #: ../admin/view/wp-slimstat-reports.php:1384
2301
  #, fuzzy
2302
  msgid ""
2303
  "How many pages have been visited on average every day during the current "
2304
  "period."
2305
  msgstr "چند صفحه به طور میانگین در "
2306
 
2307
- #: ../admin/view/wp-slimstat-reports.php:1386
2308
  msgid "From Search Results"
2309
  msgstr "از نتایج جستجو"
2310
 
2311
- #: ../admin/view/wp-slimstat-reports.php:1388
2312
  msgid ""
2313
  "Visitors who landed on your site after searching for a keyword on Google, "
2314
  "Yahoo, etc."
2315
  msgstr "کاربرانی که بعد از جستجو در موتورهای جستجو به سایت شما رسیده‌اند."
2316
 
2317
- #: ../admin/view/wp-slimstat-reports.php:1392
2318
  msgid ""
2319
  "Used to differentiate between multiple requests to download a file from one "
2320
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2322,11 +2277,11 @@ msgstr ""
2322
  " این برای تشخیص دادن چندین درخواست بارگیری پرونده از یک آی پی ادرس و یا "
2323
  "درخواست از چند آی پی ادرس مختلف است."
2324
 
2325
- #: ../admin/view/wp-slimstat-reports.php:1394
2326
  msgid "Last 30 minutes"
2327
  msgstr "۳۰ دقیقه اخیر"
2328
 
2329
- #: ../admin/view/wp-slimstat-reports.php:1433
2330
  msgid ""
2331
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2332
  "multiple times if they perform multiple visits."
@@ -2334,102 +2289,102 @@ msgstr ""
2334
  "هر بازدید یک جلسه است که حداکثر ۳۰ دقیقه میباشد. «بیننده دوباره» چند بار "
2335
  "شمارش میشود اگر چند بار بازدید کنند."
2336
 
2337
- #: ../admin/view/wp-slimstat-reports.php:1437
2338
  msgid "It includes only traffic generated by human visitors."
2339
  msgstr "فقط شامل ترافیک انسانی میشود"
2340
 
2341
- #: ../admin/view/wp-slimstat-reports.php:1439
2342
  msgid "Bounce rate"
2343
  msgstr "میزان وازده گی"
2344
 
2345
- #: ../admin/view/wp-slimstat-reports.php:1441
2346
  msgid ""
2347
  "Percentage of single-page visits, i.e. visits in which the person left your "
2348
  "site from the entrance page."
2349
  msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
2350
 
2351
- #: ../admin/view/wp-slimstat-reports.php:1443
2352
  msgid "Known visitors"
2353
  msgstr "بیننده های آشنا"
2354
 
2355
- #: ../admin/view/wp-slimstat-reports.php:1445
2356
  msgid "Visitors who had previously left a comment on your blog."
2357
  msgstr "بازدیدکنندگانی که قبلا در تارنامه نظر ثبت کرده‌اند"
2358
 
2359
- #: ../admin/view/wp-slimstat-reports.php:1447
2360
  msgid "New visitors"
2361
  msgstr "بازدیدکنندگان جدید"
2362
 
2363
- #: ../admin/view/wp-slimstat-reports.php:1449
2364
  msgid "Human users who visited your site only once."
2365
  msgstr "کاربرانی که فقط یک بار پایگاه شما را دیده‌اند."
2366
 
2367
- #: ../admin/view/wp-slimstat-reports.php:1451
2368
  msgid "Bots"
2369
  msgstr "ربات‌ها"
2370
 
2371
- #: ../admin/view/wp-slimstat-reports.php:1454
2372
  #, fuzzy
2373
  msgid "Pageviews per visit"
2374
  msgstr "صفحات در بازدید"
2375
 
2376
- #: ../admin/view/wp-slimstat-reports.php:1457
2377
  msgid "Longest visit"
2378
  msgstr "طولانی‌ترین مشاهده صفحات"
2379
 
2380
- #: ../admin/view/wp-slimstat-reports.php:1458
2381
  msgid "hits"
2382
  msgstr "مشاهدات"
2383
 
2384
- #: ../admin/view/wp-slimstat-reports.php:1469
2385
  msgid "0 - 30 seconds"
2386
  msgstr "۰ تا ۳۰ ثانیه"
2387
 
2388
- #: ../admin/view/wp-slimstat-reports.php:1475
2389
  msgid "31 - 60 seconds"
2390
  msgstr "۳۱ تا ۶۰ ثانیه"
2391
 
2392
- #: ../admin/view/wp-slimstat-reports.php:1481
2393
  msgid "1 - 3 minutes"
2394
  msgstr "۱ تا ۳ دقیقه"
2395
 
2396
- #: ../admin/view/wp-slimstat-reports.php:1487
2397
  msgid "3 - 5 minutes"
2398
  msgstr "۳ تا ۵ دقیقه"
2399
 
2400
- #: ../admin/view/wp-slimstat-reports.php:1493
2401
  msgid "5 - 7 minutes"
2402
  msgstr "۵ تا ۷ دقیقه"
2403
 
2404
- #: ../admin/view/wp-slimstat-reports.php:1499
2405
  msgid "7 - 10 minutes"
2406
  msgstr "۷ تا ۱۰ دقیقه"
2407
 
2408
- #: ../admin/view/wp-slimstat-reports.php:1505
2409
  msgid "More than 10 minutes"
2410
  msgstr "بیش از ۱۰ دقیقه"
2411
 
2412
- #: ../admin/view/wp-slimstat-reports.php:1517
2413
  #, fuzzy
2414
  msgid "Average visit duration"
2415
  msgstr "طول دوره بازدید"
2416
 
2417
- #: ../admin/view/wp-slimstat-reports.php:1537
2418
  msgid "Unique Referrers"
2419
  msgstr "ارجاع‌دهنده‌های یکتا"
2420
 
2421
- #: ../admin/view/wp-slimstat-reports.php:1539
2422
  msgid ""
2423
  "A referrer (or referring site) is the site that a visitor previously visited "
2424
  "before following a link to your site."
2425
  msgstr ""
2426
  "ارجاع دهنده (یا پایگاه ارجاع دهنده) که بیننده را به پایگاه شما پیوند زده است."
2427
 
2428
- #: ../admin/view/wp-slimstat-reports.php:1541
2429
  msgid "Direct Pageviews"
2430
  msgstr "مشاهده صفحات بی‌واسطه"
2431
 
2432
- #: ../admin/view/wp-slimstat-reports.php:1543
2433
  msgid ""
2434
  "Visitors who visited the site by typing the URL directly into their browser. "
2435
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2440,21 +2395,21 @@ msgstr ""
2440
  "کاربرانی که با استفاده از bookmarks/favorites، و یا از پیوندهایی در نامک و "
2441
  "مدارک که متغییر ردگیری ندارند نیز بشود."
2442
 
2443
- #: ../admin/view/wp-slimstat-reports.php:1545
2444
  msgid "From a search result"
2445
  msgstr "از نتایج جستجو"
2446
 
2447
- #: ../admin/view/wp-slimstat-reports.php:1547
2448
  msgid ""
2449
  "Visitors who came to your site via searches on Google or some other search "
2450
  "engine."
2451
  msgstr "کاربرانی که از گوگل یا سایر موتورهای جستجو به پایگاه شما آمده‌اند."
2452
 
2453
- #: ../admin/view/wp-slimstat-reports.php:1549
2454
  msgid "Unique Landing Pages"
2455
  msgstr "صفحات فرودی خاص"
2456
 
2457
- #: ../admin/view/wp-slimstat-reports.php:1551
2458
  msgid ""
2459
  "The first page that a user views during a session. This is also known as the "
2460
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2465,80 +2420,80 @@ msgstr ""
2465
  "به عنوان مثال اگر کاربری برای «بستنی» جستجو کند و در صفحه اصلی شما هدایت "
2466
  "شود، در آن جلسه به عنوان «صفحه ورودی» حساب میشود."
2467
 
2468
- #: ../admin/view/wp-slimstat-reports.php:1553
2469
  msgid "Bounce Pages"
2470
  msgstr "صفحات وازده"
2471
 
2472
- #: ../admin/view/wp-slimstat-reports.php:1555
2473
  #, fuzzy
2474
  msgid "Number of single page visits to your site over the selected period."
2475
  msgstr "تعداد بازدید «تک-صفحه» به پایگاه شما در بازه زمانی انتخاب شده."
2476
 
2477
- #: ../admin/view/wp-slimstat-reports.php:1557
2478
  msgid "New Visitors Rate"
2479
  msgstr "میزان بازدیدکنندگان جدید"
2480
 
2481
- #: ../admin/view/wp-slimstat-reports.php:1559
2482
  #, fuzzy
2483
  msgid ""
2484
  "Percentage of single page visits, i.e. visits in which the person left your "
2485
  "site from the entrance page."
2486
  msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
2487
 
2488
- #: ../admin/view/wp-slimstat-reports.php:1561
2489
  msgid "Currently from search engines"
2490
  msgstr "هم‌اکنون از موتورهای جستجو"
2491
 
2492
- #: ../admin/view/wp-slimstat-reports.php:1563
2493
  msgid ""
2494
  "Visitors who visited the site in the last 5 minutes coming from a search "
2495
  "engine."
2496
  msgstr "کاربرانی که در ۵ دقیقه گذشته از یک موتور جستجو به پایگاه شما آمده‌اند."
2497
 
2498
- #: ../admin/view/wp-slimstat-reports.php:1633
2499
  msgid "Number of pages in your site included in Google's index."
2500
  msgstr "تعداد صفحاتی که در فهرست گوگل شمرده شده است."
2501
 
2502
- #: ../admin/view/wp-slimstat-reports.php:1634
2503
  msgid "Google Index"
2504
  msgstr "اندیس گوگل"
2505
 
2506
- #: ../admin/view/wp-slimstat-reports.php:1635
2507
  msgid "Number of pages, according to Google, that link back to your site."
2508
  msgstr "تعداد صفحات که به گفته گوگل به پایگاه پیوند میدهند. "
2509
 
2510
- #: ../admin/view/wp-slimstat-reports.php:1636
2511
  msgid "Google Backlinks"
2512
  msgstr ""
2513
 
2514
- #: ../admin/view/wp-slimstat-reports.php:1637
2515
  msgid ""
2516
  "How many times the Facebook Like button has been approximately clicked on "
2517
  "your site."
2518
  msgstr "چند بار Facebook Like در پایگاه شما کلیک شده است."
2519
 
2520
- #: ../admin/view/wp-slimstat-reports.php:1638
2521
  msgid "Facebook Likes"
2522
  msgstr "لایک های فیسبوک"
2523
 
2524
- #: ../admin/view/wp-slimstat-reports.php:1639
2525
  msgid ""
2526
  "How many times your site has been shared by someone on the social network."
2527
  msgstr "چند بار پایگاه شما در شبکه های اجتماعی بخش شده است"
2528
 
2529
- #: ../admin/view/wp-slimstat-reports.php:1640
2530
  msgid "Facebook Shares"
2531
  msgstr "بخش های فیسبوک"
2532
 
2533
- #: ../admin/view/wp-slimstat-reports.php:1641
2534
  msgid "How many times links to your website have been clicked on Facebook."
2535
  msgstr "چند بار پایگاه شما در Facebook فشار داده شده است."
2536
 
2537
- #: ../admin/view/wp-slimstat-reports.php:1642
2538
  msgid "Facebook Clicks"
2539
  msgstr "Facebook Clicks"
2540
 
2541
- #: ../admin/view/wp-slimstat-reports.php:1643
2542
  msgid ""
2543
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2544
  "traffic data."
@@ -2546,1266 +2501,1280 @@ msgstr ""
2546
  "شرکت Alexa بخشی از Amazon.com میباشد که گزارش پایگاه های تبلیغاتی را انجام "
2547
  "میدهد."
2548
 
2549
- #: ../admin/view/wp-slimstat-reports.php:1644
2550
  msgid "Alexa World Rank"
2551
  msgstr ""
2552
 
2553
- #: ../admin/view/wp-slimstat-reports.php:1645
2554
  msgid "Alexa Country Rank"
2555
  msgstr ""
2556
 
2557
- #: ../admin/view/wp-slimstat-reports.php:1646
2558
  msgid "Alexa Popularity"
2559
  msgstr ""
2560
 
2561
- #: ../admin/view/wp-slimstat-reports.php:1657
2562
  msgid "Content Items"
2563
  msgstr " محتوا موردها"
2564
 
2565
- #: ../admin/view/wp-slimstat-reports.php:1659
2566
  msgid ""
2567
  "This value includes not only posts, but also custom post types, regardless "
2568
  "of their status"
2569
  msgstr "این مقدار شامل همه ارسال ها میشود"
2570
 
2571
- #: ../admin/view/wp-slimstat-reports.php:1661
2572
  #, fuzzy
2573
  msgid "Posts"
2574
  msgstr "برترین ارسال ها"
2575
 
2576
- #: ../admin/view/wp-slimstat-reports.php:1664
2577
  #, fuzzy
2578
  msgid "Pages"
2579
  msgstr "برترین صفحات"
2580
 
2581
- #: ../admin/view/wp-slimstat-reports.php:1667
2582
  msgid "Attachments"
2583
  msgstr ""
2584
 
2585
- #: ../admin/view/wp-slimstat-reports.php:1670
2586
  #, fuzzy
2587
  msgid "Revisions"
2588
  msgstr "مجوزها"
2589
 
2590
- #: ../admin/view/wp-slimstat-reports.php:1673
2591
  #, fuzzy
2592
  msgid "Comments"
2593
  msgstr "همه نظرها"
2594
 
2595
- #: ../admin/view/wp-slimstat-reports.php:1676
2596
  #, fuzzy
2597
  msgid "Avg Comments per Post"
2598
  msgstr "میانگین نظر برای هر ارسال"
2599
 
2600
- #: ../admin/view/wp-slimstat-reports.php:1679
2601
  msgid "Avg Server Latency"
2602
  msgstr ""
2603
 
2604
- #: ../admin/view/wp-slimstat-reports.php:1681
2605
  msgid ""
2606
  "Latency is the amount of time it takes for the host server to receive and "
2607
  "process a request for a page object. The amount of latency depends largely "
2608
  "on how far away the user is from the server."
2609
  msgstr ""
2610
 
2611
- #: ../admin/view/wp-slimstat-reports.php:1724
2612
  #, fuzzy
2613
  msgid "Coordinates"
2614
  msgstr " حالت ردگیری"
2615
 
2616
- #: ../admin/view/wp-slimstat-reports.php:1724
2617
  msgid "Date"
2618
  msgstr ""
2619
 
2620
- #: ../admin/view/wp-slimstat-reports.php:1761
2621
- msgid "Error contacting the GetSocial endpoint."
2622
- msgstr ""
2623
-
2624
- #: ../admin/view/wp-slimstat-reports.php:1769
2625
- msgid "Error decoding the GetSocial payload."
2626
- msgstr ""
2627
-
2628
- #: ../admin/view/wp-slimstat-reports.php:1801
2629
- msgid ""
2630
- "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2631
- ">social media metrics and identify your top performing posts.<br/> <a "
2632
- "class='button-ajax' title='Enable this functionality' href='"
2633
- msgstr ""
2634
-
2635
  # Unknown
2636
- #: ../admin/view/wp-slimstat-reports.php:1811
2637
  msgid "c-xx"
2638
  msgstr "Unknown"
2639
 
2640
  # Afghanistan
2641
- #: ../admin/view/wp-slimstat-reports.php:1811
2642
  msgid "c-af"
2643
  msgstr "Afghanistan"
2644
 
2645
  # Åland Islands
2646
- #: ../admin/view/wp-slimstat-reports.php:1811
2647
  msgid "c-ax"
2648
  msgstr "Aland Islands"
2649
 
2650
  # Albania
2651
- #: ../admin/view/wp-slimstat-reports.php:1811
2652
  msgid "c-al"
2653
  msgstr "Albania"
2654
 
2655
  # Algeria
2656
- #: ../admin/view/wp-slimstat-reports.php:1811
2657
  msgid "c-dz"
2658
  msgstr "Algeria"
2659
 
2660
  # Andorra
2661
- #: ../admin/view/wp-slimstat-reports.php:1811
2662
  msgid "c-ad"
2663
  msgstr "Andorra"
2664
 
2665
  # Angola
2666
- #: ../admin/view/wp-slimstat-reports.php:1811
2667
  msgid "c-ao"
2668
  msgstr "Angola"
2669
 
2670
  # Anguilla
2671
- #: ../admin/view/wp-slimstat-reports.php:1811
2672
  msgid "c-ai"
2673
  msgstr "Anguilla"
2674
 
2675
  # Antigua and Barbuda
2676
- #: ../admin/view/wp-slimstat-reports.php:1811
2677
  msgid "c-ag"
2678
  msgstr "Antigua and Barbuda"
2679
 
2680
  # Argentina
2681
- #: ../admin/view/wp-slimstat-reports.php:1811
2682
  msgid "c-ar"
2683
  msgstr "Argentina"
2684
 
2685
  # Armenia
2686
- #: ../admin/view/wp-slimstat-reports.php:1811
2687
  msgid "c-am"
2688
  msgstr "Armenia"
2689
 
2690
  # Aruba
2691
- #: ../admin/view/wp-slimstat-reports.php:1811
2692
  msgid "c-aw"
2693
  msgstr "Aruba"
2694
 
2695
  # Australia
2696
- #: ../admin/view/wp-slimstat-reports.php:1811
2697
  msgid "c-au"
2698
  msgstr "Australia"
2699
 
2700
  # Austria
2701
- #: ../admin/view/wp-slimstat-reports.php:1811
2702
  msgid "c-at"
2703
  msgstr "Austria"
2704
 
2705
  # Azerbaijan
2706
- #: ../admin/view/wp-slimstat-reports.php:1811
2707
  msgid "c-az"
2708
  msgstr "Azerbaijan"
2709
 
2710
  # Bahamas
2711
- #: ../admin/view/wp-slimstat-reports.php:1811
2712
  msgid "c-bs"
2713
  msgstr "Bahamas"
2714
 
2715
  # Bahrain
2716
- #: ../admin/view/wp-slimstat-reports.php:1811
2717
  msgid "c-bh"
2718
  msgstr "Bahrain"
2719
 
2720
  # Bangladesh
2721
- #: ../admin/view/wp-slimstat-reports.php:1811
2722
  msgid "c-bd"
2723
  msgstr "Bangladesh"
2724
 
2725
  # Barbados
2726
- #: ../admin/view/wp-slimstat-reports.php:1811
2727
  msgid "c-bb"
2728
  msgstr "Barbados"
2729
 
2730
  # Belarus
2731
- #: ../admin/view/wp-slimstat-reports.php:1811
2732
  msgid "c-by"
2733
  msgstr "Belarus"
2734
 
2735
  # Belgium
2736
- #: ../admin/view/wp-slimstat-reports.php:1811
2737
  msgid "c-be"
2738
  msgstr "Belgium"
2739
 
2740
  # Belize
2741
- #: ../admin/view/wp-slimstat-reports.php:1811
2742
  msgid "c-bz"
2743
  msgstr "Belize"
2744
 
2745
  # Benin
2746
- #: ../admin/view/wp-slimstat-reports.php:1811
2747
  msgid "c-bj"
2748
  msgstr "Benin"
2749
 
2750
  # Bermuda
2751
- #: ../admin/view/wp-slimstat-reports.php:1811
2752
  msgid "c-bm"
2753
  msgstr "Bermuda"
2754
 
2755
  # Bhutan
2756
- #: ../admin/view/wp-slimstat-reports.php:1811
2757
  msgid "c-bt"
2758
  msgstr "Bhutan"
2759
 
2760
  # Bolivia
2761
- #: ../admin/view/wp-slimstat-reports.php:1811
2762
  msgid "c-bo"
2763
  msgstr "Bolivia"
2764
 
2765
  # Bosnia and Herzegovina
2766
- #: ../admin/view/wp-slimstat-reports.php:1811
2767
  msgid "c-ba"
2768
  msgstr "Bosnia and Herzegovina"
2769
 
2770
  # Botswana
2771
- #: ../admin/view/wp-slimstat-reports.php:1811
2772
  msgid "c-bw"
2773
  msgstr "Botswana"
2774
 
2775
  # Brazil
2776
- #: ../admin/view/wp-slimstat-reports.php:1811
2777
  msgid "c-br"
2778
  msgstr "Brazil"
2779
 
2780
  # Brunei Darussalam
2781
- #: ../admin/view/wp-slimstat-reports.php:1811
2782
  msgid "c-bn"
2783
  msgstr "Brunei Darussalam"
2784
 
2785
  # Bulgaria
2786
- #: ../admin/view/wp-slimstat-reports.php:1811
2787
  msgid "c-bg"
2788
  msgstr "Bulgaria"
2789
 
2790
  # Burkina Faso
2791
- #: ../admin/view/wp-slimstat-reports.php:1811
2792
  msgid "c-bf"
2793
  msgstr "Burkina Faso"
2794
 
2795
  # Burundi
2796
- #: ../admin/view/wp-slimstat-reports.php:1811
2797
  msgid "c-bi"
2798
  msgstr "Burundi"
2799
 
2800
  # Cambodia
2801
- #: ../admin/view/wp-slimstat-reports.php:1811
2802
  msgid "c-kh"
2803
  msgstr "Cambodia"
2804
 
2805
  # Cameroon
2806
- #: ../admin/view/wp-slimstat-reports.php:1811
2807
  msgid "c-cm"
2808
  msgstr "Cameroon"
2809
 
2810
  # Canada
2811
- #: ../admin/view/wp-slimstat-reports.php:1811
2812
  msgid "c-ca"
2813
  msgstr "Canada"
2814
 
2815
  # Cape Verde
2816
- #: ../admin/view/wp-slimstat-reports.php:1811
2817
  msgid "c-cv"
2818
  msgstr "Cape Verde"
2819
 
2820
  # Cayman Islands
2821
- #: ../admin/view/wp-slimstat-reports.php:1811
2822
  msgid "c-ky"
2823
  msgstr "Cayman Islands"
2824
 
2825
  # Central African Republic
2826
- #: ../admin/view/wp-slimstat-reports.php:1811
2827
  msgid "c-cf"
2828
  msgstr "Central African Republic"
2829
 
2830
  # Chad
2831
- #: ../admin/view/wp-slimstat-reports.php:1811
2832
  msgid "c-td"
2833
  msgstr "Chad"
2834
 
2835
  # Chile
2836
- #: ../admin/view/wp-slimstat-reports.php:1811
2837
  msgid "c-cl"
2838
  msgstr "Chile"
2839
 
2840
  # China
2841
- #: ../admin/view/wp-slimstat-reports.php:1811
2842
  msgid "c-cn"
2843
  msgstr "China"
2844
 
2845
  # Colombia
2846
- #: ../admin/view/wp-slimstat-reports.php:1811
2847
  msgid "c-co"
2848
  msgstr "Colombia"
2849
 
2850
  # Comoros
2851
- #: ../admin/view/wp-slimstat-reports.php:1811
2852
  msgid "c-km"
2853
  msgstr "Comoros"
2854
 
2855
  # Congo
2856
- #: ../admin/view/wp-slimstat-reports.php:1811
2857
  msgid "c-cg"
2858
  msgstr "Congo"
2859
 
2860
  # The Democratic Republic of the Congo
2861
- #: ../admin/view/wp-slimstat-reports.php:1811
2862
  msgid "c-cd"
2863
  msgstr "The Democratic Republic of the Congo"
2864
 
2865
  # Costa Rica
2866
- #: ../admin/view/wp-slimstat-reports.php:1811
2867
  msgid "c-cr"
2868
  msgstr "Costa Rica"
2869
 
2870
  # Côte d'Ivoire
2871
- #: ../admin/view/wp-slimstat-reports.php:1811
2872
  msgid "c-ci"
2873
  msgstr "Côte d'Ivoire"
2874
 
2875
  # Croatia
2876
- #: ../admin/view/wp-slimstat-reports.php:1811
2877
  msgid "c-hr"
2878
  msgstr "Croatia"
2879
 
2880
  # Cuba
2881
- #: ../admin/view/wp-slimstat-reports.php:1811
2882
  msgid "c-cu"
2883
  msgstr "Cuba"
2884
 
2885
  # Cyprus
2886
- #: ../admin/view/wp-slimstat-reports.php:1811
2887
  msgid "c-cy"
2888
  msgstr "Cyprus"
2889
 
2890
  # Czech Republic
2891
- #: ../admin/view/wp-slimstat-reports.php:1811
2892
  msgid "c-cz"
2893
  msgstr "Czech Republic"
2894
 
2895
  # Denmark
2896
- #: ../admin/view/wp-slimstat-reports.php:1811
2897
  msgid "c-dk"
2898
  msgstr "Denmark"
2899
 
2900
  # Djibouti
2901
- #: ../admin/view/wp-slimstat-reports.php:1811
2902
  msgid "c-dj"
2903
  msgstr "Djibouti"
2904
 
2905
  # Dominica
2906
- #: ../admin/view/wp-slimstat-reports.php:1811
2907
  msgid "c-dm"
2908
  msgstr "Dominica"
2909
 
2910
  # Dominican Republic
2911
- #: ../admin/view/wp-slimstat-reports.php:1811
2912
  msgid "c-do"
2913
  msgstr "Dominican Republic"
2914
 
2915
  # Ecuador
2916
- #: ../admin/view/wp-slimstat-reports.php:1811
2917
  msgid "c-ec"
2918
  msgstr "Ecuador"
2919
 
2920
  # Egypt
2921
- #: ../admin/view/wp-slimstat-reports.php:1811
2922
  msgid "c-eg"
2923
  msgstr "Egypt"
2924
 
2925
  # El Salvador
2926
- #: ../admin/view/wp-slimstat-reports.php:1811
2927
  msgid "c-sv"
2928
  msgstr "El Salvador"
2929
 
2930
  # Equatorial Guinea
2931
- #: ../admin/view/wp-slimstat-reports.php:1811
2932
  msgid "c-gq"
2933
  msgstr "Equatorial Guinea"
2934
 
2935
  # Eritrea
2936
- #: ../admin/view/wp-slimstat-reports.php:1811
2937
  msgid "c-er"
2938
  msgstr "Eritrea"
2939
 
2940
  # Estonia
2941
- #: ../admin/view/wp-slimstat-reports.php:1811
2942
  msgid "c-ee"
2943
  msgstr "Estonia"
2944
 
2945
  # Ethiopia
2946
- #: ../admin/view/wp-slimstat-reports.php:1811
2947
  msgid "c-et"
2948
  msgstr "Ethiopia"
2949
 
2950
  # Faroe Islands
2951
- #: ../admin/view/wp-slimstat-reports.php:1811
2952
  msgid "c-fo"
2953
  msgstr "Faroe Islands"
2954
 
2955
  # Falkland Islands (Malvinas)
2956
- #: ../admin/view/wp-slimstat-reports.php:1811
2957
  msgid "c-fk"
2958
  msgstr "Falkland Islands (Malvinas)"
2959
 
2960
  # Fiji
2961
- #: ../admin/view/wp-slimstat-reports.php:1811
2962
  msgid "c-fj"
2963
  msgstr "Fiji"
2964
 
2965
  # Finland
2966
- #: ../admin/view/wp-slimstat-reports.php:1811
2967
  msgid "c-fi"
2968
  msgstr "Finland"
2969
 
2970
  # France
2971
- #: ../admin/view/wp-slimstat-reports.php:1811
2972
  msgid "c-fr"
2973
  msgstr "France"
2974
 
2975
  # French Guiana
2976
- #: ../admin/view/wp-slimstat-reports.php:1811
2977
  msgid "c-gf"
2978
  msgstr "French Guiana"
2979
 
2980
  # Gabon
2981
- #: ../admin/view/wp-slimstat-reports.php:1811
2982
  msgid "c-ga"
2983
  msgstr "Gabon"
2984
 
2985
  # Gambia
2986
- #: ../admin/view/wp-slimstat-reports.php:1811
2987
  msgid "c-gm"
2988
  msgstr "Gambia"
2989
 
2990
  # Georgia
2991
- #: ../admin/view/wp-slimstat-reports.php:1811
2992
  msgid "c-ge"
2993
  msgstr "Georgia"
2994
 
2995
  # Germany
2996
- #: ../admin/view/wp-slimstat-reports.php:1811
2997
  msgid "c-de"
2998
  msgstr "Germany"
2999
 
3000
  # Ghana
3001
- #: ../admin/view/wp-slimstat-reports.php:1811
3002
  msgid "c-gh"
3003
  msgstr "Ghana"
3004
 
3005
  # Greece
3006
- #: ../admin/view/wp-slimstat-reports.php:1811
3007
  msgid "c-gr"
3008
  msgstr "Greece"
3009
 
3010
  # Greenland
3011
- #: ../admin/view/wp-slimstat-reports.php:1811
3012
  msgid "c-gl"
3013
  msgstr "Greenland"
3014
 
3015
  # Grenada
3016
- #: ../admin/view/wp-slimstat-reports.php:1811
3017
  msgid "c-gd"
3018
  msgstr "Grenada"
3019
 
3020
  # Guadeloupe
3021
- #: ../admin/view/wp-slimstat-reports.php:1811
3022
  msgid "c-gp"
3023
  msgstr "Guadeloupe"
3024
 
3025
  # Guatemala
3026
- #: ../admin/view/wp-slimstat-reports.php:1811
3027
  msgid "c-gt"
3028
  msgstr "Guatemala"
3029
 
3030
  # Guinea
3031
- #: ../admin/view/wp-slimstat-reports.php:1811
3032
  msgid "c-gn"
3033
  msgstr "Guinea"
3034
 
3035
  # Guinea-Bissau
3036
- #: ../admin/view/wp-slimstat-reports.php:1811
3037
  msgid "c-gw"
3038
  msgstr "Guinea-Bissau"
3039
 
3040
  # Guyana
3041
- #: ../admin/view/wp-slimstat-reports.php:1811
3042
  msgid "c-gy"
3043
  msgstr "Guyana"
3044
 
3045
  # Haiti
3046
- #: ../admin/view/wp-slimstat-reports.php:1811
3047
  msgid "c-ht"
3048
  msgstr "Haiti"
3049
 
3050
  # Honduras
3051
- #: ../admin/view/wp-slimstat-reports.php:1811
3052
  msgid "c-hn"
3053
  msgstr "Honduras"
3054
 
3055
  # Hong Kong
3056
- #: ../admin/view/wp-slimstat-reports.php:1811
3057
  msgid "c-hk"
3058
  msgstr "Hong Kong"
3059
 
3060
  # Hungary
3061
- #: ../admin/view/wp-slimstat-reports.php:1811
3062
  msgid "c-hu"
3063
  msgstr "Hungary"
3064
 
3065
  # Iceland
3066
- #: ../admin/view/wp-slimstat-reports.php:1811
3067
  msgid "c-is"
3068
  msgstr "Iceland"
3069
 
3070
  # India
3071
- #: ../admin/view/wp-slimstat-reports.php:1811
3072
  msgid "c-in"
3073
  msgstr "India"
3074
 
3075
  # Indonesia
3076
- #: ../admin/view/wp-slimstat-reports.php:1811
3077
  msgid "c-id"
3078
  msgstr "Indonesia"
3079
 
3080
  # Islamic Republic of Iran
3081
- #: ../admin/view/wp-slimstat-reports.php:1811
3082
  msgid "c-ir"
3083
  msgstr "Islamic Republic of Iran"
3084
 
3085
  # Iraq
3086
- #: ../admin/view/wp-slimstat-reports.php:1811
3087
  msgid "c-iq"
3088
  msgstr "Iraq"
3089
 
3090
  # Ireland
3091
- #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-ie"
3093
  msgstr "Ireland"
3094
 
3095
  # Israel
3096
- #: ../admin/view/wp-slimstat-reports.php:1811
3097
  msgid "c-il"
3098
  msgstr "Israel"
3099
 
3100
  # Italy
3101
- #: ../admin/view/wp-slimstat-reports.php:1811
3102
  msgid "c-it"
3103
  msgstr "Italy"
3104
 
3105
  # Jamaica
3106
- #: ../admin/view/wp-slimstat-reports.php:1811
3107
  msgid "c-jm"
3108
  msgstr "Jamaica"
3109
 
3110
  # Japan
3111
- #: ../admin/view/wp-slimstat-reports.php:1811
3112
  msgid "c-jp"
3113
  msgstr "Japan"
3114
 
3115
  # Jordan
3116
- #: ../admin/view/wp-slimstat-reports.php:1811
3117
  msgid "c-jo"
3118
  msgstr "Jordan"
3119
 
3120
  # Kazakhstan
3121
- #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-kz"
3123
  msgstr "Kazakhstan"
3124
 
3125
  # Kenya
3126
- #: ../admin/view/wp-slimstat-reports.php:1811
3127
  msgid "c-ke"
3128
  msgstr "Kenya"
3129
 
3130
  # Nauru
3131
- #: ../admin/view/wp-slimstat-reports.php:1811
3132
  msgid "c-nr"
3133
  msgstr "Nauru"
3134
 
3135
  # Democratic People's Republic of Korea
3136
- #: ../admin/view/wp-slimstat-reports.php:1811
3137
  msgid "c-kp"
3138
  msgstr "Democratic People's Republic of Korea"
3139
 
3140
  # Republic of Korea
3141
- #: ../admin/view/wp-slimstat-reports.php:1811
3142
  msgid "c-kr"
3143
  msgstr "Republic of Korea"
3144
 
3145
- #: ../admin/view/wp-slimstat-reports.php:1811
3146
  msgid "c-kv"
3147
  msgstr ""
3148
 
3149
  # Kuwait
3150
- #: ../admin/view/wp-slimstat-reports.php:1811
3151
  msgid "c-kw"
3152
  msgstr "Kuwait"
3153
 
3154
  # Kyrgyzstan
3155
- #: ../admin/view/wp-slimstat-reports.php:1811
3156
  msgid "c-kg"
3157
  msgstr "Kyrgyzstan"
3158
 
3159
  # Lao People's Democratic Republic
3160
- #: ../admin/view/wp-slimstat-reports.php:1811
3161
  msgid "c-la"
3162
  msgstr "Lao People's Democratic Republic"
3163
 
3164
  # Latvia
3165
- #: ../admin/view/wp-slimstat-reports.php:1811
3166
  msgid "c-lv"
3167
  msgstr "Latvia"
3168
 
3169
  # Lebanon
3170
- #: ../admin/view/wp-slimstat-reports.php:1811
3171
  msgid "c-lb"
3172
  msgstr "Lebanon"
3173
 
3174
  # Lesotho
3175
- #: ../admin/view/wp-slimstat-reports.php:1811
3176
  msgid "c-ls"
3177
  msgstr "Lesotho"
3178
 
3179
  # Liberia
3180
- #: ../admin/view/wp-slimstat-reports.php:1811
3181
  msgid "c-lr"
3182
  msgstr "Liberia"
3183
 
3184
  # Libyan Arab Jamahiriya
3185
- #: ../admin/view/wp-slimstat-reports.php:1811
3186
  msgid "c-ly"
3187
  msgstr "Libyan Arab Jamahiriya"
3188
 
3189
  # Liechtenstein
3190
- #: ../admin/view/wp-slimstat-reports.php:1811
3191
  msgid "c-li"
3192
  msgstr "Liechtenstein"
3193
 
3194
  # Lithuania
3195
- #: ../admin/view/wp-slimstat-reports.php:1811
3196
  msgid "c-lt"
3197
  msgstr "Lithuania"
3198
 
3199
  # Luxembourg
3200
- #: ../admin/view/wp-slimstat-reports.php:1811
3201
  msgid "c-lu"
3202
  msgstr "Luxembourg"
3203
 
3204
  # The Former Yugoslav Republic of Macedonia
3205
- #: ../admin/view/wp-slimstat-reports.php:1811
3206
  msgid "c-mk"
3207
  msgstr "The Former Yugoslav Republic of Macedonia"
3208
 
3209
  # Madagascar
3210
- #: ../admin/view/wp-slimstat-reports.php:1811
3211
  msgid "c-mg"
3212
  msgstr "Madagascar"
3213
 
3214
  # Malawi
3215
- #: ../admin/view/wp-slimstat-reports.php:1811
3216
  msgid "c-mw"
3217
  msgstr "Malawi"
3218
 
3219
  # Malaysia
3220
- #: ../admin/view/wp-slimstat-reports.php:1811
3221
  msgid "c-my"
3222
  msgstr "Malaysia"
3223
 
3224
  # Mali
3225
- #: ../admin/view/wp-slimstat-reports.php:1811
3226
  msgid "c-ml"
3227
  msgstr "Mali"
3228
 
3229
  # Malta
3230
- #: ../admin/view/wp-slimstat-reports.php:1811
3231
  msgid "c-mt"
3232
  msgstr "Malta"
3233
 
3234
  # Martinique
3235
- #: ../admin/view/wp-slimstat-reports.php:1811
3236
  msgid "c-mq"
3237
  msgstr "Martinique"
3238
 
3239
  # Mauritania
3240
- #: ../admin/view/wp-slimstat-reports.php:1811
3241
  msgid "c-mr"
3242
  msgstr "Mauritania"
3243
 
3244
  # Mauritius
3245
- #: ../admin/view/wp-slimstat-reports.php:1811
3246
  msgid "c-mu"
3247
  msgstr "Mauritius"
3248
 
3249
  # Mexico
3250
- #: ../admin/view/wp-slimstat-reports.php:1811
3251
  msgid "c-mx"
3252
  msgstr "Mexico"
3253
 
3254
  # Moldova
3255
- #: ../admin/view/wp-slimstat-reports.php:1811
3256
  msgid "c-md"
3257
  msgstr "Moldova"
3258
 
3259
  # Mongolia
3260
- #: ../admin/view/wp-slimstat-reports.php:1811
3261
  msgid "c-mn"
3262
  msgstr "Mongolia"
3263
 
3264
  # Montenegro
3265
- #: ../admin/view/wp-slimstat-reports.php:1811
3266
  msgid "c-me"
3267
  msgstr "Montenegro"
3268
 
3269
  # Montserrat
3270
- #: ../admin/view/wp-slimstat-reports.php:1811
3271
  msgid "c-ms"
3272
  msgstr "Montserrat"
3273
 
3274
  # Morocco
3275
- #: ../admin/view/wp-slimstat-reports.php:1811
3276
  msgid "c-ma"
3277
  msgstr "Morocco"
3278
 
3279
  # Mozambique
3280
- #: ../admin/view/wp-slimstat-reports.php:1811
3281
  msgid "c-mz"
3282
  msgstr "Mozambique"
3283
 
3284
  # Myanmar
3285
- #: ../admin/view/wp-slimstat-reports.php:1811
3286
  msgid "c-mm"
3287
  msgstr "Myanmar"
3288
 
3289
  # Namibia
3290
- #: ../admin/view/wp-slimstat-reports.php:1811
3291
  msgid "c-na"
3292
  msgstr "Namibia"
3293
 
3294
  # Nepal
3295
- #: ../admin/view/wp-slimstat-reports.php:1811
3296
  msgid "c-np"
3297
  msgstr "Nepal"
3298
 
3299
  # Netherlands
3300
- #: ../admin/view/wp-slimstat-reports.php:1811
3301
  msgid "c-nl"
3302
  msgstr "Netherlands"
3303
 
3304
  # New Caledonia
3305
- #: ../admin/view/wp-slimstat-reports.php:1811
3306
  msgid "c-nc"
3307
  msgstr "New Caledonia"
3308
 
3309
  # New Zealand
3310
- #: ../admin/view/wp-slimstat-reports.php:1811
3311
  msgid "c-nz"
3312
  msgstr "New Zealand"
3313
 
3314
  # Nicaragua
3315
- #: ../admin/view/wp-slimstat-reports.php:1811
3316
  msgid "c-ni"
3317
  msgstr "Nicaragua"
3318
 
3319
  # Niger
3320
- #: ../admin/view/wp-slimstat-reports.php:1811
3321
  msgid "c-ne"
3322
  msgstr "Niger"
3323
 
3324
  # Nigeria
3325
- #: ../admin/view/wp-slimstat-reports.php:1811
3326
  msgid "c-ng"
3327
  msgstr "Nigeria"
3328
 
3329
  # Norway
3330
- #: ../admin/view/wp-slimstat-reports.php:1811
3331
  msgid "c-no"
3332
  msgstr "Norway"
3333
 
3334
  # Oman
3335
- #: ../admin/view/wp-slimstat-reports.php:1811
3336
  msgid "c-om"
3337
  msgstr "Oman"
3338
 
3339
  # Pakistan
3340
- #: ../admin/view/wp-slimstat-reports.php:1811
3341
  msgid "c-pk"
3342
  msgstr "Pakistan"
3343
 
3344
  # Palau
3345
- #: ../admin/view/wp-slimstat-reports.php:1811
3346
  msgid "c-pw"
3347
  msgstr "Palau"
3348
 
3349
  # Occupied Palestinian Territory
3350
- #: ../admin/view/wp-slimstat-reports.php:1811
3351
  msgid "c-ps"
3352
  msgstr "Occupied Palestinian Territory"
3353
 
3354
  # Panama
3355
- #: ../admin/view/wp-slimstat-reports.php:1811
3356
  msgid "c-pa"
3357
  msgstr "Panama"
3358
 
3359
  # Papua New Guinea
3360
- #: ../admin/view/wp-slimstat-reports.php:1811
3361
  msgid "c-pg"
3362
  msgstr "Papua New Guinea"
3363
 
3364
  # Paraguay
3365
- #: ../admin/view/wp-slimstat-reports.php:1811
3366
  msgid "c-py"
3367
  msgstr "Paraguay"
3368
 
3369
  # Peru
3370
- #: ../admin/view/wp-slimstat-reports.php:1811
3371
  msgid "c-pe"
3372
  msgstr "Peru"
3373
 
3374
  # Philippines
3375
- #: ../admin/view/wp-slimstat-reports.php:1811
3376
  msgid "c-ph"
3377
  msgstr "Philippines"
3378
 
3379
  # Poland
3380
- #: ../admin/view/wp-slimstat-reports.php:1811
3381
  msgid "c-pl"
3382
  msgstr "Poland"
3383
 
3384
  # Portugal
3385
- #: ../admin/view/wp-slimstat-reports.php:1811
3386
  msgid "c-pt"
3387
  msgstr "Portugal"
3388
 
3389
  # Puerto Rico
3390
- #: ../admin/view/wp-slimstat-reports.php:1811
3391
  msgid "c-pr"
3392
  msgstr "Puerto Rico"
3393
 
3394
  # Qatar
3395
- #: ../admin/view/wp-slimstat-reports.php:1811
3396
  msgid "c-qa"
3397
  msgstr "Qatar"
3398
 
3399
  # Réunion
3400
- #: ../admin/view/wp-slimstat-reports.php:1811
3401
  msgid "c-re"
3402
  msgstr "Réunion"
3403
 
3404
  # Romania
3405
- #: ../admin/view/wp-slimstat-reports.php:1811
3406
  msgid "c-ro"
3407
  msgstr "Romania"
3408
 
3409
  # Russian Federation
3410
- #: ../admin/view/wp-slimstat-reports.php:1811
3411
  msgid "c-ru"
3412
  msgstr "Russian Federation"
3413
 
3414
  # Rwanda
3415
- #: ../admin/view/wp-slimstat-reports.php:1811
3416
  msgid "c-rw"
3417
  msgstr "Rwanda"
3418
 
3419
  # Saint Kitts and Nevis
3420
- #: ../admin/view/wp-slimstat-reports.php:1811
3421
  msgid "c-kn"
3422
  msgstr "Saint Kitts and Nevis"
3423
 
3424
  # Saint Lucia
3425
- #: ../admin/view/wp-slimstat-reports.php:1811
3426
  msgid "c-lc"
3427
  msgstr "Saint Lucia"
3428
 
3429
  # Saint Martin
3430
- #: ../admin/view/wp-slimstat-reports.php:1811
3431
  msgid "c-mf"
3432
  msgstr "Saint Martin"
3433
 
3434
  # Saint Vincent and the Grenadines
3435
- #: ../admin/view/wp-slimstat-reports.php:1811
3436
  msgid "c-vc"
3437
  msgstr "Saint Vincent and the Grenadines"
3438
 
3439
  # Samoa
3440
- #: ../admin/view/wp-slimstat-reports.php:1811
3441
  msgid "c-ws"
3442
  msgstr "Samoa"
3443
 
3444
  # Sao Tome and Principe
3445
- #: ../admin/view/wp-slimstat-reports.php:1811
3446
  msgid "c-st"
3447
  msgstr "Sao Tome and Principe"
3448
 
3449
  # Saudi Arabia
3450
- #: ../admin/view/wp-slimstat-reports.php:1811
3451
  msgid "c-sa"
3452
  msgstr "Saudi Arabia"
3453
 
3454
  # Senegal
3455
- #: ../admin/view/wp-slimstat-reports.php:1811
3456
  msgid "c-sn"
3457
  msgstr "Senegal"
3458
 
3459
  # Serbia
3460
- #: ../admin/view/wp-slimstat-reports.php:1811
3461
  msgid "c-rs"
3462
  msgstr "Serbia"
3463
 
3464
  # Sierra Leone
3465
- #: ../admin/view/wp-slimstat-reports.php:1811
3466
  msgid "c-sl"
3467
  msgstr "Sierra Leone"
3468
 
3469
  # Singapore
3470
- #: ../admin/view/wp-slimstat-reports.php:1811
3471
  msgid "c-sg"
3472
  msgstr "Singapore"
3473
 
3474
  # Slovakia
3475
- #: ../admin/view/wp-slimstat-reports.php:1811
3476
  msgid "c-sk"
3477
  msgstr "Slovakia"
3478
 
3479
  # Slovenia
3480
- #: ../admin/view/wp-slimstat-reports.php:1811
3481
  msgid "c-si"
3482
  msgstr "Slovenia"
3483
 
3484
  # Solomon Islands
3485
- #: ../admin/view/wp-slimstat-reports.php:1811
3486
  msgid "c-sb"
3487
  msgstr "Solomon Islands"
3488
 
3489
  # Somalia
3490
- #: ../admin/view/wp-slimstat-reports.php:1811
3491
  msgid "c-so"
3492
  msgstr "Somalia"
3493
 
3494
  # South Africa
3495
- #: ../admin/view/wp-slimstat-reports.php:1811
3496
  msgid "c-za"
3497
  msgstr "South Africa"
3498
 
3499
  # South Georgia and the South Sandwich Islands
3500
- #: ../admin/view/wp-slimstat-reports.php:1811
3501
  msgid "c-gs"
3502
  msgstr "South Georgia and the South Sandwich Islands"
3503
 
3504
  # Spain
3505
- #: ../admin/view/wp-slimstat-reports.php:1811
3506
  msgid "c-es"
3507
  msgstr "Spain"
3508
 
3509
  # Sri Lanka
3510
- #: ../admin/view/wp-slimstat-reports.php:1811
3511
  msgid "c-lk"
3512
  msgstr "Sri Lanka"
3513
 
3514
- #: ../admin/view/wp-slimstat-reports.php:1811
3515
  msgid "c-sc"
3516
  msgstr "Seychelles"
3517
 
3518
  # Sudan
3519
- #: ../admin/view/wp-slimstat-reports.php:1811
3520
  msgid "c-sd"
3521
  msgstr "Sudan"
3522
 
3523
- #: ../admin/view/wp-slimstat-reports.php:1811
3524
  msgid "c-ss"
3525
  msgstr ""
3526
 
3527
  # Suriname
3528
- #: ../admin/view/wp-slimstat-reports.php:1811
3529
  msgid "c-sr"
3530
  msgstr "Suriname"
3531
 
3532
  # Svalbard and Jan Mayen
3533
- #: ../admin/view/wp-slimstat-reports.php:1811
3534
  msgid "c-sj"
3535
  msgstr "Svalbard and Jan Mayen"
3536
 
3537
  # Swaziland
3538
- #: ../admin/view/wp-slimstat-reports.php:1811
3539
  msgid "c-sz"
3540
  msgstr "Swaziland"
3541
 
3542
  # Sweden
3543
- #: ../admin/view/wp-slimstat-reports.php:1811
3544
  msgid "c-se"
3545
  msgstr "Sweden"
3546
 
3547
  # Switzerland
3548
- #: ../admin/view/wp-slimstat-reports.php:1811
3549
  msgid "c-ch"
3550
  msgstr "Switzerland"
3551
 
3552
  # Syrian Arab Republic
3553
- #: ../admin/view/wp-slimstat-reports.php:1811
3554
  msgid "c-sy"
3555
  msgstr "Syrian Arab Republic"
3556
 
3557
  # Taiwan, Province of China
3558
- #: ../admin/view/wp-slimstat-reports.php:1811
3559
  msgid "c-tw"
3560
  msgstr "Taiwan"
3561
 
3562
  # Tajikistan
3563
- #: ../admin/view/wp-slimstat-reports.php:1811
3564
  msgid "c-tj"
3565
  msgstr "Tajikistan"
3566
 
3567
  # United Republic of Tanzania
3568
- #: ../admin/view/wp-slimstat-reports.php:1811
3569
  msgid "c-tz"
3570
  msgstr "United Republic of Tanzania"
3571
 
3572
  # Thailand
3573
- #: ../admin/view/wp-slimstat-reports.php:1811
3574
  msgid "c-th"
3575
  msgstr "Thailand"
3576
 
3577
  # Timor-Leste
3578
- #: ../admin/view/wp-slimstat-reports.php:1811
3579
  msgid "c-tl"
3580
  msgstr "Timor-Leste"
3581
 
3582
  # Togo
3583
- #: ../admin/view/wp-slimstat-reports.php:1811
3584
  msgid "c-tg"
3585
  msgstr "Togo"
3586
 
3587
  # Tonga
3588
- #: ../admin/view/wp-slimstat-reports.php:1811
3589
  msgid "c-to"
3590
  msgstr "Tonga"
3591
 
3592
  # Trinidad and Tobago
3593
- #: ../admin/view/wp-slimstat-reports.php:1811
3594
  msgid "c-tt"
3595
  msgstr "Trinidad and Tobago"
3596
 
3597
  # Tunisia
3598
- #: ../admin/view/wp-slimstat-reports.php:1811
3599
  msgid "c-tn"
3600
  msgstr "Tunisia"
3601
 
3602
  # Turkey
3603
- #: ../admin/view/wp-slimstat-reports.php:1811
3604
  msgid "c-tr"
3605
  msgstr "Turkey"
3606
 
3607
  # Turkmenistan
3608
- #: ../admin/view/wp-slimstat-reports.php:1811
3609
  msgid "c-tm"
3610
  msgstr "Turkmenistan"
3611
 
3612
  # Turks and Caicos Islands
3613
- #: ../admin/view/wp-slimstat-reports.php:1811
3614
  msgid "c-tc"
3615
  msgstr "Turks and Caicos Islands"
3616
 
3617
  # Uganda
3618
- #: ../admin/view/wp-slimstat-reports.php:1811
3619
  msgid "c-ug"
3620
  msgstr "Uganda"
3621
 
3622
  # Ukraine
3623
- #: ../admin/view/wp-slimstat-reports.php:1811
3624
  msgid "c-ua"
3625
  msgstr "Ukraine"
3626
 
3627
  # United Arab Emirates
3628
- #: ../admin/view/wp-slimstat-reports.php:1811
3629
  msgid "c-ae"
3630
  msgstr "United Arab Emirates"
3631
 
3632
  # United Kingdom
3633
- #: ../admin/view/wp-slimstat-reports.php:1811
3634
  msgid "c-gb"
3635
  msgstr "United Kingdom"
3636
 
3637
  # United States
3638
- #: ../admin/view/wp-slimstat-reports.php:1811
3639
  msgid "c-us"
3640
  msgstr "United States"
3641
 
3642
  # Uruguay
3643
- #: ../admin/view/wp-slimstat-reports.php:1811
3644
  msgid "c-uy"
3645
  msgstr "Uruguay"
3646
 
3647
  # Uzbekistan
3648
- #: ../admin/view/wp-slimstat-reports.php:1811
3649
  msgid "c-uz"
3650
  msgstr "Uzbekistan"
3651
 
3652
  # Vanuatu
3653
- #: ../admin/view/wp-slimstat-reports.php:1811
3654
  msgid "c-vu"
3655
  msgstr "Vanuatu"
3656
 
3657
  # Venezuela
3658
- #: ../admin/view/wp-slimstat-reports.php:1811
3659
  msgid "c-ve"
3660
  msgstr "Venezuela"
3661
 
3662
  # Viet Nam
3663
- #: ../admin/view/wp-slimstat-reports.php:1811
3664
  msgid "c-vn"
3665
  msgstr "Viet Nam"
3666
 
3667
  # British Virgin Islands
3668
- #: ../admin/view/wp-slimstat-reports.php:1811
3669
  msgid "c-vg"
3670
  msgstr "British Virgin Islands"
3671
 
3672
  # U.S. Virgin Islands
3673
- #: ../admin/view/wp-slimstat-reports.php:1811
3674
  msgid "c-vi"
3675
  msgstr "U.S. Virgin Islands"
3676
 
3677
  # Western Sahara
3678
- #: ../admin/view/wp-slimstat-reports.php:1811
3679
  msgid "c-eh"
3680
  msgstr "Western Sahara"
3681
 
3682
  # Yemen
3683
- #: ../admin/view/wp-slimstat-reports.php:1811
3684
  msgid "c-ye"
3685
  msgstr "Yemen"
3686
 
3687
  # Zambia
3688
- #: ../admin/view/wp-slimstat-reports.php:1811
3689
  msgid "c-zm"
3690
  msgstr "Zambia"
3691
 
3692
  # Zimbabwe
3693
- #: ../admin/view/wp-slimstat-reports.php:1811
3694
  msgid "c-zw"
3695
  msgstr "Zimbabwe"
3696
 
3697
  # Guernsey
3698
- #: ../admin/view/wp-slimstat-reports.php:1811
3699
  msgid "c-gg"
3700
  msgstr "Guernsey"
3701
 
3702
  # Jersey
3703
- #: ../admin/view/wp-slimstat-reports.php:1811
3704
  msgid "c-je"
3705
  msgstr "Jersey"
3706
 
3707
  # Isle of Man
3708
- #: ../admin/view/wp-slimstat-reports.php:1811
3709
  msgid "c-im"
3710
  msgstr "Isle of Man"
3711
 
3712
  # Maldives
3713
- #: ../admin/view/wp-slimstat-reports.php:1811
3714
  msgid "c-mv"
3715
  msgstr "Maldives"
3716
 
3717
- #: ../admin/view/wp-slimstat-reports.php:1812
3718
  msgid "c-eu"
3719
  msgstr ""
3720
 
3721
- #: ../admin/view/wp-slimstat-reports.php:1894
3722
  msgid "src"
3723
  msgstr "منبع"
3724
 
3725
- #: ../admin/view/wp-slimstat-reports.php:1897
3726
  msgid "serp"
3727
  msgstr ""
3728
 
3729
- #: ../admin/view/wp-slimstat-reports.php:1904
3730
  msgid "Go to the referring page"
3731
  msgstr "برو به صفحه ارجاع‌دهنده"
3732
 
3733
- #: ../admin/view/wp-slimstat-reports.php:1926
3734
  msgid "Remove filter for"
3735
  msgstr "حذف فیلترها از"
3736
 
3737
- #: ../admin/view/wp-slimstat-reports.php:1930
3738
  msgid "Save"
3739
  msgstr ""
3740
 
3741
- #: ../admin/view/wp-slimstat-reports.php:1933
3742
  msgid "Reset All"
3743
  msgstr "بازنشانی همه"
3744
 
3745
- #: ../admin/view/wp-slimstat-reports.php:1937
3746
  msgid "Current filters:"
3747
  msgstr "فیلترهای جاری:"
3748
 
3749
- #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3750
- #: ../admin/wp-slimstat-admin.php:495
3751
- msgid "SlimStat"
3752
- msgstr "SlimStat"
 
 
 
 
 
 
 
 
 
 
 
3753
 
3754
- #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3755
- #: ../wp-slimstat.php:1799
3756
  #, fuzzy
3757
  msgid "Customize"
3758
  msgstr "سی‌اس‌اس دلخواه"
3759
 
3760
- #: ../admin/wp-slimstat-admin.php:587
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3761
  #, fuzzy
3762
  msgid "Pageviews in the last "
3763
  msgstr "مشاهده صفحات (نمودار)"
3764
 
3765
- #: ../admin/wp-slimstat-admin.php:590
3766
  #, fuzzy
3767
  msgid "Unique IPs in the last "
3768
  msgstr "آی‌پی‌های یکتا"
3769
 
3770
- #: ../admin/wp-slimstat-admin.php:644
3771
  msgid "Show on screen"
3772
  msgstr "روی صفحه نشان بده"
3773
 
3774
- #: ../admin/wp-slimstat-admin.php:725
3775
  msgid "Already saved"
3776
  msgstr ""
3777
 
3778
- #: ../admin/wp-slimstat-admin.php:733
3779
  msgid "Saved"
3780
  msgstr ""
3781
 
3782
- #: ../admin/wp-slimstat-admin.php:753
3783
  #, fuzzy
3784
  msgid "Delete this filter"
3785
  msgstr "حذف بازدید‌ها وقتی"
3786
 
3787
- #: ../admin/wp-slimstat-admin.php:797
3788
  msgid "There was an error updating the following options:"
3789
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
3790
 
3791
- #: ../admin/wp-slimstat-admin.php:800
3792
  #, fuzzy
3793
  msgid "Your changes have been saved."
3794
  msgstr "تنظیمات شما با موفقیت به روز شد."
3795
 
3796
- #: ../admin/wp-slimstat-admin.php:823
3797
  msgid "Save Changes"
3798
  msgstr "ذخیره‌ی تغییرات"
3799
 
3800
- #: ../admin/wp-slimstat-admin.php:839
3801
  msgid "Definitions"
3802
  msgstr "تعاریف"
3803
 
3804
- #: ../admin/wp-slimstat-admin.php:842
3805
  msgid "Pageview"
3806
  msgstr "بازدید"
3807
 
3808
- #: ../admin/wp-slimstat-admin.php:842
3809
  #, fuzzy
3810
  msgid ""
3811
  "A request to load a single HTML file (\"page\"). This should be contrasted "
@@ -3816,11 +3785,11 @@ msgstr ""
3816
  "\"hit\" تفاوت دارد. این برنامه هر بازدید را بعد از اجرای برنامه ردگیری ثبت "
3817
  "میکند. "
3818
 
3819
- #: ../admin/wp-slimstat-admin.php:843
3820
  msgid "(Human) Visit"
3821
  msgstr "بیننده (انسانی)"
3822
 
3823
- #: ../admin/wp-slimstat-admin.php:843
3824
  msgid ""
3825
  "A period of interaction between a visitor's browser and your website, ending "
3826
  "when the browser is closed or when the user has been inactive on that site "
@@ -3829,7 +3798,7 @@ msgstr ""
3829
  "تراکنش بین مرورگر ردگیری و پایگاه شما به پایان رسید وقتی که مرورگر بسته شده "
3830
  "و یا کاربر به مدت سی دقیقه غیر فعال شده است."
3831
 
3832
- #: ../admin/wp-slimstat-admin.php:844
3833
  msgid ""
3834
  "Any user who has left a comment on your blog, and is thus identified by "
3835
  "Wordpress as a returning visitor"
@@ -3837,11 +3806,11 @@ msgstr ""
3837
  "هر کاربری که در تارنامه شما نظر گذاشته توسط وردپرس به عنوان «بیننده دوباره» "
3838
  "شناخته میشود"
3839
 
3840
- #: ../admin/wp-slimstat-admin.php:845
3841
  msgid "Unique IP"
3842
  msgstr "آی‌پی یکتا"
3843
 
3844
- #: ../admin/wp-slimstat-admin.php:845
3845
  msgid ""
3846
  "Used to differentiate between multiple requests to download a file from one "
3847
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3852,18 +3821,18 @@ msgstr ""
3852
  "درخواست از چند آی پی ادرس مختلف میباشد؛ چون این اندازه گیری فقط نشانگر آدرس "
3853
  "هر بازدید است، مفید میباشد ولی دقیق نیست."
3854
 
3855
- #: ../admin/wp-slimstat-admin.php:846
3856
  msgid ""
3857
  "the originating IP address of a client connecting to a web server through an "
3858
  "HTTP proxy or load balancer"
3859
  msgstr ""
3860
  "ای پی منشا که کاربر را از طریق HTTP proxy و یا load balancer مرتبط کرده"
3861
 
3862
- #: ../admin/wp-slimstat-admin.php:847
3863
  msgid "Direct Traffic"
3864
  msgstr "ترافیک مستقیم"
3865
 
3866
- #: ../admin/wp-slimstat-admin.php:847
3867
  msgid ""
3868
  "All those people showing up to your Web site by typing in the URL of your "
3869
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -3872,11 +3841,11 @@ msgstr ""
3872
  " تمامی کاربرانی که با وارد کردن نشانی مستقیم تارنما و یا استفاده از بوک مارک "
3873
  "از تارنما بازدید میکنند."
3874
 
3875
- #: ../admin/wp-slimstat-admin.php:848
3876
  msgid "Search Engine"
3877
  msgstr "موتور جستجو"
3878
 
3879
- #: ../admin/wp-slimstat-admin.php:848
3880
  msgid ""
3881
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3882
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -3884,24 +3853,24 @@ msgstr ""
3884
  "ترافیک مرتبط با نتایج موتور جستجو (organic) و همچنین ترافیک بدست آمده توسط "
3885
  "تبلیغات در موتورهای جستجو اینجا درهم است"
3886
 
3887
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
3888
  msgid "Keywords used by your visitors to find your website on a search engine"
3889
  msgstr ""
3890
  "کلمات کلیدی که کاربران شما به وسیله‌ی آن‌ها از موتورهای جستجو، پایگاه شما را "
3891
  "یافته‌اند."
3892
 
3893
- #: ../admin/wp-slimstat-admin.php:850
3894
  msgid "SERP"
3895
  msgstr ""
3896
 
3897
- #: ../admin/wp-slimstat-admin.php:850
3898
  msgid ""
3899
  "Short for search engine results page, the Web page that a search engine "
3900
  "returns with the results of its search. The value shown represents your rank "
3901
  "(or position) within that list of results"
3902
  msgstr " این مقدار نشان دهنده رتبه شما در فهرست نتایج موتور جستجو میباشد."
3903
 
3904
- #: ../admin/wp-slimstat-admin.php:851
3905
  msgid ""
3906
  "Any program used for accessing a website; this includes browsers, robots, "
3907
  "spiders and any other program that was used to retrieve information from the "
@@ -3909,7 +3878,7 @@ msgid ""
3909
  msgstr ""
3910
  "هر برنامه که به تارنما دسترسی پیدا کند مثل مرورگر، روبات، خزنده، وغیره."
3911
 
3912
- #: ../admin/wp-slimstat-admin.php:852
3913
  msgid ""
3914
  "A link from one domain to another is said to be outbound from its source "
3915
  "anchor and inbound to its target. This report lists all the links to other "
@@ -3919,27 +3888,27 @@ msgstr ""
3919
  "پیوند درونی محسوب میشود. این گزارش فهرستی از تمام پیوند ها به پایگاه های "
3920
  "دیگر و کاربران است."
3921
 
3922
- #: ../admin/wp-slimstat-admin.php:859
3923
  msgid "Basic Filters"
3924
  msgstr "پالایه های اولیه"
3925
 
3926
- #: ../admin/wp-slimstat-admin.php:862
3927
  msgid "User agent (Firefox, Chrome, ...)"
3928
  msgstr "مرورگر کاربر (فایرفاکس، کروم و ...)"
3929
 
3930
- #: ../admin/wp-slimstat-admin.php:863
3931
  msgid "2-letter code (us, ru, de, it, ...)"
3932
  msgstr "علامت دو حرفی (us، ir، ...)"
3933
 
3934
- #: ../admin/wp-slimstat-admin.php:864
3935
  msgid "IP"
3936
  msgstr "آی‌پی"
3937
 
3938
- #: ../admin/wp-slimstat-admin.php:864
3939
  msgid "Visitor's public IP address"
3940
  msgstr "نشانی‌های آی‌پی عمومی بازدیدکنندگان"
3941
 
3942
- #: ../admin/wp-slimstat-admin.php:866
3943
  msgid ""
3944
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3945
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -3948,7 +3917,7 @@ msgstr ""
3948
  "لطفا به <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
3949
  "ee825488(v=cs.20).aspx\"> فرهنگ زبان </a> برای اطلاع بیشتر مراجعه کنید"
3950
 
3951
- #: ../admin/wp-slimstat-admin.php:867
3952
  msgid ""
3953
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3954
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -3958,15 +3927,19 @@ msgstr ""
3958
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\"> "
3959
  "راهنما</a> مراجعه کنید"
3960
 
3961
- #: ../admin/wp-slimstat-admin.php:868
3962
  msgid "URL accessed on your site"
3963
  msgstr "نشانی هایی که مورد بازدید قرار گرفته"
3964
 
3965
- #: ../admin/wp-slimstat-admin.php:869
3966
  msgid "Complete address of the referrer page"
3967
  msgstr "نشانی کامل صفحه‌ی ارجاع ‌دهنده"
3968
 
3969
- #: ../admin/wp-slimstat-admin.php:870
 
 
 
 
3970
  msgid ""
3971
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3972
  "comment"
@@ -3974,26 +3947,26 @@ msgstr ""
3974
  "اسامی بیننده بر مبنای خوراکی که بعد از گذاشتن نظر توسط وردپرس اختصاص داده "
3975
  "میشود."
3976
 
3977
- #: ../admin/wp-slimstat-admin.php:878
3978
  msgid "Advanced Filters"
3979
  msgstr "فیلترهای پیش‌رفته"
3980
 
3981
- #: ../admin/wp-slimstat-admin.php:881
3982
  msgid "user agent version (9.0, 11, ...)"
3983
  msgstr "نسخه مرورگر کاربر"
3984
 
3985
- #: ../admin/wp-slimstat-admin.php:882
3986
  msgid ""
3987
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3988
  "all others"
3989
  msgstr ""
3990
  "۱=خزنده‌های موتورهای جستجو، ۲=دستگاه موبایل، ۳=خوراک‌خوان، ۰=همه‌ی چیزهای دیگر"
3991
 
3992
- #: ../admin/wp-slimstat-admin.php:883
3993
  msgid "Pageview Attributes"
3994
  msgstr "خصوصیات بازدید"
3995
 
3996
- #: ../admin/wp-slimstat-admin.php:883
3997
  msgid ""
3998
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3999
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -4002,19 +3975,19 @@ msgstr ""
4002
  "این ناحیه برای تنظیمات <a target=\"_blank\" href=\"https://developer.mozilla."
4003
  "org/en/Link_prefetching_FAQ\"> صفحه‌بندی </a> و یا شیوه های مشابه است."
4004
 
4005
- #: ../admin/wp-slimstat-admin.php:884
4006
  msgid "author associated to that post/page when the resource was accessed"
4007
  msgstr "نویسنده مرتبط با این ارسال یا صفحه وقتی این ماخذ دسترسی شد"
4008
 
4009
- #: ../admin/wp-slimstat-admin.php:885
4010
  msgid "ID of the category/term associated to the resource, when available"
4011
  msgstr "شناسه دسته یا عبارت که با منبع مرتبط است، اگر موجود باشد"
4012
 
4013
- #: ../admin/wp-slimstat-admin.php:886
4014
  msgid "visitor's originating IP address, if available"
4015
  msgstr "آی پی منشا که بیننده از آن ‌عازم شده، در صورت موجود بودن"
4016
 
4017
- #: ../admin/wp-slimstat-admin.php:887
4018
  msgid ""
4019
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4020
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -4027,15 +4000,15 @@ msgstr ""
4027
  "target=\"_blank\" href=\"http://codex.wordpress.org/Conditional_Tags\"> "
4028
  "نشانه های شرطی</a> در صفحه راهنما مراجعه کنید."
4029
 
4030
- #: ../admin/wp-slimstat-admin.php:888
4031
  msgid "Screen Resolution"
4032
  msgstr "ابعاد صفحه نمایش"
4033
 
4034
- #: ../admin/wp-slimstat-admin.php:888
4035
  msgid "viewport width and height (1024x768, 800x600, ...)"
4036
  msgstr "ابعاد صفحه نمایش (۱۰۲۴x۷۶۸، ۸۰۰x۶۰۰، ...)"
4037
 
4038
- #: ../admin/wp-slimstat-admin.php:889
4039
  msgid ""
4040
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4041
  "visitors"
@@ -4043,11 +4016,11 @@ msgstr ""
4043
  "معولا با ترکیب <em>خالی نیست</em> استفاده میشود و بیننده ها (انسان) را تشخیص "
4044
  "میدهد"
4045
 
4046
- #: ../admin/wp-slimstat-admin.php:890
4047
  msgid "Date Filters"
4048
  msgstr "فیلترهای تاریخ"
4049
 
4050
- #: ../admin/wp-slimstat-admin.php:890
4051
  msgid ""
4052
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4053
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -4056,11 +4029,11 @@ msgstr ""
4056
  "با وارد کردن اعداد در این ناحیه میتوانید یک مدت زمانی تعیین کنید؛ برای محدود "
4057
  "کردن سال به روز از -1 استفاده کنید."
4058
 
4059
- #: ../admin/wp-slimstat-admin.php:891
4060
  msgid "SERP Position"
4061
  msgstr "مکان SERP"
4062
 
4063
- #: ../admin/wp-slimstat-admin.php:891
4064
  msgid ""
4065
  "set the filter to Referer contains cd=N&, where N is the position you are "
4066
  "looking for"
@@ -4068,15 +4041,15 @@ msgstr ""
4068
  "تعیین صافی برای ارجاعی هایی که شامل اِن میشوند، آنجا که اِن مکانی هست که به "
4069
  "مشخص میکنید."
4070
 
4071
- #: ../admin/wp-slimstat-admin.php:918
4072
  msgid "Yes"
4073
  msgstr "بلی"
4074
 
4075
- #: ../admin/wp-slimstat-admin.php:919
4076
  msgid "No"
4077
  msgstr "خیر"
4078
 
4079
- #: ../admin/wp-slimstat-admin.php:920
4080
  msgid "Site Specific"
4081
  msgstr ""
4082
 
@@ -4106,1320 +4079,1416 @@ msgid "blackberry os"
4106
  msgstr ""
4107
 
4108
  #: ../languages/dynamic_strings.php:11
4109
- msgid "chromeos"
4110
- msgstr ""
 
4111
 
4112
  #: ../languages/dynamic_strings.php:12
4113
- msgid "cygwin"
4114
  msgstr ""
4115
 
4116
  #: ../languages/dynamic_strings.php:13
4117
- msgid "debian"
4118
  msgstr ""
4119
 
4120
  #: ../languages/dynamic_strings.php:14
4121
- msgid "digital unix"
4122
  msgstr ""
4123
 
4124
  #: ../languages/dynamic_strings.php:15
4125
- msgid "firefoxos"
4126
  msgstr ""
4127
 
4128
  #: ../languages/dynamic_strings.php:16
4129
- msgid "freebsd"
4130
  msgstr ""
4131
 
4132
  #: ../languages/dynamic_strings.php:17
4133
- msgid "hp-ux"
4134
  msgstr ""
4135
 
4136
  #: ../languages/dynamic_strings.php:18
4137
- msgid "ios"
4138
- msgstr "ios"
4139
 
4140
  #: ../languages/dynamic_strings.php:19
4141
- msgid "iphone osx"
4142
  msgstr ""
4143
 
4144
  #: ../languages/dynamic_strings.php:20
4145
- msgid "irix"
4146
  msgstr ""
4147
 
4148
  #: ../languages/dynamic_strings.php:21
4149
- msgid "java"
4150
  msgstr ""
4151
 
4152
  #: ../languages/dynamic_strings.php:22
4153
- msgid "linux"
4154
- msgstr ""
4155
 
4156
  #: ../languages/dynamic_strings.php:23
4157
- msgid "mac"
4158
  msgstr ""
4159
 
4160
  #: ../languages/dynamic_strings.php:24
4161
- msgid "mac68k"
4162
  msgstr ""
4163
 
4164
  #: ../languages/dynamic_strings.php:25
4165
- msgid "macosx"
4166
  msgstr ""
4167
 
4168
  #: ../languages/dynamic_strings.php:26
4169
- msgid "macppc"
4170
  msgstr ""
4171
 
4172
  #: ../languages/dynamic_strings.php:27
4173
- msgid "netbsd"
4174
  msgstr ""
4175
 
4176
  #: ../languages/dynamic_strings.php:28
4177
- msgid "openbsd"
4178
  msgstr ""
4179
 
4180
  #: ../languages/dynamic_strings.php:29
4181
- msgid "openvms"
4182
  msgstr ""
4183
 
4184
  #: ../languages/dynamic_strings.php:30
4185
- msgid "os/2"
4186
  msgstr ""
4187
 
4188
  #: ../languages/dynamic_strings.php:31
4189
- msgid "palm"
4190
  msgstr ""
4191
 
4192
  #: ../languages/dynamic_strings.php:32
4193
- msgid "powertv"
4194
  msgstr ""
4195
 
4196
  #: ../languages/dynamic_strings.php:33
4197
- msgid "rim os"
4198
  msgstr ""
4199
 
4200
  #: ../languages/dynamic_strings.php:34
4201
- msgid "risc os"
4202
  msgstr ""
4203
 
4204
  #: ../languages/dynamic_strings.php:35
4205
- msgid "solaris"
4206
  msgstr ""
4207
 
4208
  #: ../languages/dynamic_strings.php:36
4209
- msgid "sunos"
4210
  msgstr ""
4211
 
4212
  #: ../languages/dynamic_strings.php:37
4213
- msgid "symbianos"
4214
  msgstr ""
4215
 
4216
  #: ../languages/dynamic_strings.php:38
4217
- msgid "ubuntu"
4218
  msgstr ""
4219
 
4220
  #: ../languages/dynamic_strings.php:39
4221
- msgid "unix"
4222
  msgstr ""
4223
 
4224
  #: ../languages/dynamic_strings.php:40
4225
- msgid "unknown"
4226
- msgstr "مجهول"
4227
 
4228
  #: ../languages/dynamic_strings.php:41
4229
- msgid "wap"
4230
  msgstr ""
4231
 
4232
  #: ../languages/dynamic_strings.php:42
4233
- msgid "webos"
4234
  msgstr ""
4235
 
4236
  #: ../languages/dynamic_strings.php:43
4237
- msgid "win10"
4238
  msgstr ""
4239
 
4240
  #: ../languages/dynamic_strings.php:44
4241
- msgid "win16"
4242
  msgstr ""
4243
 
4244
  #: ../languages/dynamic_strings.php:45
4245
- msgid "win2000"
4246
  msgstr ""
4247
 
4248
  #: ../languages/dynamic_strings.php:46
4249
- msgid "win2003"
4250
  msgstr ""
4251
 
4252
  #: ../languages/dynamic_strings.php:47
4253
- msgid "win31"
4254
  msgstr ""
4255
 
4256
  #: ../languages/dynamic_strings.php:48
4257
- msgid "win32"
4258
  msgstr ""
4259
 
4260
- #: ../languages/dynamic_strings.php:49 ../languages/dynamic_strings.php:50
4261
- msgid "win7"
 
 
 
 
4262
  msgstr ""
4263
 
4264
  #: ../languages/dynamic_strings.php:51
4265
- msgid "win8"
4266
  msgstr ""
4267
 
4268
  #: ../languages/dynamic_strings.php:52
4269
- msgid "win8.1"
4270
  msgstr ""
4271
 
4272
  #: ../languages/dynamic_strings.php:53
4273
- msgid "win95"
4274
  msgstr ""
4275
 
4276
  #: ../languages/dynamic_strings.php:54
4277
- msgid "win98"
4278
  msgstr ""
4279
 
4280
  #: ../languages/dynamic_strings.php:55
4281
- msgid "wince"
4282
  msgstr ""
4283
 
4284
  #: ../languages/dynamic_strings.php:56
4285
- msgid "windows phone"
4286
  msgstr ""
4287
 
4288
  #: ../languages/dynamic_strings.php:57
4289
- msgid "winme"
4290
  msgstr ""
4291
 
4292
  #: ../languages/dynamic_strings.php:58
4293
- msgid "winnt"
4294
- msgstr ""
4295
 
4296
  #: ../languages/dynamic_strings.php:59
4297
- msgid "winphone7"
4298
  msgstr ""
4299
 
4300
  #: ../languages/dynamic_strings.php:60
4301
- msgid "winphone7.5"
4302
  msgstr ""
4303
 
4304
  #: ../languages/dynamic_strings.php:61
4305
- msgid "winphone8"
4306
  msgstr ""
4307
 
4308
  #: ../languages/dynamic_strings.php:62
4309
- msgid "winphone8.1"
4310
  msgstr ""
4311
 
4312
  #: ../languages/dynamic_strings.php:63
4313
- msgid "winvista"
4314
  msgstr ""
4315
 
4316
  #: ../languages/dynamic_strings.php:64
4317
- msgid "winxp"
4318
  msgstr ""
4319
 
4320
  #: ../languages/dynamic_strings.php:65
4321
- msgid "wyderos"
4322
  msgstr ""
4323
 
4324
- #: ../languages/dynamic_strings.php:68
4325
- msgid "acrobat"
4326
  msgstr ""
4327
 
4328
- #: ../languages/dynamic_strings.php:69
4329
- msgid "director"
 
 
 
 
4330
  msgstr ""
4331
 
4332
  #: ../languages/dynamic_strings.php:70
4333
- msgid "flash"
4334
  msgstr ""
4335
 
4336
  #: ../languages/dynamic_strings.php:71
4337
- msgid "mediaplayer"
4338
  msgstr ""
4339
 
4340
  #: ../languages/dynamic_strings.php:72
4341
- msgid "quicktime"
4342
  msgstr ""
4343
 
4344
  #: ../languages/dynamic_strings.php:73
4345
- msgid "real"
4346
  msgstr ""
4347
 
4348
  #: ../languages/dynamic_strings.php:74
4349
- msgid "silverlight"
 
 
 
 
 
 
 
 
4350
  msgstr ""
4351
 
4352
  #: ../languages/dynamic_strings.php:77
4353
- msgid "p-and"
4354
  msgstr ""
4355
 
4356
  #: ../languages/dynamic_strings.php:78
4357
- msgid "p-bla"
4358
  msgstr ""
4359
 
4360
  #: ../languages/dynamic_strings.php:79
4361
- msgid "p-chr"
4362
  msgstr ""
4363
 
4364
  #: ../languages/dynamic_strings.php:80
4365
- msgid "p-fir"
4366
  msgstr ""
4367
 
4368
  #: ../languages/dynamic_strings.php:81
4369
- msgid "p-fre"
4370
  msgstr ""
4371
 
4372
  #: ../languages/dynamic_strings.php:82
4373
- msgid "p-ios"
4374
  msgstr ""
4375
 
4376
  #: ../languages/dynamic_strings.php:83
4377
- msgid "p-jav"
4378
  msgstr ""
4379
 
4380
  #: ../languages/dynamic_strings.php:84
4381
- msgid "p-lin"
4382
  msgstr ""
4383
 
4384
  #: ../languages/dynamic_strings.php:85
4385
- msgid "p-mac"
4386
- msgstr ""
4387
-
4388
- #: ../languages/dynamic_strings.php:86
4389
- msgid "p-rim"
4390
- msgstr ""
4391
-
4392
- #: ../languages/dynamic_strings.php:87
4393
- msgid "p-sym"
4394
  msgstr ""
4395
 
4396
  #: ../languages/dynamic_strings.php:88
4397
- msgid "p-ubu"
4398
  msgstr ""
4399
 
4400
  #: ../languages/dynamic_strings.php:89
4401
- msgid "p-unk"
4402
  msgstr ""
4403
 
4404
  #: ../languages/dynamic_strings.php:90
4405
- msgid "p-win"
4406
  msgstr ""
4407
 
4408
- #: ../languages/dynamic_strings.php:93
4409
- msgid "l-af"
4410
  msgstr ""
4411
 
4412
- #: ../languages/dynamic_strings.php:94
4413
- msgid "l-af-za"
4414
  msgstr ""
4415
 
4416
- #: ../languages/dynamic_strings.php:95
4417
- msgid "l-ar"
4418
  msgstr ""
4419
 
4420
- #: ../languages/dynamic_strings.php:96
4421
- msgid "l-ar-ae"
4422
  msgstr ""
4423
 
4424
  #: ../languages/dynamic_strings.php:97
4425
- msgid "l-ar-bh"
4426
  msgstr ""
4427
 
4428
  #: ../languages/dynamic_strings.php:98
4429
- msgid "l-ar-dz"
4430
  msgstr ""
4431
 
4432
  #: ../languages/dynamic_strings.php:99
4433
- msgid "l-ar-eg"
4434
  msgstr ""
4435
 
4436
  #: ../languages/dynamic_strings.php:100
4437
- msgid "l-ar-iq"
4438
  msgstr ""
4439
 
4440
  #: ../languages/dynamic_strings.php:101
4441
- msgid "l-ar-jo"
4442
  msgstr ""
4443
 
4444
  #: ../languages/dynamic_strings.php:102
4445
- msgid "l-ar-kw"
4446
  msgstr ""
4447
 
4448
  #: ../languages/dynamic_strings.php:103
4449
- msgid "l-ar-lb"
4450
  msgstr ""
4451
 
4452
  #: ../languages/dynamic_strings.php:104
4453
- msgid "l-ar-ly"
4454
  msgstr ""
4455
 
4456
  #: ../languages/dynamic_strings.php:105
4457
- msgid "l-ar-ma"
4458
  msgstr ""
4459
 
4460
  #: ../languages/dynamic_strings.php:106
4461
- msgid "l-ar-om"
4462
  msgstr ""
4463
 
4464
  #: ../languages/dynamic_strings.php:107
4465
- msgid "l-ar-qa"
4466
  msgstr ""
4467
 
4468
  #: ../languages/dynamic_strings.php:108
4469
- msgid "l-ar-sa"
4470
  msgstr ""
4471
 
4472
  #: ../languages/dynamic_strings.php:109
4473
- msgid "l-ar-sy"
4474
  msgstr ""
4475
 
4476
  #: ../languages/dynamic_strings.php:110
4477
- msgid "l-ar-tn"
4478
  msgstr ""
4479
 
4480
- #: ../languages/dynamic_strings.php:111
4481
- msgid "l-ar-ye"
4482
  msgstr ""
4483
 
4484
- #: ../languages/dynamic_strings.php:112
4485
- msgid "l-az"
4486
  msgstr ""
4487
 
4488
- #: ../languages/dynamic_strings.php:113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4489
  msgid "l-az-az"
4490
  msgstr ""
4491
 
4492
- #: ../languages/dynamic_strings.php:114
4493
  msgid "l-be"
4494
  msgstr ""
4495
 
4496
- #: ../languages/dynamic_strings.php:115
4497
  msgid "l-be-by"
4498
  msgstr ""
4499
 
4500
- #: ../languages/dynamic_strings.php:116
4501
  msgid "l-bg"
4502
  msgstr ""
4503
 
4504
- #: ../languages/dynamic_strings.php:117
4505
  msgid "l-bg-bg"
4506
  msgstr ""
4507
 
4508
- #: ../languages/dynamic_strings.php:118
4509
  msgid "l-bs-ba"
4510
  msgstr ""
4511
 
4512
- #: ../languages/dynamic_strings.php:119
4513
  msgid "l-ca"
4514
  msgstr ""
4515
 
4516
- #: ../languages/dynamic_strings.php:120
4517
  msgid "l-ca-es"
4518
  msgstr ""
4519
 
4520
- #: ../languages/dynamic_strings.php:121
4521
  msgid "l-cs"
4522
  msgstr ""
4523
 
4524
- #: ../languages/dynamic_strings.php:122
4525
  msgid "l-cs-cz"
4526
  msgstr ""
4527
 
4528
- #: ../languages/dynamic_strings.php:123
4529
  msgid "l-cy"
4530
  msgstr ""
4531
 
4532
- #: ../languages/dynamic_strings.php:124
4533
  msgid "l-cy-gb"
4534
  msgstr ""
4535
 
4536
- #: ../languages/dynamic_strings.php:125
4537
  msgid "l-da"
4538
  msgstr ""
4539
 
4540
- #: ../languages/dynamic_strings.php:126
4541
  msgid "l-da-dk"
4542
  msgstr ""
4543
 
4544
- #: ../languages/dynamic_strings.php:127
4545
  msgid "l-de"
4546
  msgstr ""
4547
 
4548
- #: ../languages/dynamic_strings.php:128
4549
  msgid "l-de-at"
4550
  msgstr ""
4551
 
4552
- #: ../languages/dynamic_strings.php:129
4553
  msgid "l-de-ch"
4554
  msgstr ""
4555
 
4556
- #: ../languages/dynamic_strings.php:130
4557
  msgid "l-de-de"
4558
  msgstr ""
4559
 
4560
- #: ../languages/dynamic_strings.php:131
4561
  msgid "l-de-li"
4562
  msgstr ""
4563
 
4564
- #: ../languages/dynamic_strings.php:132
4565
  msgid "l-de-lu"
4566
  msgstr ""
4567
 
4568
- #: ../languages/dynamic_strings.php:133
4569
  msgid "l-dv"
4570
  msgstr ""
4571
 
4572
- #: ../languages/dynamic_strings.php:134
4573
  msgid "l-dv-mv"
4574
  msgstr ""
4575
 
4576
- #: ../languages/dynamic_strings.php:135
4577
  msgid "l-el"
4578
  msgstr ""
4579
 
4580
- #: ../languages/dynamic_strings.php:136
4581
  msgid "l-el-gr"
4582
  msgstr ""
4583
 
4584
- #: ../languages/dynamic_strings.php:137
4585
  msgid "l-en"
4586
  msgstr ""
4587
 
4588
- #: ../languages/dynamic_strings.php:138
4589
  msgid "l-en-au"
4590
  msgstr ""
4591
 
4592
- #: ../languages/dynamic_strings.php:139
4593
  msgid "l-en-bz"
4594
  msgstr ""
4595
 
4596
- #: ../languages/dynamic_strings.php:140
4597
  msgid "l-en-ca"
4598
  msgstr ""
4599
 
4600
- #: ../languages/dynamic_strings.php:141
4601
  msgid "l-en-cb"
4602
  msgstr ""
4603
 
4604
- #: ../languages/dynamic_strings.php:142
4605
  msgid "l-en-gb"
4606
  msgstr ""
4607
 
4608
- #: ../languages/dynamic_strings.php:143
4609
  msgid "l-en-ie"
4610
  msgstr ""
4611
 
4612
- #: ../languages/dynamic_strings.php:144
4613
  msgid "l-en-jm"
4614
  msgstr ""
4615
 
4616
- #: ../languages/dynamic_strings.php:145
4617
  msgid "l-en-nz"
4618
  msgstr ""
4619
 
4620
- #: ../languages/dynamic_strings.php:146
4621
  msgid "l-en-ph"
4622
  msgstr ""
4623
 
4624
- #: ../languages/dynamic_strings.php:147
4625
  msgid "l-en-tt"
4626
  msgstr ""
4627
 
4628
- #: ../languages/dynamic_strings.php:148
4629
  msgid "l-en-us"
4630
  msgstr ""
4631
 
4632
- #: ../languages/dynamic_strings.php:149
4633
  msgid "l-en-za"
4634
  msgstr ""
4635
 
4636
- #: ../languages/dynamic_strings.php:150
4637
  msgid "l-en-zw"
4638
  msgstr ""
4639
 
4640
- #: ../languages/dynamic_strings.php:151
4641
  msgid "l-eo"
4642
  msgstr ""
4643
 
4644
- #: ../languages/dynamic_strings.php:152
4645
  msgid "l-es"
4646
  msgstr ""
4647
 
4648
- #: ../languages/dynamic_strings.php:153
4649
  msgid "l-es-ar"
4650
  msgstr ""
4651
 
4652
- #: ../languages/dynamic_strings.php:154
4653
  msgid "l-es-bo"
4654
  msgstr ""
4655
 
4656
- #: ../languages/dynamic_strings.php:155
4657
  msgid "l-es-cl"
4658
  msgstr ""
4659
 
4660
- #: ../languages/dynamic_strings.php:156
4661
  msgid "l-es-co"
4662
  msgstr ""
4663
 
4664
- #: ../languages/dynamic_strings.php:157
4665
  msgid "l-es-cr"
4666
  msgstr ""
4667
 
4668
- #: ../languages/dynamic_strings.php:158
4669
  msgid "l-es-do"
4670
  msgstr ""
4671
 
4672
- #: ../languages/dynamic_strings.php:159
4673
  msgid "l-es-ec"
4674
  msgstr ""
4675
 
4676
- #: ../languages/dynamic_strings.php:160
4677
  msgid "l-es-es"
4678
  msgstr ""
4679
 
4680
- #: ../languages/dynamic_strings.php:161
4681
  msgid "l-es-gt"
4682
  msgstr ""
4683
 
4684
- #: ../languages/dynamic_strings.php:162
4685
  msgid "l-es-hn"
4686
  msgstr ""
4687
 
4688
- #: ../languages/dynamic_strings.php:163
4689
  msgid "l-es-mx"
4690
  msgstr ""
4691
 
4692
- #: ../languages/dynamic_strings.php:164
4693
  msgid "l-es-ni"
4694
  msgstr ""
4695
 
4696
- #: ../languages/dynamic_strings.php:165
4697
  msgid "l-es-pa"
4698
  msgstr ""
4699
 
4700
- #: ../languages/dynamic_strings.php:166
4701
  msgid "l-es-pe"
4702
  msgstr ""
4703
 
4704
- #: ../languages/dynamic_strings.php:167
4705
  msgid "l-es-pr"
4706
  msgstr ""
4707
 
4708
- #: ../languages/dynamic_strings.php:168
4709
  msgid "l-es-py"
4710
  msgstr ""
4711
 
4712
- #: ../languages/dynamic_strings.php:169
4713
  msgid "l-es-sv"
4714
  msgstr ""
4715
 
4716
- #: ../languages/dynamic_strings.php:170
4717
  msgid "l-es-uy"
4718
  msgstr ""
4719
 
4720
- #: ../languages/dynamic_strings.php:171
4721
  msgid "l-es-ve"
4722
  msgstr ""
4723
 
4724
- #: ../languages/dynamic_strings.php:172
4725
  msgid "l-et"
4726
  msgstr ""
4727
 
4728
- #: ../languages/dynamic_strings.php:173
4729
  msgid "l-et-ee"
4730
  msgstr ""
4731
 
4732
- #: ../languages/dynamic_strings.php:174
4733
  msgid "l-eu"
4734
  msgstr ""
4735
 
4736
- #: ../languages/dynamic_strings.php:175
4737
  msgid "l-eu-es"
4738
  msgstr ""
4739
 
4740
- #: ../languages/dynamic_strings.php:176
4741
  msgid "l-fa"
4742
  msgstr ""
4743
 
4744
- #: ../languages/dynamic_strings.php:177
4745
  msgid "l-fa-ir"
4746
  msgstr ""
4747
 
4748
- #: ../languages/dynamic_strings.php:178
4749
  msgid "l-fi"
4750
  msgstr ""
4751
 
4752
- #: ../languages/dynamic_strings.php:179
4753
  msgid "l-fi-fi"
4754
  msgstr ""
4755
 
4756
- #: ../languages/dynamic_strings.php:180
4757
  msgid "l-fo"
4758
  msgstr ""
4759
 
4760
- #: ../languages/dynamic_strings.php:181
4761
  msgid "l-fo-fo"
4762
  msgstr ""
4763
 
4764
- #: ../languages/dynamic_strings.php:182
4765
  msgid "l-fr"
4766
  msgstr ""
4767
 
4768
- #: ../languages/dynamic_strings.php:183
4769
  msgid "l-fr-be"
4770
  msgstr ""
4771
 
4772
- #: ../languages/dynamic_strings.php:184
4773
  msgid "l-fr-ca"
4774
  msgstr ""
4775
 
4776
- #: ../languages/dynamic_strings.php:185
4777
  msgid "l-fr-ch"
4778
  msgstr ""
4779
 
4780
- #: ../languages/dynamic_strings.php:186
4781
  msgid "l-fr-fr"
4782
  msgstr ""
4783
 
4784
- #: ../languages/dynamic_strings.php:187
4785
  msgid "l-fr-lu"
4786
  msgstr ""
4787
 
4788
- #: ../languages/dynamic_strings.php:188
4789
  msgid "l-fr-mc"
4790
  msgstr ""
4791
 
4792
- #: ../languages/dynamic_strings.php:189
4793
  msgid "l-gl"
4794
  msgstr ""
4795
 
4796
- #: ../languages/dynamic_strings.php:190
4797
  msgid "l-gl-es"
4798
  msgstr ""
4799
 
4800
- #: ../languages/dynamic_strings.php:191
4801
  msgid "l-gu"
4802
  msgstr ""
4803
 
4804
- #: ../languages/dynamic_strings.php:192
4805
  msgid "l-gu-in"
4806
  msgstr ""
4807
 
4808
- #: ../languages/dynamic_strings.php:193
4809
  msgid "l-he"
4810
  msgstr ""
4811
 
4812
- #: ../languages/dynamic_strings.php:194
4813
  msgid "l-he-il"
4814
  msgstr ""
4815
 
4816
- #: ../languages/dynamic_strings.php:195
4817
  msgid "l-hi"
4818
  msgstr ""
4819
 
4820
- #: ../languages/dynamic_strings.php:196
4821
  msgid "l-hi-in"
4822
  msgstr ""
4823
 
4824
- #: ../languages/dynamic_strings.php:197
4825
  msgid "l-hr"
4826
  msgstr ""
4827
 
4828
- #: ../languages/dynamic_strings.php:198
4829
  msgid "l-hr-ba"
4830
  msgstr ""
4831
 
4832
- #: ../languages/dynamic_strings.php:199
4833
  msgid "l-hr-hr"
4834
  msgstr ""
4835
 
4836
- #: ../languages/dynamic_strings.php:200
4837
  msgid "l-hu"
4838
  msgstr ""
4839
 
4840
- #: ../languages/dynamic_strings.php:201
4841
  msgid "l-hu-hu"
4842
  msgstr ""
4843
 
4844
- #: ../languages/dynamic_strings.php:202
4845
  msgid "l-hy"
4846
  msgstr ""
4847
 
4848
- #: ../languages/dynamic_strings.php:203
4849
  msgid "l-hy-am"
4850
  msgstr ""
4851
 
4852
- #: ../languages/dynamic_strings.php:204
4853
  msgid "l-id"
4854
  msgstr ""
4855
 
4856
- #: ../languages/dynamic_strings.php:205
4857
  msgid "l-id-id"
4858
  msgstr ""
4859
 
4860
- #: ../languages/dynamic_strings.php:206
4861
  msgid "l-is"
4862
  msgstr ""
4863
 
4864
- #: ../languages/dynamic_strings.php:207
4865
  msgid "l-is-is"
4866
  msgstr ""
4867
 
4868
- #: ../languages/dynamic_strings.php:208
4869
  msgid "l-it"
4870
  msgstr ""
4871
 
4872
- #: ../languages/dynamic_strings.php:209
4873
  msgid "l-it-ch"
4874
  msgstr ""
4875
 
4876
- #: ../languages/dynamic_strings.php:210
4877
  msgid "l-it-it"
4878
  msgstr ""
4879
 
4880
- #: ../languages/dynamic_strings.php:211
4881
  msgid "l-ja"
4882
  msgstr ""
4883
 
4884
- #: ../languages/dynamic_strings.php:212
4885
  msgid "l-ja-jp"
4886
  msgstr ""
4887
 
4888
- #: ../languages/dynamic_strings.php:213
4889
  msgid "l-ka"
4890
  msgstr ""
4891
 
4892
- #: ../languages/dynamic_strings.php:214
4893
  msgid "l-ka-ge"
4894
  msgstr ""
4895
 
4896
- #: ../languages/dynamic_strings.php:215
4897
  msgid "l-kk"
4898
  msgstr ""
4899
 
4900
- #: ../languages/dynamic_strings.php:216
4901
  msgid "l-kk-kz"
4902
  msgstr ""
4903
 
4904
- #: ../languages/dynamic_strings.php:217
4905
  msgid "l-kn"
4906
  msgstr ""
4907
 
4908
- #: ../languages/dynamic_strings.php:218
4909
  msgid "l-kn-in"
4910
  msgstr ""
4911
 
4912
- #: ../languages/dynamic_strings.php:219
4913
  msgid "l-ko"
4914
  msgstr ""
4915
 
4916
- #: ../languages/dynamic_strings.php:220
4917
  msgid "l-ko-kr"
4918
  msgstr ""
4919
 
4920
- #: ../languages/dynamic_strings.php:221
4921
  msgid "l-kok"
4922
  msgstr ""
4923
 
4924
- #: ../languages/dynamic_strings.php:222
4925
  msgid "l-kok-in"
4926
  msgstr ""
4927
 
4928
- #: ../languages/dynamic_strings.php:223
4929
  msgid "l-ky"
4930
  msgstr ""
4931
 
4932
- #: ../languages/dynamic_strings.php:224
4933
  msgid "l-ky-kg"
4934
  msgstr ""
4935
 
4936
- #: ../languages/dynamic_strings.php:225
4937
  msgid "l-lt"
4938
  msgstr ""
4939
 
4940
- #: ../languages/dynamic_strings.php:226
4941
  msgid "l-lt-lt"
4942
  msgstr ""
4943
 
4944
- #: ../languages/dynamic_strings.php:227
4945
  msgid "l-lv"
4946
  msgstr ""
4947
 
4948
- #: ../languages/dynamic_strings.php:228
4949
  msgid "l-lv-lv"
4950
  msgstr ""
4951
 
4952
- #: ../languages/dynamic_strings.php:229
4953
  msgid "l-mi"
4954
  msgstr ""
4955
 
4956
- #: ../languages/dynamic_strings.php:230
4957
  msgid "l-mi-nz"
4958
  msgstr ""
4959
 
4960
- #: ../languages/dynamic_strings.php:231
4961
  msgid "l-mk"
4962
  msgstr ""
4963
 
4964
- #: ../languages/dynamic_strings.php:232
4965
  msgid "l-mk-ml"
4966
  msgstr ""
4967
 
4968
- #: ../languages/dynamic_strings.php:233
4969
  msgid "l-mn"
4970
  msgstr ""
4971
 
4972
- #: ../languages/dynamic_strings.php:234
4973
  msgid "l-mn-mn"
4974
  msgstr ""
4975
 
4976
- #: ../languages/dynamic_strings.php:235
4977
  msgid "l-mr"
4978
  msgstr ""
4979
 
4980
- #: ../languages/dynamic_strings.php:236
4981
  msgid "l-mr-in"
4982
  msgstr ""
4983
 
4984
- #: ../languages/dynamic_strings.php:237
4985
  msgid "l-ms"
4986
  msgstr ""
4987
 
4988
- #: ../languages/dynamic_strings.php:238
4989
  msgid "l-ms-bn"
4990
  msgstr ""
4991
 
4992
- #: ../languages/dynamic_strings.php:239
4993
  msgid "l-ms-my"
4994
  msgstr ""
4995
 
4996
- #: ../languages/dynamic_strings.php:240
4997
  msgid "l-mt"
4998
  msgstr ""
4999
 
5000
- #: ../languages/dynamic_strings.php:241
5001
  msgid "l-mt-mt"
5002
  msgstr ""
5003
 
5004
- #: ../languages/dynamic_strings.php:242
5005
  msgid "l-nb"
5006
  msgstr ""
5007
 
5008
- #: ../languages/dynamic_strings.php:243
5009
  msgid "l-nb-no"
5010
  msgstr ""
5011
 
5012
- #: ../languages/dynamic_strings.php:244
5013
  msgid "l-nl"
5014
  msgstr ""
5015
 
5016
- #: ../languages/dynamic_strings.php:245
5017
  msgid "l-nl-be"
5018
  msgstr ""
5019
 
5020
- #: ../languages/dynamic_strings.php:246
5021
  msgid "l-nl-nl"
5022
  msgstr ""
5023
 
5024
- #: ../languages/dynamic_strings.php:247
5025
  msgid "l-nn-no"
5026
  msgstr ""
5027
 
5028
- #: ../languages/dynamic_strings.php:248
5029
  msgid "l-ns"
5030
  msgstr ""
5031
 
5032
- #: ../languages/dynamic_strings.php:249
5033
  msgid "l-ns-za"
5034
  msgstr ""
5035
 
5036
- #: ../languages/dynamic_strings.php:250
5037
  msgid "l-pa"
5038
  msgstr ""
5039
 
5040
- #: ../languages/dynamic_strings.php:251
5041
  msgid "l-pa-in"
5042
  msgstr ""
5043
 
5044
- #: ../languages/dynamic_strings.php:252
5045
  msgid "l-pl"
5046
  msgstr ""
5047
 
5048
- #: ../languages/dynamic_strings.php:253
5049
  msgid "l-pl-pl"
5050
  msgstr ""
5051
 
5052
- #: ../languages/dynamic_strings.php:254
5053
  msgid "l-ps"
5054
  msgstr ""
5055
 
5056
- #: ../languages/dynamic_strings.php:255
5057
  msgid "l-ps-ar"
5058
  msgstr ""
5059
 
5060
- #: ../languages/dynamic_strings.php:256
5061
  msgid "l-pt"
5062
  msgstr ""
5063
 
5064
- #: ../languages/dynamic_strings.php:257
5065
  msgid "l-pt-br"
5066
  msgstr ""
5067
 
5068
- #: ../languages/dynamic_strings.php:258
5069
  msgid "l-pt-pt"
5070
  msgstr ""
5071
 
5072
- #: ../languages/dynamic_strings.php:259
5073
  msgid "l-qu"
5074
  msgstr ""
5075
 
5076
- #: ../languages/dynamic_strings.php:260
5077
  msgid "l-qu-bo"
5078
  msgstr ""
5079
 
5080
- #: ../languages/dynamic_strings.php:261
5081
  msgid "l-qu-ec"
5082
  msgstr ""
5083
 
5084
- #: ../languages/dynamic_strings.php:262
5085
  msgid "l-qu-pe"
5086
  msgstr ""
5087
 
5088
- #: ../languages/dynamic_strings.php:263
5089
  msgid "l-ro"
5090
  msgstr ""
5091
 
5092
- #: ../languages/dynamic_strings.php:264
5093
  msgid "l-ro-ro"
5094
  msgstr ""
5095
 
5096
- #: ../languages/dynamic_strings.php:265
5097
  msgid "l-ru"
5098
  msgstr ""
5099
 
5100
- #: ../languages/dynamic_strings.php:266
5101
  msgid "l-ru-ru"
5102
  msgstr ""
5103
 
5104
- #: ../languages/dynamic_strings.php:267
5105
  msgid "l-sa"
5106
  msgstr ""
5107
 
5108
- #: ../languages/dynamic_strings.php:268
5109
  msgid "l-sa-in"
5110
  msgstr ""
5111
 
5112
- #: ../languages/dynamic_strings.php:269
5113
  msgid "l-se"
5114
  msgstr ""
5115
 
5116
- #: ../languages/dynamic_strings.php:270
5117
  msgid "l-se-fi"
5118
  msgstr ""
5119
 
5120
- #: ../languages/dynamic_strings.php:271
5121
  msgid "l-se-no"
5122
  msgstr ""
5123
 
5124
- #: ../languages/dynamic_strings.php:272
5125
  msgid "l-se-se"
5126
  msgstr ""
5127
 
5128
- #: ../languages/dynamic_strings.php:273
5129
  msgid "l-sk"
5130
  msgstr ""
5131
 
5132
- #: ../languages/dynamic_strings.php:274
5133
  msgid "l-sk-sk"
5134
  msgstr ""
5135
 
5136
- #: ../languages/dynamic_strings.php:275
5137
  msgid "l-sl"
5138
  msgstr ""
5139
 
5140
- #: ../languages/dynamic_strings.php:276
5141
  msgid "l-sl-si"
5142
  msgstr ""
5143
 
5144
- #: ../languages/dynamic_strings.php:277
5145
  msgid "l-sq"
5146
  msgstr ""
5147
 
5148
- #: ../languages/dynamic_strings.php:278
5149
  msgid "l-sq-al"
5150
  msgstr ""
5151
 
5152
- #: ../languages/dynamic_strings.php:279
5153
  msgid "l-sr-ba"
5154
  msgstr ""
5155
 
5156
- #: ../languages/dynamic_strings.php:280
5157
  msgid "l-sr-sp"
5158
  msgstr ""
5159
 
5160
- #: ../languages/dynamic_strings.php:281
5161
  msgid "l-sv"
5162
  msgstr ""
5163
 
5164
- #: ../languages/dynamic_strings.php:282
5165
  msgid "l-sv-fi"
5166
  msgstr ""
5167
 
5168
- #: ../languages/dynamic_strings.php:283
5169
  msgid "l-sv-se"
5170
  msgstr ""
5171
 
5172
- #: ../languages/dynamic_strings.php:284
5173
  msgid "l-sw"
5174
  msgstr ""
5175
 
5176
- #: ../languages/dynamic_strings.php:285
5177
  msgid "l-sw-ke"
5178
  msgstr ""
5179
 
5180
- #: ../languages/dynamic_strings.php:286
5181
  msgid "l-ta"
5182
  msgstr ""
5183
 
5184
- #: ../languages/dynamic_strings.php:287
5185
  msgid "l-ta-in"
5186
  msgstr ""
5187
 
5188
- #: ../languages/dynamic_strings.php:288
5189
  msgid "l-te"
5190
  msgstr ""
5191
 
5192
- #: ../languages/dynamic_strings.php:289
5193
  msgid "l-te-in"
5194
  msgstr ""
5195
 
5196
- #: ../languages/dynamic_strings.php:290
5197
  msgid "l-th"
5198
  msgstr ""
5199
 
5200
- #: ../languages/dynamic_strings.php:291
5201
  msgid "l-th-th"
5202
  msgstr ""
5203
 
5204
- #: ../languages/dynamic_strings.php:292
5205
  msgid "l-tl"
5206
  msgstr ""
5207
 
5208
- #: ../languages/dynamic_strings.php:293
5209
  msgid "l-tl-ph"
5210
  msgstr ""
5211
 
5212
- #: ../languages/dynamic_strings.php:294
5213
  msgid "l-tn"
5214
  msgstr ""
5215
 
5216
- #: ../languages/dynamic_strings.php:295
5217
  msgid "l-tn-za"
5218
  msgstr ""
5219
 
5220
- #: ../languages/dynamic_strings.php:296
5221
  msgid "l-tr"
5222
  msgstr ""
5223
 
5224
- #: ../languages/dynamic_strings.php:297
5225
  msgid "l-tr-tr"
5226
  msgstr ""
5227
 
5228
- #: ../languages/dynamic_strings.php:298
5229
  msgid "l-tt"
5230
  msgstr ""
5231
 
5232
- #: ../languages/dynamic_strings.php:299
5233
  msgid "l-tt-ru"
5234
  msgstr ""
5235
 
5236
- #: ../languages/dynamic_strings.php:300
5237
  msgid "l-ts"
5238
  msgstr ""
5239
 
5240
- #: ../languages/dynamic_strings.php:301
5241
  msgid "l-uk"
5242
  msgstr ""
5243
 
5244
- #: ../languages/dynamic_strings.php:302
5245
  msgid "l-uk-ua"
5246
  msgstr ""
5247
 
5248
- #: ../languages/dynamic_strings.php:303
5249
  msgid "l-ur"
5250
  msgstr ""
5251
 
5252
- #: ../languages/dynamic_strings.php:304
5253
  msgid "l-ur-pk"
5254
  msgstr ""
5255
 
5256
- #: ../languages/dynamic_strings.php:305
5257
  msgid "l-uz"
5258
  msgstr ""
5259
 
5260
- #: ../languages/dynamic_strings.php:306
5261
  msgid "l-uz-uz"
5262
  msgstr ""
5263
 
5264
- #: ../languages/dynamic_strings.php:307
5265
  msgid "l-vi"
5266
  msgstr ""
5267
 
5268
- #: ../languages/dynamic_strings.php:308
5269
  msgid "l-vi-vn"
5270
  msgstr ""
5271
 
5272
- #: ../languages/dynamic_strings.php:309
5273
  msgid "l-xh"
5274
  msgstr ""
5275
 
5276
- #: ../languages/dynamic_strings.php:310
5277
  msgid "l-xh-za"
5278
  msgstr ""
5279
 
5280
- #: ../languages/dynamic_strings.php:311
5281
  msgid "l-zh"
5282
  msgstr ""
5283
 
5284
- #: ../languages/dynamic_strings.php:312
5285
  msgid "l-zh-cn"
5286
  msgstr ""
5287
 
5288
- #: ../languages/dynamic_strings.php:313
5289
  msgid "l-zh-hk"
5290
  msgstr ""
5291
 
5292
- #: ../languages/dynamic_strings.php:314
5293
  msgid "l-zh-mo"
5294
  msgstr ""
5295
 
5296
- #: ../languages/dynamic_strings.php:315
5297
  msgid "l-zh-sg"
5298
  msgstr ""
5299
 
5300
- #: ../languages/dynamic_strings.php:316
5301
  msgid "l-zh-tw"
5302
  msgstr ""
5303
 
5304
- #: ../languages/dynamic_strings.php:317
5305
  msgid "l-zu"
5306
  msgstr ""
5307
 
5308
- #: ../languages/dynamic_strings.php:318
5309
  msgid "l-zu-za"
5310
  msgstr ""
5311
 
5312
- #: ../languages/dynamic_strings.php:320
5313
  msgid "l-empty"
5314
  msgstr "ناشناخته"
5315
 
5316
- #: ../languages/dynamic_strings.php:321
5317
  msgid "l-xx"
5318
  msgstr ""
5319
 
5320
- #: ../languages/dynamic_strings.php:323
5321
  msgid "c-xy"
5322
  msgstr "آدرس محلی"
5323
 
5324
- #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5325
  msgid "Notice: Pageview filtered by third-party code"
5326
  msgstr ""
5327
 
5328
- #: ../wp-slimstat.php:240
5329
  #, fuzzy, php-format
5330
  msgid "Error: Malformed URL %s"
5331
  msgstr "کاربران را نادیده بگیر"
5332
 
5333
- #: ../wp-slimstat.php:259
5334
  #, php-format
5335
  msgid "Notice: Referrer %s is blacklisted"
5336
  msgstr ""
5337
 
5338
- #: ../wp-slimstat.php:347
5339
  #, php-format
5340
  msgid "Notice: Permalink %s is blacklisted"
5341
  msgstr ""
5342
 
5343
- #: ../wp-slimstat.php:358
5344
  msgid "Error: Empty or not supported IP address format (IPv6)"
5345
  msgstr ""
5346
 
5347
- #: ../wp-slimstat.php:367
5348
  #, php-format
5349
  msgid "Notice: Logged in user %s not tracked"
5350
  msgstr ""
5351
 
5352
- #: ../wp-slimstat.php:375
5353
  #, php-format
5354
  msgid "Notice: User with capability %s not tracked"
5355
  msgstr ""
5356
 
5357
- #: ../wp-slimstat.php:385
5358
  #, php-format
5359
  msgid "Notice: User %s is blacklisted"
5360
  msgstr ""
5361
 
5362
- #: ../wp-slimstat.php:406
5363
  #, fuzzy, php-format
5364
  msgid "Notice: Spammer %s not tracked"
5365
  msgstr "روبات یا خزنده"
5366
 
5367
- #: ../wp-slimstat.php:435
5368
  #, php-format
5369
  msgid "Notice: IP address %s is blacklisted"
5370
  msgstr ""
5371
 
5372
- #: ../wp-slimstat.php:464
5373
  #, php-format
5374
  msgid "Notice: Country %s is blacklisted"
5375
  msgstr ""
5376
 
5377
- #: ../wp-slimstat.php:473
5378
  #, fuzzy
5379
  msgid "Notice: Prefetch requests are ignored"
5380
  msgstr "نادیده گرفتن درخواست صفحه‌بندی"
5381
 
5382
- #: ../wp-slimstat.php:489
5383
  #, fuzzy
5384
  msgid "Notice: Bot not tracked"
5385
  msgstr "روبات یا خزنده"
5386
 
5387
- #: ../wp-slimstat.php:498
5388
  #, php-format
5389
  msgid "Notice: Browser %s is blacklisted"
5390
  msgstr ""
5391
 
5392
- #: ../wp-slimstat.php:528
5393
  msgid "Error:"
5394
  msgstr ""
5395
 
5396
- #: ../wp-slimstat.php:1209
5397
  msgid "Invalid payload string. Try clearing your WordPress cache."
5398
  msgstr ""
5399
 
5400
- #: ../wp-slimstat.php:1219
5401
  msgid "Invalid data signature. Try clearing your WordPress cache."
5402
  msgstr ""
5403
 
5404
- #: ../wp-slimstat.php:1289
5405
  #, fuzzy
5406
  msgid "There was an error downloading the MaxMind Geolite DB:"
5407
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5408
 
5409
- #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5410
  #, fuzzy
5411
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5412
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5413
 
5414
- #: ../wp-slimstat.php:1301
5415
  msgid "Function gzopen not defined. Aborting."
5416
  msgstr ""
5417
 
5418
- #: ../wp-slimstat.php:1311
5419
  #, fuzzy
5420
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5421
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5423
  #~ msgid "Ignore users (username not found)"
5424
  #~ msgstr "نادیده گرفتن کاربر(شناسه کاربر یافت نشد)"
5425
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2016-01-28 21:32-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: Salman <salmanmp@gmail.com>\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../admin/config/index.php:33
20
  msgid ""
21
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
22
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
25
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
26
  "مراجعه کنید."
27
 
28
+ #: ../admin/config/index.php:48
29
  msgid "Read access: username not found"
30
  msgstr "دست‌رسی خواندن: شناسه کاربری یافت نشد"
31
 
32
+ #: ../admin/config/index.php:58 ../admin/config/index.php:83
33
  msgid ""
34
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
35
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
39
  "wordpress.org/Roles_and_Capabilities\" target=\"_new\"> نقش و توانایی</a> "
40
  "مراجعه کنید."
41
 
42
+ #: ../admin/config/index.php:73
43
  msgid "Config access: username not found"
44
  msgstr "دست‌رسی پیکربندی: شناسه کاربری یافت نشد"
45
 
46
+ #: ../admin/config/index.php:92
47
  msgid "Basic"
48
  msgstr ""
49
 
50
+ #: ../admin/config/index.php:94 ../admin/config/index.php:115
51
  msgid "Tracker"
52
  msgstr "ره‌گیری"
53
 
54
+ #: ../admin/config/index.php:95
55
  msgid "Enable Tracking"
56
  msgstr "فعال‌سازی رد‌گیری"
57
 
58
+ #: ../admin/config/index.php:95
59
  #, fuzzy
60
  msgid "Turn the tracker on or off, while keeping the reports accessible."
61
  msgstr ""
62
  "رهگیری را روشن و یا خاموش میکند ولی گزارش ها در دسترس خواهد بود که در صورت "
63
  "غیر فعال کردن افزونه بدین گونه نخواهد بود."
64
 
65
+ #: ../admin/config/index.php:96
66
  msgid "Tracking Mode"
67
  msgstr " حالت ردگیری"
68
 
69
+ #: ../admin/config/index.php:96
70
  #, fuzzy
71
  msgid ""
72
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
81
  "پذیرفته نمیشود. اثر جانبی این حالت این است که بیشتر هرز ها، موتورهای جستجو و "
82
  "دیگر خزنده ها نیز دیگر رهگیری نمیشوند."
83
 
84
+ #: ../admin/config/index.php:96
85
  msgid "Client Side"
86
  msgstr ""
87
 
88
+ #: ../admin/config/index.php:96
89
  #, fuzzy
90
  msgid "Server Side"
91
  msgstr "طرف دامنه"
92
 
93
+ #: ../admin/config/index.php:97
94
  msgid "Stealth Mode"
95
  msgstr ""
96
 
97
+ #: ../admin/config/index.php:97
98
  msgid ""
99
  "Do not add the javascript tracking code to your pages, if tracking mode is "
100
  "set to Server. Please note: if enabled, this will prevent the tracker from "
101
  "collecting information such as screen resolution, outbound links, downloads, "
102
+ "etc. This option is ignored if Tracking Mode is set to Client."
103
  msgstr ""
104
 
105
+ #: ../admin/config/index.php:97 ../admin/view/wp-slimstat-reports.php:1368
106
  msgid "Off"
107
  msgstr ""
108
 
109
+ #: ../admin/config/index.php:97
110
  msgid "On"
111
  msgstr ""
112
 
113
+ #: ../admin/config/index.php:98
114
  #, fuzzy
115
  msgid "Admin Pages"
116
  msgstr "نظارت صفحه مدیریت"
117
 
118
+ #: ../admin/config/index.php:98
119
  msgid "Enable this option to track your users' activity within the admin."
120
  msgstr "برای رهگیری کاربران در ناحیه مدیریتی ین گزینه را فعال کنید."
121
 
122
+ #: ../admin/config/index.php:98
123
  #, fuzzy
124
  msgid "Track"
125
  msgstr "ره‌گیری"
126
 
127
+ #: ../admin/config/index.php:98
128
  #, fuzzy
129
  msgid "Do not track"
130
  msgstr "ناشامل"
131
 
132
+ #: ../admin/config/index.php:100
133
  msgid "WordPress Integration"
134
  msgstr "تلفیق کردن وردپرس"
135
 
136
+ #: ../admin/config/index.php:101
137
  msgid "Menu Position"
138
  msgstr "محل گزینگان"
139
 
140
+ #: ../admin/config/index.php:101
141
  #, fuzzy
142
  msgid ""
143
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
144
  "admin bar (if visible)."
145
  msgstr "بین گزینگان مدیریتی ثابت و یا گزینگان مدیریتی ابشاری انتخاب کنید."
146
 
147
+ #: ../admin/config/index.php:101
148
  msgid "Side Menu"
149
  msgstr "گزینگان کناره"
150
 
151
+ #: ../admin/config/index.php:101
152
  msgid "Admin Bar"
153
  msgstr " منوی مدیریت"
154
 
155
+ #: ../admin/config/index.php:102
156
  #, fuzzy
157
  msgid "Posts and Pages"
158
  msgstr "یک ستون به نوشته‌ها اضافه کن"
159
 
160
+ #: ../admin/config/index.php:102
161
  #, fuzzy
162
  msgid ""
163
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
166
  "یک ستون جدید به صفحه «ویرایش ارسال» اضافه می‌کند، که شامل تعداد بازدید برای "
167
  "هر ارسال میباشد (ممکن است مدت تحویل را زیاد کند)"
168
 
169
+ #: ../admin/config/index.php:103
170
  msgid "Report Interval"
171
  msgstr ""
172
 
173
+ #: ../admin/config/index.php:103
174
  msgid ""
175
  "Enter the time range, in days, that should be used to calculate the value "
176
  "here above."
177
  msgstr ""
178
 
179
+ #: ../admin/config/index.php:104
180
  #, fuzzy
181
  msgid "Report Type"
182
  msgstr "گزارش ها"
183
 
184
+ #: ../admin/config/index.php:104
185
  msgid ""
186
  "Select what kind of information you would like to see displayed on the Posts "
187
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
188
  "IPs consider only one hit per user in the given time range."
189
  msgstr ""
190
 
191
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:81
192
+ #: ../admin/view/wp-slimstat-reports.php:90
193
+ #: ../admin/view/wp-slimstat-reports.php:1384
194
+ #: ../admin/view/wp-slimstat-reports.php:1542
195
  msgid "Pageviews"
196
  msgstr "مشاهدات صفحات"
197
 
198
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:91
199
+ #: ../admin/view/wp-slimstat-reports.php:284
200
+ #: ../admin/view/wp-slimstat-reports.php:525
201
+ #: ../admin/view/wp-slimstat-reports.php:1399
202
+ #: ../admin/view/wp-slimstat-reports.php:1444
203
  msgid "Unique IPs"
204
  msgstr "آی‌پی‌های یکتا"
205
 
206
+ #: ../admin/config/index.php:105
207
  msgid "Dashboard Widgets"
208
  msgstr ""
209
 
210
+ #: ../admin/config/index.php:105
211
  msgid ""
212
  "Choose if you want to have the most important reports on your WordPress "
213
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
214
  msgstr ""
215
 
216
+ #: ../admin/config/index.php:106
217
  #, fuzzy
218
  msgid "Hide Add-ons"
219
  msgstr "افزونه ها"
220
 
221
+ #: ../admin/config/index.php:106
222
  msgid ""
223
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
224
  "from the list of plugins in WordPress. Please note that you will still "
225
  "receive updates for hidden add-ons."
226
  msgstr ""
227
 
228
+ #: ../admin/config/index.php:108
229
  msgid "Database"
230
  msgstr "پایگاه داده"
231
 
232
+ #: ../admin/config/index.php:109
233
  msgid "Retain data for"
234
  msgstr "نگاه داشتن داده برای"
235
 
236
+ #: ../admin/config/index.php:109
237
  #, fuzzy
238
  msgid ""
239
  "Clean-up log entries older than the number of days specified here above. "
243
  "ورودی هایی که از تعداد روزها زیر بیشتر باشد حذف میشوند. صفر وارد کنید اگر "
244
  "مایل به حفظ داده ها صرفنظر از تاریخ آن هستید."
245
 
246
+ #: ../admin/config/index.php:109
247
  msgid "Next clean-up on"
248
  msgstr "تمیزکاری بعدی در"
249
 
250
+ #: ../admin/config/index.php:109
251
  #, fuzzy, php-format
252
  msgid ""
253
  "Entries logged on or before %s will be archived or deleted according to the "
254
  "option here below."
255
  msgstr "ردیف‌های مربوط به روز %s و قبل از آن حذف خواهند شد."
256
 
257
+ #: ../admin/config/index.php:109 ../admin/view/index.php:102
258
  #: ../admin/view/wp-slimstat-db.php:79
259
+ #: ../admin/view/wp-slimstat-reports.php:1368
260
  msgid "days"
261
  msgstr "روز"
262
 
263
+ #: ../admin/config/index.php:110
264
  #, fuzzy
265
+ msgid "Archive records"
266
  msgstr "اطلاعات"
267
 
268
+ #: ../admin/config/index.php:110
269
  msgid ""
270
  "If DB space is not an issue, you can decide to archive older records in "
271
  "another table, instead of deleting them. This way performance is preserved, "
275
  "is uninstalled. Make sure to backup your data before you proceed."
276
  msgstr ""
277
 
278
+ #: ../admin/config/index.php:117
279
  #, fuzzy
280
  msgid "Advanced Options"
281
  msgstr "فیلترهای پیش‌رفته"
282
 
283
+ #: ../admin/config/index.php:118
284
  msgid "Session Duration"
285
  msgstr "مدت جلسه"
286
 
287
+ #: ../admin/config/index.php:118
288
  #, fuzzy
289
  msgid ""
290
  "How many seconds should a human session last? Google Analytics sets it to "
293
  "چند ثانیه جلسه (انسان) در پایگاه به طول انجامد؟ گوگل آنالیتیک این مقدار را "
294
  "۱۸۰۰ ثانیه در نظر می‌گیرد."
295
 
296
+ #: ../admin/config/index.php:118 ../admin/config/index.php:189
297
  msgid "seconds"
298
  msgstr "ثانیه"
299
 
300
+ #: ../admin/config/index.php:119
301
  msgid "Extend Session"
302
  msgstr "گسترش جلسه"
303
 
304
+ #: ../admin/config/index.php:119
305
  msgid "Extend the duration of a session each time the user visits a new page."
306
  msgstr ""
307
  "هر بار که کاربر یک صفحه جدید را دیدن می‌کند مدت جلسه را به این مقدار گسترش "
308
  "می‌دهد."
309
 
310
+ #: ../admin/config/index.php:120
311
+ #, fuzzy
312
+ msgid "Browser Detection"
313
+ msgstr "نسخه مرورگر"
314
+
315
+ #: ../admin/config/index.php:120
316
+ msgid ""
317
+ "The heuristic function is much faster and requires very little memory, but "
318
+ "for uncommon user agent strings it might be less accurate, and produce a "
319
+ "unreliable match. Browscap.ini, the third party database we use, is memory "
320
+ "intensive and it uses a bruteforce approach to determine a visitor's "
321
+ "browser, but it's very accurate and precise even with the most obscure user "
322
+ "agent strings (almost all of them). You decide which one should be used "
323
+ "first: the other one will only be invoked if the one you chose did not "
324
+ "produce a match."
325
+ msgstr ""
326
+
327
+ #: ../admin/config/index.php:120
328
+ #, fuzzy
329
+ msgid "Browscap"
330
+ msgstr "مرورگر"
331
+
332
+ #: ../admin/config/index.php:120
333
+ msgid "Heuristic"
334
+ msgstr ""
335
+
336
+ #: ../admin/config/index.php:121
337
  msgid "Enable CDN"
338
  msgstr "فعال‌سازی CDN"
339
 
340
+ #: ../admin/config/index.php:121
341
  msgid ""
342
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
343
  "by serving our tracking code from their fast and reliable network (free "
347
  "استفاده کنید و از خدمات ردگیری ما در شبکه سریع و مطمئن بهره مند شوید "
348
  "(رایگان)."
349
 
350
+ #: ../admin/config/index.php:122
351
  msgid "Extensions to Track"
352
  msgstr "پسوندهایی که رهیابی شوند"
353
 
354
+ #: ../admin/config/index.php:122
355
  msgid ""
356
  "List all the file extensions that you want to be treated as Downloads. "
357
  "Please note that links pointing to external resources (i.e. PDFs on a "
363
  "باشید که پیوندهای منابع خارجی (مثل پی دی اف در پایگاه دیگر) بارگیری محسوب "
364
  "میشود و نه پیوند بیرونی اگر پسوند آنها با این فهرست تطبیق داشته باشد."
365
 
366
+ #: ../admin/config/index.php:124
367
  #, fuzzy
368
  msgid "Internal and Outbound Links"
369
  msgstr "پیوندهای بیرونی اخیر"
370
 
371
+ #: ../admin/config/index.php:125
372
  msgid "Track Outbound Clicks"
373
  msgstr "ره‌گیری کلیک های بیرونی"
374
 
375
+ #: ../admin/config/index.php:125
376
  msgid ""
377
  "Track when your visitors click on link to external websites. This option "
378
  "required Spy Mode to be enabled."
380
  "پیوندهایی که بازدیدکننده را به خارج از پایگاه ها میبرد رهگیری کنید. این "
381
  "گزینه نیاز به فعال کردن دید دزدکی دارد."
382
 
383
+ #: ../admin/config/index.php:126
384
  #, fuzzy
385
  msgid "Track Coordinates"
386
  msgstr " حالت ردگیری"
387
 
388
+ #: ../admin/config/index.php:126
389
  msgid ""
390
  "Collect mouse coordinates and other information for clicks on internal "
391
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
392
  "this information is only collected for external links."
393
  msgstr ""
394
 
395
+ #: ../admin/config/index.php:127
396
  msgid "No Callback"
397
  msgstr ""
398
 
399
+ #: ../admin/config/index.php:127
400
  msgid ""
401
  "Track the event but do not invoke the callback function on links marked with "
402
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
404
  "prevent conflicts with lightbox and similar libraries."
405
  msgstr ""
406
 
407
+ #: ../admin/config/index.php:128
408
  msgid "Do Not Track"
409
  msgstr ""
410
 
411
+ #: ../admin/config/index.php:128
412
  msgid ""
413
  "Do not track links marked with one of these class names, <em>rel</em> "
414
  "attributes or whose <em>href</em> attribute contains one of these strings "
415
  "(separated by comma)."
416
  msgstr ""
417
 
418
+ #: ../admin/config/index.php:130
419
  msgid "Pages not belonging to this site"
420
  msgstr ""
421
 
422
+ #: ../admin/config/index.php:131
423
  msgid ""
424
  "Add the following code to all the non-WP pages you want to track, right "
425
  "before the closing BODY tag. Please make sure to change the protocol of all "
426
  "the URLs to HTTPS, if you external site is served over a secure channel."
427
  msgstr ""
428
 
429
+ #: ../admin/config/index.php:141
430
  #, fuzzy
431
  msgid "Allow External Domains"
432
  msgstr "پیوند خارجی خطرناک"
433
 
434
+ #: ../admin/config/index.php:141
435
  msgid ""
436
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
437
  "header is present on the requested resource, when using the external "
442
  "security implications of allowing CORS requests."
443
  msgstr ""
444
 
445
+ #: ../admin/config/index.php:142 ../admin/config/index.php:164
446
+ #: ../admin/config/index.php:192
447
  msgid "Miscellaneous"
448
  msgstr "متفرقه"
449
 
450
+ #: ../admin/config/index.php:143
451
  msgid "Enable UAN"
452
  msgstr "فعال‌سازی UAN"
453
 
454
+ #: ../admin/config/index.php:143
455
  #, fuzzy
456
  msgid ""
457
  "Send anonymous data about user agents to our server for analysis. This "
464
  "کنید. با کمک کردن به <a href='http://browscap.co/' target='_blank'>BrowsCap "
465
  "opensource project</a> توانایی برنامه برای شناختن مرورگرها را بیشتر میشود."
466
 
467
+ #: ../admin/config/index.php:148
468
  msgid "Filters"
469
  msgstr "فیلترها"
470
 
471
+ #: ../admin/config/index.php:150
472
  #, fuzzy
473
  msgid "Do not track settings"
474
  msgstr "ناشامل"
475
 
476
+ #: ../admin/config/index.php:151
477
  msgid "Track Registered Users"
478
  msgstr "ره‌گیری کاربران ثبت شده"
479
 
480
+ #: ../admin/config/index.php:151
481
  msgid "Enable this option to track logged in users."
482
  msgstr "اگر می‌خواهید کاربران وارد شده را ره‌گیری کنید این گزینه را فعال کنید."
483
 
484
+ #: ../admin/config/index.php:152
485
  msgid "Blacklist by Username"
486
  msgstr " فهرست سیاه با نشانی آی‌پی"
487
 
488
+ #: ../admin/config/index.php:152
489
  #, fuzzy
490
  msgid ""
491
  "List all the usernames you don't want to track, separated by commas. Please "
503
  "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
504
  "case-insensitive."
505
 
506
+ #: ../admin/config/index.php:153
507
  msgid "Blacklist by IP Address"
508
  msgstr " فهرست سیاه با نشانی آی‌پی"
509
 
510
+ #: ../admin/config/index.php:153
511
  #, fuzzy
512
  msgid ""
513
  "List all the IP addresses you don't want to track, separated by commas. Each "
521
  "Classless_Inter-Domain_Routing' target='_blank'>CIDR</a> تعریف شود (مثل "
522
  "<em>192.168.0.0/24</em>) و اگر نگارش صحیح نباشد رهگیری به درستی انجام نمیشود."
523
 
524
+ #: ../admin/config/index.php:154
525
  msgid "Blacklist by Capability"
526
  msgstr "کاربران بر اساس توانایی"
527
 
528
+ #: ../admin/config/index.php:154
529
  msgid ""
530
  "Users having at least one of the <a href='http://codex.wordpress.org/"
531
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
535
  "Roles_and_Capabilities' target='_new'> خواص</a> زیر را داشته باشند ردگیری "
536
  "نمیشوند (به بزرگ و کوچک بودن را دقت داشته باشید)."
537
 
538
+ #: ../admin/config/index.php:156
539
  msgid "Profiling"
540
  msgstr "نمایه"
541
 
542
+ #: ../admin/config/index.php:157
543
  msgid "Ignore Spammers"
544
  msgstr "نادیده گرفتن هرزها"
545
 
546
+ #: ../admin/config/index.php:157
547
  msgid ""
548
  "Enable this option if you don't want to track visits from users identified "
549
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
554
  "Akismet) را رهگیری کنید این گزینه را فعال کنید. بازدید های کاربرانی که بعدا "
555
  "به صورت هرز شناخته شوند از پایگاه داده ها نیز حذف میشوند."
556
 
557
+ #: ../admin/config/index.php:158
558
  #, fuzzy
559
  msgid "Ignore Bots"
560
  msgstr "کاربران را نادیده بگیر"
561
 
562
+ #: ../admin/config/index.php:158
563
  msgid ""
564
  "Turn on this feature if you want to have the accuracy level of server-side "
565
  "tracking, but not the inconvenience of getting your database clogged with "
567
  "note that in Client mode, bots are ignored regardless of this setting."
568
  msgstr ""
569
 
570
+ #: ../admin/config/index.php:159
571
  msgid "Permalinks"
572
  msgstr "پیوندهای یکتا"
573
 
574
+ #: ../admin/config/index.php:159
575
  msgid ""
576
  "List all the URLs on your website that you don't want to track, separated by "
577
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
589
  "and /about, <code>/abo!t</code> will match /about and /abort. Strings are "
590
  "case-insensitive."
591
 
592
+ #: ../admin/config/index.php:160
593
  msgid "Countries"
594
  msgstr "کشورها"
595
 
596
+ #: ../admin/config/index.php:160
597
  msgid ""
598
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
599
  "track, separated by commas."
601
  "کد کشورهایی که مایل به رهگیری نیستید، تفکیک شده با ویرگول مثل <code>en-us, "
602
  "it, es</code>"
603
 
604
+ #: ../admin/config/index.php:161
605
  msgid "User Agents"
606
  msgstr "مرورگرهای کاربران"
607
 
608
+ #: ../admin/config/index.php:161
609
  msgid ""
610
  "Browsers (user agents) you don't want to track, separated by commas. You can "
611
  "specify the browser's version adding a slash after the name (i.e. "
620
  "Strings are case-insensitive.مرورگرهایی که نمیخواهید رهگیری کنید، تفکیک شده "
621
  "با ویرگول. میتوانید نسخه مرورگر را نیز مشخص کنید. مثلا <em>Firefox/3.6</em>. "
622
 
623
+ #: ../admin/config/index.php:162
624
  msgid "Referring Sites"
625
  msgstr "سایت ارجاع دهنده"
626
 
627
+ #: ../admin/config/index.php:162
628
  msgid ""
629
  "Referring URLs that you don't want to track, separated by commas: "
630
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
640
  "insensitive. Include either a wildcard or the protocol you want to filter "
641
  "(http://, https://)."
642
 
643
+ #: ../admin/config/index.php:165
644
  msgid "Enable Privacy Mode"
645
  msgstr "فعال کردن حالت حریم"
646
 
647
+ #: ../admin/config/index.php:165
648
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
649
  msgstr "این گزینه نشانی آی‌پی بیننده را طبق قوانین حریم خصوصی اروپا پنهان میکند"
650
 
651
+ #: ../admin/config/index.php:166
652
  msgid "Ignore Prefetch Requests"
653
  msgstr "نادیده گرفتن درخواست صفحه‌بندی"
654
 
655
+ #: ../admin/config/index.php:166
656
  #, fuzzy
657
  msgid ""
658
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
663
  "org/en/Link_prefetching_FAQ' target='_blank'>صفحه‌بندی</a> برنامه Firefox "
664
  "صورت میگیرد."
665
 
666
+ #: ../admin/config/index.php:171 ../admin/config/index.php:203
667
  msgid "Reports"
668
  msgstr "گزارش ها"
669
 
670
+ #: ../admin/config/index.php:173
671
  msgid "Formats and Conversions"
672
  msgstr ""
673
 
674
+ #: ../admin/config/index.php:174
675
  msgid "Number Format"
676
  msgstr "نگارش اعداد"
677
 
678
+ #: ../admin/config/index.php:174
679
  #, fuzzy
680
  msgid "Choose the number format you want to use for your reports."
681
  msgstr ""
682
  "نگارش مناسب برای ملاحظه گزارش اعداد را نتخاب کنید، امریکایی یا اروپایی."
683
 
684
+ #: ../admin/config/index.php:175
685
  #, fuzzy
686
  msgid "Date Format"
687
  msgstr "داده و نگارش ها"
688
 
689
+ #: ../admin/config/index.php:175
690
  msgid ""
691
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
692
  "Format</a> to use when displaying a pageview's date."
693
  msgstr ""
694
 
695
+ #: ../admin/config/index.php:176
696
  #, fuzzy
697
  msgid "Time Format"
698
  msgstr "نگارش اعداد"
699
 
700
+ #: ../admin/config/index.php:176
701
  msgid ""
702
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
703
  "Format</a> to use when displaying a pageview's time."
704
  msgstr ""
705
 
706
+ #: ../admin/config/index.php:177
707
  #, fuzzy
708
  msgid "Use Display Name"
709
  msgstr "نمایش نام صفحه نمایش"
710
 
711
+ #: ../admin/config/index.php:177
712
  msgid ""
713
  "By default, users are listed by their usernames. Use this option to "
714
  "visualize their display names instead."
716
  "به طور پیش فرظ، کاربران با نام کاربری فهرست بندی میشوند. این گزینه کاربران "
717
  "را با نام فهرست بندی میکند."
718
 
719
+ #: ../admin/config/index.php:178
720
  #, fuzzy
721
  msgid "Use Titles"
722
  msgstr "نمایش عناوین"
723
 
724
+ #: ../admin/config/index.php:178
725
  #, fuzzy
726
  msgid ""
727
  "Slimstat converts your permalinks into post, page and category titles. "
730
  " تمامی پیوندهای یکتا را به ارسال و صفحه تبدیل میکند. این ویژگی را غیرفعال "
731
  "کنید اگر در گزارش به نشانی نیاز دارید"
732
 
733
+ #: ../admin/config/index.php:179
734
  msgid "Convert IP Addresses"
735
  msgstr "تبدیل نشانی آی‌پی"
736
 
737
+ #: ../admin/config/index.php:179
738
  msgid "Display provider names instead of IP addresses."
739
  msgstr "نمایش خدمات دهنده ها به جای ای پی"
740
 
741
+ #: ../admin/config/index.php:181
742
  msgid "Functionality"
743
  msgstr "کاربردی"
744
 
745
+ #: ../admin/config/index.php:182
746
  msgid "SlimScroll"
747
  msgstr ""
748
 
749
+ #: ../admin/config/index.php:182
750
  msgid ""
751
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
752
  "scrollbar."
753
  msgstr ""
754
 
755
+ #: ../admin/config/index.php:183
756
  msgid "Expand Details"
757
  msgstr "گسترش جزئیات"
758
 
759
+ #: ../admin/config/index.php:183
760
  msgid "Expand each row's details by default, insted of on mousehover."
761
  msgstr "گشترش جزئیات‌ هر سطر به طور پیش فرظ، به جای رویت با توقف اشاره گر"
762
 
763
+ #: ../admin/config/index.php:184 ../admin/config/index.php:190
764
  msgid "Rows to Display"
765
  msgstr "نمایش ردیف ها"
766
 
767
+ #: ../admin/config/index.php:184
768
  msgid "Specify the number of items in each report."
769
  msgstr "تعداد موردها در هر گزارش را مشخص کنید."
770
 
771
+ #: ../admin/config/index.php:185 ../admin/view/wp-slimstat-db.php:101
772
  #, fuzzy
773
  msgid "Max Results"
774
  msgstr "نتایج محدود به"
775
 
776
+ #: ../admin/config/index.php:185
777
  msgid ""
778
  "Decide how many records should be retrieved from the database in total. "
779
  "Depending on your server configuration, you may want to fine tune this value "
780
  "to avoid exceeding your PHP memory limit."
781
  msgstr ""
782
 
783
+ #: ../admin/config/index.php:186
784
  msgid "IP Lookup"
785
  msgstr "ره‌گیری بر اساس نشانی آی‌پی"
786
 
787
+ #: ../admin/config/index.php:186
788
  msgid "Customize the Geolocation service to be used in the reports."
789
  msgstr "خدمات مکان-جفرافی برای گزارش ها را دلخواه کنید. "
790
 
791
+ #: ../admin/config/index.php:188
792
  msgid "Activity Log"
793
  msgstr "فهرست فعالیت ها"
794
 
795
+ #: ../admin/config/index.php:189
796
  msgid "Live Stream"
797
  msgstr "پخش زنده"
798
 
799
+ #: ../admin/config/index.php:189
800
  #, fuzzy
801
  msgid ""
802
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
805
  "فعال کردن «نمای زنده» صفحه «همین حالا» را هر چند ثانیه تازه سازی میکند. برای "
806
  "فیرفعال کردن صفر وارد کنید."
807
 
808
+ #: ../admin/config/index.php:190
809
  #, fuzzy
810
  msgid "Specify the number of items in the Activity Log."
811
  msgstr " تعداد موردها در فهرست صفحه «همین حالا» را مشخص کنید"
812
 
813
+ #: ../admin/config/index.php:193
814
  msgid "Custom CSS"
815
  msgstr "سی‌اس‌اس دلخواه"
816
 
817
+ #: ../admin/config/index.php:193
818
  #, fuzzy
819
  msgid ""
820
  "Paste here your custom stylesheet to personalize the way your reports look. "
827
  "بیشتر به<a href='http://wordpress.org/plugins/wp-slimstat/faq/' "
828
  "target='_blank'> سوالهای رایج</a> مراجعه کنید."
829
 
830
+ #: ../admin/config/index.php:194
831
  #, fuzzy
832
  msgid "Chart Colors"
833
  msgstr "کنترل‌های نمودار"
834
 
835
+ #: ../admin/config/index.php:194
836
  msgid ""
837
  "Customize the look and feel of your charts by assigning personalized colors "
838
  "to each metric. List 4 hex colors separated by commas, strictly in the "
840
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
841
  msgstr ""
842
 
843
+ #: ../admin/config/index.php:195
844
  msgid "Show User Agent"
845
  msgstr "نمایش عامل کاربر "
846
 
847
+ #: ../admin/config/index.php:195
848
  msgid ""
849
  "Choose if you want to see the browser name or a complete user agent string "
850
  "when hovering on browser icons."
852
  " این گزینه را انتخاب کنید اگر میخواهید اسم مرورگر یا نام کامل کاربر را با "
853
  "توقف اشاره گر بر روی نقشک ملاحظه کنید."
854
 
855
+ #: ../admin/config/index.php:196
856
  #, fuzzy
857
  msgid "Enable SOV"
858
  msgstr "فعال‌سازی CDN"
859
 
860
+ #: ../admin/config/index.php:196
861
  msgid ""
862
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
863
  "the subject, object, and verb of a sentence appear in that order, like in "
864
  "Japanese."
865
  msgstr ""
866
 
867
+ #: ../admin/config/index.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
868
  msgid "Access Control"
869
  msgstr ""
870
 
871
+ #: ../admin/config/index.php:204
872
  msgid "Restrict Authors"
873
  msgstr "محدود کردن نویسنده‌ها"
874
 
875
+ #: ../admin/config/index.php:204
876
  #, fuzzy
877
  msgid ""
878
  "Enable this option if you want your authors to only see stats related to "
881
  "اگر میخواهید نویسنده ها فقط آمار مربوط به محتوای خود را رویت کنند این گزینه "
882
  "را فعال کنید."
883
 
884
+ #: ../admin/config/index.php:205 ../admin/config/index.php:209
885
  msgid "Capability"
886
  msgstr "کاربران بر اساس توانایی"
887
 
888
+ #: ../admin/config/index.php:205
889
  #, fuzzy
890
  msgid ""
891
  "Specify the minimum <a href='http://codex.wordpress.org/"
901
  "داشت، مگر اینکه اجازه فهرست سفید اینجا مشخص شود. در این صورت فهرست اولویت "
902
  "میگیرد بر قابلیت."
903
 
904
+ #: ../admin/config/index.php:206 ../admin/config/index.php:210
905
  msgid "Whitelist"
906
  msgstr "فهرست سفید"
907
 
908
+ #: ../admin/config/index.php:206
909
  msgid ""
910
  "List all the users who should have access to the reports, separated by "
911
  "commas. Administrators are implicitly allowed, so you don't need to list "
915
  "طور کامل دسترسی دارند و نیاز به وارد کردن اینجا نخواهند داشت. کوچک و بزرگ "
916
  "بودن حروف مهم است."
917
 
918
+ #: ../admin/config/index.php:208 ../admin/config/index.php:233
919
+ #: ../admin/wp-slimstat-admin.php:636 ../admin/wp-slimstat-admin.php:654
920
+ #: ../admin/wp-slimstat-admin.php:657
921
  msgid "Settings"
922
  msgstr "تنظیمات"
923
 
924
+ #: ../admin/config/index.php:209
925
  #, fuzzy
926
  msgid ""
927
  "Specify the minimum <a href='http://codex.wordpress.org/"
933
  "target='_new'> توانایی</a> برای دسترسی برای تنظیمات را مشخص کنید. این فهرست "
934
  "سفید اختیارات کاربران خاص را لفو میکند."
935
 
936
+ #: ../admin/config/index.php:210
937
  msgid ""
938
  "List all the users who can edit these options, separated by commas. Please "
939
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
942
  "فهرست کاربرانی که توانایی ویرایش این گزینه ها را دارند، تفکیک شده با ویرگول. "
943
  "از وارد کردن نام خود در این فهرست مطمئن شوید."
944
 
945
+ #: ../admin/config/index.php:215
946
  msgid "Maintenance"
947
  msgstr "نگهداری"
948
 
949
+ #: ../admin/config/index.php:220 ../admin/view/addons.php:32
950
+ #: ../admin/wp-slimstat-admin.php:124
 
951
  msgid "Add-ons"
952
  msgstr "افزونه ها"
953
 
979
  msgid "The geolocation database has been installed on your server."
980
  msgstr ""
981
 
982
+ #: ../admin/config/maintenance.php:82
 
 
 
 
 
 
 
 
 
983
  msgid "Your reports were successfully restored to their default arrangement."
984
  msgstr "گزارش ها با موفقیت به حالت پیش فرض بازنشانی شدند."
985
 
986
+ #: ../admin/config/maintenance.php:92
987
  #, fuzzy
988
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
989
  msgstr "جداول WP SlimStat با موفقیت به InnoDB تبدیل شد."
990
 
991
+ #: ../admin/config/maintenance.php:98
992
  #, fuzzy
993
  msgid "All the archived records were successfully deleted."
994
  msgstr "همه اطلاعات با موفقیت حذف شد."
995
 
996
+ #: ../admin/config/maintenance.php:106
997
  msgid "All the records were successfully deleted."
998
  msgstr "همه اطلاعات با موفقیت حذف شد."
999
 
1000
+ #: ../admin/config/maintenance.php:128
1001
+ msgid "Troubleshooting"
1002
  msgstr ""
1003
 
1004
+ #: ../admin/config/maintenance.php:131
1005
  #, fuzzy
1006
  msgid "Tracker Status"
1007
  msgstr "ره‌گیری"
1008
 
1009
+ #: ../admin/config/maintenance.php:133
1010
  #, fuzzy
1011
+ msgid "Reset the tracker status"
1012
+ msgstr "ره‌گیری"
1013
 
1014
+ #: ../admin/config/maintenance.php:133
1015
  msgid "No Errors so far"
1016
  msgstr ""
1017
 
1018
+ #: ../admin/config/maintenance.php:134
1019
  msgid ""
1020
  "The information here above is useful to troubleshoot issues with the "
1021
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1022
  "the tracker could not record a pageview and are indicative of some kind of "
1023
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1024
  "most recent pageview was not recorded, based on your settings (filters, "
1025
+ "blackslists, etc). Please include the message here above when sending a "
1026
+ "support request."
1027
  msgstr ""
1028
 
1029
+ #: ../admin/config/maintenance.php:140
1030
  #, fuzzy
1031
  msgid "Enable SQL Debug"
1032
  msgstr "فعال کردن دید دزدکی"
1033
 
1034
+ #: ../admin/config/maintenance.php:143
1035
  msgid ""
1036
  "Display the SQL code used to retrieve the data from the database. Useful to "
1037
  "troubleshoot issues with data consistency or missing pageviews."
1038
  msgstr ""
1039
 
1040
+ #: ../admin/config/maintenance.php:147
1041
  msgid "Disable SQL Debug"
1042
  msgstr ""
1043
 
1044
+ #: ../admin/config/maintenance.php:150
1045
  msgid "Deactivate the SQL output on top of each report."
1046
  msgstr ""
1047
 
1048
+ #: ../admin/config/maintenance.php:155
 
 
 
 
1049
  msgid ""
1050
  "Are you sure you want to restore the default arrangement of your reports?"
1051
  msgstr " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها را بازنشانی کنید؟"
1052
 
1053
+ #: ../admin/config/maintenance.php:155
1054
  msgid "No Panic Button"
1055
  msgstr "دکمه خطر نباشد"
1056
 
1057
+ #: ../admin/config/maintenance.php:157
1058
  #, fuzzy
1059
  msgid ""
1060
  "Reset the default arrangement of your reports. Helpful when, for some "
1064
  " آیا مطمئنید که می‌خواهید تنظیم پیش فرظ گزارش ها به حالت پیش فرض بازنشانی "
1065
  "کنید. این در برطرف کردن ناپدید شدن گزارش ها مفید است."
1066
 
1067
+ #: ../admin/config/maintenance.php:161
1068
  msgid "Data Maintenance"
1069
  msgstr "تعمیر داده ها"
1070
 
1071
+ #: ../admin/config/maintenance.php:164
1072
  msgid "Delete pageviews where"
1073
  msgstr "حذف بازدید‌ها وقتی"
1074
 
1075
+ #: ../admin/config/maintenance.php:178 ../admin/view/index.php:16
1076
  msgid "equals"
1077
  msgstr "مساوی‌ست با"
1078
 
1079
+ #: ../admin/config/maintenance.php:179 ../admin/view/index.php:17
1080
  msgid "is not equal to"
1081
  msgstr "مساوی نیست با"
1082
 
1083
+ #: ../admin/config/maintenance.php:180 ../admin/view/index.php:18
1084
  msgid "contains"
1085
  msgstr "شامل"
1086
 
1087
+ #: ../admin/config/maintenance.php:181 ../admin/view/index.php:19
1088
  msgid "is included in"
1089
  msgstr ""
1090
 
1091
+ #: ../admin/config/maintenance.php:182 ../admin/view/index.php:20
1092
  msgid "does not contain"
1093
  msgstr "ناشامل"
1094
 
1095
+ #: ../admin/config/maintenance.php:183 ../admin/view/index.php:21
1096
  msgid "starts with"
1097
  msgstr "شروع می‌شود با"
1098
 
1099
+ #: ../admin/config/maintenance.php:184 ../admin/view/index.php:22
1100
  msgid "ends with"
1101
  msgstr "پایان می‌یابد با"
1102
 
1103
+ #: ../admin/config/maintenance.php:185 ../admin/view/index.php:23
1104
  msgid "sounds like"
1105
  msgstr " شبیه به"
1106
 
1107
+ #: ../admin/config/maintenance.php:186 ../admin/view/index.php:24
1108
  msgid "is greater than"
1109
  msgstr "بزرگ‌تر است از"
1110
 
1111
+ #: ../admin/config/maintenance.php:187 ../admin/view/index.php:25
1112
  msgid "is less than"
1113
  msgstr "کوچک‌تر است از"
1114
 
1115
+ #: ../admin/config/maintenance.php:188 ../admin/view/index.php:27
1116
  msgid "matches"
1117
  msgstr "مطابق است با"
1118
 
1119
+ #: ../admin/config/maintenance.php:189 ../admin/view/index.php:28
1120
  msgid "does not match"
1121
  msgstr "مطابق نیست"
1122
 
1123
+ #: ../admin/config/maintenance.php:190 ../admin/view/index.php:29
1124
  msgid "is empty"
1125
  msgstr "خالی‌ است"
1126
 
1127
+ #: ../admin/config/maintenance.php:191 ../admin/view/index.php:30
1128
  msgid "is not empty"
1129
  msgstr "خالی نیست"
1130
 
1131
+ #: ../admin/config/maintenance.php:194 ../admin/view/index.php:42
1132
  #: ../admin/view/index.php:105
1133
  msgid "Apply"
1134
  msgstr "انجام"
1135
 
1136
+ #: ../admin/config/maintenance.php:195
1137
  msgid ""
1138
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1139
  msgstr ""
1140
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1141
 
1142
+ #: ../admin/config/maintenance.php:202
1143
  msgid ""
1144
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1145
  "database?"
1146
  msgstr ""
1147
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1148
 
1149
+ #: ../admin/config/maintenance.php:202
1150
  #, fuzzy
1151
  msgid "Delete All Records"
1152
  msgstr "حذف همه صفحات"
1153
 
1154
+ #: ../admin/config/maintenance.php:205
1155
  #, fuzzy
1156
  msgid ""
1157
+ "Erase all the information collected so far by Slimstat, but not the archived "
1158
+ "records (<code>wp_slim_stats_archive</code>). This operation <strong>does "
1159
+ "not</strong> reset your settings and it can be undone by manually copying "
1160
+ "your records from the archive table."
1161
  msgstr ""
1162
  "حذف همه اطلاعاتی که تا حال توسط WP SlimStat جمع آوری شده است. این عملیات "
1163
  "تنظیمات را بازنشانی نمیکند."
1164
 
1165
+ #: ../admin/config/maintenance.php:211
1166
  #, fuzzy
1167
  msgid ""
1168
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1170
  msgstr ""
1171
  "آیا مطمئن هستید که می‌خواهید همه‌ی این اطلاعات را از پایگاه داده حذف کنید؟"
1172
 
1173
+ #: ../admin/config/maintenance.php:211
1174
  #, fuzzy
1175
  msgid "Delete Archive"
1176
  msgstr "حذف بازدید‌ها وقتی"
1177
 
1178
+ #: ../admin/config/maintenance.php:214
1179
  msgid "Erase all the archived records. This operation cannot be undone."
1180
  msgstr ""
1181
 
1182
+ #: ../admin/config/maintenance.php:220
1183
  msgid "Improve Performance"
1184
  msgstr "بهبود عملکرد"
1185
 
1186
+ #: ../admin/config/maintenance.php:224
1187
  msgid ""
1188
  "Please note that you will need about 30% more DB space to store the extra "
1189
  "information required."
1191
  "در نظر داشته باشید که زخیره کردن این اطلاعات ٪۳۰ درصد حجم بیشتر در پایگاه "
1192
  "داده اشغال میکند."
1193
 
1194
+ #: ../admin/config/maintenance.php:228
1195
  msgid "Save DB Space"
1196
  msgstr "زخیره کردن پایگاه داده"
1197
 
1198
+ #: ../admin/config/maintenance.php:231
1199
  #, fuzzy
1200
  msgid ""
1201
  "Please note that by removing table indexes, Slimstat's performance will be "
1203
  msgstr ""
1204
  "در نظر داشته باشید که حذف کردن شاخص بر عملکرد WP SlimStat تاثیر میگذارد"
1205
 
1206
+ #: ../admin/config/maintenance.php:236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1207
  msgid "MaxMind IP to Country"
1208
  msgstr ""
1209
 
1210
+ #: ../admin/config/maintenance.php:242
1211
  msgid ""
1212
  "Do you want to download and install the geolocation database from MaxMind's "
1213
  "server?"
1214
  msgstr ""
1215
 
1216
+ #: ../admin/config/maintenance.php:242
1217
  msgid "Install GeoLite DB"
1218
  msgstr ""
1219
 
1220
+ #: ../admin/config/maintenance.php:245
1221
  msgid "Do you want to uninstall the geolocation database?"
1222
  msgstr ""
1223
 
1224
+ #: ../admin/config/maintenance.php:245
1225
  msgid "Uninstall GeoLite DB"
1226
  msgstr ""
1227
 
1228
+ #: ../admin/config/maintenance.php:249
1229
  msgid ""
1230
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1231
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1235
  "enable this functionality."
1236
  msgstr ""
1237
 
1238
+ #: ../admin/config/maintenance.php:254
1239
  msgid "Import and Export"
1240
  msgstr "وارد و صادر"
1241
 
1242
+ #: ../admin/config/maintenance.php:258
1243
  msgid ""
1244
  "Here below you can find the current configuration string for Slimstat. You "
1245
  "can update your settings by pasting a new string inside the text area and "
1246
  "clicking the Import button."
1247
  msgstr ""
1248
 
1249
+ #: ../admin/config/maintenance.php:263
1250
  msgid "Import"
1251
  msgstr "واردات"
1252
 
1253
+ #: ../admin/config/maintenance.php:264
1254
  msgid "Are you sure you want to OVERWRITE your current settings?"
1255
  msgstr "مطمئنید می‌خواهید تنظیمات را بازنشانی کنید؟"
1256
 
1257
+ #: ../admin/config/maintenance.php:269
1258
  msgid "Database Information"
1259
  msgstr "اطلاعات پایگاه داده"
1260
 
1261
+ #: ../admin/config/maintenance.php:272
1262
  msgid "Engine"
1263
  msgstr "موتور"
1264
 
1265
+ #: ../admin/config/maintenance.php:276
1266
  msgid "switch to InnoDB"
1267
  msgstr "تغییر حالت به InnoDB"
1268
 
1269
+ #: ../admin/config/maintenance.php:287
1270
  msgid "records"
1271
  msgstr "اطلاعات"
1272
 
1342
  msgid "Load"
1343
  msgstr ""
1344
 
1345
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1406
1346
  msgid "Today"
1347
  msgstr "امروز‍"
1348
 
1349
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1409
1350
  msgid "Yesterday"
1351
  msgstr "دیروز"
1352
 
1412
  "country of origin."
1413
  msgstr ""
1414
 
1415
+ #: ../admin/view/layout.php:47
1416
  msgid "Customize and organize your reports"
1417
  msgstr ""
1418
 
1419
+ #: ../admin/view/layout.php:48
1420
  msgid ""
1421
  "Drag and drop report placeholders from one container to another, to "
1422
  "customize the information you want to see right away when you open Slimstat. "
1428
  "(Screen Options tab)."
1429
  msgstr ""
1430
 
1431
+ #: ../admin/view/layout.php:60
1432
  msgid "Clone"
1433
  msgstr ""
1434
 
1435
+ #: ../admin/view/layout.php:64
1436
  #, fuzzy
1437
  msgid "Delete"
1438
  msgstr "اطلاعات"
1453
  msgid "Syndication Reader"
1454
  msgstr "پیوند ریدر"
1455
 
1456
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1032
1457
+ #: ../admin/view/wp-slimstat-reports.php:1715
1458
  msgid "No data to display"
1459
  msgstr "داده‌ای برای نمایش نیست"
1460
 
1463
  msgstr "روز و ساعت"
1464
 
1465
  # Unknown
1466
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1084
1467
+ #: ../admin/view/wp-slimstat-reports.php:1758 ../wp-slimstat.php:1355
1468
  msgid "c-"
1469
  msgstr "Unknown"
1470
 
1471
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1472
+ #: ../admin/wp-slimstat-admin.php:968 ../admin/wp-slimstat-admin.php:1008
1473
  msgid "Originating IP"
1474
  msgstr "آی‌پی منشا"
1475
 
1476
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1181
1477
+ #: ../admin/view/wp-slimstat-reports.php:1186
1478
+ #: ../admin/view/wp-slimstat-reports.php:1191
1479
  msgid "Open this URL in a new window"
1480
  msgstr "نشانی را در پنجره جدید باز کن"
1481
 
1483
  msgid "Local search results page"
1484
  msgstr "صفحه نتایج جستجوی محلی"
1485
 
1486
+ #: ../admin/view/right-now.php:157 ../admin/view/wp-slimstat-db.php:42
1487
+ #: ../admin/view/wp-slimstat-reports.php:242
1488
+ #: ../admin/view/wp-slimstat-reports.php:251
1489
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
1490
  msgid "Search Terms"
1491
  msgstr "عبارت‌های جستجو"
1492
 
1493
+ #: ../admin/view/right-now.php:166
1494
  msgid "Server Latency and Page Speed in milliseconds"
1495
  msgstr ""
1496
 
1497
+ #: ../admin/view/right-now.php:166
1498
  msgid "SL"
1499
  msgstr ""
1500
 
1501
+ #: ../admin/view/right-now.php:166
1502
  msgid "PS"
1503
  msgstr ""
1504
 
1505
+ #: ../admin/view/right-now.php:173
1506
+ #, fuzzy
1507
+ msgid "Time spent on this page"
1508
+ msgstr "حذف بازدید‌ها وقتی"
1509
 
1510
+ #: ../admin/view/right-now.php:183
1511
  msgid "Open this referrer in a new window"
1512
  msgstr "این ارجاعی دهنده را در پنجره جدید باز کن"
1513
 
1514
+ #: ../admin/view/right-now.php:184
1515
  msgid "Open this outbound link in a new window"
1516
  msgstr " پیوندهای بیرونی را در پنجره جدید باز کن"
1517
 
1518
+ #: ../admin/view/right-now.php:185
1519
  msgid "Content Type"
1520
  msgstr " نوع محتوا"
1521
 
1522
+ #: ../admin/view/right-now.php:188
1523
  #, fuzzy
1524
  msgid "Delete this pageview"
1525
  msgstr "حذف بازدید‌ها وقتی"
1526
 
1527
+ #: ../admin/view/right-now.php:199
1528
  #, fuzzy
1529
  msgid "User Logged In"
1530
  msgstr "مرورگرهای کاربران"
1531
 
1532
+ #: ../admin/view/right-now.php:209
1533
  #, fuzzy
1534
  msgid "User Logged Out"
1535
  msgstr "مرورگرهای کاربران"
1536
 
1537
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:984
1538
  msgid "Browser"
1539
  msgstr "مرورگر"
1540
 
1541
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:985
1542
  msgid "Country Code"
1543
  msgstr "علامت کشور"
1544
 
1546
  msgid "IP Address"
1547
  msgstr "نشانی آی‌پی"
1548
 
1549
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:988
1550
  msgid "Language Code"
1551
  msgstr "علامت زبان"
1552
 
1553
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1554
+ #: ../admin/wp-slimstat-admin.php:989
1555
  msgid "Operating System"
1556
  msgstr "سامانه عامل"
1557
 
1558
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1559
+ #: ../admin/wp-slimstat-admin.php:990
1560
  msgid "Permalink"
1561
  msgstr "پیوند یکتا"
1562
 
1563
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:991
1564
  msgid "Referer"
1565
  msgstr "ارجاع‌دهنده"
1566
 
1567
+ #: ../admin/view/wp-slimstat-db.php:47
1568
+ #, fuzzy
1569
+ msgid "Visitor's Username"
1570
  msgstr "نام بیننده"
1571
 
1572
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:974
1573
  msgid "Outbound Link"
1574
  msgstr "پیوند بیرونی"
1575
 
1582
  msgstr "-- فیلترهای پیش‌رفته --"
1583
 
1584
  #: ../admin/view/wp-slimstat-db.php:52
1585
+ #: ../admin/view/wp-slimstat-reports.php:372
1586
  msgid "Browser Capabilities"
1587
  msgstr "قابلیت‌های مرورگر"
1588
 
1589
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1003
1590
  msgid "Browser Version"
1591
  msgstr "نسخه مرورگر"
1592
 
1593
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1004
1594
  msgid "Browser Type"
1595
  msgstr "نوع مرورگر"
1596
 
1597
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:973
1598
  msgid "User Agent"
1599
  msgstr "مرورگرهای کاربران"
1600
 
1607
  msgid "Server Latency"
1608
  msgstr ""
1609
 
1610
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1006
1611
  msgid "Post Author"
1612
  msgstr "نویسنده مطلب"
1613
 
1614
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1007
1615
  msgid "Post Category ID"
1616
  msgstr "شناسه دسته‌بندی مطلب"
1617
 
1618
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1009
1619
  msgid "Resource Content Type"
1620
  msgstr "نوع محتوای منبع"
1621
 
1636
  msgid "Viewport Size"
1637
  msgstr ""
1638
 
1639
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1011
1640
  msgid "Visit ID"
1641
  msgstr "شناسه دیدن"
1642
 
1683
  msgstr ""
1684
 
1685
  #: ../admin/view/wp-slimstat-db.php:96
1686
+ #: ../admin/view/wp-slimstat-reports.php:1729
1687
  msgid "Type"
1688
  msgstr ""
1689
 
1706
  msgid "Offset"
1707
  msgstr ""
1708
 
1709
+ #: ../admin/view/wp-slimstat-reports.php:65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1710
  msgid "Chart controls"
1711
  msgstr "کنترل‌های نمودار"
1712
 
1713
+ #: ../admin/view/wp-slimstat-reports.php:65
1714
  msgid "Use your mouse wheel to zoom in and out"
1715
  msgstr "از غلطانک موش‌واره برای بزرگ‌نمایی و کوچک‌نمایی استفاده کنید"
1716
 
1717
+ #: ../admin/view/wp-slimstat-reports.php:65
1718
  msgid "While zooming in, drag the chart to move to a different area"
1719
  msgstr ""
1720
  "زمانی‌که بزرگ‌نمایی می‌کنید، نمودار را می‌توانید بکشید و به نقاط دیگر بروید"
1721
 
1722
+ #: ../admin/view/wp-slimstat-reports.php:68
 
 
 
 
1723
  #, fuzzy
1724
  msgid "Visitors Activity"
1725
  msgstr "فهرست فعالیت ها"
1726
 
1727
+ #: ../admin/view/wp-slimstat-reports.php:77
1728
  msgid "Color codes"
1729
  msgstr "علامت رنگی"
1730
 
1731
+ #: ../admin/view/wp-slimstat-reports.php:77
1732
  #, fuzzy
1733
  msgid "From search result page"
1734
  msgstr "از صفحه نتایج جستجو"
1735
 
1736
+ #: ../admin/view/wp-slimstat-reports.php:77 ../admin/wp-slimstat-admin.php:966
1737
  msgid "Known Visitor"
1738
  msgstr "بیننده آشنا"
1739
 
1740
+ #: ../admin/view/wp-slimstat-reports.php:77
1741
  msgid "Known Users"
1742
  msgstr "کاربران آشنا"
1743
 
1744
+ #: ../admin/view/wp-slimstat-reports.php:77
1745
  msgid "Other Humans"
1746
  msgstr "دیگران"
1747
 
1748
+ #: ../admin/view/wp-slimstat-reports.php:77
1749
  msgid "Bot or Crawler"
1750
  msgstr "روبات یا خزنده"
1751
 
1752
+ #: ../admin/view/wp-slimstat-reports.php:99
1753
  #, fuzzy
1754
  msgid "About Slimstat"
1755
  msgstr "درباره WP SlimStat"
1756
 
1757
+ #: ../admin/view/wp-slimstat-reports.php:108
1758
  #, fuzzy
1759
  msgid "Traffic at a Glance"
1760
  msgstr "در یک نگاه"
1761
 
1762
+ #: ../admin/view/wp-slimstat-reports.php:118
1763
  msgid "Currently Online"
1764
  msgstr "حالا روی خط"
1765
 
1766
+ #: ../admin/view/wp-slimstat-reports.php:131
1767
  msgid "Recent Search Terms"
1768
  msgstr "عبارت‌های جستجو شده اخیر"
1769
 
1770
+ #: ../admin/view/wp-slimstat-reports.php:142
1771
  msgid "Keywords used by your visitors to find your website on a search engine."
1772
  msgstr "عبارات کلیدی در موتورهای جستجو که بیننده را به پایگاه شما را یافته‌اند."
1773
 
1774
+ #: ../admin/view/wp-slimstat-reports.php:145
1775
  #, fuzzy
1776
  msgid "Top Web Pages"
1777
  msgstr "برترین صفحات"
1778
 
1779
+ #: ../admin/view/wp-slimstat-reports.php:156
1780
  msgid ""
1781
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1782
  "site, including posts, products, categories, and so on. You can set the "
1785
  "have."
1786
  msgstr ""
1787
 
1788
+ #: ../admin/view/wp-slimstat-reports.php:159
1789
+ #, fuzzy
1790
+ msgid "Top Referring Domains"
1791
+ msgstr "برترین موتور جستجو های ارجاع‌دهنده"
1792
 
1793
+ #: ../admin/view/wp-slimstat-reports.php:173
1794
  msgid "Top Known Visitors"
1795
  msgstr "برترین بیننده های آشنا"
1796
 
1797
+ #: ../admin/view/wp-slimstat-reports.php:184
1798
  msgid "Top Search Terms"
1799
  msgstr "برترین عبارت های جستجو"
1800
 
1801
+ #: ../admin/view/wp-slimstat-reports.php:196
1802
  msgid "Top Countries"
1803
  msgstr "برترین کشورها"
1804
 
1805
+ #: ../admin/view/wp-slimstat-reports.php:205
1806
  #, fuzzy
1807
  msgid ""
1808
  "You can configure Slimstat to ignore a specific Country by setting the "
1811
  "میتوانید تنظیمات برنامه برای نادیده گرفتن بعضی کشورها را تغییر دهید:Settings "
1812
  "> SlimStat > Filters"
1813
 
1814
+ #: ../admin/view/wp-slimstat-reports.php:208
1815
  msgid "Rankings"
1816
  msgstr "رتبه ها"
1817
 
1818
+ #: ../admin/view/wp-slimstat-reports.php:212
1819
  #, fuzzy
1820
  msgid ""
1821
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1825
  "با کسب اطلاعات خود از Google، Facebook و یا Alexa، رتبه خود را محک بزنید. "
1826
  "مقادیر هر ۱۲ ساعت به روز میشوند. صافی ها بالا در این گزارش کاربرد نمیشوند. "
1827
 
1828
+ #: ../admin/view/wp-slimstat-reports.php:215
1829
  msgid "Top Language Families"
1830
  msgstr "برترین زبان‌ها"
1831
 
1832
+ #: ../admin/view/wp-slimstat-reports.php:228
1833
  #, fuzzy
1834
  msgid "Users Currently Online"
1835
  msgstr "حالا روی خط"
1836
 
1837
+ #: ../admin/view/wp-slimstat-reports.php:239
1838
  #, fuzzy
1839
  msgid ""
1840
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1845
  "WP SlimStat از این اطلاعات برای شناسایی «بیننده دوباره» استفاده میکند. در "
1846
  "نظر داشته باشید که بیننده ها شامل کاربران ثبت شده نیز میباشد."
1847
 
1848
+ #: ../admin/view/wp-slimstat-reports.php:252
1849
  #, fuzzy
1850
  msgid "Unique Terms"
1851
  msgstr "آی‌پی‌های یکتا"
1852
 
1853
+ #: ../admin/view/wp-slimstat-reports.php:261
1854
+ #, fuzzy
1855
+ msgid "Top Referring URLs"
1856
+ msgstr "سایت ارجاع دهنده"
1857
+
1858
+ #: ../admin/view/wp-slimstat-reports.php:274
1859
  msgid "Human Visits"
1860
  msgstr "بازدیدهای انسانی"
1861
 
1862
+ #: ../admin/view/wp-slimstat-reports.php:283
1863
+ #: ../admin/view/wp-slimstat-reports.php:1440
1864
  msgid "Visits"
1865
  msgstr "بازدیدها"
1866
 
1867
+ #: ../admin/view/wp-slimstat-reports.php:293
1868
  #, fuzzy
1869
  msgid "Audience Overview"
1870
  msgstr "مرور"
1871
 
1872
+ #: ../admin/view/wp-slimstat-reports.php:300
1873
  msgid ""
1874
  "Where not otherwise specified, the metrics in this report are referred to "
1875
  "human visitors."
1876
  msgstr ""
1877
 
1878
+ #: ../admin/view/wp-slimstat-reports.php:303
1879
  msgid "Top Languages"
1880
  msgstr "بیش‌ترین زبان‌ها"
1881
 
1882
+ #: ../admin/view/wp-slimstat-reports.php:314
1883
  msgid "Top Browsers"
1884
  msgstr "برترین مرورگرها"
1885
 
1886
+ #: ../admin/view/wp-slimstat-reports.php:325
1887
  msgid "Top Service Providers"
1888
  msgstr "برترین خدمات دهنده‌ها"
1889
 
1890
+ #: ../admin/view/wp-slimstat-reports.php:334
1891
+ #: ../admin/view/wp-slimstat-reports.php:346
1892
  #, fuzzy
1893
  msgid ""
1894
  "Internet Service Provider: a company which provides other companies or "
1899
  "اینترنت توسط یک شرکت خدماتی (ISP) برای شما فراهم میشود. میتوانید این نشانی "
1900
  "ای پی را با وارد کردن صافی نادیده بگیرید."
1901
 
1902
+ #: ../admin/view/wp-slimstat-reports.php:337
1903
  msgid "Top Operating Systems"
1904
  msgstr "برترین محیط‌های عامل"
1905
 
1906
+ #: ../admin/view/wp-slimstat-reports.php:349
1907
  msgid "Top Screen Resolutions"
1908
  msgstr "برترین ابعاد صفحه نماش‌ها"
1909
 
1910
+ #: ../admin/view/wp-slimstat-reports.php:361
1911
  #, fuzzy
1912
  msgid "Top Viewport Sizes"
1913
  msgstr "برترین دسته‌ها"
1914
 
1915
+ #: ../admin/view/wp-slimstat-reports.php:381
1916
  msgid "Visit Duration"
1917
  msgstr "طول دوره بازدید"
1918
 
1919
+ #: ../admin/view/wp-slimstat-reports.php:388
1920
  msgid ""
1921
  "All values represent the percentages of pageviews within the corresponding "
1922
  "time range."
1923
  msgstr ""
1924
 
1925
+ #: ../admin/view/wp-slimstat-reports.php:391
1926
  msgid "Recent Countries"
1927
  msgstr "کشورهای اخیر"
1928
 
1929
+ #: ../admin/view/wp-slimstat-reports.php:402
1930
  #, fuzzy
1931
  msgid "Recent Viewport Sizes"
1932
  msgstr "دسته‌های اخیر"
1933
 
1934
+ #: ../admin/view/wp-slimstat-reports.php:413
1935
  msgid "Recent Operating Systems"
1936
  msgstr "محیطهای عامل اخیر"
1937
 
1938
+ #: ../admin/view/wp-slimstat-reports.php:424
1939
  msgid "Recent Browsers"
1940
  msgstr "مرورگرهای اخیر"
1941
 
1942
+ #: ../admin/view/wp-slimstat-reports.php:435
1943
  msgid "Recent Languages"
1944
  msgstr "زبان‌های اخیر"
1945
 
1946
+ #: ../admin/view/wp-slimstat-reports.php:446
1947
  msgid "Top Browser Families"
1948
  msgstr "برترین مرورگرها"
1949
 
1950
+ #: ../admin/view/wp-slimstat-reports.php:455
1951
  msgid ""
1952
  "This report shows you what user agent families (no version considered) are "
1953
  "popular among your visitors."
1955
  "این گزارش نشانگر عامل کابر (بدون در نظر گرفتن نسخه) که در میان بیننده ها "
1956
  "محبوب تر هستند میباشد."
1957
 
1958
+ #: ../admin/view/wp-slimstat-reports.php:458
1959
  msgid "Top OS Families"
1960
  msgstr "برترین محیط عامل ها"
1961
 
1962
+ #: ../admin/view/wp-slimstat-reports.php:469
1963
  msgid ""
1964
  "This report shows you what operating system families (no version considered) "
1965
  "are popular among your visitors."
1967
  "این گزارش نشانگر محیط عامل هایی (بدون در نظر گرفتن نسخه) که در میان بیننده "
1968
  "ها محبوب تر هستند میباشد."
1969
 
1970
+ #: ../admin/view/wp-slimstat-reports.php:472
1971
  msgid "Recent Users"
1972
  msgstr "کاربرهای اخیر"
1973
 
1974
+ #: ../admin/view/wp-slimstat-reports.php:484
1975
  msgid "Top Users"
1976
  msgstr "برترین کاربرها"
1977
 
1978
+ #: ../admin/view/wp-slimstat-reports.php:496
1979
+ #: ../admin/view/wp-slimstat-reports.php:505
1980
  msgid "Users"
1981
  msgstr "کاربران"
1982
 
1983
+ #: ../admin/view/wp-slimstat-reports.php:506
1984
  #, fuzzy
1985
  msgid "Unique Users"
1986
  msgstr "آی‌پی‌های یکتا"
1987
 
1988
+ #: ../admin/view/wp-slimstat-reports.php:515
1989
+ #: ../admin/wp-slimstat-admin.php:106
1990
+ msgid "Traffic Sources"
1991
+ msgstr "منابع ترافیک"
1992
+
1993
+ #: ../admin/view/wp-slimstat-reports.php:524
1994
  msgid "Domains"
1995
  msgstr "دامنه‌ها"
1996
 
1997
+ #: ../admin/view/wp-slimstat-reports.php:534
1998
  #, fuzzy
1999
  msgid "Traffic Summary"
2000
  msgstr "منابع ترافیک"
2001
 
2002
+ #: ../admin/view/wp-slimstat-reports.php:543
2003
  msgid "Top Referring Search Engines"
2004
  msgstr "برترین موتور جستجو های ارجاع‌دهنده"
2005
 
2006
+ #: ../admin/view/wp-slimstat-reports.php:572
2007
  msgid "Recent Outbound Links"
2008
  msgstr "پیوندهای بیرونی اخیر"
2009
 
2010
+ #: ../admin/view/wp-slimstat-reports.php:584
2011
  msgid "Recent Posts"
2012
  msgstr "ارسال های اخیر"
2013
 
2014
+ #: ../admin/view/wp-slimstat-reports.php:612
2015
  msgid "Recent Feeds"
2016
  msgstr "خوراک‌های اخیر"
2017
 
2018
+ #: ../admin/view/wp-slimstat-reports.php:624
2019
  msgid "Recent Pages Not Found"
2020
  msgstr "صفحه هایی پیدا نشده اخیر"
2021
 
2022
+ #: ../admin/view/wp-slimstat-reports.php:636
2023
  msgid "Recent Internal Searches"
2024
  msgstr "جستجوهای داخلی اخیر"
2025
 
2026
+ #: ../admin/view/wp-slimstat-reports.php:646
2027
  #, fuzzy
2028
  msgid "Searches performed using WordPress' built-in search functionality."
2029
  msgstr "جستجوهایی که توسط جستجوی داخلی Wordpress انجام میشوند."
2030
 
2031
+ #: ../admin/view/wp-slimstat-reports.php:649
2032
  msgid "Top Categories"
2033
  msgstr "برترین دسته‌ها"
2034
 
2035
+ #: ../admin/view/wp-slimstat-reports.php:662
2036
  #, fuzzy
2037
  msgid "Top Downloads"
2038
  msgstr "بارگیری های اخیر"
2039
 
2040
+ #: ../admin/view/wp-slimstat-reports.php:673
2041
  msgid ""
2042
  "You can configure Slimstat to track specific file extensions as downloads."
2043
  msgstr ""
2044
 
2045
+ #: ../admin/view/wp-slimstat-reports.php:676
2046
  msgid "Recent Events"
2047
  msgstr "اتفاقات اخیر"
2048
 
2049
+ #: ../admin/view/wp-slimstat-reports.php:685
2050
+ #: ../admin/view/wp-slimstat-reports.php:709
2051
  #, fuzzy
2052
  msgid ""
2053
  "This report lists any <em>event</em> occurred on your website. Please refer "
2056
  "این گزارش تمامی رویداد های پایگاه شما را فهرست میکند. لطفا برای کسب اطلاع "
2057
  "بیشتر در این مورد به بخش پرسش و پاسخ مراجعه کنید."
2058
 
2059
+ #: ../admin/view/wp-slimstat-reports.php:688
2060
  msgid "Top Posts"
2061
  msgstr "برترین ارسال ها"
2062
 
2063
+ #: ../admin/view/wp-slimstat-reports.php:700
2064
  #, fuzzy
2065
  msgid "Top Events"
2066
  msgstr "برترین صفحات"
2067
 
2068
+ #: ../admin/view/wp-slimstat-reports.php:712
2069
  msgid "Top Internal Searches"
2070
  msgstr "برترین جستجوهای داخلی"
2071
 
2072
+ #: ../admin/view/wp-slimstat-reports.php:724
2073
  msgid "Recent Categories"
2074
  msgstr "دسته‌های اخیر"
2075
 
2076
+ #: ../admin/view/wp-slimstat-reports.php:736
2077
  msgid "Top Pages Not Found"
2078
  msgstr "برترین صفحاتی که پیدا نشد"
2079
 
2080
+ #: ../admin/view/wp-slimstat-reports.php:748
2081
  msgid "Top Authors"
2082
  msgstr "برترین نویسنده‌ها"
2083
 
2084
+ #: ../admin/view/wp-slimstat-reports.php:759
2085
  msgid "Top Tags"
2086
  msgstr "برترین نشانه ها"
2087
 
2088
+ #: ../admin/view/wp-slimstat-reports.php:771
2089
  msgid "Recent Downloads"
2090
  msgstr "بارگیری های اخیر"
2091
 
2092
+ #: ../admin/view/wp-slimstat-reports.php:783
2093
  #, fuzzy
2094
  msgid "Top Outbound Links"
2095
  msgstr "پیوند بیرونی"
2096
 
2097
+ #: ../admin/view/wp-slimstat-reports.php:795
2098
  msgid "Your Website"
2099
  msgstr "تارنمای شما"
2100
 
2101
+ #: ../admin/view/wp-slimstat-reports.php:802
2102
  msgid ""
2103
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2104
  "this report is not affected by the filters set here above."
2106
  "محتوای شما در یک نگاه: ارسال ها، نظرها و غیره. این گزارش با صافی های بالا "
2107
  "کاربرد نمیشود."
2108
 
2109
+ #: ../admin/view/wp-slimstat-reports.php:805
2110
  #, fuzzy
2111
  msgid "Top Bounce Pages"
2112
  msgstr "صفحات وازده"
2113
 
2114
+ #: ../admin/view/wp-slimstat-reports.php:818
2115
  #, fuzzy
2116
  msgid "Top Exit Pages"
2117
  msgstr "برترین صفحات"
2118
 
2119
+ #: ../admin/view/wp-slimstat-reports.php:831
2120
  #, fuzzy
2121
  msgid "Top Entry Pages"
2122
  msgstr "برترین صفحات"
2123
 
2124
+ #: ../admin/view/wp-slimstat-reports.php:844
2125
+ #: ../admin/view/wp-slimstat-reports.php:853
2126
  #, fuzzy
2127
  msgid "Outbound Links"
2128
  msgstr "پیوند بیرونی"
2129
 
2130
+ #: ../admin/view/wp-slimstat-reports.php:854
2131
  msgid "Unique Outbound"
2132
  msgstr ""
2133
 
2134
+ #: ../admin/view/wp-slimstat-reports.php:863
2135
  msgid "World Map"
2136
  msgstr "نقشه جهان"
2137
 
2138
+ #: ../admin/view/wp-slimstat-reports.php:945
2139
  msgid "Refresh"
2140
  msgstr "تازه سازی"
2141
 
2142
+ #: ../admin/view/wp-slimstat-reports.php:982
2143
  #, php-format
2144
  msgid "Results %s - %s of %s"
2145
  msgstr " نتایج %s - %s از %s"
2146
 
2147
+ #: ../admin/view/wp-slimstat-reports.php:984
2148
  msgid "Refresh in"
2149
  msgstr "تازه سازی در"
2150
 
2151
+ #: ../admin/view/wp-slimstat-reports.php:1078
2152
  msgid "Category ID"
2153
  msgstr "شناسه دسته"
2154
 
2155
+ #: ../admin/view/wp-slimstat-reports.php:1083
2156
+ #: ../admin/view/wp-slimstat-reports.php:1097
2157
  #: ../admin/view/wp-slimstat-reports.php:1102
2158
  #, fuzzy
2159
  msgid "Code"
2160
  msgstr "کد محیط عامل"
2161
 
2162
+ #: ../admin/view/wp-slimstat-reports.php:1098
2163
+ #: ../languages/dynamic_strings.php:339 ../wp-slimstat.php:1367
2164
  msgid "l-"
2165
  msgstr ""
2166
 
2167
+ #: ../admin/view/wp-slimstat-reports.php:1115
2168
  msgid "URL"
2169
  msgstr ""
2170
 
2171
+ #: ../admin/view/wp-slimstat-reports.php:1128
2172
  msgid "Referrer"
2173
  msgstr "ارجاع دهنده"
2174
 
2175
+ #: ../admin/view/wp-slimstat-reports.php:1170
2176
+ #: ../admin/view/wp-slimstat-reports.php:1424
2177
+ #: ../admin/view/wp-slimstat-reports.php:1480
2178
+ #: ../admin/view/wp-slimstat-reports.php:1486
2179
+ #: ../admin/view/wp-slimstat-reports.php:1492
2180
+ #: ../admin/view/wp-slimstat-reports.php:1498
2181
+ #: ../admin/view/wp-slimstat-reports.php:1504
2182
+ #: ../admin/view/wp-slimstat-reports.php:1510
2183
+ #: ../admin/view/wp-slimstat-reports.php:1516
2184
+ #: ../admin/view/wp-slimstat-reports.php:1736
2185
  msgid "Hits"
2186
  msgstr "بازدیدها"
2187
 
2188
+ #: ../admin/view/wp-slimstat-reports.php:1351
2189
  #, fuzzy
2190
  msgid "Dataset Size"
2191
  msgstr "اندازه پایگاه داده"
2192
 
2193
+ #: ../admin/view/wp-slimstat-reports.php:1353
2194
  msgid "Total number of records stored in the database."
2195
  msgstr ""
2196
 
2197
+ #: ../admin/view/wp-slimstat-reports.php:1355
2198
  msgid "DB Size"
2199
  msgstr "اندازه پایگاه داده"
2200
 
2201
+ #: ../admin/view/wp-slimstat-reports.php:1358
2202
  #, fuzzy
2203
  msgid "Tracking Enabled"
2204
  msgstr " حالت ردگیری"
2205
 
2206
+ #: ../admin/view/wp-slimstat-reports.php:1361
2207
  msgid "Javascript Mode"
2208
  msgstr "فعال سازی حالت جاوااسکریپت"
2209
 
2210
+ #: ../admin/view/wp-slimstat-reports.php:1364
2211
  msgid "Tracking Browser Caps"
2212
  msgstr "ردگیری قابلیت‌های مرورگر"
2213
 
2214
+ #: ../admin/view/wp-slimstat-reports.php:1367
2215
  msgid "Auto purge"
2216
  msgstr "پاک‌سازی خودکار"
2217
 
2218
+ #: ../admin/view/wp-slimstat-reports.php:1370
2219
  msgid "Oldest pageview"
2220
  msgstr "قدیمی‌ترین بازدید"
2221
 
2222
+ #: ../admin/view/wp-slimstat-reports.php:1371
2223
  msgid "No visits"
2224
  msgstr "بازدیدی نیست"
2225
 
2226
+ #: ../admin/view/wp-slimstat-reports.php:1373
2227
+ #: ../admin/wp-slimstat-admin.php:112
2228
+ #, fuzzy
2229
+ msgid "Geolocation"
2230
+ msgstr "به‌روزآوری پایگاه داده مکان‌یابی"
2231
+
2232
+ #: ../admin/view/wp-slimstat-reports.php:1375
2233
  msgid "Date when the MaxMind Geolocation database was last updated."
2234
  msgstr ""
2235
 
2236
+ #: ../admin/view/wp-slimstat-reports.php:1386
2237
+ #: ../admin/view/wp-slimstat-reports.php:1544
2238
  #, fuzzy
2239
  msgid ""
2240
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2242
  msgstr ""
2243
  "درخواست بارگیری یک پرونده زنگام. هر اجرای ردگیری منجر به ثبت یک بازید میشود."
2244
 
2245
+ #: ../admin/view/wp-slimstat-reports.php:1388
2246
  #, fuzzy
2247
  msgid "Days in Range"
2248
  msgstr "محدوده زمانی"
2249
 
2250
+ #: ../admin/view/wp-slimstat-reports.php:1391
2251
  #, fuzzy
2252
  msgid "Average Daily Pageviews"
2253
  msgstr "میان‌گین مشاهده صفحات"
2254
 
2255
+ #: ../admin/view/wp-slimstat-reports.php:1393
2256
  #, fuzzy
2257
  msgid ""
2258
  "How many pages have been visited on average every day during the current "
2259
  "period."
2260
  msgstr "چند صفحه به طور میانگین در "
2261
 
2262
+ #: ../admin/view/wp-slimstat-reports.php:1395
2263
  msgid "From Search Results"
2264
  msgstr "از نتایج جستجو"
2265
 
2266
+ #: ../admin/view/wp-slimstat-reports.php:1397
2267
  msgid ""
2268
  "Visitors who landed on your site after searching for a keyword on Google, "
2269
  "Yahoo, etc."
2270
  msgstr "کاربرانی که بعد از جستجو در موتورهای جستجو به سایت شما رسیده‌اند."
2271
 
2272
+ #: ../admin/view/wp-slimstat-reports.php:1401
2273
  msgid ""
2274
  "Used to differentiate between multiple requests to download a file from one "
2275
  "internet address (IP) and requests originating from many distinct addresses"
2277
  " این برای تشخیص دادن چندین درخواست بارگیری پرونده از یک آی پی ادرس و یا "
2278
  "درخواست از چند آی پی ادرس مختلف است."
2279
 
2280
+ #: ../admin/view/wp-slimstat-reports.php:1403
2281
  msgid "Last 30 minutes"
2282
  msgstr "۳۰ دقیقه اخیر"
2283
 
2284
+ #: ../admin/view/wp-slimstat-reports.php:1442
2285
  msgid ""
2286
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2287
  "multiple times if they perform multiple visits."
2289
  "هر بازدید یک جلسه است که حداکثر ۳۰ دقیقه میباشد. «بیننده دوباره» چند بار "
2290
  "شمارش میشود اگر چند بار بازدید کنند."
2291
 
2292
+ #: ../admin/view/wp-slimstat-reports.php:1446
2293
  msgid "It includes only traffic generated by human visitors."
2294
  msgstr "فقط شامل ترافیک انسانی میشود"
2295
 
2296
+ #: ../admin/view/wp-slimstat-reports.php:1448
2297
  msgid "Bounce rate"
2298
  msgstr "میزان وازده گی"
2299
 
2300
+ #: ../admin/view/wp-slimstat-reports.php:1450
2301
  msgid ""
2302
  "Percentage of single-page visits, i.e. visits in which the person left your "
2303
  "site from the entrance page."
2304
  msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
2305
 
2306
+ #: ../admin/view/wp-slimstat-reports.php:1452
2307
  msgid "Known visitors"
2308
  msgstr "بیننده های آشنا"
2309
 
2310
+ #: ../admin/view/wp-slimstat-reports.php:1454
2311
  msgid "Visitors who had previously left a comment on your blog."
2312
  msgstr "بازدیدکنندگانی که قبلا در تارنامه نظر ثبت کرده‌اند"
2313
 
2314
+ #: ../admin/view/wp-slimstat-reports.php:1456
2315
  msgid "New visitors"
2316
  msgstr "بازدیدکنندگان جدید"
2317
 
2318
+ #: ../admin/view/wp-slimstat-reports.php:1458
2319
  msgid "Human users who visited your site only once."
2320
  msgstr "کاربرانی که فقط یک بار پایگاه شما را دیده‌اند."
2321
 
2322
+ #: ../admin/view/wp-slimstat-reports.php:1460
2323
  msgid "Bots"
2324
  msgstr "ربات‌ها"
2325
 
2326
+ #: ../admin/view/wp-slimstat-reports.php:1463
2327
  #, fuzzy
2328
  msgid "Pageviews per visit"
2329
  msgstr "صفحات در بازدید"
2330
 
2331
+ #: ../admin/view/wp-slimstat-reports.php:1466
2332
  msgid "Longest visit"
2333
  msgstr "طولانی‌ترین مشاهده صفحات"
2334
 
2335
+ #: ../admin/view/wp-slimstat-reports.php:1467
2336
  msgid "hits"
2337
  msgstr "مشاهدات"
2338
 
2339
+ #: ../admin/view/wp-slimstat-reports.php:1478
2340
  msgid "0 - 30 seconds"
2341
  msgstr "۰ تا ۳۰ ثانیه"
2342
 
2343
+ #: ../admin/view/wp-slimstat-reports.php:1484
2344
  msgid "31 - 60 seconds"
2345
  msgstr "۳۱ تا ۶۰ ثانیه"
2346
 
2347
+ #: ../admin/view/wp-slimstat-reports.php:1490
2348
  msgid "1 - 3 minutes"
2349
  msgstr "۱ تا ۳ دقیقه"
2350
 
2351
+ #: ../admin/view/wp-slimstat-reports.php:1496
2352
  msgid "3 - 5 minutes"
2353
  msgstr "۳ تا ۵ دقیقه"
2354
 
2355
+ #: ../admin/view/wp-slimstat-reports.php:1502
2356
  msgid "5 - 7 minutes"
2357
  msgstr "۵ تا ۷ دقیقه"
2358
 
2359
+ #: ../admin/view/wp-slimstat-reports.php:1508
2360
  msgid "7 - 10 minutes"
2361
  msgstr "۷ تا ۱۰ دقیقه"
2362
 
2363
+ #: ../admin/view/wp-slimstat-reports.php:1514
2364
  msgid "More than 10 minutes"
2365
  msgstr "بیش از ۱۰ دقیقه"
2366
 
2367
+ #: ../admin/view/wp-slimstat-reports.php:1526
2368
  #, fuzzy
2369
  msgid "Average visit duration"
2370
  msgstr "طول دوره بازدید"
2371
 
2372
+ #: ../admin/view/wp-slimstat-reports.php:1546
2373
  msgid "Unique Referrers"
2374
  msgstr "ارجاع‌دهنده‌های یکتا"
2375
 
2376
+ #: ../admin/view/wp-slimstat-reports.php:1548
2377
  msgid ""
2378
  "A referrer (or referring site) is the site that a visitor previously visited "
2379
  "before following a link to your site."
2380
  msgstr ""
2381
  "ارجاع دهنده (یا پایگاه ارجاع دهنده) که بیننده را به پایگاه شما پیوند زده است."
2382
 
2383
+ #: ../admin/view/wp-slimstat-reports.php:1550
2384
  msgid "Direct Pageviews"
2385
  msgstr "مشاهده صفحات بی‌واسطه"
2386
 
2387
+ #: ../admin/view/wp-slimstat-reports.php:1552
2388
  msgid ""
2389
  "Visitors who visited the site by typing the URL directly into their browser. "
2390
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2395
  "کاربرانی که با استفاده از bookmarks/favorites، و یا از پیوندهایی در نامک و "
2396
  "مدارک که متغییر ردگیری ندارند نیز بشود."
2397
 
2398
+ #: ../admin/view/wp-slimstat-reports.php:1554
2399
  msgid "From a search result"
2400
  msgstr "از نتایج جستجو"
2401
 
2402
+ #: ../admin/view/wp-slimstat-reports.php:1556
2403
  msgid ""
2404
  "Visitors who came to your site via searches on Google or some other search "
2405
  "engine."
2406
  msgstr "کاربرانی که از گوگل یا سایر موتورهای جستجو به پایگاه شما آمده‌اند."
2407
 
2408
+ #: ../admin/view/wp-slimstat-reports.php:1558
2409
  msgid "Unique Landing Pages"
2410
  msgstr "صفحات فرودی خاص"
2411
 
2412
+ #: ../admin/view/wp-slimstat-reports.php:1560
2413
  msgid ""
2414
  "The first page that a user views during a session. This is also known as the "
2415
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2420
  "به عنوان مثال اگر کاربری برای «بستنی» جستجو کند و در صفحه اصلی شما هدایت "
2421
  "شود، در آن جلسه به عنوان «صفحه ورودی» حساب میشود."
2422
 
2423
+ #: ../admin/view/wp-slimstat-reports.php:1562
2424
  msgid "Bounce Pages"
2425
  msgstr "صفحات وازده"
2426
 
2427
+ #: ../admin/view/wp-slimstat-reports.php:1564
2428
  #, fuzzy
2429
  msgid "Number of single page visits to your site over the selected period."
2430
  msgstr "تعداد بازدید «تک-صفحه» به پایگاه شما در بازه زمانی انتخاب شده."
2431
 
2432
+ #: ../admin/view/wp-slimstat-reports.php:1566
2433
  msgid "New Visitors Rate"
2434
  msgstr "میزان بازدیدکنندگان جدید"
2435
 
2436
+ #: ../admin/view/wp-slimstat-reports.php:1568
2437
  #, fuzzy
2438
  msgid ""
2439
  "Percentage of single page visits, i.e. visits in which the person left your "
2440
  "site from the entrance page."
2441
  msgstr "درصد بازدید «تک-صفحه» ها؛ یعنی بازدیدی که فقط «صفحه ورودی» بود."
2442
 
2443
+ #: ../admin/view/wp-slimstat-reports.php:1570
2444
  msgid "Currently from search engines"
2445
  msgstr "هم‌اکنون از موتورهای جستجو"
2446
 
2447
+ #: ../admin/view/wp-slimstat-reports.php:1572
2448
  msgid ""
2449
  "Visitors who visited the site in the last 5 minutes coming from a search "
2450
  "engine."
2451
  msgstr "کاربرانی که در ۵ دقیقه گذشته از یک موتور جستجو به پایگاه شما آمده‌اند."
2452
 
2453
+ #: ../admin/view/wp-slimstat-reports.php:1642
2454
  msgid "Number of pages in your site included in Google's index."
2455
  msgstr "تعداد صفحاتی که در فهرست گوگل شمرده شده است."
2456
 
2457
+ #: ../admin/view/wp-slimstat-reports.php:1643
2458
  msgid "Google Index"
2459
  msgstr "اندیس گوگل"
2460
 
2461
+ #: ../admin/view/wp-slimstat-reports.php:1644
2462
  msgid "Number of pages, according to Google, that link back to your site."
2463
  msgstr "تعداد صفحات که به گفته گوگل به پایگاه پیوند میدهند. "
2464
 
2465
+ #: ../admin/view/wp-slimstat-reports.php:1645
2466
  msgid "Google Backlinks"
2467
  msgstr ""
2468
 
2469
+ #: ../admin/view/wp-slimstat-reports.php:1646
2470
  msgid ""
2471
  "How many times the Facebook Like button has been approximately clicked on "
2472
  "your site."
2473
  msgstr "چند بار Facebook Like در پایگاه شما کلیک شده است."
2474
 
2475
+ #: ../admin/view/wp-slimstat-reports.php:1647
2476
  msgid "Facebook Likes"
2477
  msgstr "لایک های فیسبوک"
2478
 
2479
+ #: ../admin/view/wp-slimstat-reports.php:1648
2480
  msgid ""
2481
  "How many times your site has been shared by someone on the social network."
2482
  msgstr "چند بار پایگاه شما در شبکه های اجتماعی بخش شده است"
2483
 
2484
+ #: ../admin/view/wp-slimstat-reports.php:1649
2485
  msgid "Facebook Shares"
2486
  msgstr "بخش های فیسبوک"
2487
 
2488
+ #: ../admin/view/wp-slimstat-reports.php:1650
2489
  msgid "How many times links to your website have been clicked on Facebook."
2490
  msgstr "چند بار پایگاه شما در Facebook فشار داده شده است."
2491
 
2492
+ #: ../admin/view/wp-slimstat-reports.php:1651
2493
  msgid "Facebook Clicks"
2494
  msgstr "Facebook Clicks"
2495
 
2496
+ #: ../admin/view/wp-slimstat-reports.php:1652
2497
  msgid ""
2498
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2499
  "traffic data."
2501
  "شرکت Alexa بخشی از Amazon.com میباشد که گزارش پایگاه های تبلیغاتی را انجام "
2502
  "میدهد."
2503
 
2504
+ #: ../admin/view/wp-slimstat-reports.php:1653
2505
  msgid "Alexa World Rank"
2506
  msgstr ""
2507
 
2508
+ #: ../admin/view/wp-slimstat-reports.php:1654
2509
  msgid "Alexa Country Rank"
2510
  msgstr ""
2511
 
2512
+ #: ../admin/view/wp-slimstat-reports.php:1655
2513
  msgid "Alexa Popularity"
2514
  msgstr ""
2515
 
2516
+ #: ../admin/view/wp-slimstat-reports.php:1666
2517
  msgid "Content Items"
2518
  msgstr " محتوا موردها"
2519
 
2520
+ #: ../admin/view/wp-slimstat-reports.php:1668
2521
  msgid ""
2522
  "This value includes not only posts, but also custom post types, regardless "
2523
  "of their status"
2524
  msgstr "این مقدار شامل همه ارسال ها میشود"
2525
 
2526
+ #: ../admin/view/wp-slimstat-reports.php:1670
2527
  #, fuzzy
2528
  msgid "Posts"
2529
  msgstr "برترین ارسال ها"
2530
 
2531
+ #: ../admin/view/wp-slimstat-reports.php:1673
2532
  #, fuzzy
2533
  msgid "Pages"
2534
  msgstr "برترین صفحات"
2535
 
2536
+ #: ../admin/view/wp-slimstat-reports.php:1676
2537
  msgid "Attachments"
2538
  msgstr ""
2539
 
2540
+ #: ../admin/view/wp-slimstat-reports.php:1679
2541
  #, fuzzy
2542
  msgid "Revisions"
2543
  msgstr "مجوزها"
2544
 
2545
+ #: ../admin/view/wp-slimstat-reports.php:1682
2546
  #, fuzzy
2547
  msgid "Comments"
2548
  msgstr "همه نظرها"
2549
 
2550
+ #: ../admin/view/wp-slimstat-reports.php:1685
2551
  #, fuzzy
2552
  msgid "Avg Comments per Post"
2553
  msgstr "میانگین نظر برای هر ارسال"
2554
 
2555
+ #: ../admin/view/wp-slimstat-reports.php:1688
2556
  msgid "Avg Server Latency"
2557
  msgstr ""
2558
 
2559
+ #: ../admin/view/wp-slimstat-reports.php:1690
2560
  msgid ""
2561
  "Latency is the amount of time it takes for the host server to receive and "
2562
  "process a request for a page object. The amount of latency depends largely "
2563
  "on how far away the user is from the server."
2564
  msgstr ""
2565
 
2566
+ #: ../admin/view/wp-slimstat-reports.php:1733
2567
  #, fuzzy
2568
  msgid "Coordinates"
2569
  msgstr " حالت ردگیری"
2570
 
2571
+ #: ../admin/view/wp-slimstat-reports.php:1733
2572
  msgid "Date"
2573
  msgstr ""
2574
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2575
  # Unknown
2576
+ #: ../admin/view/wp-slimstat-reports.php:1749
2577
  msgid "c-xx"
2578
  msgstr "Unknown"
2579
 
2580
  # Afghanistan
2581
+ #: ../admin/view/wp-slimstat-reports.php:1749
2582
  msgid "c-af"
2583
  msgstr "Afghanistan"
2584
 
2585
  # Åland Islands
2586
+ #: ../admin/view/wp-slimstat-reports.php:1749
2587
  msgid "c-ax"
2588
  msgstr "Aland Islands"
2589
 
2590
  # Albania
2591
+ #: ../admin/view/wp-slimstat-reports.php:1749
2592
  msgid "c-al"
2593
  msgstr "Albania"
2594
 
2595
  # Algeria
2596
+ #: ../admin/view/wp-slimstat-reports.php:1749
2597
  msgid "c-dz"
2598
  msgstr "Algeria"
2599
 
2600
  # Andorra
2601
+ #: ../admin/view/wp-slimstat-reports.php:1749
2602
  msgid "c-ad"
2603
  msgstr "Andorra"
2604
 
2605
  # Angola
2606
+ #: ../admin/view/wp-slimstat-reports.php:1749
2607
  msgid "c-ao"
2608
  msgstr "Angola"
2609
 
2610
  # Anguilla
2611
+ #: ../admin/view/wp-slimstat-reports.php:1749
2612
  msgid "c-ai"
2613
  msgstr "Anguilla"
2614
 
2615
  # Antigua and Barbuda
2616
+ #: ../admin/view/wp-slimstat-reports.php:1749
2617
  msgid "c-ag"
2618
  msgstr "Antigua and Barbuda"
2619
 
2620
  # Argentina
2621
+ #: ../admin/view/wp-slimstat-reports.php:1749
2622
  msgid "c-ar"
2623
  msgstr "Argentina"
2624
 
2625
  # Armenia
2626
+ #: ../admin/view/wp-slimstat-reports.php:1749
2627
  msgid "c-am"
2628
  msgstr "Armenia"
2629
 
2630
  # Aruba
2631
+ #: ../admin/view/wp-slimstat-reports.php:1749
2632
  msgid "c-aw"
2633
  msgstr "Aruba"
2634
 
2635
  # Australia
2636
+ #: ../admin/view/wp-slimstat-reports.php:1749
2637
  msgid "c-au"
2638
  msgstr "Australia"
2639
 
2640
  # Austria
2641
+ #: ../admin/view/wp-slimstat-reports.php:1749
2642
  msgid "c-at"
2643
  msgstr "Austria"
2644
 
2645
  # Azerbaijan
2646
+ #: ../admin/view/wp-slimstat-reports.php:1749
2647
  msgid "c-az"
2648
  msgstr "Azerbaijan"
2649
 
2650
  # Bahamas
2651
+ #: ../admin/view/wp-slimstat-reports.php:1749
2652
  msgid "c-bs"
2653
  msgstr "Bahamas"
2654
 
2655
  # Bahrain
2656
+ #: ../admin/view/wp-slimstat-reports.php:1749
2657
  msgid "c-bh"
2658
  msgstr "Bahrain"
2659
 
2660
  # Bangladesh
2661
+ #: ../admin/view/wp-slimstat-reports.php:1749
2662
  msgid "c-bd"
2663
  msgstr "Bangladesh"
2664
 
2665
  # Barbados
2666
+ #: ../admin/view/wp-slimstat-reports.php:1749
2667
  msgid "c-bb"
2668
  msgstr "Barbados"
2669
 
2670
  # Belarus
2671
+ #: ../admin/view/wp-slimstat-reports.php:1749
2672
  msgid "c-by"
2673
  msgstr "Belarus"
2674
 
2675
  # Belgium
2676
+ #: ../admin/view/wp-slimstat-reports.php:1749
2677
  msgid "c-be"
2678
  msgstr "Belgium"
2679
 
2680
  # Belize
2681
+ #: ../admin/view/wp-slimstat-reports.php:1749
2682
  msgid "c-bz"
2683
  msgstr "Belize"
2684
 
2685
  # Benin
2686
+ #: ../admin/view/wp-slimstat-reports.php:1749
2687
  msgid "c-bj"
2688
  msgstr "Benin"
2689
 
2690
  # Bermuda
2691
+ #: ../admin/view/wp-slimstat-reports.php:1749
2692
  msgid "c-bm"
2693
  msgstr "Bermuda"
2694
 
2695
  # Bhutan
2696
+ #: ../admin/view/wp-slimstat-reports.php:1749
2697
  msgid "c-bt"
2698
  msgstr "Bhutan"
2699
 
2700
  # Bolivia
2701
+ #: ../admin/view/wp-slimstat-reports.php:1749
2702
  msgid "c-bo"
2703
  msgstr "Bolivia"
2704
 
2705
  # Bosnia and Herzegovina
2706
+ #: ../admin/view/wp-slimstat-reports.php:1749
2707
  msgid "c-ba"
2708
  msgstr "Bosnia and Herzegovina"
2709
 
2710
  # Botswana
2711
+ #: ../admin/view/wp-slimstat-reports.php:1749
2712
  msgid "c-bw"
2713
  msgstr "Botswana"
2714
 
2715
  # Brazil
2716
+ #: ../admin/view/wp-slimstat-reports.php:1749
2717
  msgid "c-br"
2718
  msgstr "Brazil"
2719
 
2720
  # Brunei Darussalam
2721
+ #: ../admin/view/wp-slimstat-reports.php:1749
2722
  msgid "c-bn"
2723
  msgstr "Brunei Darussalam"
2724
 
2725
  # Bulgaria
2726
+ #: ../admin/view/wp-slimstat-reports.php:1749
2727
  msgid "c-bg"
2728
  msgstr "Bulgaria"
2729
 
2730
  # Burkina Faso
2731
+ #: ../admin/view/wp-slimstat-reports.php:1749
2732
  msgid "c-bf"
2733
  msgstr "Burkina Faso"
2734
 
2735
  # Burundi
2736
+ #: ../admin/view/wp-slimstat-reports.php:1749
2737
  msgid "c-bi"
2738
  msgstr "Burundi"
2739
 
2740
  # Cambodia
2741
+ #: ../admin/view/wp-slimstat-reports.php:1749
2742
  msgid "c-kh"
2743
  msgstr "Cambodia"
2744
 
2745
  # Cameroon
2746
+ #: ../admin/view/wp-slimstat-reports.php:1749
2747
  msgid "c-cm"
2748
  msgstr "Cameroon"
2749
 
2750
  # Canada
2751
+ #: ../admin/view/wp-slimstat-reports.php:1749
2752
  msgid "c-ca"
2753
  msgstr "Canada"
2754
 
2755
  # Cape Verde
2756
+ #: ../admin/view/wp-slimstat-reports.php:1749
2757
  msgid "c-cv"
2758
  msgstr "Cape Verde"
2759
 
2760
  # Cayman Islands
2761
+ #: ../admin/view/wp-slimstat-reports.php:1749
2762
  msgid "c-ky"
2763
  msgstr "Cayman Islands"
2764
 
2765
  # Central African Republic
2766
+ #: ../admin/view/wp-slimstat-reports.php:1749
2767
  msgid "c-cf"
2768
  msgstr "Central African Republic"
2769
 
2770
  # Chad
2771
+ #: ../admin/view/wp-slimstat-reports.php:1749
2772
  msgid "c-td"
2773
  msgstr "Chad"
2774
 
2775
  # Chile
2776
+ #: ../admin/view/wp-slimstat-reports.php:1749
2777
  msgid "c-cl"
2778
  msgstr "Chile"
2779
 
2780
  # China
2781
+ #: ../admin/view/wp-slimstat-reports.php:1749
2782
  msgid "c-cn"
2783
  msgstr "China"
2784
 
2785
  # Colombia
2786
+ #: ../admin/view/wp-slimstat-reports.php:1749
2787
  msgid "c-co"
2788
  msgstr "Colombia"
2789
 
2790
  # Comoros
2791
+ #: ../admin/view/wp-slimstat-reports.php:1749
2792
  msgid "c-km"
2793
  msgstr "Comoros"
2794
 
2795
  # Congo
2796
+ #: ../admin/view/wp-slimstat-reports.php:1749
2797
  msgid "c-cg"
2798
  msgstr "Congo"
2799
 
2800
  # The Democratic Republic of the Congo
2801
+ #: ../admin/view/wp-slimstat-reports.php:1749
2802
  msgid "c-cd"
2803
  msgstr "The Democratic Republic of the Congo"
2804
 
2805
  # Costa Rica
2806
+ #: ../admin/view/wp-slimstat-reports.php:1749
2807
  msgid "c-cr"
2808
  msgstr "Costa Rica"
2809
 
2810
  # Côte d'Ivoire
2811
+ #: ../admin/view/wp-slimstat-reports.php:1749
2812
  msgid "c-ci"
2813
  msgstr "Côte d'Ivoire"
2814
 
2815
  # Croatia
2816
+ #: ../admin/view/wp-slimstat-reports.php:1749
2817
  msgid "c-hr"
2818
  msgstr "Croatia"
2819
 
2820
  # Cuba
2821
+ #: ../admin/view/wp-slimstat-reports.php:1749
2822
  msgid "c-cu"
2823
  msgstr "Cuba"
2824
 
2825
  # Cyprus
2826
+ #: ../admin/view/wp-slimstat-reports.php:1749
2827
  msgid "c-cy"
2828
  msgstr "Cyprus"
2829
 
2830
  # Czech Republic
2831
+ #: ../admin/view/wp-slimstat-reports.php:1749
2832
  msgid "c-cz"
2833
  msgstr "Czech Republic"
2834
 
2835
  # Denmark
2836
+ #: ../admin/view/wp-slimstat-reports.php:1749
2837
  msgid "c-dk"
2838
  msgstr "Denmark"
2839
 
2840
  # Djibouti
2841
+ #: ../admin/view/wp-slimstat-reports.php:1749
2842
  msgid "c-dj"
2843
  msgstr "Djibouti"
2844
 
2845
  # Dominica
2846
+ #: ../admin/view/wp-slimstat-reports.php:1749
2847
  msgid "c-dm"
2848
  msgstr "Dominica"
2849
 
2850
  # Dominican Republic
2851
+ #: ../admin/view/wp-slimstat-reports.php:1749
2852
  msgid "c-do"
2853
  msgstr "Dominican Republic"
2854
 
2855
  # Ecuador
2856
+ #: ../admin/view/wp-slimstat-reports.php:1749
2857
  msgid "c-ec"
2858
  msgstr "Ecuador"
2859
 
2860
  # Egypt
2861
+ #: ../admin/view/wp-slimstat-reports.php:1749
2862
  msgid "c-eg"
2863
  msgstr "Egypt"
2864
 
2865
  # El Salvador
2866
+ #: ../admin/view/wp-slimstat-reports.php:1749
2867
  msgid "c-sv"
2868
  msgstr "El Salvador"
2869
 
2870
  # Equatorial Guinea
2871
+ #: ../admin/view/wp-slimstat-reports.php:1749
2872
  msgid "c-gq"
2873
  msgstr "Equatorial Guinea"
2874
 
2875
  # Eritrea
2876
+ #: ../admin/view/wp-slimstat-reports.php:1749
2877
  msgid "c-er"
2878
  msgstr "Eritrea"
2879
 
2880
  # Estonia
2881
+ #: ../admin/view/wp-slimstat-reports.php:1749
2882
  msgid "c-ee"
2883
  msgstr "Estonia"
2884
 
2885
  # Ethiopia
2886
+ #: ../admin/view/wp-slimstat-reports.php:1749
2887
  msgid "c-et"
2888
  msgstr "Ethiopia"
2889
 
2890
  # Faroe Islands
2891
+ #: ../admin/view/wp-slimstat-reports.php:1749
2892
  msgid "c-fo"
2893
  msgstr "Faroe Islands"
2894
 
2895
  # Falkland Islands (Malvinas)
2896
+ #: ../admin/view/wp-slimstat-reports.php:1749
2897
  msgid "c-fk"
2898
  msgstr "Falkland Islands (Malvinas)"
2899
 
2900
  # Fiji
2901
+ #: ../admin/view/wp-slimstat-reports.php:1749
2902
  msgid "c-fj"
2903
  msgstr "Fiji"
2904
 
2905
  # Finland
2906
+ #: ../admin/view/wp-slimstat-reports.php:1749
2907
  msgid "c-fi"
2908
  msgstr "Finland"
2909
 
2910
  # France
2911
+ #: ../admin/view/wp-slimstat-reports.php:1749
2912
  msgid "c-fr"
2913
  msgstr "France"
2914
 
2915
  # French Guiana
2916
+ #: ../admin/view/wp-slimstat-reports.php:1749
2917
  msgid "c-gf"
2918
  msgstr "French Guiana"
2919
 
2920
  # Gabon
2921
+ #: ../admin/view/wp-slimstat-reports.php:1749
2922
  msgid "c-ga"
2923
  msgstr "Gabon"
2924
 
2925
  # Gambia
2926
+ #: ../admin/view/wp-slimstat-reports.php:1749
2927
  msgid "c-gm"
2928
  msgstr "Gambia"
2929
 
2930
  # Georgia
2931
+ #: ../admin/view/wp-slimstat-reports.php:1749
2932
  msgid "c-ge"
2933
  msgstr "Georgia"
2934
 
2935
  # Germany
2936
+ #: ../admin/view/wp-slimstat-reports.php:1749
2937
  msgid "c-de"
2938
  msgstr "Germany"
2939
 
2940
  # Ghana
2941
+ #: ../admin/view/wp-slimstat-reports.php:1749
2942
  msgid "c-gh"
2943
  msgstr "Ghana"
2944
 
2945
  # Greece
2946
+ #: ../admin/view/wp-slimstat-reports.php:1749
2947
  msgid "c-gr"
2948
  msgstr "Greece"
2949
 
2950
  # Greenland
2951
+ #: ../admin/view/wp-slimstat-reports.php:1749
2952
  msgid "c-gl"
2953
  msgstr "Greenland"
2954
 
2955
  # Grenada
2956
+ #: ../admin/view/wp-slimstat-reports.php:1749
2957
  msgid "c-gd"
2958
  msgstr "Grenada"
2959
 
2960
  # Guadeloupe
2961
+ #: ../admin/view/wp-slimstat-reports.php:1749
2962
  msgid "c-gp"
2963
  msgstr "Guadeloupe"
2964
 
2965
  # Guatemala
2966
+ #: ../admin/view/wp-slimstat-reports.php:1749
2967
  msgid "c-gt"
2968
  msgstr "Guatemala"
2969
 
2970
  # Guinea
2971
+ #: ../admin/view/wp-slimstat-reports.php:1749
2972
  msgid "c-gn"
2973
  msgstr "Guinea"
2974
 
2975
  # Guinea-Bissau
2976
+ #: ../admin/view/wp-slimstat-reports.php:1749
2977
  msgid "c-gw"
2978
  msgstr "Guinea-Bissau"
2979
 
2980
  # Guyana
2981
+ #: ../admin/view/wp-slimstat-reports.php:1749
2982
  msgid "c-gy"
2983
  msgstr "Guyana"
2984
 
2985
  # Haiti
2986
+ #: ../admin/view/wp-slimstat-reports.php:1749
2987
  msgid "c-ht"
2988
  msgstr "Haiti"
2989
 
2990
  # Honduras
2991
+ #: ../admin/view/wp-slimstat-reports.php:1749
2992
  msgid "c-hn"
2993
  msgstr "Honduras"
2994
 
2995
  # Hong Kong
2996
+ #: ../admin/view/wp-slimstat-reports.php:1749
2997
  msgid "c-hk"
2998
  msgstr "Hong Kong"
2999
 
3000
  # Hungary
3001
+ #: ../admin/view/wp-slimstat-reports.php:1749
3002
  msgid "c-hu"
3003
  msgstr "Hungary"
3004
 
3005
  # Iceland
3006
+ #: ../admin/view/wp-slimstat-reports.php:1749
3007
  msgid "c-is"
3008
  msgstr "Iceland"
3009
 
3010
  # India
3011
+ #: ../admin/view/wp-slimstat-reports.php:1749
3012
  msgid "c-in"
3013
  msgstr "India"
3014
 
3015
  # Indonesia
3016
+ #: ../admin/view/wp-slimstat-reports.php:1749
3017
  msgid "c-id"
3018
  msgstr "Indonesia"
3019
 
3020
  # Islamic Republic of Iran
3021
+ #: ../admin/view/wp-slimstat-reports.php:1749
3022
  msgid "c-ir"
3023
  msgstr "Islamic Republic of Iran"
3024
 
3025
  # Iraq
3026
+ #: ../admin/view/wp-slimstat-reports.php:1749
3027
  msgid "c-iq"
3028
  msgstr "Iraq"
3029
 
3030
  # Ireland
3031
+ #: ../admin/view/wp-slimstat-reports.php:1749
3032
  msgid "c-ie"
3033
  msgstr "Ireland"
3034
 
3035
  # Israel
3036
+ #: ../admin/view/wp-slimstat-reports.php:1749
3037
  msgid "c-il"
3038
  msgstr "Israel"
3039
 
3040
  # Italy
3041
+ #: ../admin/view/wp-slimstat-reports.php:1749
3042
  msgid "c-it"
3043
  msgstr "Italy"
3044
 
3045
  # Jamaica
3046
+ #: ../admin/view/wp-slimstat-reports.php:1749
3047
  msgid "c-jm"
3048
  msgstr "Jamaica"
3049
 
3050
  # Japan
3051
+ #: ../admin/view/wp-slimstat-reports.php:1749
3052
  msgid "c-jp"
3053
  msgstr "Japan"
3054
 
3055
  # Jordan
3056
+ #: ../admin/view/wp-slimstat-reports.php:1749
3057
  msgid "c-jo"
3058
  msgstr "Jordan"
3059
 
3060
  # Kazakhstan
3061
+ #: ../admin/view/wp-slimstat-reports.php:1749
3062
  msgid "c-kz"
3063
  msgstr "Kazakhstan"
3064
 
3065
  # Kenya
3066
+ #: ../admin/view/wp-slimstat-reports.php:1749
3067
  msgid "c-ke"
3068
  msgstr "Kenya"
3069
 
3070
  # Nauru
3071
+ #: ../admin/view/wp-slimstat-reports.php:1749
3072
  msgid "c-nr"
3073
  msgstr "Nauru"
3074
 
3075
  # Democratic People's Republic of Korea
3076
+ #: ../admin/view/wp-slimstat-reports.php:1749
3077
  msgid "c-kp"
3078
  msgstr "Democratic People's Republic of Korea"
3079
 
3080
  # Republic of Korea
3081
+ #: ../admin/view/wp-slimstat-reports.php:1749
3082
  msgid "c-kr"
3083
  msgstr "Republic of Korea"
3084
 
3085
+ #: ../admin/view/wp-slimstat-reports.php:1749
3086
  msgid "c-kv"
3087
  msgstr ""
3088
 
3089
  # Kuwait
3090
+ #: ../admin/view/wp-slimstat-reports.php:1749
3091
  msgid "c-kw"
3092
  msgstr "Kuwait"
3093
 
3094
  # Kyrgyzstan
3095
+ #: ../admin/view/wp-slimstat-reports.php:1749
3096
  msgid "c-kg"
3097
  msgstr "Kyrgyzstan"
3098
 
3099
  # Lao People's Democratic Republic
3100
+ #: ../admin/view/wp-slimstat-reports.php:1749
3101
  msgid "c-la"
3102
  msgstr "Lao People's Democratic Republic"
3103
 
3104
  # Latvia
3105
+ #: ../admin/view/wp-slimstat-reports.php:1749
3106
  msgid "c-lv"
3107
  msgstr "Latvia"
3108
 
3109
  # Lebanon
3110
+ #: ../admin/view/wp-slimstat-reports.php:1749
3111
  msgid "c-lb"
3112
  msgstr "Lebanon"
3113
 
3114
  # Lesotho
3115
+ #: ../admin/view/wp-slimstat-reports.php:1749
3116
  msgid "c-ls"
3117
  msgstr "Lesotho"
3118
 
3119
  # Liberia
3120
+ #: ../admin/view/wp-slimstat-reports.php:1749
3121
  msgid "c-lr"
3122
  msgstr "Liberia"
3123
 
3124
  # Libyan Arab Jamahiriya
3125
+ #: ../admin/view/wp-slimstat-reports.php:1749
3126
  msgid "c-ly"
3127
  msgstr "Libyan Arab Jamahiriya"
3128
 
3129
  # Liechtenstein
3130
+ #: ../admin/view/wp-slimstat-reports.php:1749
3131
  msgid "c-li"
3132
  msgstr "Liechtenstein"
3133
 
3134
  # Lithuania
3135
+ #: ../admin/view/wp-slimstat-reports.php:1749
3136
  msgid "c-lt"
3137
  msgstr "Lithuania"
3138
 
3139
  # Luxembourg
3140
+ #: ../admin/view/wp-slimstat-reports.php:1749
3141
  msgid "c-lu"
3142
  msgstr "Luxembourg"
3143
 
3144
  # The Former Yugoslav Republic of Macedonia
3145
+ #: ../admin/view/wp-slimstat-reports.php:1749
3146
  msgid "c-mk"
3147
  msgstr "The Former Yugoslav Republic of Macedonia"
3148
 
3149
  # Madagascar
3150
+ #: ../admin/view/wp-slimstat-reports.php:1749
3151
  msgid "c-mg"
3152
  msgstr "Madagascar"
3153
 
3154
  # Malawi
3155
+ #: ../admin/view/wp-slimstat-reports.php:1749
3156
  msgid "c-mw"
3157
  msgstr "Malawi"
3158
 
3159
  # Malaysia
3160
+ #: ../admin/view/wp-slimstat-reports.php:1749
3161
  msgid "c-my"
3162
  msgstr "Malaysia"
3163
 
3164
  # Mali
3165
+ #: ../admin/view/wp-slimstat-reports.php:1749
3166
  msgid "c-ml"
3167
  msgstr "Mali"
3168
 
3169
  # Malta
3170
+ #: ../admin/view/wp-slimstat-reports.php:1749
3171
  msgid "c-mt"
3172
  msgstr "Malta"
3173
 
3174
  # Martinique
3175
+ #: ../admin/view/wp-slimstat-reports.php:1749
3176
  msgid "c-mq"
3177
  msgstr "Martinique"
3178
 
3179
  # Mauritania
3180
+ #: ../admin/view/wp-slimstat-reports.php:1749
3181
  msgid "c-mr"
3182
  msgstr "Mauritania"
3183
 
3184
  # Mauritius
3185
+ #: ../admin/view/wp-slimstat-reports.php:1749
3186
  msgid "c-mu"
3187
  msgstr "Mauritius"
3188
 
3189
  # Mexico
3190
+ #: ../admin/view/wp-slimstat-reports.php:1749
3191
  msgid "c-mx"
3192
  msgstr "Mexico"
3193
 
3194
  # Moldova
3195
+ #: ../admin/view/wp-slimstat-reports.php:1749
3196
  msgid "c-md"
3197
  msgstr "Moldova"
3198
 
3199
  # Mongolia
3200
+ #: ../admin/view/wp-slimstat-reports.php:1749
3201
  msgid "c-mn"
3202
  msgstr "Mongolia"
3203
 
3204
  # Montenegro
3205
+ #: ../admin/view/wp-slimstat-reports.php:1749
3206
  msgid "c-me"
3207
  msgstr "Montenegro"
3208
 
3209
  # Montserrat
3210
+ #: ../admin/view/wp-slimstat-reports.php:1749
3211
  msgid "c-ms"
3212
  msgstr "Montserrat"
3213
 
3214
  # Morocco
3215
+ #: ../admin/view/wp-slimstat-reports.php:1749
3216
  msgid "c-ma"
3217
  msgstr "Morocco"
3218
 
3219
  # Mozambique
3220
+ #: ../admin/view/wp-slimstat-reports.php:1749
3221
  msgid "c-mz"
3222
  msgstr "Mozambique"
3223
 
3224
  # Myanmar
3225
+ #: ../admin/view/wp-slimstat-reports.php:1749
3226
  msgid "c-mm"
3227
  msgstr "Myanmar"
3228
 
3229
  # Namibia
3230
+ #: ../admin/view/wp-slimstat-reports.php:1749
3231
  msgid "c-na"
3232
  msgstr "Namibia"
3233
 
3234
  # Nepal
3235
+ #: ../admin/view/wp-slimstat-reports.php:1749
3236
  msgid "c-np"
3237
  msgstr "Nepal"
3238
 
3239
  # Netherlands
3240
+ #: ../admin/view/wp-slimstat-reports.php:1749
3241
  msgid "c-nl"
3242
  msgstr "Netherlands"
3243
 
3244
  # New Caledonia
3245
+ #: ../admin/view/wp-slimstat-reports.php:1749
3246
  msgid "c-nc"
3247
  msgstr "New Caledonia"
3248
 
3249
  # New Zealand
3250
+ #: ../admin/view/wp-slimstat-reports.php:1749
3251
  msgid "c-nz"
3252
  msgstr "New Zealand"
3253
 
3254
  # Nicaragua
3255
+ #: ../admin/view/wp-slimstat-reports.php:1749
3256
  msgid "c-ni"
3257
  msgstr "Nicaragua"
3258
 
3259
  # Niger
3260
+ #: ../admin/view/wp-slimstat-reports.php:1749
3261
  msgid "c-ne"
3262
  msgstr "Niger"
3263
 
3264
  # Nigeria
3265
+ #: ../admin/view/wp-slimstat-reports.php:1749
3266
  msgid "c-ng"
3267
  msgstr "Nigeria"
3268
 
3269
  # Norway
3270
+ #: ../admin/view/wp-slimstat-reports.php:1749
3271
  msgid "c-no"
3272
  msgstr "Norway"
3273
 
3274
  # Oman
3275
+ #: ../admin/view/wp-slimstat-reports.php:1749
3276
  msgid "c-om"
3277
  msgstr "Oman"
3278
 
3279
  # Pakistan
3280
+ #: ../admin/view/wp-slimstat-reports.php:1749
3281
  msgid "c-pk"
3282
  msgstr "Pakistan"
3283
 
3284
  # Palau
3285
+ #: ../admin/view/wp-slimstat-reports.php:1749
3286
  msgid "c-pw"
3287
  msgstr "Palau"
3288
 
3289
  # Occupied Palestinian Territory
3290
+ #: ../admin/view/wp-slimstat-reports.php:1749
3291
  msgid "c-ps"
3292
  msgstr "Occupied Palestinian Territory"
3293
 
3294
  # Panama
3295
+ #: ../admin/view/wp-slimstat-reports.php:1749
3296
  msgid "c-pa"
3297
  msgstr "Panama"
3298
 
3299
  # Papua New Guinea
3300
+ #: ../admin/view/wp-slimstat-reports.php:1749
3301
  msgid "c-pg"
3302
  msgstr "Papua New Guinea"
3303
 
3304
  # Paraguay
3305
+ #: ../admin/view/wp-slimstat-reports.php:1749
3306
  msgid "c-py"
3307
  msgstr "Paraguay"
3308
 
3309
  # Peru
3310
+ #: ../admin/view/wp-slimstat-reports.php:1749
3311
  msgid "c-pe"
3312
  msgstr "Peru"
3313
 
3314
  # Philippines
3315
+ #: ../admin/view/wp-slimstat-reports.php:1749
3316
  msgid "c-ph"
3317
  msgstr "Philippines"
3318
 
3319
  # Poland
3320
+ #: ../admin/view/wp-slimstat-reports.php:1749
3321
  msgid "c-pl"
3322
  msgstr "Poland"
3323
 
3324
  # Portugal
3325
+ #: ../admin/view/wp-slimstat-reports.php:1749
3326
  msgid "c-pt"
3327
  msgstr "Portugal"
3328
 
3329
  # Puerto Rico
3330
+ #: ../admin/view/wp-slimstat-reports.php:1749
3331
  msgid "c-pr"
3332
  msgstr "Puerto Rico"
3333
 
3334
  # Qatar
3335
+ #: ../admin/view/wp-slimstat-reports.php:1749
3336
  msgid "c-qa"
3337
  msgstr "Qatar"
3338
 
3339
  # Réunion
3340
+ #: ../admin/view/wp-slimstat-reports.php:1749
3341
  msgid "c-re"
3342
  msgstr "Réunion"
3343
 
3344
  # Romania
3345
+ #: ../admin/view/wp-slimstat-reports.php:1749
3346
  msgid "c-ro"
3347
  msgstr "Romania"
3348
 
3349
  # Russian Federation
3350
+ #: ../admin/view/wp-slimstat-reports.php:1749
3351
  msgid "c-ru"
3352
  msgstr "Russian Federation"
3353
 
3354
  # Rwanda
3355
+ #: ../admin/view/wp-slimstat-reports.php:1749
3356
  msgid "c-rw"
3357
  msgstr "Rwanda"
3358
 
3359
  # Saint Kitts and Nevis
3360
+ #: ../admin/view/wp-slimstat-reports.php:1749
3361
  msgid "c-kn"
3362
  msgstr "Saint Kitts and Nevis"
3363
 
3364
  # Saint Lucia
3365
+ #: ../admin/view/wp-slimstat-reports.php:1749
3366
  msgid "c-lc"
3367
  msgstr "Saint Lucia"
3368
 
3369
  # Saint Martin
3370
+ #: ../admin/view/wp-slimstat-reports.php:1749
3371
  msgid "c-mf"
3372
  msgstr "Saint Martin"
3373
 
3374
  # Saint Vincent and the Grenadines
3375
+ #: ../admin/view/wp-slimstat-reports.php:1749
3376
  msgid "c-vc"
3377
  msgstr "Saint Vincent and the Grenadines"
3378
 
3379
  # Samoa
3380
+ #: ../admin/view/wp-slimstat-reports.php:1749
3381
  msgid "c-ws"
3382
  msgstr "Samoa"
3383
 
3384
  # Sao Tome and Principe
3385
+ #: ../admin/view/wp-slimstat-reports.php:1749
3386
  msgid "c-st"
3387
  msgstr "Sao Tome and Principe"
3388
 
3389
  # Saudi Arabia
3390
+ #: ../admin/view/wp-slimstat-reports.php:1749
3391
  msgid "c-sa"
3392
  msgstr "Saudi Arabia"
3393
 
3394
  # Senegal
3395
+ #: ../admin/view/wp-slimstat-reports.php:1749
3396
  msgid "c-sn"
3397
  msgstr "Senegal"
3398
 
3399
  # Serbia
3400
+ #: ../admin/view/wp-slimstat-reports.php:1749
3401
  msgid "c-rs"
3402
  msgstr "Serbia"
3403
 
3404
  # Sierra Leone
3405
+ #: ../admin/view/wp-slimstat-reports.php:1749
3406
  msgid "c-sl"
3407
  msgstr "Sierra Leone"
3408
 
3409
  # Singapore
3410
+ #: ../admin/view/wp-slimstat-reports.php:1749
3411
  msgid "c-sg"
3412
  msgstr "Singapore"
3413
 
3414
  # Slovakia
3415
+ #: ../admin/view/wp-slimstat-reports.php:1749
3416
  msgid "c-sk"
3417
  msgstr "Slovakia"
3418
 
3419
  # Slovenia
3420
+ #: ../admin/view/wp-slimstat-reports.php:1749
3421
  msgid "c-si"
3422
  msgstr "Slovenia"
3423
 
3424
  # Solomon Islands
3425
+ #: ../admin/view/wp-slimstat-reports.php:1749
3426
  msgid "c-sb"
3427
  msgstr "Solomon Islands"
3428
 
3429
  # Somalia
3430
+ #: ../admin/view/wp-slimstat-reports.php:1749
3431
  msgid "c-so"
3432
  msgstr "Somalia"
3433
 
3434
  # South Africa
3435
+ #: ../admin/view/wp-slimstat-reports.php:1749
3436
  msgid "c-za"
3437
  msgstr "South Africa"
3438
 
3439
  # South Georgia and the South Sandwich Islands
3440
+ #: ../admin/view/wp-slimstat-reports.php:1749
3441
  msgid "c-gs"
3442
  msgstr "South Georgia and the South Sandwich Islands"
3443
 
3444
  # Spain
3445
+ #: ../admin/view/wp-slimstat-reports.php:1749
3446
  msgid "c-es"
3447
  msgstr "Spain"
3448
 
3449
  # Sri Lanka
3450
+ #: ../admin/view/wp-slimstat-reports.php:1749
3451
  msgid "c-lk"
3452
  msgstr "Sri Lanka"
3453
 
3454
+ #: ../admin/view/wp-slimstat-reports.php:1749
3455
  msgid "c-sc"
3456
  msgstr "Seychelles"
3457
 
3458
  # Sudan
3459
+ #: ../admin/view/wp-slimstat-reports.php:1749
3460
  msgid "c-sd"
3461
  msgstr "Sudan"
3462
 
3463
+ #: ../admin/view/wp-slimstat-reports.php:1749
3464
  msgid "c-ss"
3465
  msgstr ""
3466
 
3467
  # Suriname
3468
+ #: ../admin/view/wp-slimstat-reports.php:1749
3469
  msgid "c-sr"
3470
  msgstr "Suriname"
3471
 
3472
  # Svalbard and Jan Mayen
3473
+ #: ../admin/view/wp-slimstat-reports.php:1749
3474
  msgid "c-sj"
3475
  msgstr "Svalbard and Jan Mayen"
3476
 
3477
  # Swaziland
3478
+ #: ../admin/view/wp-slimstat-reports.php:1749
3479
  msgid "c-sz"
3480
  msgstr "Swaziland"
3481
 
3482
  # Sweden
3483
+ #: ../admin/view/wp-slimstat-reports.php:1749
3484
  msgid "c-se"
3485
  msgstr "Sweden"
3486
 
3487
  # Switzerland
3488
+ #: ../admin/view/wp-slimstat-reports.php:1749
3489
  msgid "c-ch"
3490
  msgstr "Switzerland"
3491
 
3492
  # Syrian Arab Republic
3493
+ #: ../admin/view/wp-slimstat-reports.php:1749
3494
  msgid "c-sy"
3495
  msgstr "Syrian Arab Republic"
3496
 
3497
  # Taiwan, Province of China
3498
+ #: ../admin/view/wp-slimstat-reports.php:1749
3499
  msgid "c-tw"
3500
  msgstr "Taiwan"
3501
 
3502
  # Tajikistan
3503
+ #: ../admin/view/wp-slimstat-reports.php:1749
3504
  msgid "c-tj"
3505
  msgstr "Tajikistan"
3506
 
3507
  # United Republic of Tanzania
3508
+ #: ../admin/view/wp-slimstat-reports.php:1749
3509
  msgid "c-tz"
3510
  msgstr "United Republic of Tanzania"
3511
 
3512
  # Thailand
3513
+ #: ../admin/view/wp-slimstat-reports.php:1749
3514
  msgid "c-th"
3515
  msgstr "Thailand"
3516
 
3517
  # Timor-Leste
3518
+ #: ../admin/view/wp-slimstat-reports.php:1749
3519
  msgid "c-tl"
3520
  msgstr "Timor-Leste"
3521
 
3522
  # Togo
3523
+ #: ../admin/view/wp-slimstat-reports.php:1749
3524
  msgid "c-tg"
3525
  msgstr "Togo"
3526
 
3527
  # Tonga
3528
+ #: ../admin/view/wp-slimstat-reports.php:1749
3529
  msgid "c-to"
3530
  msgstr "Tonga"
3531
 
3532
  # Trinidad and Tobago
3533
+ #: ../admin/view/wp-slimstat-reports.php:1749
3534
  msgid "c-tt"
3535
  msgstr "Trinidad and Tobago"
3536
 
3537
  # Tunisia
3538
+ #: ../admin/view/wp-slimstat-reports.php:1749
3539
  msgid "c-tn"
3540
  msgstr "Tunisia"
3541
 
3542
  # Turkey
3543
+ #: ../admin/view/wp-slimstat-reports.php:1749
3544
  msgid "c-tr"
3545
  msgstr "Turkey"
3546
 
3547
  # Turkmenistan
3548
+ #: ../admin/view/wp-slimstat-reports.php:1749
3549
  msgid "c-tm"
3550
  msgstr "Turkmenistan"
3551
 
3552
  # Turks and Caicos Islands
3553
+ #: ../admin/view/wp-slimstat-reports.php:1749
3554
  msgid "c-tc"
3555
  msgstr "Turks and Caicos Islands"
3556
 
3557
  # Uganda
3558
+ #: ../admin/view/wp-slimstat-reports.php:1749
3559
  msgid "c-ug"
3560
  msgstr "Uganda"
3561
 
3562
  # Ukraine
3563
+ #: ../admin/view/wp-slimstat-reports.php:1749
3564
  msgid "c-ua"
3565
  msgstr "Ukraine"
3566
 
3567
  # United Arab Emirates
3568
+ #: ../admin/view/wp-slimstat-reports.php:1749
3569
  msgid "c-ae"
3570
  msgstr "United Arab Emirates"
3571
 
3572
  # United Kingdom
3573
+ #: ../admin/view/wp-slimstat-reports.php:1749
3574
  msgid "c-gb"
3575
  msgstr "United Kingdom"
3576
 
3577
  # United States
3578
+ #: ../admin/view/wp-slimstat-reports.php:1749
3579
  msgid "c-us"
3580
  msgstr "United States"
3581
 
3582
  # Uruguay
3583
+ #: ../admin/view/wp-slimstat-reports.php:1749
3584
  msgid "c-uy"
3585
  msgstr "Uruguay"
3586
 
3587
  # Uzbekistan
3588
+ #: ../admin/view/wp-slimstat-reports.php:1749
3589
  msgid "c-uz"
3590
  msgstr "Uzbekistan"
3591
 
3592
  # Vanuatu
3593
+ #: ../admin/view/wp-slimstat-reports.php:1749
3594
  msgid "c-vu"
3595
  msgstr "Vanuatu"
3596
 
3597
  # Venezuela
3598
+ #: ../admin/view/wp-slimstat-reports.php:1749
3599
  msgid "c-ve"
3600
  msgstr "Venezuela"
3601
 
3602
  # Viet Nam
3603
+ #: ../admin/view/wp-slimstat-reports.php:1749
3604
  msgid "c-vn"
3605
  msgstr "Viet Nam"
3606
 
3607
  # British Virgin Islands
3608
+ #: ../admin/view/wp-slimstat-reports.php:1749
3609
  msgid "c-vg"
3610
  msgstr "British Virgin Islands"
3611
 
3612
  # U.S. Virgin Islands
3613
+ #: ../admin/view/wp-slimstat-reports.php:1749
3614
  msgid "c-vi"
3615
  msgstr "U.S. Virgin Islands"
3616
 
3617
  # Western Sahara
3618
+ #: ../admin/view/wp-slimstat-reports.php:1749
3619
  msgid "c-eh"
3620
  msgstr "Western Sahara"
3621
 
3622
  # Yemen
3623
+ #: ../admin/view/wp-slimstat-reports.php:1749
3624
  msgid "c-ye"
3625
  msgstr "Yemen"
3626
 
3627
  # Zambia
3628
+ #: ../admin/view/wp-slimstat-reports.php:1749
3629
  msgid "c-zm"
3630
  msgstr "Zambia"
3631
 
3632
  # Zimbabwe
3633
+ #: ../admin/view/wp-slimstat-reports.php:1749
3634
  msgid "c-zw"
3635
  msgstr "Zimbabwe"
3636
 
3637
  # Guernsey
3638
+ #: ../admin/view/wp-slimstat-reports.php:1749
3639
  msgid "c-gg"
3640
  msgstr "Guernsey"
3641
 
3642
  # Jersey
3643
+ #: ../admin/view/wp-slimstat-reports.php:1749
3644
  msgid "c-je"
3645
  msgstr "Jersey"
3646
 
3647
  # Isle of Man
3648
+ #: ../admin/view/wp-slimstat-reports.php:1749
3649
  msgid "c-im"
3650
  msgstr "Isle of Man"
3651
 
3652
  # Maldives
3653
+ #: ../admin/view/wp-slimstat-reports.php:1749
3654
  msgid "c-mv"
3655
  msgstr "Maldives"
3656
 
3657
+ #: ../admin/view/wp-slimstat-reports.php:1750
3658
  msgid "c-eu"
3659
  msgstr ""
3660
 
3661
+ #: ../admin/view/wp-slimstat-reports.php:1827
3662
  msgid "src"
3663
  msgstr "منبع"
3664
 
3665
+ #: ../admin/view/wp-slimstat-reports.php:1831
3666
  msgid "serp"
3667
  msgstr ""
3668
 
3669
+ #: ../admin/view/wp-slimstat-reports.php:1839
3670
  msgid "Go to the referring page"
3671
  msgstr "برو به صفحه ارجاع‌دهنده"
3672
 
3673
+ #: ../admin/view/wp-slimstat-reports.php:1861
3674
  msgid "Remove filter for"
3675
  msgstr "حذف فیلترها از"
3676
 
3677
+ #: ../admin/view/wp-slimstat-reports.php:1865
3678
  msgid "Save"
3679
  msgstr ""
3680
 
3681
+ #: ../admin/view/wp-slimstat-reports.php:1868
3682
  msgid "Reset All"
3683
  msgstr "بازنشانی همه"
3684
 
3685
+ #: ../admin/view/wp-slimstat-reports.php:1872
3686
  msgid "Current filters:"
3687
  msgstr "فیلترهای جاری:"
3688
 
3689
+ #: ../admin/wp-slimstat-admin.php:82
3690
+ msgid "Access Log"
3691
+ msgstr ""
3692
+
3693
+ #: ../admin/wp-slimstat-admin.php:88
3694
+ msgid "Overview"
3695
+ msgstr "مرور"
3696
+
3697
+ #: ../admin/wp-slimstat-admin.php:94
3698
+ msgid "Audience"
3699
+ msgstr ""
3700
+
3701
+ #: ../admin/wp-slimstat-admin.php:100
3702
+ msgid "Site Analysis"
3703
+ msgstr ""
3704
 
3705
+ #: ../admin/wp-slimstat-admin.php:118
 
3706
  #, fuzzy
3707
  msgid "Customize"
3708
  msgstr "سی‌اس‌اس دلخواه"
3709
 
3710
+ #: ../admin/wp-slimstat-admin.php:130
3711
+ #, fuzzy
3712
+ msgid "WordPress Dashboard"
3713
+ msgstr "تلفیق کردن وردپرس"
3714
+
3715
+ #: ../admin/wp-slimstat-admin.php:136
3716
+ #, fuzzy
3717
+ msgid "Inactive Reports"
3718
+ msgstr "تنظیم مجدد گزارش ها"
3719
+
3720
+ #: ../admin/wp-slimstat-admin.php:562
3721
+ msgid "SlimStat"
3722
+ msgstr "SlimStat"
3723
+
3724
+ #: ../admin/wp-slimstat-admin.php:620
3725
+ #, fuzzy
3726
+ msgid "Slimstat"
3727
+ msgstr "SlimStat"
3728
+
3729
+ #: ../admin/wp-slimstat-admin.php:709
3730
  #, fuzzy
3731
  msgid "Pageviews in the last "
3732
  msgstr "مشاهده صفحات (نمودار)"
3733
 
3734
+ #: ../admin/wp-slimstat-admin.php:712
3735
  #, fuzzy
3736
  msgid "Unique IPs in the last "
3737
  msgstr "آی‌پی‌های یکتا"
3738
 
3739
+ #: ../admin/wp-slimstat-admin.php:766
3740
  msgid "Show on screen"
3741
  msgstr "روی صفحه نشان بده"
3742
 
3743
+ #: ../admin/wp-slimstat-admin.php:847
3744
  msgid "Already saved"
3745
  msgstr ""
3746
 
3747
+ #: ../admin/wp-slimstat-admin.php:855
3748
  msgid "Saved"
3749
  msgstr ""
3750
 
3751
+ #: ../admin/wp-slimstat-admin.php:875
3752
  #, fuzzy
3753
  msgid "Delete this filter"
3754
  msgstr "حذف بازدید‌ها وقتی"
3755
 
3756
+ #: ../admin/wp-slimstat-admin.php:919
3757
  msgid "There was an error updating the following options:"
3758
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
3759
 
3760
+ #: ../admin/wp-slimstat-admin.php:922
3761
  #, fuzzy
3762
  msgid "Your changes have been saved."
3763
  msgstr "تنظیمات شما با موفقیت به روز شد."
3764
 
3765
+ #: ../admin/wp-slimstat-admin.php:945
3766
  msgid "Save Changes"
3767
  msgstr "ذخیره‌ی تغییرات"
3768
 
3769
+ #: ../admin/wp-slimstat-admin.php:961
3770
  msgid "Definitions"
3771
  msgstr "تعاریف"
3772
 
3773
+ #: ../admin/wp-slimstat-admin.php:964
3774
  msgid "Pageview"
3775
  msgstr "بازدید"
3776
 
3777
+ #: ../admin/wp-slimstat-admin.php:964
3778
  #, fuzzy
3779
  msgid ""
3780
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3785
  "\"hit\" تفاوت دارد. این برنامه هر بازدید را بعد از اجرای برنامه ردگیری ثبت "
3786
  "میکند. "
3787
 
3788
+ #: ../admin/wp-slimstat-admin.php:965
3789
  msgid "(Human) Visit"
3790
  msgstr "بیننده (انسانی)"
3791
 
3792
+ #: ../admin/wp-slimstat-admin.php:965
3793
  msgid ""
3794
  "A period of interaction between a visitor's browser and your website, ending "
3795
  "when the browser is closed or when the user has been inactive on that site "
3798
  "تراکنش بین مرورگر ردگیری و پایگاه شما به پایان رسید وقتی که مرورگر بسته شده "
3799
  "و یا کاربر به مدت سی دقیقه غیر فعال شده است."
3800
 
3801
+ #: ../admin/wp-slimstat-admin.php:966
3802
  msgid ""
3803
  "Any user who has left a comment on your blog, and is thus identified by "
3804
  "Wordpress as a returning visitor"
3806
  "هر کاربری که در تارنامه شما نظر گذاشته توسط وردپرس به عنوان «بیننده دوباره» "
3807
  "شناخته میشود"
3808
 
3809
+ #: ../admin/wp-slimstat-admin.php:967
3810
  msgid "Unique IP"
3811
  msgstr "آی‌پی یکتا"
3812
 
3813
+ #: ../admin/wp-slimstat-admin.php:967
3814
  msgid ""
3815
  "Used to differentiate between multiple requests to download a file from one "
3816
  "internet address (IP) and requests originating from many distinct addresses; "
3821
  "درخواست از چند آی پی ادرس مختلف میباشد؛ چون این اندازه گیری فقط نشانگر آدرس "
3822
  "هر بازدید است، مفید میباشد ولی دقیق نیست."
3823
 
3824
+ #: ../admin/wp-slimstat-admin.php:968
3825
  msgid ""
3826
  "the originating IP address of a client connecting to a web server through an "
3827
  "HTTP proxy or load balancer"
3828
  msgstr ""
3829
  "ای پی منشا که کاربر را از طریق HTTP proxy و یا load balancer مرتبط کرده"
3830
 
3831
+ #: ../admin/wp-slimstat-admin.php:969
3832
  msgid "Direct Traffic"
3833
  msgstr "ترافیک مستقیم"
3834
 
3835
+ #: ../admin/wp-slimstat-admin.php:969
3836
  msgid ""
3837
  "All those people showing up to your Web site by typing in the URL of your "
3838
  "Web site coming or from a bookmark; some people also call this \"default "
3841
  " تمامی کاربرانی که با وارد کردن نشانی مستقیم تارنما و یا استفاده از بوک مارک "
3842
  "از تارنما بازدید میکنند."
3843
 
3844
+ #: ../admin/wp-slimstat-admin.php:970
3845
  msgid "Search Engine"
3846
  msgstr "موتور جستجو"
3847
 
3848
+ #: ../admin/wp-slimstat-admin.php:970
3849
  msgid ""
3850
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3851
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3853
  "ترافیک مرتبط با نتایج موتور جستجو (organic) و همچنین ترافیک بدست آمده توسط "
3854
  "تبلیغات در موتورهای جستجو اینجا درهم است"
3855
 
3856
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
3857
  msgid "Keywords used by your visitors to find your website on a search engine"
3858
  msgstr ""
3859
  "کلمات کلیدی که کاربران شما به وسیله‌ی آن‌ها از موتورهای جستجو، پایگاه شما را "
3860
  "یافته‌اند."
3861
 
3862
+ #: ../admin/wp-slimstat-admin.php:972
3863
  msgid "SERP"
3864
  msgstr ""
3865
 
3866
+ #: ../admin/wp-slimstat-admin.php:972
3867
  msgid ""
3868
  "Short for search engine results page, the Web page that a search engine "
3869
  "returns with the results of its search. The value shown represents your rank "
3870
  "(or position) within that list of results"
3871
  msgstr " این مقدار نشان دهنده رتبه شما در فهرست نتایج موتور جستجو میباشد."
3872
 
3873
+ #: ../admin/wp-slimstat-admin.php:973
3874
  msgid ""
3875
  "Any program used for accessing a website; this includes browsers, robots, "
3876
  "spiders and any other program that was used to retrieve information from the "
3878
  msgstr ""
3879
  "هر برنامه که به تارنما دسترسی پیدا کند مثل مرورگر، روبات، خزنده، وغیره."
3880
 
3881
+ #: ../admin/wp-slimstat-admin.php:974
3882
  msgid ""
3883
  "A link from one domain to another is said to be outbound from its source "
3884
  "anchor and inbound to its target. This report lists all the links to other "
3888
  "پیوند درونی محسوب میشود. این گزارش فهرستی از تمام پیوند ها به پایگاه های "
3889
  "دیگر و کاربران است."
3890
 
3891
+ #: ../admin/wp-slimstat-admin.php:981
3892
  msgid "Basic Filters"
3893
  msgstr "پالایه های اولیه"
3894
 
3895
+ #: ../admin/wp-slimstat-admin.php:984
3896
  msgid "User agent (Firefox, Chrome, ...)"
3897
  msgstr "مرورگر کاربر (فایرفاکس، کروم و ...)"
3898
 
3899
+ #: ../admin/wp-slimstat-admin.php:985
3900
  msgid "2-letter code (us, ru, de, it, ...)"
3901
  msgstr "علامت دو حرفی (us، ir، ...)"
3902
 
3903
+ #: ../admin/wp-slimstat-admin.php:986
3904
  msgid "IP"
3905
  msgstr "آی‌پی"
3906
 
3907
+ #: ../admin/wp-slimstat-admin.php:986
3908
  msgid "Visitor's public IP address"
3909
  msgstr "نشانی‌های آی‌پی عمومی بازدیدکنندگان"
3910
 
3911
+ #: ../admin/wp-slimstat-admin.php:988
3912
  msgid ""
3913
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3914
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3917
  "لطفا به <a target=\"_blank\" href=\"http://msdn.microsoft.com/en-us/library/"
3918
  "ee825488(v=cs.20).aspx\"> فرهنگ زبان </a> برای اطلاع بیشتر مراجعه کنید"
3919
 
3920
+ #: ../admin/wp-slimstat-admin.php:989
3921
  msgid ""
3922
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3923
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3927
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\"> "
3928
  "راهنما</a> مراجعه کنید"
3929
 
3930
+ #: ../admin/wp-slimstat-admin.php:990
3931
  msgid "URL accessed on your site"
3932
  msgstr "نشانی هایی که مورد بازدید قرار گرفته"
3933
 
3934
+ #: ../admin/wp-slimstat-admin.php:991
3935
  msgid "Complete address of the referrer page"
3936
  msgstr "نشانی کامل صفحه‌ی ارجاع ‌دهنده"
3937
 
3938
+ #: ../admin/wp-slimstat-admin.php:992
3939
+ msgid "Visitor's Name"
3940
+ msgstr "نام بیننده"
3941
+
3942
+ #: ../admin/wp-slimstat-admin.php:992
3943
  msgid ""
3944
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3945
  "comment"
3947
  "اسامی بیننده بر مبنای خوراکی که بعد از گذاشتن نظر توسط وردپرس اختصاص داده "
3948
  "میشود."
3949
 
3950
+ #: ../admin/wp-slimstat-admin.php:1000
3951
  msgid "Advanced Filters"
3952
  msgstr "فیلترهای پیش‌رفته"
3953
 
3954
+ #: ../admin/wp-slimstat-admin.php:1003
3955
  msgid "user agent version (9.0, 11, ...)"
3956
  msgstr "نسخه مرورگر کاربر"
3957
 
3958
+ #: ../admin/wp-slimstat-admin.php:1004
3959
  msgid ""
3960
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3961
  "all others"
3962
  msgstr ""
3963
  "۱=خزنده‌های موتورهای جستجو، ۲=دستگاه موبایل، ۳=خوراک‌خوان، ۰=همه‌ی چیزهای دیگر"
3964
 
3965
+ #: ../admin/wp-slimstat-admin.php:1005
3966
  msgid "Pageview Attributes"
3967
  msgstr "خصوصیات بازدید"
3968
 
3969
+ #: ../admin/wp-slimstat-admin.php:1005
3970
  msgid ""
3971
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3972
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
3975
  "این ناحیه برای تنظیمات <a target=\"_blank\" href=\"https://developer.mozilla."
3976
  "org/en/Link_prefetching_FAQ\"> صفحه‌بندی </a> و یا شیوه های مشابه است."
3977
 
3978
+ #: ../admin/wp-slimstat-admin.php:1006
3979
  msgid "author associated to that post/page when the resource was accessed"
3980
  msgstr "نویسنده مرتبط با این ارسال یا صفحه وقتی این ماخذ دسترسی شد"
3981
 
3982
+ #: ../admin/wp-slimstat-admin.php:1007
3983
  msgid "ID of the category/term associated to the resource, when available"
3984
  msgstr "شناسه دسته یا عبارت که با منبع مرتبط است، اگر موجود باشد"
3985
 
3986
+ #: ../admin/wp-slimstat-admin.php:1008
3987
  msgid "visitor's originating IP address, if available"
3988
  msgstr "آی پی منشا که بیننده از آن ‌عازم شده، در صورت موجود بودن"
3989
 
3990
+ #: ../admin/wp-slimstat-admin.php:1009
3991
  msgid ""
3992
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
3993
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4000
  "target=\"_blank\" href=\"http://codex.wordpress.org/Conditional_Tags\"> "
4001
  "نشانه های شرطی</a> در صفحه راهنما مراجعه کنید."
4002
 
4003
+ #: ../admin/wp-slimstat-admin.php:1010
4004
  msgid "Screen Resolution"
4005
  msgstr "ابعاد صفحه نمایش"
4006
 
4007
+ #: ../admin/wp-slimstat-admin.php:1010
4008
  msgid "viewport width and height (1024x768, 800x600, ...)"
4009
  msgstr "ابعاد صفحه نمایش (۱۰۲۴x۷۶۸، ۸۰۰x۶۰۰، ...)"
4010
 
4011
+ #: ../admin/wp-slimstat-admin.php:1011
4012
  msgid ""
4013
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4014
  "visitors"
4016
  "معولا با ترکیب <em>خالی نیست</em> استفاده میشود و بیننده ها (انسان) را تشخیص "
4017
  "میدهد"
4018
 
4019
+ #: ../admin/wp-slimstat-admin.php:1012
4020
  msgid "Date Filters"
4021
  msgstr "فیلترهای تاریخ"
4022
 
4023
+ #: ../admin/wp-slimstat-admin.php:1012
4024
  msgid ""
4025
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4026
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4029
  "با وارد کردن اعداد در این ناحیه میتوانید یک مدت زمانی تعیین کنید؛ برای محدود "
4030
  "کردن سال به روز از -1 استفاده کنید."
4031
 
4032
+ #: ../admin/wp-slimstat-admin.php:1013
4033
  msgid "SERP Position"
4034
  msgstr "مکان SERP"
4035
 
4036
+ #: ../admin/wp-slimstat-admin.php:1013
4037
  msgid ""
4038
  "set the filter to Referer contains cd=N&, where N is the position you are "
4039
  "looking for"
4041
  "تعیین صافی برای ارجاعی هایی که شامل اِن میشوند، آنجا که اِن مکانی هست که به "
4042
  "مشخص میکنید."
4043
 
4044
+ #: ../admin/wp-slimstat-admin.php:1040
4045
  msgid "Yes"
4046
  msgstr "بلی"
4047
 
4048
+ #: ../admin/wp-slimstat-admin.php:1041
4049
  msgid "No"
4050
  msgstr "خیر"
4051
 
4052
+ #: ../admin/wp-slimstat-admin.php:1042
4053
  msgid "Site Specific"
4054
  msgstr ""
4055
 
4079
  msgstr ""
4080
 
4081
  #: ../languages/dynamic_strings.php:11
4082
+ #, fuzzy
4083
+ msgid "centos"
4084
+ msgstr "ارسال های اخیر"
4085
 
4086
  #: ../languages/dynamic_strings.php:12
4087
+ msgid "chromeos"
4088
  msgstr ""
4089
 
4090
  #: ../languages/dynamic_strings.php:13
4091
+ msgid "commodore64"
4092
  msgstr ""
4093
 
4094
  #: ../languages/dynamic_strings.php:14
4095
+ msgid "cygwin"
4096
  msgstr ""
4097
 
4098
  #: ../languages/dynamic_strings.php:15
4099
+ msgid "debian"
4100
  msgstr ""
4101
 
4102
  #: ../languages/dynamic_strings.php:16
4103
+ msgid "digital unix"
4104
  msgstr ""
4105
 
4106
  #: ../languages/dynamic_strings.php:17
4107
+ msgid "fedora"
4108
  msgstr ""
4109
 
4110
  #: ../languages/dynamic_strings.php:18
4111
+ msgid "firefoxos"
4112
+ msgstr ""
4113
 
4114
  #: ../languages/dynamic_strings.php:19
4115
+ msgid "freebsd"
4116
  msgstr ""
4117
 
4118
  #: ../languages/dynamic_strings.php:20
4119
+ msgid "gentoo"
4120
  msgstr ""
4121
 
4122
  #: ../languages/dynamic_strings.php:21
4123
+ msgid "hp-ux"
4124
  msgstr ""
4125
 
4126
  #: ../languages/dynamic_strings.php:22
4127
+ msgid "ios"
4128
+ msgstr "ios"
4129
 
4130
  #: ../languages/dynamic_strings.php:23
4131
+ msgid "iphone os"
4132
  msgstr ""
4133
 
4134
  #: ../languages/dynamic_strings.php:24
4135
+ msgid "iphone osx"
4136
  msgstr ""
4137
 
4138
  #: ../languages/dynamic_strings.php:25
4139
+ msgid "irix"
4140
  msgstr ""
4141
 
4142
  #: ../languages/dynamic_strings.php:26
4143
+ msgid "java"
4144
  msgstr ""
4145
 
4146
  #: ../languages/dynamic_strings.php:27
4147
+ msgid "kanotix"
4148
  msgstr ""
4149
 
4150
  #: ../languages/dynamic_strings.php:28
4151
+ msgid "knoppix"
4152
  msgstr ""
4153
 
4154
  #: ../languages/dynamic_strings.php:29
4155
+ msgid "linux"
4156
  msgstr ""
4157
 
4158
  #: ../languages/dynamic_strings.php:30
4159
+ msgid "mac"
4160
  msgstr ""
4161
 
4162
  #: ../languages/dynamic_strings.php:31
4163
+ msgid "mac68k"
4164
  msgstr ""
4165
 
4166
  #: ../languages/dynamic_strings.php:32
4167
+ msgid "macosx"
4168
  msgstr ""
4169
 
4170
  #: ../languages/dynamic_strings.php:33
4171
+ msgid "macppc"
4172
  msgstr ""
4173
 
4174
  #: ../languages/dynamic_strings.php:34
4175
+ msgid "mandrake"
4176
  msgstr ""
4177
 
4178
  #: ../languages/dynamic_strings.php:35
4179
+ msgid "mandriva"
4180
  msgstr ""
4181
 
4182
  #: ../languages/dynamic_strings.php:36
4183
+ msgid "mepis"
4184
  msgstr ""
4185
 
4186
  #: ../languages/dynamic_strings.php:37
4187
+ msgid "ms-dos"
4188
  msgstr ""
4189
 
4190
  #: ../languages/dynamic_strings.php:38
4191
+ msgid "netbsd"
4192
  msgstr ""
4193
 
4194
  #: ../languages/dynamic_strings.php:39
4195
+ msgid "nintendo"
4196
  msgstr ""
4197
 
4198
  #: ../languages/dynamic_strings.php:40
4199
+ msgid "openbsd"
4200
+ msgstr ""
4201
 
4202
  #: ../languages/dynamic_strings.php:41
4203
+ msgid "openvms"
4204
  msgstr ""
4205
 
4206
  #: ../languages/dynamic_strings.php:42
4207
+ msgid "os/2"
4208
  msgstr ""
4209
 
4210
  #: ../languages/dynamic_strings.php:43
4211
+ msgid "palm"
4212
  msgstr ""
4213
 
4214
  #: ../languages/dynamic_strings.php:44
4215
+ msgid "palmos"
4216
  msgstr ""
4217
 
4218
  #: ../languages/dynamic_strings.php:45
4219
+ msgid "pclinuxos"
4220
  msgstr ""
4221
 
4222
  #: ../languages/dynamic_strings.php:46
4223
+ msgid "playstation"
4224
  msgstr ""
4225
 
4226
  #: ../languages/dynamic_strings.php:47
4227
+ msgid "powertv"
4228
  msgstr ""
4229
 
4230
  #: ../languages/dynamic_strings.php:48
4231
+ msgid "redhat"
4232
  msgstr ""
4233
 
4234
+ #: ../languages/dynamic_strings.php:49
4235
+ msgid "rim os"
4236
+ msgstr ""
4237
+
4238
+ #: ../languages/dynamic_strings.php:50
4239
+ msgid "risc os"
4240
  msgstr ""
4241
 
4242
  #: ../languages/dynamic_strings.php:51
4243
+ msgid "slackware"
4244
  msgstr ""
4245
 
4246
  #: ../languages/dynamic_strings.php:52
4247
+ msgid "solaris"
4248
  msgstr ""
4249
 
4250
  #: ../languages/dynamic_strings.php:53
4251
+ msgid "sunos"
4252
  msgstr ""
4253
 
4254
  #: ../languages/dynamic_strings.php:54
4255
+ msgid "suse"
4256
  msgstr ""
4257
 
4258
  #: ../languages/dynamic_strings.php:55
4259
+ msgid "symbianos"
4260
  msgstr ""
4261
 
4262
  #: ../languages/dynamic_strings.php:56
4263
+ msgid "ubuntu"
4264
  msgstr ""
4265
 
4266
  #: ../languages/dynamic_strings.php:57
4267
+ msgid "unix"
4268
  msgstr ""
4269
 
4270
  #: ../languages/dynamic_strings.php:58
4271
+ msgid "unknown"
4272
+ msgstr "مجهول"
4273
 
4274
  #: ../languages/dynamic_strings.php:59
4275
+ msgid "xandros"
4276
  msgstr ""
4277
 
4278
  #: ../languages/dynamic_strings.php:60
4279
+ msgid "wap"
4280
  msgstr ""
4281
 
4282
  #: ../languages/dynamic_strings.php:61
4283
+ msgid "webos"
4284
  msgstr ""
4285
 
4286
  #: ../languages/dynamic_strings.php:62
4287
+ msgid "win10"
4288
  msgstr ""
4289
 
4290
  #: ../languages/dynamic_strings.php:63
4291
+ msgid "win16"
4292
  msgstr ""
4293
 
4294
  #: ../languages/dynamic_strings.php:64
4295
+ msgid "win2000"
4296
  msgstr ""
4297
 
4298
  #: ../languages/dynamic_strings.php:65
4299
+ msgid "win2003"
4300
  msgstr ""
4301
 
4302
+ #: ../languages/dynamic_strings.php:66
4303
+ msgid "win31"
4304
  msgstr ""
4305
 
4306
+ #: ../languages/dynamic_strings.php:67
4307
+ msgid "win32"
4308
+ msgstr ""
4309
+
4310
+ #: ../languages/dynamic_strings.php:68 ../languages/dynamic_strings.php:69
4311
+ msgid "win7"
4312
  msgstr ""
4313
 
4314
  #: ../languages/dynamic_strings.php:70
4315
+ msgid "win8"
4316
  msgstr ""
4317
 
4318
  #: ../languages/dynamic_strings.php:71
4319
+ msgid "win8.1"
4320
  msgstr ""
4321
 
4322
  #: ../languages/dynamic_strings.php:72
4323
+ msgid "win95"
4324
  msgstr ""
4325
 
4326
  #: ../languages/dynamic_strings.php:73
4327
+ msgid "win98"
4328
  msgstr ""
4329
 
4330
  #: ../languages/dynamic_strings.php:74
4331
+ msgid "wince"
4332
+ msgstr ""
4333
+
4334
+ #: ../languages/dynamic_strings.php:75
4335
+ msgid "winme"
4336
+ msgstr ""
4337
+
4338
+ #: ../languages/dynamic_strings.php:76
4339
+ msgid "winnt"
4340
  msgstr ""
4341
 
4342
  #: ../languages/dynamic_strings.php:77
4343
+ msgid "winphone7"
4344
  msgstr ""
4345
 
4346
  #: ../languages/dynamic_strings.php:78
4347
+ msgid "winphone7.5"
4348
  msgstr ""
4349
 
4350
  #: ../languages/dynamic_strings.php:79
4351
+ msgid "winphone8"
4352
  msgstr ""
4353
 
4354
  #: ../languages/dynamic_strings.php:80
4355
+ msgid "winphone8.1"
4356
  msgstr ""
4357
 
4358
  #: ../languages/dynamic_strings.php:81
4359
+ msgid "winrt"
4360
  msgstr ""
4361
 
4362
  #: ../languages/dynamic_strings.php:82
4363
+ msgid "winvista"
4364
  msgstr ""
4365
 
4366
  #: ../languages/dynamic_strings.php:83
4367
+ msgid "winxp"
4368
  msgstr ""
4369
 
4370
  #: ../languages/dynamic_strings.php:84
4371
+ msgid "wyderos"
4372
  msgstr ""
4373
 
4374
  #: ../languages/dynamic_strings.php:85
4375
+ msgid "zaurus"
 
 
 
 
 
 
 
 
4376
  msgstr ""
4377
 
4378
  #: ../languages/dynamic_strings.php:88
4379
+ msgid "acrobat"
4380
  msgstr ""
4381
 
4382
  #: ../languages/dynamic_strings.php:89
4383
+ msgid "director"
4384
  msgstr ""
4385
 
4386
  #: ../languages/dynamic_strings.php:90
4387
+ msgid "flash"
4388
  msgstr ""
4389
 
4390
+ #: ../languages/dynamic_strings.php:91
4391
+ msgid "mediaplayer"
4392
  msgstr ""
4393
 
4394
+ #: ../languages/dynamic_strings.php:92
4395
+ msgid "quicktime"
4396
  msgstr ""
4397
 
4398
+ #: ../languages/dynamic_strings.php:93
4399
+ msgid "real"
4400
  msgstr ""
4401
 
4402
+ #: ../languages/dynamic_strings.php:94
4403
+ msgid "silverlight"
4404
  msgstr ""
4405
 
4406
  #: ../languages/dynamic_strings.php:97
4407
+ msgid "p-and"
4408
  msgstr ""
4409
 
4410
  #: ../languages/dynamic_strings.php:98
4411
+ msgid "p-bla"
4412
  msgstr ""
4413
 
4414
  #: ../languages/dynamic_strings.php:99
4415
+ msgid "p-chr"
4416
  msgstr ""
4417
 
4418
  #: ../languages/dynamic_strings.php:100
4419
+ msgid "p-fir"
4420
  msgstr ""
4421
 
4422
  #: ../languages/dynamic_strings.php:101
4423
+ msgid "p-fre"
4424
  msgstr ""
4425
 
4426
  #: ../languages/dynamic_strings.php:102
4427
+ msgid "p-ios"
4428
  msgstr ""
4429
 
4430
  #: ../languages/dynamic_strings.php:103
4431
+ msgid "p-jav"
4432
  msgstr ""
4433
 
4434
  #: ../languages/dynamic_strings.php:104
4435
+ msgid "p-lin"
4436
  msgstr ""
4437
 
4438
  #: ../languages/dynamic_strings.php:105
4439
+ msgid "p-mac"
4440
  msgstr ""
4441
 
4442
  #: ../languages/dynamic_strings.php:106
4443
+ msgid "p-rim"
4444
  msgstr ""
4445
 
4446
  #: ../languages/dynamic_strings.php:107
4447
+ msgid "p-sym"
4448
  msgstr ""
4449
 
4450
  #: ../languages/dynamic_strings.php:108
4451
+ msgid "p-ubu"
4452
  msgstr ""
4453
 
4454
  #: ../languages/dynamic_strings.php:109
4455
+ msgid "p-unk"
4456
  msgstr ""
4457
 
4458
  #: ../languages/dynamic_strings.php:110
4459
+ msgid "p-win"
4460
  msgstr ""
4461
 
4462
+ #: ../languages/dynamic_strings.php:113
4463
+ msgid "l-af"
4464
  msgstr ""
4465
 
4466
+ #: ../languages/dynamic_strings.php:114
4467
+ msgid "l-af-za"
4468
  msgstr ""
4469
 
4470
+ #: ../languages/dynamic_strings.php:115
4471
+ msgid "l-ar"
4472
+ msgstr ""
4473
+
4474
+ #: ../languages/dynamic_strings.php:116
4475
+ msgid "l-ar-ae"
4476
+ msgstr ""
4477
+
4478
+ #: ../languages/dynamic_strings.php:117
4479
+ msgid "l-ar-bh"
4480
+ msgstr ""
4481
+
4482
+ #: ../languages/dynamic_strings.php:118
4483
+ msgid "l-ar-dz"
4484
+ msgstr ""
4485
+
4486
+ #: ../languages/dynamic_strings.php:119
4487
+ msgid "l-ar-eg"
4488
+ msgstr ""
4489
+
4490
+ #: ../languages/dynamic_strings.php:120
4491
+ msgid "l-ar-iq"
4492
+ msgstr ""
4493
+
4494
+ #: ../languages/dynamic_strings.php:121
4495
+ msgid "l-ar-jo"
4496
+ msgstr ""
4497
+
4498
+ #: ../languages/dynamic_strings.php:122
4499
+ msgid "l-ar-kw"
4500
+ msgstr ""
4501
+
4502
+ #: ../languages/dynamic_strings.php:123
4503
+ msgid "l-ar-lb"
4504
+ msgstr ""
4505
+
4506
+ #: ../languages/dynamic_strings.php:124
4507
+ msgid "l-ar-ly"
4508
+ msgstr ""
4509
+
4510
+ #: ../languages/dynamic_strings.php:125
4511
+ msgid "l-ar-ma"
4512
+ msgstr ""
4513
+
4514
+ #: ../languages/dynamic_strings.php:126
4515
+ msgid "l-ar-om"
4516
+ msgstr ""
4517
+
4518
+ #: ../languages/dynamic_strings.php:127
4519
+ msgid "l-ar-qa"
4520
+ msgstr ""
4521
+
4522
+ #: ../languages/dynamic_strings.php:128
4523
+ msgid "l-ar-sa"
4524
+ msgstr ""
4525
+
4526
+ #: ../languages/dynamic_strings.php:129
4527
+ msgid "l-ar-sy"
4528
+ msgstr ""
4529
+
4530
+ #: ../languages/dynamic_strings.php:130
4531
+ msgid "l-ar-tn"
4532
+ msgstr ""
4533
+
4534
+ #: ../languages/dynamic_strings.php:131
4535
+ msgid "l-ar-ye"
4536
+ msgstr ""
4537
+
4538
+ #: ../languages/dynamic_strings.php:132
4539
+ msgid "l-az"
4540
+ msgstr ""
4541
+
4542
+ #: ../languages/dynamic_strings.php:133
4543
  msgid "l-az-az"
4544
  msgstr ""
4545
 
4546
+ #: ../languages/dynamic_strings.php:134
4547
  msgid "l-be"
4548
  msgstr ""
4549
 
4550
+ #: ../languages/dynamic_strings.php:135
4551
  msgid "l-be-by"
4552
  msgstr ""
4553
 
4554
+ #: ../languages/dynamic_strings.php:136
4555
  msgid "l-bg"
4556
  msgstr ""
4557
 
4558
+ #: ../languages/dynamic_strings.php:137
4559
  msgid "l-bg-bg"
4560
  msgstr ""
4561
 
4562
+ #: ../languages/dynamic_strings.php:138
4563
  msgid "l-bs-ba"
4564
  msgstr ""
4565
 
4566
+ #: ../languages/dynamic_strings.php:139
4567
  msgid "l-ca"
4568
  msgstr ""
4569
 
4570
+ #: ../languages/dynamic_strings.php:140
4571
  msgid "l-ca-es"
4572
  msgstr ""
4573
 
4574
+ #: ../languages/dynamic_strings.php:141
4575
  msgid "l-cs"
4576
  msgstr ""
4577
 
4578
+ #: ../languages/dynamic_strings.php:142
4579
  msgid "l-cs-cz"
4580
  msgstr ""
4581
 
4582
+ #: ../languages/dynamic_strings.php:143
4583
  msgid "l-cy"
4584
  msgstr ""
4585
 
4586
+ #: ../languages/dynamic_strings.php:144
4587
  msgid "l-cy-gb"
4588
  msgstr ""
4589
 
4590
+ #: ../languages/dynamic_strings.php:145
4591
  msgid "l-da"
4592
  msgstr ""
4593
 
4594
+ #: ../languages/dynamic_strings.php:146
4595
  msgid "l-da-dk"
4596
  msgstr ""
4597
 
4598
+ #: ../languages/dynamic_strings.php:147
4599
  msgid "l-de"
4600
  msgstr ""
4601
 
4602
+ #: ../languages/dynamic_strings.php:148
4603
  msgid "l-de-at"
4604
  msgstr ""
4605
 
4606
+ #: ../languages/dynamic_strings.php:149
4607
  msgid "l-de-ch"
4608
  msgstr ""
4609
 
4610
+ #: ../languages/dynamic_strings.php:150
4611
  msgid "l-de-de"
4612
  msgstr ""
4613
 
4614
+ #: ../languages/dynamic_strings.php:151
4615
  msgid "l-de-li"
4616
  msgstr ""
4617
 
4618
+ #: ../languages/dynamic_strings.php:152
4619
  msgid "l-de-lu"
4620
  msgstr ""
4621
 
4622
+ #: ../languages/dynamic_strings.php:153
4623
  msgid "l-dv"
4624
  msgstr ""
4625
 
4626
+ #: ../languages/dynamic_strings.php:154
4627
  msgid "l-dv-mv"
4628
  msgstr ""
4629
 
4630
+ #: ../languages/dynamic_strings.php:155
4631
  msgid "l-el"
4632
  msgstr ""
4633
 
4634
+ #: ../languages/dynamic_strings.php:156
4635
  msgid "l-el-gr"
4636
  msgstr ""
4637
 
4638
+ #: ../languages/dynamic_strings.php:157
4639
  msgid "l-en"
4640
  msgstr ""
4641
 
4642
+ #: ../languages/dynamic_strings.php:158
4643
  msgid "l-en-au"
4644
  msgstr ""
4645
 
4646
+ #: ../languages/dynamic_strings.php:159
4647
  msgid "l-en-bz"
4648
  msgstr ""
4649
 
4650
+ #: ../languages/dynamic_strings.php:160
4651
  msgid "l-en-ca"
4652
  msgstr ""
4653
 
4654
+ #: ../languages/dynamic_strings.php:161
4655
  msgid "l-en-cb"
4656
  msgstr ""
4657
 
4658
+ #: ../languages/dynamic_strings.php:162
4659
  msgid "l-en-gb"
4660
  msgstr ""
4661
 
4662
+ #: ../languages/dynamic_strings.php:163
4663
  msgid "l-en-ie"
4664
  msgstr ""
4665
 
4666
+ #: ../languages/dynamic_strings.php:164
4667
  msgid "l-en-jm"
4668
  msgstr ""
4669
 
4670
+ #: ../languages/dynamic_strings.php:165
4671
  msgid "l-en-nz"
4672
  msgstr ""
4673
 
4674
+ #: ../languages/dynamic_strings.php:166
4675
  msgid "l-en-ph"
4676
  msgstr ""
4677
 
4678
+ #: ../languages/dynamic_strings.php:167
4679
  msgid "l-en-tt"
4680
  msgstr ""
4681
 
4682
+ #: ../languages/dynamic_strings.php:168
4683
  msgid "l-en-us"
4684
  msgstr ""
4685
 
4686
+ #: ../languages/dynamic_strings.php:169
4687
  msgid "l-en-za"
4688
  msgstr ""
4689
 
4690
+ #: ../languages/dynamic_strings.php:170
4691
  msgid "l-en-zw"
4692
  msgstr ""
4693
 
4694
+ #: ../languages/dynamic_strings.php:171
4695
  msgid "l-eo"
4696
  msgstr ""
4697
 
4698
+ #: ../languages/dynamic_strings.php:172
4699
  msgid "l-es"
4700
  msgstr ""
4701
 
4702
+ #: ../languages/dynamic_strings.php:173
4703
  msgid "l-es-ar"
4704
  msgstr ""
4705
 
4706
+ #: ../languages/dynamic_strings.php:174
4707
  msgid "l-es-bo"
4708
  msgstr ""
4709
 
4710
+ #: ../languages/dynamic_strings.php:175
4711
  msgid "l-es-cl"
4712
  msgstr ""
4713
 
4714
+ #: ../languages/dynamic_strings.php:176
4715
  msgid "l-es-co"
4716
  msgstr ""
4717
 
4718
+ #: ../languages/dynamic_strings.php:177
4719
  msgid "l-es-cr"
4720
  msgstr ""
4721
 
4722
+ #: ../languages/dynamic_strings.php:178
4723
  msgid "l-es-do"
4724
  msgstr ""
4725
 
4726
+ #: ../languages/dynamic_strings.php:179
4727
  msgid "l-es-ec"
4728
  msgstr ""
4729
 
4730
+ #: ../languages/dynamic_strings.php:180
4731
  msgid "l-es-es"
4732
  msgstr ""
4733
 
4734
+ #: ../languages/dynamic_strings.php:181
4735
  msgid "l-es-gt"
4736
  msgstr ""
4737
 
4738
+ #: ../languages/dynamic_strings.php:182
4739
  msgid "l-es-hn"
4740
  msgstr ""
4741
 
4742
+ #: ../languages/dynamic_strings.php:183
4743
  msgid "l-es-mx"
4744
  msgstr ""
4745
 
4746
+ #: ../languages/dynamic_strings.php:184
4747
  msgid "l-es-ni"
4748
  msgstr ""
4749
 
4750
+ #: ../languages/dynamic_strings.php:185
4751
  msgid "l-es-pa"
4752
  msgstr ""
4753
 
4754
+ #: ../languages/dynamic_strings.php:186
4755
  msgid "l-es-pe"
4756
  msgstr ""
4757
 
4758
+ #: ../languages/dynamic_strings.php:187
4759
  msgid "l-es-pr"
4760
  msgstr ""
4761
 
4762
+ #: ../languages/dynamic_strings.php:188
4763
  msgid "l-es-py"
4764
  msgstr ""
4765
 
4766
+ #: ../languages/dynamic_strings.php:189
4767
  msgid "l-es-sv"
4768
  msgstr ""
4769
 
4770
+ #: ../languages/dynamic_strings.php:190
4771
  msgid "l-es-uy"
4772
  msgstr ""
4773
 
4774
+ #: ../languages/dynamic_strings.php:191
4775
  msgid "l-es-ve"
4776
  msgstr ""
4777
 
4778
+ #: ../languages/dynamic_strings.php:192
4779
  msgid "l-et"
4780
  msgstr ""
4781
 
4782
+ #: ../languages/dynamic_strings.php:193
4783
  msgid "l-et-ee"
4784
  msgstr ""
4785
 
4786
+ #: ../languages/dynamic_strings.php:194
4787
  msgid "l-eu"
4788
  msgstr ""
4789
 
4790
+ #: ../languages/dynamic_strings.php:195
4791
  msgid "l-eu-es"
4792
  msgstr ""
4793
 
4794
+ #: ../languages/dynamic_strings.php:196
4795
  msgid "l-fa"
4796
  msgstr ""
4797
 
4798
+ #: ../languages/dynamic_strings.php:197
4799
  msgid "l-fa-ir"
4800
  msgstr ""
4801
 
4802
+ #: ../languages/dynamic_strings.php:198
4803
  msgid "l-fi"
4804
  msgstr ""
4805
 
4806
+ #: ../languages/dynamic_strings.php:199
4807
  msgid "l-fi-fi"
4808
  msgstr ""
4809
 
4810
+ #: ../languages/dynamic_strings.php:200
4811
  msgid "l-fo"
4812
  msgstr ""
4813
 
4814
+ #: ../languages/dynamic_strings.php:201
4815
  msgid "l-fo-fo"
4816
  msgstr ""
4817
 
4818
+ #: ../languages/dynamic_strings.php:202
4819
  msgid "l-fr"
4820
  msgstr ""
4821
 
4822
+ #: ../languages/dynamic_strings.php:203
4823
  msgid "l-fr-be"
4824
  msgstr ""
4825
 
4826
+ #: ../languages/dynamic_strings.php:204
4827
  msgid "l-fr-ca"
4828
  msgstr ""
4829
 
4830
+ #: ../languages/dynamic_strings.php:205
4831
  msgid "l-fr-ch"
4832
  msgstr ""
4833
 
4834
+ #: ../languages/dynamic_strings.php:206
4835
  msgid "l-fr-fr"
4836
  msgstr ""
4837
 
4838
+ #: ../languages/dynamic_strings.php:207
4839
  msgid "l-fr-lu"
4840
  msgstr ""
4841
 
4842
+ #: ../languages/dynamic_strings.php:208
4843
  msgid "l-fr-mc"
4844
  msgstr ""
4845
 
4846
+ #: ../languages/dynamic_strings.php:209
4847
  msgid "l-gl"
4848
  msgstr ""
4849
 
4850
+ #: ../languages/dynamic_strings.php:210
4851
  msgid "l-gl-es"
4852
  msgstr ""
4853
 
4854
+ #: ../languages/dynamic_strings.php:211
4855
  msgid "l-gu"
4856
  msgstr ""
4857
 
4858
+ #: ../languages/dynamic_strings.php:212
4859
  msgid "l-gu-in"
4860
  msgstr ""
4861
 
4862
+ #: ../languages/dynamic_strings.php:213
4863
  msgid "l-he"
4864
  msgstr ""
4865
 
4866
+ #: ../languages/dynamic_strings.php:214
4867
  msgid "l-he-il"
4868
  msgstr ""
4869
 
4870
+ #: ../languages/dynamic_strings.php:215
4871
  msgid "l-hi"
4872
  msgstr ""
4873
 
4874
+ #: ../languages/dynamic_strings.php:216
4875
  msgid "l-hi-in"
4876
  msgstr ""
4877
 
4878
+ #: ../languages/dynamic_strings.php:217
4879
  msgid "l-hr"
4880
  msgstr ""
4881
 
4882
+ #: ../languages/dynamic_strings.php:218
4883
  msgid "l-hr-ba"
4884
  msgstr ""
4885
 
4886
+ #: ../languages/dynamic_strings.php:219
4887
  msgid "l-hr-hr"
4888
  msgstr ""
4889
 
4890
+ #: ../languages/dynamic_strings.php:220
4891
  msgid "l-hu"
4892
  msgstr ""
4893
 
4894
+ #: ../languages/dynamic_strings.php:221
4895
  msgid "l-hu-hu"
4896
  msgstr ""
4897
 
4898
+ #: ../languages/dynamic_strings.php:222
4899
  msgid "l-hy"
4900
  msgstr ""
4901
 
4902
+ #: ../languages/dynamic_strings.php:223
4903
  msgid "l-hy-am"
4904
  msgstr ""
4905
 
4906
+ #: ../languages/dynamic_strings.php:224
4907
  msgid "l-id"
4908
  msgstr ""
4909
 
4910
+ #: ../languages/dynamic_strings.php:225
4911
  msgid "l-id-id"
4912
  msgstr ""
4913
 
4914
+ #: ../languages/dynamic_strings.php:226
4915
  msgid "l-is"
4916
  msgstr ""
4917
 
4918
+ #: ../languages/dynamic_strings.php:227
4919
  msgid "l-is-is"
4920
  msgstr ""
4921
 
4922
+ #: ../languages/dynamic_strings.php:228
4923
  msgid "l-it"
4924
  msgstr ""
4925
 
4926
+ #: ../languages/dynamic_strings.php:229
4927
  msgid "l-it-ch"
4928
  msgstr ""
4929
 
4930
+ #: ../languages/dynamic_strings.php:230
4931
  msgid "l-it-it"
4932
  msgstr ""
4933
 
4934
+ #: ../languages/dynamic_strings.php:231
4935
  msgid "l-ja"
4936
  msgstr ""
4937
 
4938
+ #: ../languages/dynamic_strings.php:232
4939
  msgid "l-ja-jp"
4940
  msgstr ""
4941
 
4942
+ #: ../languages/dynamic_strings.php:233
4943
  msgid "l-ka"
4944
  msgstr ""
4945
 
4946
+ #: ../languages/dynamic_strings.php:234
4947
  msgid "l-ka-ge"
4948
  msgstr ""
4949
 
4950
+ #: ../languages/dynamic_strings.php:235
4951
  msgid "l-kk"
4952
  msgstr ""
4953
 
4954
+ #: ../languages/dynamic_strings.php:236
4955
  msgid "l-kk-kz"
4956
  msgstr ""
4957
 
4958
+ #: ../languages/dynamic_strings.php:237
4959
  msgid "l-kn"
4960
  msgstr ""
4961
 
4962
+ #: ../languages/dynamic_strings.php:238
4963
  msgid "l-kn-in"
4964
  msgstr ""
4965
 
4966
+ #: ../languages/dynamic_strings.php:239
4967
  msgid "l-ko"
4968
  msgstr ""
4969
 
4970
+ #: ../languages/dynamic_strings.php:240
4971
  msgid "l-ko-kr"
4972
  msgstr ""
4973
 
4974
+ #: ../languages/dynamic_strings.php:241
4975
  msgid "l-kok"
4976
  msgstr ""
4977
 
4978
+ #: ../languages/dynamic_strings.php:242
4979
  msgid "l-kok-in"
4980
  msgstr ""
4981
 
4982
+ #: ../languages/dynamic_strings.php:243
4983
  msgid "l-ky"
4984
  msgstr ""
4985
 
4986
+ #: ../languages/dynamic_strings.php:244
4987
  msgid "l-ky-kg"
4988
  msgstr ""
4989
 
4990
+ #: ../languages/dynamic_strings.php:245
4991
  msgid "l-lt"
4992
  msgstr ""
4993
 
4994
+ #: ../languages/dynamic_strings.php:246
4995
  msgid "l-lt-lt"
4996
  msgstr ""
4997
 
4998
+ #: ../languages/dynamic_strings.php:247
4999
  msgid "l-lv"
5000
  msgstr ""
5001
 
5002
+ #: ../languages/dynamic_strings.php:248
5003
  msgid "l-lv-lv"
5004
  msgstr ""
5005
 
5006
+ #: ../languages/dynamic_strings.php:249
5007
  msgid "l-mi"
5008
  msgstr ""
5009
 
5010
+ #: ../languages/dynamic_strings.php:250
5011
  msgid "l-mi-nz"
5012
  msgstr ""
5013
 
5014
+ #: ../languages/dynamic_strings.php:251
5015
  msgid "l-mk"
5016
  msgstr ""
5017
 
5018
+ #: ../languages/dynamic_strings.php:252
5019
  msgid "l-mk-ml"
5020
  msgstr ""
5021
 
5022
+ #: ../languages/dynamic_strings.php:253
5023
  msgid "l-mn"
5024
  msgstr ""
5025
 
5026
+ #: ../languages/dynamic_strings.php:254
5027
  msgid "l-mn-mn"
5028
  msgstr ""
5029
 
5030
+ #: ../languages/dynamic_strings.php:255
5031
  msgid "l-mr"
5032
  msgstr ""
5033
 
5034
+ #: ../languages/dynamic_strings.php:256
5035
  msgid "l-mr-in"
5036
  msgstr ""
5037
 
5038
+ #: ../languages/dynamic_strings.php:257
5039
  msgid "l-ms"
5040
  msgstr ""
5041
 
5042
+ #: ../languages/dynamic_strings.php:258
5043
  msgid "l-ms-bn"
5044
  msgstr ""
5045
 
5046
+ #: ../languages/dynamic_strings.php:259
5047
  msgid "l-ms-my"
5048
  msgstr ""
5049
 
5050
+ #: ../languages/dynamic_strings.php:260
5051
  msgid "l-mt"
5052
  msgstr ""
5053
 
5054
+ #: ../languages/dynamic_strings.php:261
5055
  msgid "l-mt-mt"
5056
  msgstr ""
5057
 
5058
+ #: ../languages/dynamic_strings.php:262
5059
  msgid "l-nb"
5060
  msgstr ""
5061
 
5062
+ #: ../languages/dynamic_strings.php:263
5063
  msgid "l-nb-no"
5064
  msgstr ""
5065
 
5066
+ #: ../languages/dynamic_strings.php:264
5067
  msgid "l-nl"
5068
  msgstr ""
5069
 
5070
+ #: ../languages/dynamic_strings.php:265
5071
  msgid "l-nl-be"
5072
  msgstr ""
5073
 
5074
+ #: ../languages/dynamic_strings.php:266
5075
  msgid "l-nl-nl"
5076
  msgstr ""
5077
 
5078
+ #: ../languages/dynamic_strings.php:267
5079
  msgid "l-nn-no"
5080
  msgstr ""
5081
 
5082
+ #: ../languages/dynamic_strings.php:268
5083
  msgid "l-ns"
5084
  msgstr ""
5085
 
5086
+ #: ../languages/dynamic_strings.php:269
5087
  msgid "l-ns-za"
5088
  msgstr ""
5089
 
5090
+ #: ../languages/dynamic_strings.php:270
5091
  msgid "l-pa"
5092
  msgstr ""
5093
 
5094
+ #: ../languages/dynamic_strings.php:271
5095
  msgid "l-pa-in"
5096
  msgstr ""
5097
 
5098
+ #: ../languages/dynamic_strings.php:272
5099
  msgid "l-pl"
5100
  msgstr ""
5101
 
5102
+ #: ../languages/dynamic_strings.php:273
5103
  msgid "l-pl-pl"
5104
  msgstr ""
5105
 
5106
+ #: ../languages/dynamic_strings.php:274
5107
  msgid "l-ps"
5108
  msgstr ""
5109
 
5110
+ #: ../languages/dynamic_strings.php:275
5111
  msgid "l-ps-ar"
5112
  msgstr ""
5113
 
5114
+ #: ../languages/dynamic_strings.php:276
5115
  msgid "l-pt"
5116
  msgstr ""
5117
 
5118
+ #: ../languages/dynamic_strings.php:277
5119
  msgid "l-pt-br"
5120
  msgstr ""
5121
 
5122
+ #: ../languages/dynamic_strings.php:278
5123
  msgid "l-pt-pt"
5124
  msgstr ""
5125
 
5126
+ #: ../languages/dynamic_strings.php:279
5127
  msgid "l-qu"
5128
  msgstr ""
5129
 
5130
+ #: ../languages/dynamic_strings.php:280
5131
  msgid "l-qu-bo"
5132
  msgstr ""
5133
 
5134
+ #: ../languages/dynamic_strings.php:281
5135
  msgid "l-qu-ec"
5136
  msgstr ""
5137
 
5138
+ #: ../languages/dynamic_strings.php:282
5139
  msgid "l-qu-pe"
5140
  msgstr ""
5141
 
5142
+ #: ../languages/dynamic_strings.php:283
5143
  msgid "l-ro"
5144
  msgstr ""
5145
 
5146
+ #: ../languages/dynamic_strings.php:284
5147
  msgid "l-ro-ro"
5148
  msgstr ""
5149
 
5150
+ #: ../languages/dynamic_strings.php:285
5151
  msgid "l-ru"
5152
  msgstr ""
5153
 
5154
+ #: ../languages/dynamic_strings.php:286
5155
  msgid "l-ru-ru"
5156
  msgstr ""
5157
 
5158
+ #: ../languages/dynamic_strings.php:287
5159
  msgid "l-sa"
5160
  msgstr ""
5161
 
5162
+ #: ../languages/dynamic_strings.php:288
5163
  msgid "l-sa-in"
5164
  msgstr ""
5165
 
5166
+ #: ../languages/dynamic_strings.php:289
5167
  msgid "l-se"
5168
  msgstr ""
5169
 
5170
+ #: ../languages/dynamic_strings.php:290
5171
  msgid "l-se-fi"
5172
  msgstr ""
5173
 
5174
+ #: ../languages/dynamic_strings.php:291
5175
  msgid "l-se-no"
5176
  msgstr ""
5177
 
5178
+ #: ../languages/dynamic_strings.php:292
5179
  msgid "l-se-se"
5180
  msgstr ""
5181
 
5182
+ #: ../languages/dynamic_strings.php:293
5183
  msgid "l-sk"
5184
  msgstr ""
5185
 
5186
+ #: ../languages/dynamic_strings.php:294
5187
  msgid "l-sk-sk"
5188
  msgstr ""
5189
 
5190
+ #: ../languages/dynamic_strings.php:295
5191
  msgid "l-sl"
5192
  msgstr ""
5193
 
5194
+ #: ../languages/dynamic_strings.php:296
5195
  msgid "l-sl-si"
5196
  msgstr ""
5197
 
5198
+ #: ../languages/dynamic_strings.php:297
5199
  msgid "l-sq"
5200
  msgstr ""
5201
 
5202
+ #: ../languages/dynamic_strings.php:298
5203
  msgid "l-sq-al"
5204
  msgstr ""
5205
 
5206
+ #: ../languages/dynamic_strings.php:299
5207
  msgid "l-sr-ba"
5208
  msgstr ""
5209
 
5210
+ #: ../languages/dynamic_strings.php:300
5211
  msgid "l-sr-sp"
5212
  msgstr ""
5213
 
5214
+ #: ../languages/dynamic_strings.php:301
5215
  msgid "l-sv"
5216
  msgstr ""
5217
 
5218
+ #: ../languages/dynamic_strings.php:302
5219
  msgid "l-sv-fi"
5220
  msgstr ""
5221
 
5222
+ #: ../languages/dynamic_strings.php:303
5223
  msgid "l-sv-se"
5224
  msgstr ""
5225
 
5226
+ #: ../languages/dynamic_strings.php:304
5227
  msgid "l-sw"
5228
  msgstr ""
5229
 
5230
+ #: ../languages/dynamic_strings.php:305
5231
  msgid "l-sw-ke"
5232
  msgstr ""
5233
 
5234
+ #: ../languages/dynamic_strings.php:306
5235
  msgid "l-ta"
5236
  msgstr ""
5237
 
5238
+ #: ../languages/dynamic_strings.php:307
5239
  msgid "l-ta-in"
5240
  msgstr ""
5241
 
5242
+ #: ../languages/dynamic_strings.php:308
5243
  msgid "l-te"
5244
  msgstr ""
5245
 
5246
+ #: ../languages/dynamic_strings.php:309
5247
  msgid "l-te-in"
5248
  msgstr ""
5249
 
5250
+ #: ../languages/dynamic_strings.php:310
5251
  msgid "l-th"
5252
  msgstr ""
5253
 
5254
+ #: ../languages/dynamic_strings.php:311
5255
  msgid "l-th-th"
5256
  msgstr ""
5257
 
5258
+ #: ../languages/dynamic_strings.php:312
5259
  msgid "l-tl"
5260
  msgstr ""
5261
 
5262
+ #: ../languages/dynamic_strings.php:313
5263
  msgid "l-tl-ph"
5264
  msgstr ""
5265
 
5266
+ #: ../languages/dynamic_strings.php:314
5267
  msgid "l-tn"
5268
  msgstr ""
5269
 
5270
+ #: ../languages/dynamic_strings.php:315
5271
  msgid "l-tn-za"
5272
  msgstr ""
5273
 
5274
+ #: ../languages/dynamic_strings.php:316
5275
  msgid "l-tr"
5276
  msgstr ""
5277
 
5278
+ #: ../languages/dynamic_strings.php:317
5279
  msgid "l-tr-tr"
5280
  msgstr ""
5281
 
5282
+ #: ../languages/dynamic_strings.php:318
5283
  msgid "l-tt"
5284
  msgstr ""
5285
 
5286
+ #: ../languages/dynamic_strings.php:319
5287
  msgid "l-tt-ru"
5288
  msgstr ""
5289
 
5290
+ #: ../languages/dynamic_strings.php:320
5291
  msgid "l-ts"
5292
  msgstr ""
5293
 
5294
+ #: ../languages/dynamic_strings.php:321
5295
  msgid "l-uk"
5296
  msgstr ""
5297
 
5298
+ #: ../languages/dynamic_strings.php:322
5299
  msgid "l-uk-ua"
5300
  msgstr ""
5301
 
5302
+ #: ../languages/dynamic_strings.php:323
5303
  msgid "l-ur"
5304
  msgstr ""
5305
 
5306
+ #: ../languages/dynamic_strings.php:324
5307
  msgid "l-ur-pk"
5308
  msgstr ""
5309
 
5310
+ #: ../languages/dynamic_strings.php:325
5311
  msgid "l-uz"
5312
  msgstr ""
5313
 
5314
+ #: ../languages/dynamic_strings.php:326
5315
  msgid "l-uz-uz"
5316
  msgstr ""
5317
 
5318
+ #: ../languages/dynamic_strings.php:327
5319
  msgid "l-vi"
5320
  msgstr ""
5321
 
5322
+ #: ../languages/dynamic_strings.php:328
5323
  msgid "l-vi-vn"
5324
  msgstr ""
5325
 
5326
+ #: ../languages/dynamic_strings.php:329
5327
  msgid "l-xh"
5328
  msgstr ""
5329
 
5330
+ #: ../languages/dynamic_strings.php:330
5331
  msgid "l-xh-za"
5332
  msgstr ""
5333
 
5334
+ #: ../languages/dynamic_strings.php:331
5335
  msgid "l-zh"
5336
  msgstr ""
5337
 
5338
+ #: ../languages/dynamic_strings.php:332
5339
  msgid "l-zh-cn"
5340
  msgstr ""
5341
 
5342
+ #: ../languages/dynamic_strings.php:333
5343
  msgid "l-zh-hk"
5344
  msgstr ""
5345
 
5346
+ #: ../languages/dynamic_strings.php:334
5347
  msgid "l-zh-mo"
5348
  msgstr ""
5349
 
5350
+ #: ../languages/dynamic_strings.php:335
5351
  msgid "l-zh-sg"
5352
  msgstr ""
5353
 
5354
+ #: ../languages/dynamic_strings.php:336
5355
  msgid "l-zh-tw"
5356
  msgstr ""
5357
 
5358
+ #: ../languages/dynamic_strings.php:337
5359
  msgid "l-zu"
5360
  msgstr ""
5361
 
5362
+ #: ../languages/dynamic_strings.php:338
5363
  msgid "l-zu-za"
5364
  msgstr ""
5365
 
5366
+ #: ../languages/dynamic_strings.php:340
5367
  msgid "l-empty"
5368
  msgstr "ناشناخته"
5369
 
5370
+ #: ../languages/dynamic_strings.php:341
5371
  msgid "l-xx"
5372
  msgstr ""
5373
 
5374
+ #: ../languages/dynamic_strings.php:343
5375
  msgid "c-xy"
5376
  msgstr "آدرس محلی"
5377
 
5378
+ #: ../wp-slimstat.php:237 ../wp-slimstat.php:524
5379
  msgid "Notice: Pageview filtered by third-party code"
5380
  msgstr ""
5381
 
5382
+ #: ../wp-slimstat.php:254
5383
  #, fuzzy, php-format
5384
  msgid "Error: Malformed URL %s"
5385
  msgstr "کاربران را نادیده بگیر"
5386
 
5387
+ #: ../wp-slimstat.php:278
5388
  #, php-format
5389
  msgid "Notice: Referrer %s is blacklisted"
5390
  msgstr ""
5391
 
5392
+ #: ../wp-slimstat.php:356
5393
  #, php-format
5394
  msgid "Notice: Permalink %s is blacklisted"
5395
  msgstr ""
5396
 
5397
+ #: ../wp-slimstat.php:367
5398
  msgid "Error: Empty or not supported IP address format (IPv6)"
5399
  msgstr ""
5400
 
5401
+ #: ../wp-slimstat.php:376
5402
  #, php-format
5403
  msgid "Notice: Logged in user %s not tracked"
5404
  msgstr ""
5405
 
5406
+ #: ../wp-slimstat.php:384
5407
  #, php-format
5408
  msgid "Notice: User with capability %s not tracked"
5409
  msgstr ""
5410
 
5411
+ #: ../wp-slimstat.php:394
5412
  #, php-format
5413
  msgid "Notice: User %s is blacklisted"
5414
  msgstr ""
5415
 
5416
+ #: ../wp-slimstat.php:415
5417
  #, fuzzy, php-format
5418
  msgid "Notice: Spammer %s not tracked"
5419
  msgstr "روبات یا خزنده"
5420
 
5421
+ #: ../wp-slimstat.php:444
5422
  #, php-format
5423
  msgid "Notice: IP address %s is blacklisted"
5424
  msgstr ""
5425
 
5426
+ #: ../wp-slimstat.php:473
5427
  #, php-format
5428
  msgid "Notice: Country %s is blacklisted"
5429
  msgstr ""
5430
 
5431
+ #: ../wp-slimstat.php:482
5432
  #, fuzzy
5433
  msgid "Notice: Prefetch requests are ignored"
5434
  msgstr "نادیده گرفتن درخواست صفحه‌بندی"
5435
 
5436
+ #: ../wp-slimstat.php:498
5437
  #, fuzzy
5438
  msgid "Notice: Bot not tracked"
5439
  msgstr "روبات یا خزنده"
5440
 
5441
+ #: ../wp-slimstat.php:507
5442
  #, php-format
5443
  msgid "Notice: Browser %s is blacklisted"
5444
  msgstr ""
5445
 
5446
+ #: ../wp-slimstat.php:537
5447
  msgid "Error:"
5448
  msgstr ""
5449
 
5450
+ #: ../wp-slimstat.php:1153
5451
  msgid "Invalid payload string. Try clearing your WordPress cache."
5452
  msgstr ""
5453
 
5454
+ #: ../wp-slimstat.php:1163
5455
  msgid "Invalid data signature. Try clearing your WordPress cache."
5456
  msgstr ""
5457
 
5458
+ #: ../wp-slimstat.php:1235
5459
  #, fuzzy
5460
  msgid "There was an error downloading the MaxMind Geolite DB:"
5461
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5462
 
5463
+ #: ../wp-slimstat.php:1243 ../wp-slimstat.php:1252
5464
  #, fuzzy
5465
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5466
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5467
 
5468
+ #: ../wp-slimstat.php:1247
5469
  msgid "Function gzopen not defined. Aborting."
5470
  msgstr ""
5471
 
5472
+ #: ../wp-slimstat.php:1257
5473
  #, fuzzy
5474
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5475
  msgstr "خطایی در به‌روزرسانی این موارد رخ داد:"
5476
 
5477
+ #, fuzzy
5478
+ #~ msgid "Delete records"
5479
+ #~ msgstr "اطلاعات"
5480
+
5481
+ #, fuzzy
5482
+ #~ msgid "recorded on"
5483
+ #~ msgstr "اطلاعات"
5484
+
5485
+ #, fuzzy
5486
+ #~ msgid "Import old data"
5487
+ #~ msgstr "وارد و صادر"
5488
+
5489
+ #~ msgid "Top Traffic Sources"
5490
+ #~ msgstr "برترین منابع ترافیک"
5491
+
5492
  #~ msgid "Ignore users (username not found)"
5493
  #~ msgstr "نادیده گرفتن کاربر(شناسه کاربر یافت نشد)"
5494
 
languages/wp-slimstat-fr_CA.mo CHANGED
Binary file
languages/wp-slimstat-fr_CA.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-24 09:22-0500\n"
6
- "PO-Revision-Date: 2015-12-24 09:22-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../admin/config/index.php:50
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -26,11 +26,11 @@ msgstr ""
26
  "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
27
  "d'informations"
28
 
29
- #: ../admin/config/index.php:65
30
  msgid "Read access: username not found"
31
  msgstr "Accès lecture : username inexistant"
32
 
33
- #: ../admin/config/index.php:75 ../admin/config/index.php:100
34
  msgid ""
35
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
36
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -40,34 +40,34 @@ msgstr ""
40
  "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
41
  "d'informations"
42
 
43
- #: ../admin/config/index.php:90
44
  msgid "Config access: username not found"
45
  msgstr "Accès configuration : username inexistant"
46
 
47
- #: ../admin/config/index.php:109
48
  msgid "Basic"
49
  msgstr ""
50
 
51
- #: ../admin/config/index.php:111 ../admin/config/index.php:132
52
  msgid "Tracker"
53
  msgstr "Traçage"
54
 
55
- #: ../admin/config/index.php:112
56
  msgid "Enable Tracking"
57
  msgstr "Activer le traçage"
58
 
59
- #: ../admin/config/index.php:112
60
  #, fuzzy
61
  msgid "Turn the tracker on or off, while keeping the reports accessible."
62
  msgstr ""
63
  "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
64
  "que vous n'auriez pas si vous désactiviez le plugin.)"
65
 
66
- #: ../admin/config/index.php:113
67
  msgid "Tracking Mode"
68
  msgstr "Mode traçage"
69
 
70
- #: ../admin/config/index.php:113
71
  #, fuzzy
72
  msgid ""
73
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
@@ -82,64 +82,64 @@ msgstr ""
82
  "ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
83
  "recherche et autres robots ne seront pas suivis."
84
 
85
- #: ../admin/config/index.php:113
86
  msgid "Client Side"
87
  msgstr ""
88
 
89
- #: ../admin/config/index.php:113
90
  #, fuzzy
91
  msgid "Server Side"
92
  msgstr "Côté serveur"
93
 
94
- #: ../admin/config/index.php:114
95
  msgid "Stealth Mode"
96
  msgstr ""
97
 
98
- #: ../admin/config/index.php:114
99
  msgid ""
100
  "Do not add the javascript tracking code to your pages, if tracking mode is "
101
  "set to Server. Please note: if enabled, this will prevent the tracker from "
102
  "collecting information such as screen resolution, outbound links, downloads, "
103
- "etc. This option is ignored is Tracking Mode is set to Client."
104
  msgstr ""
105
 
106
- #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
107
  msgid "Off"
108
  msgstr ""
109
 
110
- #: ../admin/config/index.php:114
111
  msgid "On"
112
  msgstr "Actif"
113
 
114
- #: ../admin/config/index.php:115
115
  #, fuzzy
116
  msgid "Admin Pages"
117
  msgstr "Tracer les pages Administrateur"
118
 
119
- #: ../admin/config/index.php:115
120
  msgid "Enable this option to track your users' activity within the admin."
121
  msgstr ""
122
  "Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
123
 
124
- #: ../admin/config/index.php:115
125
  #, fuzzy
126
  msgid "Track"
127
  msgstr "Traçage"
128
 
129
- #: ../admin/config/index.php:115
130
  #, fuzzy
131
  msgid "Do not track"
132
  msgstr "ne contient pas"
133
 
134
- #: ../admin/config/index.php:117
135
  msgid "WordPress Integration"
136
  msgstr "Intégration WordPress"
137
 
138
- #: ../admin/config/index.php:118
139
  msgid "Menu Position"
140
  msgstr "Position du Menu"
141
 
142
- #: ../admin/config/index.php:118
143
  msgid ""
144
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
145
  "admin bar (if visible)."
@@ -147,20 +147,20 @@ msgstr ""
147
  "Choisir entre un menu d'administration dans la barre latérale de WordPress "
148
  "ou un menu déroulant dans la barre supérieure (si elle est affichée)."
149
 
150
- #: ../admin/config/index.php:118
151
  msgid "Side Menu"
152
  msgstr "Menu latéral"
153
 
154
- #: ../admin/config/index.php:118
155
  msgid "Admin Bar"
156
  msgstr "Barre d'Administration"
157
 
158
- #: ../admin/config/index.php:119
159
  #, fuzzy
160
  msgid "Posts and Pages"
161
  msgstr "Etendre les Stats aux articles"
162
 
163
- #: ../admin/config/index.php:119
164
  #, fuzzy
165
  msgid ""
166
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
@@ -169,75 +169,75 @@ msgstr ""
169
  "Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
170
  "de visites par article (peut ralentir le rendu des pages)."
171
 
172
- #: ../admin/config/index.php:120
173
  #, fuzzy
174
  msgid "Report Interval"
175
  msgstr "Intervalle unique"
176
 
177
- #: ../admin/config/index.php:120
178
  msgid ""
179
  "Enter the time range, in days, that should be used to calculate the value "
180
  "here above."
181
  msgstr ""
182
 
183
- #: ../admin/config/index.php:121
184
  #, fuzzy
185
  msgid "Report Type"
186
  msgstr "Rapports"
187
 
188
- #: ../admin/config/index.php:121
189
  msgid ""
190
  "Select what kind of information you would like to see displayed on the Posts "
191
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
192
  "IPs consider only one hit per user in the given time range."
193
  msgstr ""
194
 
195
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
196
- #: ../admin/view/wp-slimstat-reports.php:109
197
- #: ../admin/view/wp-slimstat-reports.php:1375
198
- #: ../admin/view/wp-slimstat-reports.php:1533
199
  msgid "Pageviews"
200
  msgstr "Pages vues"
201
 
202
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
203
- #: ../admin/view/wp-slimstat-reports.php:286
204
- #: ../admin/view/wp-slimstat-reports.php:526
205
- #: ../admin/view/wp-slimstat-reports.php:1390
206
- #: ../admin/view/wp-slimstat-reports.php:1435
207
  msgid "Unique IPs"
208
  msgstr "IPs uniques"
209
 
210
- #: ../admin/config/index.php:122
211
  msgid "Dashboard Widgets"
212
  msgstr ""
213
 
214
- #: ../admin/config/index.php:122
215
  msgid ""
216
  "Choose if you want to have the most important reports on your WordPress "
217
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
218
  msgstr ""
219
 
220
- #: ../admin/config/index.php:123
221
  #, fuzzy
222
  msgid "Hide Add-ons"
223
  msgstr "Add-ons"
224
 
225
- #: ../admin/config/index.php:123
226
  msgid ""
227
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
228
  "from the list of plugins in WordPress. Please note that you will still "
229
  "receive updates for hidden add-ons."
230
  msgstr ""
231
 
232
- #: ../admin/config/index.php:125
233
  msgid "Database"
234
  msgstr "Base de données"
235
 
236
- #: ../admin/config/index.php:126
237
  msgid "Retain data for"
238
  msgstr "Conserver les données pour"
239
 
240
- #: ../admin/config/index.php:126
241
  #, fuzzy
242
  msgid ""
243
  "Clean-up log entries older than the number of days specified here above. "
@@ -248,11 +248,11 @@ msgstr ""
248
  "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
249
  "conserver toutes vos données sans limites de durée."
250
 
251
- #: ../admin/config/index.php:126
252
  msgid "Next clean-up on"
253
  msgstr "Prochain nettoyage le"
254
 
255
- #: ../admin/config/index.php:126
256
  #, fuzzy, php-format
257
  msgid ""
258
  "Entries logged on or before %s will be archived or deleted according to the "
@@ -260,18 +260,18 @@ msgid ""
260
  msgstr ""
261
  "Les données enregistrées le ou avant le %s seront définitivement supprimées. "
262
 
263
- #: ../admin/config/index.php:126 ../admin/view/index.php:102
264
  #: ../admin/view/wp-slimstat-db.php:79
265
- #: ../admin/view/wp-slimstat-reports.php:1359
266
  msgid "days"
267
  msgstr "jours"
268
 
269
- #: ../admin/config/index.php:127
270
  #, fuzzy
271
- msgid "Delete records"
272
- msgstr "Filtrer les pages vues pour que"
273
 
274
- #: ../admin/config/index.php:127
275
  msgid ""
276
  "If DB space is not an issue, you can decide to archive older records in "
277
  "another table, instead of deleting them. This way performance is preserved, "
@@ -281,16 +281,16 @@ msgid ""
281
  "is uninstalled. Make sure to backup your data before you proceed."
282
  msgstr ""
283
 
284
- #: ../admin/config/index.php:134
285
  #, fuzzy
286
  msgid "Advanced Options"
287
  msgstr "Filtres Avancés"
288
 
289
- #: ../admin/config/index.php:135
290
  msgid "Session Duration"
291
  msgstr "Durée session"
292
 
293
- #: ../admin/config/index.php:135
294
  msgid ""
295
  "How many seconds should a human session last? Google Analytics sets it to "
296
  "1800 seconds."
@@ -298,25 +298,51 @@ msgstr ""
298
  "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
299
  "fixe cette durée à 1800 secondes."
300
 
301
- #: ../admin/config/index.php:135 ../admin/config/index.php:205
302
  msgid "seconds"
303
  msgstr "secondes"
304
 
305
- #: ../admin/config/index.php:136
306
  msgid "Extend Session"
307
  msgstr "Etendre la session"
308
 
309
- #: ../admin/config/index.php:136
310
  msgid "Extend the duration of a session each time the user visits a new page."
311
  msgstr ""
312
  "Prolonger la durée d'une session à chaque fois que l'utilisateur visite une "
313
  "page."
314
 
315
- #: ../admin/config/index.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  msgid "Enable CDN"
317
  msgstr "Activer CDN"
318
 
319
- #: ../admin/config/index.php:137
320
  msgid ""
321
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
322
  "by serving our tracking code from their fast and reliable network (free "
@@ -326,11 +352,11 @@ msgstr ""
326
  "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
327
  "rapide et fiable."
328
 
329
- #: ../admin/config/index.php:138
330
  msgid "Extensions to Track"
331
  msgstr "Extensions du traçage"
332
 
333
- #: ../admin/config/index.php:138
334
  msgid ""
335
  "List all the file extensions that you want to be treated as Downloads. "
336
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -345,16 +371,16 @@ msgstr ""
345
  "comme liens sortants (et suivis en tant que tel), si leur extension "
346
  "correspond à l'une de celles qui sont énumérées ci-dessous."
347
 
348
- #: ../admin/config/index.php:140
349
  #, fuzzy
350
  msgid "Internal and Outbound Links"
351
  msgstr "Liens sortants récents"
352
 
353
- #: ../admin/config/index.php:141
354
  msgid "Track Outbound Clicks"
355
  msgstr "Tracer les liens sortants"
356
 
357
- #: ../admin/config/index.php:141
358
  msgid ""
359
  "Track when your visitors click on link to external websites. This option "
360
  "required Spy Mode to be enabled."
@@ -362,23 +388,23 @@ msgstr ""
362
  "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
363
  "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
364
 
365
- #: ../admin/config/index.php:142
366
  #, fuzzy
367
  msgid "Track Coordinates"
368
  msgstr "Mode traçage"
369
 
370
- #: ../admin/config/index.php:142
371
  msgid ""
372
  "Collect mouse coordinates and other information for clicks on internal "
373
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
374
  "this information is only collected for external links."
375
  msgstr ""
376
 
377
- #: ../admin/config/index.php:143
378
  msgid "No Callback"
379
  msgstr ""
380
 
381
- #: ../admin/config/index.php:143
382
  msgid ""
383
  "Track the event but do not invoke the callback function on links marked with "
384
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
@@ -386,22 +412,22 @@ msgid ""
386
  "prevent conflicts with lightbox and similar libraries."
387
  msgstr ""
388
 
389
- #: ../admin/config/index.php:144
390
  msgid "Do Not Track"
391
  msgstr ""
392
 
393
- #: ../admin/config/index.php:144
394
  msgid ""
395
  "Do not track links marked with one of these class names, <em>rel</em> "
396
  "attributes or whose <em>href</em> attribute contains one of these strings "
397
  "(separated by comma)."
398
  msgstr ""
399
 
400
- #: ../admin/config/index.php:146
401
  msgid "Pages not belonging to this site"
402
  msgstr ""
403
 
404
- #: ../admin/config/index.php:147
405
  #, fuzzy
406
  msgid ""
407
  "Add the following code to all the non-WP pages you want to track, right "
@@ -411,12 +437,12 @@ msgstr ""
411
  "Ajouter le code suivant à toutes les pages non-WordPress que vous souhaitez "
412
  "suivre."
413
 
414
- #: ../admin/config/index.php:157
415
  #, fuzzy
416
  msgid "Allow External Domains"
417
  msgstr "Liens externes hostiles"
418
 
419
- #: ../admin/config/index.php:157
420
  msgid ""
421
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
422
  "header is present on the requested resource, when using the external "
@@ -427,16 +453,16 @@ msgid ""
427
  "security implications of allowing CORS requests."
428
  msgstr ""
429
 
430
- #: ../admin/config/index.php:158 ../admin/config/index.php:180
431
- #: ../admin/config/index.php:208
432
  msgid "Miscellaneous"
433
  msgstr "Divers"
434
 
435
- #: ../admin/config/index.php:159
436
  msgid "Enable UAN"
437
  msgstr "Activer UAN"
438
 
439
- #: ../admin/config/index.php:159
440
  msgid ""
441
  "Send anonymous data about user agents to our server for analysis. This "
442
  "allows us to contribute to the <a href='http://browscap.org/' "
@@ -449,28 +475,28 @@ msgstr ""
449
  "browscap.org/' target='_blank'> projet opensource BrowsCap, et d'améliorer "
450
  "la pertinence de la fonctionnalité de WPStats concernant les navigateurs web."
451
 
452
- #: ../admin/config/index.php:164
453
  msgid "Filters"
454
  msgstr "Filtres"
455
 
456
- #: ../admin/config/index.php:166
457
  #, fuzzy
458
  msgid "Do not track settings"
459
  msgstr "ne contient pas"
460
 
461
- #: ../admin/config/index.php:167
462
  msgid "Track Registered Users"
463
  msgstr "Tracer les utilisateurs enregistrés"
464
 
465
- #: ../admin/config/index.php:167
466
  msgid "Enable this option to track logged in users."
467
  msgstr "Activez cette option pour tracer les utilisateurs connectés"
468
 
469
- #: ../admin/config/index.php:168
470
  msgid "Blacklist by Username"
471
  msgstr "Liste noire basée sur le nom d'utilisateur"
472
 
473
- #: ../admin/config/index.php:168
474
  #, fuzzy
475
  msgid ""
476
  "List all the usernames you don't want to track, separated by commas. Please "
@@ -488,11 +514,11 @@ msgstr ""
488
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
489
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
490
 
491
- #: ../admin/config/index.php:169
492
  msgid "Blacklist by IP Address"
493
  msgstr "Liste noire par adresse IP"
494
 
495
- #: ../admin/config/index.php:169
496
  msgid ""
497
  "List all the IP addresses you don't want to track, separated by commas. Each "
498
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -507,11 +533,11 @@ msgstr ""
507
  "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
508
  "pas suivre correctement les pages vues."
509
 
510
- #: ../admin/config/index.php:170
511
  msgid "Blacklist by Capability"
512
  msgstr "Blacklister par Capabilité WordPress"
513
 
514
- #: ../admin/config/index.php:170
515
  msgid ""
516
  "Users having at least one of the <a href='http://codex.wordpress.org/"
517
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -521,15 +547,15 @@ msgstr ""
521
  "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
522
  "seront pas suivis. Les capacités sont insensibles à la casse."
523
 
524
- #: ../admin/config/index.php:172
525
  msgid "Profiling"
526
  msgstr "Profiling"
527
 
528
- #: ../admin/config/index.php:173
529
  msgid "Ignore Spammers"
530
  msgstr "Ignorer les spammeurs"
531
 
532
- #: ../admin/config/index.php:173
533
  msgid ""
534
  "Enable this option if you don't want to track visits from users identified "
535
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -541,12 +567,12 @@ msgstr ""
541
  "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
542
  "comme spam par vous, seront également supprimées de la base."
543
 
544
- #: ../admin/config/index.php:174
545
  #, fuzzy
546
  msgid "Ignore Bots"
547
  msgstr "Ignorer les utilisateurs"
548
 
549
- #: ../admin/config/index.php:174
550
  msgid ""
551
  "Turn on this feature if you want to have the accuracy level of server-side "
552
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -554,11 +580,11 @@ msgid ""
554
  "note that in Client mode, bots are ignored regardless of this setting."
555
  msgstr ""
556
 
557
- #: ../admin/config/index.php:175
558
  msgid "Permalinks"
559
  msgstr "Rermaliens"
560
 
561
- #: ../admin/config/index.php:175
562
  msgid ""
563
  "List all the URLs on your website that you don't want to track, separated by "
564
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -576,11 +602,11 @@ msgstr ""
576
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
577
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
578
 
579
- #: ../admin/config/index.php:176
580
  msgid "Countries"
581
  msgstr "Pays"
582
 
583
- #: ../admin/config/index.php:176
584
  msgid ""
585
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
586
  "track, separated by commas."
@@ -588,11 +614,11 @@ msgstr ""
588
  "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
589
  "ne voulez pas suivre, séparées par des virgules."
590
 
591
- #: ../admin/config/index.php:177
592
  msgid "User Agents"
593
  msgstr "User Agents"
594
 
595
- #: ../admin/config/index.php:177
596
  msgid ""
597
  "Browsers (user agents) you don't want to track, separated by commas. You can "
598
  "specify the browser's version adding a slash after the name (i.e. "
@@ -610,11 +636,11 @@ msgstr ""
610
  "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
611
  "et IE/8.0. Les chaînes sont insensibles à la casse."
612
 
613
- #: ../admin/config/index.php:178
614
  msgid "Referring Sites"
615
  msgstr "Sites référents"
616
 
617
- #: ../admin/config/index.php:178
618
  msgid ""
619
  "Referring URLs that you don't want to track, separated by commas: "
620
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -631,21 +657,21 @@ msgstr ""
631
  "soit un caractère générique ou le protocole que vous voulez filtrer "
632
  "(http://, https://)."
633
 
634
- #: ../admin/config/index.php:181
635
  msgid "Enable Privacy Mode"
636
  msgstr "Activer le mode privé"
637
 
638
- #: ../admin/config/index.php:181
639
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
640
  msgstr ""
641
  "Cette option masque l'adresse IP de vos visiteurs afin de se conformer aux "
642
  "lois de confidentialité européennes."
643
 
644
- #: ../admin/config/index.php:182
645
  msgid "Ignore Prefetch Requests"
646
  msgstr "Ignorer les requêtes anticipées"
647
 
648
- #: ../admin/config/index.php:182
649
  msgid ""
650
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
651
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
@@ -655,30 +681,30 @@ msgstr ""
655
  "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
656
  "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
657
 
658
- #: ../admin/config/index.php:187 ../admin/config/index.php:220
659
  msgid "Reports"
660
  msgstr "Rapports"
661
 
662
- #: ../admin/config/index.php:189
663
  msgid "Formats and Conversions"
664
  msgstr ""
665
 
666
- #: ../admin/config/index.php:190
667
  msgid "Number Format"
668
  msgstr "Format des nombres"
669
 
670
- #: ../admin/config/index.php:190
671
  msgid "Choose the number format you want to use for your reports."
672
  msgstr ""
673
  "Choisissez le format numérique que vous souhaitez utiliser, européen ou "
674
  "américain."
675
 
676
- #: ../admin/config/index.php:191
677
  #, fuzzy
678
  msgid "Date Format"
679
  msgstr "Données et Formats"
680
 
681
- #: ../admin/config/index.php:191
682
  #, fuzzy
683
  msgid ""
684
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
@@ -688,12 +714,12 @@ msgstr ""
688
  "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
689
  "vue."
690
 
691
- #: ../admin/config/index.php:192
692
  #, fuzzy
693
  msgid "Time Format"
694
  msgstr "Format des nombres"
695
 
696
- #: ../admin/config/index.php:192
697
  #, fuzzy
698
  msgid ""
699
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
@@ -703,12 +729,12 @@ msgstr ""
703
  "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
704
  "vue."
705
 
706
- #: ../admin/config/index.php:193
707
  #, fuzzy
708
  msgid "Use Display Name"
709
  msgstr "Voir Nom d'affichage"
710
 
711
- #: ../admin/config/index.php:193
712
  msgid ""
713
  "By default, users are listed by their usernames. Use this option to "
714
  "visualize their display names instead."
@@ -716,12 +742,12 @@ msgstr ""
716
  "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
717
  "cette option pour basculer au Nom d'affichage."
718
 
719
- #: ../admin/config/index.php:194
720
  #, fuzzy
721
  msgid "Use Titles"
722
  msgstr "Afficher les titres"
723
 
724
- #: ../admin/config/index.php:194
725
  #, fuzzy
726
  msgid ""
727
  "Slimstat converts your permalinks into post, page and category titles. "
@@ -731,23 +757,23 @@ msgstr ""
731
  "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
732
  "rapports."
733
 
734
- #: ../admin/config/index.php:195
735
  msgid "Convert IP Addresses"
736
  msgstr "Convertir les adresses IP"
737
 
738
- #: ../admin/config/index.php:195
739
  msgid "Display provider names instead of IP addresses."
740
  msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
741
 
742
- #: ../admin/config/index.php:197
743
  msgid "Functionality"
744
  msgstr "Fonctionnalité"
745
 
746
- #: ../admin/config/index.php:198
747
  msgid "SlimScroll"
748
  msgstr "SlimScroll"
749
 
750
- #: ../admin/config/index.php:198
751
  msgid ""
752
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
753
  "scrollbar."
@@ -755,54 +781,54 @@ msgstr ""
755
  "Activer SlimScroll, une librairie jQuery élégante qui remplace la barre de "
756
  "défilement par défaut des navigateurs."
757
 
758
- #: ../admin/config/index.php:199
759
  msgid "Expand Details"
760
  msgstr "Développez les détails"
761
 
762
- #: ../admin/config/index.php:199
763
  msgid "Expand each row's details by default, insted of on mousehover."
764
  msgstr ""
765
  "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
766
  "souris."
767
 
768
- #: ../admin/config/index.php:200 ../admin/config/index.php:206
769
  msgid "Rows to Display"
770
  msgstr "Colonnes à afficher"
771
 
772
- #: ../admin/config/index.php:200
773
  msgid "Specify the number of items in each report."
774
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
775
 
776
- #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
777
  #, fuzzy
778
  msgid "Max Results"
779
  msgstr "Limiter les résultats"
780
 
781
- #: ../admin/config/index.php:201
782
  msgid ""
783
  "Decide how many records should be retrieved from the database in total. "
784
  "Depending on your server configuration, you may want to fine tune this value "
785
  "to avoid exceeding your PHP memory limit."
786
  msgstr ""
787
 
788
- #: ../admin/config/index.php:202
789
  msgid "IP Lookup"
790
  msgstr "Recherche d'IP"
791
 
792
- #: ../admin/config/index.php:202
793
  msgid "Customize the Geolocation service to be used in the reports."
794
  msgstr ""
795
  "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
796
 
797
- #: ../admin/config/index.php:204
798
  msgid "Activity Log"
799
  msgstr "Statistiques de fréquentation"
800
 
801
- #: ../admin/config/index.php:205
802
  msgid "Live Stream"
803
  msgstr "Flux en temps réel (Flux live)"
804
 
805
- #: ../admin/config/index.php:205
806
  msgid ""
807
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
808
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
@@ -810,15 +836,15 @@ msgstr ""
810
  "Actualisez la vue 'Maintenant' toutes les X secondes. Entrer <strong>0</"
811
  "strong> pour désactiver cette fonctionnalité."
812
 
813
- #: ../admin/config/index.php:206
814
  msgid "Specify the number of items in the Activity Log."
815
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
816
 
817
- #: ../admin/config/index.php:209
818
  msgid "Custom CSS"
819
  msgstr "Personnaliser le style CSS"
820
 
821
- #: ../admin/config/index.php:209
822
  #, fuzzy
823
  msgid ""
824
  "Paste here your custom stylesheet to personalize the way your reports look. "
@@ -832,12 +858,12 @@ msgstr ""
832
  "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
833
  "d'utiliser cette fonctionnalité."
834
 
835
- #: ../admin/config/index.php:210
836
  #, fuzzy
837
  msgid "Chart Colors"
838
  msgstr "Contrôle du graphique"
839
 
840
- #: ../admin/config/index.php:210
841
  msgid ""
842
  "Customize the look and feel of your charts by assigning personalized colors "
843
  "to each metric. List 4 hex colors separated by commas, strictly in the "
@@ -845,11 +871,11 @@ msgid ""
845
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
846
  msgstr ""
847
 
848
- #: ../admin/config/index.php:211
849
  msgid "Show User Agent"
850
  msgstr "Voir User Agent"
851
 
852
- #: ../admin/config/index.php:211
853
  msgid ""
854
  "Choose if you want to see the browser name or a complete user agent string "
855
  "when hovering on browser icons."
@@ -857,11 +883,11 @@ msgstr ""
857
  "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
858
  "de user agent lorsque vous survolez les icônes du navigateur."
859
 
860
- #: ../admin/config/index.php:212
861
  msgid "Enable SOV"
862
  msgstr "Activer SOV"
863
 
864
- #: ../admin/config/index.php:212
865
  msgid ""
866
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
867
  "the subject, object, and verb of a sentence appear in that order, like in "
@@ -871,30 +897,15 @@ msgstr ""
871
  "langue dans laquelle les sujet, objet et verbe d'une phrase apparaissent "
872
  "dans cet ordre, comme en japonais."
873
 
874
- #: ../admin/config/index.php:213
875
- #, fuzzy
876
- msgid "Social Analytics"
877
- msgstr "Analyse du site"
878
-
879
- #: ../admin/config/index.php:213
880
- msgid ""
881
- "Thanks to a <a href='http://getsocial.io/enterprise' "
882
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
883
- "set of analytics for social media where you can identify top performing "
884
- "posts. Track social sharing to understand which of your posts are generating "
885
- "more engagement. When this option is enabled, Slimstat sends a list of all "
886
- "your posts's URLs to their service for analysis once daily."
887
- msgstr ""
888
-
889
- #: ../admin/config/index.php:218
890
  msgid "Access Control"
891
  msgstr ""
892
 
893
- #: ../admin/config/index.php:221
894
  msgid "Restrict Authors"
895
  msgstr "Restriction Auteurs"
896
 
897
- #: ../admin/config/index.php:221
898
  msgid ""
899
  "Enable this option if you want your authors to only see stats related to "
900
  "their own content."
@@ -902,11 +913,11 @@ msgstr ""
902
  "Activez cette option si vous voulez que vos auteurs ne voient que les "
903
  "statistiques relatives à leur propre contenu."
904
 
905
- #: ../admin/config/index.php:222 ../admin/config/index.php:226
906
  msgid "Capability"
907
  msgstr "Aptitude"
908
 
909
- #: ../admin/config/index.php:222
910
  msgid ""
911
  "Specify the minimum <a href='http://codex.wordpress.org/"
912
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
@@ -922,11 +933,11 @@ msgstr ""
922
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
923
  "Dans ce cas, la liste a la priorité sur la capacité."
924
 
925
- #: ../admin/config/index.php:223 ../admin/config/index.php:227
926
  msgid "Whitelist"
927
  msgstr "Liste blanche"
928
 
929
- #: ../admin/config/index.php:223
930
  msgid ""
931
  "List all the users who should have access to the reports, separated by "
932
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -938,13 +949,13 @@ msgstr ""
938
  "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
939
  "noms d'utilisateurs sont sensibles à la casse."
940
 
941
- #: ../admin/config/index.php:225 ../admin/config/index.php:250
942
- #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
943
- #: ../wp-slimstat.php:1803
944
  msgid "Settings"
945
  msgstr "Réglages"
946
 
947
- #: ../admin/config/index.php:226
948
  msgid ""
949
  "Specify the minimum <a href='http://codex.wordpress.org/"
950
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -958,7 +969,7 @@ msgstr ""
958
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
959
  "Dans ce cas, la liste a la priorité sur la capacité."
960
 
961
- #: ../admin/config/index.php:227
962
  msgid ""
963
  "List all the users who can edit these options, separated by commas. Please "
964
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -970,13 +981,12 @@ msgstr ""
970
  "inscrire! Les noms d'utilisateurs sont sensibles à la casse. (Majuscules-"
971
  "minuscules)"
972
 
973
- #: ../admin/config/index.php:232
974
  msgid "Maintenance"
975
  msgstr "Maintenance"
976
 
977
- #: ../admin/config/index.php:237 ../admin/view/addons.php:32
978
- #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
979
- #: ../wp-slimstat.php:1800
980
  msgid "Add-ons"
981
  msgstr "Add-ons"
982
 
@@ -1007,95 +1017,83 @@ msgstr ""
1007
  msgid "The geolocation database has been installed on your server."
1008
  msgstr ""
1009
 
1010
- #: ../admin/config/maintenance.php:166
1011
- msgid ""
1012
- "Your data was successfully imported. You may now drop the old tables: "
1013
- "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
1014
- "wp_slim_outbound. Please note: if you are using Slimstat in a MU network, "
1015
- "you will need to run the import script on all your sites before you can "
1016
- "delete the old tables."
1017
- msgstr ""
1018
-
1019
- #: ../admin/config/maintenance.php:175
1020
  msgid "Your reports were successfully restored to their default arrangement."
1021
  msgstr ""
1022
  "Vos rapports ont été réinitialisés avec succès dans leur configuration par "
1023
  "défaut."
1024
 
1025
- #: ../admin/config/maintenance.php:185
1026
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1027
  msgstr "Vos tables WP SlimStat ont été converties en InnoDB avec succès."
1028
 
1029
- #: ../admin/config/maintenance.php:191
1030
  #, fuzzy
1031
  msgid "All the archived records were successfully deleted."
1032
  msgstr "Tous les enregistrements ont bien été supprimés"
1033
 
1034
- #: ../admin/config/maintenance.php:199
1035
  msgid "All the records were successfully deleted."
1036
  msgstr "Tous les enregistrements ont bien été supprimés"
1037
 
1038
- #: ../admin/config/maintenance.php:221
1039
- msgid "Debugging"
1040
  msgstr ""
1041
 
1042
- #: ../admin/config/maintenance.php:224
1043
  #, fuzzy
1044
  msgid "Tracker Status"
1045
  msgstr "Traçage"
1046
 
1047
- #: ../admin/config/maintenance.php:226
1048
  #, fuzzy
1049
- msgid "recorded on"
1050
- msgstr "Enregistrements"
1051
 
1052
- #: ../admin/config/maintenance.php:226
1053
  msgid "No Errors so far"
1054
  msgstr ""
1055
 
1056
- #: ../admin/config/maintenance.php:227
1057
  msgid ""
1058
  "The information here above is useful to troubleshoot issues with the "
1059
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1060
  "the tracker could not record a pageview and are indicative of some kind of "
1061
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1062
  "most recent pageview was not recorded, based on your settings (filters, "
1063
- "blackslists, etc). Please include this code when sending a support request."
 
1064
  msgstr ""
1065
 
1066
- #: ../admin/config/maintenance.php:233
1067
  #, fuzzy
1068
  msgid "Enable SQL Debug"
1069
  msgstr "Activer le mode espion"
1070
 
1071
- #: ../admin/config/maintenance.php:236
1072
  msgid ""
1073
  "Display the SQL code used to retrieve the data from the database. Useful to "
1074
  "troubleshoot issues with data consistency or missing pageviews."
1075
  msgstr ""
1076
 
1077
- #: ../admin/config/maintenance.php:240
1078
  msgid "Disable SQL Debug"
1079
  msgstr ""
1080
 
1081
- #: ../admin/config/maintenance.php:243
1082
  msgid "Deactivate the SQL output on top of each report."
1083
  msgstr ""
1084
 
1085
- #: ../admin/config/maintenance.php:248
1086
- msgid "Layout"
1087
- msgstr ""
1088
-
1089
- #: ../admin/config/maintenance.php:251
1090
  msgid ""
1091
  "Are you sure you want to restore the default arrangement of your reports?"
1092
  msgstr "Etes-vous sûr de vouloir réinitialiser vos rapports ?"
1093
 
1094
- #: ../admin/config/maintenance.php:251
1095
  msgid "No Panic Button"
1096
  msgstr "Pas de panique !"
1097
 
1098
- #: ../admin/config/maintenance.php:253
1099
  #, fuzzy
1100
  msgid ""
1101
  "Reset the default arrangement of your reports. Helpful when, for some "
@@ -1103,83 +1101,83 @@ msgid ""
1103
  "in your views."
1104
  msgstr "Réinitialiser la mise en page par défaut de vos rapports."
1105
 
1106
- #: ../admin/config/maintenance.php:257
1107
  msgid "Data Maintenance"
1108
  msgstr "Maintenance des données"
1109
 
1110
- #: ../admin/config/maintenance.php:260
1111
  msgid "Delete pageviews where"
1112
  msgstr "Supprimer les pages où"
1113
 
1114
- #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1115
  msgid "equals"
1116
  msgstr "est égal à"
1117
 
1118
- #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1119
  msgid "is not equal to"
1120
  msgstr "n'est pas égal à"
1121
 
1122
- #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1123
  msgid "contains"
1124
  msgstr "contient"
1125
 
1126
- #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1127
  msgid "is included in"
1128
  msgstr ""
1129
 
1130
- #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1131
  msgid "does not contain"
1132
  msgstr "ne contient pas"
1133
 
1134
- #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1135
  msgid "starts with"
1136
  msgstr "commence par"
1137
 
1138
- #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1139
  msgid "ends with"
1140
  msgstr "finit par"
1141
 
1142
- #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1143
  msgid "sounds like"
1144
  msgstr "ressemble à"
1145
 
1146
- #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1147
  msgid "is greater than"
1148
  msgstr "est plus grand que"
1149
 
1150
- #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1151
  msgid "is less than"
1152
  msgstr "est plus petit que"
1153
 
1154
- #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1155
  msgid "matches"
1156
  msgstr "correspond à"
1157
 
1158
- #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1159
  msgid "does not match"
1160
  msgstr "ne correspond pas à"
1161
 
1162
- #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1163
  msgid "is empty"
1164
  msgstr "est vide"
1165
 
1166
- #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1167
  msgid "is not empty"
1168
  msgstr "n'est pas vide"
1169
 
1170
- #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1171
  #: ../admin/view/index.php:105
1172
  msgid "Apply"
1173
  msgstr "Appliquer"
1174
 
1175
- #: ../admin/config/maintenance.php:291
1176
  msgid ""
1177
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1178
  msgstr ""
1179
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT ces enregistrement de "
1180
  "votre base de données ?"
1181
 
1182
- #: ../admin/config/maintenance.php:298
1183
  msgid ""
1184
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1185
  "database?"
@@ -1187,21 +1185,23 @@ msgstr ""
1187
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1188
  "votre base de données ?"
1189
 
1190
- #: ../admin/config/maintenance.php:298
1191
  #, fuzzy
1192
  msgid "Delete All Records"
1193
  msgstr "Supprimer toutes les pages vues"
1194
 
1195
- #: ../admin/config/maintenance.php:301
1196
  #, fuzzy
1197
  msgid ""
1198
- "Erase all the information collected so far by Slimstat, including the "
1199
- "archive. This operation <strong>does not</strong> reset your settings."
 
 
1200
  msgstr ""
1201
  "Effacer les informations collecter par WP Slimstat jusqu'à present. Cette "
1202
  "opération <strong>ne réinitialise pas </strong>vos paramétrages."
1203
 
1204
- #: ../admin/config/maintenance.php:307
1205
  #, fuzzy
1206
  msgid ""
1207
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1210,20 +1210,20 @@ msgstr ""
1210
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1211
  "votre base de données ?"
1212
 
1213
- #: ../admin/config/maintenance.php:307
1214
  #, fuzzy
1215
  msgid "Delete Archive"
1216
  msgstr "Filtrer les pages vues pour que"
1217
 
1218
- #: ../admin/config/maintenance.php:310
1219
  msgid "Erase all the archived records. This operation cannot be undone."
1220
  msgstr ""
1221
 
1222
- #: ../admin/config/maintenance.php:316
1223
  msgid "Improve Performance"
1224
  msgstr "Improve la performance"
1225
 
1226
- #: ../admin/config/maintenance.php:320
1227
  msgid ""
1228
  "Please note that you will need about 30% more DB space to store the extra "
1229
  "information required."
@@ -1231,11 +1231,11 @@ msgstr ""
1231
  "Vous aurez besoin d'environ 30% de plus d'espace de base de données pour "
1232
  "stocker les informations supplémentaires nécessaires."
1233
 
1234
- #: ../admin/config/maintenance.php:324
1235
  msgid "Save DB Space"
1236
  msgstr "Gagner de l'espace sur la taille de votre base de données"
1237
 
1238
- #: ../admin/config/maintenance.php:327
1239
  msgid ""
1240
  "Please note that by removing table indexes, Slimstat's performance will be "
1241
  "affected."
@@ -1243,46 +1243,29 @@ msgstr ""
1243
  "Merci de noter qu'en supprimant les indexes, les performances de WP "
1244
  "SlimStats seront impactées."
1245
 
1246
- #: ../admin/config/maintenance.php:334
1247
- msgid ""
1248
- "Hold on tight, we are about to import all your old data. Are you sure you "
1249
- "want to proceed?"
1250
- msgstr ""
1251
-
1252
- #: ../admin/config/maintenance.php:334
1253
- #, fuzzy
1254
- msgid "Import old data"
1255
- msgstr "Import-Export"
1256
-
1257
- #: ../admin/config/maintenance.php:337
1258
- msgid ""
1259
- "Import all the records from the old table structure. No data will be deleted "
1260
- "from your database."
1261
- msgstr ""
1262
-
1263
- #: ../admin/config/maintenance.php:341
1264
  msgid "MaxMind IP to Country"
1265
  msgstr ""
1266
 
1267
- #: ../admin/config/maintenance.php:347
1268
  msgid ""
1269
  "Do you want to download and install the geolocation database from MaxMind's "
1270
  "server?"
1271
  msgstr ""
1272
 
1273
- #: ../admin/config/maintenance.php:347
1274
  msgid "Install GeoLite DB"
1275
  msgstr ""
1276
 
1277
- #: ../admin/config/maintenance.php:350
1278
  msgid "Do you want to uninstall the geolocation database?"
1279
  msgstr ""
1280
 
1281
- #: ../admin/config/maintenance.php:350
1282
  msgid "Uninstall GeoLite DB"
1283
  msgstr ""
1284
 
1285
- #: ../admin/config/maintenance.php:354
1286
  msgid ""
1287
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1288
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1292,11 +1275,11 @@ msgid ""
1292
  "enable this functionality."
1293
  msgstr ""
1294
 
1295
- #: ../admin/config/maintenance.php:359
1296
  msgid "Import and Export"
1297
  msgstr "Import-Export"
1298
 
1299
- #: ../admin/config/maintenance.php:363
1300
  #, fuzzy
1301
  msgid ""
1302
  "Here below you can find the current configuration string for Slimstat. You "
@@ -1307,27 +1290,27 @@ msgstr ""
1307
  "configuration. Vous pouvez mettre à jour vos réglages en collant une "
1308
  "nouvelle ligne ci-après et en cliquant sur Import."
1309
 
1310
- #: ../admin/config/maintenance.php:368
1311
  msgid "Import"
1312
  msgstr "Importer"
1313
 
1314
- #: ../admin/config/maintenance.php:369
1315
  msgid "Are you sure you want to OVERWRITE your current settings?"
1316
  msgstr "Etes-vous sûr que vous voulez réinitialiser vos onglets?"
1317
 
1318
- #: ../admin/config/maintenance.php:374
1319
  msgid "Database Information"
1320
  msgstr "Informations de base de données"
1321
 
1322
- #: ../admin/config/maintenance.php:377
1323
  msgid "Engine"
1324
  msgstr "Moteur"
1325
 
1326
- #: ../admin/config/maintenance.php:381
1327
  msgid "switch to InnoDB"
1328
  msgstr "changer pour InnoDB"
1329
 
1330
- #: ../admin/config/maintenance.php:392
1331
  msgid "records"
1332
  msgstr "Enregistrements"
1333
 
@@ -1405,11 +1388,11 @@ msgstr "est entre (x,y)"
1405
  msgid "Load"
1406
  msgstr ""
1407
 
1408
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1409
  msgid "Today"
1410
  msgstr "Aujourd'hui"
1411
 
1412
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1413
  msgid "Yesterday"
1414
  msgstr "Hier"
1415
 
@@ -1474,11 +1457,11 @@ msgid ""
1474
  "country of origin."
1475
  msgstr ""
1476
 
1477
- #: ../admin/view/layout.php:40
1478
  msgid "Customize and organize your reports"
1479
  msgstr ""
1480
 
1481
- #: ../admin/view/layout.php:41
1482
  msgid ""
1483
  "Drag and drop report placeholders from one container to another, to "
1484
  "customize the information you want to see right away when you open Slimstat. "
@@ -1490,11 +1473,11 @@ msgid ""
1490
  "(Screen Options tab)."
1491
  msgstr ""
1492
 
1493
- #: ../admin/view/layout.php:53
1494
  msgid "Clone"
1495
  msgstr ""
1496
 
1497
- #: ../admin/view/layout.php:57
1498
  #, fuzzy
1499
  msgid "Delete"
1500
  msgstr "Filtrer les pages vues pour que"
@@ -1515,8 +1498,8 @@ msgstr "Appareil mobile"
1515
  msgid "Syndication Reader"
1516
  msgstr "Lecteur de Flux (Syndication)"
1517
 
1518
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1519
- #: ../admin/view/wp-slimstat-reports.php:1706
1520
  msgid "No data to display"
1521
  msgstr "Aucune donnée à afficher"
1522
 
@@ -1525,18 +1508,19 @@ msgid "Date and Time"
1525
  msgstr "Date/Heure"
1526
 
1527
  # Unknown
1528
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1529
- #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1530
  msgid "c-"
1531
  msgstr "Inconnu"
1532
 
1533
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1534
- #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1535
  msgid "Originating IP"
1536
  msgstr "IP d'origine"
1537
 
1538
- #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1539
- #: ../admin/view/wp-slimstat-reports.php:1183
 
1540
  msgid "Open this URL in a new window"
1541
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1542
 
@@ -1544,62 +1528,62 @@ msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1544
  msgid "Local search results page"
1545
  msgstr "Page de résultat d'une recherche locale"
1546
 
1547
- #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1548
- #: ../admin/view/wp-slimstat-reports.php:257
1549
- #: ../admin/view/wp-slimstat-reports.php:266
1550
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1551
  msgid "Search Terms"
1552
  msgstr "Termes de recherche"
1553
 
1554
- #: ../admin/view/right-now.php:162
1555
  msgid "Server Latency and Page Speed in milliseconds"
1556
  msgstr "Latence du serveur et Rapidité de la page en millisecondes"
1557
 
1558
- #: ../admin/view/right-now.php:162
1559
  msgid "SL"
1560
  msgstr "SL"
1561
 
1562
- #: ../admin/view/right-now.php:162
1563
  msgid "PS"
1564
  msgstr "PS"
1565
 
1566
- #: ../admin/view/right-now.php:169
1567
  #, fuzzy
1568
- msgid "Time spent on this page in seconds"
1569
  msgstr "Ouvrir cette page dans une nouvelle fenêtre"
1570
 
1571
- #: ../admin/view/right-now.php:179
1572
  msgid "Open this referrer in a new window"
1573
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
1574
 
1575
- #: ../admin/view/right-now.php:180
1576
  msgid "Open this outbound link in a new window"
1577
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1578
 
1579
- #: ../admin/view/right-now.php:181
1580
  msgid "Content Type"
1581
  msgstr "Type de contenu"
1582
 
1583
- #: ../admin/view/right-now.php:184
1584
  #, fuzzy
1585
  msgid "Delete this pageview"
1586
  msgstr "Filtrer les pages vues pour que"
1587
 
1588
- #: ../admin/view/right-now.php:195
1589
  #, fuzzy
1590
  msgid "User Logged In"
1591
  msgstr "User Agent"
1592
 
1593
- #: ../admin/view/right-now.php:205
1594
  #, fuzzy
1595
  msgid "User Logged Out"
1596
  msgstr "User Agent"
1597
 
1598
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1599
  msgid "Browser"
1600
  msgstr "Navigateur Web"
1601
 
1602
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1603
  msgid "Country Code"
1604
  msgstr "Code du pays"
1605
 
@@ -1607,29 +1591,30 @@ msgstr "Code du pays"
1607
  msgid "IP Address"
1608
  msgstr "Adresse IP"
1609
 
1610
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1611
  msgid "Language Code"
1612
  msgstr "Code langue"
1613
 
1614
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1615
- #: ../admin/wp-slimstat-admin.php:867
1616
  msgid "Operating System"
1617
  msgstr "Système d'exploitation (OS)"
1618
 
1619
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1620
- #: ../admin/wp-slimstat-admin.php:868
1621
  msgid "Permalink"
1622
  msgstr "Permalien"
1623
 
1624
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1625
  msgid "Referer"
1626
  msgstr "Référent"
1627
 
1628
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1629
- msgid "Visitor's Name"
 
1630
  msgstr "le nom des visiteurs"
1631
 
1632
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1633
  msgid "Outbound Link"
1634
  msgstr "Lien sortant"
1635
 
@@ -1642,19 +1627,19 @@ msgid "-- Advanced filters --"
1642
  msgstr "-- Filtres Avancés --"
1643
 
1644
  #: ../admin/view/wp-slimstat-db.php:52
1645
- #: ../admin/view/wp-slimstat-reports.php:373
1646
  msgid "Browser Capabilities"
1647
  msgstr "Capacités des Navigateurs"
1648
 
1649
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1650
  msgid "Browser Version"
1651
  msgstr "Version de navigateur"
1652
 
1653
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1654
  msgid "Browser Type"
1655
  msgstr "le type de navigateur Web"
1656
 
1657
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1658
  msgid "User Agent"
1659
  msgstr "User Agent"
1660
 
@@ -1667,15 +1652,15 @@ msgstr "Annotations graphique"
1667
  msgid "Server Latency"
1668
  msgstr "Latence du serveur"
1669
 
1670
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1671
  msgid "Post Author"
1672
  msgstr "l'auteur de l'article"
1673
 
1674
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1675
  msgid "Post Category ID"
1676
  msgstr "ID de la catégorie de l'article"
1677
 
1678
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1679
  msgid "Resource Content Type"
1680
  msgstr "le type de source de contenu"
1681
 
@@ -1696,7 +1681,7 @@ msgstr "la résolution de l'écran"
1696
  msgid "Viewport Size"
1697
  msgstr ""
1698
 
1699
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1700
  msgid "Visit ID"
1701
  msgstr "Visites ID"
1702
 
@@ -1742,7 +1727,7 @@ msgid "Event ID"
1742
  msgstr "Contenus récents"
1743
 
1744
  #: ../admin/view/wp-slimstat-db.php:96
1745
- #: ../admin/view/wp-slimstat-reports.php:1720
1746
  msgid "Type"
1747
  msgstr ""
1748
 
@@ -1765,128 +1750,78 @@ msgstr "Ordre de tri"
1765
  msgid "Offset"
1766
  msgstr ""
1767
 
1768
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1769
- #: ../wp-slimstat.php:1793
1770
- msgid "Access Log"
1771
- msgstr ""
1772
-
1773
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1774
- #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1775
- msgid "Overview"
1776
- msgstr "Vue générale"
1777
-
1778
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1779
- #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1780
- msgid "Audience"
1781
- msgstr "Audience"
1782
-
1783
- #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1784
- #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1785
- msgid "Site Analysis"
1786
- msgstr "Analyse du site"
1787
-
1788
- #: ../admin/view/wp-slimstat-reports.php:25
1789
- #: ../admin/view/wp-slimstat-reports.php:516
1790
- #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1791
- #: ../wp-slimstat.php:1797
1792
- msgid "Traffic Sources"
1793
- msgstr "Sources de trafic"
1794
-
1795
- #: ../admin/view/wp-slimstat-reports.php:26
1796
- #: ../admin/view/wp-slimstat-reports.php:1364
1797
- #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1798
- #: ../wp-slimstat.php:1798
1799
- #, fuzzy
1800
- msgid "Geolocation"
1801
- msgstr "Ordre de tri"
1802
-
1803
- #: ../admin/view/wp-slimstat-reports.php:27
1804
- #, fuzzy
1805
- msgid "WordPress Dashboard"
1806
- msgstr "Intégration WordPress"
1807
-
1808
- #: ../admin/view/wp-slimstat-reports.php:28
1809
- #, fuzzy
1810
- msgid "Inactive Reports"
1811
- msgstr "Réinitialiser les rapports"
1812
-
1813
- #: ../admin/view/wp-slimstat-reports.php:77
1814
  msgid "Chart controls"
1815
  msgstr "Contrôle du graphique"
1816
 
1817
- #: ../admin/view/wp-slimstat-reports.php:77
1818
  msgid "Use your mouse wheel to zoom in and out"
1819
  msgstr "Utilisez la molette de votre souris pour zoomer et dézoomer"
1820
 
1821
- #: ../admin/view/wp-slimstat-reports.php:77
1822
  msgid "While zooming in, drag the chart to move to a different area"
1823
  msgstr ""
1824
  "Alors que le zoom avant est activé, faites glisser la carte pour passer à "
1825
  "une autre zone"
1826
 
1827
- #: ../admin/view/wp-slimstat-reports.php:80
1828
- #, fuzzy
1829
- msgid "Social Sharing Analytics"
1830
- msgstr "Analyse du site"
1831
-
1832
- #: ../admin/view/wp-slimstat-reports.php:87
1833
  #, fuzzy
1834
  msgid "Visitors Activity"
1835
  msgstr "Statistiques de fréquentation"
1836
 
1837
- #: ../admin/view/wp-slimstat-reports.php:96
1838
  msgid "Color codes"
1839
  msgstr "Codes couleur"
1840
 
1841
- #: ../admin/view/wp-slimstat-reports.php:96
1842
  msgid "From search result page"
1843
  msgstr "Depuis un moteur de recherche"
1844
 
1845
- #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
1846
  msgid "Known Visitor"
1847
  msgstr "Visiteurs connus"
1848
 
1849
- #: ../admin/view/wp-slimstat-reports.php:96
1850
  msgid "Known Users"
1851
  msgstr "Utilisateurs connus"
1852
 
1853
- #: ../admin/view/wp-slimstat-reports.php:96
1854
  msgid "Other Humans"
1855
  msgstr "Autres humains"
1856
 
1857
- #: ../admin/view/wp-slimstat-reports.php:96
1858
  msgid "Bot or Crawler"
1859
  msgstr "Robot ou Crawler"
1860
 
1861
- #: ../admin/view/wp-slimstat-reports.php:118
1862
  msgid "About Slimstat"
1863
  msgstr "À propos de WP-SlimStat"
1864
 
1865
- #: ../admin/view/wp-slimstat-reports.php:127
1866
  #, fuzzy
1867
  msgid "Traffic at a Glance"
1868
  msgstr "Brièvement"
1869
 
1870
- #: ../admin/view/wp-slimstat-reports.php:137
1871
  msgid "Currently Online"
1872
  msgstr "Actuellement en ligne"
1873
 
1874
- #: ../admin/view/wp-slimstat-reports.php:150
1875
  msgid "Recent Search Terms"
1876
  msgstr "Derniers Termes de Recherches"
1877
 
1878
- #: ../admin/view/wp-slimstat-reports.php:160
1879
  msgid "Keywords used by your visitors to find your website on a search engine."
1880
  msgstr ""
1881
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
1882
  "de recherche."
1883
 
1884
- #: ../admin/view/wp-slimstat-reports.php:163
1885
  #, fuzzy
1886
  msgid "Top Web Pages"
1887
  msgstr "Top Pages Vues"
1888
 
1889
- #: ../admin/view/wp-slimstat-reports.php:174
1890
  msgid ""
1891
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1892
  "site, including posts, products, categories, and so on. You can set the "
@@ -1895,23 +1830,24 @@ msgid ""
1895
  "have."
1896
  msgstr ""
1897
 
1898
- #: ../admin/view/wp-slimstat-reports.php:177
1899
- msgid "Top Traffic Sources"
1900
- msgstr "Top Sources de Trafic"
 
1901
 
1902
- #: ../admin/view/wp-slimstat-reports.php:189
1903
  msgid "Top Known Visitors"
1904
  msgstr "Top Visiteurs Connus"
1905
 
1906
- #: ../admin/view/wp-slimstat-reports.php:200
1907
  msgid "Top Search Terms"
1908
  msgstr "Top Termes de Recherche"
1909
 
1910
- #: ../admin/view/wp-slimstat-reports.php:211
1911
  msgid "Top Countries"
1912
  msgstr "Pays les plus récurrents"
1913
 
1914
- #: ../admin/view/wp-slimstat-reports.php:220
1915
  msgid ""
1916
  "You can configure Slimstat to ignore a specific Country by setting the "
1917
  "corresponding filter under Settings > Slimstat > Filters."
@@ -1919,11 +1855,11 @@ msgstr ""
1919
  "Vous pouvez configurer WP SlimStat afin d'ignorer un pays spécifique en "
1920
  "définissant le filtre correspondant sous SlimStat> Paramètres> Filtres."
1921
 
1922
- #: ../admin/view/wp-slimstat-reports.php:223
1923
  msgid "Rankings"
1924
  msgstr "Classements"
1925
 
1926
- #: ../admin/view/wp-slimstat-reports.php:227
1927
  msgid ""
1928
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1929
  "measures your site's rankings. Values are updated every 12 hours. Filters "
@@ -1934,16 +1870,16 @@ msgstr ""
1934
  "12 heures. Les filtres indiqués ci-dessus ne sont pas pris en compte dans ce "
1935
  "rapport."
1936
 
1937
- #: ../admin/view/wp-slimstat-reports.php:230
1938
  msgid "Top Language Families"
1939
  msgstr "Top Langues"
1940
 
1941
- #: ../admin/view/wp-slimstat-reports.php:243
1942
  #, fuzzy
1943
  msgid "Users Currently Online"
1944
  msgstr "Actuellement en ligne"
1945
 
1946
- #: ../admin/view/wp-slimstat-reports.php:254
1947
  msgid ""
1948
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1949
  "Slimstat leverages this information to identify returning visitors. Please "
@@ -1953,44 +1889,49 @@ msgstr ""
1953
  "attribue un cookie. WP SlimStat exploite ces informations pour identifier "
1954
  "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
1955
 
1956
- #: ../admin/view/wp-slimstat-reports.php:267
1957
  #, fuzzy
1958
  msgid "Unique Terms"
1959
  msgstr "IPs uniques"
1960
 
1961
- #: ../admin/view/wp-slimstat-reports.php:276
 
 
 
 
 
1962
  msgid "Human Visits"
1963
  msgstr "Visiteurs humains"
1964
 
1965
- #: ../admin/view/wp-slimstat-reports.php:285
1966
- #: ../admin/view/wp-slimstat-reports.php:1431
1967
  msgid "Visits"
1968
  msgstr "Visites"
1969
 
1970
- #: ../admin/view/wp-slimstat-reports.php:295
1971
  msgid "Audience Overview"
1972
  msgstr "Vue générale"
1973
 
1974
- #: ../admin/view/wp-slimstat-reports.php:302
1975
  msgid ""
1976
  "Where not otherwise specified, the metrics in this report are referred to "
1977
  "human visitors."
1978
  msgstr ""
1979
 
1980
- #: ../admin/view/wp-slimstat-reports.php:305
1981
  msgid "Top Languages"
1982
  msgstr "Top Langues"
1983
 
1984
- #: ../admin/view/wp-slimstat-reports.php:316
1985
  msgid "Top Browsers"
1986
  msgstr "Principaux navigateurs"
1987
 
1988
- #: ../admin/view/wp-slimstat-reports.php:327
1989
  msgid "Top Service Providers"
1990
  msgstr "Top Fournisseur d'Accès"
1991
 
1992
- #: ../admin/view/wp-slimstat-reports.php:336
1993
- #: ../admin/view/wp-slimstat-reports.php:348
1994
  msgid ""
1995
  "Internet Service Provider: a company which provides other companies or "
1996
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -2003,24 +1944,24 @@ msgstr ""
2003
  "spécifiques en définissant le filtre correspondant sous SlimStat> Réglages> "
2004
  "Filtres."
2005
 
2006
- #: ../admin/view/wp-slimstat-reports.php:339
2007
  msgid "Top Operating Systems"
2008
  msgstr "Top Systèmes d'Exploitation"
2009
 
2010
- #: ../admin/view/wp-slimstat-reports.php:351
2011
  msgid "Top Screen Resolutions"
2012
  msgstr "Top Résolutions d'écran"
2013
 
2014
- #: ../admin/view/wp-slimstat-reports.php:362
2015
  #, fuzzy
2016
  msgid "Top Viewport Sizes"
2017
  msgstr "Top Catégories"
2018
 
2019
- #: ../admin/view/wp-slimstat-reports.php:382
2020
  msgid "Visit Duration"
2021
  msgstr "Durée des Visites"
2022
 
2023
- #: ../admin/view/wp-slimstat-reports.php:389
2024
  #, fuzzy
2025
  msgid ""
2026
  "All values represent the percentages of pageviews within the corresponding "
@@ -2029,32 +1970,32 @@ msgstr ""
2029
  "Carte du monde - Les valeurs représentent le pourcentage des accès provenant "
2030
  "de ce pays"
2031
 
2032
- #: ../admin/view/wp-slimstat-reports.php:392
2033
  msgid "Recent Countries"
2034
  msgstr "Derniers Pays"
2035
 
2036
- #: ../admin/view/wp-slimstat-reports.php:403
2037
  #, fuzzy
2038
  msgid "Recent Viewport Sizes"
2039
  msgstr "Dernières Catégories"
2040
 
2041
- #: ../admin/view/wp-slimstat-reports.php:414
2042
  msgid "Recent Operating Systems"
2043
  msgstr "Derniers Systèmes d'Exploitation"
2044
 
2045
- #: ../admin/view/wp-slimstat-reports.php:425
2046
  msgid "Recent Browsers"
2047
  msgstr "Navigateurs récents"
2048
 
2049
- #: ../admin/view/wp-slimstat-reports.php:436
2050
  msgid "Recent Languages"
2051
  msgstr "Dernier Language"
2052
 
2053
- #: ../admin/view/wp-slimstat-reports.php:447
2054
  msgid "Top Browser Families"
2055
  msgstr "Principales familles de navigateurs"
2056
 
2057
- #: ../admin/view/wp-slimstat-reports.php:456
2058
  msgid ""
2059
  "This report shows you what user agent families (no version considered) are "
2060
  "popular among your visitors."
@@ -2062,11 +2003,11 @@ msgstr ""
2062
  "Ce rapport affiche quelles familles d'user agent (sans prise en compte de "
2063
  "version) sont populaires chez vos visiteurs."
2064
 
2065
- #: ../admin/view/wp-slimstat-reports.php:459
2066
  msgid "Top OS Families"
2067
  msgstr "Principales familles de SO"
2068
 
2069
- #: ../admin/view/wp-slimstat-reports.php:470
2070
  msgid ""
2071
  "This report shows you what operating system families (no version considered) "
2072
  "are popular among your visitors."
@@ -2074,83 +2015,88 @@ msgstr ""
2074
  "Ce rapport affiche quelles familles de système d'exploitation (sans prise en "
2075
  "compte de version) sont populaires chez vos visiteurs."
2076
 
2077
- #: ../admin/view/wp-slimstat-reports.php:473
2078
  msgid "Recent Users"
2079
  msgstr "Utilisateurs récents"
2080
 
2081
- #: ../admin/view/wp-slimstat-reports.php:485
2082
  msgid "Top Users"
2083
  msgstr "Principaux utilisateurs"
2084
 
2085
- #: ../admin/view/wp-slimstat-reports.php:497
2086
- #: ../admin/view/wp-slimstat-reports.php:506
2087
  msgid "Users"
2088
  msgstr "Utilisateurs"
2089
 
2090
- #: ../admin/view/wp-slimstat-reports.php:507
2091
  #, fuzzy
2092
  msgid "Unique Users"
2093
  msgstr "IPs uniques"
2094
 
2095
- #: ../admin/view/wp-slimstat-reports.php:525
 
 
 
 
 
2096
  msgid "Domains"
2097
  msgstr "Domaines"
2098
 
2099
- #: ../admin/view/wp-slimstat-reports.php:535
2100
  #, fuzzy
2101
  msgid "Traffic Summary"
2102
  msgstr "Sources de trafic"
2103
 
2104
- #: ../admin/view/wp-slimstat-reports.php:544
2105
  msgid "Top Referring Search Engines"
2106
  msgstr "Top Moteurs de Recherche"
2107
 
2108
- #: ../admin/view/wp-slimstat-reports.php:571
2109
  msgid "Recent Outbound Links"
2110
  msgstr "Liens sortants récents"
2111
 
2112
- #: ../admin/view/wp-slimstat-reports.php:583
2113
  msgid "Recent Posts"
2114
  msgstr "Contenus récents"
2115
 
2116
- #: ../admin/view/wp-slimstat-reports.php:611
2117
  msgid "Recent Feeds"
2118
  msgstr "Flux récents"
2119
 
2120
- #: ../admin/view/wp-slimstat-reports.php:623
2121
  msgid "Recent Pages Not Found"
2122
  msgstr "Dernières pages non trouvées"
2123
 
2124
- #: ../admin/view/wp-slimstat-reports.php:635
2125
  msgid "Recent Internal Searches"
2126
  msgstr "Recherches internes récentes"
2127
 
2128
- #: ../admin/view/wp-slimstat-reports.php:645
2129
  #, fuzzy
2130
  msgid "Searches performed using WordPress' built-in search functionality."
2131
  msgstr ""
2132
  "Recherches effectuées en utilisant la fonctionnalité de recherche intégrée "
2133
  "dans Wordpress."
2134
 
2135
- #: ../admin/view/wp-slimstat-reports.php:648
2136
  msgid "Top Categories"
2137
  msgstr "Top Catégories"
2138
 
2139
- #: ../admin/view/wp-slimstat-reports.php:661
2140
  msgid "Top Downloads"
2141
  msgstr "Top Téléchargements"
2142
 
2143
- #: ../admin/view/wp-slimstat-reports.php:672
2144
  msgid ""
2145
  "You can configure Slimstat to track specific file extensions as downloads."
2146
  msgstr ""
2147
 
2148
- #: ../admin/view/wp-slimstat-reports.php:675
2149
  msgid "Recent Events"
2150
  msgstr "Evènements Récents"
2151
 
2152
- #: ../admin/view/wp-slimstat-reports.php:684
2153
- #: ../admin/view/wp-slimstat-reports.php:708
2154
  #, fuzzy
2155
  msgid ""
2156
  "This report lists any <em>event</em> occurred on your website. Please refer "
@@ -2160,49 +2106,49 @@ msgstr ""
2160
  "web. S'il vous plaît se référer à la FAQ pour plus d'informations sur la "
2161
  "façon de tirer parti de cette fonctionnalité."
2162
 
2163
- #: ../admin/view/wp-slimstat-reports.php:687
2164
  msgid "Top Posts"
2165
  msgstr "Top Posts"
2166
 
2167
- #: ../admin/view/wp-slimstat-reports.php:699
2168
  #, fuzzy
2169
  msgid "Top Events"
2170
  msgstr "Contenus récents"
2171
 
2172
- #: ../admin/view/wp-slimstat-reports.php:711
2173
  msgid "Top Internal Searches"
2174
  msgstr "Top Recherches Internes"
2175
 
2176
- #: ../admin/view/wp-slimstat-reports.php:723
2177
  msgid "Recent Categories"
2178
  msgstr "Dernières Catégories"
2179
 
2180
- #: ../admin/view/wp-slimstat-reports.php:735
2181
  msgid "Top Pages Not Found"
2182
  msgstr "Top Pages non trouvées"
2183
 
2184
- #: ../admin/view/wp-slimstat-reports.php:747
2185
  msgid "Top Authors"
2186
  msgstr "Top Auteurs"
2187
 
2188
- #: ../admin/view/wp-slimstat-reports.php:758
2189
  msgid "Top Tags"
2190
  msgstr "Top Mots Clés"
2191
 
2192
- #: ../admin/view/wp-slimstat-reports.php:770
2193
  msgid "Recent Downloads"
2194
  msgstr "Téléchargements récents"
2195
 
2196
- #: ../admin/view/wp-slimstat-reports.php:782
2197
  #, fuzzy
2198
  msgid "Top Outbound Links"
2199
  msgstr "Lien sortant"
2200
 
2201
- #: ../admin/view/wp-slimstat-reports.php:794
2202
  msgid "Your Website"
2203
  msgstr "Votre site web"
2204
 
2205
- #: ../admin/view/wp-slimstat-reports.php:801
2206
  msgid ""
2207
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2208
  "this report is not affected by the filters set here above."
@@ -2210,130 +2156,136 @@ msgstr ""
2210
  "Votre contenu en bref : Posts, commentaires, pingbacks, etc. Merci de noter "
2211
  "que ce rpport ne prend pas en compte les filtres ci-dessus."
2212
 
2213
- #: ../admin/view/wp-slimstat-reports.php:804
2214
  #, fuzzy
2215
  msgid "Top Bounce Pages"
2216
  msgstr "Pages de Rebonds"
2217
 
2218
- #: ../admin/view/wp-slimstat-reports.php:817
2219
  #, fuzzy
2220
  msgid "Top Exit Pages"
2221
  msgstr "Top Pages Vues"
2222
 
2223
- #: ../admin/view/wp-slimstat-reports.php:830
2224
  #, fuzzy
2225
  msgid "Top Entry Pages"
2226
  msgstr "Top Pages Vues"
2227
 
2228
- #: ../admin/view/wp-slimstat-reports.php:843
2229
- #: ../admin/view/wp-slimstat-reports.php:852
2230
  #, fuzzy
2231
  msgid "Outbound Links"
2232
  msgstr "Lien sortant"
2233
 
2234
- #: ../admin/view/wp-slimstat-reports.php:853
2235
  msgid "Unique Outbound"
2236
  msgstr ""
2237
 
2238
- #: ../admin/view/wp-slimstat-reports.php:862
2239
  msgid "World Map"
2240
  msgstr "Carte du monde"
2241
 
2242
- #: ../admin/view/wp-slimstat-reports.php:944
2243
  msgid "Refresh"
2244
  msgstr "Rafraichir"
2245
 
2246
- #: ../admin/view/wp-slimstat-reports.php:981
2247
  #, php-format
2248
  msgid "Results %s - %s of %s"
2249
  msgstr "Résultats %s - %s de %s"
2250
 
2251
- #: ../admin/view/wp-slimstat-reports.php:983
2252
  msgid "Refresh in"
2253
  msgstr "Rafraichir dans "
2254
 
2255
- #: ../admin/view/wp-slimstat-reports.php:1076
2256
  msgid "Category ID"
2257
  msgstr "l'ID de la catégorie de l'article"
2258
 
2259
- #: ../admin/view/wp-slimstat-reports.php:1081
2260
- #: ../admin/view/wp-slimstat-reports.php:1096
2261
  #: ../admin/view/wp-slimstat-reports.php:1102
2262
  #, fuzzy
2263
  msgid "Code"
2264
  msgstr "Code OS "
2265
 
2266
  # Unknown
2267
- #: ../admin/view/wp-slimstat-reports.php:1097
2268
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2269
  msgid "l-"
2270
  msgstr "Inconnue"
2271
 
2272
- #: ../admin/view/wp-slimstat-reports.php:1114
2273
  msgid "URL"
2274
  msgstr ""
2275
 
2276
- #: ../admin/view/wp-slimstat-reports.php:1127
2277
  msgid "Referrer"
2278
  msgstr "Référent"
2279
 
2280
- #: ../admin/view/wp-slimstat-reports.php:1168
2281
- #: ../admin/view/wp-slimstat-reports.php:1415
2282
- #: ../admin/view/wp-slimstat-reports.php:1471
2283
- #: ../admin/view/wp-slimstat-reports.php:1477
2284
- #: ../admin/view/wp-slimstat-reports.php:1483
2285
- #: ../admin/view/wp-slimstat-reports.php:1489
2286
- #: ../admin/view/wp-slimstat-reports.php:1495
2287
- #: ../admin/view/wp-slimstat-reports.php:1501
2288
- #: ../admin/view/wp-slimstat-reports.php:1507
2289
- #: ../admin/view/wp-slimstat-reports.php:1727
2290
  msgid "Hits"
2291
  msgstr "Hits"
2292
 
2293
- #: ../admin/view/wp-slimstat-reports.php:1342
2294
  #, fuzzy
2295
  msgid "Dataset Size"
2296
  msgstr "Taille de la base de données"
2297
 
2298
- #: ../admin/view/wp-slimstat-reports.php:1344
2299
  msgid "Total number of records stored in the database."
2300
  msgstr ""
2301
 
2302
- #: ../admin/view/wp-slimstat-reports.php:1346
2303
  msgid "DB Size"
2304
  msgstr "Taille de la base de données"
2305
 
2306
- #: ../admin/view/wp-slimstat-reports.php:1349
2307
  #, fuzzy
2308
  msgid "Tracking Enabled"
2309
  msgstr "Mode traçage"
2310
 
2311
- #: ../admin/view/wp-slimstat-reports.php:1352
2312
  msgid "Javascript Mode"
2313
  msgstr "Mode Javascript"
2314
 
2315
- #: ../admin/view/wp-slimstat-reports.php:1355
2316
  msgid "Tracking Browser Caps"
2317
  msgstr "Traçage Capacités Navigateurs"
2318
 
2319
- #: ../admin/view/wp-slimstat-reports.php:1358
2320
  msgid "Auto purge"
2321
  msgstr "Purge automatique"
2322
 
2323
- #: ../admin/view/wp-slimstat-reports.php:1361
2324
  msgid "Oldest pageview"
2325
  msgstr "Plus ancienne page vue"
2326
 
2327
- #: ../admin/view/wp-slimstat-reports.php:1362
2328
  msgid "No visits"
2329
  msgstr "Aucune visite"
2330
 
2331
- #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
 
2332
  msgid "Date when the MaxMind Geolocation database was last updated."
2333
  msgstr ""
2334
 
2335
- #: ../admin/view/wp-slimstat-reports.php:1377
2336
- #: ../admin/view/wp-slimstat-reports.php:1535
2337
  msgid ""
2338
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2339
  "the tracking code is executed."
@@ -2341,17 +2293,17 @@ msgstr ""
2341
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
2342
  "vues \" chaque fois que le code de traçage est exécuté."
2343
 
2344
- #: ../admin/view/wp-slimstat-reports.php:1379
2345
  #, fuzzy
2346
  msgid "Days in Range"
2347
  msgstr "Intervalle de date"
2348
 
2349
- #: ../admin/view/wp-slimstat-reports.php:1382
2350
  #, fuzzy
2351
  msgid "Average Daily Pageviews"
2352
  msgstr "Nombre de pages vues en moyenne"
2353
 
2354
- #: ../admin/view/wp-slimstat-reports.php:1384
2355
  #, fuzzy
2356
  msgid ""
2357
  "How many pages have been visited on average every day during the current "
@@ -2359,11 +2311,11 @@ msgid ""
2359
  msgstr ""
2360
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
2361
 
2362
- #: ../admin/view/wp-slimstat-reports.php:1386
2363
  msgid "From Search Results"
2364
  msgstr "Résultat de recherches"
2365
 
2366
- #: ../admin/view/wp-slimstat-reports.php:1388
2367
  msgid ""
2368
  "Visitors who landed on your site after searching for a keyword on Google, "
2369
  "Yahoo, etc."
@@ -2371,7 +2323,7 @@ msgstr ""
2371
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
2372
  "sur Google, Yahoo, etc"
2373
 
2374
- #: ../admin/view/wp-slimstat-reports.php:1392
2375
  msgid ""
2376
  "Used to differentiate between multiple requests to download a file from one "
2377
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2380,11 +2332,11 @@ msgstr ""
2380
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
2381
  "provenant de plusieurs adresses distinctes"
2382
 
2383
- #: ../admin/view/wp-slimstat-reports.php:1394
2384
  msgid "Last 30 minutes"
2385
  msgstr "30 dernières minutes"
2386
 
2387
- #: ../admin/view/wp-slimstat-reports.php:1433
2388
  msgid ""
2389
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2390
  "multiple times if they perform multiple visits."
@@ -2393,15 +2345,15 @@ msgstr ""
2393
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
2394
  "multiples."
2395
 
2396
- #: ../admin/view/wp-slimstat-reports.php:1437
2397
  msgid "It includes only traffic generated by human visitors."
2398
  msgstr "Cela ne comprend que les visites dites humaines."
2399
 
2400
- #: ../admin/view/wp-slimstat-reports.php:1439
2401
  msgid "Bounce rate"
2402
  msgstr "Taux de rebond"
2403
 
2404
- #: ../admin/view/wp-slimstat-reports.php:1441
2405
  msgid ""
2406
  "Percentage of single-page visits, i.e. visits in which the person left your "
2407
  "site from the entrance page."
@@ -2409,77 +2361,77 @@ msgstr ""
2409
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2410
  "desquelles la personne a quitté votre site dès la page d'entrée."
2411
 
2412
- #: ../admin/view/wp-slimstat-reports.php:1443
2413
  msgid "Known visitors"
2414
  msgstr "Visiteurs connus"
2415
 
2416
- #: ../admin/view/wp-slimstat-reports.php:1445
2417
  msgid "Visitors who had previously left a comment on your blog."
2418
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
2419
 
2420
- #: ../admin/view/wp-slimstat-reports.php:1447
2421
  msgid "New visitors"
2422
  msgstr "Nouveaux visiteurs"
2423
 
2424
- #: ../admin/view/wp-slimstat-reports.php:1449
2425
  msgid "Human users who visited your site only once."
2426
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
2427
 
2428
- #: ../admin/view/wp-slimstat-reports.php:1451
2429
  msgid "Bots"
2430
  msgstr "Robots"
2431
 
2432
- #: ../admin/view/wp-slimstat-reports.php:1454
2433
  #, fuzzy
2434
  msgid "Pageviews per visit"
2435
  msgstr "Pages vues par visite"
2436
 
2437
- #: ../admin/view/wp-slimstat-reports.php:1457
2438
  msgid "Longest visit"
2439
  msgstr "Visite la plus longue"
2440
 
2441
- #: ../admin/view/wp-slimstat-reports.php:1458
2442
  msgid "hits"
2443
  msgstr "hits"
2444
 
2445
- #: ../admin/view/wp-slimstat-reports.php:1469
2446
  msgid "0 - 30 seconds"
2447
  msgstr "0 - 30 secondes"
2448
 
2449
- #: ../admin/view/wp-slimstat-reports.php:1475
2450
  msgid "31 - 60 seconds"
2451
  msgstr "31 - 60 secondes"
2452
 
2453
- #: ../admin/view/wp-slimstat-reports.php:1481
2454
  msgid "1 - 3 minutes"
2455
  msgstr "1 - 3 minutes"
2456
 
2457
- #: ../admin/view/wp-slimstat-reports.php:1487
2458
  msgid "3 - 5 minutes"
2459
  msgstr "3 - 5 minutes"
2460
 
2461
- #: ../admin/view/wp-slimstat-reports.php:1493
2462
  msgid "5 - 7 minutes"
2463
  msgstr "5 - 7 minutes"
2464
 
2465
- #: ../admin/view/wp-slimstat-reports.php:1499
2466
  msgid "7 - 10 minutes"
2467
  msgstr "7 - 10 minutes"
2468
 
2469
- #: ../admin/view/wp-slimstat-reports.php:1505
2470
  msgid "More than 10 minutes"
2471
  msgstr "Plus de 10 minutes"
2472
 
2473
- #: ../admin/view/wp-slimstat-reports.php:1517
2474
  #, fuzzy
2475
  msgid "Average visit duration"
2476
  msgstr "Durée des Visites"
2477
 
2478
- #: ../admin/view/wp-slimstat-reports.php:1537
2479
  msgid "Unique Referrers"
2480
  msgstr "Référents uniques"
2481
 
2482
- #: ../admin/view/wp-slimstat-reports.php:1539
2483
  msgid ""
2484
  "A referrer (or referring site) is the site that a visitor previously visited "
2485
  "before following a link to your site."
@@ -2487,11 +2439,11 @@ msgstr ""
2487
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
2488
  "suivre un lien vers votre site."
2489
 
2490
- #: ../admin/view/wp-slimstat-reports.php:1541
2491
  msgid "Direct Pageviews"
2492
  msgstr "Pages Vues Directes"
2493
 
2494
- #: ../admin/view/wp-slimstat-reports.php:1543
2495
  msgid ""
2496
  "Visitors who visited the site by typing the URL directly into their browser. "
2497
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2504,11 +2456,11 @@ msgstr ""
2504
  "courriels non marquées, ou des liens à partir de documents qui ne "
2505
  "contiennent pas de variables de suivi."
2506
 
2507
- #: ../admin/view/wp-slimstat-reports.php:1545
2508
  msgid "From a search result"
2509
  msgstr "Depuis un moteur de recherche"
2510
 
2511
- #: ../admin/view/wp-slimstat-reports.php:1547
2512
  msgid ""
2513
  "Visitors who came to your site via searches on Google or some other search "
2514
  "engine."
@@ -2516,11 +2468,11 @@ msgstr ""
2516
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
2517
  "ou autre."
2518
 
2519
- #: ../admin/view/wp-slimstat-reports.php:1549
2520
  msgid "Unique Landing Pages"
2521
  msgstr "Pages d'Entrées Uniques"
2522
 
2523
- #: ../admin/view/wp-slimstat-reports.php:1551
2524
  msgid ""
2525
  "The first page that a user views during a session. This is also known as the "
2526
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2532,22 +2484,22 @@ msgstr ""
2532
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
2533
  "sera comptée (pour cette visite) comme la page d'entrée."
2534
 
2535
- #: ../admin/view/wp-slimstat-reports.php:1553
2536
  msgid "Bounce Pages"
2537
  msgstr "Pages de Rebonds"
2538
 
2539
- #: ../admin/view/wp-slimstat-reports.php:1555
2540
  #, fuzzy
2541
  msgid "Number of single page visits to your site over the selected period."
2542
  msgstr ""
2543
  "Nombre de visites d'une seule page de votre site au cours de la période "
2544
  "sélectionnée."
2545
 
2546
- #: ../admin/view/wp-slimstat-reports.php:1557
2547
  msgid "New Visitors Rate"
2548
  msgstr "Taux de Nouveaux Visiteurs"
2549
 
2550
- #: ../admin/view/wp-slimstat-reports.php:1559
2551
  #, fuzzy
2552
  msgid ""
2553
  "Percentage of single page visits, i.e. visits in which the person left your "
@@ -2556,11 +2508,11 @@ msgstr ""
2556
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2557
  "desquelles la personne a quitté votre site dès la page d'entrée."
2558
 
2559
- #: ../admin/view/wp-slimstat-reports.php:1561
2560
  msgid "Currently from search engines"
2561
  msgstr "Moteurs de recherche récents"
2562
 
2563
- #: ../admin/view/wp-slimstat-reports.php:1563
2564
  msgid ""
2565
  "Visitors who visited the site in the last 5 minutes coming from a search "
2566
  "engine."
@@ -2568,55 +2520,55 @@ msgstr ""
2568
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
2569
  "d'un moteur de recherche."
2570
 
2571
- #: ../admin/view/wp-slimstat-reports.php:1633
2572
  msgid "Number of pages in your site included in Google's index."
2573
  msgstr "Nombre de pages de votre site indexées par Google."
2574
 
2575
- #: ../admin/view/wp-slimstat-reports.php:1634
2576
  msgid "Google Index"
2577
  msgstr "Index Google"
2578
 
2579
- #: ../admin/view/wp-slimstat-reports.php:1635
2580
  msgid "Number of pages, according to Google, that link back to your site."
2581
  msgstr ""
2582
  "Nombre de pages qui pointent sur votre site, d'après les informations "
2583
  "fournies par Google."
2584
 
2585
- #: ../admin/view/wp-slimstat-reports.php:1636
2586
  msgid "Google Backlinks"
2587
  msgstr "Backlinks Google"
2588
 
2589
- #: ../admin/view/wp-slimstat-reports.php:1637
2590
  msgid ""
2591
  "How many times the Facebook Like button has been approximately clicked on "
2592
  "your site."
2593
  msgstr ""
2594
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
2595
 
2596
- #: ../admin/view/wp-slimstat-reports.php:1638
2597
  msgid "Facebook Likes"
2598
  msgstr "\"J'aime\" Facebook"
2599
 
2600
- #: ../admin/view/wp-slimstat-reports.php:1639
2601
  msgid ""
2602
  "How many times your site has been shared by someone on the social network."
2603
  msgstr ""
2604
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
2605
  "social."
2606
 
2607
- #: ../admin/view/wp-slimstat-reports.php:1640
2608
  msgid "Facebook Shares"
2609
  msgstr "Partages Facebook"
2610
 
2611
- #: ../admin/view/wp-slimstat-reports.php:1641
2612
  msgid "How many times links to your website have been clicked on Facebook."
2613
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
2614
 
2615
- #: ../admin/view/wp-slimstat-reports.php:1642
2616
  msgid "Facebook Clicks"
2617
  msgstr "Clicks Facebook"
2618
 
2619
- #: ../admin/view/wp-slimstat-reports.php:1643
2620
  msgid ""
2621
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2622
  "traffic data."
@@ -2624,23 +2576,23 @@ msgstr ""
2624
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
2625
  "concernant le trafic web."
2626
 
2627
- #: ../admin/view/wp-slimstat-reports.php:1644
2628
  msgid "Alexa World Rank"
2629
  msgstr "Alexa, Classement mondial"
2630
 
2631
- #: ../admin/view/wp-slimstat-reports.php:1645
2632
  msgid "Alexa Country Rank"
2633
  msgstr "Alexa, Classement par pays"
2634
 
2635
- #: ../admin/view/wp-slimstat-reports.php:1646
2636
  msgid "Alexa Popularity"
2637
  msgstr "Alexa, Popularité"
2638
 
2639
- #: ../admin/view/wp-slimstat-reports.php:1657
2640
  msgid "Content Items"
2641
  msgstr "Contenus"
2642
 
2643
- #: ../admin/view/wp-slimstat-reports.php:1659
2644
  msgid ""
2645
  "This value includes not only posts, but also custom post types, regardless "
2646
  "of their status"
@@ -2648,1245 +2600,1259 @@ msgstr ""
2648
  "Cette valeur n'inclut pas seulement les articles de blog, mais aussi des "
2649
  "types personnalisés d'articles, quel que soit leur statut."
2650
 
2651
- #: ../admin/view/wp-slimstat-reports.php:1661
2652
  #, fuzzy
2653
  msgid "Posts"
2654
  msgstr "Top Posts"
2655
 
2656
- #: ../admin/view/wp-slimstat-reports.php:1664
2657
  #, fuzzy
2658
  msgid "Pages"
2659
  msgstr "Pages de sorties les plus utilisées"
2660
 
2661
- #: ../admin/view/wp-slimstat-reports.php:1667
2662
  msgid "Attachments"
2663
  msgstr ""
2664
 
2665
- #: ../admin/view/wp-slimstat-reports.php:1670
2666
  #, fuzzy
2667
  msgid "Revisions"
2668
  msgstr "Permissions"
2669
 
2670
- #: ../admin/view/wp-slimstat-reports.php:1673
2671
  #, fuzzy
2672
  msgid "Comments"
2673
  msgstr "Nombre de commentaires"
2674
 
2675
- #: ../admin/view/wp-slimstat-reports.php:1676
2676
  #, fuzzy
2677
  msgid "Avg Comments per Post"
2678
  msgstr "Moyenne de commentaires par Article"
2679
 
2680
- #: ../admin/view/wp-slimstat-reports.php:1679
2681
  msgid "Avg Server Latency"
2682
  msgstr "Latence moyenne du serveur"
2683
 
2684
- #: ../admin/view/wp-slimstat-reports.php:1681
2685
  msgid ""
2686
  "Latency is the amount of time it takes for the host server to receive and "
2687
  "process a request for a page object. The amount of latency depends largely "
2688
  "on how far away the user is from the server."
2689
  msgstr ""
2690
 
2691
- #: ../admin/view/wp-slimstat-reports.php:1724
2692
  #, fuzzy
2693
  msgid "Coordinates"
2694
  msgstr "Mode traçage"
2695
 
2696
- #: ../admin/view/wp-slimstat-reports.php:1724
2697
  msgid "Date"
2698
  msgstr ""
2699
 
2700
- #: ../admin/view/wp-slimstat-reports.php:1761
2701
- msgid "Error contacting the GetSocial endpoint."
2702
- msgstr ""
2703
-
2704
- #: ../admin/view/wp-slimstat-reports.php:1769
2705
- msgid "Error decoding the GetSocial payload."
2706
- msgstr ""
2707
-
2708
- #: ../admin/view/wp-slimstat-reports.php:1801
2709
- msgid ""
2710
- "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2711
- ">social media metrics and identify your top performing posts.<br/> <a "
2712
- "class='button-ajax' title='Enable this functionality' href='"
2713
- msgstr ""
2714
-
2715
  # Unknown
2716
- #: ../admin/view/wp-slimstat-reports.php:1811
2717
  msgid "c-xx"
2718
  msgstr "Inconnu"
2719
 
2720
  # Afghanistan
2721
- #: ../admin/view/wp-slimstat-reports.php:1811
2722
  msgid "c-af"
2723
  msgstr "Afghanistan"
2724
 
2725
  # Åland Islands
2726
- #: ../admin/view/wp-slimstat-reports.php:1811
2727
  msgid "c-ax"
2728
  msgstr "Îles Åland"
2729
 
2730
  # Albania
2731
- #: ../admin/view/wp-slimstat-reports.php:1811
2732
  msgid "c-al"
2733
  msgstr "Albanie"
2734
 
2735
  # Algeria
2736
- #: ../admin/view/wp-slimstat-reports.php:1811
2737
  msgid "c-dz"
2738
  msgstr "Algérie"
2739
 
2740
  # Andorra
2741
- #: ../admin/view/wp-slimstat-reports.php:1811
2742
  msgid "c-ad"
2743
  msgstr "Andorre"
2744
 
2745
  # Angola
2746
- #: ../admin/view/wp-slimstat-reports.php:1811
2747
  msgid "c-ao"
2748
  msgstr "Angola"
2749
 
2750
  # Anguilla
2751
- #: ../admin/view/wp-slimstat-reports.php:1811
2752
  msgid "c-ai"
2753
  msgstr "Anguilla"
2754
 
2755
  # Antigua and Barbuda
2756
- #: ../admin/view/wp-slimstat-reports.php:1811
2757
  msgid "c-ag"
2758
  msgstr "Antigua et Barbuda"
2759
 
2760
  # Argentina
2761
- #: ../admin/view/wp-slimstat-reports.php:1811
2762
  msgid "c-ar"
2763
  msgstr "Argentine"
2764
 
2765
  # Armenia
2766
- #: ../admin/view/wp-slimstat-reports.php:1811
2767
  msgid "c-am"
2768
  msgstr "Arménie"
2769
 
2770
  # Aruba
2771
- #: ../admin/view/wp-slimstat-reports.php:1811
2772
  msgid "c-aw"
2773
  msgstr "Aruba"
2774
 
2775
  # Australia
2776
- #: ../admin/view/wp-slimstat-reports.php:1811
2777
  msgid "c-au"
2778
  msgstr "Australie"
2779
 
2780
  # Austria
2781
- #: ../admin/view/wp-slimstat-reports.php:1811
2782
  msgid "c-at"
2783
  msgstr "Autriche"
2784
 
2785
  # Azerbaijan
2786
- #: ../admin/view/wp-slimstat-reports.php:1811
2787
  msgid "c-az"
2788
  msgstr "Azerbaïdjan"
2789
 
2790
  # Bahamas
2791
- #: ../admin/view/wp-slimstat-reports.php:1811
2792
  msgid "c-bs"
2793
  msgstr "Bahamas"
2794
 
2795
  # Bahrain
2796
- #: ../admin/view/wp-slimstat-reports.php:1811
2797
  msgid "c-bh"
2798
  msgstr "Bahreïn"
2799
 
2800
  # Bangladesh
2801
- #: ../admin/view/wp-slimstat-reports.php:1811
2802
  msgid "c-bd"
2803
  msgstr "Bangladesh"
2804
 
2805
  # Barbados
2806
- #: ../admin/view/wp-slimstat-reports.php:1811
2807
  msgid "c-bb"
2808
  msgstr "Barbade"
2809
 
2810
  # Belarus
2811
- #: ../admin/view/wp-slimstat-reports.php:1811
2812
  msgid "c-by"
2813
  msgstr "Bélarus"
2814
 
2815
  # Belgium
2816
- #: ../admin/view/wp-slimstat-reports.php:1811
2817
  msgid "c-be"
2818
  msgstr "Belgique"
2819
 
2820
  # Belize
2821
- #: ../admin/view/wp-slimstat-reports.php:1811
2822
  msgid "c-bz"
2823
  msgstr "Belize"
2824
 
2825
  # Benin
2826
- #: ../admin/view/wp-slimstat-reports.php:1811
2827
  msgid "c-bj"
2828
  msgstr "Bénin"
2829
 
2830
  # Bermuda
2831
- #: ../admin/view/wp-slimstat-reports.php:1811
2832
  msgid "c-bm"
2833
  msgstr "Bermudes"
2834
 
2835
  # Bhutan
2836
- #: ../admin/view/wp-slimstat-reports.php:1811
2837
  msgid "c-bt"
2838
  msgstr "Bhoutan"
2839
 
2840
  # Bolivia
2841
- #: ../admin/view/wp-slimstat-reports.php:1811
2842
  msgid "c-bo"
2843
  msgstr "État plurinational de Bolivie"
2844
 
2845
  # Bosnia and Herzegovina
2846
- #: ../admin/view/wp-slimstat-reports.php:1811
2847
  msgid "c-ba"
2848
  msgstr "Bosnie-Herzégovine"
2849
 
2850
  # Botswana
2851
- #: ../admin/view/wp-slimstat-reports.php:1811
2852
  msgid "c-bw"
2853
  msgstr "Botswana"
2854
 
2855
  # Brazil
2856
- #: ../admin/view/wp-slimstat-reports.php:1811
2857
  msgid "c-br"
2858
  msgstr "Brésil"
2859
 
2860
  # Brunei Darussalam
2861
- #: ../admin/view/wp-slimstat-reports.php:1811
2862
  msgid "c-bn"
2863
  msgstr "Brunéi Darussalam"
2864
 
2865
  # Bulgaria
2866
- #: ../admin/view/wp-slimstat-reports.php:1811
2867
  msgid "c-bg"
2868
  msgstr "Bulgarie"
2869
 
2870
  # Burkina Faso
2871
- #: ../admin/view/wp-slimstat-reports.php:1811
2872
  msgid "c-bf"
2873
  msgstr "Burkina Faso"
2874
 
2875
  # Burundi
2876
- #: ../admin/view/wp-slimstat-reports.php:1811
2877
  msgid "c-bi"
2878
  msgstr "Burundi"
2879
 
2880
  # Cambodia
2881
- #: ../admin/view/wp-slimstat-reports.php:1811
2882
  msgid "c-kh"
2883
  msgstr "Cambodge"
2884
 
2885
  # Cameroon
2886
- #: ../admin/view/wp-slimstat-reports.php:1811
2887
  msgid "c-cm"
2888
  msgstr "Cameroun"
2889
 
2890
  # Canada
2891
- #: ../admin/view/wp-slimstat-reports.php:1811
2892
  msgid "c-ca"
2893
  msgstr "Canada"
2894
 
2895
  # Cape Verde
2896
- #: ../admin/view/wp-slimstat-reports.php:1811
2897
  msgid "c-cv"
2898
  msgstr "Cap-Vert"
2899
 
2900
  # Cayman Islands
2901
- #: ../admin/view/wp-slimstat-reports.php:1811
2902
  msgid "c-ky"
2903
  msgstr "Îles Caïmans"
2904
 
2905
  # Central African Republic
2906
- #: ../admin/view/wp-slimstat-reports.php:1811
2907
  msgid "c-cf"
2908
  msgstr "République Centrafricaine"
2909
 
2910
  # Chad
2911
- #: ../admin/view/wp-slimstat-reports.php:1811
2912
  msgid "c-td"
2913
  msgstr "Tchad"
2914
 
2915
  # Chile
2916
- #: ../admin/view/wp-slimstat-reports.php:1811
2917
  msgid "c-cl"
2918
  msgstr "Chili"
2919
 
2920
  # China
2921
- #: ../admin/view/wp-slimstat-reports.php:1811
2922
  msgid "c-cn"
2923
  msgstr "Chine"
2924
 
2925
  # Colombia
2926
- #: ../admin/view/wp-slimstat-reports.php:1811
2927
  msgid "c-co"
2928
  msgstr "Colombie"
2929
 
2930
  # Comoros
2931
- #: ../admin/view/wp-slimstat-reports.php:1811
2932
  msgid "c-km"
2933
  msgstr "Comores"
2934
 
2935
  # Congo
2936
- #: ../admin/view/wp-slimstat-reports.php:1811
2937
  msgid "c-cg"
2938
  msgstr "Congo"
2939
 
2940
  # The Democratic Republic of the Congo
2941
- #: ../admin/view/wp-slimstat-reports.php:1811
2942
  msgid "c-cd"
2943
  msgstr "République Démocratique du Congo"
2944
 
2945
  # Costa Rica
2946
- #: ../admin/view/wp-slimstat-reports.php:1811
2947
  msgid "c-cr"
2948
  msgstr "Costa Rica"
2949
 
2950
  # Côte d'Ivoire
2951
- #: ../admin/view/wp-slimstat-reports.php:1811
2952
  msgid "c-ci"
2953
  msgstr "Côte d'Ivoire"
2954
 
2955
  # Croatia
2956
- #: ../admin/view/wp-slimstat-reports.php:1811
2957
  msgid "c-hr"
2958
  msgstr "Croatie"
2959
 
2960
  # Cuba
2961
- #: ../admin/view/wp-slimstat-reports.php:1811
2962
  msgid "c-cu"
2963
  msgstr "Cuba"
2964
 
2965
  # Cyprus
2966
- #: ../admin/view/wp-slimstat-reports.php:1811
2967
  msgid "c-cy"
2968
  msgstr "Chypre"
2969
 
2970
  # Czech Republic
2971
- #: ../admin/view/wp-slimstat-reports.php:1811
2972
  msgid "c-cz"
2973
  msgstr "République tchèque"
2974
 
2975
  # Denmark
2976
- #: ../admin/view/wp-slimstat-reports.php:1811
2977
  msgid "c-dk"
2978
  msgstr "Danemark"
2979
 
2980
  # Djibouti
2981
- #: ../admin/view/wp-slimstat-reports.php:1811
2982
  msgid "c-dj"
2983
  msgstr "Djibouti"
2984
 
2985
  # Dominica
2986
- #: ../admin/view/wp-slimstat-reports.php:1811
2987
  msgid "c-dm"
2988
  msgstr "Dominique"
2989
 
2990
  # Dominican Republic
2991
- #: ../admin/view/wp-slimstat-reports.php:1811
2992
  msgid "c-do"
2993
  msgstr "République dominicaine"
2994
 
2995
  # Ecuador
2996
- #: ../admin/view/wp-slimstat-reports.php:1811
2997
  msgid "c-ec"
2998
  msgstr "Équateur"
2999
 
3000
  # Egypt
3001
- #: ../admin/view/wp-slimstat-reports.php:1811
3002
  msgid "c-eg"
3003
  msgstr "Égypte"
3004
 
3005
  # El Salvador
3006
- #: ../admin/view/wp-slimstat-reports.php:1811
3007
  msgid "c-sv"
3008
  msgstr "El Salvador"
3009
 
3010
  # Equatorial Guinea
3011
- #: ../admin/view/wp-slimstat-reports.php:1811
3012
  msgid "c-gq"
3013
  msgstr "Guinée équatoriale"
3014
 
3015
  # Eritrea
3016
- #: ../admin/view/wp-slimstat-reports.php:1811
3017
  msgid "c-er"
3018
  msgstr "Érythrée"
3019
 
3020
  # Estonia
3021
- #: ../admin/view/wp-slimstat-reports.php:1811
3022
  msgid "c-ee"
3023
  msgstr "Estonie"
3024
 
3025
  # Ethiopia
3026
- #: ../admin/view/wp-slimstat-reports.php:1811
3027
  msgid "c-et"
3028
  msgstr "Éthiopie"
3029
 
3030
  # Faroe Islands
3031
- #: ../admin/view/wp-slimstat-reports.php:1811
3032
  msgid "c-fo"
3033
  msgstr "Îles Féroé"
3034
 
3035
  # Falkland Islands (Malvinas)
3036
- #: ../admin/view/wp-slimstat-reports.php:1811
3037
  msgid "c-fk"
3038
  msgstr "Îles Falkland (Malvinas)"
3039
 
3040
  # Fiji
3041
- #: ../admin/view/wp-slimstat-reports.php:1811
3042
  msgid "c-fj"
3043
  msgstr "Fidji"
3044
 
3045
  # Finland
3046
- #: ../admin/view/wp-slimstat-reports.php:1811
3047
  msgid "c-fi"
3048
  msgstr "Finlande"
3049
 
3050
  # France
3051
- #: ../admin/view/wp-slimstat-reports.php:1811
3052
  msgid "c-fr"
3053
  msgstr "France"
3054
 
3055
  # French Guiana
3056
- #: ../admin/view/wp-slimstat-reports.php:1811
3057
  msgid "c-gf"
3058
  msgstr "Guyane française"
3059
 
3060
  # Gabon
3061
- #: ../admin/view/wp-slimstat-reports.php:1811
3062
  msgid "c-ga"
3063
  msgstr "Gabon"
3064
 
3065
  # Gambia
3066
- #: ../admin/view/wp-slimstat-reports.php:1811
3067
  msgid "c-gm"
3068
  msgstr "Gambie"
3069
 
3070
  # Georgia
3071
- #: ../admin/view/wp-slimstat-reports.php:1811
3072
  msgid "c-ge"
3073
  msgstr "Géorgie"
3074
 
3075
  # Germany
3076
- #: ../admin/view/wp-slimstat-reports.php:1811
3077
  msgid "c-de"
3078
  msgstr "Allemagne"
3079
 
3080
  # Ghana
3081
- #: ../admin/view/wp-slimstat-reports.php:1811
3082
  msgid "c-gh"
3083
  msgstr "Ghana"
3084
 
3085
  # Greece
3086
- #: ../admin/view/wp-slimstat-reports.php:1811
3087
  msgid "c-gr"
3088
  msgstr "Grèce"
3089
 
3090
  # Greenland
3091
- #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-gl"
3093
  msgstr "Groenland"
3094
 
3095
  # Grenada
3096
- #: ../admin/view/wp-slimstat-reports.php:1811
3097
  msgid "c-gd"
3098
  msgstr "Grenade"
3099
 
3100
  # Guadeloupe
3101
- #: ../admin/view/wp-slimstat-reports.php:1811
3102
  msgid "c-gp"
3103
  msgstr "Guadeloupe"
3104
 
3105
  # Guatemala
3106
- #: ../admin/view/wp-slimstat-reports.php:1811
3107
  msgid "c-gt"
3108
  msgstr "Guatemala"
3109
 
3110
  # Guinea
3111
- #: ../admin/view/wp-slimstat-reports.php:1811
3112
  msgid "c-gn"
3113
  msgstr "Guinée"
3114
 
3115
  # Guinea-Bissau
3116
- #: ../admin/view/wp-slimstat-reports.php:1811
3117
  msgid "c-gw"
3118
  msgstr "Guinée-Bissau"
3119
 
3120
  # Guyana
3121
- #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-gy"
3123
  msgstr "Guyana"
3124
 
3125
  # Haiti
3126
- #: ../admin/view/wp-slimstat-reports.php:1811
3127
  msgid "c-ht"
3128
  msgstr "Haïti"
3129
 
3130
  # Honduras
3131
- #: ../admin/view/wp-slimstat-reports.php:1811
3132
  msgid "c-hn"
3133
  msgstr "Honduras"
3134
 
3135
  # Hong Kong
3136
- #: ../admin/view/wp-slimstat-reports.php:1811
3137
  msgid "c-hk"
3138
  msgstr "Hong Kong"
3139
 
3140
  # Hungary
3141
- #: ../admin/view/wp-slimstat-reports.php:1811
3142
  msgid "c-hu"
3143
  msgstr "Hongrie"
3144
 
3145
  # Iceland
3146
- #: ../admin/view/wp-slimstat-reports.php:1811
3147
  msgid "c-is"
3148
  msgstr "Islande"
3149
 
3150
  # India
3151
- #: ../admin/view/wp-slimstat-reports.php:1811
3152
  msgid "c-in"
3153
  msgstr "Inde"
3154
 
3155
  # Indonesia
3156
- #: ../admin/view/wp-slimstat-reports.php:1811
3157
  msgid "c-id"
3158
  msgstr "Indonésie"
3159
 
3160
  # Islamic Republic of Iran
3161
- #: ../admin/view/wp-slimstat-reports.php:1811
3162
  msgid "c-ir"
3163
  msgstr "République islamique d'Iran"
3164
 
3165
  # Iraq
3166
- #: ../admin/view/wp-slimstat-reports.php:1811
3167
  msgid "c-iq"
3168
  msgstr "Irak"
3169
 
3170
  # Ireland
3171
- #: ../admin/view/wp-slimstat-reports.php:1811
3172
  msgid "c-ie"
3173
  msgstr "Irlande"
3174
 
3175
  # Israel
3176
- #: ../admin/view/wp-slimstat-reports.php:1811
3177
  msgid "c-il"
3178
  msgstr "Israël"
3179
 
3180
  # Italy
3181
- #: ../admin/view/wp-slimstat-reports.php:1811
3182
  msgid "c-it"
3183
  msgstr "Italie"
3184
 
3185
  # Jamaica
3186
- #: ../admin/view/wp-slimstat-reports.php:1811
3187
  msgid "c-jm"
3188
  msgstr "Jamaïque"
3189
 
3190
  # Japan
3191
- #: ../admin/view/wp-slimstat-reports.php:1811
3192
  msgid "c-jp"
3193
  msgstr "Japon"
3194
 
3195
  # Jordan
3196
- #: ../admin/view/wp-slimstat-reports.php:1811
3197
  msgid "c-jo"
3198
  msgstr "Jordanie"
3199
 
3200
  # Kazakhstan
3201
- #: ../admin/view/wp-slimstat-reports.php:1811
3202
  msgid "c-kz"
3203
  msgstr "Kazakhstan"
3204
 
3205
  # Kenya
3206
- #: ../admin/view/wp-slimstat-reports.php:1811
3207
  msgid "c-ke"
3208
  msgstr "Kenya"
3209
 
3210
  # Nauru
3211
- #: ../admin/view/wp-slimstat-reports.php:1811
3212
  msgid "c-nr"
3213
  msgstr "Nauru"
3214
 
3215
  # Democratic People's Republic of Korea
3216
- #: ../admin/view/wp-slimstat-reports.php:1811
3217
  msgid "c-kp"
3218
  msgstr "République populaire démocratique de Corée"
3219
 
3220
  # Republic of Korea
3221
- #: ../admin/view/wp-slimstat-reports.php:1811
3222
  msgid "c-kr"
3223
  msgstr "République de Corée"
3224
 
3225
- #: ../admin/view/wp-slimstat-reports.php:1811
3226
  msgid "c-kv"
3227
  msgstr "Kossovo"
3228
 
3229
  # Kuwait
3230
- #: ../admin/view/wp-slimstat-reports.php:1811
3231
  msgid "c-kw"
3232
  msgstr "Koweït"
3233
 
3234
  # Kyrgyzstan
3235
- #: ../admin/view/wp-slimstat-reports.php:1811
3236
  msgid "c-kg"
3237
  msgstr "Kirghizistan"
3238
 
3239
  # Lao People's Democratic Republic
3240
- #: ../admin/view/wp-slimstat-reports.php:1811
3241
  msgid "c-la"
3242
  msgstr "République démocratique populaire lao"
3243
 
3244
  # Latvia
3245
- #: ../admin/view/wp-slimstat-reports.php:1811
3246
  msgid "c-lv"
3247
  msgstr "Lettonie"
3248
 
3249
  # Lebanon
3250
- #: ../admin/view/wp-slimstat-reports.php:1811
3251
  msgid "c-lb"
3252
  msgstr "Liban"
3253
 
3254
  # Lesotho
3255
- #: ../admin/view/wp-slimstat-reports.php:1811
3256
  msgid "c-ls"
3257
  msgstr "Lesotho"
3258
 
3259
  # Liberia
3260
- #: ../admin/view/wp-slimstat-reports.php:1811
3261
  msgid "c-lr"
3262
  msgstr "Libéria"
3263
 
3264
  # Libyan Arab Jamahiriya
3265
- #: ../admin/view/wp-slimstat-reports.php:1811
3266
  msgid "c-ly"
3267
  msgstr "Jamahiriya arabe libyenne"
3268
 
3269
  # Liechtenstein
3270
- #: ../admin/view/wp-slimstat-reports.php:1811
3271
  msgid "c-li"
3272
  msgstr "Liechtenstein"
3273
 
3274
  # Lithuania
3275
- #: ../admin/view/wp-slimstat-reports.php:1811
3276
  msgid "c-lt"
3277
  msgstr "Lituanie"
3278
 
3279
  # Luxembourg
3280
- #: ../admin/view/wp-slimstat-reports.php:1811
3281
  msgid "c-lu"
3282
  msgstr "Luxembourg"
3283
 
3284
  # The Former Yugoslav Republic of Macedonia
3285
- #: ../admin/view/wp-slimstat-reports.php:1811
3286
  msgid "c-mk"
3287
  msgstr "Ex-république yougoslave de Macédoine"
3288
 
3289
  # Madagascar
3290
- #: ../admin/view/wp-slimstat-reports.php:1811
3291
  msgid "c-mg"
3292
  msgstr "Madagascar"
3293
 
3294
  # Malawi
3295
- #: ../admin/view/wp-slimstat-reports.php:1811
3296
  msgid "c-mw"
3297
  msgstr "Malawi"
3298
 
3299
  # Malaysia
3300
- #: ../admin/view/wp-slimstat-reports.php:1811
3301
  msgid "c-my"
3302
  msgstr "Malaisie"
3303
 
3304
  # Mali
3305
- #: ../admin/view/wp-slimstat-reports.php:1811
3306
  msgid "c-ml"
3307
  msgstr "Mali"
3308
 
3309
  # Malta
3310
- #: ../admin/view/wp-slimstat-reports.php:1811
3311
  msgid "c-mt"
3312
  msgstr "Malte"
3313
 
3314
  # Martinique
3315
- #: ../admin/view/wp-slimstat-reports.php:1811
3316
  msgid "c-mq"
3317
  msgstr "Martinique"
3318
 
3319
  # Mauritania
3320
- #: ../admin/view/wp-slimstat-reports.php:1811
3321
  msgid "c-mr"
3322
  msgstr "Mauritanie"
3323
 
3324
  # Mauritius
3325
- #: ../admin/view/wp-slimstat-reports.php:1811
3326
  msgid "c-mu"
3327
  msgstr "Maurice"
3328
 
3329
  # Mexico
3330
- #: ../admin/view/wp-slimstat-reports.php:1811
3331
  msgid "c-mx"
3332
  msgstr "Mexique"
3333
 
3334
  # Moldova
3335
- #: ../admin/view/wp-slimstat-reports.php:1811
3336
  msgid "c-md"
3337
  msgstr "République de Moldova"
3338
 
3339
  # Mongolia
3340
- #: ../admin/view/wp-slimstat-reports.php:1811
3341
  msgid "c-mn"
3342
  msgstr "Mongolie"
3343
 
3344
  # Montenegro
3345
- #: ../admin/view/wp-slimstat-reports.php:1811
3346
  msgid "c-me"
3347
  msgstr "Monténégro"
3348
 
3349
  # Montserrat
3350
- #: ../admin/view/wp-slimstat-reports.php:1811
3351
  msgid "c-ms"
3352
  msgstr "Montserrat"
3353
 
3354
  # Morocco
3355
- #: ../admin/view/wp-slimstat-reports.php:1811
3356
  msgid "c-ma"
3357
  msgstr "Maroc"
3358
 
3359
  # Mozambique
3360
- #: ../admin/view/wp-slimstat-reports.php:1811
3361
  msgid "c-mz"
3362
  msgstr "Mozambique"
3363
 
3364
  # Myanmar
3365
- #: ../admin/view/wp-slimstat-reports.php:1811
3366
  msgid "c-mm"
3367
  msgstr "Myanmar"
3368
 
3369
  # Namibia
3370
- #: ../admin/view/wp-slimstat-reports.php:1811
3371
  msgid "c-na"
3372
  msgstr "Namibie"
3373
 
3374
  # Nepal
3375
- #: ../admin/view/wp-slimstat-reports.php:1811
3376
  msgid "c-np"
3377
  msgstr "Népal"
3378
 
3379
  # Netherlands
3380
- #: ../admin/view/wp-slimstat-reports.php:1811
3381
  msgid "c-nl"
3382
  msgstr "Pays-bas"
3383
 
3384
  # New Caledonia
3385
- #: ../admin/view/wp-slimstat-reports.php:1811
3386
  msgid "c-nc"
3387
  msgstr "Nouvelle-Calédonie"
3388
 
3389
  # New Zealand
3390
- #: ../admin/view/wp-slimstat-reports.php:1811
3391
  msgid "c-nz"
3392
  msgstr "Nouvelle-Zélande"
3393
 
3394
  # Nicaragua
3395
- #: ../admin/view/wp-slimstat-reports.php:1811
3396
  msgid "c-ni"
3397
  msgstr "Nicaragua"
3398
 
3399
  # Niger
3400
- #: ../admin/view/wp-slimstat-reports.php:1811
3401
  msgid "c-ne"
3402
  msgstr "Niger"
3403
 
3404
  # Nigeria
3405
- #: ../admin/view/wp-slimstat-reports.php:1811
3406
  msgid "c-ng"
3407
  msgstr "Nigéria"
3408
 
3409
  # Norway
3410
- #: ../admin/view/wp-slimstat-reports.php:1811
3411
  msgid "c-no"
3412
  msgstr "Norvège"
3413
 
3414
  # Oman
3415
- #: ../admin/view/wp-slimstat-reports.php:1811
3416
  msgid "c-om"
3417
  msgstr "Oman"
3418
 
3419
  # Pakistan
3420
- #: ../admin/view/wp-slimstat-reports.php:1811
3421
  msgid "c-pk"
3422
  msgstr "Pakistan"
3423
 
3424
  # Palau
3425
- #: ../admin/view/wp-slimstat-reports.php:1811
3426
  msgid "c-pw"
3427
  msgstr "Palaos"
3428
 
3429
  # Occupied Palestinian Territory
3430
- #: ../admin/view/wp-slimstat-reports.php:1811
3431
  msgid "c-ps"
3432
  msgstr "Territoire palestinien occupé"
3433
 
3434
  # Panama
3435
- #: ../admin/view/wp-slimstat-reports.php:1811
3436
  msgid "c-pa"
3437
  msgstr "Panama"
3438
 
3439
  # Papua New Guinea
3440
- #: ../admin/view/wp-slimstat-reports.php:1811
3441
  msgid "c-pg"
3442
  msgstr "Papouasie-Nouvelle-Guinée"
3443
 
3444
  # Paraguay
3445
- #: ../admin/view/wp-slimstat-reports.php:1811
3446
  msgid "c-py"
3447
  msgstr "Paraguay"
3448
 
3449
  # Peru
3450
- #: ../admin/view/wp-slimstat-reports.php:1811
3451
  msgid "c-pe"
3452
  msgstr "Pérou"
3453
 
3454
  # Philippines
3455
- #: ../admin/view/wp-slimstat-reports.php:1811
3456
  msgid "c-ph"
3457
  msgstr "Philippines"
3458
 
3459
  # Poland
3460
- #: ../admin/view/wp-slimstat-reports.php:1811
3461
  msgid "c-pl"
3462
  msgstr "Pologne"
3463
 
3464
  # Portugal
3465
- #: ../admin/view/wp-slimstat-reports.php:1811
3466
  msgid "c-pt"
3467
  msgstr "Portugal"
3468
 
3469
  # Puerto Rico
3470
- #: ../admin/view/wp-slimstat-reports.php:1811
3471
  msgid "c-pr"
3472
  msgstr "Porto Rico"
3473
 
3474
  # Qatar
3475
- #: ../admin/view/wp-slimstat-reports.php:1811
3476
  msgid "c-qa"
3477
  msgstr "Qatar"
3478
 
3479
  # Réunion
3480
- #: ../admin/view/wp-slimstat-reports.php:1811
3481
  msgid "c-re"
3482
  msgstr "Réunion"
3483
 
3484
  # Romania
3485
- #: ../admin/view/wp-slimstat-reports.php:1811
3486
  msgid "c-ro"
3487
  msgstr "Roumanie"
3488
 
3489
  # Russian Federation
3490
- #: ../admin/view/wp-slimstat-reports.php:1811
3491
  msgid "c-ru"
3492
  msgstr "Fédération de Russie"
3493
 
3494
  # Rwanda
3495
- #: ../admin/view/wp-slimstat-reports.php:1811
3496
  msgid "c-rw"
3497
  msgstr "Rwanda"
3498
 
3499
  # Saint Kitts and Nevis
3500
- #: ../admin/view/wp-slimstat-reports.php:1811
3501
  msgid "c-kn"
3502
  msgstr "Saint-Kitts-et-Nevis"
3503
 
3504
  # Saint Lucia
3505
- #: ../admin/view/wp-slimstat-reports.php:1811
3506
  msgid "c-lc"
3507
  msgstr "Sainte-Lucie"
3508
 
3509
  # Saint Martin
3510
- #: ../admin/view/wp-slimstat-reports.php:1811
3511
  msgid "c-mf"
3512
  msgstr "Saint-Martin"
3513
 
3514
  # Saint Vincent and the Grenadines
3515
- #: ../admin/view/wp-slimstat-reports.php:1811
3516
  msgid "c-vc"
3517
  msgstr "Saint-Vincent-et-les Grenadines"
3518
 
3519
  # Samoa
3520
- #: ../admin/view/wp-slimstat-reports.php:1811
3521
  msgid "c-ws"
3522
  msgstr "Samoa"
3523
 
3524
  # Sao Tome and Principe
3525
- #: ../admin/view/wp-slimstat-reports.php:1811
3526
  msgid "c-st"
3527
  msgstr "Sao Tomé-et-Principe"
3528
 
3529
  # Saudi Arabia
3530
- #: ../admin/view/wp-slimstat-reports.php:1811
3531
  msgid "c-sa"
3532
  msgstr "Arabie saoudite"
3533
 
3534
  # Senegal
3535
- #: ../admin/view/wp-slimstat-reports.php:1811
3536
  msgid "c-sn"
3537
  msgstr "Sénégal"
3538
 
3539
  # Serbia
3540
- #: ../admin/view/wp-slimstat-reports.php:1811
3541
  msgid "c-rs"
3542
  msgstr "Serbie"
3543
 
3544
  # Sierra Leone
3545
- #: ../admin/view/wp-slimstat-reports.php:1811
3546
  msgid "c-sl"
3547
  msgstr "Sierra Leone"
3548
 
3549
  # Singapore
3550
- #: ../admin/view/wp-slimstat-reports.php:1811
3551
  msgid "c-sg"
3552
  msgstr "Singapour"
3553
 
3554
  # Slovakia
3555
- #: ../admin/view/wp-slimstat-reports.php:1811
3556
  msgid "c-sk"
3557
  msgstr "Slovaquie"
3558
 
3559
  # Slovenia
3560
- #: ../admin/view/wp-slimstat-reports.php:1811
3561
  msgid "c-si"
3562
  msgstr "Slovénie"
3563
 
3564
  # Solomon Islands
3565
- #: ../admin/view/wp-slimstat-reports.php:1811
3566
  msgid "c-sb"
3567
  msgstr "Îles Salomon"
3568
 
3569
  # Somalia
3570
- #: ../admin/view/wp-slimstat-reports.php:1811
3571
  msgid "c-so"
3572
  msgstr "Somalie"
3573
 
3574
  # South Africa
3575
- #: ../admin/view/wp-slimstat-reports.php:1811
3576
  msgid "c-za"
3577
  msgstr "Afrique du sud"
3578
 
3579
  # South Georgia and the South Sandwich Islands
3580
- #: ../admin/view/wp-slimstat-reports.php:1811
3581
  msgid "c-gs"
3582
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
3583
 
3584
  # Spain
3585
- #: ../admin/view/wp-slimstat-reports.php:1811
3586
  msgid "c-es"
3587
  msgstr "Espagne"
3588
 
3589
  # Sri Lanka
3590
- #: ../admin/view/wp-slimstat-reports.php:1811
3591
  msgid "c-lk"
3592
  msgstr "Sri Lanka"
3593
 
3594
  # Seychelles
3595
- #: ../admin/view/wp-slimstat-reports.php:1811
3596
  msgid "c-sc"
3597
  msgstr "Seychelles"
3598
 
3599
  # Sudan
3600
- #: ../admin/view/wp-slimstat-reports.php:1811
3601
  msgid "c-sd"
3602
  msgstr "Soudan"
3603
 
3604
- #: ../admin/view/wp-slimstat-reports.php:1811
3605
  msgid "c-ss"
3606
  msgstr "Soudan du Sud"
3607
 
3608
  # Suriname
3609
- #: ../admin/view/wp-slimstat-reports.php:1811
3610
  msgid "c-sr"
3611
  msgstr "Suriname"
3612
 
3613
  # Svalbard and Jan Mayen
3614
- #: ../admin/view/wp-slimstat-reports.php:1811
3615
  msgid "c-sj"
3616
  msgstr "Svalbard et île Jan Mayen"
3617
 
3618
  # Swaziland
3619
- #: ../admin/view/wp-slimstat-reports.php:1811
3620
  msgid "c-sz"
3621
  msgstr "Swaziland"
3622
 
3623
  # Sweden
3624
- #: ../admin/view/wp-slimstat-reports.php:1811
3625
  msgid "c-se"
3626
  msgstr "Suède"
3627
 
3628
  # Switzerland
3629
- #: ../admin/view/wp-slimstat-reports.php:1811
3630
  msgid "c-ch"
3631
  msgstr "Suisse"
3632
 
3633
  # Syrian Arab Republic
3634
- #: ../admin/view/wp-slimstat-reports.php:1811
3635
  msgid "c-sy"
3636
  msgstr "République arabe syrienne"
3637
 
3638
  # Taiwan, Province of China
3639
- #: ../admin/view/wp-slimstat-reports.php:1811
3640
  msgid "c-tw"
3641
  msgstr "Taïwan, province de Chine"
3642
 
3643
  # Tajikistan
3644
- #: ../admin/view/wp-slimstat-reports.php:1811
3645
  msgid "c-tj"
3646
  msgstr "Tadjikistan"
3647
 
3648
  # United Republic of Tanzania
3649
- #: ../admin/view/wp-slimstat-reports.php:1811
3650
  msgid "c-tz"
3651
  msgstr "République-unie de Tanzanie"
3652
 
3653
  # Thailand
3654
- #: ../admin/view/wp-slimstat-reports.php:1811
3655
  msgid "c-th"
3656
  msgstr "Thaïlande"
3657
 
3658
  # Timor-Leste
3659
- #: ../admin/view/wp-slimstat-reports.php:1811
3660
  msgid "c-tl"
3661
  msgstr "Timor-Leste"
3662
 
3663
  # Togo
3664
- #: ../admin/view/wp-slimstat-reports.php:1811
3665
  msgid "c-tg"
3666
  msgstr "Togo"
3667
 
3668
  # Tonga
3669
- #: ../admin/view/wp-slimstat-reports.php:1811
3670
  msgid "c-to"
3671
  msgstr "Tonga"
3672
 
3673
  # Trinidad and Tobago
3674
- #: ../admin/view/wp-slimstat-reports.php:1811
3675
  msgid "c-tt"
3676
  msgstr "Trinité-et-Tobago "
3677
 
3678
  # Tunisia
3679
- #: ../admin/view/wp-slimstat-reports.php:1811
3680
  msgid "c-tn"
3681
  msgstr "Tunisie"
3682
 
3683
  # Turkey
3684
- #: ../admin/view/wp-slimstat-reports.php:1811
3685
  msgid "c-tr"
3686
  msgstr "Turquie "
3687
 
3688
  # Turkmenistan
3689
- #: ../admin/view/wp-slimstat-reports.php:1811
3690
  msgid "c-tm"
3691
  msgstr "Turkménistan"
3692
 
3693
  # Turks and Caicos Islands
3694
- #: ../admin/view/wp-slimstat-reports.php:1811
3695
  msgid "c-tc"
3696
  msgstr "Îles Turks et Caïques"
3697
 
3698
  # Uganda
3699
- #: ../admin/view/wp-slimstat-reports.php:1811
3700
  msgid "c-ug"
3701
  msgstr "Ouganda"
3702
 
3703
  # Ukraine
3704
- #: ../admin/view/wp-slimstat-reports.php:1811
3705
  msgid "c-ua"
3706
  msgstr "Ukraine"
3707
 
3708
  # United Arab Emirates
3709
- #: ../admin/view/wp-slimstat-reports.php:1811
3710
  msgid "c-ae"
3711
  msgstr "Émirats arabes unis"
3712
 
3713
  # United Kingdom
3714
- #: ../admin/view/wp-slimstat-reports.php:1811
3715
  msgid "c-gb"
3716
  msgstr "Royaume-Uni"
3717
 
3718
  # United States
3719
- #: ../admin/view/wp-slimstat-reports.php:1811
3720
  msgid "c-us"
3721
  msgstr "États-Unis"
3722
 
3723
  # Uruguay
3724
- #: ../admin/view/wp-slimstat-reports.php:1811
3725
  msgid "c-uy"
3726
  msgstr "Uruguay"
3727
 
3728
  # Uzbekistan
3729
- #: ../admin/view/wp-slimstat-reports.php:1811
3730
  msgid "c-uz"
3731
  msgstr "Ouzbékistan "
3732
 
3733
  # Vanuatu
3734
- #: ../admin/view/wp-slimstat-reports.php:1811
3735
  msgid "c-vu"
3736
  msgstr "Vanuatu"
3737
 
3738
  # Venezuela
3739
- #: ../admin/view/wp-slimstat-reports.php:1811
3740
  msgid "c-ve"
3741
  msgstr "République bolivarienne du Venezuela"
3742
 
3743
  # Viet Nam
3744
- #: ../admin/view/wp-slimstat-reports.php:1811
3745
  msgid "c-vn"
3746
  msgstr "Viet Nam"
3747
 
3748
  # British Virgin Islands
3749
- #: ../admin/view/wp-slimstat-reports.php:1811
3750
  msgid "c-vg"
3751
  msgstr "Îles vierges britanniques"
3752
 
3753
  # U.S. Virgin Islands
3754
- #: ../admin/view/wp-slimstat-reports.php:1811
3755
  msgid "c-vi"
3756
  msgstr "Îles vierges des États-Unis"
3757
 
3758
  # Western Sahara
3759
- #: ../admin/view/wp-slimstat-reports.php:1811
3760
  msgid "c-eh"
3761
  msgstr "Sahara occidental"
3762
 
3763
  # Yemen
3764
- #: ../admin/view/wp-slimstat-reports.php:1811
3765
  msgid "c-ye"
3766
  msgstr "Yémen"
3767
 
3768
  # Zambia
3769
- #: ../admin/view/wp-slimstat-reports.php:1811
3770
  msgid "c-zm"
3771
  msgstr "Zambie"
3772
 
3773
  # Zimbabwe
3774
- #: ../admin/view/wp-slimstat-reports.php:1811
3775
  msgid "c-zw"
3776
  msgstr "Zimbabwe"
3777
 
3778
  # Guernsey
3779
- #: ../admin/view/wp-slimstat-reports.php:1811
3780
  msgid "c-gg"
3781
  msgstr "Guernesey"
3782
 
3783
  # Jersey
3784
- #: ../admin/view/wp-slimstat-reports.php:1811
3785
  msgid "c-je"
3786
  msgstr "Jersey"
3787
 
3788
  # Isle of Man
3789
- #: ../admin/view/wp-slimstat-reports.php:1811
3790
  msgid "c-im"
3791
  msgstr "Île de Man"
3792
 
3793
  # Maldives
3794
- #: ../admin/view/wp-slimstat-reports.php:1811
3795
  msgid "c-mv"
3796
  msgstr "Maldives"
3797
 
3798
  # European Union
3799
- #: ../admin/view/wp-slimstat-reports.php:1812
3800
  msgid "c-eu"
3801
  msgstr "Union européenne"
3802
 
3803
- #: ../admin/view/wp-slimstat-reports.php:1894
3804
  msgid "src"
3805
  msgstr "src"
3806
 
3807
- #: ../admin/view/wp-slimstat-reports.php:1897
3808
  msgid "serp"
3809
  msgstr "serp"
3810
 
3811
- #: ../admin/view/wp-slimstat-reports.php:1904
3812
  msgid "Go to the referring page"
3813
  msgstr "Aller sur la page référente"
3814
 
3815
- #: ../admin/view/wp-slimstat-reports.php:1926
3816
  msgid "Remove filter for"
3817
  msgstr "Enlever le filtre pour"
3818
 
3819
- #: ../admin/view/wp-slimstat-reports.php:1930
3820
  msgid "Save"
3821
  msgstr ""
3822
 
3823
- #: ../admin/view/wp-slimstat-reports.php:1933
3824
  msgid "Reset All"
3825
  msgstr "Réinitialiser l'ensemble"
3826
 
3827
- #: ../admin/view/wp-slimstat-reports.php:1937
3828
  msgid "Current filters:"
3829
  msgstr "Filtres actifs :"
3830
 
3831
- #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
3832
- #: ../admin/wp-slimstat-admin.php:495
3833
- msgid "SlimStat"
3834
- msgstr "SlimStat"
 
 
 
 
 
 
 
3835
 
3836
- #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
3837
- #: ../wp-slimstat.php:1799
 
 
 
3838
  #, fuzzy
3839
  msgid "Customize"
3840
  msgstr "Personnaliser le style CSS"
3841
 
3842
- #: ../admin/wp-slimstat-admin.php:587
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3843
  #, fuzzy
3844
  msgid "Pageviews in the last "
3845
  msgstr "Pages durant les 365 derniers jours"
3846
 
3847
- #: ../admin/wp-slimstat-admin.php:590
3848
  #, fuzzy
3849
  msgid "Unique IPs in the last "
3850
  msgstr "Intervalle unique"
3851
 
3852
- #: ../admin/wp-slimstat-admin.php:644
3853
  msgid "Show on screen"
3854
  msgstr "Montrer à l'écran"
3855
 
3856
- #: ../admin/wp-slimstat-admin.php:725
3857
  msgid "Already saved"
3858
  msgstr ""
3859
 
3860
- #: ../admin/wp-slimstat-admin.php:733
3861
  msgid "Saved"
3862
  msgstr ""
3863
 
3864
- #: ../admin/wp-slimstat-admin.php:753
3865
  #, fuzzy
3866
  msgid "Delete this filter"
3867
  msgstr "Filtrer les pages vues pour que"
3868
 
3869
- #: ../admin/wp-slimstat-admin.php:797
3870
  msgid "There was an error updating the following options:"
3871
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
3872
 
3873
- #: ../admin/wp-slimstat-admin.php:800
3874
  msgid "Your changes have been saved."
3875
  msgstr "Vos réglages ont bien été mis à jour"
3876
 
3877
- #: ../admin/wp-slimstat-admin.php:823
3878
  msgid "Save Changes"
3879
  msgstr "Enregistrer les modifications"
3880
 
3881
- #: ../admin/wp-slimstat-admin.php:839
3882
  msgid "Definitions"
3883
  msgstr "Définitions"
3884
 
3885
- #: ../admin/wp-slimstat-admin.php:842
3886
  msgid "Pageview"
3887
  msgstr "Page vue"
3888
 
3889
- #: ../admin/wp-slimstat-admin.php:842
3890
  msgid ""
3891
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3892
  "with a \"hit\", which refers to a request for any file from a web server. "
@@ -3897,11 +3863,11 @@ msgstr ""
3897
  "d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
3898
  "code de traçage est exécuté"
3899
 
3900
- #: ../admin/wp-slimstat-admin.php:843
3901
  msgid "(Human) Visit"
3902
  msgstr "Visiteurs humains"
3903
 
3904
- #: ../admin/wp-slimstat-admin.php:843
3905
  msgid ""
3906
  "A period of interaction between a visitor's browser and your website, ending "
3907
  "when the browser is closed or when the user has been inactive on that site "
@@ -3911,7 +3877,7 @@ msgstr ""
3911
  "Web se terminant lorsque le navigateur est fermé ou lorsque l'utilisateur "
3912
  "est inactif sur ce site depuis 30 minutes"
3913
 
3914
- #: ../admin/wp-slimstat-admin.php:844
3915
  msgid ""
3916
  "Any user who has left a comment on your blog, and is thus identified by "
3917
  "Wordpress as a returning visitor"
@@ -3919,11 +3885,11 @@ msgstr ""
3919
  "Un utilisateur qui a laissé un commentaire sur votre blog et est ainsi "
3920
  "identifié par Wordpress comme un visiteur qui a déjà visité votre site"
3921
 
3922
- #: ../admin/wp-slimstat-admin.php:845
3923
  msgid "Unique IP"
3924
  msgstr "IP uniques"
3925
 
3926
- #: ../admin/wp-slimstat-admin.php:845
3927
  msgid ""
3928
  "Used to differentiate between multiple requests to download a file from one "
3929
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3936,7 +3902,7 @@ msgstr ""
3936
  "Internet de la provenance d'une consultation, elle est utile, mais pas "
3937
  "parfaite"
3938
 
3939
- #: ../admin/wp-slimstat-admin.php:846
3940
  msgid ""
3941
  "the originating IP address of a client connecting to a web server through an "
3942
  "HTTP proxy or load balancer"
@@ -3944,11 +3910,11 @@ msgstr ""
3944
  "l'adresse IP d'origine d'un client qui se connecte à un serveur Web via un "
3945
  "proxy HTTP ou équilibreur de charge"
3946
 
3947
- #: ../admin/wp-slimstat-admin.php:847
3948
  msgid "Direct Traffic"
3949
  msgstr "Trafic direct"
3950
 
3951
- #: ../admin/wp-slimstat-admin.php:847
3952
  msgid ""
3953
  "All those people showing up to your Web site by typing in the URL of your "
3954
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -3958,11 +3924,11 @@ msgstr ""
3958
  "votre site Web ou qui viennent à partir d'un signet, certaines personnes "
3959
  "appellent également cela \"trafic par défaut \" ou \"trafic ambiant \""
3960
 
3961
- #: ../admin/wp-slimstat-admin.php:848
3962
  msgid "Search Engine"
3963
  msgstr "Moteur de recherche"
3964
 
3965
- #: ../admin/wp-slimstat-admin.php:848
3966
  msgid ""
3967
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3968
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -3970,17 +3936,17 @@ msgstr ""
3970
  "Google, Yahoo, MSN, Ask, et autres; cet item comprendra à la fois votre "
3971
  "trafic rémunéré (PPC/SEM) ainsi que votre trafic organique, prenez en note"
3972
 
3973
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
3974
  msgid "Keywords used by your visitors to find your website on a search engine"
3975
  msgstr ""
3976
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
3977
  "de recherche"
3978
 
3979
- #: ../admin/wp-slimstat-admin.php:850
3980
  msgid "SERP"
3981
  msgstr "SERP"
3982
 
3983
- #: ../admin/wp-slimstat-admin.php:850
3984
  msgid ""
3985
  "Short for search engine results page, the Web page that a search engine "
3986
  "returns with the results of its search. The value shown represents your rank "
@@ -3990,7 +3956,7 @@ msgstr ""
3990
  "recherche renvoie les résultats de sa recherche. La valeur indiquée "
3991
  "correspond à votre classement (ou la position) dans la liste des résultats"
3992
 
3993
- #: ../admin/wp-slimstat-admin.php:851
3994
  msgid ""
3995
  "Any program used for accessing a website; this includes browsers, robots, "
3996
  "spiders and any other program that was used to retrieve information from the "
@@ -4000,7 +3966,7 @@ msgstr ""
4000
  "navigateurs, robots, spiders et tout autre programme qui a été utilisé pour "
4001
  "extraire des informations du site"
4002
 
4003
- #: ../admin/wp-slimstat-admin.php:852
4004
  msgid ""
4005
  "A link from one domain to another is said to be outbound from its source "
4006
  "anchor and inbound to its target. This report lists all the links to other "
@@ -4010,27 +3976,27 @@ msgstr ""
4010
  "sa cible. Ce rapport répertorie tous les liens vers d'autres sites suivis "
4011
  "par vos visiteurs."
4012
 
4013
- #: ../admin/wp-slimstat-admin.php:859
4014
  msgid "Basic Filters"
4015
  msgstr "Filtres de base"
4016
 
4017
- #: ../admin/wp-slimstat-admin.php:862
4018
  msgid "User agent (Firefox, Chrome, ...)"
4019
  msgstr "User agent (Firefox, Chrome, ...)"
4020
 
4021
- #: ../admin/wp-slimstat-admin.php:863
4022
  msgid "2-letter code (us, ru, de, it, ...)"
4023
  msgstr "code pays à 2 lettres (us, ru, de, it, ...)"
4024
 
4025
- #: ../admin/wp-slimstat-admin.php:864
4026
  msgid "IP"
4027
  msgstr "IP"
4028
 
4029
- #: ../admin/wp-slimstat-admin.php:864
4030
  msgid "Visitor's public IP address"
4031
  msgstr " Adresse IP publique du visiteur"
4032
 
4033
- #: ../admin/wp-slimstat-admin.php:866
4034
  msgid ""
4035
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4036
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -4040,7 +4006,7 @@ msgstr ""
4040
  "microsoft.com/en-us/library/ee825488(v=cs.20).aspx\">language culture page</"
4041
  "a> (première colonne) pour plus d'informations"
4042
 
4043
- #: ../admin/wp-slimstat-admin.php:867
4044
  msgid ""
4045
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4046
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -4050,15 +4016,19 @@ msgstr ""
4050
  "référez-vous à <a target=\"_blank\" href=\"http://php.net/manual/en/function."
4051
  "get-browser.php\">cette page de manuel </a> pour plus d'informations"
4052
 
4053
- #: ../admin/wp-slimstat-admin.php:868
4054
  msgid "URL accessed on your site"
4055
  msgstr "URL accessible sur votre site"
4056
 
4057
- #: ../admin/wp-slimstat-admin.php:869
4058
  msgid "Complete address of the referrer page"
4059
  msgstr "Adresse complète de la page référente"
4060
 
4061
- #: ../admin/wp-slimstat-admin.php:870
 
 
 
 
4062
  msgid ""
4063
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4064
  "comment"
@@ -4066,15 +4036,15 @@ msgstr ""
4066
  "Les noms des visiteurs selon le cookie enregistré par Wordpress, après avoir "
4067
  "laissé un commentaire"
4068
 
4069
- #: ../admin/wp-slimstat-admin.php:878
4070
  msgid "Advanced Filters"
4071
  msgstr "Filtres Avancés"
4072
 
4073
- #: ../admin/wp-slimstat-admin.php:881
4074
  msgid "user agent version (9.0, 11, ...)"
4075
  msgstr "user agent version (9.0, 11, ...)"
4076
 
4077
- #: ../admin/wp-slimstat-admin.php:882
4078
  msgid ""
4079
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4080
  "all others"
@@ -4082,11 +4052,11 @@ msgstr ""
4082
  "1 = moteur de recherche, 2 = appareil mobile, 3 = lecteur de flux "
4083
  "(syndication) , 0 = tous les autres"
4084
 
4085
- #: ../admin/wp-slimstat-admin.php:883
4086
  msgid "Pageview Attributes"
4087
  msgstr "l'attribut des Pages Vues"
4088
 
4089
- #: ../admin/wp-slimstat-admin.php:883
4090
  msgid ""
4091
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4092
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -4097,19 +4067,19 @@ msgstr ""
4097
  "Link_prefetching_FAQ\"> préchargement des liens</a> ou d'autres techniques "
4098
  "similaires"
4099
 
4100
- #: ../admin/wp-slimstat-admin.php:884
4101
  msgid "author associated to that post/page when the resource was accessed"
4102
  msgstr "auteur associé à cet article/page lorsque la ressource est accessible"
4103
 
4104
- #: ../admin/wp-slimstat-admin.php:885
4105
  msgid "ID of the category/term associated to the resource, when available"
4106
  msgstr "ID de la catégorie/terme associée à la ressource, lorsqu'il y en a"
4107
 
4108
- #: ../admin/wp-slimstat-admin.php:886
4109
  msgid "visitor's originating IP address, if available"
4110
  msgstr "adresse IP d'origine du visiteur, s'il est disponible"
4111
 
4112
- #: ../admin/wp-slimstat-admin.php:887
4113
  msgid ""
4114
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4115
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -4123,15 +4093,15 @@ msgstr ""
4123
  "\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> "
4124
  "pour plus d'informations"
4125
 
4126
- #: ../admin/wp-slimstat-admin.php:888
4127
  msgid "Screen Resolution"
4128
  msgstr "la résolution de l'écran"
4129
 
4130
- #: ../admin/wp-slimstat-admin.php:888
4131
  msgid "viewport width and height (1024x768, 800x600, ...)"
4132
  msgstr "résolution de l'écran (1024x768, 800x600, ...)"
4133
 
4134
- #: ../admin/wp-slimstat-admin.php:889
4135
  msgid ""
4136
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4137
  "visitors"
@@ -4139,11 +4109,11 @@ msgstr ""
4139
  "généralement utilisé en conjonction avec <em>n'est pas vide </em>, identifie "
4140
  "les visiteurs humains"
4141
 
4142
- #: ../admin/wp-slimstat-admin.php:890
4143
  msgid "Date Filters"
4144
  msgstr "Filtres de dates"
4145
 
4146
- #: ../admin/wp-slimstat-admin.php:890
4147
  msgid ""
4148
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4149
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -4154,11 +4124,11 @@ msgstr ""
4154
  "ex : jour = 1, mois = 1, année = vide, intervalle = -1 fixera un filtre "
4155
  "année à date)"
4156
 
4157
- #: ../admin/wp-slimstat-admin.php:891
4158
  msgid "SERP Position"
4159
  msgstr "Position SERP "
4160
 
4161
- #: ../admin/wp-slimstat-admin.php:891
4162
  msgid ""
4163
  "set the filter to Referer contains cd=N&, where N is the position you are "
4164
  "looking for"
@@ -4166,15 +4136,15 @@ msgstr ""
4166
  "Réglez le filtre sur Référent contient cd=N&, où N est la position que vous "
4167
  "recherchez"
4168
 
4169
- #: ../admin/wp-slimstat-admin.php:918
4170
  msgid "Yes"
4171
  msgstr "Oui"
4172
 
4173
- #: ../admin/wp-slimstat-admin.php:919
4174
  msgid "No"
4175
  msgstr "Non"
4176
 
4177
- #: ../admin/wp-slimstat-admin.php:920
4178
  msgid "Site Specific"
4179
  msgstr "Spécificités du site"
4180
 
@@ -4207,1597 +4177,1716 @@ msgid "blackberry os"
4207
  msgstr "BlackBerry OS"
4208
 
4209
  #: ../languages/dynamic_strings.php:11
 
 
 
 
 
4210
  msgid "chromeos"
4211
  msgstr ""
4212
 
 
 
 
 
4213
  # Cygwin
4214
- #: ../languages/dynamic_strings.php:12
4215
  msgid "cygwin"
4216
  msgstr "Cygwin"
4217
 
4218
  # Debian
4219
- #: ../languages/dynamic_strings.php:13
4220
  msgid "debian"
4221
  msgstr "Debian"
4222
 
4223
  # Digital Unix
4224
- #: ../languages/dynamic_strings.php:14
4225
  msgid "digital unix"
4226
  msgstr "Digital Unix"
4227
 
4228
- #: ../languages/dynamic_strings.php:15
 
 
 
 
4229
  msgid "firefoxos"
4230
  msgstr ""
4231
 
4232
  # freeBSD
4233
- #: ../languages/dynamic_strings.php:16
4234
  msgid "freebsd"
4235
  msgstr "freeBSD"
4236
 
 
 
 
 
4237
  # HP-UX
4238
- #: ../languages/dynamic_strings.php:17
4239
  msgid "hp-ux"
4240
  msgstr "HP-UX"
4241
 
4242
- #: ../languages/dynamic_strings.php:18
4243
  msgid "ios"
4244
  msgstr "Apple iOS"
4245
 
4246
  # iPhone
4247
- #: ../languages/dynamic_strings.php:19
 
 
 
 
 
 
4248
  msgid "iphone osx"
4249
  msgstr "iPhone"
4250
 
4251
  # IRIX
4252
- #: ../languages/dynamic_strings.php:20
4253
  msgid "irix"
4254
  msgstr "IRIX"
4255
 
4256
  # Java
4257
- #: ../languages/dynamic_strings.php:21
4258
  msgid "java"
4259
  msgstr "Java"
4260
 
 
 
 
 
 
 
 
 
4261
  # Linux
4262
- #: ../languages/dynamic_strings.php:22
4263
  msgid "linux"
4264
  msgstr "Linux"
4265
 
4266
  # Mac
4267
- #: ../languages/dynamic_strings.php:23
4268
  msgid "mac"
4269
  msgstr "Mac"
4270
 
4271
  # Mac 68K
4272
- #: ../languages/dynamic_strings.php:24
4273
  msgid "mac68k"
4274
  msgstr "Mac 68K"
4275
 
4276
  # Mac OS X
4277
- #: ../languages/dynamic_strings.php:25
4278
  msgid "macosx"
4279
  msgstr "Mac OS X"
4280
 
4281
  # Mac PowerPC
4282
- #: ../languages/dynamic_strings.php:26
4283
  msgid "macppc"
4284
  msgstr "Mac PowerPC"
4285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4286
  # netBSD
4287
- #: ../languages/dynamic_strings.php:27
4288
  msgid "netbsd"
4289
  msgstr "netBSD"
4290
 
 
 
 
 
4291
  # openBSD
4292
- #: ../languages/dynamic_strings.php:28
4293
  msgid "openbsd"
4294
  msgstr "openBSD"
4295
 
4296
  # openVMS
4297
- #: ../languages/dynamic_strings.php:29
4298
  msgid "openvms"
4299
  msgstr "openVMS"
4300
 
4301
  # IBM OS/2
4302
- #: ../languages/dynamic_strings.php:30
4303
  msgid "os/2"
4304
  msgstr "IBM OS/2"
4305
 
4306
  # Palm
4307
- #: ../languages/dynamic_strings.php:31
4308
  msgid "palm"
4309
  msgstr "Palm"
4310
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4311
  # PowerTV
4312
- #: ../languages/dynamic_strings.php:32
4313
  msgid "powertv"
4314
  msgstr "PowerTV"
4315
 
4316
- #: ../languages/dynamic_strings.php:33
 
 
 
 
4317
  msgid "rim os"
4318
  msgstr ""
4319
 
4320
  # Risc OS
4321
- #: ../languages/dynamic_strings.php:34
4322
  msgid "risc os"
4323
  msgstr "Risc OS"
4324
 
 
 
 
 
4325
  # Solaris
4326
- #: ../languages/dynamic_strings.php:35
4327
  msgid "solaris"
4328
  msgstr "Solaris"
4329
 
4330
  # Sun OS
4331
- #: ../languages/dynamic_strings.php:36
4332
  msgid "sunos"
4333
  msgstr "Sun OS"
4334
 
 
 
 
 
4335
  # Symbian OS
4336
- #: ../languages/dynamic_strings.php:37
4337
  msgid "symbianos"
4338
  msgstr "Symbian OS"
4339
 
4340
- #: ../languages/dynamic_strings.php:38
4341
  msgid "ubuntu"
4342
  msgstr ""
4343
 
4344
  # UNIX
4345
- #: ../languages/dynamic_strings.php:39
4346
  msgid "unix"
4347
  msgstr "UNIX"
4348
 
4349
- #: ../languages/dynamic_strings.php:40
4350
  msgid "unknown"
4351
  msgstr "Inconnu"
4352
 
 
 
 
 
 
 
4353
  # WAP
4354
- #: ../languages/dynamic_strings.php:41
4355
  msgid "wap"
4356
  msgstr "WAP"
4357
 
4358
  # webOS
4359
- #: ../languages/dynamic_strings.php:42
4360
  msgid "webos"
4361
  msgstr "webOS"
4362
 
4363
  # Windows 16-bit
4364
- #: ../languages/dynamic_strings.php:43
4365
  #, fuzzy
4366
  msgid "win10"
4367
  msgstr "Windows 16-bit"
4368
 
4369
  # Windows 16-bit
4370
- #: ../languages/dynamic_strings.php:44
4371
  msgid "win16"
4372
  msgstr "Windows 16-bit"
4373
 
4374
  # Windows 2000
4375
- #: ../languages/dynamic_strings.php:45
4376
  msgid "win2000"
4377
  msgstr "Windows 2000"
4378
 
4379
  # Windows 2003
4380
- #: ../languages/dynamic_strings.php:46
4381
  msgid "win2003"
4382
  msgstr "Windows 2003"
4383
 
4384
  # Windows 3.1
4385
- #: ../languages/dynamic_strings.php:47
4386
  msgid "win31"
4387
  msgstr "Windows 3.1"
4388
 
4389
  # Windows 32-bit
4390
- #: ../languages/dynamic_strings.php:48
4391
  msgid "win32"
4392
  msgstr "Windows 32-bit"
4393
 
4394
  # Windows 7
4395
- #: ../languages/dynamic_strings.php:49 ../languages/dynamic_strings.php:50
4396
  msgid "win7"
4397
  msgstr "Windows 7"
4398
 
4399
- #: ../languages/dynamic_strings.php:51
4400
  msgid "win8"
4401
  msgstr "Windows 8"
4402
 
4403
- #: ../languages/dynamic_strings.php:52
4404
  msgid "win8.1"
4405
  msgstr "Windows 8.1"
4406
 
4407
  # Windows 95
4408
- #: ../languages/dynamic_strings.php:53
4409
  msgid "win95"
4410
  msgstr "Windows 95"
4411
 
4412
  # Windows 98
4413
- #: ../languages/dynamic_strings.php:54
4414
  msgid "win98"
4415
  msgstr "Windows 98"
4416
 
4417
  # Windows CE
4418
- #: ../languages/dynamic_strings.php:55
4419
  msgid "wince"
4420
  msgstr "Windows CE"
4421
 
4422
- # iPhone
4423
- #: ../languages/dynamic_strings.php:56
4424
- #, fuzzy
4425
- msgid "windows phone"
4426
- msgstr "Windows Phone"
4427
-
4428
  # Windows ME
4429
- #: ../languages/dynamic_strings.php:57
4430
  msgid "winme"
4431
  msgstr "Windows ME"
4432
 
4433
  # Windows NT
4434
- #: ../languages/dynamic_strings.php:58
4435
  msgid "winnt"
4436
  msgstr "Windows NT"
4437
 
4438
  # iPhone
4439
- #: ../languages/dynamic_strings.php:59
4440
  msgid "winphone7"
4441
  msgstr "Windows Phone"
4442
 
4443
  # iPhone
4444
- #: ../languages/dynamic_strings.php:60
4445
  #, fuzzy
4446
  msgid "winphone7.5"
4447
  msgstr "Windows Phone"
4448
 
4449
  # iPhone
4450
- #: ../languages/dynamic_strings.php:61
4451
  #, fuzzy
4452
  msgid "winphone8"
4453
  msgstr "Windows Phone"
4454
 
4455
  # iPhone
4456
- #: ../languages/dynamic_strings.php:62
4457
  #, fuzzy
4458
  msgid "winphone8.1"
4459
  msgstr "Windows Phone"
4460
 
 
 
 
 
4461
  # Windows Vista
4462
- #: ../languages/dynamic_strings.php:63
4463
  msgid "winvista"
4464
  msgstr "Windows Vista"
4465
 
4466
  # Windows XP
4467
- #: ../languages/dynamic_strings.php:64
4468
  msgid "winxp"
4469
  msgstr "Windows XP"
4470
 
4471
  # WyderOS
4472
- #: ../languages/dynamic_strings.php:65
4473
  msgid "wyderos"
4474
  msgstr "WyderOS"
4475
 
4476
- #: ../languages/dynamic_strings.php:68
 
 
 
 
4477
  msgid "acrobat"
4478
  msgstr "Acrobat Reader"
4479
 
4480
- #: ../languages/dynamic_strings.php:69
4481
  msgid "director"
4482
  msgstr "Macromedia Director"
4483
 
4484
- #: ../languages/dynamic_strings.php:70
4485
  msgid "flash"
4486
  msgstr "Flash"
4487
 
4488
- #: ../languages/dynamic_strings.php:71
4489
  msgid "mediaplayer"
4490
  msgstr "Media Player"
4491
 
4492
- #: ../languages/dynamic_strings.php:72
4493
  msgid "quicktime"
4494
  msgstr "Quicktime"
4495
 
4496
- #: ../languages/dynamic_strings.php:73
4497
  msgid "real"
4498
  msgstr "Real Player"
4499
 
4500
- #: ../languages/dynamic_strings.php:74
4501
  msgid "silverlight"
4502
  msgstr "Silverlight"
4503
 
4504
- #: ../languages/dynamic_strings.php:77
4505
  msgid "p-and"
4506
  msgstr "Android"
4507
 
4508
- #: ../languages/dynamic_strings.php:78
4509
  msgid "p-bla"
4510
  msgstr "BlackBerry"
4511
 
4512
- #: ../languages/dynamic_strings.php:79
4513
  msgid "p-chr"
4514
  msgstr "Chrome OS"
4515
 
4516
- #: ../languages/dynamic_strings.php:80
4517
  msgid "p-fir"
4518
- msgstr ""
4519
 
4520
- #: ../languages/dynamic_strings.php:81
4521
  msgid "p-fre"
4522
  msgstr "Linux FreeBSD"
4523
 
4524
- #: ../languages/dynamic_strings.php:82
4525
  msgid "p-ios"
4526
  msgstr "Apple iOS"
4527
 
4528
- #: ../languages/dynamic_strings.php:83
4529
  msgid "p-jav"
4530
  msgstr "Java-based OS"
4531
 
4532
- #: ../languages/dynamic_strings.php:84
4533
  msgid "p-lin"
4534
  msgstr "Linux"
4535
 
4536
- #: ../languages/dynamic_strings.php:85
4537
  msgid "p-mac"
4538
  msgstr "Apple"
4539
 
4540
- #: ../languages/dynamic_strings.php:86
4541
  msgid "p-rim"
4542
- msgstr ""
4543
 
4544
- #: ../languages/dynamic_strings.php:87
4545
  msgid "p-sym"
4546
  msgstr "Symbian OS"
4547
 
4548
- #: ../languages/dynamic_strings.php:88
4549
  msgid "p-ubu"
4550
- msgstr ""
4551
 
4552
- #: ../languages/dynamic_strings.php:89
4553
  msgid "p-unk"
4554
  msgstr "Unknown"
4555
 
4556
- #: ../languages/dynamic_strings.php:90
4557
  msgid "p-win"
4558
  msgstr "Microsoft"
4559
 
4560
  # Afrikaans
4561
- #: ../languages/dynamic_strings.php:93
4562
  msgid "l-af"
4563
  msgstr "Afrikaans"
4564
 
4565
  # Afrikaans
4566
- #: ../languages/dynamic_strings.php:94
4567
  msgid "l-af-za"
4568
  msgstr "Afrikaans"
4569
 
4570
  # Arabic
4571
- #: ../languages/dynamic_strings.php:95
4572
  msgid "l-ar"
4573
  msgstr "Arabe"
4574
 
4575
  # Arabic (United Arab Emirates)
4576
- #: ../languages/dynamic_strings.php:96
4577
  msgid "l-ar-ae"
4578
  msgstr "Arabe (Émirats arabes unis)"
4579
 
4580
  # Arabic (Bahrain)
4581
- #: ../languages/dynamic_strings.php:97
4582
  msgid "l-ar-bh"
4583
  msgstr "Arabe (Bahreïn)"
4584
 
4585
  # Arabic (Algeria)
4586
- #: ../languages/dynamic_strings.php:98
4587
  msgid "l-ar-dz"
4588
  msgstr "Arabe (Algérie)"
4589
 
4590
  # Arabic (Egypt)
4591
- #: ../languages/dynamic_strings.php:99
4592
  msgid "l-ar-eg"
4593
  msgstr "Arabe (Égypte)"
4594
 
4595
  # Arabic (Iraq)
4596
- #: ../languages/dynamic_strings.php:100
4597
  msgid "l-ar-iq"
4598
  msgstr "Arabe (Irak)"
4599
 
4600
  # Arabic (Jordan)
4601
- #: ../languages/dynamic_strings.php:101
4602
  msgid "l-ar-jo"
4603
  msgstr "Arabe (Jordanie)"
4604
 
4605
  # Arabic (Kuwait)
4606
- #: ../languages/dynamic_strings.php:102
4607
  msgid "l-ar-kw"
4608
  msgstr "Arabe (Koweït)"
4609
 
4610
  # Arabic (Lebanon)
4611
- #: ../languages/dynamic_strings.php:103
4612
  msgid "l-ar-lb"
4613
  msgstr "Arabe (Liban)"
4614
 
4615
  # Arabic (Libya)
4616
- #: ../languages/dynamic_strings.php:104
4617
  msgid "l-ar-ly"
4618
  msgstr "Arabe (Libye)"
4619
 
4620
  # Arabic (Morocco)
4621
- #: ../languages/dynamic_strings.php:105
4622
  msgid "l-ar-ma"
4623
  msgstr "Arabe (Maroc)"
4624
 
4625
  # Arabic (Oman)
4626
- #: ../languages/dynamic_strings.php:106
4627
  msgid "l-ar-om"
4628
  msgstr "Arabe (Oman)"
4629
 
4630
  # Arabic (Qatar)
4631
- #: ../languages/dynamic_strings.php:107
4632
  msgid "l-ar-qa"
4633
  msgstr "Arabe (Qatar)"
4634
 
4635
  # Arabic (Saudi Arabia)
4636
- #: ../languages/dynamic_strings.php:108
4637
  msgid "l-ar-sa"
4638
  msgstr "Arabe (Arabie saoudite)"
4639
 
4640
  # Arabic (Syria)
4641
- #: ../languages/dynamic_strings.php:109
4642
  msgid "l-ar-sy"
4643
  msgstr "Arabe (Syrie)"
4644
 
4645
  # Arabic (Tunisia)
4646
- #: ../languages/dynamic_strings.php:110
4647
  msgid "l-ar-tn"
4648
  msgstr "Arabe (Tunisie)"
4649
 
4650
  # Arabic (Yemen)
4651
- #: ../languages/dynamic_strings.php:111
4652
  msgid "l-ar-ye"
4653
  msgstr "Arabe (Yémen)"
4654
 
4655
  # Azerbaijani
4656
- #: ../languages/dynamic_strings.php:112
4657
  msgid "l-az"
4658
  msgstr "Azéri"
4659
 
4660
  # Azerbaijani
4661
- #: ../languages/dynamic_strings.php:113
4662
  msgid "l-az-az"
4663
  msgstr "Azéri"
4664
 
4665
  # Belarusian
4666
- #: ../languages/dynamic_strings.php:114
4667
  msgid "l-be"
4668
  msgstr "Biélorusse"
4669
 
4670
  # Belarusian
4671
- #: ../languages/dynamic_strings.php:115
4672
  msgid "l-be-by"
4673
  msgstr "Biélorusse"
4674
 
4675
  # Bulgarian
4676
- #: ../languages/dynamic_strings.php:116
4677
  msgid "l-bg"
4678
  msgstr "Bulgare"
4679
 
4680
  # Bulgarian
4681
- #: ../languages/dynamic_strings.php:117
4682
  msgid "l-bg-bg"
4683
  msgstr "Bulgare"
4684
 
4685
  # Bosnian
4686
- #: ../languages/dynamic_strings.php:118
4687
  msgid "l-bs-ba"
4688
  msgstr "Bosnien"
4689
 
4690
  # Catalan; Valencian
4691
- #: ../languages/dynamic_strings.php:119
4692
  msgid "l-ca"
4693
  msgstr "Catalan; Valencien"
4694
 
4695
  # Catalan; Valencian
4696
- #: ../languages/dynamic_strings.php:120
4697
  msgid "l-ca-es"
4698
  msgstr "Catalan; Valencien"
4699
 
4700
  # Czech
4701
- #: ../languages/dynamic_strings.php:121
4702
  msgid "l-cs"
4703
  msgstr "Tchèque"
4704
 
4705
  # Czech
4706
- #: ../languages/dynamic_strings.php:122
4707
  msgid "l-cs-cz"
4708
  msgstr "Tchèque"
4709
 
4710
  # Welsh
4711
- #: ../languages/dynamic_strings.php:123
4712
  msgid "l-cy"
4713
  msgstr "Gallois"
4714
 
4715
  # Welsh
4716
- #: ../languages/dynamic_strings.php:124
4717
  msgid "l-cy-gb"
4718
  msgstr "Gallois"
4719
 
4720
  # Danish
4721
- #: ../languages/dynamic_strings.php:125
4722
  msgid "l-da"
4723
  msgstr "Danois"
4724
 
4725
  # Danish
4726
- #: ../languages/dynamic_strings.php:126
4727
  msgid "l-da-dk"
4728
  msgstr "Danois"
4729
 
4730
  # German
4731
- #: ../languages/dynamic_strings.php:127
4732
  msgid "l-de"
4733
  msgstr "Allemand"
4734
 
4735
  # German (Austria)
4736
- #: ../languages/dynamic_strings.php:128
4737
  msgid "l-de-at"
4738
  msgstr "Allemand (Autriche)"
4739
 
4740
  # German (Switzerland)
4741
- #: ../languages/dynamic_strings.php:129
4742
  msgid "l-de-ch"
4743
  msgstr "Allemand (Suisse)"
4744
 
4745
  # German (Germany)
4746
- #: ../languages/dynamic_strings.php:130
4747
  msgid "l-de-de"
4748
  msgstr "Allemand (Allemagne)"
4749
 
4750
  # German (Liechtenstein)
4751
- #: ../languages/dynamic_strings.php:131
4752
  msgid "l-de-li"
4753
  msgstr "Allemand (Liechtenstein)"
4754
 
4755
  # German (Luxembourg)
4756
- #: ../languages/dynamic_strings.php:132
4757
  msgid "l-de-lu"
4758
  msgstr "Allemand (Luxembourg)"
4759
 
4760
  # Dhivehi; Divehi; Maldivian
4761
- #: ../languages/dynamic_strings.php:133
4762
  msgid "l-dv"
4763
  msgstr "Dhivehi; Divehi; Maldivien"
4764
 
4765
  # Dhivehi; Divehi; Maldivian
4766
- #: ../languages/dynamic_strings.php:134
4767
  msgid "l-dv-mv"
4768
  msgstr "Dhivehi; Divehi; Maldivien"
4769
 
4770
  # Modern Greek (1453-)
4771
- #: ../languages/dynamic_strings.php:135
4772
  msgid "l-el"
4773
  msgstr "Grec moderne"
4774
 
4775
  # Greek (Greece)
4776
- #: ../languages/dynamic_strings.php:136
4777
  msgid "l-el-gr"
4778
  msgstr "Grec moderne (Grèce)"
4779
 
4780
  # English
4781
- #: ../languages/dynamic_strings.php:137
4782
  msgid "l-en"
4783
  msgstr "Anglais"
4784
 
4785
  # English (Australia)
4786
- #: ../languages/dynamic_strings.php:138
4787
  msgid "l-en-au"
4788
  msgstr "Anglais (Australie)"
4789
 
4790
  # English (Belize)
4791
- #: ../languages/dynamic_strings.php:139
4792
  msgid "l-en-bz"
4793
  msgstr "Anglais (Belize)"
4794
 
4795
  # English (Canada)
4796
- #: ../languages/dynamic_strings.php:140
4797
  msgid "l-en-ca"
4798
  msgstr "Anglais (Canada)"
4799
 
4800
  # English (Canada)
4801
- #: ../languages/dynamic_strings.php:141
4802
  msgid "l-en-cb"
4803
  msgstr "Anglais (Canada)"
4804
 
4805
  # English (United Kingdom)
4806
- #: ../languages/dynamic_strings.php:142
4807
  msgid "l-en-gb"
4808
  msgstr "Anglais (Royaume-Uni)"
4809
 
4810
  # English (Ireland)
4811
- #: ../languages/dynamic_strings.php:143
4812
  msgid "l-en-ie"
4813
  msgstr "Anglais (Irlande)"
4814
 
4815
  # English (Jamaica)
4816
- #: ../languages/dynamic_strings.php:144
4817
  msgid "l-en-jm"
4818
  msgstr "Anglais (Jamaïque)"
4819
 
4820
  # English (New Zealand)
4821
- #: ../languages/dynamic_strings.php:145
4822
  msgid "l-en-nz"
4823
  msgstr "Anglais (Nouvelle-Zélande)"
4824
 
4825
  # English
4826
- #: ../languages/dynamic_strings.php:146
4827
  msgid "l-en-ph"
4828
  msgstr "Anglais"
4829
 
4830
  # English (Trinidad)
4831
- #: ../languages/dynamic_strings.php:147
4832
  msgid "l-en-tt"
4833
  msgstr "Anglais (Trinité)"
4834
 
4835
  # English (United States)
4836
- #: ../languages/dynamic_strings.php:148
4837
  msgid "l-en-us"
4838
  msgstr "Anglais (États-Unis)"
4839
 
4840
  # English (South Africa)
4841
- #: ../languages/dynamic_strings.php:149
4842
  msgid "l-en-za"
4843
  msgstr "Anglais (Afrique du Sud)"
4844
 
4845
  # English (South Africa)
4846
- #: ../languages/dynamic_strings.php:150
4847
  msgid "l-en-zw"
4848
  msgstr "Anglais (Afrique du Sud)"
4849
 
4850
  # Esperanto
4851
- #: ../languages/dynamic_strings.php:151
4852
  msgid "l-eo"
4853
  msgstr "Espéranto"
4854
 
4855
  # Spanish; Castilian
4856
- #: ../languages/dynamic_strings.php:152
4857
  msgid "l-es"
4858
  msgstr "Espagnol; Castillan"
4859
 
4860
  # Spanish (Argentina)
4861
- #: ../languages/dynamic_strings.php:153
4862
  msgid "l-es-ar"
4863
  msgstr "Espagnol (Argentine)"
4864
 
4865
  # Spanish (Bolivia)
4866
- #: ../languages/dynamic_strings.php:154
4867
  msgid "l-es-bo"
4868
  msgstr "Espagnol (Bolivie)"
4869
 
4870
  # Spanish (Chile)
4871
- #: ../languages/dynamic_strings.php:155
4872
  msgid "l-es-cl"
4873
  msgstr "Espagnol (Chili)"
4874
 
4875
  # Spanish (Colombia)
4876
- #: ../languages/dynamic_strings.php:156
4877
  msgid "l-es-co"
4878
  msgstr "Espagnol (Colombie)"
4879
 
4880
  # Spanish (Costa Rica)
4881
- #: ../languages/dynamic_strings.php:157
4882
  msgid "l-es-cr"
4883
  msgstr "Espagnol (Costa Rica)"
4884
 
4885
  # Spanish (Dominican Republic)
4886
- #: ../languages/dynamic_strings.php:158
4887
  msgid "l-es-do"
4888
  msgstr "Espagnol (République dominicaine)"
4889
 
4890
  # Spanish (Ecuador)
4891
- #: ../languages/dynamic_strings.php:159
4892
  msgid "l-es-ec"
4893
  msgstr "Espagnol (Équateur)"
4894
 
4895
  # Spanish (Spain)
4896
- #: ../languages/dynamic_strings.php:160
4897
  msgid "l-es-es"
4898
  msgstr "Espagnol (Espagne)"
4899
 
4900
  # Spanish (Guatemala)
4901
- #: ../languages/dynamic_strings.php:161
4902
  msgid "l-es-gt"
4903
  msgstr "Espagnol (Guatemala)"
4904
 
4905
  # Spanish (Honduras)
4906
- #: ../languages/dynamic_strings.php:162
4907
  msgid "l-es-hn"
4908
  msgstr "Espagnol (Honduras)"
4909
 
4910
  # Spanish (Mexico)
4911
- #: ../languages/dynamic_strings.php:163
4912
  msgid "l-es-mx"
4913
  msgstr "Espagnol (Mexique)"
4914
 
4915
  # Spanish (Nicaragua)
4916
- #: ../languages/dynamic_strings.php:164
4917
  msgid "l-es-ni"
4918
  msgstr "Espagnol (Nicaragua)"
4919
 
4920
  # Spanish (Panama)
4921
- #: ../languages/dynamic_strings.php:165
4922
  msgid "l-es-pa"
4923
  msgstr "Espagnol (Panama)"
4924
 
4925
  # Spanish (Peru)
4926
- #: ../languages/dynamic_strings.php:166
4927
  msgid "l-es-pe"
4928
  msgstr "Espagnol (Pérou)"
4929
 
4930
  # Spanish (Puerto Rico)
4931
- #: ../languages/dynamic_strings.php:167
4932
  msgid "l-es-pr"
4933
  msgstr "Espagnol (Porto Rico)"
4934
 
4935
  # Spanish (Paraguay)
4936
- #: ../languages/dynamic_strings.php:168
4937
  msgid "l-es-py"
4938
  msgstr "Espagnol (Paraguay)"
4939
 
4940
  # Spanish (El Salvador)
4941
- #: ../languages/dynamic_strings.php:169
4942
  msgid "l-es-sv"
4943
  msgstr "Espagnol (El Salvador)"
4944
 
4945
  # Spanish (Uruguay)
4946
- #: ../languages/dynamic_strings.php:170
4947
  msgid "l-es-uy"
4948
  msgstr "Espagnol (Uruguay)"
4949
 
4950
  # Spanish (Venezuela)
4951
- #: ../languages/dynamic_strings.php:171
4952
  msgid "l-es-ve"
4953
  msgstr "Espagnol (Venezuela)"
4954
 
4955
  # Estonian
4956
- #: ../languages/dynamic_strings.php:172
4957
  msgid "l-et"
4958
  msgstr "Estonien"
4959
 
4960
  # Estonian
4961
- #: ../languages/dynamic_strings.php:173
4962
  msgid "l-et-ee"
4963
  msgstr "Estonien"
4964
 
4965
  # Basque
4966
- #: ../languages/dynamic_strings.php:174
4967
  msgid "l-eu"
4968
  msgstr "Basque"
4969
 
4970
  # Basque
4971
- #: ../languages/dynamic_strings.php:175
4972
  msgid "l-eu-es"
4973
  msgstr "Basque"
4974
 
4975
  # Persian
4976
- #: ../languages/dynamic_strings.php:176
4977
  msgid "l-fa"
4978
  msgstr "Persan"
4979
 
4980
  # Persian
4981
- #: ../languages/dynamic_strings.php:177
4982
  msgid "l-fa-ir"
4983
  msgstr "Persan"
4984
 
4985
  # Finnish
4986
- #: ../languages/dynamic_strings.php:178
4987
  msgid "l-fi"
4988
  msgstr "Finnois"
4989
 
4990
  # Finnish
4991
- #: ../languages/dynamic_strings.php:179
4992
  msgid "l-fi-fi"
4993
  msgstr "Finnois"
4994
 
4995
  # Faroese
4996
- #: ../languages/dynamic_strings.php:180
4997
  msgid "l-fo"
4998
  msgstr "Féringien"
4999
 
5000
  # Faroese
5001
- #: ../languages/dynamic_strings.php:181
5002
  msgid "l-fo-fo"
5003
  msgstr "Féringien"
5004
 
5005
  # French
5006
- #: ../languages/dynamic_strings.php:182
5007
  msgid "l-fr"
5008
  msgstr "Français"
5009
 
5010
  # French (Belgium)
5011
- #: ../languages/dynamic_strings.php:183
5012
  msgid "l-fr-be"
5013
  msgstr "Français (Belgique)"
5014
 
5015
  # French (Canada)
5016
- #: ../languages/dynamic_strings.php:184
5017
  msgid "l-fr-ca"
5018
  msgstr "Français (Canada)"
5019
 
5020
  # French (Switzerland)
5021
- #: ../languages/dynamic_strings.php:185
5022
  msgid "l-fr-ch"
5023
  msgstr "Français (Suisse)"
5024
 
5025
  # French (France)
5026
- #: ../languages/dynamic_strings.php:186
5027
  msgid "l-fr-fr"
5028
  msgstr "Français (France)"
5029
 
5030
  # French (Luxembourg)
5031
- #: ../languages/dynamic_strings.php:187
5032
  msgid "l-fr-lu"
5033
  msgstr "Français (Luxembourg)"
5034
 
5035
  # French (Switzerland)
5036
- #: ../languages/dynamic_strings.php:188
5037
  msgid "l-fr-mc"
5038
  msgstr "Français (Suisse)"
5039
 
5040
  # Galician
5041
- #: ../languages/dynamic_strings.php:189
5042
  msgid "l-gl"
5043
  msgstr "Galicien"
5044
 
5045
  # Spanish; Castilian
5046
- #: ../languages/dynamic_strings.php:190
5047
  msgid "l-gl-es"
5048
  msgstr "Espagnol ; Castillan"
5049
 
5050
  # Gujarati
5051
- #: ../languages/dynamic_strings.php:191
5052
  msgid "l-gu"
5053
  msgstr "Gujarati"
5054
 
5055
  # Gujarati
5056
- #: ../languages/dynamic_strings.php:192
5057
  msgid "l-gu-in"
5058
  msgstr "Gujarati"
5059
 
5060
  # Hebrew
5061
- #: ../languages/dynamic_strings.php:193
5062
  msgid "l-he"
5063
  msgstr "Hébreu"
5064
 
5065
  # Hebrew (Israel)
5066
- #: ../languages/dynamic_strings.php:194
5067
  msgid "l-he-il"
5068
  msgstr "Hébreu (Israël)"
5069
 
5070
  # Hindi
5071
- #: ../languages/dynamic_strings.php:195
5072
  msgid "l-hi"
5073
  msgstr "Hindi"
5074
 
5075
  # Hindi
5076
- #: ../languages/dynamic_strings.php:196
5077
  msgid "l-hi-in"
5078
  msgstr "Hindi"
5079
 
5080
  # Croatian
5081
- #: ../languages/dynamic_strings.php:197
5082
  msgid "l-hr"
5083
  msgstr "Croate"
5084
 
5085
  # Croatian
5086
- #: ../languages/dynamic_strings.php:198
5087
  msgid "l-hr-ba"
5088
  msgstr "Croate"
5089
 
5090
  # Croatian
5091
- #: ../languages/dynamic_strings.php:199
5092
  msgid "l-hr-hr"
5093
  msgstr "Croate"
5094
 
5095
  # Hungarian
5096
- #: ../languages/dynamic_strings.php:200
5097
  msgid "l-hu"
5098
  msgstr "Hongrois"
5099
 
5100
  # Hungarian (Hungary)
5101
- #: ../languages/dynamic_strings.php:201
5102
  msgid "l-hu-hu"
5103
  msgstr "Hongrois (Hongrie)"
5104
 
5105
  # Armenian
5106
- #: ../languages/dynamic_strings.php:202
5107
  msgid "l-hy"
5108
  msgstr "Arménien"
5109
 
5110
  # Armenian
5111
- #: ../languages/dynamic_strings.php:203
5112
  msgid "l-hy-am"
5113
  msgstr "Arménien"
5114
 
5115
  # Indonesian
5116
- #: ../languages/dynamic_strings.php:204
5117
  msgid "l-id"
5118
  msgstr "Indonésien"
5119
 
5120
  # Indonesian
5121
- #: ../languages/dynamic_strings.php:205
5122
  msgid "l-id-id"
5123
  msgstr "Indonésien"
5124
 
5125
  # Icelandic
5126
- #: ../languages/dynamic_strings.php:206
5127
  msgid "l-is"
5128
  msgstr "Islandais"
5129
 
5130
  # Icelandic
5131
- #: ../languages/dynamic_strings.php:207
5132
  msgid "l-is-is"
5133
  msgstr "Islandais"
5134
 
5135
  # Italian
5136
- #: ../languages/dynamic_strings.php:208
5137
  msgid "l-it"
5138
  msgstr "Italien"
5139
 
5140
  # Italian (Switzerland)
5141
- #: ../languages/dynamic_strings.php:209
5142
  msgid "l-it-ch"
5143
  msgstr "Italien (Suisse)"
5144
 
5145
  # Italian (Italia)
5146
- #: ../languages/dynamic_strings.php:210
5147
  msgid "l-it-it"
5148
  msgstr "Italien (Italie)"
5149
 
5150
  # Japanese
5151
- #: ../languages/dynamic_strings.php:211
5152
  msgid "l-ja"
5153
  msgstr "Japonais"
5154
 
5155
  # Japanese
5156
- #: ../languages/dynamic_strings.php:212
5157
  msgid "l-ja-jp"
5158
  msgstr "Japonais"
5159
 
5160
  # Georgian
5161
- #: ../languages/dynamic_strings.php:213
5162
  msgid "l-ka"
5163
  msgstr "Géorgien"
5164
 
5165
  # Georgian
5166
- #: ../languages/dynamic_strings.php:214
5167
  msgid "l-ka-ge"
5168
  msgstr "Géorgien"
5169
 
5170
  # Kazakh
5171
- #: ../languages/dynamic_strings.php:215
5172
  msgid "l-kk"
5173
  msgstr "Kazakh"
5174
 
5175
  # Kazakh
5176
- #: ../languages/dynamic_strings.php:216
5177
  msgid "l-kk-kz"
5178
  msgstr "Kazakh"
5179
 
5180
  # Kannada
5181
- #: ../languages/dynamic_strings.php:217
5182
  msgid "l-kn"
5183
  msgstr "kannada"
5184
 
5185
  # Kannada
5186
- #: ../languages/dynamic_strings.php:218
5187
  msgid "l-kn-in"
5188
  msgstr "Kannada"
5189
 
5190
  # Korean
5191
- #: ../languages/dynamic_strings.php:219
5192
  msgid "l-ko"
5193
  msgstr "Coréen"
5194
 
5195
  # Korean (Republic of Korea)
5196
- #: ../languages/dynamic_strings.php:220
5197
  msgid "l-ko-kr"
5198
  msgstr "Coréen (République de Corée)"
5199
 
5200
  # Korean
5201
- #: ../languages/dynamic_strings.php:221
5202
  msgid "l-kok"
5203
  msgstr "Coréen"
5204
 
5205
  # Korean
5206
- #: ../languages/dynamic_strings.php:222
5207
  msgid "l-kok-in"
5208
  msgstr "Coréen"
5209
 
5210
  # Kirghiz; Kyrgyz
5211
- #: ../languages/dynamic_strings.php:223
5212
  msgid "l-ky"
5213
  msgstr "Kirghiz"
5214
 
5215
  # Kirghiz; Kyrgyz
5216
- #: ../languages/dynamic_strings.php:224
5217
  msgid "l-ky-kg"
5218
  msgstr "Kirghiz"
5219
 
5220
  # Lithuanian
5221
- #: ../languages/dynamic_strings.php:225
5222
  msgid "l-lt"
5223
  msgstr "Lituanien"
5224
 
5225
  # Lithuanian
5226
- #: ../languages/dynamic_strings.php:226
5227
  msgid "l-lt-lt"
5228
  msgstr "Lituanien"
5229
 
5230
  # Latvian
5231
- #: ../languages/dynamic_strings.php:227
5232
  msgid "l-lv"
5233
  msgstr "Letton"
5234
 
5235
  # Latvian
5236
- #: ../languages/dynamic_strings.php:228
5237
  msgid "l-lv-lv"
5238
  msgstr "Letton"
5239
 
5240
  # Maori
5241
- #: ../languages/dynamic_strings.php:229
5242
  msgid "l-mi"
5243
  msgstr "Maori"
5244
 
5245
  # Maori
5246
- #: ../languages/dynamic_strings.php:230
5247
  msgid "l-mi-nz"
5248
  msgstr "Maori"
5249
 
5250
  # Macedonian
5251
- #: ../languages/dynamic_strings.php:231
5252
  msgid "l-mk"
5253
  msgstr "Macédonien"
5254
 
5255
  # Macedonian
5256
- #: ../languages/dynamic_strings.php:232
5257
  msgid "l-mk-ml"
5258
  msgstr "Macédonien"
5259
 
5260
  # Mongolian
5261
- #: ../languages/dynamic_strings.php:233
5262
  msgid "l-mn"
5263
  msgstr "Mongol"
5264
 
5265
  # Mongolian
5266
- #: ../languages/dynamic_strings.php:234
5267
  msgid "l-mn-mn"
5268
  msgstr "Mongol"
5269
 
5270
  # Marathi
5271
- #: ../languages/dynamic_strings.php:235
5272
  msgid "l-mr"
5273
  msgstr "Marathi"
5274
 
5275
  # Marathi
5276
- #: ../languages/dynamic_strings.php:236
5277
  msgid "l-mr-in"
5278
  msgstr "Marathi"
5279
 
5280
  # Malay
5281
- #: ../languages/dynamic_strings.php:237
5282
  msgid "l-ms"
5283
  msgstr "Malais"
5284
 
5285
  # Malay
5286
- #: ../languages/dynamic_strings.php:238
5287
  msgid "l-ms-bn"
5288
  msgstr "Malais"
5289
 
5290
  # Malay
5291
- #: ../languages/dynamic_strings.php:239
5292
  msgid "l-ms-my"
5293
  msgstr "Malais"
5294
 
5295
  # Maltese
5296
- #: ../languages/dynamic_strings.php:240
5297
  msgid "l-mt"
5298
  msgstr "Maltais"
5299
 
5300
  # Maltese
5301
- #: ../languages/dynamic_strings.php:241
5302
  msgid "l-mt-mt"
5303
  msgstr "Maltais"
5304
 
5305
  # Norwegian Bokmål
5306
- #: ../languages/dynamic_strings.php:242
5307
  msgid "l-nb"
5308
  msgstr "Norvégien Bokmål"
5309
 
5310
  # Norwegian Bokmål
5311
- #: ../languages/dynamic_strings.php:243
5312
  msgid "l-nb-no"
5313
  msgstr "Norvégien Bokmål"
5314
 
5315
  # Dutch; Flemish
5316
- #: ../languages/dynamic_strings.php:244
5317
  msgid "l-nl"
5318
  msgstr "Néerlandais; Flamand"
5319
 
5320
  # Dutch (Belgium)
5321
- #: ../languages/dynamic_strings.php:245
5322
  msgid "l-nl-be"
5323
  msgstr "Néerlandais (Belgique)"
5324
 
5325
  # Dutch (Netherlands)
5326
- #: ../languages/dynamic_strings.php:246
5327
  msgid "l-nl-nl"
5328
  msgstr "Néerlandais (Pays-bas)"
5329
 
5330
  # Norwegian Nynorsk
5331
- #: ../languages/dynamic_strings.php:247
5332
  msgid "l-nn-no"
5333
  msgstr "Norvégien Nynorsk"
5334
 
5335
- #: ../languages/dynamic_strings.php:248
5336
  msgid "l-ns"
5337
  msgstr "l-ns"
5338
 
5339
- #: ../languages/dynamic_strings.php:249
5340
  msgid "l-ns-za"
5341
  msgstr "l-ns-za"
5342
 
5343
  # Panjabi; Punjabi
5344
- #: ../languages/dynamic_strings.php:250
5345
  msgid "l-pa"
5346
  msgstr "Panjabi"
5347
 
5348
  # Panjabi; Punjabi
5349
- #: ../languages/dynamic_strings.php:251
5350
  msgid "l-pa-in"
5351
  msgstr "Panjabi"
5352
 
5353
  # Polish
5354
- #: ../languages/dynamic_strings.php:252
5355
  msgid "l-pl"
5356
  msgstr "Polonais"
5357
 
5358
  # Polish
5359
- #: ../languages/dynamic_strings.php:253
5360
  msgid "l-pl-pl"
5361
  msgstr "Polonais"
5362
 
5363
  # Pushto; Pashto
5364
- #: ../languages/dynamic_strings.php:254
5365
  msgid "l-ps"
5366
  msgstr "Pachto"
5367
 
5368
  # Spanish (Argentina)
5369
- #: ../languages/dynamic_strings.php:255
5370
  msgid "l-ps-ar"
5371
  msgstr "Espagnol (Argentine)"
5372
 
5373
  # Portuguese
5374
- #: ../languages/dynamic_strings.php:256
5375
  msgid "l-pt"
5376
  msgstr "Portugais"
5377
 
5378
  # Portuguese (Brazil)
5379
- #: ../languages/dynamic_strings.php:257
5380
  msgid "l-pt-br"
5381
  msgstr "Portugais (Brésil)"
5382
 
5383
  # Portuguese
5384
- #: ../languages/dynamic_strings.php:258
5385
  msgid "l-pt-pt"
5386
  msgstr "Portugais"
5387
 
5388
  # Quechua
5389
- #: ../languages/dynamic_strings.php:259
5390
  msgid "l-qu"
5391
  msgstr "Quechua"
5392
 
5393
  # Quechua
5394
- #: ../languages/dynamic_strings.php:260
5395
  msgid "l-qu-bo"
5396
  msgstr "Quechua"
5397
 
5398
  # Quechua
5399
- #: ../languages/dynamic_strings.php:261
5400
  msgid "l-qu-ec"
5401
  msgstr "Quechua"
5402
 
5403
  # Quechua
5404
- #: ../languages/dynamic_strings.php:262
5405
  msgid "l-qu-pe"
5406
  msgstr "Quechua"
5407
 
5408
  # Romanian; Moldavian; Moldovan
5409
- #: ../languages/dynamic_strings.php:263
5410
  msgid "l-ro"
5411
  msgstr "Roumain; Moldave"
5412
 
5413
  # Romanian; Moldavian; Moldovan
5414
- #: ../languages/dynamic_strings.php:264
5415
  msgid "l-ro-ro"
5416
  msgstr "Roumain"
5417
 
5418
  # Russian
5419
- #: ../languages/dynamic_strings.php:265
5420
  msgid "l-ru"
5421
  msgstr "Russe"
5422
 
5423
  # Russian (Russia)
5424
- #: ../languages/dynamic_strings.php:266
5425
  msgid "l-ru-ru"
5426
  msgstr "Russe (Fédération de Russie)"
5427
 
5428
  # Sanskrit
5429
- #: ../languages/dynamic_strings.php:267
5430
  msgid "l-sa"
5431
  msgstr "Sanskrit"
5432
 
5433
  # Sanskrit
5434
- #: ../languages/dynamic_strings.php:268
5435
  msgid "l-sa-in"
5436
  msgstr "Sanskrit"
5437
 
5438
  # Northern Sami
5439
- #: ../languages/dynamic_strings.php:269
5440
  msgid "l-se"
5441
  msgstr "Same du Nord"
5442
 
5443
  # Northern Sami
5444
- #: ../languages/dynamic_strings.php:270
5445
  msgid "l-se-fi"
5446
  msgstr "Same du Nord"
5447
 
5448
  # Northern Sami
5449
- #: ../languages/dynamic_strings.php:271
5450
  msgid "l-se-no"
5451
  msgstr "Same du Nord"
5452
 
5453
  # Northern Sami
5454
- #: ../languages/dynamic_strings.php:272
5455
  msgid "l-se-se"
5456
  msgstr "Same du Nord"
5457
 
5458
  # Slovak
5459
- #: ../languages/dynamic_strings.php:273
5460
  msgid "l-sk"
5461
  msgstr "Slovaque"
5462
 
5463
  # Slovak
5464
- #: ../languages/dynamic_strings.php:274
5465
  msgid "l-sk-sk"
5466
  msgstr "Slovaque"
5467
 
5468
  # Slovenian
5469
- #: ../languages/dynamic_strings.php:275
5470
  msgid "l-sl"
5471
  msgstr "Slovène"
5472
 
5473
  # Slovenian
5474
- #: ../languages/dynamic_strings.php:276
5475
  msgid "l-sl-si"
5476
  msgstr "Slovène"
5477
 
5478
  # Albanian
5479
- #: ../languages/dynamic_strings.php:277
5480
  msgid "l-sq"
5481
  msgstr "Albanais"
5482
 
5483
  # Albanian
5484
- #: ../languages/dynamic_strings.php:278
5485
  msgid "l-sq-al"
5486
  msgstr "Albanais"
5487
 
5488
  # Serbian
5489
- #: ../languages/dynamic_strings.php:279
5490
  msgid "l-sr-ba"
5491
  msgstr "Serbe"
5492
 
5493
  # Serbian
5494
- #: ../languages/dynamic_strings.php:280
5495
  msgid "l-sr-sp"
5496
  msgstr "Serbe"
5497
 
5498
  # Swedish
5499
- #: ../languages/dynamic_strings.php:281
5500
  msgid "l-sv"
5501
  msgstr "Suédois"
5502
 
5503
  # Swedish (Finland)
5504
- #: ../languages/dynamic_strings.php:282
5505
  msgid "l-sv-fi"
5506
  msgstr "Suédois (Finlande)"
5507
 
5508
  # Swedish (Sweden)
5509
- #: ../languages/dynamic_strings.php:283
5510
  msgid "l-sv-se"
5511
  msgstr "Suédois (Suède)"
5512
 
5513
  # Swahili
5514
- #: ../languages/dynamic_strings.php:284
5515
  msgid "l-sw"
5516
  msgstr "Swahili"
5517
 
5518
  # Swahili
5519
- #: ../languages/dynamic_strings.php:285
5520
  msgid "l-sw-ke"
5521
  msgstr "Swahili"
5522
 
5523
  # Tamil
5524
- #: ../languages/dynamic_strings.php:286
5525
  msgid "l-ta"
5526
  msgstr "Tamoul"
5527
 
5528
  # Tamil
5529
- #: ../languages/dynamic_strings.php:287
5530
  msgid "l-ta-in"
5531
  msgstr "Tamoul"
5532
 
5533
  # Telugu
5534
- #: ../languages/dynamic_strings.php:288
5535
  msgid "l-te"
5536
  msgstr "Télougou"
5537
 
5538
  # Telugu
5539
- #: ../languages/dynamic_strings.php:289
5540
  msgid "l-te-in"
5541
  msgstr "Télougou"
5542
 
5543
  # Thai
5544
- #: ../languages/dynamic_strings.php:290
5545
  msgid "l-th"
5546
  msgstr "Thaï"
5547
 
5548
  # Thai
5549
- #: ../languages/dynamic_strings.php:291
5550
  msgid "l-th-th"
5551
  msgstr "Thai"
5552
 
5553
  # Tagalog
5554
- #: ../languages/dynamic_strings.php:292
5555
  msgid "l-tl"
5556
  msgstr "Tagalog"
5557
 
5558
  # Tagalog
5559
- #: ../languages/dynamic_strings.php:293
5560
  msgid "l-tl-ph"
5561
  msgstr "Tagalog"
5562
 
5563
  # Tswana
5564
- #: ../languages/dynamic_strings.php:294
5565
  msgid "l-tn"
5566
  msgstr "Tswana"
5567
 
5568
  # English (South Africa)
5569
- #: ../languages/dynamic_strings.php:295
5570
  msgid "l-tn-za"
5571
  msgstr "Anglais (Afrique du Sud)"
5572
 
5573
  # Turkish
5574
- #: ../languages/dynamic_strings.php:296
5575
  msgid "l-tr"
5576
  msgstr "Turc"
5577
 
5578
  # Turkish
5579
- #: ../languages/dynamic_strings.php:297
5580
  msgid "l-tr-tr"
5581
  msgstr "Turc"
5582
 
5583
  # Tatar
5584
- #: ../languages/dynamic_strings.php:298
5585
  msgid "l-tt"
5586
  msgstr "Tatar"
5587
 
5588
  # Tatar
5589
- #: ../languages/dynamic_strings.php:299
5590
  msgid "l-tt-ru"
5591
  msgstr "Tatar"
5592
 
5593
  # Tsonga
5594
- #: ../languages/dynamic_strings.php:300
5595
  msgid "l-ts"
5596
  msgstr "Tsonga"
5597
 
5598
  # Ukrainian
5599
- #: ../languages/dynamic_strings.php:301
5600
  msgid "l-uk"
5601
  msgstr "Ukrainien"
5602
 
5603
  # Ukrainian
5604
- #: ../languages/dynamic_strings.php:302
5605
  msgid "l-uk-ua"
5606
  msgstr "Ukrainien"
5607
 
5608
  # Urdu
5609
- #: ../languages/dynamic_strings.php:303
5610
  msgid "l-ur"
5611
  msgstr "Ourdou"
5612
 
5613
  # Urdu
5614
- #: ../languages/dynamic_strings.php:304
5615
  msgid "l-ur-pk"
5616
  msgstr "Ourdou"
5617
 
5618
  # Uzbek
5619
- #: ../languages/dynamic_strings.php:305
5620
  msgid "l-uz"
5621
  msgstr "Ouzbek"
5622
 
5623
  # Uzbek
5624
- #: ../languages/dynamic_strings.php:306
5625
  msgid "l-uz-uz"
5626
  msgstr "Ouzbek"
5627
 
5628
  # Vietnamese
5629
- #: ../languages/dynamic_strings.php:307
5630
  msgid "l-vi"
5631
  msgstr "Vietnamien"
5632
 
5633
  # Vietnamese
5634
- #: ../languages/dynamic_strings.php:308
5635
  msgid "l-vi-vn"
5636
  msgstr "Vietnamien"
5637
 
5638
  # Xhosa
5639
- #: ../languages/dynamic_strings.php:309
5640
  msgid "l-xh"
5641
  msgstr "Xhosa"
5642
 
5643
  # Xhosa
5644
- #: ../languages/dynamic_strings.php:310
5645
  msgid "l-xh-za"
5646
  msgstr "Xhosa"
5647
 
5648
  # Chinese
5649
- #: ../languages/dynamic_strings.php:311
5650
  msgid "l-zh"
5651
  msgstr "Chinois"
5652
 
5653
  # Chinese (China)
5654
- #: ../languages/dynamic_strings.php:312
5655
  msgid "l-zh-cn"
5656
  msgstr "Chinois (Chine)"
5657
 
5658
  # Chinese (Hong Kong)
5659
- #: ../languages/dynamic_strings.php:313
5660
  msgid "l-zh-hk"
5661
  msgstr "Chinois (Hong Kong)"
5662
 
5663
  # Chinese
5664
- #: ../languages/dynamic_strings.php:314
5665
  msgid "l-zh-mo"
5666
  msgstr "Chinois"
5667
 
5668
  # Chinese (Singapore)
5669
- #: ../languages/dynamic_strings.php:315
5670
  msgid "l-zh-sg"
5671
  msgstr "Chinois (Singapour)"
5672
 
5673
  # Chinese (Taiwan)
5674
- #: ../languages/dynamic_strings.php:316
5675
  msgid "l-zh-tw"
5676
  msgstr "Chinois (Taïwan)"
5677
 
5678
  # Zulu
5679
- #: ../languages/dynamic_strings.php:317
5680
  msgid "l-zu"
5681
  msgstr "Zoulou"
5682
 
5683
  # Zulu
5684
- #: ../languages/dynamic_strings.php:318
5685
  msgid "l-zu-za"
5686
  msgstr "Zoulou"
5687
 
5688
  # Unknown
5689
- #: ../languages/dynamic_strings.php:320
5690
  msgid "l-empty"
5691
  msgstr "Inconnue"
5692
 
5693
  # Unknown
5694
- #: ../languages/dynamic_strings.php:321
5695
  msgid "l-xx"
5696
  msgstr "Inconnue"
5697
 
5698
- #: ../languages/dynamic_strings.php:323
5699
  msgid "c-xy"
5700
  msgstr "Local"
5701
 
5702
- #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
5703
  msgid "Notice: Pageview filtered by third-party code"
5704
  msgstr ""
5705
 
5706
- #: ../wp-slimstat.php:240
5707
  #, fuzzy, php-format
5708
  msgid "Error: Malformed URL %s"
5709
  msgstr "Ignorer les utilisateurs"
5710
 
5711
- #: ../wp-slimstat.php:259
5712
  #, php-format
5713
  msgid "Notice: Referrer %s is blacklisted"
5714
  msgstr ""
5715
 
5716
- #: ../wp-slimstat.php:347
5717
  #, fuzzy, php-format
5718
  msgid "Notice: Permalink %s is blacklisted"
5719
  msgstr "le permalien"
5720
 
5721
- #: ../wp-slimstat.php:358
5722
  msgid "Error: Empty or not supported IP address format (IPv6)"
5723
  msgstr ""
5724
 
5725
- #: ../wp-slimstat.php:367
5726
  #, php-format
5727
  msgid "Notice: Logged in user %s not tracked"
5728
  msgstr ""
5729
 
5730
- #: ../wp-slimstat.php:375
5731
  #, php-format
5732
  msgid "Notice: User with capability %s not tracked"
5733
  msgstr ""
5734
 
5735
- #: ../wp-slimstat.php:385
5736
  #, fuzzy, php-format
5737
  msgid "Notice: User %s is blacklisted"
5738
  msgstr "le permalien"
5739
 
5740
- #: ../wp-slimstat.php:406
5741
  #, fuzzy, php-format
5742
  msgid "Notice: Spammer %s not tracked"
5743
  msgstr "Robot ou Crawler"
5744
 
5745
- #: ../wp-slimstat.php:435
5746
  #, php-format
5747
  msgid "Notice: IP address %s is blacklisted"
5748
  msgstr ""
5749
 
5750
- #: ../wp-slimstat.php:464
5751
  #, php-format
5752
  msgid "Notice: Country %s is blacklisted"
5753
  msgstr ""
5754
 
5755
- #: ../wp-slimstat.php:473
5756
  #, fuzzy
5757
  msgid "Notice: Prefetch requests are ignored"
5758
  msgstr "Ignorer les requêtes anticipées"
5759
 
5760
- #: ../wp-slimstat.php:489
5761
  #, fuzzy
5762
  msgid "Notice: Bot not tracked"
5763
  msgstr "Robot ou Crawler"
5764
 
5765
- #: ../wp-slimstat.php:498
5766
  #, php-format
5767
  msgid "Notice: Browser %s is blacklisted"
5768
  msgstr ""
5769
 
5770
- #: ../wp-slimstat.php:528
5771
  msgid "Error:"
5772
  msgstr ""
5773
 
5774
- #: ../wp-slimstat.php:1209
5775
  msgid "Invalid payload string. Try clearing your WordPress cache."
5776
  msgstr ""
5777
 
5778
- #: ../wp-slimstat.php:1219
5779
  msgid "Invalid data signature. Try clearing your WordPress cache."
5780
  msgstr ""
5781
 
5782
- #: ../wp-slimstat.php:1289
5783
  #, fuzzy
5784
  msgid "There was an error downloading the MaxMind Geolite DB:"
5785
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5786
 
5787
- #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
5788
  #, fuzzy
5789
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5790
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5791
 
5792
- #: ../wp-slimstat.php:1301
5793
  msgid "Function gzopen not defined. Aborting."
5794
  msgstr ""
5795
 
5796
- #: ../wp-slimstat.php:1311
5797
  #, fuzzy
5798
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5799
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5800
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5801
  #~ msgid "Ignore users (username not found)"
5802
  #~ msgstr "Utilisateur inconnu (nom d'utilisateur non trouvé)"
5803
 
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-28 21:32-0500\n"
6
+ "PO-Revision-Date: 2016-01-28 21:33-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../admin/config/index.php:33
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
26
  "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
27
  "d'informations"
28
 
29
+ #: ../admin/config/index.php:48
30
  msgid "Read access: username not found"
31
  msgstr "Accès lecture : username inexistant"
32
 
33
+ #: ../admin/config/index.php:58 ../admin/config/index.php:83
34
  msgid ""
35
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
36
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
40
  "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
41
  "d'informations"
42
 
43
+ #: ../admin/config/index.php:73
44
  msgid "Config access: username not found"
45
  msgstr "Accès configuration : username inexistant"
46
 
47
+ #: ../admin/config/index.php:92
48
  msgid "Basic"
49
  msgstr ""
50
 
51
+ #: ../admin/config/index.php:94 ../admin/config/index.php:115
52
  msgid "Tracker"
53
  msgstr "Traçage"
54
 
55
+ #: ../admin/config/index.php:95
56
  msgid "Enable Tracking"
57
  msgstr "Activer le traçage"
58
 
59
+ #: ../admin/config/index.php:95
60
  #, fuzzy
61
  msgid "Turn the tracker on or off, while keeping the reports accessible."
62
  msgstr ""
63
  "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
64
  "que vous n'auriez pas si vous désactiviez le plugin.)"
65
 
66
+ #: ../admin/config/index.php:96
67
  msgid "Tracking Mode"
68
  msgstr "Mode traçage"
69
 
70
+ #: ../admin/config/index.php:96
71
  #, fuzzy
72
  msgid ""
73
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
82
  "ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
83
  "recherche et autres robots ne seront pas suivis."
84
 
85
+ #: ../admin/config/index.php:96
86
  msgid "Client Side"
87
  msgstr ""
88
 
89
+ #: ../admin/config/index.php:96
90
  #, fuzzy
91
  msgid "Server Side"
92
  msgstr "Côté serveur"
93
 
94
+ #: ../admin/config/index.php:97
95
  msgid "Stealth Mode"
96
  msgstr ""
97
 
98
+ #: ../admin/config/index.php:97
99
  msgid ""
100
  "Do not add the javascript tracking code to your pages, if tracking mode is "
101
  "set to Server. Please note: if enabled, this will prevent the tracker from "
102
  "collecting information such as screen resolution, outbound links, downloads, "
103
+ "etc. This option is ignored if Tracking Mode is set to Client."
104
  msgstr ""
105
 
106
+ #: ../admin/config/index.php:97 ../admin/view/wp-slimstat-reports.php:1368
107
  msgid "Off"
108
  msgstr ""
109
 
110
+ #: ../admin/config/index.php:97
111
  msgid "On"
112
  msgstr "Actif"
113
 
114
+ #: ../admin/config/index.php:98
115
  #, fuzzy
116
  msgid "Admin Pages"
117
  msgstr "Tracer les pages Administrateur"
118
 
119
+ #: ../admin/config/index.php:98
120
  msgid "Enable this option to track your users' activity within the admin."
121
  msgstr ""
122
  "Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
123
 
124
+ #: ../admin/config/index.php:98
125
  #, fuzzy
126
  msgid "Track"
127
  msgstr "Traçage"
128
 
129
+ #: ../admin/config/index.php:98
130
  #, fuzzy
131
  msgid "Do not track"
132
  msgstr "ne contient pas"
133
 
134
+ #: ../admin/config/index.php:100
135
  msgid "WordPress Integration"
136
  msgstr "Intégration WordPress"
137
 
138
+ #: ../admin/config/index.php:101
139
  msgid "Menu Position"
140
  msgstr "Position du Menu"
141
 
142
+ #: ../admin/config/index.php:101
143
  msgid ""
144
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
145
  "admin bar (if visible)."
147
  "Choisir entre un menu d'administration dans la barre latérale de WordPress "
148
  "ou un menu déroulant dans la barre supérieure (si elle est affichée)."
149
 
150
+ #: ../admin/config/index.php:101
151
  msgid "Side Menu"
152
  msgstr "Menu latéral"
153
 
154
+ #: ../admin/config/index.php:101
155
  msgid "Admin Bar"
156
  msgstr "Barre d'Administration"
157
 
158
+ #: ../admin/config/index.php:102
159
  #, fuzzy
160
  msgid "Posts and Pages"
161
  msgstr "Etendre les Stats aux articles"
162
 
163
+ #: ../admin/config/index.php:102
164
  #, fuzzy
165
  msgid ""
166
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
169
  "Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
170
  "de visites par article (peut ralentir le rendu des pages)."
171
 
172
+ #: ../admin/config/index.php:103
173
  #, fuzzy
174
  msgid "Report Interval"
175
  msgstr "Intervalle unique"
176
 
177
+ #: ../admin/config/index.php:103
178
  msgid ""
179
  "Enter the time range, in days, that should be used to calculate the value "
180
  "here above."
181
  msgstr ""
182
 
183
+ #: ../admin/config/index.php:104
184
  #, fuzzy
185
  msgid "Report Type"
186
  msgstr "Rapports"
187
 
188
+ #: ../admin/config/index.php:104
189
  msgid ""
190
  "Select what kind of information you would like to see displayed on the Posts "
191
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
192
  "IPs consider only one hit per user in the given time range."
193
  msgstr ""
194
 
195
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:81
196
+ #: ../admin/view/wp-slimstat-reports.php:90
197
+ #: ../admin/view/wp-slimstat-reports.php:1384
198
+ #: ../admin/view/wp-slimstat-reports.php:1542
199
  msgid "Pageviews"
200
  msgstr "Pages vues"
201
 
202
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:91
203
+ #: ../admin/view/wp-slimstat-reports.php:284
204
+ #: ../admin/view/wp-slimstat-reports.php:525
205
+ #: ../admin/view/wp-slimstat-reports.php:1399
206
+ #: ../admin/view/wp-slimstat-reports.php:1444
207
  msgid "Unique IPs"
208
  msgstr "IPs uniques"
209
 
210
+ #: ../admin/config/index.php:105
211
  msgid "Dashboard Widgets"
212
  msgstr ""
213
 
214
+ #: ../admin/config/index.php:105
215
  msgid ""
216
  "Choose if you want to have the most important reports on your WordPress "
217
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
218
  msgstr ""
219
 
220
+ #: ../admin/config/index.php:106
221
  #, fuzzy
222
  msgid "Hide Add-ons"
223
  msgstr "Add-ons"
224
 
225
+ #: ../admin/config/index.php:106
226
  msgid ""
227
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
228
  "from the list of plugins in WordPress. Please note that you will still "
229
  "receive updates for hidden add-ons."
230
  msgstr ""
231
 
232
+ #: ../admin/config/index.php:108
233
  msgid "Database"
234
  msgstr "Base de données"
235
 
236
+ #: ../admin/config/index.php:109
237
  msgid "Retain data for"
238
  msgstr "Conserver les données pour"
239
 
240
+ #: ../admin/config/index.php:109
241
  #, fuzzy
242
  msgid ""
243
  "Clean-up log entries older than the number of days specified here above. "
248
  "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
249
  "conserver toutes vos données sans limites de durée."
250
 
251
+ #: ../admin/config/index.php:109
252
  msgid "Next clean-up on"
253
  msgstr "Prochain nettoyage le"
254
 
255
+ #: ../admin/config/index.php:109
256
  #, fuzzy, php-format
257
  msgid ""
258
  "Entries logged on or before %s will be archived or deleted according to the "
260
  msgstr ""
261
  "Les données enregistrées le ou avant le %s seront définitivement supprimées. "
262
 
263
+ #: ../admin/config/index.php:109 ../admin/view/index.php:102
264
  #: ../admin/view/wp-slimstat-db.php:79
265
+ #: ../admin/view/wp-slimstat-reports.php:1368
266
  msgid "days"
267
  msgstr "jours"
268
 
269
+ #: ../admin/config/index.php:110
270
  #, fuzzy
271
+ msgid "Archive records"
272
+ msgstr "Enregistrements"
273
 
274
+ #: ../admin/config/index.php:110
275
  msgid ""
276
  "If DB space is not an issue, you can decide to archive older records in "
277
  "another table, instead of deleting them. This way performance is preserved, "
281
  "is uninstalled. Make sure to backup your data before you proceed."
282
  msgstr ""
283
 
284
+ #: ../admin/config/index.php:117
285
  #, fuzzy
286
  msgid "Advanced Options"
287
  msgstr "Filtres Avancés"
288
 
289
+ #: ../admin/config/index.php:118
290
  msgid "Session Duration"
291
  msgstr "Durée session"
292
 
293
+ #: ../admin/config/index.php:118
294
  msgid ""
295
  "How many seconds should a human session last? Google Analytics sets it to "
296
  "1800 seconds."
298
  "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
299
  "fixe cette durée à 1800 secondes."
300
 
301
+ #: ../admin/config/index.php:118 ../admin/config/index.php:189
302
  msgid "seconds"
303
  msgstr "secondes"
304
 
305
+ #: ../admin/config/index.php:119
306
  msgid "Extend Session"
307
  msgstr "Etendre la session"
308
 
309
+ #: ../admin/config/index.php:119
310
  msgid "Extend the duration of a session each time the user visits a new page."
311
  msgstr ""
312
  "Prolonger la durée d'une session à chaque fois que l'utilisateur visite une "
313
  "page."
314
 
315
+ #: ../admin/config/index.php:120
316
+ #, fuzzy
317
+ msgid "Browser Detection"
318
+ msgstr "Version de navigateur"
319
+
320
+ #: ../admin/config/index.php:120
321
+ msgid ""
322
+ "The heuristic function is much faster and requires very little memory, but "
323
+ "for uncommon user agent strings it might be less accurate, and produce a "
324
+ "unreliable match. Browscap.ini, the third party database we use, is memory "
325
+ "intensive and it uses a bruteforce approach to determine a visitor's "
326
+ "browser, but it's very accurate and precise even with the most obscure user "
327
+ "agent strings (almost all of them). You decide which one should be used "
328
+ "first: the other one will only be invoked if the one you chose did not "
329
+ "produce a match."
330
+ msgstr ""
331
+
332
+ #: ../admin/config/index.php:120
333
+ #, fuzzy
334
+ msgid "Browscap"
335
+ msgstr "Navigateur Web"
336
+
337
+ #: ../admin/config/index.php:120
338
+ msgid "Heuristic"
339
+ msgstr ""
340
+
341
+ #: ../admin/config/index.php:121
342
  msgid "Enable CDN"
343
  msgstr "Activer CDN"
344
 
345
+ #: ../admin/config/index.php:121
346
  msgid ""
347
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
348
  "by serving our tracking code from their fast and reliable network (free "
352
  "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
353
  "rapide et fiable."
354
 
355
+ #: ../admin/config/index.php:122
356
  msgid "Extensions to Track"
357
  msgstr "Extensions du traçage"
358
 
359
+ #: ../admin/config/index.php:122
360
  msgid ""
361
  "List all the file extensions that you want to be treated as Downloads. "
362
  "Please note that links pointing to external resources (i.e. PDFs on a "
371
  "comme liens sortants (et suivis en tant que tel), si leur extension "
372
  "correspond à l'une de celles qui sont énumérées ci-dessous."
373
 
374
+ #: ../admin/config/index.php:124
375
  #, fuzzy
376
  msgid "Internal and Outbound Links"
377
  msgstr "Liens sortants récents"
378
 
379
+ #: ../admin/config/index.php:125
380
  msgid "Track Outbound Clicks"
381
  msgstr "Tracer les liens sortants"
382
 
383
+ #: ../admin/config/index.php:125
384
  msgid ""
385
  "Track when your visitors click on link to external websites. This option "
386
  "required Spy Mode to be enabled."
388
  "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
389
  "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
390
 
391
+ #: ../admin/config/index.php:126
392
  #, fuzzy
393
  msgid "Track Coordinates"
394
  msgstr "Mode traçage"
395
 
396
+ #: ../admin/config/index.php:126
397
  msgid ""
398
  "Collect mouse coordinates and other information for clicks on internal "
399
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
400
  "this information is only collected for external links."
401
  msgstr ""
402
 
403
+ #: ../admin/config/index.php:127
404
  msgid "No Callback"
405
  msgstr ""
406
 
407
+ #: ../admin/config/index.php:127
408
  msgid ""
409
  "Track the event but do not invoke the callback function on links marked with "
410
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
412
  "prevent conflicts with lightbox and similar libraries."
413
  msgstr ""
414
 
415
+ #: ../admin/config/index.php:128
416
  msgid "Do Not Track"
417
  msgstr ""
418
 
419
+ #: ../admin/config/index.php:128
420
  msgid ""
421
  "Do not track links marked with one of these class names, <em>rel</em> "
422
  "attributes or whose <em>href</em> attribute contains one of these strings "
423
  "(separated by comma)."
424
  msgstr ""
425
 
426
+ #: ../admin/config/index.php:130
427
  msgid "Pages not belonging to this site"
428
  msgstr ""
429
 
430
+ #: ../admin/config/index.php:131
431
  #, fuzzy
432
  msgid ""
433
  "Add the following code to all the non-WP pages you want to track, right "
437
  "Ajouter le code suivant à toutes les pages non-WordPress que vous souhaitez "
438
  "suivre."
439
 
440
+ #: ../admin/config/index.php:141
441
  #, fuzzy
442
  msgid "Allow External Domains"
443
  msgstr "Liens externes hostiles"
444
 
445
+ #: ../admin/config/index.php:141
446
  msgid ""
447
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
448
  "header is present on the requested resource, when using the external "
453
  "security implications of allowing CORS requests."
454
  msgstr ""
455
 
456
+ #: ../admin/config/index.php:142 ../admin/config/index.php:164
457
+ #: ../admin/config/index.php:192
458
  msgid "Miscellaneous"
459
  msgstr "Divers"
460
 
461
+ #: ../admin/config/index.php:143
462
  msgid "Enable UAN"
463
  msgstr "Activer UAN"
464
 
465
+ #: ../admin/config/index.php:143
466
  msgid ""
467
  "Send anonymous data about user agents to our server for analysis. This "
468
  "allows us to contribute to the <a href='http://browscap.org/' "
475
  "browscap.org/' target='_blank'> projet opensource BrowsCap, et d'améliorer "
476
  "la pertinence de la fonctionnalité de WPStats concernant les navigateurs web."
477
 
478
+ #: ../admin/config/index.php:148
479
  msgid "Filters"
480
  msgstr "Filtres"
481
 
482
+ #: ../admin/config/index.php:150
483
  #, fuzzy
484
  msgid "Do not track settings"
485
  msgstr "ne contient pas"
486
 
487
+ #: ../admin/config/index.php:151
488
  msgid "Track Registered Users"
489
  msgstr "Tracer les utilisateurs enregistrés"
490
 
491
+ #: ../admin/config/index.php:151
492
  msgid "Enable this option to track logged in users."
493
  msgstr "Activez cette option pour tracer les utilisateurs connectés"
494
 
495
+ #: ../admin/config/index.php:152
496
  msgid "Blacklist by Username"
497
  msgstr "Liste noire basée sur le nom d'utilisateur"
498
 
499
+ #: ../admin/config/index.php:152
500
  #, fuzzy
501
  msgid ""
502
  "List all the usernames you don't want to track, separated by commas. Please "
514
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
515
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
516
 
517
+ #: ../admin/config/index.php:153
518
  msgid "Blacklist by IP Address"
519
  msgstr "Liste noire par adresse IP"
520
 
521
+ #: ../admin/config/index.php:153
522
  msgid ""
523
  "List all the IP addresses you don't want to track, separated by commas. Each "
524
  "network <strong>must</strong> be defined using the <a href='http://en."
533
  "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
534
  "pas suivre correctement les pages vues."
535
 
536
+ #: ../admin/config/index.php:154
537
  msgid "Blacklist by Capability"
538
  msgstr "Blacklister par Capabilité WordPress"
539
 
540
+ #: ../admin/config/index.php:154
541
  msgid ""
542
  "Users having at least one of the <a href='http://codex.wordpress.org/"
543
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
547
  "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
548
  "seront pas suivis. Les capacités sont insensibles à la casse."
549
 
550
+ #: ../admin/config/index.php:156
551
  msgid "Profiling"
552
  msgstr "Profiling"
553
 
554
+ #: ../admin/config/index.php:157
555
  msgid "Ignore Spammers"
556
  msgstr "Ignorer les spammeurs"
557
 
558
+ #: ../admin/config/index.php:157
559
  msgid ""
560
  "Enable this option if you don't want to track visits from users identified "
561
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
567
  "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
568
  "comme spam par vous, seront également supprimées de la base."
569
 
570
+ #: ../admin/config/index.php:158
571
  #, fuzzy
572
  msgid "Ignore Bots"
573
  msgstr "Ignorer les utilisateurs"
574
 
575
+ #: ../admin/config/index.php:158
576
  msgid ""
577
  "Turn on this feature if you want to have the accuracy level of server-side "
578
  "tracking, but not the inconvenience of getting your database clogged with "
580
  "note that in Client mode, bots are ignored regardless of this setting."
581
  msgstr ""
582
 
583
+ #: ../admin/config/index.php:159
584
  msgid "Permalinks"
585
  msgstr "Rermaliens"
586
 
587
+ #: ../admin/config/index.php:159
588
  msgid ""
589
  "List all the URLs on your website that you don't want to track, separated by "
590
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
602
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
603
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
604
 
605
+ #: ../admin/config/index.php:160
606
  msgid "Countries"
607
  msgstr "Pays"
608
 
609
+ #: ../admin/config/index.php:160
610
  msgid ""
611
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
612
  "track, separated by commas."
614
  "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
615
  "ne voulez pas suivre, séparées par des virgules."
616
 
617
+ #: ../admin/config/index.php:161
618
  msgid "User Agents"
619
  msgstr "User Agents"
620
 
621
+ #: ../admin/config/index.php:161
622
  msgid ""
623
  "Browsers (user agents) you don't want to track, separated by commas. You can "
624
  "specify the browser's version adding a slash after the name (i.e. "
636
  "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
637
  "et IE/8.0. Les chaînes sont insensibles à la casse."
638
 
639
+ #: ../admin/config/index.php:162
640
  msgid "Referring Sites"
641
  msgstr "Sites référents"
642
 
643
+ #: ../admin/config/index.php:162
644
  msgid ""
645
  "Referring URLs that you don't want to track, separated by commas: "
646
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
657
  "soit un caractère générique ou le protocole que vous voulez filtrer "
658
  "(http://, https://)."
659
 
660
+ #: ../admin/config/index.php:165
661
  msgid "Enable Privacy Mode"
662
  msgstr "Activer le mode privé"
663
 
664
+ #: ../admin/config/index.php:165
665
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
666
  msgstr ""
667
  "Cette option masque l'adresse IP de vos visiteurs afin de se conformer aux "
668
  "lois de confidentialité européennes."
669
 
670
+ #: ../admin/config/index.php:166
671
  msgid "Ignore Prefetch Requests"
672
  msgstr "Ignorer les requêtes anticipées"
673
 
674
+ #: ../admin/config/index.php:166
675
  msgid ""
676
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
677
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
681
  "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
682
  "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
683
 
684
+ #: ../admin/config/index.php:171 ../admin/config/index.php:203
685
  msgid "Reports"
686
  msgstr "Rapports"
687
 
688
+ #: ../admin/config/index.php:173
689
  msgid "Formats and Conversions"
690
  msgstr ""
691
 
692
+ #: ../admin/config/index.php:174
693
  msgid "Number Format"
694
  msgstr "Format des nombres"
695
 
696
+ #: ../admin/config/index.php:174
697
  msgid "Choose the number format you want to use for your reports."
698
  msgstr ""
699
  "Choisissez le format numérique que vous souhaitez utiliser, européen ou "
700
  "américain."
701
 
702
+ #: ../admin/config/index.php:175
703
  #, fuzzy
704
  msgid "Date Format"
705
  msgstr "Données et Formats"
706
 
707
+ #: ../admin/config/index.php:175
708
  #, fuzzy
709
  msgid ""
710
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
714
  "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
715
  "vue."
716
 
717
+ #: ../admin/config/index.php:176
718
  #, fuzzy
719
  msgid "Time Format"
720
  msgstr "Format des nombres"
721
 
722
+ #: ../admin/config/index.php:176
723
  #, fuzzy
724
  msgid ""
725
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
729
  "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
730
  "vue."
731
 
732
+ #: ../admin/config/index.php:177
733
  #, fuzzy
734
  msgid "Use Display Name"
735
  msgstr "Voir Nom d'affichage"
736
 
737
+ #: ../admin/config/index.php:177
738
  msgid ""
739
  "By default, users are listed by their usernames. Use this option to "
740
  "visualize their display names instead."
742
  "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
743
  "cette option pour basculer au Nom d'affichage."
744
 
745
+ #: ../admin/config/index.php:178
746
  #, fuzzy
747
  msgid "Use Titles"
748
  msgstr "Afficher les titres"
749
 
750
+ #: ../admin/config/index.php:178
751
  #, fuzzy
752
  msgid ""
753
  "Slimstat converts your permalinks into post, page and category titles. "
757
  "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
758
  "rapports."
759
 
760
+ #: ../admin/config/index.php:179
761
  msgid "Convert IP Addresses"
762
  msgstr "Convertir les adresses IP"
763
 
764
+ #: ../admin/config/index.php:179
765
  msgid "Display provider names instead of IP addresses."
766
  msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
767
 
768
+ #: ../admin/config/index.php:181
769
  msgid "Functionality"
770
  msgstr "Fonctionnalité"
771
 
772
+ #: ../admin/config/index.php:182
773
  msgid "SlimScroll"
774
  msgstr "SlimScroll"
775
 
776
+ #: ../admin/config/index.php:182
777
  msgid ""
778
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
779
  "scrollbar."
781
  "Activer SlimScroll, une librairie jQuery élégante qui remplace la barre de "
782
  "défilement par défaut des navigateurs."
783
 
784
+ #: ../admin/config/index.php:183
785
  msgid "Expand Details"
786
  msgstr "Développez les détails"
787
 
788
+ #: ../admin/config/index.php:183
789
  msgid "Expand each row's details by default, insted of on mousehover."
790
  msgstr ""
791
  "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
792
  "souris."
793
 
794
+ #: ../admin/config/index.php:184 ../admin/config/index.php:190
795
  msgid "Rows to Display"
796
  msgstr "Colonnes à afficher"
797
 
798
+ #: ../admin/config/index.php:184
799
  msgid "Specify the number of items in each report."
800
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
801
 
802
+ #: ../admin/config/index.php:185 ../admin/view/wp-slimstat-db.php:101
803
  #, fuzzy
804
  msgid "Max Results"
805
  msgstr "Limiter les résultats"
806
 
807
+ #: ../admin/config/index.php:185
808
  msgid ""
809
  "Decide how many records should be retrieved from the database in total. "
810
  "Depending on your server configuration, you may want to fine tune this value "
811
  "to avoid exceeding your PHP memory limit."
812
  msgstr ""
813
 
814
+ #: ../admin/config/index.php:186
815
  msgid "IP Lookup"
816
  msgstr "Recherche d'IP"
817
 
818
+ #: ../admin/config/index.php:186
819
  msgid "Customize the Geolocation service to be used in the reports."
820
  msgstr ""
821
  "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
822
 
823
+ #: ../admin/config/index.php:188
824
  msgid "Activity Log"
825
  msgstr "Statistiques de fréquentation"
826
 
827
+ #: ../admin/config/index.php:189
828
  msgid "Live Stream"
829
  msgstr "Flux en temps réel (Flux live)"
830
 
831
+ #: ../admin/config/index.php:189
832
  msgid ""
833
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
834
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
836
  "Actualisez la vue 'Maintenant' toutes les X secondes. Entrer <strong>0</"
837
  "strong> pour désactiver cette fonctionnalité."
838
 
839
+ #: ../admin/config/index.php:190
840
  msgid "Specify the number of items in the Activity Log."
841
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
842
 
843
+ #: ../admin/config/index.php:193
844
  msgid "Custom CSS"
845
  msgstr "Personnaliser le style CSS"
846
 
847
+ #: ../admin/config/index.php:193
848
  #, fuzzy
849
  msgid ""
850
  "Paste here your custom stylesheet to personalize the way your reports look. "
858
  "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
859
  "d'utiliser cette fonctionnalité."
860
 
861
+ #: ../admin/config/index.php:194
862
  #, fuzzy
863
  msgid "Chart Colors"
864
  msgstr "Contrôle du graphique"
865
 
866
+ #: ../admin/config/index.php:194
867
  msgid ""
868
  "Customize the look and feel of your charts by assigning personalized colors "
869
  "to each metric. List 4 hex colors separated by commas, strictly in the "
871
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
872
  msgstr ""
873
 
874
+ #: ../admin/config/index.php:195
875
  msgid "Show User Agent"
876
  msgstr "Voir User Agent"
877
 
878
+ #: ../admin/config/index.php:195
879
  msgid ""
880
  "Choose if you want to see the browser name or a complete user agent string "
881
  "when hovering on browser icons."
883
  "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
884
  "de user agent lorsque vous survolez les icônes du navigateur."
885
 
886
+ #: ../admin/config/index.php:196
887
  msgid "Enable SOV"
888
  msgstr "Activer SOV"
889
 
890
+ #: ../admin/config/index.php:196
891
  msgid ""
892
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
893
  "the subject, object, and verb of a sentence appear in that order, like in "
897
  "langue dans laquelle les sujet, objet et verbe d'une phrase apparaissent "
898
  "dans cet ordre, comme en japonais."
899
 
900
+ #: ../admin/config/index.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
901
  msgid "Access Control"
902
  msgstr ""
903
 
904
+ #: ../admin/config/index.php:204
905
  msgid "Restrict Authors"
906
  msgstr "Restriction Auteurs"
907
 
908
+ #: ../admin/config/index.php:204
909
  msgid ""
910
  "Enable this option if you want your authors to only see stats related to "
911
  "their own content."
913
  "Activez cette option si vous voulez que vos auteurs ne voient que les "
914
  "statistiques relatives à leur propre contenu."
915
 
916
+ #: ../admin/config/index.php:205 ../admin/config/index.php:209
917
  msgid "Capability"
918
  msgstr "Aptitude"
919
 
920
+ #: ../admin/config/index.php:205
921
  msgid ""
922
  "Specify the minimum <a href='http://codex.wordpress.org/"
923
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
933
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
934
  "Dans ce cas, la liste a la priorité sur la capacité."
935
 
936
+ #: ../admin/config/index.php:206 ../admin/config/index.php:210
937
  msgid "Whitelist"
938
  msgstr "Liste blanche"
939
 
940
+ #: ../admin/config/index.php:206
941
  msgid ""
942
  "List all the users who should have access to the reports, separated by "
943
  "commas. Administrators are implicitly allowed, so you don't need to list "
949
  "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
950
  "noms d'utilisateurs sont sensibles à la casse."
951
 
952
+ #: ../admin/config/index.php:208 ../admin/config/index.php:233
953
+ #: ../admin/wp-slimstat-admin.php:636 ../admin/wp-slimstat-admin.php:654
954
+ #: ../admin/wp-slimstat-admin.php:657
955
  msgid "Settings"
956
  msgstr "Réglages"
957
 
958
+ #: ../admin/config/index.php:209
959
  msgid ""
960
  "Specify the minimum <a href='http://codex.wordpress.org/"
961
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
969
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
970
  "Dans ce cas, la liste a la priorité sur la capacité."
971
 
972
+ #: ../admin/config/index.php:210
973
  msgid ""
974
  "List all the users who can edit these options, separated by commas. Please "
975
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
981
  "inscrire! Les noms d'utilisateurs sont sensibles à la casse. (Majuscules-"
982
  "minuscules)"
983
 
984
+ #: ../admin/config/index.php:215
985
  msgid "Maintenance"
986
  msgstr "Maintenance"
987
 
988
+ #: ../admin/config/index.php:220 ../admin/view/addons.php:32
989
+ #: ../admin/wp-slimstat-admin.php:124
 
990
  msgid "Add-ons"
991
  msgstr "Add-ons"
992
 
1017
  msgid "The geolocation database has been installed on your server."
1018
  msgstr ""
1019
 
1020
+ #: ../admin/config/maintenance.php:82
 
 
 
 
 
 
 
 
 
1021
  msgid "Your reports were successfully restored to their default arrangement."
1022
  msgstr ""
1023
  "Vos rapports ont été réinitialisés avec succès dans leur configuration par "
1024
  "défaut."
1025
 
1026
+ #: ../admin/config/maintenance.php:92
1027
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1028
  msgstr "Vos tables WP SlimStat ont été converties en InnoDB avec succès."
1029
 
1030
+ #: ../admin/config/maintenance.php:98
1031
  #, fuzzy
1032
  msgid "All the archived records were successfully deleted."
1033
  msgstr "Tous les enregistrements ont bien été supprimés"
1034
 
1035
+ #: ../admin/config/maintenance.php:106
1036
  msgid "All the records were successfully deleted."
1037
  msgstr "Tous les enregistrements ont bien été supprimés"
1038
 
1039
+ #: ../admin/config/maintenance.php:128
1040
+ msgid "Troubleshooting"
1041
  msgstr ""
1042
 
1043
+ #: ../admin/config/maintenance.php:131
1044
  #, fuzzy
1045
  msgid "Tracker Status"
1046
  msgstr "Traçage"
1047
 
1048
+ #: ../admin/config/maintenance.php:133
1049
  #, fuzzy
1050
+ msgid "Reset the tracker status"
1051
+ msgstr "Traçage"
1052
 
1053
+ #: ../admin/config/maintenance.php:133
1054
  msgid "No Errors so far"
1055
  msgstr ""
1056
 
1057
+ #: ../admin/config/maintenance.php:134
1058
  msgid ""
1059
  "The information here above is useful to troubleshoot issues with the "
1060
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1061
  "the tracker could not record a pageview and are indicative of some kind of "
1062
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1063
  "most recent pageview was not recorded, based on your settings (filters, "
1064
+ "blackslists, etc). Please include the message here above when sending a "
1065
+ "support request."
1066
  msgstr ""
1067
 
1068
+ #: ../admin/config/maintenance.php:140
1069
  #, fuzzy
1070
  msgid "Enable SQL Debug"
1071
  msgstr "Activer le mode espion"
1072
 
1073
+ #: ../admin/config/maintenance.php:143
1074
  msgid ""
1075
  "Display the SQL code used to retrieve the data from the database. Useful to "
1076
  "troubleshoot issues with data consistency or missing pageviews."
1077
  msgstr ""
1078
 
1079
+ #: ../admin/config/maintenance.php:147
1080
  msgid "Disable SQL Debug"
1081
  msgstr ""
1082
 
1083
+ #: ../admin/config/maintenance.php:150
1084
  msgid "Deactivate the SQL output on top of each report."
1085
  msgstr ""
1086
 
1087
+ #: ../admin/config/maintenance.php:155
 
 
 
 
1088
  msgid ""
1089
  "Are you sure you want to restore the default arrangement of your reports?"
1090
  msgstr "Etes-vous sûr de vouloir réinitialiser vos rapports ?"
1091
 
1092
+ #: ../admin/config/maintenance.php:155
1093
  msgid "No Panic Button"
1094
  msgstr "Pas de panique !"
1095
 
1096
+ #: ../admin/config/maintenance.php:157
1097
  #, fuzzy
1098
  msgid ""
1099
  "Reset the default arrangement of your reports. Helpful when, for some "
1101
  "in your views."
1102
  msgstr "Réinitialiser la mise en page par défaut de vos rapports."
1103
 
1104
+ #: ../admin/config/maintenance.php:161
1105
  msgid "Data Maintenance"
1106
  msgstr "Maintenance des données"
1107
 
1108
+ #: ../admin/config/maintenance.php:164
1109
  msgid "Delete pageviews where"
1110
  msgstr "Supprimer les pages où"
1111
 
1112
+ #: ../admin/config/maintenance.php:178 ../admin/view/index.php:16
1113
  msgid "equals"
1114
  msgstr "est égal à"
1115
 
1116
+ #: ../admin/config/maintenance.php:179 ../admin/view/index.php:17
1117
  msgid "is not equal to"
1118
  msgstr "n'est pas égal à"
1119
 
1120
+ #: ../admin/config/maintenance.php:180 ../admin/view/index.php:18
1121
  msgid "contains"
1122
  msgstr "contient"
1123
 
1124
+ #: ../admin/config/maintenance.php:181 ../admin/view/index.php:19
1125
  msgid "is included in"
1126
  msgstr ""
1127
 
1128
+ #: ../admin/config/maintenance.php:182 ../admin/view/index.php:20
1129
  msgid "does not contain"
1130
  msgstr "ne contient pas"
1131
 
1132
+ #: ../admin/config/maintenance.php:183 ../admin/view/index.php:21
1133
  msgid "starts with"
1134
  msgstr "commence par"
1135
 
1136
+ #: ../admin/config/maintenance.php:184 ../admin/view/index.php:22
1137
  msgid "ends with"
1138
  msgstr "finit par"
1139
 
1140
+ #: ../admin/config/maintenance.php:185 ../admin/view/index.php:23
1141
  msgid "sounds like"
1142
  msgstr "ressemble à"
1143
 
1144
+ #: ../admin/config/maintenance.php:186 ../admin/view/index.php:24
1145
  msgid "is greater than"
1146
  msgstr "est plus grand que"
1147
 
1148
+ #: ../admin/config/maintenance.php:187 ../admin/view/index.php:25
1149
  msgid "is less than"
1150
  msgstr "est plus petit que"
1151
 
1152
+ #: ../admin/config/maintenance.php:188 ../admin/view/index.php:27
1153
  msgid "matches"
1154
  msgstr "correspond à"
1155
 
1156
+ #: ../admin/config/maintenance.php:189 ../admin/view/index.php:28
1157
  msgid "does not match"
1158
  msgstr "ne correspond pas à"
1159
 
1160
+ #: ../admin/config/maintenance.php:190 ../admin/view/index.php:29
1161
  msgid "is empty"
1162
  msgstr "est vide"
1163
 
1164
+ #: ../admin/config/maintenance.php:191 ../admin/view/index.php:30
1165
  msgid "is not empty"
1166
  msgstr "n'est pas vide"
1167
 
1168
+ #: ../admin/config/maintenance.php:194 ../admin/view/index.php:42
1169
  #: ../admin/view/index.php:105
1170
  msgid "Apply"
1171
  msgstr "Appliquer"
1172
 
1173
+ #: ../admin/config/maintenance.php:195
1174
  msgid ""
1175
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1176
  msgstr ""
1177
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT ces enregistrement de "
1178
  "votre base de données ?"
1179
 
1180
+ #: ../admin/config/maintenance.php:202
1181
  msgid ""
1182
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1183
  "database?"
1185
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1186
  "votre base de données ?"
1187
 
1188
+ #: ../admin/config/maintenance.php:202
1189
  #, fuzzy
1190
  msgid "Delete All Records"
1191
  msgstr "Supprimer toutes les pages vues"
1192
 
1193
+ #: ../admin/config/maintenance.php:205
1194
  #, fuzzy
1195
  msgid ""
1196
+ "Erase all the information collected so far by Slimstat, but not the archived "
1197
+ "records (<code>wp_slim_stats_archive</code>). This operation <strong>does "
1198
+ "not</strong> reset your settings and it can be undone by manually copying "
1199
+ "your records from the archive table."
1200
  msgstr ""
1201
  "Effacer les informations collecter par WP Slimstat jusqu'à present. Cette "
1202
  "opération <strong>ne réinitialise pas </strong>vos paramétrages."
1203
 
1204
+ #: ../admin/config/maintenance.php:211
1205
  #, fuzzy
1206
  msgid ""
1207
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1210
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1211
  "votre base de données ?"
1212
 
1213
+ #: ../admin/config/maintenance.php:211
1214
  #, fuzzy
1215
  msgid "Delete Archive"
1216
  msgstr "Filtrer les pages vues pour que"
1217
 
1218
+ #: ../admin/config/maintenance.php:214
1219
  msgid "Erase all the archived records. This operation cannot be undone."
1220
  msgstr ""
1221
 
1222
+ #: ../admin/config/maintenance.php:220
1223
  msgid "Improve Performance"
1224
  msgstr "Improve la performance"
1225
 
1226
+ #: ../admin/config/maintenance.php:224
1227
  msgid ""
1228
  "Please note that you will need about 30% more DB space to store the extra "
1229
  "information required."
1231
  "Vous aurez besoin d'environ 30% de plus d'espace de base de données pour "
1232
  "stocker les informations supplémentaires nécessaires."
1233
 
1234
+ #: ../admin/config/maintenance.php:228
1235
  msgid "Save DB Space"
1236
  msgstr "Gagner de l'espace sur la taille de votre base de données"
1237
 
1238
+ #: ../admin/config/maintenance.php:231
1239
  msgid ""
1240
  "Please note that by removing table indexes, Slimstat's performance will be "
1241
  "affected."
1243
  "Merci de noter qu'en supprimant les indexes, les performances de WP "
1244
  "SlimStats seront impactées."
1245
 
1246
+ #: ../admin/config/maintenance.php:236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1247
  msgid "MaxMind IP to Country"
1248
  msgstr ""
1249
 
1250
+ #: ../admin/config/maintenance.php:242
1251
  msgid ""
1252
  "Do you want to download and install the geolocation database from MaxMind's "
1253
  "server?"
1254
  msgstr ""
1255
 
1256
+ #: ../admin/config/maintenance.php:242
1257
  msgid "Install GeoLite DB"
1258
  msgstr ""
1259
 
1260
+ #: ../admin/config/maintenance.php:245
1261
  msgid "Do you want to uninstall the geolocation database?"
1262
  msgstr ""
1263
 
1264
+ #: ../admin/config/maintenance.php:245
1265
  msgid "Uninstall GeoLite DB"
1266
  msgstr ""
1267
 
1268
+ #: ../admin/config/maintenance.php:249
1269
  msgid ""
1270
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1271
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1275
  "enable this functionality."
1276
  msgstr ""
1277
 
1278
+ #: ../admin/config/maintenance.php:254
1279
  msgid "Import and Export"
1280
  msgstr "Import-Export"
1281
 
1282
+ #: ../admin/config/maintenance.php:258
1283
  #, fuzzy
1284
  msgid ""
1285
  "Here below you can find the current configuration string for Slimstat. You "
1290
  "configuration. Vous pouvez mettre à jour vos réglages en collant une "
1291
  "nouvelle ligne ci-après et en cliquant sur Import."
1292
 
1293
+ #: ../admin/config/maintenance.php:263
1294
  msgid "Import"
1295
  msgstr "Importer"
1296
 
1297
+ #: ../admin/config/maintenance.php:264
1298
  msgid "Are you sure you want to OVERWRITE your current settings?"
1299
  msgstr "Etes-vous sûr que vous voulez réinitialiser vos onglets?"
1300
 
1301
+ #: ../admin/config/maintenance.php:269
1302
  msgid "Database Information"
1303
  msgstr "Informations de base de données"
1304
 
1305
+ #: ../admin/config/maintenance.php:272
1306
  msgid "Engine"
1307
  msgstr "Moteur"
1308
 
1309
+ #: ../admin/config/maintenance.php:276
1310
  msgid "switch to InnoDB"
1311
  msgstr "changer pour InnoDB"
1312
 
1313
+ #: ../admin/config/maintenance.php:287
1314
  msgid "records"
1315
  msgstr "Enregistrements"
1316
 
1388
  msgid "Load"
1389
  msgstr ""
1390
 
1391
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1406
1392
  msgid "Today"
1393
  msgstr "Aujourd'hui"
1394
 
1395
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1409
1396
  msgid "Yesterday"
1397
  msgstr "Hier"
1398
 
1457
  "country of origin."
1458
  msgstr ""
1459
 
1460
+ #: ../admin/view/layout.php:47
1461
  msgid "Customize and organize your reports"
1462
  msgstr ""
1463
 
1464
+ #: ../admin/view/layout.php:48
1465
  msgid ""
1466
  "Drag and drop report placeholders from one container to another, to "
1467
  "customize the information you want to see right away when you open Slimstat. "
1473
  "(Screen Options tab)."
1474
  msgstr ""
1475
 
1476
+ #: ../admin/view/layout.php:60
1477
  msgid "Clone"
1478
  msgstr ""
1479
 
1480
+ #: ../admin/view/layout.php:64
1481
  #, fuzzy
1482
  msgid "Delete"
1483
  msgstr "Filtrer les pages vues pour que"
1498
  msgid "Syndication Reader"
1499
  msgstr "Lecteur de Flux (Syndication)"
1500
 
1501
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1032
1502
+ #: ../admin/view/wp-slimstat-reports.php:1715
1503
  msgid "No data to display"
1504
  msgstr "Aucune donnée à afficher"
1505
 
1508
  msgstr "Date/Heure"
1509
 
1510
  # Unknown
1511
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1084
1512
+ #: ../admin/view/wp-slimstat-reports.php:1758 ../wp-slimstat.php:1355
1513
  msgid "c-"
1514
  msgstr "Inconnu"
1515
 
1516
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1517
+ #: ../admin/wp-slimstat-admin.php:968 ../admin/wp-slimstat-admin.php:1008
1518
  msgid "Originating IP"
1519
  msgstr "IP d'origine"
1520
 
1521
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1181
1522
+ #: ../admin/view/wp-slimstat-reports.php:1186
1523
+ #: ../admin/view/wp-slimstat-reports.php:1191
1524
  msgid "Open this URL in a new window"
1525
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1526
 
1528
  msgid "Local search results page"
1529
  msgstr "Page de résultat d'une recherche locale"
1530
 
1531
+ #: ../admin/view/right-now.php:157 ../admin/view/wp-slimstat-db.php:42
1532
+ #: ../admin/view/wp-slimstat-reports.php:242
1533
+ #: ../admin/view/wp-slimstat-reports.php:251
1534
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
1535
  msgid "Search Terms"
1536
  msgstr "Termes de recherche"
1537
 
1538
+ #: ../admin/view/right-now.php:166
1539
  msgid "Server Latency and Page Speed in milliseconds"
1540
  msgstr "Latence du serveur et Rapidité de la page en millisecondes"
1541
 
1542
+ #: ../admin/view/right-now.php:166
1543
  msgid "SL"
1544
  msgstr "SL"
1545
 
1546
+ #: ../admin/view/right-now.php:166
1547
  msgid "PS"
1548
  msgstr "PS"
1549
 
1550
+ #: ../admin/view/right-now.php:173
1551
  #, fuzzy
1552
+ msgid "Time spent on this page"
1553
  msgstr "Ouvrir cette page dans une nouvelle fenêtre"
1554
 
1555
+ #: ../admin/view/right-now.php:183
1556
  msgid "Open this referrer in a new window"
1557
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
1558
 
1559
+ #: ../admin/view/right-now.php:184
1560
  msgid "Open this outbound link in a new window"
1561
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1562
 
1563
+ #: ../admin/view/right-now.php:185
1564
  msgid "Content Type"
1565
  msgstr "Type de contenu"
1566
 
1567
+ #: ../admin/view/right-now.php:188
1568
  #, fuzzy
1569
  msgid "Delete this pageview"
1570
  msgstr "Filtrer les pages vues pour que"
1571
 
1572
+ #: ../admin/view/right-now.php:199
1573
  #, fuzzy
1574
  msgid "User Logged In"
1575
  msgstr "User Agent"
1576
 
1577
+ #: ../admin/view/right-now.php:209
1578
  #, fuzzy
1579
  msgid "User Logged Out"
1580
  msgstr "User Agent"
1581
 
1582
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:984
1583
  msgid "Browser"
1584
  msgstr "Navigateur Web"
1585
 
1586
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:985
1587
  msgid "Country Code"
1588
  msgstr "Code du pays"
1589
 
1591
  msgid "IP Address"
1592
  msgstr "Adresse IP"
1593
 
1594
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:988
1595
  msgid "Language Code"
1596
  msgstr "Code langue"
1597
 
1598
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1599
+ #: ../admin/wp-slimstat-admin.php:989
1600
  msgid "Operating System"
1601
  msgstr "Système d'exploitation (OS)"
1602
 
1603
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1604
+ #: ../admin/wp-slimstat-admin.php:990
1605
  msgid "Permalink"
1606
  msgstr "Permalien"
1607
 
1608
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:991
1609
  msgid "Referer"
1610
  msgstr "Référent"
1611
 
1612
+ #: ../admin/view/wp-slimstat-db.php:47
1613
+ #, fuzzy
1614
+ msgid "Visitor's Username"
1615
  msgstr "le nom des visiteurs"
1616
 
1617
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:974
1618
  msgid "Outbound Link"
1619
  msgstr "Lien sortant"
1620
 
1627
  msgstr "-- Filtres Avancés --"
1628
 
1629
  #: ../admin/view/wp-slimstat-db.php:52
1630
+ #: ../admin/view/wp-slimstat-reports.php:372
1631
  msgid "Browser Capabilities"
1632
  msgstr "Capacités des Navigateurs"
1633
 
1634
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1003
1635
  msgid "Browser Version"
1636
  msgstr "Version de navigateur"
1637
 
1638
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1004
1639
  msgid "Browser Type"
1640
  msgstr "le type de navigateur Web"
1641
 
1642
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:973
1643
  msgid "User Agent"
1644
  msgstr "User Agent"
1645
 
1652
  msgid "Server Latency"
1653
  msgstr "Latence du serveur"
1654
 
1655
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1006
1656
  msgid "Post Author"
1657
  msgstr "l'auteur de l'article"
1658
 
1659
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1007
1660
  msgid "Post Category ID"
1661
  msgstr "ID de la catégorie de l'article"
1662
 
1663
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1009
1664
  msgid "Resource Content Type"
1665
  msgstr "le type de source de contenu"
1666
 
1681
  msgid "Viewport Size"
1682
  msgstr ""
1683
 
1684
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1011
1685
  msgid "Visit ID"
1686
  msgstr "Visites ID"
1687
 
1727
  msgstr "Contenus récents"
1728
 
1729
  #: ../admin/view/wp-slimstat-db.php:96
1730
+ #: ../admin/view/wp-slimstat-reports.php:1729
1731
  msgid "Type"
1732
  msgstr ""
1733
 
1750
  msgid "Offset"
1751
  msgstr ""
1752
 
1753
+ #: ../admin/view/wp-slimstat-reports.php:65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1754
  msgid "Chart controls"
1755
  msgstr "Contrôle du graphique"
1756
 
1757
+ #: ../admin/view/wp-slimstat-reports.php:65
1758
  msgid "Use your mouse wheel to zoom in and out"
1759
  msgstr "Utilisez la molette de votre souris pour zoomer et dézoomer"
1760
 
1761
+ #: ../admin/view/wp-slimstat-reports.php:65
1762
  msgid "While zooming in, drag the chart to move to a different area"
1763
  msgstr ""
1764
  "Alors que le zoom avant est activé, faites glisser la carte pour passer à "
1765
  "une autre zone"
1766
 
1767
+ #: ../admin/view/wp-slimstat-reports.php:68
 
 
 
 
 
1768
  #, fuzzy
1769
  msgid "Visitors Activity"
1770
  msgstr "Statistiques de fréquentation"
1771
 
1772
+ #: ../admin/view/wp-slimstat-reports.php:77
1773
  msgid "Color codes"
1774
  msgstr "Codes couleur"
1775
 
1776
+ #: ../admin/view/wp-slimstat-reports.php:77
1777
  msgid "From search result page"
1778
  msgstr "Depuis un moteur de recherche"
1779
 
1780
+ #: ../admin/view/wp-slimstat-reports.php:77 ../admin/wp-slimstat-admin.php:966
1781
  msgid "Known Visitor"
1782
  msgstr "Visiteurs connus"
1783
 
1784
+ #: ../admin/view/wp-slimstat-reports.php:77
1785
  msgid "Known Users"
1786
  msgstr "Utilisateurs connus"
1787
 
1788
+ #: ../admin/view/wp-slimstat-reports.php:77
1789
  msgid "Other Humans"
1790
  msgstr "Autres humains"
1791
 
1792
+ #: ../admin/view/wp-slimstat-reports.php:77
1793
  msgid "Bot or Crawler"
1794
  msgstr "Robot ou Crawler"
1795
 
1796
+ #: ../admin/view/wp-slimstat-reports.php:99
1797
  msgid "About Slimstat"
1798
  msgstr "À propos de WP-SlimStat"
1799
 
1800
+ #: ../admin/view/wp-slimstat-reports.php:108
1801
  #, fuzzy
1802
  msgid "Traffic at a Glance"
1803
  msgstr "Brièvement"
1804
 
1805
+ #: ../admin/view/wp-slimstat-reports.php:118
1806
  msgid "Currently Online"
1807
  msgstr "Actuellement en ligne"
1808
 
1809
+ #: ../admin/view/wp-slimstat-reports.php:131
1810
  msgid "Recent Search Terms"
1811
  msgstr "Derniers Termes de Recherches"
1812
 
1813
+ #: ../admin/view/wp-slimstat-reports.php:142
1814
  msgid "Keywords used by your visitors to find your website on a search engine."
1815
  msgstr ""
1816
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
1817
  "de recherche."
1818
 
1819
+ #: ../admin/view/wp-slimstat-reports.php:145
1820
  #, fuzzy
1821
  msgid "Top Web Pages"
1822
  msgstr "Top Pages Vues"
1823
 
1824
+ #: ../admin/view/wp-slimstat-reports.php:156
1825
  msgid ""
1826
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1827
  "site, including posts, products, categories, and so on. You can set the "
1830
  "have."
1831
  msgstr ""
1832
 
1833
+ #: ../admin/view/wp-slimstat-reports.php:159
1834
+ #, fuzzy
1835
+ msgid "Top Referring Domains"
1836
+ msgstr "Top Moteurs de Recherche"
1837
 
1838
+ #: ../admin/view/wp-slimstat-reports.php:173
1839
  msgid "Top Known Visitors"
1840
  msgstr "Top Visiteurs Connus"
1841
 
1842
+ #: ../admin/view/wp-slimstat-reports.php:184
1843
  msgid "Top Search Terms"
1844
  msgstr "Top Termes de Recherche"
1845
 
1846
+ #: ../admin/view/wp-slimstat-reports.php:196
1847
  msgid "Top Countries"
1848
  msgstr "Pays les plus récurrents"
1849
 
1850
+ #: ../admin/view/wp-slimstat-reports.php:205
1851
  msgid ""
1852
  "You can configure Slimstat to ignore a specific Country by setting the "
1853
  "corresponding filter under Settings > Slimstat > Filters."
1855
  "Vous pouvez configurer WP SlimStat afin d'ignorer un pays spécifique en "
1856
  "définissant le filtre correspondant sous SlimStat> Paramètres> Filtres."
1857
 
1858
+ #: ../admin/view/wp-slimstat-reports.php:208
1859
  msgid "Rankings"
1860
  msgstr "Classements"
1861
 
1862
+ #: ../admin/view/wp-slimstat-reports.php:212
1863
  msgid ""
1864
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1865
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1870
  "12 heures. Les filtres indiqués ci-dessus ne sont pas pris en compte dans ce "
1871
  "rapport."
1872
 
1873
+ #: ../admin/view/wp-slimstat-reports.php:215
1874
  msgid "Top Language Families"
1875
  msgstr "Top Langues"
1876
 
1877
+ #: ../admin/view/wp-slimstat-reports.php:228
1878
  #, fuzzy
1879
  msgid "Users Currently Online"
1880
  msgstr "Actuellement en ligne"
1881
 
1882
+ #: ../admin/view/wp-slimstat-reports.php:239
1883
  msgid ""
1884
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1885
  "Slimstat leverages this information to identify returning visitors. Please "
1889
  "attribue un cookie. WP SlimStat exploite ces informations pour identifier "
1890
  "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
1891
 
1892
+ #: ../admin/view/wp-slimstat-reports.php:252
1893
  #, fuzzy
1894
  msgid "Unique Terms"
1895
  msgstr "IPs uniques"
1896
 
1897
+ #: ../admin/view/wp-slimstat-reports.php:261
1898
+ #, fuzzy
1899
+ msgid "Top Referring URLs"
1900
+ msgstr "Sites référents"
1901
+
1902
+ #: ../admin/view/wp-slimstat-reports.php:274
1903
  msgid "Human Visits"
1904
  msgstr "Visiteurs humains"
1905
 
1906
+ #: ../admin/view/wp-slimstat-reports.php:283
1907
+ #: ../admin/view/wp-slimstat-reports.php:1440
1908
  msgid "Visits"
1909
  msgstr "Visites"
1910
 
1911
+ #: ../admin/view/wp-slimstat-reports.php:293
1912
  msgid "Audience Overview"
1913
  msgstr "Vue générale"
1914
 
1915
+ #: ../admin/view/wp-slimstat-reports.php:300
1916
  msgid ""
1917
  "Where not otherwise specified, the metrics in this report are referred to "
1918
  "human visitors."
1919
  msgstr ""
1920
 
1921
+ #: ../admin/view/wp-slimstat-reports.php:303
1922
  msgid "Top Languages"
1923
  msgstr "Top Langues"
1924
 
1925
+ #: ../admin/view/wp-slimstat-reports.php:314
1926
  msgid "Top Browsers"
1927
  msgstr "Principaux navigateurs"
1928
 
1929
+ #: ../admin/view/wp-slimstat-reports.php:325
1930
  msgid "Top Service Providers"
1931
  msgstr "Top Fournisseur d'Accès"
1932
 
1933
+ #: ../admin/view/wp-slimstat-reports.php:334
1934
+ #: ../admin/view/wp-slimstat-reports.php:346
1935
  msgid ""
1936
  "Internet Service Provider: a company which provides other companies or "
1937
  "individuals with access to the Internet. Your DSL or cable internet service "
1944
  "spécifiques en définissant le filtre correspondant sous SlimStat> Réglages> "
1945
  "Filtres."
1946
 
1947
+ #: ../admin/view/wp-slimstat-reports.php:337
1948
  msgid "Top Operating Systems"
1949
  msgstr "Top Systèmes d'Exploitation"
1950
 
1951
+ #: ../admin/view/wp-slimstat-reports.php:349
1952
  msgid "Top Screen Resolutions"
1953
  msgstr "Top Résolutions d'écran"
1954
 
1955
+ #: ../admin/view/wp-slimstat-reports.php:361
1956
  #, fuzzy
1957
  msgid "Top Viewport Sizes"
1958
  msgstr "Top Catégories"
1959
 
1960
+ #: ../admin/view/wp-slimstat-reports.php:381
1961
  msgid "Visit Duration"
1962
  msgstr "Durée des Visites"
1963
 
1964
+ #: ../admin/view/wp-slimstat-reports.php:388
1965
  #, fuzzy
1966
  msgid ""
1967
  "All values represent the percentages of pageviews within the corresponding "
1970
  "Carte du monde - Les valeurs représentent le pourcentage des accès provenant "
1971
  "de ce pays"
1972
 
1973
+ #: ../admin/view/wp-slimstat-reports.php:391
1974
  msgid "Recent Countries"
1975
  msgstr "Derniers Pays"
1976
 
1977
+ #: ../admin/view/wp-slimstat-reports.php:402
1978
  #, fuzzy
1979
  msgid "Recent Viewport Sizes"
1980
  msgstr "Dernières Catégories"
1981
 
1982
+ #: ../admin/view/wp-slimstat-reports.php:413
1983
  msgid "Recent Operating Systems"
1984
  msgstr "Derniers Systèmes d'Exploitation"
1985
 
1986
+ #: ../admin/view/wp-slimstat-reports.php:424
1987
  msgid "Recent Browsers"
1988
  msgstr "Navigateurs récents"
1989
 
1990
+ #: ../admin/view/wp-slimstat-reports.php:435
1991
  msgid "Recent Languages"
1992
  msgstr "Dernier Language"
1993
 
1994
+ #: ../admin/view/wp-slimstat-reports.php:446
1995
  msgid "Top Browser Families"
1996
  msgstr "Principales familles de navigateurs"
1997
 
1998
+ #: ../admin/view/wp-slimstat-reports.php:455
1999
  msgid ""
2000
  "This report shows you what user agent families (no version considered) are "
2001
  "popular among your visitors."
2003
  "Ce rapport affiche quelles familles d'user agent (sans prise en compte de "
2004
  "version) sont populaires chez vos visiteurs."
2005
 
2006
+ #: ../admin/view/wp-slimstat-reports.php:458
2007
  msgid "Top OS Families"
2008
  msgstr "Principales familles de SO"
2009
 
2010
+ #: ../admin/view/wp-slimstat-reports.php:469
2011
  msgid ""
2012
  "This report shows you what operating system families (no version considered) "
2013
  "are popular among your visitors."
2015
  "Ce rapport affiche quelles familles de système d'exploitation (sans prise en "
2016
  "compte de version) sont populaires chez vos visiteurs."
2017
 
2018
+ #: ../admin/view/wp-slimstat-reports.php:472
2019
  msgid "Recent Users"
2020
  msgstr "Utilisateurs récents"
2021
 
2022
+ #: ../admin/view/wp-slimstat-reports.php:484
2023
  msgid "Top Users"
2024
  msgstr "Principaux utilisateurs"
2025
 
2026
+ #: ../admin/view/wp-slimstat-reports.php:496
2027
+ #: ../admin/view/wp-slimstat-reports.php:505
2028
  msgid "Users"
2029
  msgstr "Utilisateurs"
2030
 
2031
+ #: ../admin/view/wp-slimstat-reports.php:506
2032
  #, fuzzy
2033
  msgid "Unique Users"
2034
  msgstr "IPs uniques"
2035
 
2036
+ #: ../admin/view/wp-slimstat-reports.php:515
2037
+ #: ../admin/wp-slimstat-admin.php:106
2038
+ msgid "Traffic Sources"
2039
+ msgstr "Sources de trafic"
2040
+
2041
+ #: ../admin/view/wp-slimstat-reports.php:524
2042
  msgid "Domains"
2043
  msgstr "Domaines"
2044
 
2045
+ #: ../admin/view/wp-slimstat-reports.php:534
2046
  #, fuzzy
2047
  msgid "Traffic Summary"
2048
  msgstr "Sources de trafic"
2049
 
2050
+ #: ../admin/view/wp-slimstat-reports.php:543
2051
  msgid "Top Referring Search Engines"
2052
  msgstr "Top Moteurs de Recherche"
2053
 
2054
+ #: ../admin/view/wp-slimstat-reports.php:572
2055
  msgid "Recent Outbound Links"
2056
  msgstr "Liens sortants récents"
2057
 
2058
+ #: ../admin/view/wp-slimstat-reports.php:584
2059
  msgid "Recent Posts"
2060
  msgstr "Contenus récents"
2061
 
2062
+ #: ../admin/view/wp-slimstat-reports.php:612
2063
  msgid "Recent Feeds"
2064
  msgstr "Flux récents"
2065
 
2066
+ #: ../admin/view/wp-slimstat-reports.php:624
2067
  msgid "Recent Pages Not Found"
2068
  msgstr "Dernières pages non trouvées"
2069
 
2070
+ #: ../admin/view/wp-slimstat-reports.php:636
2071
  msgid "Recent Internal Searches"
2072
  msgstr "Recherches internes récentes"
2073
 
2074
+ #: ../admin/view/wp-slimstat-reports.php:646
2075
  #, fuzzy
2076
  msgid "Searches performed using WordPress' built-in search functionality."
2077
  msgstr ""
2078
  "Recherches effectuées en utilisant la fonctionnalité de recherche intégrée "
2079
  "dans Wordpress."
2080
 
2081
+ #: ../admin/view/wp-slimstat-reports.php:649
2082
  msgid "Top Categories"
2083
  msgstr "Top Catégories"
2084
 
2085
+ #: ../admin/view/wp-slimstat-reports.php:662
2086
  msgid "Top Downloads"
2087
  msgstr "Top Téléchargements"
2088
 
2089
+ #: ../admin/view/wp-slimstat-reports.php:673
2090
  msgid ""
2091
  "You can configure Slimstat to track specific file extensions as downloads."
2092
  msgstr ""
2093
 
2094
+ #: ../admin/view/wp-slimstat-reports.php:676
2095
  msgid "Recent Events"
2096
  msgstr "Evènements Récents"
2097
 
2098
+ #: ../admin/view/wp-slimstat-reports.php:685
2099
+ #: ../admin/view/wp-slimstat-reports.php:709
2100
  #, fuzzy
2101
  msgid ""
2102
  "This report lists any <em>event</em> occurred on your website. Please refer "
2106
  "web. S'il vous plaît se référer à la FAQ pour plus d'informations sur la "
2107
  "façon de tirer parti de cette fonctionnalité."
2108
 
2109
+ #: ../admin/view/wp-slimstat-reports.php:688
2110
  msgid "Top Posts"
2111
  msgstr "Top Posts"
2112
 
2113
+ #: ../admin/view/wp-slimstat-reports.php:700
2114
  #, fuzzy
2115
  msgid "Top Events"
2116
  msgstr "Contenus récents"
2117
 
2118
+ #: ../admin/view/wp-slimstat-reports.php:712
2119
  msgid "Top Internal Searches"
2120
  msgstr "Top Recherches Internes"
2121
 
2122
+ #: ../admin/view/wp-slimstat-reports.php:724
2123
  msgid "Recent Categories"
2124
  msgstr "Dernières Catégories"
2125
 
2126
+ #: ../admin/view/wp-slimstat-reports.php:736
2127
  msgid "Top Pages Not Found"
2128
  msgstr "Top Pages non trouvées"
2129
 
2130
+ #: ../admin/view/wp-slimstat-reports.php:748
2131
  msgid "Top Authors"
2132
  msgstr "Top Auteurs"
2133
 
2134
+ #: ../admin/view/wp-slimstat-reports.php:759
2135
  msgid "Top Tags"
2136
  msgstr "Top Mots Clés"
2137
 
2138
+ #: ../admin/view/wp-slimstat-reports.php:771
2139
  msgid "Recent Downloads"
2140
  msgstr "Téléchargements récents"
2141
 
2142
+ #: ../admin/view/wp-slimstat-reports.php:783
2143
  #, fuzzy
2144
  msgid "Top Outbound Links"
2145
  msgstr "Lien sortant"
2146
 
2147
+ #: ../admin/view/wp-slimstat-reports.php:795
2148
  msgid "Your Website"
2149
  msgstr "Votre site web"
2150
 
2151
+ #: ../admin/view/wp-slimstat-reports.php:802
2152
  msgid ""
2153
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2154
  "this report is not affected by the filters set here above."
2156
  "Votre contenu en bref : Posts, commentaires, pingbacks, etc. Merci de noter "
2157
  "que ce rpport ne prend pas en compte les filtres ci-dessus."
2158
 
2159
+ #: ../admin/view/wp-slimstat-reports.php:805
2160
  #, fuzzy
2161
  msgid "Top Bounce Pages"
2162
  msgstr "Pages de Rebonds"
2163
 
2164
+ #: ../admin/view/wp-slimstat-reports.php:818
2165
  #, fuzzy
2166
  msgid "Top Exit Pages"
2167
  msgstr "Top Pages Vues"
2168
 
2169
+ #: ../admin/view/wp-slimstat-reports.php:831
2170
  #, fuzzy
2171
  msgid "Top Entry Pages"
2172
  msgstr "Top Pages Vues"
2173
 
2174
+ #: ../admin/view/wp-slimstat-reports.php:844
2175
+ #: ../admin/view/wp-slimstat-reports.php:853
2176
  #, fuzzy
2177
  msgid "Outbound Links"
2178
  msgstr "Lien sortant"
2179
 
2180
+ #: ../admin/view/wp-slimstat-reports.php:854
2181
  msgid "Unique Outbound"
2182
  msgstr ""
2183
 
2184
+ #: ../admin/view/wp-slimstat-reports.php:863
2185
  msgid "World Map"
2186
  msgstr "Carte du monde"
2187
 
2188
+ #: ../admin/view/wp-slimstat-reports.php:945
2189
  msgid "Refresh"
2190
  msgstr "Rafraichir"
2191
 
2192
+ #: ../admin/view/wp-slimstat-reports.php:982
2193
  #, php-format
2194
  msgid "Results %s - %s of %s"
2195
  msgstr "Résultats %s - %s de %s"
2196
 
2197
+ #: ../admin/view/wp-slimstat-reports.php:984
2198
  msgid "Refresh in"
2199
  msgstr "Rafraichir dans "
2200
 
2201
+ #: ../admin/view/wp-slimstat-reports.php:1078
2202
  msgid "Category ID"
2203
  msgstr "l'ID de la catégorie de l'article"
2204
 
2205
+ #: ../admin/view/wp-slimstat-reports.php:1083
2206
+ #: ../admin/view/wp-slimstat-reports.php:1097
2207
  #: ../admin/view/wp-slimstat-reports.php:1102
2208
  #, fuzzy
2209
  msgid "Code"
2210
  msgstr "Code OS "
2211
 
2212
  # Unknown
2213
+ #: ../admin/view/wp-slimstat-reports.php:1098
2214
+ #: ../languages/dynamic_strings.php:339 ../wp-slimstat.php:1367
2215
  msgid "l-"
2216
  msgstr "Inconnue"
2217
 
2218
+ #: ../admin/view/wp-slimstat-reports.php:1115
2219
  msgid "URL"
2220
  msgstr ""
2221
 
2222
+ #: ../admin/view/wp-slimstat-reports.php:1128
2223
  msgid "Referrer"
2224
  msgstr "Référent"
2225
 
2226
+ #: ../admin/view/wp-slimstat-reports.php:1170
2227
+ #: ../admin/view/wp-slimstat-reports.php:1424
2228
+ #: ../admin/view/wp-slimstat-reports.php:1480
2229
+ #: ../admin/view/wp-slimstat-reports.php:1486
2230
+ #: ../admin/view/wp-slimstat-reports.php:1492
2231
+ #: ../admin/view/wp-slimstat-reports.php:1498
2232
+ #: ../admin/view/wp-slimstat-reports.php:1504
2233
+ #: ../admin/view/wp-slimstat-reports.php:1510
2234
+ #: ../admin/view/wp-slimstat-reports.php:1516
2235
+ #: ../admin/view/wp-slimstat-reports.php:1736
2236
  msgid "Hits"
2237
  msgstr "Hits"
2238
 
2239
+ #: ../admin/view/wp-slimstat-reports.php:1351
2240
  #, fuzzy
2241
  msgid "Dataset Size"
2242
  msgstr "Taille de la base de données"
2243
 
2244
+ #: ../admin/view/wp-slimstat-reports.php:1353
2245
  msgid "Total number of records stored in the database."
2246
  msgstr ""
2247
 
2248
+ #: ../admin/view/wp-slimstat-reports.php:1355
2249
  msgid "DB Size"
2250
  msgstr "Taille de la base de données"
2251
 
2252
+ #: ../admin/view/wp-slimstat-reports.php:1358
2253
  #, fuzzy
2254
  msgid "Tracking Enabled"
2255
  msgstr "Mode traçage"
2256
 
2257
+ #: ../admin/view/wp-slimstat-reports.php:1361
2258
  msgid "Javascript Mode"
2259
  msgstr "Mode Javascript"
2260
 
2261
+ #: ../admin/view/wp-slimstat-reports.php:1364
2262
  msgid "Tracking Browser Caps"
2263
  msgstr "Traçage Capacités Navigateurs"
2264
 
2265
+ #: ../admin/view/wp-slimstat-reports.php:1367
2266
  msgid "Auto purge"
2267
  msgstr "Purge automatique"
2268
 
2269
+ #: ../admin/view/wp-slimstat-reports.php:1370
2270
  msgid "Oldest pageview"
2271
  msgstr "Plus ancienne page vue"
2272
 
2273
+ #: ../admin/view/wp-slimstat-reports.php:1371
2274
  msgid "No visits"
2275
  msgstr "Aucune visite"
2276
 
2277
+ #: ../admin/view/wp-slimstat-reports.php:1373
2278
+ #: ../admin/wp-slimstat-admin.php:112
2279
+ #, fuzzy
2280
+ msgid "Geolocation"
2281
+ msgstr "Ordre de tri"
2282
+
2283
+ #: ../admin/view/wp-slimstat-reports.php:1375
2284
  msgid "Date when the MaxMind Geolocation database was last updated."
2285
  msgstr ""
2286
 
2287
+ #: ../admin/view/wp-slimstat-reports.php:1386
2288
+ #: ../admin/view/wp-slimstat-reports.php:1544
2289
  msgid ""
2290
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2291
  "the tracking code is executed."
2293
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
2294
  "vues \" chaque fois que le code de traçage est exécuté."
2295
 
2296
+ #: ../admin/view/wp-slimstat-reports.php:1388
2297
  #, fuzzy
2298
  msgid "Days in Range"
2299
  msgstr "Intervalle de date"
2300
 
2301
+ #: ../admin/view/wp-slimstat-reports.php:1391
2302
  #, fuzzy
2303
  msgid "Average Daily Pageviews"
2304
  msgstr "Nombre de pages vues en moyenne"
2305
 
2306
+ #: ../admin/view/wp-slimstat-reports.php:1393
2307
  #, fuzzy
2308
  msgid ""
2309
  "How many pages have been visited on average every day during the current "
2311
  msgstr ""
2312
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
2313
 
2314
+ #: ../admin/view/wp-slimstat-reports.php:1395
2315
  msgid "From Search Results"
2316
  msgstr "Résultat de recherches"
2317
 
2318
+ #: ../admin/view/wp-slimstat-reports.php:1397
2319
  msgid ""
2320
  "Visitors who landed on your site after searching for a keyword on Google, "
2321
  "Yahoo, etc."
2323
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
2324
  "sur Google, Yahoo, etc"
2325
 
2326
+ #: ../admin/view/wp-slimstat-reports.php:1401
2327
  msgid ""
2328
  "Used to differentiate between multiple requests to download a file from one "
2329
  "internet address (IP) and requests originating from many distinct addresses"
2332
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
2333
  "provenant de plusieurs adresses distinctes"
2334
 
2335
+ #: ../admin/view/wp-slimstat-reports.php:1403
2336
  msgid "Last 30 minutes"
2337
  msgstr "30 dernières minutes"
2338
 
2339
+ #: ../admin/view/wp-slimstat-reports.php:1442
2340
  msgid ""
2341
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2342
  "multiple times if they perform multiple visits."
2345
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
2346
  "multiples."
2347
 
2348
+ #: ../admin/view/wp-slimstat-reports.php:1446
2349
  msgid "It includes only traffic generated by human visitors."
2350
  msgstr "Cela ne comprend que les visites dites humaines."
2351
 
2352
+ #: ../admin/view/wp-slimstat-reports.php:1448
2353
  msgid "Bounce rate"
2354
  msgstr "Taux de rebond"
2355
 
2356
+ #: ../admin/view/wp-slimstat-reports.php:1450
2357
  msgid ""
2358
  "Percentage of single-page visits, i.e. visits in which the person left your "
2359
  "site from the entrance page."
2361
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2362
  "desquelles la personne a quitté votre site dès la page d'entrée."
2363
 
2364
+ #: ../admin/view/wp-slimstat-reports.php:1452
2365
  msgid "Known visitors"
2366
  msgstr "Visiteurs connus"
2367
 
2368
+ #: ../admin/view/wp-slimstat-reports.php:1454
2369
  msgid "Visitors who had previously left a comment on your blog."
2370
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
2371
 
2372
+ #: ../admin/view/wp-slimstat-reports.php:1456
2373
  msgid "New visitors"
2374
  msgstr "Nouveaux visiteurs"
2375
 
2376
+ #: ../admin/view/wp-slimstat-reports.php:1458
2377
  msgid "Human users who visited your site only once."
2378
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
2379
 
2380
+ #: ../admin/view/wp-slimstat-reports.php:1460
2381
  msgid "Bots"
2382
  msgstr "Robots"
2383
 
2384
+ #: ../admin/view/wp-slimstat-reports.php:1463
2385
  #, fuzzy
2386
  msgid "Pageviews per visit"
2387
  msgstr "Pages vues par visite"
2388
 
2389
+ #: ../admin/view/wp-slimstat-reports.php:1466
2390
  msgid "Longest visit"
2391
  msgstr "Visite la plus longue"
2392
 
2393
+ #: ../admin/view/wp-slimstat-reports.php:1467
2394
  msgid "hits"
2395
  msgstr "hits"
2396
 
2397
+ #: ../admin/view/wp-slimstat-reports.php:1478
2398
  msgid "0 - 30 seconds"
2399
  msgstr "0 - 30 secondes"
2400
 
2401
+ #: ../admin/view/wp-slimstat-reports.php:1484
2402
  msgid "31 - 60 seconds"
2403
  msgstr "31 - 60 secondes"
2404
 
2405
+ #: ../admin/view/wp-slimstat-reports.php:1490
2406
  msgid "1 - 3 minutes"
2407
  msgstr "1 - 3 minutes"
2408
 
2409
+ #: ../admin/view/wp-slimstat-reports.php:1496
2410
  msgid "3 - 5 minutes"
2411
  msgstr "3 - 5 minutes"
2412
 
2413
+ #: ../admin/view/wp-slimstat-reports.php:1502
2414
  msgid "5 - 7 minutes"
2415
  msgstr "5 - 7 minutes"
2416
 
2417
+ #: ../admin/view/wp-slimstat-reports.php:1508
2418
  msgid "7 - 10 minutes"
2419
  msgstr "7 - 10 minutes"
2420
 
2421
+ #: ../admin/view/wp-slimstat-reports.php:1514
2422
  msgid "More than 10 minutes"
2423
  msgstr "Plus de 10 minutes"
2424
 
2425
+ #: ../admin/view/wp-slimstat-reports.php:1526
2426
  #, fuzzy
2427
  msgid "Average visit duration"
2428
  msgstr "Durée des Visites"
2429
 
2430
+ #: ../admin/view/wp-slimstat-reports.php:1546
2431
  msgid "Unique Referrers"
2432
  msgstr "Référents uniques"
2433
 
2434
+ #: ../admin/view/wp-slimstat-reports.php:1548
2435
  msgid ""
2436
  "A referrer (or referring site) is the site that a visitor previously visited "
2437
  "before following a link to your site."
2439
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
2440
  "suivre un lien vers votre site."
2441
 
2442
+ #: ../admin/view/wp-slimstat-reports.php:1550
2443
  msgid "Direct Pageviews"
2444
  msgstr "Pages Vues Directes"
2445
 
2446
+ #: ../admin/view/wp-slimstat-reports.php:1552
2447
  msgid ""
2448
  "Visitors who visited the site by typing the URL directly into their browser. "
2449
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2456
  "courriels non marquées, ou des liens à partir de documents qui ne "
2457
  "contiennent pas de variables de suivi."
2458
 
2459
+ #: ../admin/view/wp-slimstat-reports.php:1554
2460
  msgid "From a search result"
2461
  msgstr "Depuis un moteur de recherche"
2462
 
2463
+ #: ../admin/view/wp-slimstat-reports.php:1556
2464
  msgid ""
2465
  "Visitors who came to your site via searches on Google or some other search "
2466
  "engine."
2468
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
2469
  "ou autre."
2470
 
2471
+ #: ../admin/view/wp-slimstat-reports.php:1558
2472
  msgid "Unique Landing Pages"
2473
  msgstr "Pages d'Entrées Uniques"
2474
 
2475
+ #: ../admin/view/wp-slimstat-reports.php:1560
2476
  msgid ""
2477
  "The first page that a user views during a session. This is also known as the "
2478
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2484
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
2485
  "sera comptée (pour cette visite) comme la page d'entrée."
2486
 
2487
+ #: ../admin/view/wp-slimstat-reports.php:1562
2488
  msgid "Bounce Pages"
2489
  msgstr "Pages de Rebonds"
2490
 
2491
+ #: ../admin/view/wp-slimstat-reports.php:1564
2492
  #, fuzzy
2493
  msgid "Number of single page visits to your site over the selected period."
2494
  msgstr ""
2495
  "Nombre de visites d'une seule page de votre site au cours de la période "
2496
  "sélectionnée."
2497
 
2498
+ #: ../admin/view/wp-slimstat-reports.php:1566
2499
  msgid "New Visitors Rate"
2500
  msgstr "Taux de Nouveaux Visiteurs"
2501
 
2502
+ #: ../admin/view/wp-slimstat-reports.php:1568
2503
  #, fuzzy
2504
  msgid ""
2505
  "Percentage of single page visits, i.e. visits in which the person left your "
2508
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2509
  "desquelles la personne a quitté votre site dès la page d'entrée."
2510
 
2511
+ #: ../admin/view/wp-slimstat-reports.php:1570
2512
  msgid "Currently from search engines"
2513
  msgstr "Moteurs de recherche récents"
2514
 
2515
+ #: ../admin/view/wp-slimstat-reports.php:1572
2516
  msgid ""
2517
  "Visitors who visited the site in the last 5 minutes coming from a search "
2518
  "engine."
2520
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
2521
  "d'un moteur de recherche."
2522
 
2523
+ #: ../admin/view/wp-slimstat-reports.php:1642
2524
  msgid "Number of pages in your site included in Google's index."
2525
  msgstr "Nombre de pages de votre site indexées par Google."
2526
 
2527
+ #: ../admin/view/wp-slimstat-reports.php:1643
2528
  msgid "Google Index"
2529
  msgstr "Index Google"
2530
 
2531
+ #: ../admin/view/wp-slimstat-reports.php:1644
2532
  msgid "Number of pages, according to Google, that link back to your site."
2533
  msgstr ""
2534
  "Nombre de pages qui pointent sur votre site, d'après les informations "
2535
  "fournies par Google."
2536
 
2537
+ #: ../admin/view/wp-slimstat-reports.php:1645
2538
  msgid "Google Backlinks"
2539
  msgstr "Backlinks Google"
2540
 
2541
+ #: ../admin/view/wp-slimstat-reports.php:1646
2542
  msgid ""
2543
  "How many times the Facebook Like button has been approximately clicked on "
2544
  "your site."
2545
  msgstr ""
2546
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
2547
 
2548
+ #: ../admin/view/wp-slimstat-reports.php:1647
2549
  msgid "Facebook Likes"
2550
  msgstr "\"J'aime\" Facebook"
2551
 
2552
+ #: ../admin/view/wp-slimstat-reports.php:1648
2553
  msgid ""
2554
  "How many times your site has been shared by someone on the social network."
2555
  msgstr ""
2556
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
2557
  "social."
2558
 
2559
+ #: ../admin/view/wp-slimstat-reports.php:1649
2560
  msgid "Facebook Shares"
2561
  msgstr "Partages Facebook"
2562
 
2563
+ #: ../admin/view/wp-slimstat-reports.php:1650
2564
  msgid "How many times links to your website have been clicked on Facebook."
2565
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
2566
 
2567
+ #: ../admin/view/wp-slimstat-reports.php:1651
2568
  msgid "Facebook Clicks"
2569
  msgstr "Clicks Facebook"
2570
 
2571
+ #: ../admin/view/wp-slimstat-reports.php:1652
2572
  msgid ""
2573
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2574
  "traffic data."
2576
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
2577
  "concernant le trafic web."
2578
 
2579
+ #: ../admin/view/wp-slimstat-reports.php:1653
2580
  msgid "Alexa World Rank"
2581
  msgstr "Alexa, Classement mondial"
2582
 
2583
+ #: ../admin/view/wp-slimstat-reports.php:1654
2584
  msgid "Alexa Country Rank"
2585
  msgstr "Alexa, Classement par pays"
2586
 
2587
+ #: ../admin/view/wp-slimstat-reports.php:1655
2588
  msgid "Alexa Popularity"
2589
  msgstr "Alexa, Popularité"
2590
 
2591
+ #: ../admin/view/wp-slimstat-reports.php:1666
2592
  msgid "Content Items"
2593
  msgstr "Contenus"
2594
 
2595
+ #: ../admin/view/wp-slimstat-reports.php:1668
2596
  msgid ""
2597
  "This value includes not only posts, but also custom post types, regardless "
2598
  "of their status"
2600
  "Cette valeur n'inclut pas seulement les articles de blog, mais aussi des "
2601
  "types personnalisés d'articles, quel que soit leur statut."
2602
 
2603
+ #: ../admin/view/wp-slimstat-reports.php:1670
2604
  #, fuzzy
2605
  msgid "Posts"
2606
  msgstr "Top Posts"
2607
 
2608
+ #: ../admin/view/wp-slimstat-reports.php:1673
2609
  #, fuzzy
2610
  msgid "Pages"
2611
  msgstr "Pages de sorties les plus utilisées"
2612
 
2613
+ #: ../admin/view/wp-slimstat-reports.php:1676
2614
  msgid "Attachments"
2615
  msgstr ""
2616
 
2617
+ #: ../admin/view/wp-slimstat-reports.php:1679
2618
  #, fuzzy
2619
  msgid "Revisions"
2620
  msgstr "Permissions"
2621
 
2622
+ #: ../admin/view/wp-slimstat-reports.php:1682
2623
  #, fuzzy
2624
  msgid "Comments"
2625
  msgstr "Nombre de commentaires"
2626
 
2627
+ #: ../admin/view/wp-slimstat-reports.php:1685
2628
  #, fuzzy
2629
  msgid "Avg Comments per Post"
2630
  msgstr "Moyenne de commentaires par Article"
2631
 
2632
+ #: ../admin/view/wp-slimstat-reports.php:1688
2633
  msgid "Avg Server Latency"
2634
  msgstr "Latence moyenne du serveur"
2635
 
2636
+ #: ../admin/view/wp-slimstat-reports.php:1690
2637
  msgid ""
2638
  "Latency is the amount of time it takes for the host server to receive and "
2639
  "process a request for a page object. The amount of latency depends largely "
2640
  "on how far away the user is from the server."
2641
  msgstr ""
2642
 
2643
+ #: ../admin/view/wp-slimstat-reports.php:1733
2644
  #, fuzzy
2645
  msgid "Coordinates"
2646
  msgstr "Mode traçage"
2647
 
2648
+ #: ../admin/view/wp-slimstat-reports.php:1733
2649
  msgid "Date"
2650
  msgstr ""
2651
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2652
  # Unknown
2653
+ #: ../admin/view/wp-slimstat-reports.php:1749
2654
  msgid "c-xx"
2655
  msgstr "Inconnu"
2656
 
2657
  # Afghanistan
2658
+ #: ../admin/view/wp-slimstat-reports.php:1749
2659
  msgid "c-af"
2660
  msgstr "Afghanistan"
2661
 
2662
  # Åland Islands
2663
+ #: ../admin/view/wp-slimstat-reports.php:1749
2664
  msgid "c-ax"
2665
  msgstr "Îles Åland"
2666
 
2667
  # Albania
2668
+ #: ../admin/view/wp-slimstat-reports.php:1749
2669
  msgid "c-al"
2670
  msgstr "Albanie"
2671
 
2672
  # Algeria
2673
+ #: ../admin/view/wp-slimstat-reports.php:1749
2674
  msgid "c-dz"
2675
  msgstr "Algérie"
2676
 
2677
  # Andorra
2678
+ #: ../admin/view/wp-slimstat-reports.php:1749
2679
  msgid "c-ad"
2680
  msgstr "Andorre"
2681
 
2682
  # Angola
2683
+ #: ../admin/view/wp-slimstat-reports.php:1749
2684
  msgid "c-ao"
2685
  msgstr "Angola"
2686
 
2687
  # Anguilla
2688
+ #: ../admin/view/wp-slimstat-reports.php:1749
2689
  msgid "c-ai"
2690
  msgstr "Anguilla"
2691
 
2692
  # Antigua and Barbuda
2693
+ #: ../admin/view/wp-slimstat-reports.php:1749
2694
  msgid "c-ag"
2695
  msgstr "Antigua et Barbuda"
2696
 
2697
  # Argentina
2698
+ #: ../admin/view/wp-slimstat-reports.php:1749
2699
  msgid "c-ar"
2700
  msgstr "Argentine"
2701
 
2702
  # Armenia
2703
+ #: ../admin/view/wp-slimstat-reports.php:1749
2704
  msgid "c-am"
2705
  msgstr "Arménie"
2706
 
2707
  # Aruba
2708
+ #: ../admin/view/wp-slimstat-reports.php:1749
2709
  msgid "c-aw"
2710
  msgstr "Aruba"
2711
 
2712
  # Australia
2713
+ #: ../admin/view/wp-slimstat-reports.php:1749
2714
  msgid "c-au"
2715
  msgstr "Australie"
2716
 
2717
  # Austria
2718
+ #: ../admin/view/wp-slimstat-reports.php:1749
2719
  msgid "c-at"
2720
  msgstr "Autriche"
2721
 
2722
  # Azerbaijan
2723
+ #: ../admin/view/wp-slimstat-reports.php:1749
2724
  msgid "c-az"
2725
  msgstr "Azerbaïdjan"
2726
 
2727
  # Bahamas
2728
+ #: ../admin/view/wp-slimstat-reports.php:1749
2729
  msgid "c-bs"
2730
  msgstr "Bahamas"
2731
 
2732
  # Bahrain
2733
+ #: ../admin/view/wp-slimstat-reports.php:1749
2734
  msgid "c-bh"
2735
  msgstr "Bahreïn"
2736
 
2737
  # Bangladesh
2738
+ #: ../admin/view/wp-slimstat-reports.php:1749
2739
  msgid "c-bd"
2740
  msgstr "Bangladesh"
2741
 
2742
  # Barbados
2743
+ #: ../admin/view/wp-slimstat-reports.php:1749
2744
  msgid "c-bb"
2745
  msgstr "Barbade"
2746
 
2747
  # Belarus
2748
+ #: ../admin/view/wp-slimstat-reports.php:1749
2749
  msgid "c-by"
2750
  msgstr "Bélarus"
2751
 
2752
  # Belgium
2753
+ #: ../admin/view/wp-slimstat-reports.php:1749
2754
  msgid "c-be"
2755
  msgstr "Belgique"
2756
 
2757
  # Belize
2758
+ #: ../admin/view/wp-slimstat-reports.php:1749
2759
  msgid "c-bz"
2760
  msgstr "Belize"
2761
 
2762
  # Benin
2763
+ #: ../admin/view/wp-slimstat-reports.php:1749
2764
  msgid "c-bj"
2765
  msgstr "Bénin"
2766
 
2767
  # Bermuda
2768
+ #: ../admin/view/wp-slimstat-reports.php:1749
2769
  msgid "c-bm"
2770
  msgstr "Bermudes"
2771
 
2772
  # Bhutan
2773
+ #: ../admin/view/wp-slimstat-reports.php:1749
2774
  msgid "c-bt"
2775
  msgstr "Bhoutan"
2776
 
2777
  # Bolivia
2778
+ #: ../admin/view/wp-slimstat-reports.php:1749
2779
  msgid "c-bo"
2780
  msgstr "État plurinational de Bolivie"
2781
 
2782
  # Bosnia and Herzegovina
2783
+ #: ../admin/view/wp-slimstat-reports.php:1749
2784
  msgid "c-ba"
2785
  msgstr "Bosnie-Herzégovine"
2786
 
2787
  # Botswana
2788
+ #: ../admin/view/wp-slimstat-reports.php:1749
2789
  msgid "c-bw"
2790
  msgstr "Botswana"
2791
 
2792
  # Brazil
2793
+ #: ../admin/view/wp-slimstat-reports.php:1749
2794
  msgid "c-br"
2795
  msgstr "Brésil"
2796
 
2797
  # Brunei Darussalam
2798
+ #: ../admin/view/wp-slimstat-reports.php:1749
2799
  msgid "c-bn"
2800
  msgstr "Brunéi Darussalam"
2801
 
2802
  # Bulgaria
2803
+ #: ../admin/view/wp-slimstat-reports.php:1749
2804
  msgid "c-bg"
2805
  msgstr "Bulgarie"
2806
 
2807
  # Burkina Faso
2808
+ #: ../admin/view/wp-slimstat-reports.php:1749
2809
  msgid "c-bf"
2810
  msgstr "Burkina Faso"
2811
 
2812
  # Burundi
2813
+ #: ../admin/view/wp-slimstat-reports.php:1749
2814
  msgid "c-bi"
2815
  msgstr "Burundi"
2816
 
2817
  # Cambodia
2818
+ #: ../admin/view/wp-slimstat-reports.php:1749
2819
  msgid "c-kh"
2820
  msgstr "Cambodge"
2821
 
2822
  # Cameroon
2823
+ #: ../admin/view/wp-slimstat-reports.php:1749
2824
  msgid "c-cm"
2825
  msgstr "Cameroun"
2826
 
2827
  # Canada
2828
+ #: ../admin/view/wp-slimstat-reports.php:1749
2829
  msgid "c-ca"
2830
  msgstr "Canada"
2831
 
2832
  # Cape Verde
2833
+ #: ../admin/view/wp-slimstat-reports.php:1749
2834
  msgid "c-cv"
2835
  msgstr "Cap-Vert"
2836
 
2837
  # Cayman Islands
2838
+ #: ../admin/view/wp-slimstat-reports.php:1749
2839
  msgid "c-ky"
2840
  msgstr "Îles Caïmans"
2841
 
2842
  # Central African Republic
2843
+ #: ../admin/view/wp-slimstat-reports.php:1749
2844
  msgid "c-cf"
2845
  msgstr "République Centrafricaine"
2846
 
2847
  # Chad
2848
+ #: ../admin/view/wp-slimstat-reports.php:1749
2849
  msgid "c-td"
2850
  msgstr "Tchad"
2851
 
2852
  # Chile
2853
+ #: ../admin/view/wp-slimstat-reports.php:1749
2854
  msgid "c-cl"
2855
  msgstr "Chili"
2856
 
2857
  # China
2858
+ #: ../admin/view/wp-slimstat-reports.php:1749
2859
  msgid "c-cn"
2860
  msgstr "Chine"
2861
 
2862
  # Colombia
2863
+ #: ../admin/view/wp-slimstat-reports.php:1749
2864
  msgid "c-co"
2865
  msgstr "Colombie"
2866
 
2867
  # Comoros
2868
+ #: ../admin/view/wp-slimstat-reports.php:1749
2869
  msgid "c-km"
2870
  msgstr "Comores"
2871
 
2872
  # Congo
2873
+ #: ../admin/view/wp-slimstat-reports.php:1749
2874
  msgid "c-cg"
2875
  msgstr "Congo"
2876
 
2877
  # The Democratic Republic of the Congo
2878
+ #: ../admin/view/wp-slimstat-reports.php:1749
2879
  msgid "c-cd"
2880
  msgstr "République Démocratique du Congo"
2881
 
2882
  # Costa Rica
2883
+ #: ../admin/view/wp-slimstat-reports.php:1749
2884
  msgid "c-cr"
2885
  msgstr "Costa Rica"
2886
 
2887
  # Côte d'Ivoire
2888
+ #: ../admin/view/wp-slimstat-reports.php:1749
2889
  msgid "c-ci"
2890
  msgstr "Côte d'Ivoire"
2891
 
2892
  # Croatia
2893
+ #: ../admin/view/wp-slimstat-reports.php:1749
2894
  msgid "c-hr"
2895
  msgstr "Croatie"
2896
 
2897
  # Cuba
2898
+ #: ../admin/view/wp-slimstat-reports.php:1749
2899
  msgid "c-cu"
2900
  msgstr "Cuba"
2901
 
2902
  # Cyprus
2903
+ #: ../admin/view/wp-slimstat-reports.php:1749
2904
  msgid "c-cy"
2905
  msgstr "Chypre"
2906
 
2907
  # Czech Republic
2908
+ #: ../admin/view/wp-slimstat-reports.php:1749
2909
  msgid "c-cz"
2910
  msgstr "République tchèque"
2911
 
2912
  # Denmark
2913
+ #: ../admin/view/wp-slimstat-reports.php:1749
2914
  msgid "c-dk"
2915
  msgstr "Danemark"
2916
 
2917
  # Djibouti
2918
+ #: ../admin/view/wp-slimstat-reports.php:1749
2919
  msgid "c-dj"
2920
  msgstr "Djibouti"
2921
 
2922
  # Dominica
2923
+ #: ../admin/view/wp-slimstat-reports.php:1749
2924
  msgid "c-dm"
2925
  msgstr "Dominique"
2926
 
2927
  # Dominican Republic
2928
+ #: ../admin/view/wp-slimstat-reports.php:1749
2929
  msgid "c-do"
2930
  msgstr "République dominicaine"
2931
 
2932
  # Ecuador
2933
+ #: ../admin/view/wp-slimstat-reports.php:1749
2934
  msgid "c-ec"
2935
  msgstr "Équateur"
2936
 
2937
  # Egypt
2938
+ #: ../admin/view/wp-slimstat-reports.php:1749
2939
  msgid "c-eg"
2940
  msgstr "Égypte"
2941
 
2942
  # El Salvador
2943
+ #: ../admin/view/wp-slimstat-reports.php:1749
2944
  msgid "c-sv"
2945
  msgstr "El Salvador"
2946
 
2947
  # Equatorial Guinea
2948
+ #: ../admin/view/wp-slimstat-reports.php:1749
2949
  msgid "c-gq"
2950
  msgstr "Guinée équatoriale"
2951
 
2952
  # Eritrea
2953
+ #: ../admin/view/wp-slimstat-reports.php:1749
2954
  msgid "c-er"
2955
  msgstr "Érythrée"
2956
 
2957
  # Estonia
2958
+ #: ../admin/view/wp-slimstat-reports.php:1749
2959
  msgid "c-ee"
2960
  msgstr "Estonie"
2961
 
2962
  # Ethiopia
2963
+ #: ../admin/view/wp-slimstat-reports.php:1749
2964
  msgid "c-et"
2965
  msgstr "Éthiopie"
2966
 
2967
  # Faroe Islands
2968
+ #: ../admin/view/wp-slimstat-reports.php:1749
2969
  msgid "c-fo"
2970
  msgstr "Îles Féroé"
2971
 
2972
  # Falkland Islands (Malvinas)
2973
+ #: ../admin/view/wp-slimstat-reports.php:1749
2974
  msgid "c-fk"
2975
  msgstr "Îles Falkland (Malvinas)"
2976
 
2977
  # Fiji
2978
+ #: ../admin/view/wp-slimstat-reports.php:1749
2979
  msgid "c-fj"
2980
  msgstr "Fidji"
2981
 
2982
  # Finland
2983
+ #: ../admin/view/wp-slimstat-reports.php:1749
2984
  msgid "c-fi"
2985
  msgstr "Finlande"
2986
 
2987
  # France
2988
+ #: ../admin/view/wp-slimstat-reports.php:1749
2989
  msgid "c-fr"
2990
  msgstr "France"
2991
 
2992
  # French Guiana
2993
+ #: ../admin/view/wp-slimstat-reports.php:1749
2994
  msgid "c-gf"
2995
  msgstr "Guyane française"
2996
 
2997
  # Gabon
2998
+ #: ../admin/view/wp-slimstat-reports.php:1749
2999
  msgid "c-ga"
3000
  msgstr "Gabon"
3001
 
3002
  # Gambia
3003
+ #: ../admin/view/wp-slimstat-reports.php:1749
3004
  msgid "c-gm"
3005
  msgstr "Gambie"
3006
 
3007
  # Georgia
3008
+ #: ../admin/view/wp-slimstat-reports.php:1749
3009
  msgid "c-ge"
3010
  msgstr "Géorgie"
3011
 
3012
  # Germany
3013
+ #: ../admin/view/wp-slimstat-reports.php:1749
3014
  msgid "c-de"
3015
  msgstr "Allemagne"
3016
 
3017
  # Ghana
3018
+ #: ../admin/view/wp-slimstat-reports.php:1749
3019
  msgid "c-gh"
3020
  msgstr "Ghana"
3021
 
3022
  # Greece
3023
+ #: ../admin/view/wp-slimstat-reports.php:1749
3024
  msgid "c-gr"
3025
  msgstr "Grèce"
3026
 
3027
  # Greenland
3028
+ #: ../admin/view/wp-slimstat-reports.php:1749
3029
  msgid "c-gl"
3030
  msgstr "Groenland"
3031
 
3032
  # Grenada
3033
+ #: ../admin/view/wp-slimstat-reports.php:1749
3034
  msgid "c-gd"
3035
  msgstr "Grenade"
3036
 
3037
  # Guadeloupe
3038
+ #: ../admin/view/wp-slimstat-reports.php:1749
3039
  msgid "c-gp"
3040
  msgstr "Guadeloupe"
3041
 
3042
  # Guatemala
3043
+ #: ../admin/view/wp-slimstat-reports.php:1749
3044
  msgid "c-gt"
3045
  msgstr "Guatemala"
3046
 
3047
  # Guinea
3048
+ #: ../admin/view/wp-slimstat-reports.php:1749
3049
  msgid "c-gn"
3050
  msgstr "Guinée"
3051
 
3052
  # Guinea-Bissau
3053
+ #: ../admin/view/wp-slimstat-reports.php:1749
3054
  msgid "c-gw"
3055
  msgstr "Guinée-Bissau"
3056
 
3057
  # Guyana
3058
+ #: ../admin/view/wp-slimstat-reports.php:1749
3059
  msgid "c-gy"
3060
  msgstr "Guyana"
3061
 
3062
  # Haiti
3063
+ #: ../admin/view/wp-slimstat-reports.php:1749
3064
  msgid "c-ht"
3065
  msgstr "Haïti"
3066
 
3067
  # Honduras
3068
+ #: ../admin/view/wp-slimstat-reports.php:1749
3069
  msgid "c-hn"
3070
  msgstr "Honduras"
3071
 
3072
  # Hong Kong
3073
+ #: ../admin/view/wp-slimstat-reports.php:1749
3074
  msgid "c-hk"
3075
  msgstr "Hong Kong"
3076
 
3077
  # Hungary
3078
+ #: ../admin/view/wp-slimstat-reports.php:1749
3079
  msgid "c-hu"
3080
  msgstr "Hongrie"
3081
 
3082
  # Iceland
3083
+ #: ../admin/view/wp-slimstat-reports.php:1749
3084
  msgid "c-is"
3085
  msgstr "Islande"
3086
 
3087
  # India
3088
+ #: ../admin/view/wp-slimstat-reports.php:1749
3089
  msgid "c-in"
3090
  msgstr "Inde"
3091
 
3092
  # Indonesia
3093
+ #: ../admin/view/wp-slimstat-reports.php:1749
3094
  msgid "c-id"
3095
  msgstr "Indonésie"
3096
 
3097
  # Islamic Republic of Iran
3098
+ #: ../admin/view/wp-slimstat-reports.php:1749
3099
  msgid "c-ir"
3100
  msgstr "République islamique d'Iran"
3101
 
3102
  # Iraq
3103
+ #: ../admin/view/wp-slimstat-reports.php:1749
3104
  msgid "c-iq"
3105
  msgstr "Irak"
3106
 
3107
  # Ireland
3108
+ #: ../admin/view/wp-slimstat-reports.php:1749
3109
  msgid "c-ie"
3110
  msgstr "Irlande"
3111
 
3112
  # Israel
3113
+ #: ../admin/view/wp-slimstat-reports.php:1749
3114
  msgid "c-il"
3115
  msgstr "Israël"
3116
 
3117
  # Italy
3118
+ #: ../admin/view/wp-slimstat-reports.php:1749
3119
  msgid "c-it"
3120
  msgstr "Italie"
3121
 
3122
  # Jamaica
3123
+ #: ../admin/view/wp-slimstat-reports.php:1749
3124
  msgid "c-jm"
3125
  msgstr "Jamaïque"
3126
 
3127
  # Japan
3128
+ #: ../admin/view/wp-slimstat-reports.php:1749
3129
  msgid "c-jp"
3130
  msgstr "Japon"
3131
 
3132
  # Jordan
3133
+ #: ../admin/view/wp-slimstat-reports.php:1749
3134
  msgid "c-jo"
3135
  msgstr "Jordanie"
3136
 
3137
  # Kazakhstan
3138
+ #: ../admin/view/wp-slimstat-reports.php:1749
3139
  msgid "c-kz"
3140
  msgstr "Kazakhstan"
3141
 
3142
  # Kenya
3143
+ #: ../admin/view/wp-slimstat-reports.php:1749
3144
  msgid "c-ke"
3145
  msgstr "Kenya"
3146
 
3147
  # Nauru
3148
+ #: ../admin/view/wp-slimstat-reports.php:1749
3149
  msgid "c-nr"
3150
  msgstr "Nauru"
3151
 
3152
  # Democratic People's Republic of Korea
3153
+ #: ../admin/view/wp-slimstat-reports.php:1749
3154
  msgid "c-kp"
3155
  msgstr "République populaire démocratique de Corée"
3156
 
3157
  # Republic of Korea
3158
+ #: ../admin/view/wp-slimstat-reports.php:1749
3159
  msgid "c-kr"
3160
  msgstr "République de Corée"
3161
 
3162
+ #: ../admin/view/wp-slimstat-reports.php:1749
3163
  msgid "c-kv"
3164
  msgstr "Kossovo"
3165
 
3166
  # Kuwait
3167
+ #: ../admin/view/wp-slimstat-reports.php:1749
3168
  msgid "c-kw"
3169
  msgstr "Koweït"
3170
 
3171
  # Kyrgyzstan
3172
+ #: ../admin/view/wp-slimstat-reports.php:1749
3173
  msgid "c-kg"
3174
  msgstr "Kirghizistan"
3175
 
3176
  # Lao People's Democratic Republic
3177
+ #: ../admin/view/wp-slimstat-reports.php:1749
3178
  msgid "c-la"
3179
  msgstr "République démocratique populaire lao"
3180
 
3181
  # Latvia
3182
+ #: ../admin/view/wp-slimstat-reports.php:1749
3183
  msgid "c-lv"
3184
  msgstr "Lettonie"
3185
 
3186
  # Lebanon
3187
+ #: ../admin/view/wp-slimstat-reports.php:1749
3188
  msgid "c-lb"
3189
  msgstr "Liban"
3190
 
3191
  # Lesotho
3192
+ #: ../admin/view/wp-slimstat-reports.php:1749
3193
  msgid "c-ls"
3194
  msgstr "Lesotho"
3195
 
3196
  # Liberia
3197
+ #: ../admin/view/wp-slimstat-reports.php:1749
3198
  msgid "c-lr"
3199
  msgstr "Libéria"
3200
 
3201
  # Libyan Arab Jamahiriya
3202
+ #: ../admin/view/wp-slimstat-reports.php:1749
3203
  msgid "c-ly"
3204
  msgstr "Jamahiriya arabe libyenne"
3205
 
3206
  # Liechtenstein
3207
+ #: ../admin/view/wp-slimstat-reports.php:1749
3208
  msgid "c-li"
3209
  msgstr "Liechtenstein"
3210
 
3211
  # Lithuania
3212
+ #: ../admin/view/wp-slimstat-reports.php:1749
3213
  msgid "c-lt"
3214
  msgstr "Lituanie"
3215
 
3216
  # Luxembourg
3217
+ #: ../admin/view/wp-slimstat-reports.php:1749
3218
  msgid "c-lu"
3219
  msgstr "Luxembourg"
3220
 
3221
  # The Former Yugoslav Republic of Macedonia
3222
+ #: ../admin/view/wp-slimstat-reports.php:1749
3223
  msgid "c-mk"
3224
  msgstr "Ex-république yougoslave de Macédoine"
3225
 
3226
  # Madagascar
3227
+ #: ../admin/view/wp-slimstat-reports.php:1749
3228
  msgid "c-mg"
3229
  msgstr "Madagascar"
3230
 
3231
  # Malawi
3232
+ #: ../admin/view/wp-slimstat-reports.php:1749
3233
  msgid "c-mw"
3234
  msgstr "Malawi"
3235
 
3236
  # Malaysia
3237
+ #: ../admin/view/wp-slimstat-reports.php:1749
3238
  msgid "c-my"
3239
  msgstr "Malaisie"
3240
 
3241
  # Mali
3242
+ #: ../admin/view/wp-slimstat-reports.php:1749
3243
  msgid "c-ml"
3244
  msgstr "Mali"
3245
 
3246
  # Malta
3247
+ #: ../admin/view/wp-slimstat-reports.php:1749
3248
  msgid "c-mt"
3249
  msgstr "Malte"
3250
 
3251
  # Martinique
3252
+ #: ../admin/view/wp-slimstat-reports.php:1749
3253
  msgid "c-mq"
3254
  msgstr "Martinique"
3255
 
3256
  # Mauritania
3257
+ #: ../admin/view/wp-slimstat-reports.php:1749
3258
  msgid "c-mr"
3259
  msgstr "Mauritanie"
3260
 
3261
  # Mauritius
3262
+ #: ../admin/view/wp-slimstat-reports.php:1749
3263
  msgid "c-mu"
3264
  msgstr "Maurice"
3265
 
3266
  # Mexico
3267
+ #: ../admin/view/wp-slimstat-reports.php:1749
3268
  msgid "c-mx"
3269
  msgstr "Mexique"
3270
 
3271
  # Moldova
3272
+ #: ../admin/view/wp-slimstat-reports.php:1749
3273
  msgid "c-md"
3274
  msgstr "République de Moldova"
3275
 
3276
  # Mongolia
3277
+ #: ../admin/view/wp-slimstat-reports.php:1749
3278
  msgid "c-mn"
3279
  msgstr "Mongolie"
3280
 
3281
  # Montenegro
3282
+ #: ../admin/view/wp-slimstat-reports.php:1749
3283
  msgid "c-me"
3284
  msgstr "Monténégro"
3285
 
3286
  # Montserrat
3287
+ #: ../admin/view/wp-slimstat-reports.php:1749
3288
  msgid "c-ms"
3289
  msgstr "Montserrat"
3290
 
3291
  # Morocco
3292
+ #: ../admin/view/wp-slimstat-reports.php:1749
3293
  msgid "c-ma"
3294
  msgstr "Maroc"
3295
 
3296
  # Mozambique
3297
+ #: ../admin/view/wp-slimstat-reports.php:1749
3298
  msgid "c-mz"
3299
  msgstr "Mozambique"
3300
 
3301
  # Myanmar
3302
+ #: ../admin/view/wp-slimstat-reports.php:1749
3303
  msgid "c-mm"
3304
  msgstr "Myanmar"
3305
 
3306
  # Namibia
3307
+ #: ../admin/view/wp-slimstat-reports.php:1749
3308
  msgid "c-na"
3309
  msgstr "Namibie"
3310
 
3311
  # Nepal
3312
+ #: ../admin/view/wp-slimstat-reports.php:1749
3313
  msgid "c-np"
3314
  msgstr "Népal"
3315
 
3316
  # Netherlands
3317
+ #: ../admin/view/wp-slimstat-reports.php:1749
3318
  msgid "c-nl"
3319
  msgstr "Pays-bas"
3320
 
3321
  # New Caledonia
3322
+ #: ../admin/view/wp-slimstat-reports.php:1749
3323
  msgid "c-nc"
3324
  msgstr "Nouvelle-Calédonie"
3325
 
3326
  # New Zealand
3327
+ #: ../admin/view/wp-slimstat-reports.php:1749
3328
  msgid "c-nz"
3329
  msgstr "Nouvelle-Zélande"
3330
 
3331
  # Nicaragua
3332
+ #: ../admin/view/wp-slimstat-reports.php:1749
3333
  msgid "c-ni"
3334
  msgstr "Nicaragua"
3335
 
3336
  # Niger
3337
+ #: ../admin/view/wp-slimstat-reports.php:1749
3338
  msgid "c-ne"
3339
  msgstr "Niger"
3340
 
3341
  # Nigeria
3342
+ #: ../admin/view/wp-slimstat-reports.php:1749
3343
  msgid "c-ng"
3344
  msgstr "Nigéria"
3345
 
3346
  # Norway
3347
+ #: ../admin/view/wp-slimstat-reports.php:1749
3348
  msgid "c-no"
3349
  msgstr "Norvège"
3350
 
3351
  # Oman
3352
+ #: ../admin/view/wp-slimstat-reports.php:1749
3353
  msgid "c-om"
3354
  msgstr "Oman"
3355
 
3356
  # Pakistan
3357
+ #: ../admin/view/wp-slimstat-reports.php:1749
3358
  msgid "c-pk"
3359
  msgstr "Pakistan"
3360
 
3361
  # Palau
3362
+ #: ../admin/view/wp-slimstat-reports.php:1749
3363
  msgid "c-pw"
3364
  msgstr "Palaos"
3365
 
3366
  # Occupied Palestinian Territory
3367
+ #: ../admin/view/wp-slimstat-reports.php:1749
3368
  msgid "c-ps"
3369
  msgstr "Territoire palestinien occupé"
3370
 
3371
  # Panama
3372
+ #: ../admin/view/wp-slimstat-reports.php:1749
3373
  msgid "c-pa"
3374
  msgstr "Panama"
3375
 
3376
  # Papua New Guinea
3377
+ #: ../admin/view/wp-slimstat-reports.php:1749
3378
  msgid "c-pg"
3379
  msgstr "Papouasie-Nouvelle-Guinée"
3380
 
3381
  # Paraguay
3382
+ #: ../admin/view/wp-slimstat-reports.php:1749
3383
  msgid "c-py"
3384
  msgstr "Paraguay"
3385
 
3386
  # Peru
3387
+ #: ../admin/view/wp-slimstat-reports.php:1749
3388
  msgid "c-pe"
3389
  msgstr "Pérou"
3390
 
3391
  # Philippines
3392
+ #: ../admin/view/wp-slimstat-reports.php:1749
3393
  msgid "c-ph"
3394
  msgstr "Philippines"
3395
 
3396
  # Poland
3397
+ #: ../admin/view/wp-slimstat-reports.php:1749
3398
  msgid "c-pl"
3399
  msgstr "Pologne"
3400
 
3401
  # Portugal
3402
+ #: ../admin/view/wp-slimstat-reports.php:1749
3403
  msgid "c-pt"
3404
  msgstr "Portugal"
3405
 
3406
  # Puerto Rico
3407
+ #: ../admin/view/wp-slimstat-reports.php:1749
3408
  msgid "c-pr"
3409
  msgstr "Porto Rico"
3410
 
3411
  # Qatar
3412
+ #: ../admin/view/wp-slimstat-reports.php:1749
3413
  msgid "c-qa"
3414
  msgstr "Qatar"
3415
 
3416
  # Réunion
3417
+ #: ../admin/view/wp-slimstat-reports.php:1749
3418
  msgid "c-re"
3419
  msgstr "Réunion"
3420
 
3421
  # Romania
3422
+ #: ../admin/view/wp-slimstat-reports.php:1749
3423
  msgid "c-ro"
3424
  msgstr "Roumanie"
3425
 
3426
  # Russian Federation
3427
+ #: ../admin/view/wp-slimstat-reports.php:1749
3428
  msgid "c-ru"
3429
  msgstr "Fédération de Russie"
3430
 
3431
  # Rwanda
3432
+ #: ../admin/view/wp-slimstat-reports.php:1749
3433
  msgid "c-rw"
3434
  msgstr "Rwanda"
3435
 
3436
  # Saint Kitts and Nevis
3437
+ #: ../admin/view/wp-slimstat-reports.php:1749
3438
  msgid "c-kn"
3439
  msgstr "Saint-Kitts-et-Nevis"
3440
 
3441
  # Saint Lucia
3442
+ #: ../admin/view/wp-slimstat-reports.php:1749
3443
  msgid "c-lc"
3444
  msgstr "Sainte-Lucie"
3445
 
3446
  # Saint Martin
3447
+ #: ../admin/view/wp-slimstat-reports.php:1749
3448
  msgid "c-mf"
3449
  msgstr "Saint-Martin"
3450
 
3451
  # Saint Vincent and the Grenadines
3452
+ #: ../admin/view/wp-slimstat-reports.php:1749
3453
  msgid "c-vc"
3454
  msgstr "Saint-Vincent-et-les Grenadines"
3455
 
3456
  # Samoa
3457
+ #: ../admin/view/wp-slimstat-reports.php:1749
3458
  msgid "c-ws"
3459
  msgstr "Samoa"
3460
 
3461
  # Sao Tome and Principe
3462
+ #: ../admin/view/wp-slimstat-reports.php:1749
3463
  msgid "c-st"
3464
  msgstr "Sao Tomé-et-Principe"
3465
 
3466
  # Saudi Arabia
3467
+ #: ../admin/view/wp-slimstat-reports.php:1749
3468
  msgid "c-sa"
3469
  msgstr "Arabie saoudite"
3470
 
3471
  # Senegal
3472
+ #: ../admin/view/wp-slimstat-reports.php:1749
3473
  msgid "c-sn"
3474
  msgstr "Sénégal"
3475
 
3476
  # Serbia
3477
+ #: ../admin/view/wp-slimstat-reports.php:1749
3478
  msgid "c-rs"
3479
  msgstr "Serbie"
3480
 
3481
  # Sierra Leone
3482
+ #: ../admin/view/wp-slimstat-reports.php:1749
3483
  msgid "c-sl"
3484
  msgstr "Sierra Leone"
3485
 
3486
  # Singapore
3487
+ #: ../admin/view/wp-slimstat-reports.php:1749
3488
  msgid "c-sg"
3489
  msgstr "Singapour"
3490
 
3491
  # Slovakia
3492
+ #: ../admin/view/wp-slimstat-reports.php:1749
3493
  msgid "c-sk"
3494
  msgstr "Slovaquie"
3495
 
3496
  # Slovenia
3497
+ #: ../admin/view/wp-slimstat-reports.php:1749
3498
  msgid "c-si"
3499
  msgstr "Slovénie"
3500
 
3501
  # Solomon Islands
3502
+ #: ../admin/view/wp-slimstat-reports.php:1749
3503
  msgid "c-sb"
3504
  msgstr "Îles Salomon"
3505
 
3506
  # Somalia
3507
+ #: ../admin/view/wp-slimstat-reports.php:1749
3508
  msgid "c-so"
3509
  msgstr "Somalie"
3510
 
3511
  # South Africa
3512
+ #: ../admin/view/wp-slimstat-reports.php:1749
3513
  msgid "c-za"
3514
  msgstr "Afrique du sud"
3515
 
3516
  # South Georgia and the South Sandwich Islands
3517
+ #: ../admin/view/wp-slimstat-reports.php:1749
3518
  msgid "c-gs"
3519
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
3520
 
3521
  # Spain
3522
+ #: ../admin/view/wp-slimstat-reports.php:1749
3523
  msgid "c-es"
3524
  msgstr "Espagne"
3525
 
3526
  # Sri Lanka
3527
+ #: ../admin/view/wp-slimstat-reports.php:1749
3528
  msgid "c-lk"
3529
  msgstr "Sri Lanka"
3530
 
3531
  # Seychelles
3532
+ #: ../admin/view/wp-slimstat-reports.php:1749
3533
  msgid "c-sc"
3534
  msgstr "Seychelles"
3535
 
3536
  # Sudan
3537
+ #: ../admin/view/wp-slimstat-reports.php:1749
3538
  msgid "c-sd"
3539
  msgstr "Soudan"
3540
 
3541
+ #: ../admin/view/wp-slimstat-reports.php:1749
3542
  msgid "c-ss"
3543
  msgstr "Soudan du Sud"
3544
 
3545
  # Suriname
3546
+ #: ../admin/view/wp-slimstat-reports.php:1749
3547
  msgid "c-sr"
3548
  msgstr "Suriname"
3549
 
3550
  # Svalbard and Jan Mayen
3551
+ #: ../admin/view/wp-slimstat-reports.php:1749
3552
  msgid "c-sj"
3553
  msgstr "Svalbard et île Jan Mayen"
3554
 
3555
  # Swaziland
3556
+ #: ../admin/view/wp-slimstat-reports.php:1749
3557
  msgid "c-sz"
3558
  msgstr "Swaziland"
3559
 
3560
  # Sweden
3561
+ #: ../admin/view/wp-slimstat-reports.php:1749
3562
  msgid "c-se"
3563
  msgstr "Suède"
3564
 
3565
  # Switzerland
3566
+ #: ../admin/view/wp-slimstat-reports.php:1749
3567
  msgid "c-ch"
3568
  msgstr "Suisse"
3569
 
3570
  # Syrian Arab Republic
3571
+ #: ../admin/view/wp-slimstat-reports.php:1749
3572
  msgid "c-sy"
3573
  msgstr "République arabe syrienne"
3574
 
3575
  # Taiwan, Province of China
3576
+ #: ../admin/view/wp-slimstat-reports.php:1749
3577
  msgid "c-tw"
3578
  msgstr "Taïwan, province de Chine"
3579
 
3580
  # Tajikistan
3581
+ #: ../admin/view/wp-slimstat-reports.php:1749
3582
  msgid "c-tj"
3583
  msgstr "Tadjikistan"
3584
 
3585
  # United Republic of Tanzania
3586
+ #: ../admin/view/wp-slimstat-reports.php:1749
3587
  msgid "c-tz"
3588
  msgstr "République-unie de Tanzanie"
3589
 
3590
  # Thailand
3591
+ #: ../admin/view/wp-slimstat-reports.php:1749
3592
  msgid "c-th"
3593
  msgstr "Thaïlande"
3594
 
3595
  # Timor-Leste
3596
+ #: ../admin/view/wp-slimstat-reports.php:1749
3597
  msgid "c-tl"
3598
  msgstr "Timor-Leste"
3599
 
3600
  # Togo
3601
+ #: ../admin/view/wp-slimstat-reports.php:1749
3602
  msgid "c-tg"
3603
  msgstr "Togo"
3604
 
3605
  # Tonga
3606
+ #: ../admin/view/wp-slimstat-reports.php:1749
3607
  msgid "c-to"
3608
  msgstr "Tonga"
3609
 
3610
  # Trinidad and Tobago
3611
+ #: ../admin/view/wp-slimstat-reports.php:1749
3612
  msgid "c-tt"
3613
  msgstr "Trinité-et-Tobago "
3614
 
3615
  # Tunisia
3616
+ #: ../admin/view/wp-slimstat-reports.php:1749
3617
  msgid "c-tn"
3618
  msgstr "Tunisie"
3619
 
3620
  # Turkey
3621
+ #: ../admin/view/wp-slimstat-reports.php:1749
3622
  msgid "c-tr"
3623
  msgstr "Turquie "
3624
 
3625
  # Turkmenistan
3626
+ #: ../admin/view/wp-slimstat-reports.php:1749
3627
  msgid "c-tm"
3628
  msgstr "Turkménistan"
3629
 
3630
  # Turks and Caicos Islands
3631
+ #: ../admin/view/wp-slimstat-reports.php:1749
3632
  msgid "c-tc"
3633
  msgstr "Îles Turks et Caïques"
3634
 
3635
  # Uganda
3636
+ #: ../admin/view/wp-slimstat-reports.php:1749
3637
  msgid "c-ug"
3638
  msgstr "Ouganda"
3639
 
3640
  # Ukraine
3641
+ #: ../admin/view/wp-slimstat-reports.php:1749
3642
  msgid "c-ua"
3643
  msgstr "Ukraine"
3644
 
3645
  # United Arab Emirates
3646
+ #: ../admin/view/wp-slimstat-reports.php:1749
3647
  msgid "c-ae"
3648
  msgstr "Émirats arabes unis"
3649
 
3650
  # United Kingdom
3651
+ #: ../admin/view/wp-slimstat-reports.php:1749
3652
  msgid "c-gb"
3653
  msgstr "Royaume-Uni"
3654
 
3655
  # United States
3656
+ #: ../admin/view/wp-slimstat-reports.php:1749
3657
  msgid "c-us"
3658
  msgstr "États-Unis"
3659
 
3660
  # Uruguay
3661
+ #: ../admin/view/wp-slimstat-reports.php:1749
3662
  msgid "c-uy"
3663
  msgstr "Uruguay"
3664
 
3665
  # Uzbekistan
3666
+ #: ../admin/view/wp-slimstat-reports.php:1749
3667
  msgid "c-uz"
3668
  msgstr "Ouzbékistan "
3669
 
3670
  # Vanuatu
3671
+ #: ../admin/view/wp-slimstat-reports.php:1749
3672
  msgid "c-vu"
3673
  msgstr "Vanuatu"
3674
 
3675
  # Venezuela
3676
+ #: ../admin/view/wp-slimstat-reports.php:1749
3677
  msgid "c-ve"
3678
  msgstr "République bolivarienne du Venezuela"
3679
 
3680
  # Viet Nam
3681
+ #: ../admin/view/wp-slimstat-reports.php:1749
3682
  msgid "c-vn"
3683
  msgstr "Viet Nam"
3684
 
3685
  # British Virgin Islands
3686
+ #: ../admin/view/wp-slimstat-reports.php:1749
3687
  msgid "c-vg"
3688
  msgstr "Îles vierges britanniques"
3689
 
3690
  # U.S. Virgin Islands
3691
+ #: ../admin/view/wp-slimstat-reports.php:1749
3692
  msgid "c-vi"
3693
  msgstr "Îles vierges des États-Unis"
3694
 
3695
  # Western Sahara
3696
+ #: ../admin/view/wp-slimstat-reports.php:1749
3697
  msgid "c-eh"
3698
  msgstr "Sahara occidental"
3699
 
3700
  # Yemen
3701
+ #: ../admin/view/wp-slimstat-reports.php:1749
3702
  msgid "c-ye"
3703
  msgstr "Yémen"
3704
 
3705
  # Zambia
3706
+ #: ../admin/view/wp-slimstat-reports.php:1749
3707
  msgid "c-zm"
3708
  msgstr "Zambie"
3709
 
3710
  # Zimbabwe
3711
+ #: ../admin/view/wp-slimstat-reports.php:1749
3712
  msgid "c-zw"
3713
  msgstr "Zimbabwe"
3714
 
3715
  # Guernsey
3716
+ #: ../admin/view/wp-slimstat-reports.php:1749
3717
  msgid "c-gg"
3718
  msgstr "Guernesey"
3719
 
3720
  # Jersey
3721
+ #: ../admin/view/wp-slimstat-reports.php:1749
3722
  msgid "c-je"
3723
  msgstr "Jersey"
3724
 
3725
  # Isle of Man
3726
+ #: ../admin/view/wp-slimstat-reports.php:1749
3727
  msgid "c-im"
3728
  msgstr "Île de Man"
3729
 
3730
  # Maldives
3731
+ #: ../admin/view/wp-slimstat-reports.php:1749
3732
  msgid "c-mv"
3733
  msgstr "Maldives"
3734
 
3735
  # European Union
3736
+ #: ../admin/view/wp-slimstat-reports.php:1750
3737
  msgid "c-eu"
3738
  msgstr "Union européenne"
3739
 
3740
+ #: ../admin/view/wp-slimstat-reports.php:1827
3741
  msgid "src"
3742
  msgstr "src"
3743
 
3744
+ #: ../admin/view/wp-slimstat-reports.php:1831
3745
  msgid "serp"
3746
  msgstr "serp"
3747
 
3748
+ #: ../admin/view/wp-slimstat-reports.php:1839
3749
  msgid "Go to the referring page"
3750
  msgstr "Aller sur la page référente"
3751
 
3752
+ #: ../admin/view/wp-slimstat-reports.php:1861
3753
  msgid "Remove filter for"
3754
  msgstr "Enlever le filtre pour"
3755
 
3756
+ #: ../admin/view/wp-slimstat-reports.php:1865
3757
  msgid "Save"
3758
  msgstr ""
3759
 
3760
+ #: ../admin/view/wp-slimstat-reports.php:1868
3761
  msgid "Reset All"
3762
  msgstr "Réinitialiser l'ensemble"
3763
 
3764
+ #: ../admin/view/wp-slimstat-reports.php:1872
3765
  msgid "Current filters:"
3766
  msgstr "Filtres actifs :"
3767
 
3768
+ #: ../admin/wp-slimstat-admin.php:82
3769
+ msgid "Access Log"
3770
+ msgstr ""
3771
+
3772
+ #: ../admin/wp-slimstat-admin.php:88
3773
+ msgid "Overview"
3774
+ msgstr "Vue générale"
3775
+
3776
+ #: ../admin/wp-slimstat-admin.php:94
3777
+ msgid "Audience"
3778
+ msgstr "Audience"
3779
 
3780
+ #: ../admin/wp-slimstat-admin.php:100
3781
+ msgid "Site Analysis"
3782
+ msgstr "Analyse du site"
3783
+
3784
+ #: ../admin/wp-slimstat-admin.php:118
3785
  #, fuzzy
3786
  msgid "Customize"
3787
  msgstr "Personnaliser le style CSS"
3788
 
3789
+ #: ../admin/wp-slimstat-admin.php:130
3790
+ #, fuzzy
3791
+ msgid "WordPress Dashboard"
3792
+ msgstr "Intégration WordPress"
3793
+
3794
+ #: ../admin/wp-slimstat-admin.php:136
3795
+ #, fuzzy
3796
+ msgid "Inactive Reports"
3797
+ msgstr "Réinitialiser les rapports"
3798
+
3799
+ #: ../admin/wp-slimstat-admin.php:562
3800
+ msgid "SlimStat"
3801
+ msgstr "SlimStat"
3802
+
3803
+ #: ../admin/wp-slimstat-admin.php:620
3804
+ #, fuzzy
3805
+ msgid "Slimstat"
3806
+ msgstr "SlimStat"
3807
+
3808
+ #: ../admin/wp-slimstat-admin.php:709
3809
  #, fuzzy
3810
  msgid "Pageviews in the last "
3811
  msgstr "Pages durant les 365 derniers jours"
3812
 
3813
+ #: ../admin/wp-slimstat-admin.php:712
3814
  #, fuzzy
3815
  msgid "Unique IPs in the last "
3816
  msgstr "Intervalle unique"
3817
 
3818
+ #: ../admin/wp-slimstat-admin.php:766
3819
  msgid "Show on screen"
3820
  msgstr "Montrer à l'écran"
3821
 
3822
+ #: ../admin/wp-slimstat-admin.php:847
3823
  msgid "Already saved"
3824
  msgstr ""
3825
 
3826
+ #: ../admin/wp-slimstat-admin.php:855
3827
  msgid "Saved"
3828
  msgstr ""
3829
 
3830
+ #: ../admin/wp-slimstat-admin.php:875
3831
  #, fuzzy
3832
  msgid "Delete this filter"
3833
  msgstr "Filtrer les pages vues pour que"
3834
 
3835
+ #: ../admin/wp-slimstat-admin.php:919
3836
  msgid "There was an error updating the following options:"
3837
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
3838
 
3839
+ #: ../admin/wp-slimstat-admin.php:922
3840
  msgid "Your changes have been saved."
3841
  msgstr "Vos réglages ont bien été mis à jour"
3842
 
3843
+ #: ../admin/wp-slimstat-admin.php:945
3844
  msgid "Save Changes"
3845
  msgstr "Enregistrer les modifications"
3846
 
3847
+ #: ../admin/wp-slimstat-admin.php:961
3848
  msgid "Definitions"
3849
  msgstr "Définitions"
3850
 
3851
+ #: ../admin/wp-slimstat-admin.php:964
3852
  msgid "Pageview"
3853
  msgstr "Page vue"
3854
 
3855
+ #: ../admin/wp-slimstat-admin.php:964
3856
  msgid ""
3857
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3858
  "with a \"hit\", which refers to a request for any file from a web server. "
3863
  "d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
3864
  "code de traçage est exécuté"
3865
 
3866
+ #: ../admin/wp-slimstat-admin.php:965
3867
  msgid "(Human) Visit"
3868
  msgstr "Visiteurs humains"
3869
 
3870
+ #: ../admin/wp-slimstat-admin.php:965
3871
  msgid ""
3872
  "A period of interaction between a visitor's browser and your website, ending "
3873
  "when the browser is closed or when the user has been inactive on that site "
3877
  "Web se terminant lorsque le navigateur est fermé ou lorsque l'utilisateur "
3878
  "est inactif sur ce site depuis 30 minutes"
3879
 
3880
+ #: ../admin/wp-slimstat-admin.php:966
3881
  msgid ""
3882
  "Any user who has left a comment on your blog, and is thus identified by "
3883
  "Wordpress as a returning visitor"
3885
  "Un utilisateur qui a laissé un commentaire sur votre blog et est ainsi "
3886
  "identifié par Wordpress comme un visiteur qui a déjà visité votre site"
3887
 
3888
+ #: ../admin/wp-slimstat-admin.php:967
3889
  msgid "Unique IP"
3890
  msgstr "IP uniques"
3891
 
3892
+ #: ../admin/wp-slimstat-admin.php:967
3893
  msgid ""
3894
  "Used to differentiate between multiple requests to download a file from one "
3895
  "internet address (IP) and requests originating from many distinct addresses; "
3902
  "Internet de la provenance d'une consultation, elle est utile, mais pas "
3903
  "parfaite"
3904
 
3905
+ #: ../admin/wp-slimstat-admin.php:968
3906
  msgid ""
3907
  "the originating IP address of a client connecting to a web server through an "
3908
  "HTTP proxy or load balancer"
3910
  "l'adresse IP d'origine d'un client qui se connecte à un serveur Web via un "
3911
  "proxy HTTP ou équilibreur de charge"
3912
 
3913
+ #: ../admin/wp-slimstat-admin.php:969
3914
  msgid "Direct Traffic"
3915
  msgstr "Trafic direct"
3916
 
3917
+ #: ../admin/wp-slimstat-admin.php:969
3918
  msgid ""
3919
  "All those people showing up to your Web site by typing in the URL of your "
3920
  "Web site coming or from a bookmark; some people also call this \"default "
3924
  "votre site Web ou qui viennent à partir d'un signet, certaines personnes "
3925
  "appellent également cela \"trafic par défaut \" ou \"trafic ambiant \""
3926
 
3927
+ #: ../admin/wp-slimstat-admin.php:970
3928
  msgid "Search Engine"
3929
  msgstr "Moteur de recherche"
3930
 
3931
+ #: ../admin/wp-slimstat-admin.php:970
3932
  msgid ""
3933
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3934
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3936
  "Google, Yahoo, MSN, Ask, et autres; cet item comprendra à la fois votre "
3937
  "trafic rémunéré (PPC/SEM) ainsi que votre trafic organique, prenez en note"
3938
 
3939
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
3940
  msgid "Keywords used by your visitors to find your website on a search engine"
3941
  msgstr ""
3942
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
3943
  "de recherche"
3944
 
3945
+ #: ../admin/wp-slimstat-admin.php:972
3946
  msgid "SERP"
3947
  msgstr "SERP"
3948
 
3949
+ #: ../admin/wp-slimstat-admin.php:972
3950
  msgid ""
3951
  "Short for search engine results page, the Web page that a search engine "
3952
  "returns with the results of its search. The value shown represents your rank "
3956
  "recherche renvoie les résultats de sa recherche. La valeur indiquée "
3957
  "correspond à votre classement (ou la position) dans la liste des résultats"
3958
 
3959
+ #: ../admin/wp-slimstat-admin.php:973
3960
  msgid ""
3961
  "Any program used for accessing a website; this includes browsers, robots, "
3962
  "spiders and any other program that was used to retrieve information from the "
3966
  "navigateurs, robots, spiders et tout autre programme qui a été utilisé pour "
3967
  "extraire des informations du site"
3968
 
3969
+ #: ../admin/wp-slimstat-admin.php:974
3970
  msgid ""
3971
  "A link from one domain to another is said to be outbound from its source "
3972
  "anchor and inbound to its target. This report lists all the links to other "
3976
  "sa cible. Ce rapport répertorie tous les liens vers d'autres sites suivis "
3977
  "par vos visiteurs."
3978
 
3979
+ #: ../admin/wp-slimstat-admin.php:981
3980
  msgid "Basic Filters"
3981
  msgstr "Filtres de base"
3982
 
3983
+ #: ../admin/wp-slimstat-admin.php:984
3984
  msgid "User agent (Firefox, Chrome, ...)"
3985
  msgstr "User agent (Firefox, Chrome, ...)"
3986
 
3987
+ #: ../admin/wp-slimstat-admin.php:985
3988
  msgid "2-letter code (us, ru, de, it, ...)"
3989
  msgstr "code pays à 2 lettres (us, ru, de, it, ...)"
3990
 
3991
+ #: ../admin/wp-slimstat-admin.php:986
3992
  msgid "IP"
3993
  msgstr "IP"
3994
 
3995
+ #: ../admin/wp-slimstat-admin.php:986
3996
  msgid "Visitor's public IP address"
3997
  msgstr " Adresse IP publique du visiteur"
3998
 
3999
+ #: ../admin/wp-slimstat-admin.php:988
4000
  msgid ""
4001
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4002
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
4006
  "microsoft.com/en-us/library/ee825488(v=cs.20).aspx\">language culture page</"
4007
  "a> (première colonne) pour plus d'informations"
4008
 
4009
+ #: ../admin/wp-slimstat-admin.php:989
4010
  msgid ""
4011
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4012
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
4016
  "référez-vous à <a target=\"_blank\" href=\"http://php.net/manual/en/function."
4017
  "get-browser.php\">cette page de manuel </a> pour plus d'informations"
4018
 
4019
+ #: ../admin/wp-slimstat-admin.php:990
4020
  msgid "URL accessed on your site"
4021
  msgstr "URL accessible sur votre site"
4022
 
4023
+ #: ../admin/wp-slimstat-admin.php:991
4024
  msgid "Complete address of the referrer page"
4025
  msgstr "Adresse complète de la page référente"
4026
 
4027
+ #: ../admin/wp-slimstat-admin.php:992
4028
+ msgid "Visitor's Name"
4029
+ msgstr "le nom des visiteurs"
4030
+
4031
+ #: ../admin/wp-slimstat-admin.php:992
4032
  msgid ""
4033
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4034
  "comment"
4036
  "Les noms des visiteurs selon le cookie enregistré par Wordpress, après avoir "
4037
  "laissé un commentaire"
4038
 
4039
+ #: ../admin/wp-slimstat-admin.php:1000
4040
  msgid "Advanced Filters"
4041
  msgstr "Filtres Avancés"
4042
 
4043
+ #: ../admin/wp-slimstat-admin.php:1003
4044
  msgid "user agent version (9.0, 11, ...)"
4045
  msgstr "user agent version (9.0, 11, ...)"
4046
 
4047
+ #: ../admin/wp-slimstat-admin.php:1004
4048
  msgid ""
4049
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4050
  "all others"
4052
  "1 = moteur de recherche, 2 = appareil mobile, 3 = lecteur de flux "
4053
  "(syndication) , 0 = tous les autres"
4054
 
4055
+ #: ../admin/wp-slimstat-admin.php:1005
4056
  msgid "Pageview Attributes"
4057
  msgstr "l'attribut des Pages Vues"
4058
 
4059
+ #: ../admin/wp-slimstat-admin.php:1005
4060
  msgid ""
4061
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4062
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4067
  "Link_prefetching_FAQ\"> préchargement des liens</a> ou d'autres techniques "
4068
  "similaires"
4069
 
4070
+ #: ../admin/wp-slimstat-admin.php:1006
4071
  msgid "author associated to that post/page when the resource was accessed"
4072
  msgstr "auteur associé à cet article/page lorsque la ressource est accessible"
4073
 
4074
+ #: ../admin/wp-slimstat-admin.php:1007
4075
  msgid "ID of the category/term associated to the resource, when available"
4076
  msgstr "ID de la catégorie/terme associée à la ressource, lorsqu'il y en a"
4077
 
4078
+ #: ../admin/wp-slimstat-admin.php:1008
4079
  msgid "visitor's originating IP address, if available"
4080
  msgstr "adresse IP d'origine du visiteur, s'il est disponible"
4081
 
4082
+ #: ../admin/wp-slimstat-admin.php:1009
4083
  msgid ""
4084
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4085
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4093
  "\" href=\"http://codex.wordpress.org/Conditional_Tags\">Conditional Tags</a> "
4094
  "pour plus d'informations"
4095
 
4096
+ #: ../admin/wp-slimstat-admin.php:1010
4097
  msgid "Screen Resolution"
4098
  msgstr "la résolution de l'écran"
4099
 
4100
+ #: ../admin/wp-slimstat-admin.php:1010
4101
  msgid "viewport width and height (1024x768, 800x600, ...)"
4102
  msgstr "résolution de l'écran (1024x768, 800x600, ...)"
4103
 
4104
+ #: ../admin/wp-slimstat-admin.php:1011
4105
  msgid ""
4106
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4107
  "visitors"
4109
  "généralement utilisé en conjonction avec <em>n'est pas vide </em>, identifie "
4110
  "les visiteurs humains"
4111
 
4112
+ #: ../admin/wp-slimstat-admin.php:1012
4113
  msgid "Date Filters"
4114
  msgstr "Filtres de dates"
4115
 
4116
+ #: ../admin/wp-slimstat-admin.php:1012
4117
  msgid ""
4118
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4119
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4124
  "ex : jour = 1, mois = 1, année = vide, intervalle = -1 fixera un filtre "
4125
  "année à date)"
4126
 
4127
+ #: ../admin/wp-slimstat-admin.php:1013
4128
  msgid "SERP Position"
4129
  msgstr "Position SERP "
4130
 
4131
+ #: ../admin/wp-slimstat-admin.php:1013
4132
  msgid ""
4133
  "set the filter to Referer contains cd=N&, where N is the position you are "
4134
  "looking for"
4136
  "Réglez le filtre sur Référent contient cd=N&, où N est la position que vous "
4137
  "recherchez"
4138
 
4139
+ #: ../admin/wp-slimstat-admin.php:1040
4140
  msgid "Yes"
4141
  msgstr "Oui"
4142
 
4143
+ #: ../admin/wp-slimstat-admin.php:1041
4144
  msgid "No"
4145
  msgstr "Non"
4146
 
4147
+ #: ../admin/wp-slimstat-admin.php:1042
4148
  msgid "Site Specific"
4149
  msgstr "Spécificités du site"
4150
 
4177
  msgstr "BlackBerry OS"
4178
 
4179
  #: ../languages/dynamic_strings.php:11
4180
+ #, fuzzy
4181
+ msgid "centos"
4182
+ msgstr "Contenus récents"
4183
+
4184
+ #: ../languages/dynamic_strings.php:12
4185
  msgid "chromeos"
4186
  msgstr ""
4187
 
4188
+ #: ../languages/dynamic_strings.php:13
4189
+ msgid "commodore64"
4190
+ msgstr ""
4191
+
4192
  # Cygwin
4193
+ #: ../languages/dynamic_strings.php:14
4194
  msgid "cygwin"
4195
  msgstr "Cygwin"
4196
 
4197
  # Debian
4198
+ #: ../languages/dynamic_strings.php:15
4199
  msgid "debian"
4200
  msgstr "Debian"
4201
 
4202
  # Digital Unix
4203
+ #: ../languages/dynamic_strings.php:16
4204
  msgid "digital unix"
4205
  msgstr "Digital Unix"
4206
 
4207
+ #: ../languages/dynamic_strings.php:17
4208
+ msgid "fedora"
4209
+ msgstr ""
4210
+
4211
+ #: ../languages/dynamic_strings.php:18
4212
  msgid "firefoxos"
4213
  msgstr ""
4214
 
4215
  # freeBSD
4216
+ #: ../languages/dynamic_strings.php:19
4217
  msgid "freebsd"
4218
  msgstr "freeBSD"
4219
 
4220
+ #: ../languages/dynamic_strings.php:20
4221
+ msgid "gentoo"
4222
+ msgstr ""
4223
+
4224
  # HP-UX
4225
+ #: ../languages/dynamic_strings.php:21
4226
  msgid "hp-ux"
4227
  msgstr "HP-UX"
4228
 
4229
+ #: ../languages/dynamic_strings.php:22
4230
  msgid "ios"
4231
  msgstr "Apple iOS"
4232
 
4233
  # iPhone
4234
+ #: ../languages/dynamic_strings.php:23
4235
+ #, fuzzy
4236
+ msgid "iphone os"
4237
+ msgstr "iPhone"
4238
+
4239
+ # iPhone
4240
+ #: ../languages/dynamic_strings.php:24
4241
  msgid "iphone osx"
4242
  msgstr "iPhone"
4243
 
4244
  # IRIX
4245
+ #: ../languages/dynamic_strings.php:25
4246
  msgid "irix"
4247
  msgstr "IRIX"
4248
 
4249
  # Java
4250
+ #: ../languages/dynamic_strings.php:26
4251
  msgid "java"
4252
  msgstr "Java"
4253
 
4254
+ #: ../languages/dynamic_strings.php:27
4255
+ msgid "kanotix"
4256
+ msgstr ""
4257
+
4258
+ #: ../languages/dynamic_strings.php:28
4259
+ msgid "knoppix"
4260
+ msgstr ""
4261
+
4262
  # Linux
4263
+ #: ../languages/dynamic_strings.php:29
4264
  msgid "linux"
4265
  msgstr "Linux"
4266
 
4267
  # Mac
4268
+ #: ../languages/dynamic_strings.php:30
4269
  msgid "mac"
4270
  msgstr "Mac"
4271
 
4272
  # Mac 68K
4273
+ #: ../languages/dynamic_strings.php:31
4274
  msgid "mac68k"
4275
  msgstr "Mac 68K"
4276
 
4277
  # Mac OS X
4278
+ #: ../languages/dynamic_strings.php:32
4279
  msgid "macosx"
4280
  msgstr "Mac OS X"
4281
 
4282
  # Mac PowerPC
4283
+ #: ../languages/dynamic_strings.php:33
4284
  msgid "macppc"
4285
  msgstr "Mac PowerPC"
4286
 
4287
+ #: ../languages/dynamic_strings.php:34
4288
+ msgid "mandrake"
4289
+ msgstr ""
4290
+
4291
+ # Android
4292
+ #: ../languages/dynamic_strings.php:35
4293
+ #, fuzzy
4294
+ msgid "mandriva"
4295
+ msgstr "Android"
4296
+
4297
+ #: ../languages/dynamic_strings.php:36
4298
+ msgid "mepis"
4299
+ msgstr ""
4300
+
4301
+ # Spanish (Dominican Republic)
4302
+ #: ../languages/dynamic_strings.php:37
4303
+ #, fuzzy
4304
+ msgid "ms-dos"
4305
+ msgstr "Espagnol (République dominicaine)"
4306
+
4307
  # netBSD
4308
+ #: ../languages/dynamic_strings.php:38
4309
  msgid "netbsd"
4310
  msgstr "netBSD"
4311
 
4312
+ #: ../languages/dynamic_strings.php:39
4313
+ msgid "nintendo"
4314
+ msgstr ""
4315
+
4316
  # openBSD
4317
+ #: ../languages/dynamic_strings.php:40
4318
  msgid "openbsd"
4319
  msgstr "openBSD"
4320
 
4321
  # openVMS
4322
+ #: ../languages/dynamic_strings.php:41
4323
  msgid "openvms"
4324
  msgstr "openVMS"
4325
 
4326
  # IBM OS/2
4327
+ #: ../languages/dynamic_strings.php:42
4328
  msgid "os/2"
4329
  msgstr "IBM OS/2"
4330
 
4331
  # Palm
4332
+ #: ../languages/dynamic_strings.php:43
4333
  msgid "palm"
4334
  msgstr "Palm"
4335
 
4336
+ # Palm
4337
+ #: ../languages/dynamic_strings.php:44
4338
+ #, fuzzy
4339
+ msgid "palmos"
4340
+ msgstr "Palm"
4341
+
4342
+ # Linux
4343
+ #: ../languages/dynamic_strings.php:45
4344
+ #, fuzzy
4345
+ msgid "pclinuxos"
4346
+ msgstr "Linux"
4347
+
4348
+ #: ../languages/dynamic_strings.php:46
4349
+ msgid "playstation"
4350
+ msgstr ""
4351
+
4352
  # PowerTV
4353
+ #: ../languages/dynamic_strings.php:47
4354
  msgid "powertv"
4355
  msgstr "PowerTV"
4356
 
4357
+ #: ../languages/dynamic_strings.php:48
4358
+ msgid "redhat"
4359
+ msgstr ""
4360
+
4361
+ #: ../languages/dynamic_strings.php:49
4362
  msgid "rim os"
4363
  msgstr ""
4364
 
4365
  # Risc OS
4366
+ #: ../languages/dynamic_strings.php:50
4367
  msgid "risc os"
4368
  msgstr "Risc OS"
4369
 
4370
+ #: ../languages/dynamic_strings.php:51
4371
+ msgid "slackware"
4372
+ msgstr ""
4373
+
4374
  # Solaris
4375
+ #: ../languages/dynamic_strings.php:52
4376
  msgid "solaris"
4377
  msgstr "Solaris"
4378
 
4379
  # Sun OS
4380
+ #: ../languages/dynamic_strings.php:53
4381
  msgid "sunos"
4382
  msgstr "Sun OS"
4383
 
4384
+ #: ../languages/dynamic_strings.php:54
4385
+ msgid "suse"
4386
+ msgstr ""
4387
+
4388
  # Symbian OS
4389
+ #: ../languages/dynamic_strings.php:55
4390
  msgid "symbianos"
4391
  msgstr "Symbian OS"
4392
 
4393
+ #: ../languages/dynamic_strings.php:56
4394
  msgid "ubuntu"
4395
  msgstr ""
4396
 
4397
  # UNIX
4398
+ #: ../languages/dynamic_strings.php:57
4399
  msgid "unix"
4400
  msgstr "UNIX"
4401
 
4402
+ #: ../languages/dynamic_strings.php:58
4403
  msgid "unknown"
4404
  msgstr "Inconnu"
4405
 
4406
+ # Android
4407
+ #: ../languages/dynamic_strings.php:59
4408
+ #, fuzzy
4409
+ msgid "xandros"
4410
+ msgstr "Android"
4411
+
4412
  # WAP
4413
+ #: ../languages/dynamic_strings.php:60
4414
  msgid "wap"
4415
  msgstr "WAP"
4416
 
4417
  # webOS
4418
+ #: ../languages/dynamic_strings.php:61
4419
  msgid "webos"
4420
  msgstr "webOS"
4421
 
4422
  # Windows 16-bit
4423
+ #: ../languages/dynamic_strings.php:62
4424
  #, fuzzy
4425
  msgid "win10"
4426
  msgstr "Windows 16-bit"
4427
 
4428
  # Windows 16-bit
4429
+ #: ../languages/dynamic_strings.php:63
4430
  msgid "win16"
4431
  msgstr "Windows 16-bit"
4432
 
4433
  # Windows 2000
4434
+ #: ../languages/dynamic_strings.php:64
4435
  msgid "win2000"
4436
  msgstr "Windows 2000"
4437
 
4438
  # Windows 2003
4439
+ #: ../languages/dynamic_strings.php:65
4440
  msgid "win2003"
4441
  msgstr "Windows 2003"
4442
 
4443
  # Windows 3.1
4444
+ #: ../languages/dynamic_strings.php:66
4445
  msgid "win31"
4446
  msgstr "Windows 3.1"
4447
 
4448
  # Windows 32-bit
4449
+ #: ../languages/dynamic_strings.php:67
4450
  msgid "win32"
4451
  msgstr "Windows 32-bit"
4452
 
4453
  # Windows 7
4454
+ #: ../languages/dynamic_strings.php:68 ../languages/dynamic_strings.php:69
4455
  msgid "win7"
4456
  msgstr "Windows 7"
4457
 
4458
+ #: ../languages/dynamic_strings.php:70
4459
  msgid "win8"
4460
  msgstr "Windows 8"
4461
 
4462
+ #: ../languages/dynamic_strings.php:71
4463
  msgid "win8.1"
4464
  msgstr "Windows 8.1"
4465
 
4466
  # Windows 95
4467
+ #: ../languages/dynamic_strings.php:72
4468
  msgid "win95"
4469
  msgstr "Windows 95"
4470
 
4471
  # Windows 98
4472
+ #: ../languages/dynamic_strings.php:73
4473
  msgid "win98"
4474
  msgstr "Windows 98"
4475
 
4476
  # Windows CE
4477
+ #: ../languages/dynamic_strings.php:74
4478
  msgid "wince"
4479
  msgstr "Windows CE"
4480
 
 
 
 
 
 
 
4481
  # Windows ME
4482
+ #: ../languages/dynamic_strings.php:75
4483
  msgid "winme"
4484
  msgstr "Windows ME"
4485
 
4486
  # Windows NT
4487
+ #: ../languages/dynamic_strings.php:76
4488
  msgid "winnt"
4489
  msgstr "Windows NT"
4490
 
4491
  # iPhone
4492
+ #: ../languages/dynamic_strings.php:77
4493
  msgid "winphone7"
4494
  msgstr "Windows Phone"
4495
 
4496
  # iPhone
4497
+ #: ../languages/dynamic_strings.php:78
4498
  #, fuzzy
4499
  msgid "winphone7.5"
4500
  msgstr "Windows Phone"
4501
 
4502
  # iPhone
4503
+ #: ../languages/dynamic_strings.php:79
4504
  #, fuzzy
4505
  msgid "winphone8"
4506
  msgstr "Windows Phone"
4507
 
4508
  # iPhone
4509
+ #: ../languages/dynamic_strings.php:80
4510
  #, fuzzy
4511
  msgid "winphone8.1"
4512
  msgstr "Windows Phone"
4513
 
4514
+ #: ../languages/dynamic_strings.php:81
4515
+ msgid "winrt"
4516
+ msgstr ""
4517
+
4518
  # Windows Vista
4519
+ #: ../languages/dynamic_strings.php:82
4520
  msgid "winvista"
4521
  msgstr "Windows Vista"
4522
 
4523
  # Windows XP
4524
+ #: ../languages/dynamic_strings.php:83
4525
  msgid "winxp"
4526
  msgstr "Windows XP"
4527
 
4528
  # WyderOS
4529
+ #: ../languages/dynamic_strings.php:84
4530
  msgid "wyderos"
4531
  msgstr "WyderOS"
4532
 
4533
+ #: ../languages/dynamic_strings.php:85
4534
+ msgid "zaurus"
4535
+ msgstr ""
4536
+
4537
+ #: ../languages/dynamic_strings.php:88
4538
  msgid "acrobat"
4539
  msgstr "Acrobat Reader"
4540
 
4541
+ #: ../languages/dynamic_strings.php:89
4542
  msgid "director"
4543
  msgstr "Macromedia Director"
4544
 
4545
+ #: ../languages/dynamic_strings.php:90
4546
  msgid "flash"
4547
  msgstr "Flash"
4548
 
4549
+ #: ../languages/dynamic_strings.php:91
4550
  msgid "mediaplayer"
4551
  msgstr "Media Player"
4552
 
4553
+ #: ../languages/dynamic_strings.php:92
4554
  msgid "quicktime"
4555
  msgstr "Quicktime"
4556
 
4557
+ #: ../languages/dynamic_strings.php:93
4558
  msgid "real"
4559
  msgstr "Real Player"
4560
 
4561
+ #: ../languages/dynamic_strings.php:94
4562
  msgid "silverlight"
4563
  msgstr "Silverlight"
4564
 
4565
+ #: ../languages/dynamic_strings.php:97
4566
  msgid "p-and"
4567
  msgstr "Android"
4568
 
4569
+ #: ../languages/dynamic_strings.php:98
4570
  msgid "p-bla"
4571
  msgstr "BlackBerry"
4572
 
4573
+ #: ../languages/dynamic_strings.php:99
4574
  msgid "p-chr"
4575
  msgstr "Chrome OS"
4576
 
4577
+ #: ../languages/dynamic_strings.php:100
4578
  msgid "p-fir"
4579
+ msgstr "Firefox OS"
4580
 
4581
+ #: ../languages/dynamic_strings.php:101
4582
  msgid "p-fre"
4583
  msgstr "Linux FreeBSD"
4584
 
4585
+ #: ../languages/dynamic_strings.php:102
4586
  msgid "p-ios"
4587
  msgstr "Apple iOS"
4588
 
4589
+ #: ../languages/dynamic_strings.php:103
4590
  msgid "p-jav"
4591
  msgstr "Java-based OS"
4592
 
4593
+ #: ../languages/dynamic_strings.php:104
4594
  msgid "p-lin"
4595
  msgstr "Linux"
4596
 
4597
+ #: ../languages/dynamic_strings.php:105
4598
  msgid "p-mac"
4599
  msgstr "Apple"
4600
 
4601
+ #: ../languages/dynamic_strings.php:106
4602
  msgid "p-rim"
4603
+ msgstr "Blackberry RIM"
4604
 
4605
+ #: ../languages/dynamic_strings.php:107
4606
  msgid "p-sym"
4607
  msgstr "Symbian OS"
4608
 
4609
+ #: ../languages/dynamic_strings.php:108
4610
  msgid "p-ubu"
4611
+ msgstr "Ubuntu"
4612
 
4613
+ #: ../languages/dynamic_strings.php:109
4614
  msgid "p-unk"
4615
  msgstr "Unknown"
4616
 
4617
+ #: ../languages/dynamic_strings.php:110
4618
  msgid "p-win"
4619
  msgstr "Microsoft"
4620
 
4621
  # Afrikaans
4622
+ #: ../languages/dynamic_strings.php:113
4623
  msgid "l-af"
4624
  msgstr "Afrikaans"
4625
 
4626
  # Afrikaans
4627
+ #: ../languages/dynamic_strings.php:114
4628
  msgid "l-af-za"
4629
  msgstr "Afrikaans"
4630
 
4631
  # Arabic
4632
+ #: ../languages/dynamic_strings.php:115
4633
  msgid "l-ar"
4634
  msgstr "Arabe"
4635
 
4636
  # Arabic (United Arab Emirates)
4637
+ #: ../languages/dynamic_strings.php:116
4638
  msgid "l-ar-ae"
4639
  msgstr "Arabe (Émirats arabes unis)"
4640
 
4641
  # Arabic (Bahrain)
4642
+ #: ../languages/dynamic_strings.php:117
4643
  msgid "l-ar-bh"
4644
  msgstr "Arabe (Bahreïn)"
4645
 
4646
  # Arabic (Algeria)
4647
+ #: ../languages/dynamic_strings.php:118
4648
  msgid "l-ar-dz"
4649
  msgstr "Arabe (Algérie)"
4650
 
4651
  # Arabic (Egypt)
4652
+ #: ../languages/dynamic_strings.php:119
4653
  msgid "l-ar-eg"
4654
  msgstr "Arabe (Égypte)"
4655
 
4656
  # Arabic (Iraq)
4657
+ #: ../languages/dynamic_strings.php:120
4658
  msgid "l-ar-iq"
4659
  msgstr "Arabe (Irak)"
4660
 
4661
  # Arabic (Jordan)
4662
+ #: ../languages/dynamic_strings.php:121
4663
  msgid "l-ar-jo"
4664
  msgstr "Arabe (Jordanie)"
4665
 
4666
  # Arabic (Kuwait)
4667
+ #: ../languages/dynamic_strings.php:122
4668
  msgid "l-ar-kw"
4669
  msgstr "Arabe (Koweït)"
4670
 
4671
  # Arabic (Lebanon)
4672
+ #: ../languages/dynamic_strings.php:123
4673
  msgid "l-ar-lb"
4674
  msgstr "Arabe (Liban)"
4675
 
4676
  # Arabic (Libya)
4677
+ #: ../languages/dynamic_strings.php:124
4678
  msgid "l-ar-ly"
4679
  msgstr "Arabe (Libye)"
4680
 
4681
  # Arabic (Morocco)
4682
+ #: ../languages/dynamic_strings.php:125
4683
  msgid "l-ar-ma"
4684
  msgstr "Arabe (Maroc)"
4685
 
4686
  # Arabic (Oman)
4687
+ #: ../languages/dynamic_strings.php:126
4688
  msgid "l-ar-om"
4689
  msgstr "Arabe (Oman)"
4690
 
4691
  # Arabic (Qatar)
4692
+ #: ../languages/dynamic_strings.php:127
4693
  msgid "l-ar-qa"
4694
  msgstr "Arabe (Qatar)"
4695
 
4696
  # Arabic (Saudi Arabia)
4697
+ #: ../languages/dynamic_strings.php:128
4698
  msgid "l-ar-sa"
4699
  msgstr "Arabe (Arabie saoudite)"
4700
 
4701
  # Arabic (Syria)
4702
+ #: ../languages/dynamic_strings.php:129
4703
  msgid "l-ar-sy"
4704
  msgstr "Arabe (Syrie)"
4705
 
4706
  # Arabic (Tunisia)
4707
+ #: ../languages/dynamic_strings.php:130
4708
  msgid "l-ar-tn"
4709
  msgstr "Arabe (Tunisie)"
4710
 
4711
  # Arabic (Yemen)
4712
+ #: ../languages/dynamic_strings.php:131
4713
  msgid "l-ar-ye"
4714
  msgstr "Arabe (Yémen)"
4715
 
4716
  # Azerbaijani
4717
+ #: ../languages/dynamic_strings.php:132
4718
  msgid "l-az"
4719
  msgstr "Azéri"
4720
 
4721
  # Azerbaijani
4722
+ #: ../languages/dynamic_strings.php:133
4723
  msgid "l-az-az"
4724
  msgstr "Azéri"
4725
 
4726
  # Belarusian
4727
+ #: ../languages/dynamic_strings.php:134
4728
  msgid "l-be"
4729
  msgstr "Biélorusse"
4730
 
4731
  # Belarusian
4732
+ #: ../languages/dynamic_strings.php:135
4733
  msgid "l-be-by"
4734
  msgstr "Biélorusse"
4735
 
4736
  # Bulgarian
4737
+ #: ../languages/dynamic_strings.php:136
4738
  msgid "l-bg"
4739
  msgstr "Bulgare"
4740
 
4741
  # Bulgarian
4742
+ #: ../languages/dynamic_strings.php:137
4743
  msgid "l-bg-bg"
4744
  msgstr "Bulgare"
4745
 
4746
  # Bosnian
4747
+ #: ../languages/dynamic_strings.php:138
4748
  msgid "l-bs-ba"
4749
  msgstr "Bosnien"
4750
 
4751
  # Catalan; Valencian
4752
+ #: ../languages/dynamic_strings.php:139
4753
  msgid "l-ca"
4754
  msgstr "Catalan; Valencien"
4755
 
4756
  # Catalan; Valencian
4757
+ #: ../languages/dynamic_strings.php:140
4758
  msgid "l-ca-es"
4759
  msgstr "Catalan; Valencien"
4760
 
4761
  # Czech
4762
+ #: ../languages/dynamic_strings.php:141
4763
  msgid "l-cs"
4764
  msgstr "Tchèque"
4765
 
4766
  # Czech
4767
+ #: ../languages/dynamic_strings.php:142
4768
  msgid "l-cs-cz"
4769
  msgstr "Tchèque"
4770
 
4771
  # Welsh
4772
+ #: ../languages/dynamic_strings.php:143
4773
  msgid "l-cy"
4774
  msgstr "Gallois"
4775
 
4776
  # Welsh
4777
+ #: ../languages/dynamic_strings.php:144
4778
  msgid "l-cy-gb"
4779
  msgstr "Gallois"
4780
 
4781
  # Danish
4782
+ #: ../languages/dynamic_strings.php:145
4783
  msgid "l-da"
4784
  msgstr "Danois"
4785
 
4786
  # Danish
4787
+ #: ../languages/dynamic_strings.php:146
4788
  msgid "l-da-dk"
4789
  msgstr "Danois"
4790
 
4791
  # German
4792
+ #: ../languages/dynamic_strings.php:147
4793
  msgid "l-de"
4794
  msgstr "Allemand"
4795
 
4796
  # German (Austria)
4797
+ #: ../languages/dynamic_strings.php:148
4798
  msgid "l-de-at"
4799
  msgstr "Allemand (Autriche)"
4800
 
4801
  # German (Switzerland)
4802
+ #: ../languages/dynamic_strings.php:149
4803
  msgid "l-de-ch"
4804
  msgstr "Allemand (Suisse)"
4805
 
4806
  # German (Germany)
4807
+ #: ../languages/dynamic_strings.php:150
4808
  msgid "l-de-de"
4809
  msgstr "Allemand (Allemagne)"
4810
 
4811
  # German (Liechtenstein)
4812
+ #: ../languages/dynamic_strings.php:151
4813
  msgid "l-de-li"
4814
  msgstr "Allemand (Liechtenstein)"
4815
 
4816
  # German (Luxembourg)
4817
+ #: ../languages/dynamic_strings.php:152
4818
  msgid "l-de-lu"
4819
  msgstr "Allemand (Luxembourg)"
4820
 
4821
  # Dhivehi; Divehi; Maldivian
4822
+ #: ../languages/dynamic_strings.php:153
4823
  msgid "l-dv"
4824
  msgstr "Dhivehi; Divehi; Maldivien"
4825
 
4826
  # Dhivehi; Divehi; Maldivian
4827
+ #: ../languages/dynamic_strings.php:154
4828
  msgid "l-dv-mv"
4829
  msgstr "Dhivehi; Divehi; Maldivien"
4830
 
4831
  # Modern Greek (1453-)
4832
+ #: ../languages/dynamic_strings.php:155
4833
  msgid "l-el"
4834
  msgstr "Grec moderne"
4835
 
4836
  # Greek (Greece)
4837
+ #: ../languages/dynamic_strings.php:156
4838
  msgid "l-el-gr"
4839
  msgstr "Grec moderne (Grèce)"
4840
 
4841
  # English
4842
+ #: ../languages/dynamic_strings.php:157
4843
  msgid "l-en"
4844
  msgstr "Anglais"
4845
 
4846
  # English (Australia)
4847
+ #: ../languages/dynamic_strings.php:158
4848
  msgid "l-en-au"
4849
  msgstr "Anglais (Australie)"
4850
 
4851
  # English (Belize)
4852
+ #: ../languages/dynamic_strings.php:159
4853
  msgid "l-en-bz"
4854
  msgstr "Anglais (Belize)"
4855
 
4856
  # English (Canada)
4857
+ #: ../languages/dynamic_strings.php:160
4858
  msgid "l-en-ca"
4859
  msgstr "Anglais (Canada)"
4860
 
4861
  # English (Canada)
4862
+ #: ../languages/dynamic_strings.php:161
4863
  msgid "l-en-cb"
4864
  msgstr "Anglais (Canada)"
4865
 
4866
  # English (United Kingdom)
4867
+ #: ../languages/dynamic_strings.php:162
4868
  msgid "l-en-gb"
4869
  msgstr "Anglais (Royaume-Uni)"
4870
 
4871
  # English (Ireland)
4872
+ #: ../languages/dynamic_strings.php:163
4873
  msgid "l-en-ie"
4874
  msgstr "Anglais (Irlande)"
4875
 
4876
  # English (Jamaica)
4877
+ #: ../languages/dynamic_strings.php:164
4878
  msgid "l-en-jm"
4879
  msgstr "Anglais (Jamaïque)"
4880
 
4881
  # English (New Zealand)
4882
+ #: ../languages/dynamic_strings.php:165
4883
  msgid "l-en-nz"
4884
  msgstr "Anglais (Nouvelle-Zélande)"
4885
 
4886
  # English
4887
+ #: ../languages/dynamic_strings.php:166
4888
  msgid "l-en-ph"
4889
  msgstr "Anglais"
4890
 
4891
  # English (Trinidad)
4892
+ #: ../languages/dynamic_strings.php:167
4893
  msgid "l-en-tt"
4894
  msgstr "Anglais (Trinité)"
4895
 
4896
  # English (United States)
4897
+ #: ../languages/dynamic_strings.php:168
4898
  msgid "l-en-us"
4899
  msgstr "Anglais (États-Unis)"
4900
 
4901
  # English (South Africa)
4902
+ #: ../languages/dynamic_strings.php:169
4903
  msgid "l-en-za"
4904
  msgstr "Anglais (Afrique du Sud)"
4905
 
4906
  # English (South Africa)
4907
+ #: ../languages/dynamic_strings.php:170
4908
  msgid "l-en-zw"
4909
  msgstr "Anglais (Afrique du Sud)"
4910
 
4911
  # Esperanto
4912
+ #: ../languages/dynamic_strings.php:171
4913
  msgid "l-eo"
4914
  msgstr "Espéranto"
4915
 
4916
  # Spanish; Castilian
4917
+ #: ../languages/dynamic_strings.php:172
4918
  msgid "l-es"
4919
  msgstr "Espagnol; Castillan"
4920
 
4921
  # Spanish (Argentina)
4922
+ #: ../languages/dynamic_strings.php:173
4923
  msgid "l-es-ar"
4924
  msgstr "Espagnol (Argentine)"
4925
 
4926
  # Spanish (Bolivia)
4927
+ #: ../languages/dynamic_strings.php:174
4928
  msgid "l-es-bo"
4929
  msgstr "Espagnol (Bolivie)"
4930
 
4931
  # Spanish (Chile)
4932
+ #: ../languages/dynamic_strings.php:175
4933
  msgid "l-es-cl"
4934
  msgstr "Espagnol (Chili)"
4935
 
4936
  # Spanish (Colombia)
4937
+ #: ../languages/dynamic_strings.php:176
4938
  msgid "l-es-co"
4939
  msgstr "Espagnol (Colombie)"
4940
 
4941
  # Spanish (Costa Rica)
4942
+ #: ../languages/dynamic_strings.php:177
4943
  msgid "l-es-cr"
4944
  msgstr "Espagnol (Costa Rica)"
4945
 
4946
  # Spanish (Dominican Republic)
4947
+ #: ../languages/dynamic_strings.php:178
4948
  msgid "l-es-do"
4949
  msgstr "Espagnol (République dominicaine)"
4950
 
4951
  # Spanish (Ecuador)
4952
+ #: ../languages/dynamic_strings.php:179
4953
  msgid "l-es-ec"
4954
  msgstr "Espagnol (Équateur)"
4955
 
4956
  # Spanish (Spain)
4957
+ #: ../languages/dynamic_strings.php:180
4958
  msgid "l-es-es"
4959
  msgstr "Espagnol (Espagne)"
4960
 
4961
  # Spanish (Guatemala)
4962
+ #: ../languages/dynamic_strings.php:181
4963
  msgid "l-es-gt"
4964
  msgstr "Espagnol (Guatemala)"
4965
 
4966
  # Spanish (Honduras)
4967
+ #: ../languages/dynamic_strings.php:182
4968
  msgid "l-es-hn"
4969
  msgstr "Espagnol (Honduras)"
4970
 
4971
  # Spanish (Mexico)
4972
+ #: ../languages/dynamic_strings.php:183
4973
  msgid "l-es-mx"
4974
  msgstr "Espagnol (Mexique)"
4975
 
4976
  # Spanish (Nicaragua)
4977
+ #: ../languages/dynamic_strings.php:184
4978
  msgid "l-es-ni"
4979
  msgstr "Espagnol (Nicaragua)"
4980
 
4981
  # Spanish (Panama)
4982
+ #: ../languages/dynamic_strings.php:185
4983
  msgid "l-es-pa"
4984
  msgstr "Espagnol (Panama)"
4985
 
4986
  # Spanish (Peru)
4987
+ #: ../languages/dynamic_strings.php:186
4988
  msgid "l-es-pe"
4989
  msgstr "Espagnol (Pérou)"
4990
 
4991
  # Spanish (Puerto Rico)
4992
+ #: ../languages/dynamic_strings.php:187
4993
  msgid "l-es-pr"
4994
  msgstr "Espagnol (Porto Rico)"
4995
 
4996
  # Spanish (Paraguay)
4997
+ #: ../languages/dynamic_strings.php:188
4998
  msgid "l-es-py"
4999
  msgstr "Espagnol (Paraguay)"
5000
 
5001
  # Spanish (El Salvador)
5002
+ #: ../languages/dynamic_strings.php:189
5003
  msgid "l-es-sv"
5004
  msgstr "Espagnol (El Salvador)"
5005
 
5006
  # Spanish (Uruguay)
5007
+ #: ../languages/dynamic_strings.php:190
5008
  msgid "l-es-uy"
5009
  msgstr "Espagnol (Uruguay)"
5010
 
5011
  # Spanish (Venezuela)
5012
+ #: ../languages/dynamic_strings.php:191
5013
  msgid "l-es-ve"
5014
  msgstr "Espagnol (Venezuela)"
5015
 
5016
  # Estonian
5017
+ #: ../languages/dynamic_strings.php:192
5018
  msgid "l-et"
5019
  msgstr "Estonien"
5020
 
5021
  # Estonian
5022
+ #: ../languages/dynamic_strings.php:193
5023
  msgid "l-et-ee"
5024
  msgstr "Estonien"
5025
 
5026
  # Basque
5027
+ #: ../languages/dynamic_strings.php:194
5028
  msgid "l-eu"
5029
  msgstr "Basque"
5030
 
5031
  # Basque
5032
+ #: ../languages/dynamic_strings.php:195
5033
  msgid "l-eu-es"
5034
  msgstr "Basque"
5035
 
5036
  # Persian
5037
+ #: ../languages/dynamic_strings.php:196
5038
  msgid "l-fa"
5039
  msgstr "Persan"
5040
 
5041
  # Persian
5042
+ #: ../languages/dynamic_strings.php:197
5043
  msgid "l-fa-ir"
5044
  msgstr "Persan"
5045
 
5046
  # Finnish
5047
+ #: ../languages/dynamic_strings.php:198
5048
  msgid "l-fi"
5049
  msgstr "Finnois"
5050
 
5051
  # Finnish
5052
+ #: ../languages/dynamic_strings.php:199
5053
  msgid "l-fi-fi"
5054
  msgstr "Finnois"
5055
 
5056
  # Faroese
5057
+ #: ../languages/dynamic_strings.php:200
5058
  msgid "l-fo"
5059
  msgstr "Féringien"
5060
 
5061
  # Faroese
5062
+ #: ../languages/dynamic_strings.php:201
5063
  msgid "l-fo-fo"
5064
  msgstr "Féringien"
5065
 
5066
  # French
5067
+ #: ../languages/dynamic_strings.php:202
5068
  msgid "l-fr"
5069
  msgstr "Français"
5070
 
5071
  # French (Belgium)
5072
+ #: ../languages/dynamic_strings.php:203
5073
  msgid "l-fr-be"
5074
  msgstr "Français (Belgique)"
5075
 
5076
  # French (Canada)
5077
+ #: ../languages/dynamic_strings.php:204
5078
  msgid "l-fr-ca"
5079
  msgstr "Français (Canada)"
5080
 
5081
  # French (Switzerland)
5082
+ #: ../languages/dynamic_strings.php:205
5083
  msgid "l-fr-ch"
5084
  msgstr "Français (Suisse)"
5085
 
5086
  # French (France)
5087
+ #: ../languages/dynamic_strings.php:206
5088
  msgid "l-fr-fr"
5089
  msgstr "Français (France)"
5090
 
5091
  # French (Luxembourg)
5092
+ #: ../languages/dynamic_strings.php:207
5093
  msgid "l-fr-lu"
5094
  msgstr "Français (Luxembourg)"
5095
 
5096
  # French (Switzerland)
5097
+ #: ../languages/dynamic_strings.php:208
5098
  msgid "l-fr-mc"
5099
  msgstr "Français (Suisse)"
5100
 
5101
  # Galician
5102
+ #: ../languages/dynamic_strings.php:209
5103
  msgid "l-gl"
5104
  msgstr "Galicien"
5105
 
5106
  # Spanish; Castilian
5107
+ #: ../languages/dynamic_strings.php:210
5108
  msgid "l-gl-es"
5109
  msgstr "Espagnol ; Castillan"
5110
 
5111
  # Gujarati
5112
+ #: ../languages/dynamic_strings.php:211
5113
  msgid "l-gu"
5114
  msgstr "Gujarati"
5115
 
5116
  # Gujarati
5117
+ #: ../languages/dynamic_strings.php:212
5118
  msgid "l-gu-in"
5119
  msgstr "Gujarati"
5120
 
5121
  # Hebrew
5122
+ #: ../languages/dynamic_strings.php:213
5123
  msgid "l-he"
5124
  msgstr "Hébreu"
5125
 
5126
  # Hebrew (Israel)
5127
+ #: ../languages/dynamic_strings.php:214
5128
  msgid "l-he-il"
5129
  msgstr "Hébreu (Israël)"
5130
 
5131
  # Hindi
5132
+ #: ../languages/dynamic_strings.php:215
5133
  msgid "l-hi"
5134
  msgstr "Hindi"
5135
 
5136
  # Hindi
5137
+ #: ../languages/dynamic_strings.php:216
5138
  msgid "l-hi-in"
5139
  msgstr "Hindi"
5140
 
5141
  # Croatian
5142
+ #: ../languages/dynamic_strings.php:217
5143
  msgid "l-hr"
5144
  msgstr "Croate"
5145
 
5146
  # Croatian
5147
+ #: ../languages/dynamic_strings.php:218
5148
  msgid "l-hr-ba"
5149
  msgstr "Croate"
5150
 
5151
  # Croatian
5152
+ #: ../languages/dynamic_strings.php:219
5153
  msgid "l-hr-hr"
5154
  msgstr "Croate"
5155
 
5156
  # Hungarian
5157
+ #: ../languages/dynamic_strings.php:220
5158
  msgid "l-hu"
5159
  msgstr "Hongrois"
5160
 
5161
  # Hungarian (Hungary)
5162
+ #: ../languages/dynamic_strings.php:221
5163
  msgid "l-hu-hu"
5164
  msgstr "Hongrois (Hongrie)"
5165
 
5166
  # Armenian
5167
+ #: ../languages/dynamic_strings.php:222
5168
  msgid "l-hy"
5169
  msgstr "Arménien"
5170
 
5171
  # Armenian
5172
+ #: ../languages/dynamic_strings.php:223
5173
  msgid "l-hy-am"
5174
  msgstr "Arménien"
5175
 
5176
  # Indonesian
5177
+ #: ../languages/dynamic_strings.php:224
5178
  msgid "l-id"
5179
  msgstr "Indonésien"
5180
 
5181
  # Indonesian
5182
+ #: ../languages/dynamic_strings.php:225
5183
  msgid "l-id-id"
5184
  msgstr "Indonésien"
5185
 
5186
  # Icelandic
5187
+ #: ../languages/dynamic_strings.php:226
5188
  msgid "l-is"
5189
  msgstr "Islandais"
5190
 
5191
  # Icelandic
5192
+ #: ../languages/dynamic_strings.php:227
5193
  msgid "l-is-is"
5194
  msgstr "Islandais"
5195
 
5196
  # Italian
5197
+ #: ../languages/dynamic_strings.php:228
5198
  msgid "l-it"
5199
  msgstr "Italien"
5200
 
5201
  # Italian (Switzerland)
5202
+ #: ../languages/dynamic_strings.php:229
5203
  msgid "l-it-ch"
5204
  msgstr "Italien (Suisse)"
5205
 
5206
  # Italian (Italia)
5207
+ #: ../languages/dynamic_strings.php:230
5208
  msgid "l-it-it"
5209
  msgstr "Italien (Italie)"
5210
 
5211
  # Japanese
5212
+ #: ../languages/dynamic_strings.php:231
5213
  msgid "l-ja"
5214
  msgstr "Japonais"
5215
 
5216
  # Japanese
5217
+ #: ../languages/dynamic_strings.php:232
5218
  msgid "l-ja-jp"
5219
  msgstr "Japonais"
5220
 
5221
  # Georgian
5222
+ #: ../languages/dynamic_strings.php:233
5223
  msgid "l-ka"
5224
  msgstr "Géorgien"
5225
 
5226
  # Georgian
5227
+ #: ../languages/dynamic_strings.php:234
5228
  msgid "l-ka-ge"
5229
  msgstr "Géorgien"
5230
 
5231
  # Kazakh
5232
+ #: ../languages/dynamic_strings.php:235
5233
  msgid "l-kk"
5234
  msgstr "Kazakh"
5235
 
5236
  # Kazakh
5237
+ #: ../languages/dynamic_strings.php:236
5238
  msgid "l-kk-kz"
5239
  msgstr "Kazakh"
5240
 
5241
  # Kannada
5242
+ #: ../languages/dynamic_strings.php:237
5243
  msgid "l-kn"
5244
  msgstr "kannada"
5245
 
5246
  # Kannada
5247
+ #: ../languages/dynamic_strings.php:238
5248
  msgid "l-kn-in"
5249
  msgstr "Kannada"
5250
 
5251
  # Korean
5252
+ #: ../languages/dynamic_strings.php:239
5253
  msgid "l-ko"
5254
  msgstr "Coréen"
5255
 
5256
  # Korean (Republic of Korea)
5257
+ #: ../languages/dynamic_strings.php:240
5258
  msgid "l-ko-kr"
5259
  msgstr "Coréen (République de Corée)"
5260
 
5261
  # Korean
5262
+ #: ../languages/dynamic_strings.php:241
5263
  msgid "l-kok"
5264
  msgstr "Coréen"
5265
 
5266
  # Korean
5267
+ #: ../languages/dynamic_strings.php:242
5268
  msgid "l-kok-in"
5269
  msgstr "Coréen"
5270
 
5271
  # Kirghiz; Kyrgyz
5272
+ #: ../languages/dynamic_strings.php:243
5273
  msgid "l-ky"
5274
  msgstr "Kirghiz"
5275
 
5276
  # Kirghiz; Kyrgyz
5277
+ #: ../languages/dynamic_strings.php:244
5278
  msgid "l-ky-kg"
5279
  msgstr "Kirghiz"
5280
 
5281
  # Lithuanian
5282
+ #: ../languages/dynamic_strings.php:245
5283
  msgid "l-lt"
5284
  msgstr "Lituanien"
5285
 
5286
  # Lithuanian
5287
+ #: ../languages/dynamic_strings.php:246
5288
  msgid "l-lt-lt"
5289
  msgstr "Lituanien"
5290
 
5291
  # Latvian
5292
+ #: ../languages/dynamic_strings.php:247
5293
  msgid "l-lv"
5294
  msgstr "Letton"
5295
 
5296
  # Latvian
5297
+ #: ../languages/dynamic_strings.php:248
5298
  msgid "l-lv-lv"
5299
  msgstr "Letton"
5300
 
5301
  # Maori
5302
+ #: ../languages/dynamic_strings.php:249
5303
  msgid "l-mi"
5304
  msgstr "Maori"
5305
 
5306
  # Maori
5307
+ #: ../languages/dynamic_strings.php:250
5308
  msgid "l-mi-nz"
5309
  msgstr "Maori"
5310
 
5311
  # Macedonian
5312
+ #: ../languages/dynamic_strings.php:251
5313
  msgid "l-mk"
5314
  msgstr "Macédonien"
5315
 
5316
  # Macedonian
5317
+ #: ../languages/dynamic_strings.php:252
5318
  msgid "l-mk-ml"
5319
  msgstr "Macédonien"
5320
 
5321
  # Mongolian
5322
+ #: ../languages/dynamic_strings.php:253
5323
  msgid "l-mn"
5324
  msgstr "Mongol"
5325
 
5326
  # Mongolian
5327
+ #: ../languages/dynamic_strings.php:254
5328
  msgid "l-mn-mn"
5329
  msgstr "Mongol"
5330
 
5331
  # Marathi
5332
+ #: ../languages/dynamic_strings.php:255
5333
  msgid "l-mr"
5334
  msgstr "Marathi"
5335
 
5336
  # Marathi
5337
+ #: ../languages/dynamic_strings.php:256
5338
  msgid "l-mr-in"
5339
  msgstr "Marathi"
5340
 
5341
  # Malay
5342
+ #: ../languages/dynamic_strings.php:257
5343
  msgid "l-ms"
5344
  msgstr "Malais"
5345
 
5346
  # Malay
5347
+ #: ../languages/dynamic_strings.php:258
5348
  msgid "l-ms-bn"
5349
  msgstr "Malais"
5350
 
5351
  # Malay
5352
+ #: ../languages/dynamic_strings.php:259
5353
  msgid "l-ms-my"
5354
  msgstr "Malais"
5355
 
5356
  # Maltese
5357
+ #: ../languages/dynamic_strings.php:260
5358
  msgid "l-mt"
5359
  msgstr "Maltais"
5360
 
5361
  # Maltese
5362
+ #: ../languages/dynamic_strings.php:261
5363
  msgid "l-mt-mt"
5364
  msgstr "Maltais"
5365
 
5366
  # Norwegian Bokmål
5367
+ #: ../languages/dynamic_strings.php:262
5368
  msgid "l-nb"
5369
  msgstr "Norvégien Bokmål"
5370
 
5371
  # Norwegian Bokmål
5372
+ #: ../languages/dynamic_strings.php:263
5373
  msgid "l-nb-no"
5374
  msgstr "Norvégien Bokmål"
5375
 
5376
  # Dutch; Flemish
5377
+ #: ../languages/dynamic_strings.php:264
5378
  msgid "l-nl"
5379
  msgstr "Néerlandais; Flamand"
5380
 
5381
  # Dutch (Belgium)
5382
+ #: ../languages/dynamic_strings.php:265
5383
  msgid "l-nl-be"
5384
  msgstr "Néerlandais (Belgique)"
5385
 
5386
  # Dutch (Netherlands)
5387
+ #: ../languages/dynamic_strings.php:266
5388
  msgid "l-nl-nl"
5389
  msgstr "Néerlandais (Pays-bas)"
5390
 
5391
  # Norwegian Nynorsk
5392
+ #: ../languages/dynamic_strings.php:267
5393
  msgid "l-nn-no"
5394
  msgstr "Norvégien Nynorsk"
5395
 
5396
+ #: ../languages/dynamic_strings.php:268
5397
  msgid "l-ns"
5398
  msgstr "l-ns"
5399
 
5400
+ #: ../languages/dynamic_strings.php:269
5401
  msgid "l-ns-za"
5402
  msgstr "l-ns-za"
5403
 
5404
  # Panjabi; Punjabi
5405
+ #: ../languages/dynamic_strings.php:270
5406
  msgid "l-pa"
5407
  msgstr "Panjabi"
5408
 
5409
  # Panjabi; Punjabi
5410
+ #: ../languages/dynamic_strings.php:271
5411
  msgid "l-pa-in"
5412
  msgstr "Panjabi"
5413
 
5414
  # Polish
5415
+ #: ../languages/dynamic_strings.php:272
5416
  msgid "l-pl"
5417
  msgstr "Polonais"
5418
 
5419
  # Polish
5420
+ #: ../languages/dynamic_strings.php:273
5421
  msgid "l-pl-pl"
5422
  msgstr "Polonais"
5423
 
5424
  # Pushto; Pashto
5425
+ #: ../languages/dynamic_strings.php:274
5426
  msgid "l-ps"
5427
  msgstr "Pachto"
5428
 
5429
  # Spanish (Argentina)
5430
+ #: ../languages/dynamic_strings.php:275
5431
  msgid "l-ps-ar"
5432
  msgstr "Espagnol (Argentine)"
5433
 
5434
  # Portuguese
5435
+ #: ../languages/dynamic_strings.php:276
5436
  msgid "l-pt"
5437
  msgstr "Portugais"
5438
 
5439
  # Portuguese (Brazil)
5440
+ #: ../languages/dynamic_strings.php:277
5441
  msgid "l-pt-br"
5442
  msgstr "Portugais (Brésil)"
5443
 
5444
  # Portuguese
5445
+ #: ../languages/dynamic_strings.php:278
5446
  msgid "l-pt-pt"
5447
  msgstr "Portugais"
5448
 
5449
  # Quechua
5450
+ #: ../languages/dynamic_strings.php:279
5451
  msgid "l-qu"
5452
  msgstr "Quechua"
5453
 
5454
  # Quechua
5455
+ #: ../languages/dynamic_strings.php:280
5456
  msgid "l-qu-bo"
5457
  msgstr "Quechua"
5458
 
5459
  # Quechua
5460
+ #: ../languages/dynamic_strings.php:281
5461
  msgid "l-qu-ec"
5462
  msgstr "Quechua"
5463
 
5464
  # Quechua
5465
+ #: ../languages/dynamic_strings.php:282
5466
  msgid "l-qu-pe"
5467
  msgstr "Quechua"
5468
 
5469
  # Romanian; Moldavian; Moldovan
5470
+ #: ../languages/dynamic_strings.php:283
5471
  msgid "l-ro"
5472
  msgstr "Roumain; Moldave"
5473
 
5474
  # Romanian; Moldavian; Moldovan
5475
+ #: ../languages/dynamic_strings.php:284
5476
  msgid "l-ro-ro"
5477
  msgstr "Roumain"
5478
 
5479
  # Russian
5480
+ #: ../languages/dynamic_strings.php:285
5481
  msgid "l-ru"
5482
  msgstr "Russe"
5483
 
5484
  # Russian (Russia)
5485
+ #: ../languages/dynamic_strings.php:286
5486
  msgid "l-ru-ru"
5487
  msgstr "Russe (Fédération de Russie)"
5488
 
5489
  # Sanskrit
5490
+ #: ../languages/dynamic_strings.php:287
5491
  msgid "l-sa"
5492
  msgstr "Sanskrit"
5493
 
5494
  # Sanskrit
5495
+ #: ../languages/dynamic_strings.php:288
5496
  msgid "l-sa-in"
5497
  msgstr "Sanskrit"
5498
 
5499
  # Northern Sami
5500
+ #: ../languages/dynamic_strings.php:289
5501
  msgid "l-se"
5502
  msgstr "Same du Nord"
5503
 
5504
  # Northern Sami
5505
+ #: ../languages/dynamic_strings.php:290
5506
  msgid "l-se-fi"
5507
  msgstr "Same du Nord"
5508
 
5509
  # Northern Sami
5510
+ #: ../languages/dynamic_strings.php:291
5511
  msgid "l-se-no"
5512
  msgstr "Same du Nord"
5513
 
5514
  # Northern Sami
5515
+ #: ../languages/dynamic_strings.php:292
5516
  msgid "l-se-se"
5517
  msgstr "Same du Nord"
5518
 
5519
  # Slovak
5520
+ #: ../languages/dynamic_strings.php:293
5521
  msgid "l-sk"
5522
  msgstr "Slovaque"
5523
 
5524
  # Slovak
5525
+ #: ../languages/dynamic_strings.php:294
5526
  msgid "l-sk-sk"
5527
  msgstr "Slovaque"
5528
 
5529
  # Slovenian
5530
+ #: ../languages/dynamic_strings.php:295
5531
  msgid "l-sl"
5532
  msgstr "Slovène"
5533
 
5534
  # Slovenian
5535
+ #: ../languages/dynamic_strings.php:296
5536
  msgid "l-sl-si"
5537
  msgstr "Slovène"
5538
 
5539
  # Albanian
5540
+ #: ../languages/dynamic_strings.php:297
5541
  msgid "l-sq"
5542
  msgstr "Albanais"
5543
 
5544
  # Albanian
5545
+ #: ../languages/dynamic_strings.php:298
5546
  msgid "l-sq-al"
5547
  msgstr "Albanais"
5548
 
5549
  # Serbian
5550
+ #: ../languages/dynamic_strings.php:299
5551
  msgid "l-sr-ba"
5552
  msgstr "Serbe"
5553
 
5554
  # Serbian
5555
+ #: ../languages/dynamic_strings.php:300
5556
  msgid "l-sr-sp"
5557
  msgstr "Serbe"
5558
 
5559
  # Swedish
5560
+ #: ../languages/dynamic_strings.php:301
5561
  msgid "l-sv"
5562
  msgstr "Suédois"
5563
 
5564
  # Swedish (Finland)
5565
+ #: ../languages/dynamic_strings.php:302
5566
  msgid "l-sv-fi"
5567
  msgstr "Suédois (Finlande)"
5568
 
5569
  # Swedish (Sweden)
5570
+ #: ../languages/dynamic_strings.php:303
5571
  msgid "l-sv-se"
5572
  msgstr "Suédois (Suède)"
5573
 
5574
  # Swahili
5575
+ #: ../languages/dynamic_strings.php:304
5576
  msgid "l-sw"
5577
  msgstr "Swahili"
5578
 
5579
  # Swahili
5580
+ #: ../languages/dynamic_strings.php:305
5581
  msgid "l-sw-ke"
5582
  msgstr "Swahili"
5583
 
5584
  # Tamil
5585
+ #: ../languages/dynamic_strings.php:306
5586
  msgid "l-ta"
5587
  msgstr "Tamoul"
5588
 
5589
  # Tamil
5590
+ #: ../languages/dynamic_strings.php:307
5591
  msgid "l-ta-in"
5592
  msgstr "Tamoul"
5593
 
5594
  # Telugu
5595
+ #: ../languages/dynamic_strings.php:308
5596
  msgid "l-te"
5597
  msgstr "Télougou"
5598
 
5599
  # Telugu
5600
+ #: ../languages/dynamic_strings.php:309
5601
  msgid "l-te-in"
5602
  msgstr "Télougou"
5603
 
5604
  # Thai
5605
+ #: ../languages/dynamic_strings.php:310
5606
  msgid "l-th"
5607
  msgstr "Thaï"
5608
 
5609
  # Thai
5610
+ #: ../languages/dynamic_strings.php:311
5611
  msgid "l-th-th"
5612
  msgstr "Thai"
5613
 
5614
  # Tagalog
5615
+ #: ../languages/dynamic_strings.php:312
5616
  msgid "l-tl"
5617
  msgstr "Tagalog"
5618
 
5619
  # Tagalog
5620
+ #: ../languages/dynamic_strings.php:313
5621
  msgid "l-tl-ph"
5622
  msgstr "Tagalog"
5623
 
5624
  # Tswana
5625
+ #: ../languages/dynamic_strings.php:314
5626
  msgid "l-tn"
5627
  msgstr "Tswana"
5628
 
5629
  # English (South Africa)
5630
+ #: ../languages/dynamic_strings.php:315
5631
  msgid "l-tn-za"
5632
  msgstr "Anglais (Afrique du Sud)"
5633
 
5634
  # Turkish
5635
+ #: ../languages/dynamic_strings.php:316
5636
  msgid "l-tr"
5637
  msgstr "Turc"
5638
 
5639
  # Turkish
5640
+ #: ../languages/dynamic_strings.php:317
5641
  msgid "l-tr-tr"
5642
  msgstr "Turc"
5643
 
5644
  # Tatar
5645
+ #: ../languages/dynamic_strings.php:318
5646
  msgid "l-tt"
5647
  msgstr "Tatar"
5648
 
5649
  # Tatar
5650
+ #: ../languages/dynamic_strings.php:319
5651
  msgid "l-tt-ru"
5652
  msgstr "Tatar"
5653
 
5654
  # Tsonga
5655
+ #: ../languages/dynamic_strings.php:320
5656
  msgid "l-ts"
5657
  msgstr "Tsonga"
5658
 
5659
  # Ukrainian
5660
+ #: ../languages/dynamic_strings.php:321
5661
  msgid "l-uk"
5662
  msgstr "Ukrainien"
5663
 
5664
  # Ukrainian
5665
+ #: ../languages/dynamic_strings.php:322
5666
  msgid "l-uk-ua"
5667
  msgstr "Ukrainien"
5668
 
5669
  # Urdu
5670
+ #: ../languages/dynamic_strings.php:323
5671
  msgid "l-ur"
5672
  msgstr "Ourdou"
5673
 
5674
  # Urdu
5675
+ #: ../languages/dynamic_strings.php:324
5676
  msgid "l-ur-pk"
5677
  msgstr "Ourdou"
5678
 
5679
  # Uzbek
5680
+ #: ../languages/dynamic_strings.php:325
5681
  msgid "l-uz"
5682
  msgstr "Ouzbek"
5683
 
5684
  # Uzbek
5685
+ #: ../languages/dynamic_strings.php:326
5686
  msgid "l-uz-uz"
5687
  msgstr "Ouzbek"
5688
 
5689
  # Vietnamese
5690
+ #: ../languages/dynamic_strings.php:327
5691
  msgid "l-vi"
5692
  msgstr "Vietnamien"
5693
 
5694
  # Vietnamese
5695
+ #: ../languages/dynamic_strings.php:328
5696
  msgid "l-vi-vn"
5697
  msgstr "Vietnamien"
5698
 
5699
  # Xhosa
5700
+ #: ../languages/dynamic_strings.php:329
5701
  msgid "l-xh"
5702
  msgstr "Xhosa"
5703
 
5704
  # Xhosa
5705
+ #: ../languages/dynamic_strings.php:330
5706
  msgid "l-xh-za"
5707
  msgstr "Xhosa"
5708
 
5709
  # Chinese
5710
+ #: ../languages/dynamic_strings.php:331
5711
  msgid "l-zh"
5712
  msgstr "Chinois"
5713
 
5714
  # Chinese (China)
5715
+ #: ../languages/dynamic_strings.php:332
5716
  msgid "l-zh-cn"
5717
  msgstr "Chinois (Chine)"
5718
 
5719
  # Chinese (Hong Kong)
5720
+ #: ../languages/dynamic_strings.php:333
5721
  msgid "l-zh-hk"
5722
  msgstr "Chinois (Hong Kong)"
5723
 
5724
  # Chinese
5725
+ #: ../languages/dynamic_strings.php:334
5726
  msgid "l-zh-mo"
5727
  msgstr "Chinois"
5728
 
5729
  # Chinese (Singapore)
5730
+ #: ../languages/dynamic_strings.php:335
5731
  msgid "l-zh-sg"
5732
  msgstr "Chinois (Singapour)"
5733
 
5734
  # Chinese (Taiwan)
5735
+ #: ../languages/dynamic_strings.php:336
5736
  msgid "l-zh-tw"
5737
  msgstr "Chinois (Taïwan)"
5738
 
5739
  # Zulu
5740
+ #: ../languages/dynamic_strings.php:337
5741
  msgid "l-zu"
5742
  msgstr "Zoulou"
5743
 
5744
  # Zulu
5745
+ #: ../languages/dynamic_strings.php:338
5746
  msgid "l-zu-za"
5747
  msgstr "Zoulou"
5748
 
5749
  # Unknown
5750
+ #: ../languages/dynamic_strings.php:340
5751
  msgid "l-empty"
5752
  msgstr "Inconnue"
5753
 
5754
  # Unknown
5755
+ #: ../languages/dynamic_strings.php:341
5756
  msgid "l-xx"
5757
  msgstr "Inconnue"
5758
 
5759
+ #: ../languages/dynamic_strings.php:343
5760
  msgid "c-xy"
5761
  msgstr "Local"
5762
 
5763
+ #: ../wp-slimstat.php:237 ../wp-slimstat.php:524
5764
  msgid "Notice: Pageview filtered by third-party code"
5765
  msgstr ""
5766
 
5767
+ #: ../wp-slimstat.php:254
5768
  #, fuzzy, php-format
5769
  msgid "Error: Malformed URL %s"
5770
  msgstr "Ignorer les utilisateurs"
5771
 
5772
+ #: ../wp-slimstat.php:278
5773
  #, php-format
5774
  msgid "Notice: Referrer %s is blacklisted"
5775
  msgstr ""
5776
 
5777
+ #: ../wp-slimstat.php:356
5778
  #, fuzzy, php-format
5779
  msgid "Notice: Permalink %s is blacklisted"
5780
  msgstr "le permalien"
5781
 
5782
+ #: ../wp-slimstat.php:367
5783
  msgid "Error: Empty or not supported IP address format (IPv6)"
5784
  msgstr ""
5785
 
5786
+ #: ../wp-slimstat.php:376
5787
  #, php-format
5788
  msgid "Notice: Logged in user %s not tracked"
5789
  msgstr ""
5790
 
5791
+ #: ../wp-slimstat.php:384
5792
  #, php-format
5793
  msgid "Notice: User with capability %s not tracked"
5794
  msgstr ""
5795
 
5796
+ #: ../wp-slimstat.php:394
5797
  #, fuzzy, php-format
5798
  msgid "Notice: User %s is blacklisted"
5799
  msgstr "le permalien"
5800
 
5801
+ #: ../wp-slimstat.php:415
5802
  #, fuzzy, php-format
5803
  msgid "Notice: Spammer %s not tracked"
5804
  msgstr "Robot ou Crawler"
5805
 
5806
+ #: ../wp-slimstat.php:444
5807
  #, php-format
5808
  msgid "Notice: IP address %s is blacklisted"
5809
  msgstr ""
5810
 
5811
+ #: ../wp-slimstat.php:473
5812
  #, php-format
5813
  msgid "Notice: Country %s is blacklisted"
5814
  msgstr ""
5815
 
5816
+ #: ../wp-slimstat.php:482
5817
  #, fuzzy
5818
  msgid "Notice: Prefetch requests are ignored"
5819
  msgstr "Ignorer les requêtes anticipées"
5820
 
5821
+ #: ../wp-slimstat.php:498
5822
  #, fuzzy
5823
  msgid "Notice: Bot not tracked"
5824
  msgstr "Robot ou Crawler"
5825
 
5826
+ #: ../wp-slimstat.php:507
5827
  #, php-format
5828
  msgid "Notice: Browser %s is blacklisted"
5829
  msgstr ""
5830
 
5831
+ #: ../wp-slimstat.php:537
5832
  msgid "Error:"
5833
  msgstr ""
5834
 
5835
+ #: ../wp-slimstat.php:1153
5836
  msgid "Invalid payload string. Try clearing your WordPress cache."
5837
  msgstr ""
5838
 
5839
+ #: ../wp-slimstat.php:1163
5840
  msgid "Invalid data signature. Try clearing your WordPress cache."
5841
  msgstr ""
5842
 
5843
+ #: ../wp-slimstat.php:1235
5844
  #, fuzzy
5845
  msgid "There was an error downloading the MaxMind Geolite DB:"
5846
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5847
 
5848
+ #: ../wp-slimstat.php:1243 ../wp-slimstat.php:1252
5849
  #, fuzzy
5850
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5851
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5852
 
5853
+ #: ../wp-slimstat.php:1247
5854
  msgid "Function gzopen not defined. Aborting."
5855
  msgstr ""
5856
 
5857
+ #: ../wp-slimstat.php:1257
5858
  #, fuzzy
5859
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5860
  msgstr "Il y a eu une erreur lors de la mise à jour des options suivantes:"
5861
 
5862
+ #, fuzzy
5863
+ #~ msgid "Delete records"
5864
+ #~ msgstr "Filtrer les pages vues pour que"
5865
+
5866
+ #, fuzzy
5867
+ #~ msgid "Social Analytics"
5868
+ #~ msgstr "Analyse du site"
5869
+
5870
+ #, fuzzy
5871
+ #~ msgid "recorded on"
5872
+ #~ msgstr "Enregistrements"
5873
+
5874
+ #, fuzzy
5875
+ #~ msgid "Import old data"
5876
+ #~ msgstr "Import-Export"
5877
+
5878
+ #, fuzzy
5879
+ #~ msgid "Social Sharing Analytics"
5880
+ #~ msgstr "Analyse du site"
5881
+
5882
+ #~ msgid "Top Traffic Sources"
5883
+ #~ msgstr "Top Sources de Trafic"
5884
+
5885
+ # iPhone
5886
+ #, fuzzy
5887
+ #~ msgid "windows phone"
5888
+ #~ msgstr "Windows Phone"
5889
+
5890
  #~ msgid "Ignore users (username not found)"
5891
  #~ msgstr "Utilisateur inconnu (nom d'utilisateur non trouvé)"
5892
 
languages/wp-slimstat-fr_FR.mo CHANGED
Binary file
languages/wp-slimstat-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-24 09:22-0500\n"
6
- "PO-Revision-Date: 2015-12-24 09:22-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../admin/config/index.php:50
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -26,11 +26,11 @@ msgstr ""
26
  "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
27
  "d'informations"
28
 
29
- #: ../admin/config/index.php:65
30
  msgid "Read access: username not found"
31
  msgstr "Accès lecture : username inexistant"
32
 
33
- #: ../admin/config/index.php:75 ../admin/config/index.php:100
34
  msgid ""
35
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
36
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
@@ -40,34 +40,34 @@ msgstr ""
40
  "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
41
  "d'informations"
42
 
43
- #: ../admin/config/index.php:90
44
  msgid "Config access: username not found"
45
  msgstr "Accès configuration : username inexistant"
46
 
47
- #: ../admin/config/index.php:109
48
  msgid "Basic"
49
  msgstr ""
50
 
51
- #: ../admin/config/index.php:111 ../admin/config/index.php:132
52
  msgid "Tracker"
53
  msgstr "Traçage"
54
 
55
- #: ../admin/config/index.php:112
56
  msgid "Enable Tracking"
57
  msgstr "Activer le traçage"
58
 
59
- #: ../admin/config/index.php:112
60
  #, fuzzy
61
  msgid "Turn the tracker on or off, while keeping the reports accessible."
62
  msgstr ""
63
  "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
64
  "que vous n'auriez pas si vous désactiviez le plugin.)"
65
 
66
- #: ../admin/config/index.php:113
67
  msgid "Tracking Mode"
68
  msgstr "Mode traçage"
69
 
70
- #: ../admin/config/index.php:113
71
  #, fuzzy
72
  msgid ""
73
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
@@ -82,64 +82,64 @@ msgstr ""
82
  "ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
83
  "recherche et autres robots ne seront pas suivis."
84
 
85
- #: ../admin/config/index.php:113
86
  msgid "Client Side"
87
  msgstr ""
88
 
89
- #: ../admin/config/index.php:113
90
  #, fuzzy
91
  msgid "Server Side"
92
  msgstr "Côté serveur"
93
 
94
- #: ../admin/config/index.php:114
95
  msgid "Stealth Mode"
96
  msgstr ""
97
 
98
- #: ../admin/config/index.php:114
99
  msgid ""
100
  "Do not add the javascript tracking code to your pages, if tracking mode is "
101
  "set to Server. Please note: if enabled, this will prevent the tracker from "
102
  "collecting information such as screen resolution, outbound links, downloads, "
103
- "etc. This option is ignored is Tracking Mode is set to Client."
104
  msgstr ""
105
 
106
- #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
107
  msgid "Off"
108
  msgstr ""
109
 
110
- #: ../admin/config/index.php:114
111
  msgid "On"
112
  msgstr "Actif"
113
 
114
- #: ../admin/config/index.php:115
115
  #, fuzzy
116
  msgid "Admin Pages"
117
  msgstr "Tracer les pages Administrateur"
118
 
119
- #: ../admin/config/index.php:115
120
  msgid "Enable this option to track your users' activity within the admin."
121
  msgstr ""
122
  "Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
123
 
124
- #: ../admin/config/index.php:115
125
  #, fuzzy
126
  msgid "Track"
127
  msgstr "Traçage"
128
 
129
- #: ../admin/config/index.php:115
130
  #, fuzzy
131
  msgid "Do not track"
132
  msgstr "ne contient pas"
133
 
134
- #: ../admin/config/index.php:117
135
  msgid "WordPress Integration"
136
  msgstr "Intégration WordPress"
137
 
138
- #: ../admin/config/index.php:118
139
  msgid "Menu Position"
140
  msgstr "Position du Menu"
141
 
142
- #: ../admin/config/index.php:118
143
  msgid ""
144
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
145
  "admin bar (if visible)."
@@ -147,20 +147,20 @@ msgstr ""
147
  "Choisir entre un menu d'administration dans la barre latérale de WordPress "
148
  "ou un menu déroulant dans la barre supérieure (si elle est affichée)."
149
 
150
- #: ../admin/config/index.php:118
151
  msgid "Side Menu"
152
  msgstr "Menu latéral"
153
 
154
- #: ../admin/config/index.php:118
155
  msgid "Admin Bar"
156
  msgstr "Barre d'Administration"
157
 
158
- #: ../admin/config/index.php:119
159
  #, fuzzy
160
  msgid "Posts and Pages"
161
  msgstr "Etendre les Stats aux articles"
162
 
163
- #: ../admin/config/index.php:119
164
  #, fuzzy
165
  msgid ""
166
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
@@ -169,75 +169,75 @@ msgstr ""
169
  "Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
170
  "de visites par article (peut ralentir le rendu des pages)."
171
 
172
- #: ../admin/config/index.php:120
173
  #, fuzzy
174
  msgid "Report Interval"
175
  msgstr "Intervalle unique"
176
 
177
- #: ../admin/config/index.php:120
178
  msgid ""
179
  "Enter the time range, in days, that should be used to calculate the value "
180
  "here above."
181
  msgstr ""
182
 
183
- #: ../admin/config/index.php:121
184
  #, fuzzy
185
  msgid "Report Type"
186
  msgstr "Rapports"
187
 
188
- #: ../admin/config/index.php:121
189
  msgid ""
190
  "Select what kind of information you would like to see displayed on the Posts "
191
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
192
  "IPs consider only one hit per user in the given time range."
193
  msgstr ""
194
 
195
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
196
- #: ../admin/view/wp-slimstat-reports.php:109
197
- #: ../admin/view/wp-slimstat-reports.php:1375
198
- #: ../admin/view/wp-slimstat-reports.php:1533
199
  msgid "Pageviews"
200
  msgstr "Pages vues"
201
 
202
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
203
- #: ../admin/view/wp-slimstat-reports.php:286
204
- #: ../admin/view/wp-slimstat-reports.php:526
205
- #: ../admin/view/wp-slimstat-reports.php:1390
206
- #: ../admin/view/wp-slimstat-reports.php:1435
207
  msgid "Unique IPs"
208
  msgstr "IPs uniques"
209
 
210
- #: ../admin/config/index.php:122
211
  msgid "Dashboard Widgets"
212
  msgstr ""
213
 
214
- #: ../admin/config/index.php:122
215
  msgid ""
216
  "Choose if you want to have the most important reports on your WordPress "
217
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
218
  msgstr ""
219
 
220
- #: ../admin/config/index.php:123
221
  #, fuzzy
222
  msgid "Hide Add-ons"
223
  msgstr "Add-ons"
224
 
225
- #: ../admin/config/index.php:123
226
  msgid ""
227
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
228
  "from the list of plugins in WordPress. Please note that you will still "
229
  "receive updates for hidden add-ons."
230
  msgstr ""
231
 
232
- #: ../admin/config/index.php:125
233
  msgid "Database"
234
  msgstr "Base de données"
235
 
236
- #: ../admin/config/index.php:126
237
  msgid "Retain data for"
238
  msgstr "Conserver les données pour"
239
 
240
- #: ../admin/config/index.php:126
241
  #, fuzzy
242
  msgid ""
243
  "Clean-up log entries older than the number of days specified here above. "
@@ -248,11 +248,11 @@ msgstr ""
248
  "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
249
  "conserver toutes vos données sans limites de durée."
250
 
251
- #: ../admin/config/index.php:126
252
  msgid "Next clean-up on"
253
  msgstr "Prochain nettoyage le"
254
 
255
- #: ../admin/config/index.php:126
256
  #, fuzzy, php-format
257
  msgid ""
258
  "Entries logged on or before %s will be archived or deleted according to the "
@@ -260,18 +260,18 @@ msgid ""
260
  msgstr ""
261
  "Les données enregistrées le ou avant le %s seront définitivement supprimées. "
262
 
263
- #: ../admin/config/index.php:126 ../admin/view/index.php:102
264
  #: ../admin/view/wp-slimstat-db.php:79
265
- #: ../admin/view/wp-slimstat-reports.php:1359
266
  msgid "days"
267
  msgstr "jours"
268
 
269
- #: ../admin/config/index.php:127
270
  #, fuzzy
271
- msgid "Delete records"
272
- msgstr "Filtrer les pages vues pour que"
273
 
274
- #: ../admin/config/index.php:127
275
  msgid ""
276
  "If DB space is not an issue, you can decide to archive older records in "
277
  "another table, instead of deleting them. This way performance is preserved, "
@@ -281,16 +281,16 @@ msgid ""
281
  "is uninstalled. Make sure to backup your data before you proceed."
282
  msgstr ""
283
 
284
- #: ../admin/config/index.php:134
285
  #, fuzzy
286
  msgid "Advanced Options"
287
  msgstr "Filtres Avancés"
288
 
289
- #: ../admin/config/index.php:135
290
  msgid "Session Duration"
291
  msgstr "Durée session"
292
 
293
- #: ../admin/config/index.php:135
294
  msgid ""
295
  "How many seconds should a human session last? Google Analytics sets it to "
296
  "1800 seconds."
@@ -298,25 +298,51 @@ msgstr ""
298
  "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
299
  "fixe cette durée à 1800 secondes."
300
 
301
- #: ../admin/config/index.php:135 ../admin/config/index.php:205
302
  msgid "seconds"
303
  msgstr "secondes"
304
 
305
- #: ../admin/config/index.php:136
306
  msgid "Extend Session"
307
  msgstr "Etendre la session"
308
 
309
- #: ../admin/config/index.php:136
310
  msgid "Extend the duration of a session each time the user visits a new page."
311
  msgstr ""
312
  "Prolonger la durée d'une session à chaque fois que l'utilisateur visite une "
313
  "page."
314
 
315
- #: ../admin/config/index.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  msgid "Enable CDN"
317
  msgstr "Activer CDN"
318
 
319
- #: ../admin/config/index.php:137
320
  msgid ""
321
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
322
  "by serving our tracking code from their fast and reliable network (free "
@@ -326,11 +352,11 @@ msgstr ""
326
  "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
327
  "rapide et fiable."
328
 
329
- #: ../admin/config/index.php:138
330
  msgid "Extensions to Track"
331
  msgstr "Extensions du traçage"
332
 
333
- #: ../admin/config/index.php:138
334
  msgid ""
335
  "List all the file extensions that you want to be treated as Downloads. "
336
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -345,16 +371,16 @@ msgstr ""
345
  "comme liens sortants (et suivis en tant que tel), si leur extension "
346
  "correspond à l'une de celles qui sont énumérées ci-dessous."
347
 
348
- #: ../admin/config/index.php:140
349
  #, fuzzy
350
  msgid "Internal and Outbound Links"
351
  msgstr "Liens sortants récents"
352
 
353
- #: ../admin/config/index.php:141
354
  msgid "Track Outbound Clicks"
355
  msgstr "Tracer les liens sortants"
356
 
357
- #: ../admin/config/index.php:141
358
  msgid ""
359
  "Track when your visitors click on link to external websites. This option "
360
  "required Spy Mode to be enabled."
@@ -362,23 +388,23 @@ msgstr ""
362
  "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
363
  "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
364
 
365
- #: ../admin/config/index.php:142
366
  #, fuzzy
367
  msgid "Track Coordinates"
368
  msgstr "Mode traçage"
369
 
370
- #: ../admin/config/index.php:142
371
  msgid ""
372
  "Collect mouse coordinates and other information for clicks on internal "
373
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
374
  "this information is only collected for external links."
375
  msgstr ""
376
 
377
- #: ../admin/config/index.php:143
378
  msgid "No Callback"
379
  msgstr ""
380
 
381
- #: ../admin/config/index.php:143
382
  msgid ""
383
  "Track the event but do not invoke the callback function on links marked with "
384
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
@@ -386,22 +412,22 @@ msgid ""
386
  "prevent conflicts with lightbox and similar libraries."
387
  msgstr ""
388
 
389
- #: ../admin/config/index.php:144
390
  msgid "Do Not Track"
391
  msgstr ""
392
 
393
- #: ../admin/config/index.php:144
394
  msgid ""
395
  "Do not track links marked with one of these class names, <em>rel</em> "
396
  "attributes or whose <em>href</em> attribute contains one of these strings "
397
  "(separated by comma)."
398
  msgstr ""
399
 
400
- #: ../admin/config/index.php:146
401
  msgid "Pages not belonging to this site"
402
  msgstr ""
403
 
404
- #: ../admin/config/index.php:147
405
  #, fuzzy
406
  msgid ""
407
  "Add the following code to all the non-WP pages you want to track, right "
@@ -411,12 +437,12 @@ msgstr ""
411
  "Ajouter le code suivant à toutes les pages non-WordPress que vous souhaitez "
412
  "suivre."
413
 
414
- #: ../admin/config/index.php:157
415
  #, fuzzy
416
  msgid "Allow External Domains"
417
  msgstr "Liens externes hostiles"
418
 
419
- #: ../admin/config/index.php:157
420
  msgid ""
421
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
422
  "header is present on the requested resource, when using the external "
@@ -427,16 +453,16 @@ msgid ""
427
  "security implications of allowing CORS requests."
428
  msgstr ""
429
 
430
- #: ../admin/config/index.php:158 ../admin/config/index.php:180
431
- #: ../admin/config/index.php:208
432
  msgid "Miscellaneous"
433
  msgstr "Divers"
434
 
435
- #: ../admin/config/index.php:159
436
  msgid "Enable UAN"
437
  msgstr "Activer UAN"
438
 
439
- #: ../admin/config/index.php:159
440
  msgid ""
441
  "Send anonymous data about user agents to our server for analysis. This "
442
  "allows us to contribute to the <a href='http://browscap.org/' "
@@ -449,28 +475,28 @@ msgstr ""
449
  "browscap.org/' target='_blank'> projet opensource BrowsCap, et d'améliorer "
450
  "la pertinence de la fonctionnalité de WPStats concernant les navigateurs web."
451
 
452
- #: ../admin/config/index.php:164
453
  msgid "Filters"
454
  msgstr "Filtres"
455
 
456
- #: ../admin/config/index.php:166
457
  #, fuzzy
458
  msgid "Do not track settings"
459
  msgstr "ne contient pas"
460
 
461
- #: ../admin/config/index.php:167
462
  msgid "Track Registered Users"
463
  msgstr "Tracer les utilisateurs enregistrés"
464
 
465
- #: ../admin/config/index.php:167
466
  msgid "Enable this option to track logged in users."
467
  msgstr "Activez cette option pour tracer les utilisateurs connectés"
468
 
469
- #: ../admin/config/index.php:168
470
  msgid "Blacklist by Username"
471
  msgstr "Liste noire basée sur le nom d'utilisateur"
472
 
473
- #: ../admin/config/index.php:168
474
  #, fuzzy
475
  msgid ""
476
  "List all the usernames you don't want to track, separated by commas. Please "
@@ -488,11 +514,11 @@ msgstr ""
488
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
489
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
490
 
491
- #: ../admin/config/index.php:169
492
  msgid "Blacklist by IP Address"
493
  msgstr "Liste noire par adresse IP"
494
 
495
- #: ../admin/config/index.php:169
496
  msgid ""
497
  "List all the IP addresses you don't want to track, separated by commas. Each "
498
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -507,11 +533,11 @@ msgstr ""
507
  "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
508
  "pas suivre correctement les pages vues."
509
 
510
- #: ../admin/config/index.php:170
511
  msgid "Blacklist by Capability"
512
  msgstr "Blacklister par Capabilité WordPress"
513
 
514
- #: ../admin/config/index.php:170
515
  msgid ""
516
  "Users having at least one of the <a href='http://codex.wordpress.org/"
517
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -521,15 +547,15 @@ msgstr ""
521
  "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
522
  "seront pas suivis. Les capacités sont insensibles à la casse."
523
 
524
- #: ../admin/config/index.php:172
525
  msgid "Profiling"
526
  msgstr "Profiling"
527
 
528
- #: ../admin/config/index.php:173
529
  msgid "Ignore Spammers"
530
  msgstr "Ignorer les spammeurs"
531
 
532
- #: ../admin/config/index.php:173
533
  msgid ""
534
  "Enable this option if you don't want to track visits from users identified "
535
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -541,12 +567,12 @@ msgstr ""
541
  "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
542
  "comme spam par vous, seront également supprimées de la base."
543
 
544
- #: ../admin/config/index.php:174
545
  #, fuzzy
546
  msgid "Ignore Bots"
547
  msgstr "Ignorer les utilisateurs"
548
 
549
- #: ../admin/config/index.php:174
550
  msgid ""
551
  "Turn on this feature if you want to have the accuracy level of server-side "
552
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -554,11 +580,11 @@ msgid ""
554
  "note that in Client mode, bots are ignored regardless of this setting."
555
  msgstr ""
556
 
557
- #: ../admin/config/index.php:175
558
  msgid "Permalinks"
559
  msgstr "Rermaliens"
560
 
561
- #: ../admin/config/index.php:175
562
  msgid ""
563
  "List all the URLs on your website that you don't want to track, separated by "
564
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -576,11 +602,11 @@ msgstr ""
576
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
577
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
578
 
579
- #: ../admin/config/index.php:176
580
  msgid "Countries"
581
  msgstr "Pays"
582
 
583
- #: ../admin/config/index.php:176
584
  msgid ""
585
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
586
  "track, separated by commas."
@@ -588,11 +614,11 @@ msgstr ""
588
  "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
589
  "ne voulez pas suivre, séparées par des virgules."
590
 
591
- #: ../admin/config/index.php:177
592
  msgid "User Agents"
593
  msgstr "User Agents"
594
 
595
- #: ../admin/config/index.php:177
596
  msgid ""
597
  "Browsers (user agents) you don't want to track, separated by commas. You can "
598
  "specify the browser's version adding a slash after the name (i.e. "
@@ -610,11 +636,11 @@ msgstr ""
610
  "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
611
  "et IE/8.0. Les chaînes sont insensibles à la casse."
612
 
613
- #: ../admin/config/index.php:178
614
  msgid "Referring Sites"
615
  msgstr "Sites référents"
616
 
617
- #: ../admin/config/index.php:178
618
  msgid ""
619
  "Referring URLs that you don't want to track, separated by commas: "
620
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -631,21 +657,21 @@ msgstr ""
631
  "soit un caractère générique ou le protocole que vous voulez filtrer "
632
  "(http://, https://)."
633
 
634
- #: ../admin/config/index.php:181
635
  msgid "Enable Privacy Mode"
636
  msgstr "Activer le mode privé"
637
 
638
- #: ../admin/config/index.php:181
639
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
640
  msgstr ""
641
  "Cette option masque l'adresse IP de vos visiteurs afin de se conformer aux "
642
  "lois de confidentialité européennes."
643
 
644
- #: ../admin/config/index.php:182
645
  msgid "Ignore Prefetch Requests"
646
  msgstr "Ignorer les requêtes anticipées"
647
 
648
- #: ../admin/config/index.php:182
649
  msgid ""
650
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
651
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
@@ -655,30 +681,30 @@ msgstr ""
655
  "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
656
  "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
657
 
658
- #: ../admin/config/index.php:187 ../admin/config/index.php:220
659
  msgid "Reports"
660
  msgstr "Rapports"
661
 
662
- #: ../admin/config/index.php:189
663
  msgid "Formats and Conversions"
664
  msgstr ""
665
 
666
- #: ../admin/config/index.php:190
667
  msgid "Number Format"
668
  msgstr "Format des nombres"
669
 
670
- #: ../admin/config/index.php:190
671
  msgid "Choose the number format you want to use for your reports."
672
  msgstr ""
673
  "Choisissez le format numérique que vous souhaitez utiliser, européen ou "
674
  "américain."
675
 
676
- #: ../admin/config/index.php:191
677
  #, fuzzy
678
  msgid "Date Format"
679
  msgstr "Données et Formats"
680
 
681
- #: ../admin/config/index.php:191
682
  #, fuzzy
683
  msgid ""
684
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
@@ -688,12 +714,12 @@ msgstr ""
688
  "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
689
  "vue."
690
 
691
- #: ../admin/config/index.php:192
692
  #, fuzzy
693
  msgid "Time Format"
694
  msgstr "Format des nombres"
695
 
696
- #: ../admin/config/index.php:192
697
  #, fuzzy
698
  msgid ""
699
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
@@ -703,12 +729,12 @@ msgstr ""
703
  "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
704
  "vue."
705
 
706
- #: ../admin/config/index.php:193
707
  #, fuzzy
708
  msgid "Use Display Name"
709
  msgstr "Voir Nom d'affichage"
710
 
711
- #: ../admin/config/index.php:193
712
  msgid ""
713
  "By default, users are listed by their usernames. Use this option to "
714
  "visualize their display names instead."
@@ -716,12 +742,12 @@ msgstr ""
716
  "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
717
  "cette option pour basculer au Nom d'affichage."
718
 
719
- #: ../admin/config/index.php:194
720
  #, fuzzy
721
  msgid "Use Titles"
722
  msgstr "Afficher les titres"
723
 
724
- #: ../admin/config/index.php:194
725
  #, fuzzy
726
  msgid ""
727
  "Slimstat converts your permalinks into post, page and category titles. "
@@ -731,23 +757,23 @@ msgstr ""
731
  "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
732
  "rapports."
733
 
734
- #: ../admin/config/index.php:195
735
  msgid "Convert IP Addresses"
736
  msgstr "Convertir les adresses IP"
737
 
738
- #: ../admin/config/index.php:195
739
  msgid "Display provider names instead of IP addresses."
740
  msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
741
 
742
- #: ../admin/config/index.php:197
743
  msgid "Functionality"
744
  msgstr "Fonctionnalité"
745
 
746
- #: ../admin/config/index.php:198
747
  msgid "SlimScroll"
748
  msgstr "SlimScroll"
749
 
750
- #: ../admin/config/index.php:198
751
  msgid ""
752
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
753
  "scrollbar."
@@ -755,54 +781,54 @@ msgstr ""
755
  "Activer SlimScroll, une librairie jQuery élégante qui remplace la barre de "
756
  "défilement par défaut des navigateurs."
757
 
758
- #: ../admin/config/index.php:199
759
  msgid "Expand Details"
760
  msgstr "Développez les détails"
761
 
762
- #: ../admin/config/index.php:199
763
  msgid "Expand each row's details by default, insted of on mousehover."
764
  msgstr ""
765
  "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
766
  "souris."
767
 
768
- #: ../admin/config/index.php:200 ../admin/config/index.php:206
769
  msgid "Rows to Display"
770
  msgstr "Colonnes à afficher"
771
 
772
- #: ../admin/config/index.php:200
773
  msgid "Specify the number of items in each report."
774
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
775
 
776
- #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
777
  #, fuzzy
778
  msgid "Max Results"
779
  msgstr "Limiter les résultats"
780
 
781
- #: ../admin/config/index.php:201
782
  msgid ""
783
  "Decide how many records should be retrieved from the database in total. "
784
  "Depending on your server configuration, you may want to fine tune this value "
785
  "to avoid exceeding your PHP memory limit."
786
  msgstr ""
787
 
788
- #: ../admin/config/index.php:202
789
  msgid "IP Lookup"
790
  msgstr "Recherche d'IP"
791
 
792
- #: ../admin/config/index.php:202
793
  msgid "Customize the Geolocation service to be used in the reports."
794
  msgstr ""
795
  "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
796
 
797
- #: ../admin/config/index.php:204
798
  msgid "Activity Log"
799
  msgstr "Statistiques de fréquentation"
800
 
801
- #: ../admin/config/index.php:205
802
  msgid "Live Stream"
803
  msgstr "Flux en temps réel (Flux live)"
804
 
805
- #: ../admin/config/index.php:205
806
  msgid ""
807
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
808
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
@@ -810,15 +836,15 @@ msgstr ""
810
  "Actualisez la vue 'Maintenant' toutes les X secondes. Entrer <strong>0</"
811
  "strong> pour désactiver cette fonctionnalité."
812
 
813
- #: ../admin/config/index.php:206
814
  msgid "Specify the number of items in the Activity Log."
815
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
816
 
817
- #: ../admin/config/index.php:209
818
  msgid "Custom CSS"
819
  msgstr "Personnaliser le style CSS"
820
 
821
- #: ../admin/config/index.php:209
822
  #, fuzzy
823
  msgid ""
824
  "Paste here your custom stylesheet to personalize the way your reports look. "
@@ -832,12 +858,12 @@ msgstr ""
832
  "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
833
  "d'utiliser cette fonctionnalité."
834
 
835
- #: ../admin/config/index.php:210
836
  #, fuzzy
837
  msgid "Chart Colors"
838
  msgstr "Contrôle du graphique"
839
 
840
- #: ../admin/config/index.php:210
841
  msgid ""
842
  "Customize the look and feel of your charts by assigning personalized colors "
843
  "to each metric. List 4 hex colors separated by commas, strictly in the "
@@ -845,11 +871,11 @@ msgid ""
845
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
846
  msgstr ""
847
 
848
- #: ../admin/config/index.php:211
849
  msgid "Show User Agent"
850
  msgstr "Voir User Agent"
851
 
852
- #: ../admin/config/index.php:211
853
  msgid ""
854
  "Choose if you want to see the browser name or a complete user agent string "
855
  "when hovering on browser icons."
@@ -857,11 +883,11 @@ msgstr ""
857
  "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
858
  "de user agent lorsque vous survolez les icônes du navigateur."
859
 
860
- #: ../admin/config/index.php:212
861
  msgid "Enable SOV"
862
  msgstr "Activer SOV"
863
 
864
- #: ../admin/config/index.php:212
865
  msgid ""
866
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
867
  "the subject, object, and verb of a sentence appear in that order, like in "
@@ -871,30 +897,15 @@ msgstr ""
871
  "langue dans laquelle les sujet, objet et verbe d'une phrase apparaissent "
872
  "dans cet ordre, comme en japonais."
873
 
874
- #: ../admin/config/index.php:213
875
- #, fuzzy
876
- msgid "Social Analytics"
877
- msgstr "Analyse du site"
878
-
879
- #: ../admin/config/index.php:213
880
- msgid ""
881
- "Thanks to a <a href='http://getsocial.io/enterprise' "
882
- "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
883
- "set of analytics for social media where you can identify top performing "
884
- "posts. Track social sharing to understand which of your posts are generating "
885
- "more engagement. When this option is enabled, Slimstat sends a list of all "
886
- "your posts's URLs to their service for analysis once daily."
887
- msgstr ""
888
-
889
- #: ../admin/config/index.php:218
890
  msgid "Access Control"
891
  msgstr ""
892
 
893
- #: ../admin/config/index.php:221
894
  msgid "Restrict Authors"
895
  msgstr "Restriction Auteurs"
896
 
897
- #: ../admin/config/index.php:221
898
  msgid ""
899
  "Enable this option if you want your authors to only see stats related to "
900
  "their own content."
@@ -902,11 +913,11 @@ msgstr ""
902
  "Activez cette option si vous voulez que vos auteurs ne voient que les "
903
  "statistiques relatives à leur propre contenu."
904
 
905
- #: ../admin/config/index.php:222 ../admin/config/index.php:226
906
  msgid "Capability"
907
  msgstr "Aptitude"
908
 
909
- #: ../admin/config/index.php:222
910
  msgid ""
911
  "Specify the minimum <a href='http://codex.wordpress.org/"
912
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
@@ -922,11 +933,11 @@ msgstr ""
922
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
923
  "Dans ce cas, la liste a la priorité sur la capacité."
924
 
925
- #: ../admin/config/index.php:223 ../admin/config/index.php:227
926
  msgid "Whitelist"
927
  msgstr "Liste blanche"
928
 
929
- #: ../admin/config/index.php:223
930
  msgid ""
931
  "List all the users who should have access to the reports, separated by "
932
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -938,13 +949,13 @@ msgstr ""
938
  "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
939
  "noms d'utilisateurs sont sensibles à la casse."
940
 
941
- #: ../admin/config/index.php:225 ../admin/config/index.php:250
942
- #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
943
- #: ../wp-slimstat.php:1803
944
  msgid "Settings"
945
  msgstr "Réglages"
946
 
947
- #: ../admin/config/index.php:226
948
  msgid ""
949
  "Specify the minimum <a href='http://codex.wordpress.org/"
950
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -958,7 +969,7 @@ msgstr ""
958
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
959
  "Dans ce cas, la liste a la priorité sur la capacité."
960
 
961
- #: ../admin/config/index.php:227
962
  msgid ""
963
  "List all the users who can edit these options, separated by commas. Please "
964
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -970,13 +981,12 @@ msgstr ""
970
  "inscrire! Les noms d'utilisateurs sont sensibles à la casse. (Majuscules-"
971
  "minuscules)"
972
 
973
- #: ../admin/config/index.php:232
974
  msgid "Maintenance"
975
  msgstr "Maintenance"
976
 
977
- #: ../admin/config/index.php:237 ../admin/view/addons.php:32
978
- #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
979
- #: ../wp-slimstat.php:1800
980
  msgid "Add-ons"
981
  msgstr "Add-ons"
982
 
@@ -1007,95 +1017,83 @@ msgstr ""
1007
  msgid "The geolocation database has been installed on your server."
1008
  msgstr ""
1009
 
1010
- #: ../admin/config/maintenance.php:166
1011
- msgid ""
1012
- "Your data was successfully imported. You may now drop the old tables: "
1013
- "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
1014
- "wp_slim_outbound. Please note: if you are using Slimstat in a MU network, "
1015
- "you will need to run the import script on all your sites before you can "
1016
- "delete the old tables."
1017
- msgstr ""
1018
-
1019
- #: ../admin/config/maintenance.php:175
1020
  msgid "Your reports were successfully restored to their default arrangement."
1021
  msgstr ""
1022
  "Vos rapports ont été réinitialisés avec succès dans leur configuration par "
1023
  "défaut."
1024
 
1025
- #: ../admin/config/maintenance.php:185
1026
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1027
  msgstr "Vos tables WP SlimStat ont été converties en InnoDB avec succès."
1028
 
1029
- #: ../admin/config/maintenance.php:191
1030
  #, fuzzy
1031
  msgid "All the archived records were successfully deleted."
1032
  msgstr "Tous les enregistrements ont bien été supprimés"
1033
 
1034
- #: ../admin/config/maintenance.php:199
1035
  msgid "All the records were successfully deleted."
1036
  msgstr "Tous les enregistrements ont bien été supprimés"
1037
 
1038
- #: ../admin/config/maintenance.php:221
1039
- msgid "Debugging"
1040
  msgstr ""
1041
 
1042
- #: ../admin/config/maintenance.php:224
1043
  #, fuzzy
1044
  msgid "Tracker Status"
1045
  msgstr "Traçage"
1046
 
1047
- #: ../admin/config/maintenance.php:226
1048
  #, fuzzy
1049
- msgid "recorded on"
1050
- msgstr "Enregistrements"
1051
 
1052
- #: ../admin/config/maintenance.php:226
1053
  msgid "No Errors so far"
1054
  msgstr ""
1055
 
1056
- #: ../admin/config/maintenance.php:227
1057
  msgid ""
1058
  "The information here above is useful to troubleshoot issues with the "
1059
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1060
  "the tracker could not record a pageview and are indicative of some kind of "
1061
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1062
  "most recent pageview was not recorded, based on your settings (filters, "
1063
- "blackslists, etc). Please include this code when sending a support request."
 
1064
  msgstr ""
1065
 
1066
- #: ../admin/config/maintenance.php:233
1067
  #, fuzzy
1068
  msgid "Enable SQL Debug"
1069
  msgstr "Activer le mode espion"
1070
 
1071
- #: ../admin/config/maintenance.php:236
1072
  msgid ""
1073
  "Display the SQL code used to retrieve the data from the database. Useful to "
1074
  "troubleshoot issues with data consistency or missing pageviews."
1075
  msgstr ""
1076
 
1077
- #: ../admin/config/maintenance.php:240
1078
  msgid "Disable SQL Debug"
1079
  msgstr ""
1080
 
1081
- #: ../admin/config/maintenance.php:243
1082
  msgid "Deactivate the SQL output on top of each report."
1083
  msgstr ""
1084
 
1085
- #: ../admin/config/maintenance.php:248
1086
- msgid "Layout"
1087
- msgstr ""
1088
-
1089
- #: ../admin/config/maintenance.php:251
1090
  msgid ""
1091
  "Are you sure you want to restore the default arrangement of your reports?"
1092
  msgstr "Etes-vous sûr de vouloir réinitialiser vos rapports ?"
1093
 
1094
- #: ../admin/config/maintenance.php:251
1095
  msgid "No Panic Button"
1096
  msgstr "Pas de panique !"
1097
 
1098
- #: ../admin/config/maintenance.php:253
1099
  #, fuzzy
1100
  msgid ""
1101
  "Reset the default arrangement of your reports. Helpful when, for some "
@@ -1103,83 +1101,83 @@ msgid ""
1103
  "in your views."
1104
  msgstr "Réinitialiser la mise en page par défaut de vos rapports."
1105
 
1106
- #: ../admin/config/maintenance.php:257
1107
  msgid "Data Maintenance"
1108
  msgstr "Maintenance des données"
1109
 
1110
- #: ../admin/config/maintenance.php:260
1111
  msgid "Delete pageviews where"
1112
  msgstr "Supprimer les pages où"
1113
 
1114
- #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1115
  msgid "equals"
1116
  msgstr "est égal à"
1117
 
1118
- #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1119
  msgid "is not equal to"
1120
  msgstr "n'est pas égal à"
1121
 
1122
- #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1123
  msgid "contains"
1124
  msgstr "contient"
1125
 
1126
- #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1127
  msgid "is included in"
1128
  msgstr ""
1129
 
1130
- #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1131
  msgid "does not contain"
1132
  msgstr "ne contient pas"
1133
 
1134
- #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1135
  msgid "starts with"
1136
  msgstr "commence par"
1137
 
1138
- #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1139
  msgid "ends with"
1140
  msgstr "finit par"
1141
 
1142
- #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1143
  msgid "sounds like"
1144
  msgstr "ressemble à"
1145
 
1146
- #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1147
  msgid "is greater than"
1148
  msgstr "est plus grand que"
1149
 
1150
- #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1151
  msgid "is less than"
1152
  msgstr "est plus petit que"
1153
 
1154
- #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1155
  msgid "matches"
1156
  msgstr "correspond à"
1157
 
1158
- #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1159
  msgid "does not match"
1160
  msgstr "ne correspond pas à"
1161
 
1162
- #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1163
  msgid "is empty"
1164
  msgstr "est vide"
1165
 
1166
- #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1167
  msgid "is not empty"
1168
  msgstr "n'est pas vide"
1169
 
1170
- #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1171
  #: ../admin/view/index.php:105
1172
  msgid "Apply"
1173
  msgstr "Appliquer"
1174
 
1175
- #: ../admin/config/maintenance.php:291
1176
  msgid ""
1177
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1178
  msgstr ""
1179
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT ces enregistrement de "
1180
  "votre base de données ?"
1181
 
1182
- #: ../admin/config/maintenance.php:298
1183
  msgid ""
1184
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1185
  "database?"
@@ -1187,21 +1185,23 @@ msgstr ""
1187
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1188
  "votre base de données ?"
1189
 
1190
- #: ../admin/config/maintenance.php:298
1191
  #, fuzzy
1192
  msgid "Delete All Records"
1193
  msgstr "Supprimer toutes les pages vues"
1194
 
1195
- #: ../admin/config/maintenance.php:301
1196
  #, fuzzy
1197
  msgid ""
1198
- "Erase all the information collected so far by Slimstat, including the "
1199
- "archive. This operation <strong>does not</strong> reset your settings."
 
 
1200
  msgstr ""
1201
  "Effacer les informations collecter par WP Slimstat jusqu'à present. Cette "
1202
  "opération <strong>ne réinitialise pas </strong>vos paramétrages."
1203
 
1204
- #: ../admin/config/maintenance.php:307
1205
  #, fuzzy
1206
  msgid ""
1207
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
@@ -1210,20 +1210,20 @@ msgstr ""
1210
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1211
  "votre base de données ?"
1212
 
1213
- #: ../admin/config/maintenance.php:307
1214
  #, fuzzy
1215
  msgid "Delete Archive"
1216
  msgstr "Filtrer les pages vues pour que"
1217
 
1218
- #: ../admin/config/maintenance.php:310
1219
  msgid "Erase all the archived records. This operation cannot be undone."
1220
  msgstr ""
1221
 
1222
- #: ../admin/config/maintenance.php:316
1223
  msgid "Improve Performance"
1224
  msgstr "Improve la performance"
1225
 
1226
- #: ../admin/config/maintenance.php:320
1227
  msgid ""
1228
  "Please note that you will need about 30% more DB space to store the extra "
1229
  "information required."
@@ -1231,11 +1231,11 @@ msgstr ""
1231
  "Vous aurez besoin d'environ 30% de plus d'espace de base de données pour "
1232
  "stocker les informations supplémentaires nécessaires."
1233
 
1234
- #: ../admin/config/maintenance.php:324
1235
  msgid "Save DB Space"
1236
  msgstr "Gagner de l'espace sur la taille de votre base de données"
1237
 
1238
- #: ../admin/config/maintenance.php:327
1239
  msgid ""
1240
  "Please note that by removing table indexes, Slimstat's performance will be "
1241
  "affected."
@@ -1243,46 +1243,29 @@ msgstr ""
1243
  "Merci de noter qu'en supprimant les indexes, les performances de WP "
1244
  "SlimStats seront impactées."
1245
 
1246
- #: ../admin/config/maintenance.php:334
1247
- msgid ""
1248
- "Hold on tight, we are about to import all your old data. Are you sure you "
1249
- "want to proceed?"
1250
- msgstr ""
1251
-
1252
- #: ../admin/config/maintenance.php:334
1253
- #, fuzzy
1254
- msgid "Import old data"
1255
- msgstr "Import-Export"
1256
-
1257
- #: ../admin/config/maintenance.php:337
1258
- msgid ""
1259
- "Import all the records from the old table structure. No data will be deleted "
1260
- "from your database."
1261
- msgstr ""
1262
-
1263
- #: ../admin/config/maintenance.php:341
1264
  msgid "MaxMind IP to Country"
1265
  msgstr ""
1266
 
1267
- #: ../admin/config/maintenance.php:347
1268
  msgid ""
1269
  "Do you want to download and install the geolocation database from MaxMind's "
1270
  "server?"
1271
  msgstr ""
1272
 
1273
- #: ../admin/config/maintenance.php:347
1274
  msgid "Install GeoLite DB"
1275
  msgstr ""
1276
 
1277
- #: ../admin/config/maintenance.php:350
1278
  msgid "Do you want to uninstall the geolocation database?"
1279
  msgstr ""
1280
 
1281
- #: ../admin/config/maintenance.php:350
1282
  msgid "Uninstall GeoLite DB"
1283
  msgstr ""
1284
 
1285
- #: ../admin/config/maintenance.php:354
1286
  msgid ""
1287
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1288
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1292,11 +1275,11 @@ msgid ""
1292
  "enable this functionality."
1293
  msgstr ""
1294
 
1295
- #: ../admin/config/maintenance.php:359
1296
  msgid "Import and Export"
1297
  msgstr "Import-Export"
1298
 
1299
- #: ../admin/config/maintenance.php:363
1300
  #, fuzzy
1301
  msgid ""
1302
  "Here below you can find the current configuration string for Slimstat. You "
@@ -1307,27 +1290,27 @@ msgstr ""
1307
  "configuration. Vous pouvez mettre à jour vos réglages en collant une "
1308
  "nouvelle ligne ci-après et en cliquant sur Import."
1309
 
1310
- #: ../admin/config/maintenance.php:368
1311
  msgid "Import"
1312
  msgstr "Importer"
1313
 
1314
- #: ../admin/config/maintenance.php:369
1315
  msgid "Are you sure you want to OVERWRITE your current settings?"
1316
  msgstr "Etes-vous sûr que vous voulez réinitialiser vos onglets?"
1317
 
1318
- #: ../admin/config/maintenance.php:374
1319
  msgid "Database Information"
1320
  msgstr "Informations de base de données"
1321
 
1322
- #: ../admin/config/maintenance.php:377
1323
  msgid "Engine"
1324
  msgstr "Moteur"
1325
 
1326
- #: ../admin/config/maintenance.php:381
1327
  msgid "switch to InnoDB"
1328
  msgstr "changer pour InnoDB"
1329
 
1330
- #: ../admin/config/maintenance.php:392
1331
  msgid "records"
1332
  msgstr "Enregistrements"
1333
 
@@ -1405,11 +1388,11 @@ msgstr "est entre (x,y)"
1405
  msgid "Load"
1406
  msgstr ""
1407
 
1408
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1409
  msgid "Today"
1410
  msgstr "Aujourd'hui"
1411
 
1412
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1413
  msgid "Yesterday"
1414
  msgstr "Hier"
1415
 
@@ -1474,11 +1457,11 @@ msgid ""
1474
  "country of origin."
1475
  msgstr ""
1476
 
1477
- #: ../admin/view/layout.php:40
1478
  msgid "Customize and organize your reports"
1479
  msgstr ""
1480
 
1481
- #: ../admin/view/layout.php:41
1482
  msgid ""
1483
  "Drag and drop report placeholders from one container to another, to "
1484
  "customize the information you want to see right away when you open Slimstat. "
@@ -1490,11 +1473,11 @@ msgid ""
1490
  "(Screen Options tab)."
1491
  msgstr ""
1492
 
1493
- #: ../admin/view/layout.php:53
1494
  msgid "Clone"
1495
  msgstr ""
1496
 
1497
- #: ../admin/view/layout.php:57
1498
  #, fuzzy
1499
  msgid "Delete"
1500
  msgstr "Filtrer les pages vues pour que"
@@ -1515,8 +1498,8 @@ msgstr "Appareil mobile"
1515
  msgid "Syndication Reader"
1516
  msgstr "Lecteur de Flux (Syndication)"
1517
 
1518
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1519
- #: ../admin/view/wp-slimstat-reports.php:1706
1520
  msgid "No data to display"
1521
  msgstr "Aucune donnée à afficher"
1522
 
@@ -1525,18 +1508,19 @@ msgid "Date and Time"
1525
  msgstr "Date/Heure"
1526
 
1527
  # Unknown
1528
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1529
- #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1530
  msgid "c-"
1531
  msgstr "Inconnu"
1532
 
1533
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1534
- #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1535
  msgid "Originating IP"
1536
  msgstr "IP d'origine"
1537
 
1538
- #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1539
- #: ../admin/view/wp-slimstat-reports.php:1183
 
1540
  msgid "Open this URL in a new window"
1541
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1542
 
@@ -1544,62 +1528,62 @@ msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1544
  msgid "Local search results page"
1545
  msgstr "Page de résultat d'une recherche locale"
1546
 
1547
- #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1548
- #: ../admin/view/wp-slimstat-reports.php:257
1549
- #: ../admin/view/wp-slimstat-reports.php:266
1550
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1551
  msgid "Search Terms"
1552
  msgstr "Termes de recherche"
1553
 
1554
- #: ../admin/view/right-now.php:162
1555
  msgid "Server Latency and Page Speed in milliseconds"
1556
  msgstr "Latence du serveur et Rapidité de la page en millisecondes"
1557
 
1558
- #: ../admin/view/right-now.php:162
1559
  msgid "SL"
1560
  msgstr "SL"
1561
 
1562
- #: ../admin/view/right-now.php:162
1563
  msgid "PS"
1564
  msgstr "PS"
1565
 
1566
- #: ../admin/view/right-now.php:169
1567
  #, fuzzy
1568
- msgid "Time spent on this page in seconds"
1569
  msgstr "Ouvrir cette page dans une nouvelle fenêtre"
1570
 
1571
- #: ../admin/view/right-now.php:179
1572
  msgid "Open this referrer in a new window"
1573
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
1574
 
1575
- #: ../admin/view/right-now.php:180
1576
  msgid "Open this outbound link in a new window"
1577
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1578
 
1579
- #: ../admin/view/right-now.php:181
1580
  msgid "Content Type"
1581
  msgstr "Type de contenu"
1582
 
1583
- #: ../admin/view/right-now.php:184
1584
  #, fuzzy
1585
  msgid "Delete this pageview"
1586
  msgstr "Filtrer les pages vues pour que"
1587
 
1588
- #: ../admin/view/right-now.php:195
1589
  #, fuzzy
1590
  msgid "User Logged In"
1591
  msgstr "User Agent"
1592
 
1593
- #: ../admin/view/right-now.php:205
1594
  #, fuzzy
1595
  msgid "User Logged Out"
1596
  msgstr "User Agent"
1597
 
1598
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1599
  msgid "Browser"
1600
  msgstr "Navigateur Web"
1601
 
1602
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1603
  msgid "Country Code"
1604
  msgstr "Code du pays"
1605
 
@@ -1607,29 +1591,30 @@ msgstr "Code du pays"
1607
  msgid "IP Address"
1608
  msgstr "Adresse IP"
1609
 
1610
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1611
  msgid "Language Code"
1612
  msgstr "Code langue"
1613
 
1614
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1615
- #: ../admin/wp-slimstat-admin.php:867
1616
  msgid "Operating System"
1617
  msgstr "Système d'exploitation (OS)"
1618
 
1619
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1620
- #: ../admin/wp-slimstat-admin.php:868
1621
  msgid "Permalink"
1622
  msgstr "Permalien"
1623
 
1624
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1625
  msgid "Referer"
1626
  msgstr "Référent"
1627
 
1628
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1629
- msgid "Visitor's Name"
 
1630
  msgstr "le nom des visiteurs"
1631
 
1632
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1633
  msgid "Outbound Link"
1634
  msgstr "Lien sortant"
1635
 
@@ -1642,19 +1627,19 @@ msgid "-- Advanced filters --"
1642
  msgstr "-- Filtres Avancés --"
1643
 
1644
  #: ../admin/view/wp-slimstat-db.php:52
1645
- #: ../admin/view/wp-slimstat-reports.php:373
1646
  msgid "Browser Capabilities"
1647
  msgstr "Capacités des Navigateurs"
1648
 
1649
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1650
  msgid "Browser Version"
1651
  msgstr "Version de navigateur"
1652
 
1653
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1654
  msgid "Browser Type"
1655
  msgstr "le type de navigateur Web"
1656
 
1657
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1658
  msgid "User Agent"
1659
  msgstr "User Agent"
1660
 
@@ -1667,15 +1652,15 @@ msgstr "Annotations graphique"
1667
  msgid "Server Latency"
1668
  msgstr "Latence du serveur"
1669
 
1670
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1671
  msgid "Post Author"
1672
  msgstr "l'auteur de l'article"
1673
 
1674
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1675
  msgid "Post Category ID"
1676
  msgstr "ID de la catégorie de l'article"
1677
 
1678
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1679
  msgid "Resource Content Type"
1680
  msgstr "le type de source de contenu"
1681
 
@@ -1696,7 +1681,7 @@ msgstr "la résolution de l'écran"
1696
  msgid "Viewport Size"
1697
  msgstr ""
1698
 
1699
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1700
  msgid "Visit ID"
1701
  msgstr "Visites ID"
1702
 
@@ -1742,7 +1727,7 @@ msgid "Event ID"
1742
  msgstr "Contenus récents"
1743
 
1744
  #: ../admin/view/wp-slimstat-db.php:96
1745
- #: ../admin/view/wp-slimstat-reports.php:1720
1746
  msgid "Type"
1747
  msgstr ""
1748
 
@@ -1765,128 +1750,78 @@ msgstr "Ordre de tri"
1765
  msgid "Offset"
1766
  msgstr ""
1767
 
1768
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
1769
- #: ../wp-slimstat.php:1793
1770
- msgid "Access Log"
1771
- msgstr ""
1772
-
1773
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
1774
- #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
1775
- msgid "Overview"
1776
- msgstr "Vue générale"
1777
-
1778
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
1779
- #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
1780
- msgid "Audience"
1781
- msgstr "Audience"
1782
-
1783
- #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
1784
- #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
1785
- msgid "Site Analysis"
1786
- msgstr "Analyse du site"
1787
-
1788
- #: ../admin/view/wp-slimstat-reports.php:25
1789
- #: ../admin/view/wp-slimstat-reports.php:516
1790
- #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
1791
- #: ../wp-slimstat.php:1797
1792
- msgid "Traffic Sources"
1793
- msgstr "Sources de trafic"
1794
-
1795
- #: ../admin/view/wp-slimstat-reports.php:26
1796
- #: ../admin/view/wp-slimstat-reports.php:1364
1797
- #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
1798
- #: ../wp-slimstat.php:1798
1799
- #, fuzzy
1800
- msgid "Geolocation"
1801
- msgstr "Ordre de tri"
1802
-
1803
- #: ../admin/view/wp-slimstat-reports.php:27
1804
- #, fuzzy
1805
- msgid "WordPress Dashboard"
1806
- msgstr "Intégration WordPress"
1807
-
1808
- #: ../admin/view/wp-slimstat-reports.php:28
1809
- #, fuzzy
1810
- msgid "Inactive Reports"
1811
- msgstr "Réinitialiser les rapports"
1812
-
1813
- #: ../admin/view/wp-slimstat-reports.php:77
1814
  msgid "Chart controls"
1815
  msgstr "Contrôle du graphique"
1816
 
1817
- #: ../admin/view/wp-slimstat-reports.php:77
1818
  msgid "Use your mouse wheel to zoom in and out"
1819
  msgstr "Utilisez la molette de votre souris pour zoomer et dézoomer"
1820
 
1821
- #: ../admin/view/wp-slimstat-reports.php:77
1822
  msgid "While zooming in, drag the chart to move to a different area"
1823
  msgstr ""
1824
  "Alors que le zoom avant est activé, faites glisser la carte pour passer à "
1825
  "une autre zone"
1826
 
1827
- #: ../admin/view/wp-slimstat-reports.php:80
1828
- #, fuzzy
1829
- msgid "Social Sharing Analytics"
1830
- msgstr "Analyse du site"
1831
-
1832
- #: ../admin/view/wp-slimstat-reports.php:87
1833
  #, fuzzy
1834
  msgid "Visitors Activity"
1835
  msgstr "Statistiques de fréquentation"
1836
 
1837
- #: ../admin/view/wp-slimstat-reports.php:96
1838
  msgid "Color codes"
1839
  msgstr "Codes couleur"
1840
 
1841
- #: ../admin/view/wp-slimstat-reports.php:96
1842
  msgid "From search result page"
1843
  msgstr "Depuis un moteur de recherche"
1844
 
1845
- #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
1846
  msgid "Known Visitor"
1847
  msgstr "Visiteurs connus"
1848
 
1849
- #: ../admin/view/wp-slimstat-reports.php:96
1850
  msgid "Known Users"
1851
  msgstr "Utilisateurs connus"
1852
 
1853
- #: ../admin/view/wp-slimstat-reports.php:96
1854
  msgid "Other Humans"
1855
  msgstr "Autres humains"
1856
 
1857
- #: ../admin/view/wp-slimstat-reports.php:96
1858
  msgid "Bot or Crawler"
1859
  msgstr "Robot ou Crawler"
1860
 
1861
- #: ../admin/view/wp-slimstat-reports.php:118
1862
  msgid "About Slimstat"
1863
  msgstr "À propos de WP-SlimStat"
1864
 
1865
- #: ../admin/view/wp-slimstat-reports.php:127
1866
  #, fuzzy
1867
  msgid "Traffic at a Glance"
1868
  msgstr "Brièvement"
1869
 
1870
- #: ../admin/view/wp-slimstat-reports.php:137
1871
  msgid "Currently Online"
1872
  msgstr "Actuellement en ligne"
1873
 
1874
- #: ../admin/view/wp-slimstat-reports.php:150
1875
  msgid "Recent Search Terms"
1876
  msgstr "Derniers Termes de Recherches"
1877
 
1878
- #: ../admin/view/wp-slimstat-reports.php:160
1879
  msgid "Keywords used by your visitors to find your website on a search engine."
1880
  msgstr ""
1881
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
1882
  "de recherche."
1883
 
1884
- #: ../admin/view/wp-slimstat-reports.php:163
1885
  #, fuzzy
1886
  msgid "Top Web Pages"
1887
  msgstr "Top Pages Vues"
1888
 
1889
- #: ../admin/view/wp-slimstat-reports.php:174
1890
  msgid ""
1891
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1892
  "site, including posts, products, categories, and so on. You can set the "
@@ -1895,23 +1830,24 @@ msgid ""
1895
  "have."
1896
  msgstr ""
1897
 
1898
- #: ../admin/view/wp-slimstat-reports.php:177
1899
- msgid "Top Traffic Sources"
1900
- msgstr "Top Sources de Trafic"
 
1901
 
1902
- #: ../admin/view/wp-slimstat-reports.php:189
1903
  msgid "Top Known Visitors"
1904
  msgstr "Top Visiteurs Connus"
1905
 
1906
- #: ../admin/view/wp-slimstat-reports.php:200
1907
  msgid "Top Search Terms"
1908
  msgstr "Top Termes de Recherche"
1909
 
1910
- #: ../admin/view/wp-slimstat-reports.php:211
1911
  msgid "Top Countries"
1912
  msgstr "Pays les plus récurrents"
1913
 
1914
- #: ../admin/view/wp-slimstat-reports.php:220
1915
  msgid ""
1916
  "You can configure Slimstat to ignore a specific Country by setting the "
1917
  "corresponding filter under Settings > Slimstat > Filters."
@@ -1919,11 +1855,11 @@ msgstr ""
1919
  "Vous pouvez configurer WP SlimStat afin d'ignorer un pays spécifique en "
1920
  "définissant le filtre correspondant sous SlimStat> Paramètres> Filtres."
1921
 
1922
- #: ../admin/view/wp-slimstat-reports.php:223
1923
  msgid "Rankings"
1924
  msgstr "Classements"
1925
 
1926
- #: ../admin/view/wp-slimstat-reports.php:227
1927
  msgid ""
1928
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1929
  "measures your site's rankings. Values are updated every 12 hours. Filters "
@@ -1934,16 +1870,16 @@ msgstr ""
1934
  "12 heures. Les filtres indiqués ci-dessus ne sont pas pris en compte dans ce "
1935
  "rapport."
1936
 
1937
- #: ../admin/view/wp-slimstat-reports.php:230
1938
  msgid "Top Language Families"
1939
  msgstr "Top Langues"
1940
 
1941
- #: ../admin/view/wp-slimstat-reports.php:243
1942
  #, fuzzy
1943
  msgid "Users Currently Online"
1944
  msgstr "Actuellement en ligne"
1945
 
1946
- #: ../admin/view/wp-slimstat-reports.php:254
1947
  msgid ""
1948
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1949
  "Slimstat leverages this information to identify returning visitors. Please "
@@ -1953,44 +1889,49 @@ msgstr ""
1953
  "attribue un cookie. WP SlimStat exploite ces informations pour identifier "
1954
  "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
1955
 
1956
- #: ../admin/view/wp-slimstat-reports.php:267
1957
  #, fuzzy
1958
  msgid "Unique Terms"
1959
  msgstr "IPs uniques"
1960
 
1961
- #: ../admin/view/wp-slimstat-reports.php:276
 
 
 
 
 
1962
  msgid "Human Visits"
1963
  msgstr "Visiteurs humains"
1964
 
1965
- #: ../admin/view/wp-slimstat-reports.php:285
1966
- #: ../admin/view/wp-slimstat-reports.php:1431
1967
  msgid "Visits"
1968
  msgstr "Visites"
1969
 
1970
- #: ../admin/view/wp-slimstat-reports.php:295
1971
  msgid "Audience Overview"
1972
  msgstr "Vue générale"
1973
 
1974
- #: ../admin/view/wp-slimstat-reports.php:302
1975
  msgid ""
1976
  "Where not otherwise specified, the metrics in this report are referred to "
1977
  "human visitors."
1978
  msgstr ""
1979
 
1980
- #: ../admin/view/wp-slimstat-reports.php:305
1981
  msgid "Top Languages"
1982
  msgstr "Top Langues"
1983
 
1984
- #: ../admin/view/wp-slimstat-reports.php:316
1985
  msgid "Top Browsers"
1986
  msgstr "Principaux navigateurs"
1987
 
1988
- #: ../admin/view/wp-slimstat-reports.php:327
1989
  msgid "Top Service Providers"
1990
  msgstr "Top Fournisseur d'Accès"
1991
 
1992
- #: ../admin/view/wp-slimstat-reports.php:336
1993
- #: ../admin/view/wp-slimstat-reports.php:348
1994
  msgid ""
1995
  "Internet Service Provider: a company which provides other companies or "
1996
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -2003,24 +1944,24 @@ msgstr ""
2003
  "spécifiques en définissant le filtre correspondant sous SlimStat> Réglages> "
2004
  "Filtres."
2005
 
2006
- #: ../admin/view/wp-slimstat-reports.php:339
2007
  msgid "Top Operating Systems"
2008
  msgstr "Top Systèmes d'Exploitation"
2009
 
2010
- #: ../admin/view/wp-slimstat-reports.php:351
2011
  msgid "Top Screen Resolutions"
2012
  msgstr "Top Résolutions d'écran"
2013
 
2014
- #: ../admin/view/wp-slimstat-reports.php:362
2015
  #, fuzzy
2016
  msgid "Top Viewport Sizes"
2017
  msgstr "Top Catégories"
2018
 
2019
- #: ../admin/view/wp-slimstat-reports.php:382
2020
  msgid "Visit Duration"
2021
  msgstr "Durée des Visites"
2022
 
2023
- #: ../admin/view/wp-slimstat-reports.php:389
2024
  #, fuzzy
2025
  msgid ""
2026
  "All values represent the percentages of pageviews within the corresponding "
@@ -2029,32 +1970,32 @@ msgstr ""
2029
  "Carte du monde - Les valeurs représentent le pourcentage des accès provenant "
2030
  "de ce pays"
2031
 
2032
- #: ../admin/view/wp-slimstat-reports.php:392
2033
  msgid "Recent Countries"
2034
  msgstr "Derniers Pays"
2035
 
2036
- #: ../admin/view/wp-slimstat-reports.php:403
2037
  #, fuzzy
2038
  msgid "Recent Viewport Sizes"
2039
  msgstr "Dernières Catégories"
2040
 
2041
- #: ../admin/view/wp-slimstat-reports.php:414
2042
  msgid "Recent Operating Systems"
2043
  msgstr "Derniers Systèmes d'Exploitation"
2044
 
2045
- #: ../admin/view/wp-slimstat-reports.php:425
2046
  msgid "Recent Browsers"
2047
  msgstr "Navigateurs récents"
2048
 
2049
- #: ../admin/view/wp-slimstat-reports.php:436
2050
  msgid "Recent Languages"
2051
  msgstr "Dernier Language"
2052
 
2053
- #: ../admin/view/wp-slimstat-reports.php:447
2054
  msgid "Top Browser Families"
2055
  msgstr "Principales familles de navigateurs"
2056
 
2057
- #: ../admin/view/wp-slimstat-reports.php:456
2058
  msgid ""
2059
  "This report shows you what user agent families (no version considered) are "
2060
  "popular among your visitors."
@@ -2062,11 +2003,11 @@ msgstr ""
2062
  "Ce rapport affiche quelles familles d'user agent (sans prise en compte de "
2063
  "version) sont populaires chez vos visiteurs."
2064
 
2065
- #: ../admin/view/wp-slimstat-reports.php:459
2066
  msgid "Top OS Families"
2067
  msgstr "Principales familles de SO"
2068
 
2069
- #: ../admin/view/wp-slimstat-reports.php:470
2070
  msgid ""
2071
  "This report shows you what operating system families (no version considered) "
2072
  "are popular among your visitors."
@@ -2074,83 +2015,88 @@ msgstr ""
2074
  "Ce rapport affiche quelles familles de système d'exploitation (sans prise en "
2075
  "compte de version) sont populaires chez vos visiteurs."
2076
 
2077
- #: ../admin/view/wp-slimstat-reports.php:473
2078
  msgid "Recent Users"
2079
  msgstr "Utilisateurs récents"
2080
 
2081
- #: ../admin/view/wp-slimstat-reports.php:485
2082
  msgid "Top Users"
2083
  msgstr "Principaux utilisateurs"
2084
 
2085
- #: ../admin/view/wp-slimstat-reports.php:497
2086
- #: ../admin/view/wp-slimstat-reports.php:506
2087
  msgid "Users"
2088
  msgstr "Utilisateurs"
2089
 
2090
- #: ../admin/view/wp-slimstat-reports.php:507
2091
  #, fuzzy
2092
  msgid "Unique Users"
2093
  msgstr "IPs uniques"
2094
 
2095
- #: ../admin/view/wp-slimstat-reports.php:525
 
 
 
 
 
2096
  msgid "Domains"
2097
  msgstr "Domaines"
2098
 
2099
- #: ../admin/view/wp-slimstat-reports.php:535
2100
  #, fuzzy
2101
  msgid "Traffic Summary"
2102
  msgstr "Sources de trafic"
2103
 
2104
- #: ../admin/view/wp-slimstat-reports.php:544
2105
  msgid "Top Referring Search Engines"
2106
  msgstr "Top Moteurs de Recherche"
2107
 
2108
- #: ../admin/view/wp-slimstat-reports.php:571
2109
  msgid "Recent Outbound Links"
2110
  msgstr "Liens sortants récents"
2111
 
2112
- #: ../admin/view/wp-slimstat-reports.php:583
2113
  msgid "Recent Posts"
2114
  msgstr "Contenus récents"
2115
 
2116
- #: ../admin/view/wp-slimstat-reports.php:611
2117
  msgid "Recent Feeds"
2118
  msgstr "Flux récents"
2119
 
2120
- #: ../admin/view/wp-slimstat-reports.php:623
2121
  msgid "Recent Pages Not Found"
2122
  msgstr "Dernières pages non trouvées"
2123
 
2124
- #: ../admin/view/wp-slimstat-reports.php:635
2125
  msgid "Recent Internal Searches"
2126
  msgstr "Recherches internes récentes"
2127
 
2128
- #: ../admin/view/wp-slimstat-reports.php:645
2129
  #, fuzzy
2130
  msgid "Searches performed using WordPress' built-in search functionality."
2131
  msgstr ""
2132
  "Recherches effectuées en utilisant la fonctionnalité de recherche intégrée "
2133
  "dans Wordpress."
2134
 
2135
- #: ../admin/view/wp-slimstat-reports.php:648
2136
  msgid "Top Categories"
2137
  msgstr "Top Catégories"
2138
 
2139
- #: ../admin/view/wp-slimstat-reports.php:661
2140
  msgid "Top Downloads"
2141
  msgstr "Top Téléchargements"
2142
 
2143
- #: ../admin/view/wp-slimstat-reports.php:672
2144
  msgid ""
2145
  "You can configure Slimstat to track specific file extensions as downloads."
2146
  msgstr ""
2147
 
2148
- #: ../admin/view/wp-slimstat-reports.php:675
2149
  msgid "Recent Events"
2150
  msgstr "Evènements Récents"
2151
 
2152
- #: ../admin/view/wp-slimstat-reports.php:684
2153
- #: ../admin/view/wp-slimstat-reports.php:708
2154
  #, fuzzy
2155
  msgid ""
2156
  "This report lists any <em>event</em> occurred on your website. Please refer "
@@ -2160,49 +2106,49 @@ msgstr ""
2160
  "web. S'il vous plaît se référer à la FAQ pour plus d'informations sur la "
2161
  "façon de tirer parti de cette fonctionnalité."
2162
 
2163
- #: ../admin/view/wp-slimstat-reports.php:687
2164
  msgid "Top Posts"
2165
  msgstr "Top Posts"
2166
 
2167
- #: ../admin/view/wp-slimstat-reports.php:699
2168
  #, fuzzy
2169
  msgid "Top Events"
2170
  msgstr "Contenus récents"
2171
 
2172
- #: ../admin/view/wp-slimstat-reports.php:711
2173
  msgid "Top Internal Searches"
2174
  msgstr "Top Recherches Internes"
2175
 
2176
- #: ../admin/view/wp-slimstat-reports.php:723
2177
  msgid "Recent Categories"
2178
  msgstr "Dernières Catégories"
2179
 
2180
- #: ../admin/view/wp-slimstat-reports.php:735
2181
  msgid "Top Pages Not Found"
2182
  msgstr "Top Pages non trouvées"
2183
 
2184
- #: ../admin/view/wp-slimstat-reports.php:747
2185
  msgid "Top Authors"
2186
  msgstr "Top Auteurs"
2187
 
2188
- #: ../admin/view/wp-slimstat-reports.php:758
2189
  msgid "Top Tags"
2190
  msgstr "Top Mots Clés"
2191
 
2192
- #: ../admin/view/wp-slimstat-reports.php:770
2193
  msgid "Recent Downloads"
2194
  msgstr "Téléchargements récents"
2195
 
2196
- #: ../admin/view/wp-slimstat-reports.php:782
2197
  #, fuzzy
2198
  msgid "Top Outbound Links"
2199
  msgstr "Lien sortant"
2200
 
2201
- #: ../admin/view/wp-slimstat-reports.php:794
2202
  msgid "Your Website"
2203
  msgstr "Votre site web"
2204
 
2205
- #: ../admin/view/wp-slimstat-reports.php:801
2206
  msgid ""
2207
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2208
  "this report is not affected by the filters set here above."
@@ -2210,130 +2156,136 @@ msgstr ""
2210
  "Votre contenu en bref : Posts, commentaires, pingbacks, etc. Merci de noter "
2211
  "que ce rpport ne prend pas en compte les filtres ci-dessus."
2212
 
2213
- #: ../admin/view/wp-slimstat-reports.php:804
2214
  #, fuzzy
2215
  msgid "Top Bounce Pages"
2216
  msgstr "Pages de Rebonds"
2217
 
2218
- #: ../admin/view/wp-slimstat-reports.php:817
2219
  #, fuzzy
2220
  msgid "Top Exit Pages"
2221
  msgstr "Top Pages Vues"
2222
 
2223
- #: ../admin/view/wp-slimstat-reports.php:830
2224
  #, fuzzy
2225
  msgid "Top Entry Pages"
2226
  msgstr "Top Pages Vues"
2227
 
2228
- #: ../admin/view/wp-slimstat-reports.php:843
2229
- #: ../admin/view/wp-slimstat-reports.php:852
2230
  #, fuzzy
2231
  msgid "Outbound Links"
2232
  msgstr "Lien sortant"
2233
 
2234
- #: ../admin/view/wp-slimstat-reports.php:853
2235
  msgid "Unique Outbound"
2236
  msgstr ""
2237
 
2238
- #: ../admin/view/wp-slimstat-reports.php:862
2239
  msgid "World Map"
2240
  msgstr "Carte du monde"
2241
 
2242
- #: ../admin/view/wp-slimstat-reports.php:944
2243
  msgid "Refresh"
2244
  msgstr "Rafraichir"
2245
 
2246
- #: ../admin/view/wp-slimstat-reports.php:981
2247
  #, php-format
2248
  msgid "Results %s - %s of %s"
2249
  msgstr "Résultats %s - %s de %s"
2250
 
2251
- #: ../admin/view/wp-slimstat-reports.php:983
2252
  msgid "Refresh in"
2253
  msgstr "Rafraichir dans "
2254
 
2255
- #: ../admin/view/wp-slimstat-reports.php:1076
2256
  msgid "Category ID"
2257
  msgstr "l'ID de la catégorie de l'article"
2258
 
2259
- #: ../admin/view/wp-slimstat-reports.php:1081
2260
- #: ../admin/view/wp-slimstat-reports.php:1096
2261
  #: ../admin/view/wp-slimstat-reports.php:1102
2262
  #, fuzzy
2263
  msgid "Code"
2264
  msgstr "Code OS "
2265
 
2266
  # Unknown
2267
- #: ../admin/view/wp-slimstat-reports.php:1097
2268
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2269
  msgid "l-"
2270
  msgstr "Inconnue"
2271
 
2272
- #: ../admin/view/wp-slimstat-reports.php:1114
2273
  msgid "URL"
2274
  msgstr ""
2275
 
2276
- #: ../admin/view/wp-slimstat-reports.php:1127
2277
  msgid "Referrer"
2278
  msgstr "Référent"
2279
 
2280
- #: ../admin/view/wp-slimstat-reports.php:1168
2281
- #: ../admin/view/wp-slimstat-reports.php:1415
2282
- #: ../admin/view/wp-slimstat-reports.php:1471
2283
- #: ../admin/view/wp-slimstat-reports.php:1477
2284
- #: ../admin/view/wp-slimstat-reports.php:1483
2285
- #: ../admin/view/wp-slimstat-reports.php:1489
2286
- #: ../admin/view/wp-slimstat-reports.php:1495
2287
- #: ../admin/view/wp-slimstat-reports.php:1501
2288
- #: ../admin/view/wp-slimstat-reports.php:1507
2289
- #: ../admin/view/wp-slimstat-reports.php:1727
2290
  msgid "Hits"
2291
  msgstr "Hits"
2292
 
2293
- #: ../admin/view/wp-slimstat-reports.php:1342
2294
  #, fuzzy
2295
  msgid "Dataset Size"
2296
  msgstr "Taille de la base de données"
2297
 
2298
- #: ../admin/view/wp-slimstat-reports.php:1344
2299
  msgid "Total number of records stored in the database."
2300
  msgstr ""
2301
 
2302
- #: ../admin/view/wp-slimstat-reports.php:1346
2303
  msgid "DB Size"
2304
  msgstr "Taille de la base de données"
2305
 
2306
- #: ../admin/view/wp-slimstat-reports.php:1349
2307
  #, fuzzy
2308
  msgid "Tracking Enabled"
2309
  msgstr "Mode traçage"
2310
 
2311
- #: ../admin/view/wp-slimstat-reports.php:1352
2312
  msgid "Javascript Mode"
2313
  msgstr "Mode Javascript"
2314
 
2315
- #: ../admin/view/wp-slimstat-reports.php:1355
2316
  msgid "Tracking Browser Caps"
2317
  msgstr "Traçage Capacités Navigateurs"
2318
 
2319
- #: ../admin/view/wp-slimstat-reports.php:1358
2320
  msgid "Auto purge"
2321
  msgstr "Purge automatique"
2322
 
2323
- #: ../admin/view/wp-slimstat-reports.php:1361
2324
  msgid "Oldest pageview"
2325
  msgstr "Plus ancienne page vue"
2326
 
2327
- #: ../admin/view/wp-slimstat-reports.php:1362
2328
  msgid "No visits"
2329
  msgstr "Aucune visite"
2330
 
2331
- #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
 
2332
  msgid "Date when the MaxMind Geolocation database was last updated."
2333
  msgstr ""
2334
 
2335
- #: ../admin/view/wp-slimstat-reports.php:1377
2336
- #: ../admin/view/wp-slimstat-reports.php:1535
2337
  msgid ""
2338
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2339
  "the tracking code is executed."
@@ -2341,17 +2293,17 @@ msgstr ""
2341
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
2342
  "vues \" chaque fois que le code de traçage est exécuté."
2343
 
2344
- #: ../admin/view/wp-slimstat-reports.php:1379
2345
  #, fuzzy
2346
  msgid "Days in Range"
2347
  msgstr "Intervalle de date"
2348
 
2349
- #: ../admin/view/wp-slimstat-reports.php:1382
2350
  #, fuzzy
2351
  msgid "Average Daily Pageviews"
2352
  msgstr "Nombre de pages vues en moyenne"
2353
 
2354
- #: ../admin/view/wp-slimstat-reports.php:1384
2355
  #, fuzzy
2356
  msgid ""
2357
  "How many pages have been visited on average every day during the current "
@@ -2359,11 +2311,11 @@ msgid ""
2359
  msgstr ""
2360
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
2361
 
2362
- #: ../admin/view/wp-slimstat-reports.php:1386
2363
  msgid "From Search Results"
2364
  msgstr "Résultat de recherches"
2365
 
2366
- #: ../admin/view/wp-slimstat-reports.php:1388
2367
  msgid ""
2368
  "Visitors who landed on your site after searching for a keyword on Google, "
2369
  "Yahoo, etc."
@@ -2371,7 +2323,7 @@ msgstr ""
2371
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
2372
  "sur Google, Yahoo, etc"
2373
 
2374
- #: ../admin/view/wp-slimstat-reports.php:1392
2375
  msgid ""
2376
  "Used to differentiate between multiple requests to download a file from one "
2377
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2380,11 +2332,11 @@ msgstr ""
2380
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
2381
  "provenant de plusieurs adresses distinctes"
2382
 
2383
- #: ../admin/view/wp-slimstat-reports.php:1394
2384
  msgid "Last 30 minutes"
2385
  msgstr "30 dernières minutes"
2386
 
2387
- #: ../admin/view/wp-slimstat-reports.php:1433
2388
  msgid ""
2389
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2390
  "multiple times if they perform multiple visits."
@@ -2393,15 +2345,15 @@ msgstr ""
2393
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
2394
  "multiples."
2395
 
2396
- #: ../admin/view/wp-slimstat-reports.php:1437
2397
  msgid "It includes only traffic generated by human visitors."
2398
  msgstr "Cela ne comprend que les visites dites humaines."
2399
 
2400
- #: ../admin/view/wp-slimstat-reports.php:1439
2401
  msgid "Bounce rate"
2402
  msgstr "Taux de rebond"
2403
 
2404
- #: ../admin/view/wp-slimstat-reports.php:1441
2405
  msgid ""
2406
  "Percentage of single-page visits, i.e. visits in which the person left your "
2407
  "site from the entrance page."
@@ -2409,77 +2361,77 @@ msgstr ""
2409
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2410
  "desquelles la personne a quitté votre site dès la page d'entrée."
2411
 
2412
- #: ../admin/view/wp-slimstat-reports.php:1443
2413
  msgid "Known visitors"
2414
  msgstr "Visiteurs connus"
2415
 
2416
- #: ../admin/view/wp-slimstat-reports.php:1445
2417
  msgid "Visitors who had previously left a comment on your blog."
2418
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
2419
 
2420
- #: ../admin/view/wp-slimstat-reports.php:1447
2421
  msgid "New visitors"
2422
  msgstr "Nouveaux visiteurs"
2423
 
2424
- #: ../admin/view/wp-slimstat-reports.php:1449
2425
  msgid "Human users who visited your site only once."
2426
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
2427
 
2428
- #: ../admin/view/wp-slimstat-reports.php:1451
2429
  msgid "Bots"
2430
  msgstr "Robots"
2431
 
2432
- #: ../admin/view/wp-slimstat-reports.php:1454
2433
  #, fuzzy
2434
  msgid "Pageviews per visit"
2435
  msgstr "Pages vues par visite"
2436
 
2437
- #: ../admin/view/wp-slimstat-reports.php:1457
2438
  msgid "Longest visit"
2439
  msgstr "Visite la plus longue"
2440
 
2441
- #: ../admin/view/wp-slimstat-reports.php:1458
2442
  msgid "hits"
2443
  msgstr "hits"
2444
 
2445
- #: ../admin/view/wp-slimstat-reports.php:1469
2446
  msgid "0 - 30 seconds"
2447
  msgstr "0 - 30 secondes"
2448
 
2449
- #: ../admin/view/wp-slimstat-reports.php:1475
2450
  msgid "31 - 60 seconds"
2451
  msgstr "31 - 60 secondes"
2452
 
2453
- #: ../admin/view/wp-slimstat-reports.php:1481
2454
  msgid "1 - 3 minutes"
2455
  msgstr "1 - 3 minutes"
2456
 
2457
- #: ../admin/view/wp-slimstat-reports.php:1487
2458
  msgid "3 - 5 minutes"
2459
  msgstr "3 - 5 minutes"
2460
 
2461
- #: ../admin/view/wp-slimstat-reports.php:1493
2462
  msgid "5 - 7 minutes"
2463
  msgstr "5 - 7 minutes"
2464
 
2465
- #: ../admin/view/wp-slimstat-reports.php:1499
2466
  msgid "7 - 10 minutes"
2467
  msgstr "7 - 10 minutes"
2468
 
2469
- #: ../admin/view/wp-slimstat-reports.php:1505
2470
  msgid "More than 10 minutes"
2471
  msgstr "Plus de 10 minutes"
2472
 
2473
- #: ../admin/view/wp-slimstat-reports.php:1517
2474
  #, fuzzy
2475
  msgid "Average visit duration"
2476
  msgstr "Durée des Visites"
2477
 
2478
- #: ../admin/view/wp-slimstat-reports.php:1537
2479
  msgid "Unique Referrers"
2480
  msgstr "Référents uniques"
2481
 
2482
- #: ../admin/view/wp-slimstat-reports.php:1539
2483
  msgid ""
2484
  "A referrer (or referring site) is the site that a visitor previously visited "
2485
  "before following a link to your site."
@@ -2487,11 +2439,11 @@ msgstr ""
2487
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
2488
  "suivre un lien vers votre site."
2489
 
2490
- #: ../admin/view/wp-slimstat-reports.php:1541
2491
  msgid "Direct Pageviews"
2492
  msgstr "Pages Vues Directes"
2493
 
2494
- #: ../admin/view/wp-slimstat-reports.php:1543
2495
  msgid ""
2496
  "Visitors who visited the site by typing the URL directly into their browser. "
2497
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2504,11 +2456,11 @@ msgstr ""
2504
  "courriels non marquées, ou des liens à partir de documents qui ne "
2505
  "contiennent pas de variables de suivi."
2506
 
2507
- #: ../admin/view/wp-slimstat-reports.php:1545
2508
  msgid "From a search result"
2509
  msgstr "Depuis un moteur de recherche"
2510
 
2511
- #: ../admin/view/wp-slimstat-reports.php:1547
2512
  msgid ""
2513
  "Visitors who came to your site via searches on Google or some other search "
2514
  "engine."
@@ -2516,11 +2468,11 @@ msgstr ""
2516
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
2517
  "ou autre."
2518
 
2519
- #: ../admin/view/wp-slimstat-reports.php:1549
2520
  msgid "Unique Landing Pages"
2521
  msgstr "Pages d'Entrées Uniques"
2522
 
2523
- #: ../admin/view/wp-slimstat-reports.php:1551
2524
  msgid ""
2525
  "The first page that a user views during a session. This is also known as the "
2526
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2532,22 +2484,22 @@ msgstr ""
2532
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
2533
  "sera comptée (pour cette visite) comme la page d'entrée."
2534
 
2535
- #: ../admin/view/wp-slimstat-reports.php:1553
2536
  msgid "Bounce Pages"
2537
  msgstr "Pages de Rebonds"
2538
 
2539
- #: ../admin/view/wp-slimstat-reports.php:1555
2540
  #, fuzzy
2541
  msgid "Number of single page visits to your site over the selected period."
2542
  msgstr ""
2543
  "Nombre de visites d'une seule page de votre site au cours de la période "
2544
  "sélectionnée."
2545
 
2546
- #: ../admin/view/wp-slimstat-reports.php:1557
2547
  msgid "New Visitors Rate"
2548
  msgstr "Taux de Nouveaux Visiteurs"
2549
 
2550
- #: ../admin/view/wp-slimstat-reports.php:1559
2551
  #, fuzzy
2552
  msgid ""
2553
  "Percentage of single page visits, i.e. visits in which the person left your "
@@ -2556,11 +2508,11 @@ msgstr ""
2556
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2557
  "desquelles la personne a quitté votre site dès la page d'entrée."
2558
 
2559
- #: ../admin/view/wp-slimstat-reports.php:1561
2560
  msgid "Currently from search engines"
2561
  msgstr "Moteurs de recherche récents"
2562
 
2563
- #: ../admin/view/wp-slimstat-reports.php:1563
2564
  msgid ""
2565
  "Visitors who visited the site in the last 5 minutes coming from a search "
2566
  "engine."
@@ -2568,55 +2520,55 @@ msgstr ""
2568
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
2569
  "d'un moteur de recherche."
2570
 
2571
- #: ../admin/view/wp-slimstat-reports.php:1633
2572
  msgid "Number of pages in your site included in Google's index."
2573
  msgstr "Nombre de pages de votre site indexées par Google."
2574
 
2575
- #: ../admin/view/wp-slimstat-reports.php:1634
2576
  msgid "Google Index"
2577
  msgstr "Index Google"
2578
 
2579
- #: ../admin/view/wp-slimstat-reports.php:1635
2580
  msgid "Number of pages, according to Google, that link back to your site."
2581
  msgstr ""
2582
  "Nombre de pages qui pointent sur votre site, d'après les informations "
2583
  "fournies par Google."
2584
 
2585
- #: ../admin/view/wp-slimstat-reports.php:1636
2586
  msgid "Google Backlinks"
2587
  msgstr "Backlinks Google"
2588
 
2589
- #: ../admin/view/wp-slimstat-reports.php:1637
2590
  msgid ""
2591
  "How many times the Facebook Like button has been approximately clicked on "
2592
  "your site."
2593
  msgstr ""
2594
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
2595
 
2596
- #: ../admin/view/wp-slimstat-reports.php:1638
2597
  msgid "Facebook Likes"
2598
  msgstr "\"J'aime\" Facebook"
2599
 
2600
- #: ../admin/view/wp-slimstat-reports.php:1639
2601
  msgid ""
2602
  "How many times your site has been shared by someone on the social network."
2603
  msgstr ""
2604
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
2605
  "social."
2606
 
2607
- #: ../admin/view/wp-slimstat-reports.php:1640
2608
  msgid "Facebook Shares"
2609
  msgstr "Partages Facebook"
2610
 
2611
- #: ../admin/view/wp-slimstat-reports.php:1641
2612
  msgid "How many times links to your website have been clicked on Facebook."
2613
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
2614
 
2615
- #: ../admin/view/wp-slimstat-reports.php:1642
2616
  msgid "Facebook Clicks"
2617
  msgstr "Clicks Facebook"
2618
 
2619
- #: ../admin/view/wp-slimstat-reports.php:1643
2620
  msgid ""
2621
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2622
  "traffic data."
@@ -2624,23 +2576,23 @@ msgstr ""
2624
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
2625
  "concernant le trafic web."
2626
 
2627
- #: ../admin/view/wp-slimstat-reports.php:1644
2628
  msgid "Alexa World Rank"
2629
  msgstr "Alexa, Classement mondial"
2630
 
2631
- #: ../admin/view/wp-slimstat-reports.php:1645
2632
  msgid "Alexa Country Rank"
2633
  msgstr "Alexa, Classement par pays"
2634
 
2635
- #: ../admin/view/wp-slimstat-reports.php:1646
2636
  msgid "Alexa Popularity"
2637
  msgstr "Alexa, Popularité"
2638
 
2639
- #: ../admin/view/wp-slimstat-reports.php:1657
2640
  msgid "Content Items"
2641
  msgstr "Contenus"
2642
 
2643
- #: ../admin/view/wp-slimstat-reports.php:1659
2644
  msgid ""
2645
  "This value includes not only posts, but also custom post types, regardless "
2646
  "of their status"
@@ -2648,1245 +2600,1259 @@ msgstr ""
2648
  "Cette valeur n'inclut pas seulement les articles de blog, mais aussi des "
2649
  "types personnalisés d'articles, quel que soit leur statut."
2650
 
2651
- #: ../admin/view/wp-slimstat-reports.php:1661
2652
  #, fuzzy
2653
  msgid "Posts"
2654
  msgstr "Top Posts"
2655
 
2656
- #: ../admin/view/wp-slimstat-reports.php:1664
2657
  #, fuzzy
2658
  msgid "Pages"
2659
  msgstr "Pages de sorties les plus utilisées"
2660
 
2661
- #: ../admin/view/wp-slimstat-reports.php:1667
2662
  msgid "Attachments"
2663
  msgstr ""
2664
 
2665
- #: ../admin/view/wp-slimstat-reports.php:1670
2666
  #, fuzzy
2667
  msgid "Revisions"
2668
  msgstr "Permissions"
2669
 
2670
- #: ../admin/view/wp-slimstat-reports.php:1673
2671
  #, fuzzy
2672
  msgid "Comments"
2673
  msgstr "Nombre de commentaires"
2674
 
2675
- #: ../admin/view/wp-slimstat-reports.php:1676
2676
  #, fuzzy
2677
  msgid "Avg Comments per Post"
2678
  msgstr "Moyenne de commentaires par Article"
2679
 
2680
- #: ../admin/view/wp-slimstat-reports.php:1679
2681
  msgid "Avg Server Latency"
2682
  msgstr "Latence moyenne du serveur"
2683
 
2684
- #: ../admin/view/wp-slimstat-reports.php:1681
2685
  msgid ""
2686
  "Latency is the amount of time it takes for the host server to receive and "
2687
  "process a request for a page object. The amount of latency depends largely "
2688
  "on how far away the user is from the server."
2689
  msgstr ""
2690
 
2691
- #: ../admin/view/wp-slimstat-reports.php:1724
2692
  #, fuzzy
2693
  msgid "Coordinates"
2694
  msgstr "Mode traçage"
2695
 
2696
- #: ../admin/view/wp-slimstat-reports.php:1724
2697
  msgid "Date"
2698
  msgstr ""
2699
 
2700
- #: ../admin/view/wp-slimstat-reports.php:1761
2701
- msgid "Error contacting the GetSocial endpoint."
2702
- msgstr ""
2703
-
2704
- #: ../admin/view/wp-slimstat-reports.php:1769
2705
- msgid "Error decoding the GetSocial payload."
2706
- msgstr ""
2707
-
2708
- #: ../admin/view/wp-slimstat-reports.php:1801
2709
- msgid ""
2710
- "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
2711
- ">social media metrics and identify your top performing posts.<br/> <a "
2712
- "class='button-ajax' title='Enable this functionality' href='"
2713
- msgstr ""
2714
-
2715
  # Unknown
2716
- #: ../admin/view/wp-slimstat-reports.php:1811
2717
  msgid "c-xx"
2718
  msgstr "Inconnu"
2719
 
2720
  # Afghanistan
2721
- #: ../admin/view/wp-slimstat-reports.php:1811
2722
  msgid "c-af"
2723
  msgstr "Afghanistan"
2724
 
2725
  # Åland Islands
2726
- #: ../admin/view/wp-slimstat-reports.php:1811
2727
  msgid "c-ax"
2728
  msgstr "Îles Åland"
2729
 
2730
  # Albania
2731
- #: ../admin/view/wp-slimstat-reports.php:1811
2732
  msgid "c-al"
2733
  msgstr "Albanie"
2734
 
2735
  # Algeria
2736
- #: ../admin/view/wp-slimstat-reports.php:1811
2737
  msgid "c-dz"
2738
  msgstr "Algérie"
2739
 
2740
  # Andorra
2741
- #: ../admin/view/wp-slimstat-reports.php:1811
2742
  msgid "c-ad"
2743
  msgstr "Andorre"
2744
 
2745
  # Angola
2746
- #: ../admin/view/wp-slimstat-reports.php:1811
2747
  msgid "c-ao"
2748
  msgstr "Angola"
2749
 
2750
  # Anguilla
2751
- #: ../admin/view/wp-slimstat-reports.php:1811
2752
  msgid "c-ai"
2753
  msgstr "Anguilla"
2754
 
2755
  # Antigua and Barbuda
2756
- #: ../admin/view/wp-slimstat-reports.php:1811
2757
  msgid "c-ag"
2758
  msgstr "Antigua et Barbuda"
2759
 
2760
  # Argentina
2761
- #: ../admin/view/wp-slimstat-reports.php:1811
2762
  msgid "c-ar"
2763
  msgstr "Argentine"
2764
 
2765
  # Armenia
2766
- #: ../admin/view/wp-slimstat-reports.php:1811
2767
  msgid "c-am"
2768
  msgstr "Arménie"
2769
 
2770
  # Aruba
2771
- #: ../admin/view/wp-slimstat-reports.php:1811
2772
  msgid "c-aw"
2773
  msgstr "Aruba"
2774
 
2775
  # Australia
2776
- #: ../admin/view/wp-slimstat-reports.php:1811
2777
  msgid "c-au"
2778
  msgstr "Australie"
2779
 
2780
  # Austria
2781
- #: ../admin/view/wp-slimstat-reports.php:1811
2782
  msgid "c-at"
2783
  msgstr "Autriche"
2784
 
2785
  # Azerbaijan
2786
- #: ../admin/view/wp-slimstat-reports.php:1811
2787
  msgid "c-az"
2788
  msgstr "Azerbaïdjan"
2789
 
2790
  # Bahamas
2791
- #: ../admin/view/wp-slimstat-reports.php:1811
2792
  msgid "c-bs"
2793
  msgstr "Bahamas"
2794
 
2795
  # Bahrain
2796
- #: ../admin/view/wp-slimstat-reports.php:1811
2797
  msgid "c-bh"
2798
  msgstr "Bahreïn"
2799
 
2800
  # Bangladesh
2801
- #: ../admin/view/wp-slimstat-reports.php:1811
2802
  msgid "c-bd"
2803
  msgstr "Bangladesh"
2804
 
2805
  # Barbados
2806
- #: ../admin/view/wp-slimstat-reports.php:1811
2807
  msgid "c-bb"
2808
  msgstr "Barbade"
2809
 
2810
  # Belarus
2811
- #: ../admin/view/wp-slimstat-reports.php:1811
2812
  msgid "c-by"
2813
  msgstr "Bélarus"
2814
 
2815
  # Belgium
2816
- #: ../admin/view/wp-slimstat-reports.php:1811
2817
  msgid "c-be"
2818
  msgstr "Belgique"
2819
 
2820
  # Belize
2821
- #: ../admin/view/wp-slimstat-reports.php:1811
2822
  msgid "c-bz"
2823
  msgstr "Belize"
2824
 
2825
  # Benin
2826
- #: ../admin/view/wp-slimstat-reports.php:1811
2827
  msgid "c-bj"
2828
  msgstr "Bénin"
2829
 
2830
  # Bermuda
2831
- #: ../admin/view/wp-slimstat-reports.php:1811
2832
  msgid "c-bm"
2833
  msgstr "Bermudes"
2834
 
2835
  # Bhutan
2836
- #: ../admin/view/wp-slimstat-reports.php:1811
2837
  msgid "c-bt"
2838
  msgstr "Bhoutan"
2839
 
2840
  # Bolivia
2841
- #: ../admin/view/wp-slimstat-reports.php:1811
2842
  msgid "c-bo"
2843
  msgstr "État plurinational de Bolivie"
2844
 
2845
  # Bosnia and Herzegovina
2846
- #: ../admin/view/wp-slimstat-reports.php:1811
2847
  msgid "c-ba"
2848
  msgstr "Bosnie-Herzégovine"
2849
 
2850
  # Botswana
2851
- #: ../admin/view/wp-slimstat-reports.php:1811
2852
  msgid "c-bw"
2853
  msgstr "Botswana"
2854
 
2855
  # Brazil
2856
- #: ../admin/view/wp-slimstat-reports.php:1811
2857
  msgid "c-br"
2858
  msgstr "Brésil"
2859
 
2860
  # Brunei Darussalam
2861
- #: ../admin/view/wp-slimstat-reports.php:1811
2862
  msgid "c-bn"
2863
  msgstr "Brunéi Darussalam"
2864
 
2865
  # Bulgaria
2866
- #: ../admin/view/wp-slimstat-reports.php:1811
2867
  msgid "c-bg"
2868
  msgstr "Bulgarie"
2869
 
2870
  # Burkina Faso
2871
- #: ../admin/view/wp-slimstat-reports.php:1811
2872
  msgid "c-bf"
2873
  msgstr "Burkina Faso"
2874
 
2875
  # Burundi
2876
- #: ../admin/view/wp-slimstat-reports.php:1811
2877
  msgid "c-bi"
2878
  msgstr "Burundi"
2879
 
2880
  # Cambodia
2881
- #: ../admin/view/wp-slimstat-reports.php:1811
2882
  msgid "c-kh"
2883
  msgstr "Cambodge"
2884
 
2885
  # Cameroon
2886
- #: ../admin/view/wp-slimstat-reports.php:1811
2887
  msgid "c-cm"
2888
  msgstr "Cameroun"
2889
 
2890
  # Canada
2891
- #: ../admin/view/wp-slimstat-reports.php:1811
2892
  msgid "c-ca"
2893
  msgstr "Canada"
2894
 
2895
  # Cape Verde
2896
- #: ../admin/view/wp-slimstat-reports.php:1811
2897
  msgid "c-cv"
2898
  msgstr "Cap-Vert"
2899
 
2900
  # Cayman Islands
2901
- #: ../admin/view/wp-slimstat-reports.php:1811
2902
  msgid "c-ky"
2903
  msgstr "Îles Caïmans"
2904
 
2905
  # Central African Republic
2906
- #: ../admin/view/wp-slimstat-reports.php:1811
2907
  msgid "c-cf"
2908
  msgstr "République Centrafricaine"
2909
 
2910
  # Chad
2911
- #: ../admin/view/wp-slimstat-reports.php:1811
2912
  msgid "c-td"
2913
  msgstr "Tchad"
2914
 
2915
  # Chile
2916
- #: ../admin/view/wp-slimstat-reports.php:1811
2917
  msgid "c-cl"
2918
  msgstr "Chili"
2919
 
2920
  # China
2921
- #: ../admin/view/wp-slimstat-reports.php:1811
2922
  msgid "c-cn"
2923
  msgstr "Chine"
2924
 
2925
  # Colombia
2926
- #: ../admin/view/wp-slimstat-reports.php:1811
2927
  msgid "c-co"
2928
  msgstr "Colombie"
2929
 
2930
  # Comoros
2931
- #: ../admin/view/wp-slimstat-reports.php:1811
2932
  msgid "c-km"
2933
  msgstr "Comores"
2934
 
2935
  # Congo
2936
- #: ../admin/view/wp-slimstat-reports.php:1811
2937
  msgid "c-cg"
2938
  msgstr "Congo"
2939
 
2940
  # The Democratic Republic of the Congo
2941
- #: ../admin/view/wp-slimstat-reports.php:1811
2942
  msgid "c-cd"
2943
  msgstr "République Démocratique du Congo"
2944
 
2945
  # Costa Rica
2946
- #: ../admin/view/wp-slimstat-reports.php:1811
2947
  msgid "c-cr"
2948
  msgstr "Costa Rica"
2949
 
2950
  # Côte d'Ivoire
2951
- #: ../admin/view/wp-slimstat-reports.php:1811
2952
  msgid "c-ci"
2953
  msgstr "Côte d'Ivoire"
2954
 
2955
  # Croatia
2956
- #: ../admin/view/wp-slimstat-reports.php:1811
2957
  msgid "c-hr"
2958
  msgstr "Croatie"
2959
 
2960
  # Cuba
2961
- #: ../admin/view/wp-slimstat-reports.php:1811
2962
  msgid "c-cu"
2963
  msgstr "Cuba"
2964
 
2965
  # Cyprus
2966
- #: ../admin/view/wp-slimstat-reports.php:1811
2967
  msgid "c-cy"
2968
  msgstr "Chypre"
2969
 
2970
  # Czech Republic
2971
- #: ../admin/view/wp-slimstat-reports.php:1811
2972
  msgid "c-cz"
2973
  msgstr "République tchèque"
2974
 
2975
  # Denmark
2976
- #: ../admin/view/wp-slimstat-reports.php:1811
2977
  msgid "c-dk"
2978
  msgstr "Danemark"
2979
 
2980
  # Djibouti
2981
- #: ../admin/view/wp-slimstat-reports.php:1811
2982
  msgid "c-dj"
2983
  msgstr "Djibouti"
2984
 
2985
  # Dominica
2986
- #: ../admin/view/wp-slimstat-reports.php:1811
2987
  msgid "c-dm"
2988
  msgstr "Dominique"
2989
 
2990
  # Dominican Republic
2991
- #: ../admin/view/wp-slimstat-reports.php:1811
2992
  msgid "c-do"
2993
  msgstr "République dominicaine"
2994
 
2995
  # Ecuador
2996
- #: ../admin/view/wp-slimstat-reports.php:1811
2997
  msgid "c-ec"
2998
  msgstr "Équateur"
2999
 
3000
  # Egypt
3001
- #: ../admin/view/wp-slimstat-reports.php:1811
3002
  msgid "c-eg"
3003
  msgstr "Égypte"
3004
 
3005
  # El Salvador
3006
- #: ../admin/view/wp-slimstat-reports.php:1811
3007
  msgid "c-sv"
3008
  msgstr "El Salvador"
3009
 
3010
  # Equatorial Guinea
3011
- #: ../admin/view/wp-slimstat-reports.php:1811
3012
  msgid "c-gq"
3013
  msgstr "Guinée équatoriale"
3014
 
3015
  # Eritrea
3016
- #: ../admin/view/wp-slimstat-reports.php:1811
3017
  msgid "c-er"
3018
  msgstr "Érythrée"
3019
 
3020
  # Estonia
3021
- #: ../admin/view/wp-slimstat-reports.php:1811
3022
  msgid "c-ee"
3023
  msgstr "Estonie"
3024
 
3025
  # Ethiopia
3026
- #: ../admin/view/wp-slimstat-reports.php:1811
3027
  msgid "c-et"
3028
  msgstr "Éthiopie"
3029
 
3030
  # Faroe Islands
3031
- #: ../admin/view/wp-slimstat-reports.php:1811
3032
  msgid "c-fo"
3033
  msgstr "Îles Féroé"
3034
 
3035
  # Falkland Islands (Malvinas)
3036
- #: ../admin/view/wp-slimstat-reports.php:1811
3037
  msgid "c-fk"
3038
  msgstr "Îles Falkland (Malvinas)"
3039
 
3040
  # Fiji
3041
- #: ../admin/view/wp-slimstat-reports.php:1811
3042
  msgid "c-fj"
3043
  msgstr "Fidji"
3044
 
3045
  # Finland
3046
- #: ../admin/view/wp-slimstat-reports.php:1811
3047
  msgid "c-fi"
3048
  msgstr "Finlande"
3049
 
3050
  # France
3051
- #: ../admin/view/wp-slimstat-reports.php:1811
3052
  msgid "c-fr"
3053
  msgstr "France"
3054
 
3055
  # French Guiana
3056
- #: ../admin/view/wp-slimstat-reports.php:1811
3057
  msgid "c-gf"
3058
  msgstr "Guyane française"
3059
 
3060
  # Gabon
3061
- #: ../admin/view/wp-slimstat-reports.php:1811
3062
  msgid "c-ga"
3063
  msgstr "Gabon"
3064
 
3065
  # Gambia
3066
- #: ../admin/view/wp-slimstat-reports.php:1811
3067
  msgid "c-gm"
3068
  msgstr "Gambie"
3069
 
3070
  # Georgia
3071
- #: ../admin/view/wp-slimstat-reports.php:1811
3072
  msgid "c-ge"
3073
  msgstr "Géorgie"
3074
 
3075
  # Germany
3076
- #: ../admin/view/wp-slimstat-reports.php:1811
3077
  msgid "c-de"
3078
  msgstr "Allemagne"
3079
 
3080
  # Ghana
3081
- #: ../admin/view/wp-slimstat-reports.php:1811
3082
  msgid "c-gh"
3083
  msgstr "Ghana"
3084
 
3085
  # Greece
3086
- #: ../admin/view/wp-slimstat-reports.php:1811
3087
  msgid "c-gr"
3088
  msgstr "Grèce"
3089
 
3090
  # Greenland
3091
- #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-gl"
3093
  msgstr "Groenland"
3094
 
3095
  # Grenada
3096
- #: ../admin/view/wp-slimstat-reports.php:1811
3097
  msgid "c-gd"
3098
  msgstr "Grenade"
3099
 
3100
  # Guadeloupe
3101
- #: ../admin/view/wp-slimstat-reports.php:1811
3102
  msgid "c-gp"
3103
  msgstr "Guadeloupe"
3104
 
3105
  # Guatemala
3106
- #: ../admin/view/wp-slimstat-reports.php:1811
3107
  msgid "c-gt"
3108
  msgstr "Guatemala"
3109
 
3110
  # Guinea
3111
- #: ../admin/view/wp-slimstat-reports.php:1811
3112
  msgid "c-gn"
3113
  msgstr "Guinée"
3114
 
3115
  # Guinea-Bissau
3116
- #: ../admin/view/wp-slimstat-reports.php:1811
3117
  msgid "c-gw"
3118
  msgstr "Guinée-Bissau"
3119
 
3120
  # Guyana
3121
- #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-gy"
3123
  msgstr "Guyana"
3124
 
3125
  # Haiti
3126
- #: ../admin/view/wp-slimstat-reports.php:1811
3127
  msgid "c-ht"
3128
  msgstr "Haïti"
3129
 
3130
  # Honduras
3131
- #: ../admin/view/wp-slimstat-reports.php:1811
3132
  msgid "c-hn"
3133
  msgstr "Honduras"
3134
 
3135
  # Hong Kong
3136
- #: ../admin/view/wp-slimstat-reports.php:1811
3137
  msgid "c-hk"
3138
  msgstr "Hong Kong"
3139
 
3140
  # Hungary
3141
- #: ../admin/view/wp-slimstat-reports.php:1811
3142
  msgid "c-hu"
3143
  msgstr "Hongrie"
3144
 
3145
  # Iceland
3146
- #: ../admin/view/wp-slimstat-reports.php:1811
3147
  msgid "c-is"
3148
  msgstr "Islande"
3149
 
3150
  # India
3151
- #: ../admin/view/wp-slimstat-reports.php:1811
3152
  msgid "c-in"
3153
  msgstr "Inde"
3154
 
3155
  # Indonesia
3156
- #: ../admin/view/wp-slimstat-reports.php:1811
3157
  msgid "c-id"
3158
  msgstr "Indonésie"
3159
 
3160
  # Islamic Republic of Iran
3161
- #: ../admin/view/wp-slimstat-reports.php:1811
3162
  msgid "c-ir"
3163
  msgstr "République islamique d'Iran"
3164
 
3165
  # Iraq
3166
- #: ../admin/view/wp-slimstat-reports.php:1811
3167
  msgid "c-iq"
3168
  msgstr "Irak"
3169
 
3170
  # Ireland
3171
- #: ../admin/view/wp-slimstat-reports.php:1811
3172
  msgid "c-ie"
3173
  msgstr "Irlande"
3174
 
3175
  # Israel
3176
- #: ../admin/view/wp-slimstat-reports.php:1811
3177
  msgid "c-il"
3178
  msgstr "Israël"
3179
 
3180
  # Italy
3181
- #: ../admin/view/wp-slimstat-reports.php:1811
3182
  msgid "c-it"
3183
  msgstr "Italie"
3184
 
3185
  # Jamaica
3186
- #: ../admin/view/wp-slimstat-reports.php:1811
3187
  msgid "c-jm"
3188
  msgstr "Jamaïque"
3189
 
3190
  # Japan
3191
- #: ../admin/view/wp-slimstat-reports.php:1811
3192
  msgid "c-jp"
3193
  msgstr "Japon"
3194
 
3195
  # Jordan
3196
- #: ../admin/view/wp-slimstat-reports.php:1811
3197
  msgid "c-jo"
3198
  msgstr "Jordanie"
3199
 
3200
  # Kazakhstan
3201
- #: ../admin/view/wp-slimstat-reports.php:1811
3202
  msgid "c-kz"
3203
  msgstr "Kazakhstan"
3204
 
3205
  # Kenya
3206
- #: ../admin/view/wp-slimstat-reports.php:1811
3207
  msgid "c-ke"
3208
  msgstr "Kenya"
3209
 
3210
  # Nauru
3211
- #: ../admin/view/wp-slimstat-reports.php:1811
3212
  msgid "c-nr"
3213
  msgstr "Nauru"
3214
 
3215
  # Democratic People's Republic of Korea
3216
- #: ../admin/view/wp-slimstat-reports.php:1811
3217
  msgid "c-kp"
3218
  msgstr "République populaire démocratique de Corée"
3219
 
3220
  # Republic of Korea
3221
- #: ../admin/view/wp-slimstat-reports.php:1811
3222
  msgid "c-kr"
3223
  msgstr "République de Corée"
3224
 
3225
- #: ../admin/view/wp-slimstat-reports.php:1811
3226
  msgid "c-kv"
3227
  msgstr "Kossovo"
3228
 
3229
  # Kuwait
3230
- #: ../admin/view/wp-slimstat-reports.php:1811
3231
  msgid "c-kw"
3232
  msgstr "Koweït"
3233
 
3234
  # Kyrgyzstan
3235
- #: ../admin/view/wp-slimstat-reports.php:1811
3236
  msgid "c-kg"
3237
  msgstr "Kirghizistan"
3238
 
3239
  # Lao People's Democratic Republic
3240
- #: ../admin/view/wp-slimstat-reports.php:1811
3241
  msgid "c-la"
3242
  msgstr "République démocratique populaire lao"
3243
 
3244
  # Latvia
3245
- #: ../admin/view/wp-slimstat-reports.php:1811
3246
  msgid "c-lv"
3247
  msgstr "Lettonie"
3248
 
3249
  # Lebanon
3250
- #: ../admin/view/wp-slimstat-reports.php:1811
3251
  msgid "c-lb"
3252
  msgstr "Liban"
3253
 
3254
  # Lesotho
3255
- #: ../admin/view/wp-slimstat-reports.php:1811
3256
  msgid "c-ls"
3257
  msgstr "Lesotho"
3258
 
3259
  # Liberia
3260
- #: ../admin/view/wp-slimstat-reports.php:1811
3261
  msgid "c-lr"
3262
  msgstr "Libéria"
3263
 
3264
  # Libyan Arab Jamahiriya
3265
- #: ../admin/view/wp-slimstat-reports.php:1811
3266
  msgid "c-ly"
3267
  msgstr "Jamahiriya arabe libyenne"
3268
 
3269
  # Liechtenstein
3270
- #: ../admin/view/wp-slimstat-reports.php:1811
3271
  msgid "c-li"
3272
  msgstr "Liechtenstein"
3273
 
3274
  # Lithuania
3275
- #: ../admin/view/wp-slimstat-reports.php:1811
3276
  msgid "c-lt"
3277
  msgstr "Lituanie"
3278
 
3279
  # Luxembourg
3280
- #: ../admin/view/wp-slimstat-reports.php:1811
3281
  msgid "c-lu"
3282
  msgstr "Luxembourg"
3283
 
3284
  # The Former Yugoslav Republic of Macedonia
3285
- #: ../admin/view/wp-slimstat-reports.php:1811
3286
  msgid "c-mk"
3287
  msgstr "Ex-république yougoslave de Macédoine"
3288
 
3289
  # Madagascar
3290
- #: ../admin/view/wp-slimstat-reports.php:1811
3291
  msgid "c-mg"
3292
  msgstr "Madagascar"
3293
 
3294
  # Malawi
3295
- #: ../admin/view/wp-slimstat-reports.php:1811
3296
  msgid "c-mw"
3297
  msgstr "Malawi"
3298
 
3299
  # Malaysia
3300
- #: ../admin/view/wp-slimstat-reports.php:1811
3301
  msgid "c-my"
3302
  msgstr "Malaisie"
3303
 
3304
  # Mali
3305
- #: ../admin/view/wp-slimstat-reports.php:1811
3306
  msgid "c-ml"
3307
  msgstr "Mali"
3308
 
3309
  # Malta
3310
- #: ../admin/view/wp-slimstat-reports.php:1811
3311
  msgid "c-mt"
3312
  msgstr "Malte"
3313
 
3314
  # Martinique
3315
- #: ../admin/view/wp-slimstat-reports.php:1811
3316
  msgid "c-mq"
3317
  msgstr "Martinique"
3318
 
3319
  # Mauritania
3320
- #: ../admin/view/wp-slimstat-reports.php:1811
3321
  msgid "c-mr"
3322
  msgstr "Mauritanie"
3323
 
3324
  # Mauritius
3325
- #: ../admin/view/wp-slimstat-reports.php:1811
3326
  msgid "c-mu"
3327
  msgstr "Maurice"
3328
 
3329
  # Mexico
3330
- #: ../admin/view/wp-slimstat-reports.php:1811
3331
  msgid "c-mx"
3332
  msgstr "Mexique"
3333
 
3334
  # Moldova
3335
- #: ../admin/view/wp-slimstat-reports.php:1811
3336
  msgid "c-md"
3337
  msgstr "République de Moldova"
3338
 
3339
  # Mongolia
3340
- #: ../admin/view/wp-slimstat-reports.php:1811
3341
  msgid "c-mn"
3342
  msgstr "Mongolie"
3343
 
3344
  # Montenegro
3345
- #: ../admin/view/wp-slimstat-reports.php:1811
3346
  msgid "c-me"
3347
  msgstr "Monténégro"
3348
 
3349
  # Montserrat
3350
- #: ../admin/view/wp-slimstat-reports.php:1811
3351
  msgid "c-ms"
3352
  msgstr "Montserrat"
3353
 
3354
  # Morocco
3355
- #: ../admin/view/wp-slimstat-reports.php:1811
3356
  msgid "c-ma"
3357
  msgstr "Maroc"
3358
 
3359
  # Mozambique
3360
- #: ../admin/view/wp-slimstat-reports.php:1811
3361
  msgid "c-mz"
3362
  msgstr "Mozambique"
3363
 
3364
  # Myanmar
3365
- #: ../admin/view/wp-slimstat-reports.php:1811
3366
  msgid "c-mm"
3367
  msgstr "Myanmar"
3368
 
3369
  # Namibia
3370
- #: ../admin/view/wp-slimstat-reports.php:1811
3371
  msgid "c-na"
3372
  msgstr "Namibie"
3373
 
3374
  # Nepal
3375
- #: ../admin/view/wp-slimstat-reports.php:1811
3376
  msgid "c-np"
3377
  msgstr "Népal"
3378
 
3379
  # Netherlands
3380
- #: ../admin/view/wp-slimstat-reports.php:1811
3381
  msgid "c-nl"
3382
  msgstr "Pays-bas"
3383
 
3384
  # New Caledonia
3385
- #: ../admin/view/wp-slimstat-reports.php:1811
3386
  msgid "c-nc"
3387
  msgstr "Nouvelle-Calédonie"
3388
 
3389
  # New Zealand
3390
- #: ../admin/view/wp-slimstat-reports.php:1811
3391
  msgid "c-nz"
3392
  msgstr "Nouvelle-Zélande"
3393
 
3394
  # Nicaragua
3395
- #: ../admin/view/wp-slimstat-reports.php:1811
3396
  msgid "c-ni"
3397
  msgstr "Nicaragua"
3398
 
3399
  # Niger
3400
- #: ../admin/view/wp-slimstat-reports.php:1811
3401
  msgid "c-ne"
3402
  msgstr "Niger"
3403
 
3404
  # Nigeria
3405
- #: ../admin/view/wp-slimstat-reports.php:1811
3406
  msgid "c-ng"
3407
  msgstr "Nigéria"
3408
 
3409
  # Norway
3410
- #: ../admin/view/wp-slimstat-reports.php:1811
3411
  msgid "c-no"
3412
  msgstr "Norvège"
3413
 
3414
  # Oman
3415
- #: ../admin/view/wp-slimstat-reports.php:1811
3416
  msgid "c-om"
3417
  msgstr "Oman"
3418
 
3419
  # Pakistan
3420
- #: ../admin/view/wp-slimstat-reports.php:1811
3421
  msgid "c-pk"
3422
  msgstr "Pakistan"
3423
 
3424
  # Palau
3425
- #: ../admin/view/wp-slimstat-reports.php:1811
3426
  msgid "c-pw"
3427
  msgstr "Palaos"
3428
 
3429
  # Occupied Palestinian Territory
3430
- #: ../admin/view/wp-slimstat-reports.php:1811
3431
  msgid "c-ps"
3432
  msgstr "Territoire palestinien occupé"
3433
 
3434
  # Panama
3435
- #: ../admin/view/wp-slimstat-reports.php:1811
3436
  msgid "c-pa"
3437
  msgstr "Panama"
3438
 
3439
  # Papua New Guinea
3440
- #: ../admin/view/wp-slimstat-reports.php:1811
3441
  msgid "c-pg"
3442
  msgstr "Papouasie-Nouvelle-Guinée"
3443
 
3444
  # Paraguay
3445
- #: ../admin/view/wp-slimstat-reports.php:1811
3446
  msgid "c-py"
3447
  msgstr "Paraguay"
3448
 
3449
  # Peru
3450
- #: ../admin/view/wp-slimstat-reports.php:1811
3451
  msgid "c-pe"
3452
  msgstr "Pérou"
3453
 
3454
  # Philippines
3455
- #: ../admin/view/wp-slimstat-reports.php:1811
3456
  msgid "c-ph"
3457
  msgstr "Philippines"
3458
 
3459
  # Poland
3460
- #: ../admin/view/wp-slimstat-reports.php:1811
3461
  msgid "c-pl"
3462
  msgstr "Pologne"
3463
 
3464
  # Portugal
3465
- #: ../admin/view/wp-slimstat-reports.php:1811
3466
  msgid "c-pt"
3467
  msgstr "Portugal"
3468
 
3469
  # Puerto Rico
3470
- #: ../admin/view/wp-slimstat-reports.php:1811
3471
  msgid "c-pr"
3472
  msgstr "Porto Rico"
3473
 
3474
  # Qatar
3475
- #: ../admin/view/wp-slimstat-reports.php:1811
3476
  msgid "c-qa"
3477
  msgstr "Qatar"
3478
 
3479
  # Réunion
3480
- #: ../admin/view/wp-slimstat-reports.php:1811
3481
  msgid "c-re"
3482
  msgstr "Réunion"
3483
 
3484
  # Romania
3485
- #: ../admin/view/wp-slimstat-reports.php:1811
3486
  msgid "c-ro"
3487
  msgstr "Roumanie"
3488
 
3489
  # Russian Federation
3490
- #: ../admin/view/wp-slimstat-reports.php:1811
3491
  msgid "c-ru"
3492
  msgstr "Fédération de Russie"
3493
 
3494
  # Rwanda
3495
- #: ../admin/view/wp-slimstat-reports.php:1811
3496
  msgid "c-rw"
3497
  msgstr "Rwanda"
3498
 
3499
  # Saint Kitts and Nevis
3500
- #: ../admin/view/wp-slimstat-reports.php:1811
3501
  msgid "c-kn"
3502
  msgstr "Saint-Kitts-et-Nevis"
3503
 
3504
  # Saint Lucia
3505
- #: ../admin/view/wp-slimstat-reports.php:1811
3506
  msgid "c-lc"
3507
  msgstr "Sainte-Lucie"
3508
 
3509
  # Saint Martin
3510
- #: ../admin/view/wp-slimstat-reports.php:1811
3511
  msgid "c-mf"
3512
  msgstr "Saint-Martin"
3513
 
3514
  # Saint Vincent and the Grenadines
3515
- #: ../admin/view/wp-slimstat-reports.php:1811
3516
  msgid "c-vc"
3517
  msgstr "Saint-Vincent-et-les Grenadines"
3518
 
3519
  # Samoa
3520
- #: ../admin/view/wp-slimstat-reports.php:1811
3521
  msgid "c-ws"
3522
  msgstr "Samoa"
3523
 
3524
  # Sao Tome and Principe
3525
- #: ../admin/view/wp-slimstat-reports.php:1811
3526
  msgid "c-st"
3527
  msgstr "Sao Tomé-et-Principe"
3528
 
3529
  # Saudi Arabia
3530
- #: ../admin/view/wp-slimstat-reports.php:1811
3531
  msgid "c-sa"
3532
  msgstr "Arabie saoudite"
3533
 
3534
  # Senegal
3535
- #: ../admin/view/wp-slimstat-reports.php:1811
3536
  msgid "c-sn"
3537
  msgstr "Sénégal"
3538
 
3539
  # Serbia
3540
- #: ../admin/view/wp-slimstat-reports.php:1811
3541
  msgid "c-rs"
3542
  msgstr "Serbie"
3543
 
3544
  # Sierra Leone
3545
- #: ../admin/view/wp-slimstat-reports.php:1811
3546
  msgid "c-sl"
3547
  msgstr "Sierra Leone"
3548
 
3549
  # Singapore
3550
- #: ../admin/view/wp-slimstat-reports.php:1811
3551
  msgid "c-sg"
3552
  msgstr "Singapour"
3553
 
3554
  # Slovakia
3555
- #: ../admin/view/wp-slimstat-reports.php:1811
3556
  msgid "c-sk"
3557
  msgstr "Slovaquie"
3558
 
3559
  # Slovenia
3560
- #: ../admin/view/wp-slimstat-reports.php:1811
3561
  msgid "c-si"
3562
  msgstr "Slovénie"
3563
 
3564
  # Solomon Islands
3565
- #: ../admin/view/wp-slimstat-reports.php:1811
3566
  msgid "c-sb"
3567
  msgstr "Îles Salomon"
3568
 
3569
  # Somalia
3570
- #: ../admin/view/wp-slimstat-reports.php:1811
3571
  msgid "c-so"
3572
  msgstr "Somalie"
3573
 
3574
  # South Africa
3575
- #: ../admin/view/wp-slimstat-reports.php:1811
3576
  msgid "c-za"
3577
  msgstr "Afrique du sud"
3578
 
3579
  # South Georgia and the South Sandwich Islands
3580
- #: ../admin/view/wp-slimstat-reports.php:1811
3581
  msgid "c-gs"
3582
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
3583
 
3584
  # Spain
3585
- #: ../admin/view/wp-slimstat-reports.php:1811
3586
  msgid "c-es"
3587
  msgstr "Espagne"
3588
 
3589
  # Sri Lanka
3590
- #: ../admin/view/wp-slimstat-reports.php:1811
3591
  msgid "c-lk"
3592
  msgstr "Sri Lanka"
3593
 
3594
  # Seychelles
3595
- #: ../admin/view/wp-slimstat-reports.php:1811
3596
  msgid "c-sc"
3597
  msgstr "Seychelles"
3598
 
3599
  # Sudan
3600
- #: ../admin/view/wp-slimstat-reports.php:1811
3601
  msgid "c-sd"
3602
  msgstr "Soudan"
3603
 
3604
- #: ../admin/view/wp-slimstat-reports.php:1811
3605
  msgid "c-ss"
3606
  msgstr "Soudan du Sud"
3607
 
3608
  # Suriname
3609
- #: ../admin/view/wp-slimstat-reports.php:1811
3610
  msgid "c-sr"
3611
  msgstr "Suriname"
3612
 
3613
  # Svalbard and Jan Mayen
3614
- #: ../admin/view/wp-slimstat-reports.php:1811
3615
  msgid "c-sj"
3616
  msgstr "Svalbard et île Jan Mayen"
3617
 
3618
  # Swaziland
3619
- #: ../admin/view/wp-slimstat-reports.php:1811
3620
  msgid "c-sz"
3621
  msgstr "Swaziland"
3622
 
3623
  # Sweden
3624
- #: ../admin/view/wp-slimstat-reports.php:1811
3625
  msgid "c-se"
3626
  msgstr "Suède"
3627
 
3628
  # Switzerland
3629
- #: ../admin/view/wp-slimstat-reports.php:1811
3630
  msgid "c-ch"
3631
  msgstr "Suisse"
3632
 
3633
  # Syrian Arab Republic
3634
- #: ../admin/view/wp-slimstat-reports.php:1811
3635
  msgid "c-sy"
3636
  msgstr "République arabe syrienne"
3637
 
3638
  # Taiwan, Province of China
3639
- #: ../admin/view/wp-slimstat-reports.php:1811
3640
  msgid "c-tw"
3641
  msgstr "Taïwan, province de Chine"
3642
 
3643
  # Tajikistan
3644
- #: ../admin/view/wp-slimstat-reports.php:1811
3645
  msgid "c-tj"
3646
  msgstr "Tadjikistan"
3647
 
3648
  # United Republic of Tanzania
3649
- #: ../admin/view/wp-slimstat-reports.php:1811
3650
  msgid "c-tz"
3651
  msgstr "République-unie de Tanzanie"
3652
 
3653
  # Thailand
3654
- #: ../admin/view/wp-slimstat-reports.php:1811
3655
  msgid "c-th"
3656
  msgstr "Thaïlande"
3657
 
3658
  # Timor-Leste
3659
- #: ../admin/view/wp-slimstat-reports.php:1811
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-28 21:33-0500\n"
6
+ "PO-Revision-Date: 2016-01-28 21:33-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: Michael Bastin\n"
9
  "Language: fr_FR\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../admin/config/index.php:33
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
26
  "Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
27
  "d'informations"
28
 
29
+ #: ../admin/config/index.php:48
30
  msgid "Read access: username not found"
31
  msgstr "Accès lecture : username inexistant"
32
 
33
+ #: ../admin/config/index.php:58 ../admin/config/index.php:83
34
  msgid ""
35
  "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
36
  "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
40
  "org/Roles_and_Capabilities\" target=\"_new\">cette page</a> pour plus "
41
  "d'informations"
42
 
43
+ #: ../admin/config/index.php:73
44
  msgid "Config access: username not found"
45
  msgstr "Accès configuration : username inexistant"
46
 
47
+ #: ../admin/config/index.php:92
48
  msgid "Basic"
49
  msgstr ""
50
 
51
+ #: ../admin/config/index.php:94 ../admin/config/index.php:115
52
  msgid "Tracker"
53
  msgstr "Traçage"
54
 
55
+ #: ../admin/config/index.php:95
56
  msgid "Enable Tracking"
57
  msgstr "Activer le traçage"
58
 
59
+ #: ../admin/config/index.php:95
60
  #, fuzzy
61
  msgid "Turn the tracker on or off, while keeping the reports accessible."
62
  msgstr ""
63
  "Activez ou désactivez le Traceur, mais conservez le rapport accessible (Ce "
64
  "que vous n'auriez pas si vous désactiviez le plugin.)"
65
 
66
+ #: ../admin/config/index.php:96
67
  msgid "Tracking Mode"
68
  msgstr "Mode traçage"
69
 
70
+ #: ../admin/config/index.php:96
71
  #, fuzzy
72
  msgid ""
73
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
82
  "ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
83
  "recherche et autres robots ne seront pas suivis."
84
 
85
+ #: ../admin/config/index.php:96
86
  msgid "Client Side"
87
  msgstr ""
88
 
89
+ #: ../admin/config/index.php:96
90
  #, fuzzy
91
  msgid "Server Side"
92
  msgstr "Côté serveur"
93
 
94
+ #: ../admin/config/index.php:97
95
  msgid "Stealth Mode"
96
  msgstr ""
97
 
98
+ #: ../admin/config/index.php:97
99
  msgid ""
100
  "Do not add the javascript tracking code to your pages, if tracking mode is "
101
  "set to Server. Please note: if enabled, this will prevent the tracker from "
102
  "collecting information such as screen resolution, outbound links, downloads, "
103
+ "etc. This option is ignored if Tracking Mode is set to Client."
104
  msgstr ""
105
 
106
+ #: ../admin/config/index.php:97 ../admin/view/wp-slimstat-reports.php:1368
107
  msgid "Off"
108
  msgstr ""
109
 
110
+ #: ../admin/config/index.php:97
111
  msgid "On"
112
  msgstr "Actif"
113
 
114
+ #: ../admin/config/index.php:98
115
  #, fuzzy
116
  msgid "Admin Pages"
117
  msgstr "Tracer les pages Administrateur"
118
 
119
+ #: ../admin/config/index.php:98
120
  msgid "Enable this option to track your users' activity within the admin."
121
  msgstr ""
122
  "Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
123
 
124
+ #: ../admin/config/index.php:98
125
  #, fuzzy
126
  msgid "Track"
127
  msgstr "Traçage"
128
 
129
+ #: ../admin/config/index.php:98
130
  #, fuzzy
131
  msgid "Do not track"
132
  msgstr "ne contient pas"
133
 
134
+ #: ../admin/config/index.php:100
135
  msgid "WordPress Integration"
136
  msgstr "Intégration WordPress"
137
 
138
+ #: ../admin/config/index.php:101
139
  msgid "Menu Position"
140
  msgstr "Position du Menu"
141
 
142
+ #: ../admin/config/index.php:101
143
  msgid ""
144
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
145
  "admin bar (if visible)."
147
  "Choisir entre un menu d'administration dans la barre latérale de WordPress "
148
  "ou un menu déroulant dans la barre supérieure (si elle est affichée)."
149
 
150
+ #: ../admin/config/index.php:101
151
  msgid "Side Menu"
152
  msgstr "Menu latéral"
153
 
154
+ #: ../admin/config/index.php:101
155
  msgid "Admin Bar"
156
  msgstr "Barre d'Administration"
157
 
158
+ #: ../admin/config/index.php:102
159
  #, fuzzy
160
  msgid "Posts and Pages"
161
  msgstr "Etendre les Stats aux articles"
162
 
163
+ #: ../admin/config/index.php:102
164
  #, fuzzy
165
  msgid ""
166
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
169
  "Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
170
  "de visites par article (peut ralentir le rendu des pages)."
171
 
172
+ #: ../admin/config/index.php:103
173
  #, fuzzy
174
  msgid "Report Interval"
175
  msgstr "Intervalle unique"
176
 
177
+ #: ../admin/config/index.php:103
178
  msgid ""
179
  "Enter the time range, in days, that should be used to calculate the value "
180
  "here above."
181
  msgstr ""
182
 
183
+ #: ../admin/config/index.php:104
184
  #, fuzzy
185
  msgid "Report Type"
186
  msgstr "Rapports"
187
 
188
+ #: ../admin/config/index.php:104
189
  msgid ""
190
  "Select what kind of information you would like to see displayed on the Posts "
191
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
192
  "IPs consider only one hit per user in the given time range."
193
  msgstr ""
194
 
195
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:81
196
+ #: ../admin/view/wp-slimstat-reports.php:90
197
+ #: ../admin/view/wp-slimstat-reports.php:1384
198
+ #: ../admin/view/wp-slimstat-reports.php:1542
199
  msgid "Pageviews"
200
  msgstr "Pages vues"
201
 
202
+ #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:91
203
+ #: ../admin/view/wp-slimstat-reports.php:284
204
+ #: ../admin/view/wp-slimstat-reports.php:525
205
+ #: ../admin/view/wp-slimstat-reports.php:1399
206
+ #: ../admin/view/wp-slimstat-reports.php:1444
207
  msgid "Unique IPs"
208
  msgstr "IPs uniques"
209
 
210
+ #: ../admin/config/index.php:105
211
  msgid "Dashboard Widgets"
212
  msgstr ""
213
 
214
+ #: ../admin/config/index.php:105
215
  msgid ""
216
  "Choose if you want to have the most important reports on your WordPress "
217
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
218
  msgstr ""
219
 
220
+ #: ../admin/config/index.php:106
221
  #, fuzzy
222
  msgid "Hide Add-ons"
223
  msgstr "Add-ons"
224
 
225
+ #: ../admin/config/index.php:106
226
  msgid ""
227
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
228
  "from the list of plugins in WordPress. Please note that you will still "
229
  "receive updates for hidden add-ons."
230
  msgstr ""
231
 
232
+ #: ../admin/config/index.php:108
233
  msgid "Database"
234
  msgstr "Base de données"
235
 
236
+ #: ../admin/config/index.php:109
237
  msgid "Retain data for"
238
  msgstr "Conserver les données pour"
239
 
240
+ #: ../admin/config/index.php:109
241
  #, fuzzy
242
  msgid ""
243
  "Clean-up log entries older than the number of days specified here above. "
248
  "ci-dessus. Entrer <strong>0</strong> (number zero) si vous souhaitez "
249
  "conserver toutes vos données sans limites de durée."
250
 
251
+ #: ../admin/config/index.php:109
252
  msgid "Next clean-up on"
253
  msgstr "Prochain nettoyage le"
254
 
255
+ #: ../admin/config/index.php:109
256
  #, fuzzy, php-format
257
  msgid ""
258
  "Entries logged on or before %s will be archived or deleted according to the "
260
  msgstr ""
261
  "Les données enregistrées le ou avant le %s seront définitivement supprimées. "
262
 
263
+ #: ../admin/config/index.php:109 ../admin/view/index.php:102
264
  #: ../admin/view/wp-slimstat-db.php:79
265
+ #: ../admin/view/wp-slimstat-reports.php:1368
266
  msgid "days"
267
  msgstr "jours"
268
 
269
+ #: ../admin/config/index.php:110
270
  #, fuzzy
271
+ msgid "Archive records"
272
+ msgstr "Enregistrements"
273
 
274
+ #: ../admin/config/index.php:110
275
  msgid ""
276
  "If DB space is not an issue, you can decide to archive older records in "
277
  "another table, instead of deleting them. This way performance is preserved, "
281
  "is uninstalled. Make sure to backup your data before you proceed."
282
  msgstr ""
283
 
284
+ #: ../admin/config/index.php:117
285
  #, fuzzy
286
  msgid "Advanced Options"
287
  msgstr "Filtres Avancés"
288
 
289
+ #: ../admin/config/index.php:118
290
  msgid "Session Duration"
291
  msgstr "Durée session"
292
 
293
+ #: ../admin/config/index.php:118
294
  msgid ""
295
  "How many seconds should a human session last? Google Analytics sets it to "
296
  "1800 seconds."
298
  "Définit le nombre de secondes qu'une visite devrait durer. Google Analytics "
299
  "fixe cette durée à 1800 secondes."
300
 
301
+ #: ../admin/config/index.php:118 ../admin/config/index.php:189
302
  msgid "seconds"
303
  msgstr "secondes"
304
 
305
+ #: ../admin/config/index.php:119
306
  msgid "Extend Session"
307
  msgstr "Etendre la session"
308
 
309
+ #: ../admin/config/index.php:119
310
  msgid "Extend the duration of a session each time the user visits a new page."
311
  msgstr ""
312
  "Prolonger la durée d'une session à chaque fois que l'utilisateur visite une "
313
  "page."
314
 
315
+ #: ../admin/config/index.php:120
316
+ #, fuzzy
317
+ msgid "Browser Detection"
318
+ msgstr "Version de navigateur"
319
+
320
+ #: ../admin/config/index.php:120
321
+ msgid ""
322
+ "The heuristic function is much faster and requires very little memory, but "
323
+ "for uncommon user agent strings it might be less accurate, and produce a "
324
+ "unreliable match. Browscap.ini, the third party database we use, is memory "
325
+ "intensive and it uses a bruteforce approach to determine a visitor's "
326
+ "browser, but it's very accurate and precise even with the most obscure user "
327
+ "agent strings (almost all of them). You decide which one should be used "
328
+ "first: the other one will only be invoked if the one you chose did not "
329
+ "produce a match."
330
+ msgstr ""
331
+
332
+ #: ../admin/config/index.php:120
333
+ #, fuzzy
334
+ msgid "Browscap"
335
+ msgstr "Navigateur Web"
336
+
337
+ #: ../admin/config/index.php:120
338
+ msgid "Heuristic"
339
+ msgstr ""
340
+
341
+ #: ../admin/config/index.php:121
342
  msgid "Enable CDN"
343
  msgstr "Activer CDN"
344
 
345
+ #: ../admin/config/index.php:121
346
  msgid ""
347
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
348
  "by serving our tracking code from their fast and reliable network (free "
352
  "CDN, en servant le traqueur Javascript WP SlimStat à partir de leur réseau "
353
  "rapide et fiable."
354
 
355
+ #: ../admin/config/index.php:122
356
  msgid "Extensions to Track"
357
  msgstr "Extensions du traçage"
358
 
359
+ #: ../admin/config/index.php:122
360
  msgid ""
361
  "List all the file extensions that you want to be treated as Downloads. "
362
  "Please note that links pointing to external resources (i.e. PDFs on a "
371
  "comme liens sortants (et suivis en tant que tel), si leur extension "
372
  "correspond à l'une de celles qui sont énumérées ci-dessous."
373
 
374
+ #: ../admin/config/index.php:124
375
  #, fuzzy
376
  msgid "Internal and Outbound Links"
377
  msgstr "Liens sortants récents"
378
 
379
+ #: ../admin/config/index.php:125
380
  msgid "Track Outbound Clicks"
381
  msgstr "Tracer les liens sortants"
382
 
383
+ #: ../admin/config/index.php:125
384
  msgid ""
385
  "Track when your visitors click on link to external websites. This option "
386
  "required Spy Mode to be enabled."
388
  "Détectez vos visiteurs cliquant sur des liens pointant sur des sites "
389
  "externes. Cette fonctionnalité nécéssite que le Mode Espion soit activé."
390
 
391
+ #: ../admin/config/index.php:126
392
  #, fuzzy
393
  msgid "Track Coordinates"
394
  msgstr "Mode traçage"
395
 
396
+ #: ../admin/config/index.php:126
397
  msgid ""
398
  "Collect mouse coordinates and other information for clicks on internal "
399
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
400
  "this information is only collected for external links."
401
  msgstr ""
402
 
403
+ #: ../admin/config/index.php:127
404
  msgid "No Callback"
405
  msgstr ""
406
 
407
+ #: ../admin/config/index.php:127
408
  msgid ""
409
  "Track the event but do not invoke the callback function on links marked with "
410
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
412
  "prevent conflicts with lightbox and similar libraries."
413
  msgstr ""
414
 
415
+ #: ../admin/config/index.php:128
416
  msgid "Do Not Track"
417
  msgstr ""
418
 
419
+ #: ../admin/config/index.php:128
420
  msgid ""
421
  "Do not track links marked with one of these class names, <em>rel</em> "
422
  "attributes or whose <em>href</em> attribute contains one of these strings "
423
  "(separated by comma)."
424
  msgstr ""
425
 
426
+ #: ../admin/config/index.php:130
427
  msgid "Pages not belonging to this site"
428
  msgstr ""
429
 
430
+ #: ../admin/config/index.php:131
431
  #, fuzzy
432
  msgid ""
433
  "Add the following code to all the non-WP pages you want to track, right "
437
  "Ajouter le code suivant à toutes les pages non-WordPress que vous souhaitez "
438
  "suivre."
439
 
440
+ #: ../admin/config/index.php:141
441
  #, fuzzy
442
  msgid "Allow External Domains"
443
  msgstr "Liens externes hostiles"
444
 
445
+ #: ../admin/config/index.php:141
446
  msgid ""
447
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
448
  "header is present on the requested resource, when using the external "
453
  "security implications of allowing CORS requests."
454
  msgstr ""
455
 
456
+ #: ../admin/config/index.php:142 ../admin/config/index.php:164
457
+ #: ../admin/config/index.php:192
458
  msgid "Miscellaneous"
459
  msgstr "Divers"
460
 
461
+ #: ../admin/config/index.php:143
462
  msgid "Enable UAN"
463
  msgstr "Activer UAN"
464
 
465
+ #: ../admin/config/index.php:143
466
  msgid ""
467
  "Send anonymous data about user agents to our server for analysis. This "
468
  "allows us to contribute to the <a href='http://browscap.org/' "
475
  "browscap.org/' target='_blank'> projet opensource BrowsCap, et d'améliorer "
476
  "la pertinence de la fonctionnalité de WPStats concernant les navigateurs web."
477
 
478
+ #: ../admin/config/index.php:148
479
  msgid "Filters"
480
  msgstr "Filtres"
481
 
482
+ #: ../admin/config/index.php:150
483
  #, fuzzy
484
  msgid "Do not track settings"
485
  msgstr "ne contient pas"
486
 
487
+ #: ../admin/config/index.php:151
488
  msgid "Track Registered Users"
489
  msgstr "Tracer les utilisateurs enregistrés"
490
 
491
+ #: ../admin/config/index.php:151
492
  msgid "Enable this option to track logged in users."
493
  msgstr "Activez cette option pour tracer les utilisateurs connectés"
494
 
495
+ #: ../admin/config/index.php:152
496
  msgid "Blacklist by Username"
497
  msgstr "Liste noire basée sur le nom d'utilisateur"
498
 
499
+ #: ../admin/config/index.php:152
500
  #, fuzzy
501
  msgid ""
502
  "List all the usernames you don't want to track, separated by commas. Please "
514
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
515
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
516
 
517
+ #: ../admin/config/index.php:153
518
  msgid "Blacklist by IP Address"
519
  msgstr "Liste noire par adresse IP"
520
 
521
+ #: ../admin/config/index.php:153
522
  msgid ""
523
  "List all the IP addresses you don't want to track, separated by commas. Each "
524
  "network <strong>must</strong> be defined using the <a href='http://en."
533
  "<em>192.168.0.0/24</em>). Si le format est incorrect, WP SlimStat ne peut "
534
  "pas suivre correctement les pages vues."
535
 
536
+ #: ../admin/config/index.php:154
537
  msgid "Blacklist by Capability"
538
  msgstr "Blacklister par Capabilité WordPress"
539
 
540
+ #: ../admin/config/index.php:154
541
  msgid ""
542
  "Users having at least one of the <a href='http://codex.wordpress.org/"
543
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
547
  "Roles_and_Capabilities' target='_new'>capacités</a> listées ci-dessous ne "
548
  "seront pas suivis. Les capacités sont insensibles à la casse."
549
 
550
+ #: ../admin/config/index.php:156
551
  msgid "Profiling"
552
  msgstr "Profiling"
553
 
554
+ #: ../admin/config/index.php:157
555
  msgid "Ignore Spammers"
556
  msgstr "Ignorer les spammeurs"
557
 
558
+ #: ../admin/config/index.php:157
559
  msgid ""
560
  "Enable this option if you don't want to track visits from users identified "
561
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
567
  "Akismet). Les visites de personnes dont les commentaires sont ensuite marqué "
568
  "comme spam par vous, seront également supprimées de la base."
569
 
570
+ #: ../admin/config/index.php:158
571
  #, fuzzy
572
  msgid "Ignore Bots"
573
  msgstr "Ignorer les utilisateurs"
574
 
575
+ #: ../admin/config/index.php:158
576
  msgid ""
577
  "Turn on this feature if you want to have the accuracy level of server-side "
578
  "tracking, but not the inconvenience of getting your database clogged with "
580
  "note that in Client mode, bots are ignored regardless of this setting."
581
  msgstr ""
582
 
583
+ #: ../admin/config/index.php:159
584
  msgid "Permalinks"
585
  msgstr "Rermaliens"
586
 
587
+ #: ../admin/config/index.php:159
588
  msgid ""
589
  "List all the URLs on your website that you don't want to track, separated by "
590
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
602
  "<code>/abo*t</code> correspondra /aboundant et /about, <code>/abo!t </code > "
603
  "correspondra /about et /abort. Les chaînes sont insensibles à la casse."
604
 
605
+ #: ../admin/config/index.php:160
606
  msgid "Countries"
607
  msgstr "Pays"
608
 
609
+ #: ../admin/config/index.php:160
610
  msgid ""
611
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
612
  "track, separated by commas."
614
  "Listez tous les codes de pays (p. ex.: <code>en-us, it, es </code>) que vous "
615
  "ne voulez pas suivre, séparées par des virgules."
616
 
617
+ #: ../admin/config/index.php:161
618
  msgid "User Agents"
619
  msgstr "User Agents"
620
 
621
+ #: ../admin/config/index.php:161
622
  msgid ""
623
  "Browsers (user agents) you don't want to track, separated by commas. You can "
624
  "specify the browser's version adding a slash after the name (i.e. "
636
  "correspondra à Chrome et Chromium, <code>IE/!.0</Code> correspondra IE/7.0 "
637
  "et IE/8.0. Les chaînes sont insensibles à la casse."
638
 
639
+ #: ../admin/config/index.php:162
640
  msgid "Referring Sites"
641
  msgstr "Sites référents"
642
 
643
+ #: ../admin/config/index.php:162
644
  msgid ""
645
  "Referring URLs that you don't want to track, separated by commas: "
646
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
657
  "soit un caractère générique ou le protocole que vous voulez filtrer "
658
  "(http://, https://)."
659
 
660
+ #: ../admin/config/index.php:165
661
  msgid "Enable Privacy Mode"
662
  msgstr "Activer le mode privé"
663
 
664
+ #: ../admin/config/index.php:165
665
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
666
  msgstr ""
667
  "Cette option masque l'adresse IP de vos visiteurs afin de se conformer aux "
668
  "lois de confidentialité européennes."
669
 
670
+ #: ../admin/config/index.php:166
671
  msgid "Ignore Prefetch Requests"
672
  msgstr "Ignorer les requêtes anticipées"
673
 
674
+ #: ../admin/config/index.php:166
675
  msgid ""
676
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
677
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
681
  "vues générées par Firefox <a href='https://developer.mozilla.org/en/"
682
  "Link_prefetching_FAQ' target='_blank'>Link Prefetching functionality</a>."
683
 
684
+ #: ../admin/config/index.php:171 ../admin/config/index.php:203
685
  msgid "Reports"
686
  msgstr "Rapports"
687
 
688
+ #: ../admin/config/index.php:173
689
  msgid "Formats and Conversions"
690
  msgstr ""
691
 
692
+ #: ../admin/config/index.php:174
693
  msgid "Number Format"
694
  msgstr "Format des nombres"
695
 
696
+ #: ../admin/config/index.php:174
697
  msgid "Choose the number format you want to use for your reports."
698
  msgstr ""
699
  "Choisissez le format numérique que vous souhaitez utiliser, européen ou "
700
  "américain."
701
 
702
+ #: ../admin/config/index.php:175
703
  #, fuzzy
704
  msgid "Date Format"
705
  msgstr "Données et Formats"
706
 
707
+ #: ../admin/config/index.php:175
708
  #, fuzzy
709
  msgid ""
710
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
714
  "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
715
  "vue."
716
 
717
+ #: ../admin/config/index.php:176
718
  #, fuzzy
719
  msgid "Time Format"
720
  msgstr "Format des nombres"
721
 
722
+ #: ../admin/config/index.php:176
723
  #, fuzzy
724
  msgid ""
725
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
729
  "\">Format PHP </a> à utiliser pour afficher la date et l'heure d'une page "
730
  "vue."
731
 
732
+ #: ../admin/config/index.php:177
733
  #, fuzzy
734
  msgid "Use Display Name"
735
  msgstr "Voir Nom d'affichage"
736
 
737
+ #: ../admin/config/index.php:177
738
  msgid ""
739
  "By default, users are listed by their usernames. Use this option to "
740
  "visualize their display names instead."
742
  "Par défaut, les utilisateurs sont affichés par Nom d'utilisateur. Utilisez "
743
  "cette option pour basculer au Nom d'affichage."
744
 
745
+ #: ../admin/config/index.php:178
746
  #, fuzzy
747
  msgid "Use Titles"
748
  msgstr "Afficher les titres"
749
 
750
+ #: ../admin/config/index.php:178
751
  #, fuzzy
752
  msgid ""
753
  "Slimstat converts your permalinks into post, page and category titles. "
757
  "Désactivez cette fonction si vous souhaitez conserver l'URL dans de vos "
758
  "rapports."
759
 
760
+ #: ../admin/config/index.php:179
761
  msgid "Convert IP Addresses"
762
  msgstr "Convertir les adresses IP"
763
 
764
+ #: ../admin/config/index.php:179
765
  msgid "Display provider names instead of IP addresses."
766
  msgstr "Afficher le nom du fournisseur d'accès au lieu de l'adresse IP."
767
 
768
+ #: ../admin/config/index.php:181
769
  msgid "Functionality"
770
  msgstr "Fonctionnalité"
771
 
772
+ #: ../admin/config/index.php:182
773
  msgid "SlimScroll"
774
  msgstr "SlimScroll"
775
 
776
+ #: ../admin/config/index.php:182
777
  msgid ""
778
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
779
  "scrollbar."
781
  "Activer SlimScroll, une librairie jQuery élégante qui remplace la barre de "
782
  "défilement par défaut des navigateurs."
783
 
784
+ #: ../admin/config/index.php:183
785
  msgid "Expand Details"
786
  msgstr "Développez les détails"
787
 
788
+ #: ../admin/config/index.php:183
789
  msgid "Expand each row's details by default, insted of on mousehover."
790
  msgstr ""
791
  "Développe les détails de chaque ligne par défaut, plutôt que sur survol de "
792
  "souris."
793
 
794
+ #: ../admin/config/index.php:184 ../admin/config/index.php:190
795
  msgid "Rows to Display"
796
  msgstr "Colonnes à afficher"
797
 
798
+ #: ../admin/config/index.php:184
799
  msgid "Specify the number of items in each report."
800
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
801
 
802
+ #: ../admin/config/index.php:185 ../admin/view/wp-slimstat-db.php:101
803
  #, fuzzy
804
  msgid "Max Results"
805
  msgstr "Limiter les résultats"
806
 
807
+ #: ../admin/config/index.php:185
808
  msgid ""
809
  "Decide how many records should be retrieved from the database in total. "
810
  "Depending on your server configuration, you may want to fine tune this value "
811
  "to avoid exceeding your PHP memory limit."
812
  msgstr ""
813
 
814
+ #: ../admin/config/index.php:186
815
  msgid "IP Lookup"
816
  msgstr "Recherche d'IP"
817
 
818
+ #: ../admin/config/index.php:186
819
  msgid "Customize the Geolocation service to be used in the reports."
820
  msgstr ""
821
  "Personnaliser le service de Géolocalisation à utiliser dans les rapports."
822
 
823
+ #: ../admin/config/index.php:188
824
  msgid "Activity Log"
825
  msgstr "Statistiques de fréquentation"
826
 
827
+ #: ../admin/config/index.php:189
828
  msgid "Live Stream"
829
  msgstr "Flux en temps réel (Flux live)"
830
 
831
+ #: ../admin/config/index.php:189
832
  msgid ""
833
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
834
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
836
  "Actualisez la vue 'Maintenant' toutes les X secondes. Entrer <strong>0</"
837
  "strong> pour désactiver cette fonctionnalité."
838
 
839
+ #: ../admin/config/index.php:190
840
  msgid "Specify the number of items in the Activity Log."
841
  msgstr "Spécifier le nombre d'articles dans chacun de vos rapports."
842
 
843
+ #: ../admin/config/index.php:193
844
  msgid "Custom CSS"
845
  msgstr "Personnaliser le style CSS"
846
 
847
+ #: ../admin/config/index.php:193
848
  #, fuzzy
849
  msgid ""
850
  "Paste here your custom stylesheet to personalize the way your reports look. "
858
  "target='_blank'>Consultez les FAQs</a> pour plus d'informations sur la façon "
859
  "d'utiliser cette fonctionnalité."
860
 
861
+ #: ../admin/config/index.php:194
862
  #, fuzzy
863
  msgid "Chart Colors"
864
  msgstr "Contrôle du graphique"
865
 
866
+ #: ../admin/config/index.php:194
867
  msgid ""
868
  "Customize the look and feel of your charts by assigning personalized colors "
869
  "to each metric. List 4 hex colors separated by commas, strictly in the "
871
  "metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>."
872
  msgstr ""
873
 
874
+ #: ../admin/config/index.php:195
875
  msgid "Show User Agent"
876
  msgstr "Voir User Agent"
877
 
878
+ #: ../admin/config/index.php:195
879
  msgid ""
880
  "Choose if you want to see the browser name or a complete user agent string "
881
  "when hovering on browser icons."
883
  "Choisissez si vous voulez voir le nom du navigateur ou une chaîne complete "
884
  "de user agent lorsque vous survolez les icônes du navigateur."
885
 
886
+ #: ../admin/config/index.php:196
887
  msgid "Enable SOV"
888
  msgstr "Activer SOV"
889
 
890
+ #: ../admin/config/index.php:196
891
  msgid ""
892
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
893
  "the subject, object, and verb of a sentence appear in that order, like in "
897
  "langue dans laquelle les sujet, objet et verbe d'une phrase apparaissent "
898
  "dans cet ordre, comme en japonais."
899
 
900
+ #: ../admin/config/index.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
901
  msgid "Access Control"
902
  msgstr ""
903
 
904
+ #: ../admin/config/index.php:204
905
  msgid "Restrict Authors"
906
  msgstr "Restriction Auteurs"
907
 
908
+ #: ../admin/config/index.php:204
909
  msgid ""
910
  "Enable this option if you want your authors to only see stats related to "
911
  "their own content."
913
  "Activez cette option si vous voulez que vos auteurs ne voient que les "
914
  "statistiques relatives à leur propre contenu."
915
 
916
+ #: ../admin/config/index.php:205 ../admin/config/index.php:209
917
  msgid "Capability"
918
  msgstr "Aptitude"
919
 
920
+ #: ../admin/config/index.php:205
921
  msgid ""
922
  "Specify the minimum <a href='http://codex.wordpress.org/"
923
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
933
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
934
  "Dans ce cas, la liste a la priorité sur la capacité."
935
 
936
+ #: ../admin/config/index.php:206 ../admin/config/index.php:210
937
  msgid "Whitelist"
938
  msgstr "Liste blanche"
939
 
940
+ #: ../admin/config/index.php:206
941
  msgid ""
942
  "List all the users who should have access to the reports, separated by "
943
  "commas. Administrators are implicitly allowed, so you don't need to list "
949
  "vide, <strong>tous vos utilisateurs</strong> sont autorisés à accéder. Les "
950
  "noms d'utilisateurs sont sensibles à la casse."
951
 
952
+ #: ../admin/config/index.php:208 ../admin/config/index.php:233
953
+ #: ../admin/wp-slimstat-admin.php:636 ../admin/wp-slimstat-admin.php:654
954
+ #: ../admin/wp-slimstat-admin.php:657
955
  msgid "Settings"
956
  msgstr "Réglages"
957
 
958
+ #: ../admin/config/index.php:209
959
  msgid ""
960
  "Specify the minimum <a href='http://codex.wordpress.org/"
961
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
969
  "sauf un \"Accès en lecture\" de la liste blanche a été précisé ci-dessus. "
970
  "Dans ce cas, la liste a la priorité sur la capacité."
971
 
972
+ #: ../admin/config/index.php:210
973
  msgid ""
974
  "List all the users who can edit these options, separated by commas. Please "
975
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
981
  "inscrire! Les noms d'utilisateurs sont sensibles à la casse. (Majuscules-"
982
  "minuscules)"
983
 
984
+ #: ../admin/config/index.php:215
985
  msgid "Maintenance"
986
  msgstr "Maintenance"
987
 
988
+ #: ../admin/config/index.php:220 ../admin/view/addons.php:32
989
+ #: ../admin/wp-slimstat-admin.php:124
 
990
  msgid "Add-ons"
991
  msgstr "Add-ons"
992
 
1017
  msgid "The geolocation database has been installed on your server."
1018
  msgstr ""
1019
 
1020
+ #: ../admin/config/maintenance.php:82
 
 
 
 
 
 
 
 
 
1021
  msgid "Your reports were successfully restored to their default arrangement."
1022
  msgstr ""
1023
  "Vos rapports ont été réinitialisés avec succès dans leur configuration par "
1024
  "défaut."
1025
 
1026
+ #: ../admin/config/maintenance.php:92
1027
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1028
  msgstr "Vos tables WP SlimStat ont été converties en InnoDB avec succès."
1029
 
1030
+ #: ../admin/config/maintenance.php:98
1031
  #, fuzzy
1032
  msgid "All the archived records were successfully deleted."
1033
  msgstr "Tous les enregistrements ont bien été supprimés"
1034
 
1035
+ #: ../admin/config/maintenance.php:106
1036
  msgid "All the records were successfully deleted."
1037
  msgstr "Tous les enregistrements ont bien été supprimés"
1038
 
1039
+ #: ../admin/config/maintenance.php:128
1040
+ msgid "Troubleshooting"
1041
  msgstr ""
1042
 
1043
+ #: ../admin/config/maintenance.php:131
1044
  #, fuzzy
1045
  msgid "Tracker Status"
1046
  msgstr "Traçage"
1047
 
1048
+ #: ../admin/config/maintenance.php:133
1049
  #, fuzzy
1050
+ msgid "Reset the tracker status"
1051
+ msgstr "Traçage"
1052
 
1053
+ #: ../admin/config/maintenance.php:133
1054
  msgid "No Errors so far"
1055
  msgstr ""
1056
 
1057
+ #: ../admin/config/maintenance.php:134
1058
  msgid ""
1059
  "The information here above is useful to troubleshoot issues with the "
1060
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1061
  "the tracker could not record a pageview and are indicative of some kind of "
1062
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1063
  "most recent pageview was not recorded, based on your settings (filters, "
1064
+ "blackslists, etc). Please include the message here above when sending a "
1065
+ "support request."
1066
  msgstr ""
1067
 
1068
+ #: ../admin/config/maintenance.php:140
1069
  #, fuzzy
1070
  msgid "Enable SQL Debug"
1071
  msgstr "Activer le mode espion"
1072
 
1073
+ #: ../admin/config/maintenance.php:143
1074
  msgid ""
1075
  "Display the SQL code used to retrieve the data from the database. Useful to "
1076
  "troubleshoot issues with data consistency or missing pageviews."
1077
  msgstr ""
1078
 
1079
+ #: ../admin/config/maintenance.php:147
1080
  msgid "Disable SQL Debug"
1081
  msgstr ""
1082
 
1083
+ #: ../admin/config/maintenance.php:150
1084
  msgid "Deactivate the SQL output on top of each report."
1085
  msgstr ""
1086
 
1087
+ #: ../admin/config/maintenance.php:155
 
 
 
 
1088
  msgid ""
1089
  "Are you sure you want to restore the default arrangement of your reports?"
1090
  msgstr "Etes-vous sûr de vouloir réinitialiser vos rapports ?"
1091
 
1092
+ #: ../admin/config/maintenance.php:155
1093
  msgid "No Panic Button"
1094
  msgstr "Pas de panique !"
1095
 
1096
+ #: ../admin/config/maintenance.php:157
1097
  #, fuzzy
1098
  msgid ""
1099
  "Reset the default arrangement of your reports. Helpful when, for some "
1101
  "in your views."
1102
  msgstr "Réinitialiser la mise en page par défaut de vos rapports."
1103
 
1104
+ #: ../admin/config/maintenance.php:161
1105
  msgid "Data Maintenance"
1106
  msgstr "Maintenance des données"
1107
 
1108
+ #: ../admin/config/maintenance.php:164
1109
  msgid "Delete pageviews where"
1110
  msgstr "Supprimer les pages où"
1111
 
1112
+ #: ../admin/config/maintenance.php:178 ../admin/view/index.php:16
1113
  msgid "equals"
1114
  msgstr "est égal à"
1115
 
1116
+ #: ../admin/config/maintenance.php:179 ../admin/view/index.php:17
1117
  msgid "is not equal to"
1118
  msgstr "n'est pas égal à"
1119
 
1120
+ #: ../admin/config/maintenance.php:180 ../admin/view/index.php:18
1121
  msgid "contains"
1122
  msgstr "contient"
1123
 
1124
+ #: ../admin/config/maintenance.php:181 ../admin/view/index.php:19
1125
  msgid "is included in"
1126
  msgstr ""
1127
 
1128
+ #: ../admin/config/maintenance.php:182 ../admin/view/index.php:20
1129
  msgid "does not contain"
1130
  msgstr "ne contient pas"
1131
 
1132
+ #: ../admin/config/maintenance.php:183 ../admin/view/index.php:21
1133
  msgid "starts with"
1134
  msgstr "commence par"
1135
 
1136
+ #: ../admin/config/maintenance.php:184 ../admin/view/index.php:22
1137
  msgid "ends with"
1138
  msgstr "finit par"
1139
 
1140
+ #: ../admin/config/maintenance.php:185 ../admin/view/index.php:23
1141
  msgid "sounds like"
1142
  msgstr "ressemble à"
1143
 
1144
+ #: ../admin/config/maintenance.php:186 ../admin/view/index.php:24
1145
  msgid "is greater than"
1146
  msgstr "est plus grand que"
1147
 
1148
+ #: ../admin/config/maintenance.php:187 ../admin/view/index.php:25
1149
  msgid "is less than"
1150
  msgstr "est plus petit que"
1151
 
1152
+ #: ../admin/config/maintenance.php:188 ../admin/view/index.php:27
1153
  msgid "matches"
1154
  msgstr "correspond à"
1155
 
1156
+ #: ../admin/config/maintenance.php:189 ../admin/view/index.php:28
1157
  msgid "does not match"
1158
  msgstr "ne correspond pas à"
1159
 
1160
+ #: ../admin/config/maintenance.php:190 ../admin/view/index.php:29
1161
  msgid "is empty"
1162
  msgstr "est vide"
1163
 
1164
+ #: ../admin/config/maintenance.php:191 ../admin/view/index.php:30
1165
  msgid "is not empty"
1166
  msgstr "n'est pas vide"
1167
 
1168
+ #: ../admin/config/maintenance.php:194 ../admin/view/index.php:42
1169
  #: ../admin/view/index.php:105
1170
  msgid "Apply"
1171
  msgstr "Appliquer"
1172
 
1173
+ #: ../admin/config/maintenance.php:195
1174
  msgid ""
1175
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1176
  msgstr ""
1177
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT ces enregistrement de "
1178
  "votre base de données ?"
1179
 
1180
+ #: ../admin/config/maintenance.php:202
1181
  msgid ""
1182
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1183
  "database?"
1185
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1186
  "votre base de données ?"
1187
 
1188
+ #: ../admin/config/maintenance.php:202
1189
  #, fuzzy
1190
  msgid "Delete All Records"
1191
  msgstr "Supprimer toutes les pages vues"
1192
 
1193
+ #: ../admin/config/maintenance.php:205
1194
  #, fuzzy
1195
  msgid ""
1196
+ "Erase all the information collected so far by Slimstat, but not the archived "
1197
+ "records (<code>wp_slim_stats_archive</code>). This operation <strong>does "
1198
+ "not</strong> reset your settings and it can be undone by manually copying "
1199
+ "your records from the archive table."
1200
  msgstr ""
1201
  "Effacer les informations collecter par WP Slimstat jusqu'à present. Cette "
1202
  "opération <strong>ne réinitialise pas </strong>vos paramétrages."
1203
 
1204
+ #: ../admin/config/maintenance.php:211
1205
  #, fuzzy
1206
  msgid ""
1207
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1210
  "Etes-vous sûr de vouloir SUPPRIMER DEFINITIVEMENT TOUS les enregistrement de "
1211
  "votre base de données ?"
1212
 
1213
+ #: ../admin/config/maintenance.php:211
1214
  #, fuzzy
1215
  msgid "Delete Archive"
1216
  msgstr "Filtrer les pages vues pour que"
1217
 
1218
+ #: ../admin/config/maintenance.php:214
1219
  msgid "Erase all the archived records. This operation cannot be undone."
1220
  msgstr ""
1221
 
1222
+ #: ../admin/config/maintenance.php:220
1223
  msgid "Improve Performance"
1224
  msgstr "Improve la performance"
1225
 
1226
+ #: ../admin/config/maintenance.php:224
1227
  msgid ""
1228
  "Please note that you will need about 30% more DB space to store the extra "
1229
  "information required."
1231
  "Vous aurez besoin d'environ 30% de plus d'espace de base de données pour "
1232
  "stocker les informations supplémentaires nécessaires."
1233
 
1234
+ #: ../admin/config/maintenance.php:228
1235
  msgid "Save DB Space"
1236
  msgstr "Gagner de l'espace sur la taille de votre base de données"
1237
 
1238
+ #: ../admin/config/maintenance.php:231
1239
  msgid ""
1240
  "Please note that by removing table indexes, Slimstat's performance will be "
1241
  "affected."
1243
  "Merci de noter qu'en supprimant les indexes, les performances de WP "
1244
  "SlimStats seront impactées."
1245
 
1246
+ #: ../admin/config/maintenance.php:236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1247
  msgid "MaxMind IP to Country"
1248
  msgstr ""
1249
 
1250
+ #: ../admin/config/maintenance.php:242
1251
  msgid ""
1252
  "Do you want to download and install the geolocation database from MaxMind's "
1253
  "server?"
1254
  msgstr ""
1255
 
1256
+ #: ../admin/config/maintenance.php:242
1257
  msgid "Install GeoLite DB"
1258
  msgstr ""
1259
 
1260
+ #: ../admin/config/maintenance.php:245
1261
  msgid "Do you want to uninstall the geolocation database?"
1262
  msgstr ""
1263
 
1264
+ #: ../admin/config/maintenance.php:245
1265
  msgid "Uninstall GeoLite DB"
1266
  msgstr ""
1267
 
1268
+ #: ../admin/config/maintenance.php:249
1269
  msgid ""
1270
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1271
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1275
  "enable this functionality."
1276
  msgstr ""
1277
 
1278
+ #: ../admin/config/maintenance.php:254
1279
  msgid "Import and Export"
1280
  msgstr "Import-Export"
1281
 
1282
+ #: ../admin/config/maintenance.php:258
1283
  #, fuzzy
1284
  msgid ""
1285
  "Here below you can find the current configuration string for Slimstat. You "
1290
  "configuration. Vous pouvez mettre à jour vos réglages en collant une "
1291
  "nouvelle ligne ci-après et en cliquant sur Import."
1292
 
1293
+ #: ../admin/config/maintenance.php:263
1294
  msgid "Import"
1295
  msgstr "Importer"
1296
 
1297
+ #: ../admin/config/maintenance.php:264
1298
  msgid "Are you sure you want to OVERWRITE your current settings?"
1299
  msgstr "Etes-vous sûr que vous voulez réinitialiser vos onglets?"
1300
 
1301
+ #: ../admin/config/maintenance.php:269
1302
  msgid "Database Information"
1303
  msgstr "Informations de base de données"
1304
 
1305
+ #: ../admin/config/maintenance.php:272
1306
  msgid "Engine"
1307
  msgstr "Moteur"
1308
 
1309
+ #: ../admin/config/maintenance.php:276
1310
  msgid "switch to InnoDB"
1311
  msgstr "changer pour InnoDB"
1312
 
1313
+ #: ../admin/config/maintenance.php:287
1314
  msgid "records"
1315
  msgstr "Enregistrements"
1316
 
1388
  msgid "Load"
1389
  msgstr ""
1390
 
1391
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1406
1392
  msgid "Today"
1393
  msgstr "Aujourd'hui"
1394
 
1395
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1409
1396
  msgid "Yesterday"
1397
  msgstr "Hier"
1398
 
1457
  "country of origin."
1458
  msgstr ""
1459
 
1460
+ #: ../admin/view/layout.php:47
1461
  msgid "Customize and organize your reports"
1462
  msgstr ""
1463
 
1464
+ #: ../admin/view/layout.php:48
1465
  msgid ""
1466
  "Drag and drop report placeholders from one container to another, to "
1467
  "customize the information you want to see right away when you open Slimstat. "
1473
  "(Screen Options tab)."
1474
  msgstr ""
1475
 
1476
+ #: ../admin/view/layout.php:60
1477
  msgid "Clone"
1478
  msgstr ""
1479
 
1480
+ #: ../admin/view/layout.php:64
1481
  #, fuzzy
1482
  msgid "Delete"
1483
  msgstr "Filtrer les pages vues pour que"
1498
  msgid "Syndication Reader"
1499
  msgstr "Lecteur de Flux (Syndication)"
1500
 
1501
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1032
1502
+ #: ../admin/view/wp-slimstat-reports.php:1715
1503
  msgid "No data to display"
1504
  msgstr "Aucune donnée à afficher"
1505
 
1508
  msgstr "Date/Heure"
1509
 
1510
  # Unknown
1511
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1084
1512
+ #: ../admin/view/wp-slimstat-reports.php:1758 ../wp-slimstat.php:1355
1513
  msgid "c-"
1514
  msgstr "Inconnu"
1515
 
1516
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1517
+ #: ../admin/wp-slimstat-admin.php:968 ../admin/wp-slimstat-admin.php:1008
1518
  msgid "Originating IP"
1519
  msgstr "IP d'origine"
1520
 
1521
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1181
1522
+ #: ../admin/view/wp-slimstat-reports.php:1186
1523
+ #: ../admin/view/wp-slimstat-reports.php:1191
1524
  msgid "Open this URL in a new window"
1525
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1526
 
1528
  msgid "Local search results page"
1529
  msgstr "Page de résultat d'une recherche locale"
1530
 
1531
+ #: ../admin/view/right-now.php:157 ../admin/view/wp-slimstat-db.php:42
1532
+ #: ../admin/view/wp-slimstat-reports.php:242
1533
+ #: ../admin/view/wp-slimstat-reports.php:251
1534
+ #: ../admin/wp-slimstat-admin.php:971 ../admin/wp-slimstat-admin.php:987
1535
  msgid "Search Terms"
1536
  msgstr "Termes de recherche"
1537
 
1538
+ #: ../admin/view/right-now.php:166
1539
  msgid "Server Latency and Page Speed in milliseconds"
1540
  msgstr "Latence du serveur et Rapidité de la page en millisecondes"
1541
 
1542
+ #: ../admin/view/right-now.php:166
1543
  msgid "SL"
1544
  msgstr "SL"
1545
 
1546
+ #: ../admin/view/right-now.php:166
1547
  msgid "PS"
1548
  msgstr "PS"
1549
 
1550
+ #: ../admin/view/right-now.php:173
1551
  #, fuzzy
1552
+ msgid "Time spent on this page"
1553
  msgstr "Ouvrir cette page dans une nouvelle fenêtre"
1554
 
1555
+ #: ../admin/view/right-now.php:183
1556
  msgid "Open this referrer in a new window"
1557
  msgstr "Ouvrir ce référent dans une nouvelle fenêtre"
1558
 
1559
+ #: ../admin/view/right-now.php:184
1560
  msgid "Open this outbound link in a new window"
1561
  msgstr "Ouvir cette URL dans une nouvelle fenêtre"
1562
 
1563
+ #: ../admin/view/right-now.php:185
1564
  msgid "Content Type"
1565
  msgstr "Type de contenu"
1566
 
1567
+ #: ../admin/view/right-now.php:188
1568
  #, fuzzy
1569
  msgid "Delete this pageview"
1570
  msgstr "Filtrer les pages vues pour que"
1571
 
1572
+ #: ../admin/view/right-now.php:199
1573
  #, fuzzy
1574
  msgid "User Logged In"
1575
  msgstr "User Agent"
1576
 
1577
+ #: ../admin/view/right-now.php:209
1578
  #, fuzzy
1579
  msgid "User Logged Out"
1580
  msgstr "User Agent"
1581
 
1582
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:984
1583
  msgid "Browser"
1584
  msgstr "Navigateur Web"
1585
 
1586
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:985
1587
  msgid "Country Code"
1588
  msgstr "Code du pays"
1589
 
1591
  msgid "IP Address"
1592
  msgstr "Adresse IP"
1593
 
1594
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:988
1595
  msgid "Language Code"
1596
  msgstr "Code langue"
1597
 
1598
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1599
+ #: ../admin/wp-slimstat-admin.php:989
1600
  msgid "Operating System"
1601
  msgstr "Système d'exploitation (OS)"
1602
 
1603
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1604
+ #: ../admin/wp-slimstat-admin.php:990
1605
  msgid "Permalink"
1606
  msgstr "Permalien"
1607
 
1608
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:991
1609
  msgid "Referer"
1610
  msgstr "Référent"
1611
 
1612
+ #: ../admin/view/wp-slimstat-db.php:47
1613
+ #, fuzzy
1614
+ msgid "Visitor's Username"
1615
  msgstr "le nom des visiteurs"
1616
 
1617
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:974
1618
  msgid "Outbound Link"
1619
  msgstr "Lien sortant"
1620
 
1627
  msgstr "-- Filtres Avancés --"
1628
 
1629
  #: ../admin/view/wp-slimstat-db.php:52
1630
+ #: ../admin/view/wp-slimstat-reports.php:372
1631
  msgid "Browser Capabilities"
1632
  msgstr "Capacités des Navigateurs"
1633
 
1634
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1003
1635
  msgid "Browser Version"
1636
  msgstr "Version de navigateur"
1637
 
1638
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1004
1639
  msgid "Browser Type"
1640
  msgstr "le type de navigateur Web"
1641
 
1642
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:973
1643
  msgid "User Agent"
1644
  msgstr "User Agent"
1645
 
1652
  msgid "Server Latency"
1653
  msgstr "Latence du serveur"
1654
 
1655
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1006
1656
  msgid "Post Author"
1657
  msgstr "l'auteur de l'article"
1658
 
1659
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1007
1660
  msgid "Post Category ID"
1661
  msgstr "ID de la catégorie de l'article"
1662
 
1663
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1009
1664
  msgid "Resource Content Type"
1665
  msgstr "le type de source de contenu"
1666
 
1681
  msgid "Viewport Size"
1682
  msgstr ""
1683
 
1684
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1011
1685
  msgid "Visit ID"
1686
  msgstr "Visites ID"
1687
 
1727
  msgstr "Contenus récents"
1728
 
1729
  #: ../admin/view/wp-slimstat-db.php:96
1730
+ #: ../admin/view/wp-slimstat-reports.php:1729
1731
  msgid "Type"
1732
  msgstr ""
1733
 
1750
  msgid "Offset"
1751
  msgstr ""
1752
 
1753
+ #: ../admin/view/wp-slimstat-reports.php:65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1754
  msgid "Chart controls"
1755
  msgstr "Contrôle du graphique"
1756
 
1757
+ #: ../admin/view/wp-slimstat-reports.php:65
1758
  msgid "Use your mouse wheel to zoom in and out"
1759
  msgstr "Utilisez la molette de votre souris pour zoomer et dézoomer"
1760
 
1761
+ #: ../admin/view/wp-slimstat-reports.php:65
1762
  msgid "While zooming in, drag the chart to move to a different area"
1763
  msgstr ""
1764
  "Alors que le zoom avant est activé, faites glisser la carte pour passer à "
1765
  "une autre zone"
1766
 
1767
+ #: ../admin/view/wp-slimstat-reports.php:68
 
 
 
 
 
1768
  #, fuzzy
1769
  msgid "Visitors Activity"
1770
  msgstr "Statistiques de fréquentation"
1771
 
1772
+ #: ../admin/view/wp-slimstat-reports.php:77
1773
  msgid "Color codes"
1774
  msgstr "Codes couleur"
1775
 
1776
+ #: ../admin/view/wp-slimstat-reports.php:77
1777
  msgid "From search result page"
1778
  msgstr "Depuis un moteur de recherche"
1779
 
1780
+ #: ../admin/view/wp-slimstat-reports.php:77 ../admin/wp-slimstat-admin.php:966
1781
  msgid "Known Visitor"
1782
  msgstr "Visiteurs connus"
1783
 
1784
+ #: ../admin/view/wp-slimstat-reports.php:77
1785
  msgid "Known Users"
1786
  msgstr "Utilisateurs connus"
1787
 
1788
+ #: ../admin/view/wp-slimstat-reports.php:77
1789
  msgid "Other Humans"
1790
  msgstr "Autres humains"
1791
 
1792
+ #: ../admin/view/wp-slimstat-reports.php:77
1793
  msgid "Bot or Crawler"
1794
  msgstr "Robot ou Crawler"
1795
 
1796
+ #: ../admin/view/wp-slimstat-reports.php:99
1797
  msgid "About Slimstat"
1798
  msgstr "À propos de WP-SlimStat"
1799
 
1800
+ #: ../admin/view/wp-slimstat-reports.php:108
1801
  #, fuzzy
1802
  msgid "Traffic at a Glance"
1803
  msgstr "Brièvement"
1804
 
1805
+ #: ../admin/view/wp-slimstat-reports.php:118
1806
  msgid "Currently Online"
1807
  msgstr "Actuellement en ligne"
1808
 
1809
+ #: ../admin/view/wp-slimstat-reports.php:131
1810
  msgid "Recent Search Terms"
1811
  msgstr "Derniers Termes de Recherches"
1812
 
1813
+ #: ../admin/view/wp-slimstat-reports.php:142
1814
  msgid "Keywords used by your visitors to find your website on a search engine."
1815
  msgstr ""
1816
  "Mots-clés utilisés par vos visiteurs pour trouver votre site sur un moteur "
1817
  "de recherche."
1818
 
1819
+ #: ../admin/view/wp-slimstat-reports.php:145
1820
  #, fuzzy
1821
  msgid "Top Web Pages"
1822
  msgstr "Top Pages Vues"
1823
 
1824
+ #: ../admin/view/wp-slimstat-reports.php:156
1825
  msgid ""
1826
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1827
  "site, including posts, products, categories, and so on. You can set the "
1830
  "have."
1831
  msgstr ""
1832
 
1833
+ #: ../admin/view/wp-slimstat-reports.php:159
1834
+ #, fuzzy
1835
+ msgid "Top Referring Domains"
1836
+ msgstr "Top Moteurs de Recherche"
1837
 
1838
+ #: ../admin/view/wp-slimstat-reports.php:173
1839
  msgid "Top Known Visitors"
1840
  msgstr "Top Visiteurs Connus"
1841
 
1842
+ #: ../admin/view/wp-slimstat-reports.php:184
1843
  msgid "Top Search Terms"
1844
  msgstr "Top Termes de Recherche"
1845
 
1846
+ #: ../admin/view/wp-slimstat-reports.php:196
1847
  msgid "Top Countries"
1848
  msgstr "Pays les plus récurrents"
1849
 
1850
+ #: ../admin/view/wp-slimstat-reports.php:205
1851
  msgid ""
1852
  "You can configure Slimstat to ignore a specific Country by setting the "
1853
  "corresponding filter under Settings > Slimstat > Filters."
1855
  "Vous pouvez configurer WP SlimStat afin d'ignorer un pays spécifique en "
1856
  "définissant le filtre correspondant sous SlimStat> Paramètres> Filtres."
1857
 
1858
+ #: ../admin/view/wp-slimstat-reports.php:208
1859
  msgid "Rankings"
1860
  msgstr "Classements"
1861
 
1862
+ #: ../admin/view/wp-slimstat-reports.php:212
1863
  msgid ""
1864
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
1865
  "measures your site's rankings. Values are updated every 12 hours. Filters "
1870
  "12 heures. Les filtres indiqués ci-dessus ne sont pas pris en compte dans ce "
1871
  "rapport."
1872
 
1873
+ #: ../admin/view/wp-slimstat-reports.php:215
1874
  msgid "Top Language Families"
1875
  msgstr "Top Langues"
1876
 
1877
+ #: ../admin/view/wp-slimstat-reports.php:228
1878
  #, fuzzy
1879
  msgid "Users Currently Online"
1880
  msgstr "Actuellement en ligne"
1881
 
1882
+ #: ../admin/view/wp-slimstat-reports.php:239
1883
  msgid ""
1884
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1885
  "Slimstat leverages this information to identify returning visitors. Please "
1889
  "attribue un cookie. WP SlimStat exploite ces informations pour identifier "
1890
  "les visiteurs qui reviennent, y compris les utilisateurs enregistrés."
1891
 
1892
+ #: ../admin/view/wp-slimstat-reports.php:252
1893
  #, fuzzy
1894
  msgid "Unique Terms"
1895
  msgstr "IPs uniques"
1896
 
1897
+ #: ../admin/view/wp-slimstat-reports.php:261
1898
+ #, fuzzy
1899
+ msgid "Top Referring URLs"
1900
+ msgstr "Sites référents"
1901
+
1902
+ #: ../admin/view/wp-slimstat-reports.php:274
1903
  msgid "Human Visits"
1904
  msgstr "Visiteurs humains"
1905
 
1906
+ #: ../admin/view/wp-slimstat-reports.php:283
1907
+ #: ../admin/view/wp-slimstat-reports.php:1440
1908
  msgid "Visits"
1909
  msgstr "Visites"
1910
 
1911
+ #: ../admin/view/wp-slimstat-reports.php:293
1912
  msgid "Audience Overview"
1913
  msgstr "Vue générale"
1914
 
1915
+ #: ../admin/view/wp-slimstat-reports.php:300
1916
  msgid ""
1917
  "Where not otherwise specified, the metrics in this report are referred to "
1918
  "human visitors."
1919
  msgstr ""
1920
 
1921
+ #: ../admin/view/wp-slimstat-reports.php:303
1922
  msgid "Top Languages"
1923
  msgstr "Top Langues"
1924
 
1925
+ #: ../admin/view/wp-slimstat-reports.php:314
1926
  msgid "Top Browsers"
1927
  msgstr "Principaux navigateurs"
1928
 
1929
+ #: ../admin/view/wp-slimstat-reports.php:325
1930
  msgid "Top Service Providers"
1931
  msgstr "Top Fournisseur d'Accès"
1932
 
1933
+ #: ../admin/view/wp-slimstat-reports.php:334
1934
+ #: ../admin/view/wp-slimstat-reports.php:346
1935
  msgid ""
1936
  "Internet Service Provider: a company which provides other companies or "
1937
  "individuals with access to the Internet. Your DSL or cable internet service "
1944
  "spécifiques en définissant le filtre correspondant sous SlimStat> Réglages> "
1945
  "Filtres."
1946
 
1947
+ #: ../admin/view/wp-slimstat-reports.php:337
1948
  msgid "Top Operating Systems"
1949
  msgstr "Top Systèmes d'Exploitation"
1950
 
1951
+ #: ../admin/view/wp-slimstat-reports.php:349
1952
  msgid "Top Screen Resolutions"
1953
  msgstr "Top Résolutions d'écran"
1954
 
1955
+ #: ../admin/view/wp-slimstat-reports.php:361
1956
  #, fuzzy
1957
  msgid "Top Viewport Sizes"
1958
  msgstr "Top Catégories"
1959
 
1960
+ #: ../admin/view/wp-slimstat-reports.php:381
1961
  msgid "Visit Duration"
1962
  msgstr "Durée des Visites"
1963
 
1964
+ #: ../admin/view/wp-slimstat-reports.php:388
1965
  #, fuzzy
1966
  msgid ""
1967
  "All values represent the percentages of pageviews within the corresponding "
1970
  "Carte du monde - Les valeurs représentent le pourcentage des accès provenant "
1971
  "de ce pays"
1972
 
1973
+ #: ../admin/view/wp-slimstat-reports.php:391
1974
  msgid "Recent Countries"
1975
  msgstr "Derniers Pays"
1976
 
1977
+ #: ../admin/view/wp-slimstat-reports.php:402
1978
  #, fuzzy
1979
  msgid "Recent Viewport Sizes"
1980
  msgstr "Dernières Catégories"
1981
 
1982
+ #: ../admin/view/wp-slimstat-reports.php:413
1983
  msgid "Recent Operating Systems"
1984
  msgstr "Derniers Systèmes d'Exploitation"
1985
 
1986
+ #: ../admin/view/wp-slimstat-reports.php:424
1987
  msgid "Recent Browsers"
1988
  msgstr "Navigateurs récents"
1989
 
1990
+ #: ../admin/view/wp-slimstat-reports.php:435
1991
  msgid "Recent Languages"
1992
  msgstr "Dernier Language"
1993
 
1994
+ #: ../admin/view/wp-slimstat-reports.php:446
1995
  msgid "Top Browser Families"
1996
  msgstr "Principales familles de navigateurs"
1997
 
1998
+ #: ../admin/view/wp-slimstat-reports.php:455
1999
  msgid ""
2000
  "This report shows you what user agent families (no version considered) are "
2001
  "popular among your visitors."
2003
  "Ce rapport affiche quelles familles d'user agent (sans prise en compte de "
2004
  "version) sont populaires chez vos visiteurs."
2005
 
2006
+ #: ../admin/view/wp-slimstat-reports.php:458
2007
  msgid "Top OS Families"
2008
  msgstr "Principales familles de SO"
2009
 
2010
+ #: ../admin/view/wp-slimstat-reports.php:469
2011
  msgid ""
2012
  "This report shows you what operating system families (no version considered) "
2013
  "are popular among your visitors."
2015
  "Ce rapport affiche quelles familles de système d'exploitation (sans prise en "
2016
  "compte de version) sont populaires chez vos visiteurs."
2017
 
2018
+ #: ../admin/view/wp-slimstat-reports.php:472
2019
  msgid "Recent Users"
2020
  msgstr "Utilisateurs récents"
2021
 
2022
+ #: ../admin/view/wp-slimstat-reports.php:484
2023
  msgid "Top Users"
2024
  msgstr "Principaux utilisateurs"
2025
 
2026
+ #: ../admin/view/wp-slimstat-reports.php:496
2027
+ #: ../admin/view/wp-slimstat-reports.php:505
2028
  msgid "Users"
2029
  msgstr "Utilisateurs"
2030
 
2031
+ #: ../admin/view/wp-slimstat-reports.php:506
2032
  #, fuzzy
2033
  msgid "Unique Users"
2034
  msgstr "IPs uniques"
2035
 
2036
+ #: ../admin/view/wp-slimstat-reports.php:515
2037
+ #: ../admin/wp-slimstat-admin.php:106
2038
+ msgid "Traffic Sources"
2039
+ msgstr "Sources de trafic"
2040
+
2041
+ #: ../admin/view/wp-slimstat-reports.php:524
2042
  msgid "Domains"
2043
  msgstr "Domaines"
2044
 
2045
+ #: ../admin/view/wp-slimstat-reports.php:534
2046
  #, fuzzy
2047
  msgid "Traffic Summary"
2048
  msgstr "Sources de trafic"
2049
 
2050
+ #: ../admin/view/wp-slimstat-reports.php:543
2051
  msgid "Top Referring Search Engines"
2052
  msgstr "Top Moteurs de Recherche"
2053
 
2054
+ #: ../admin/view/wp-slimstat-reports.php:572
2055
  msgid "Recent Outbound Links"
2056
  msgstr "Liens sortants récents"
2057
 
2058
+ #: ../admin/view/wp-slimstat-reports.php:584
2059
  msgid "Recent Posts"
2060
  msgstr "Contenus récents"
2061
 
2062
+ #: ../admin/view/wp-slimstat-reports.php:612
2063
  msgid "Recent Feeds"
2064
  msgstr "Flux récents"
2065
 
2066
+ #: ../admin/view/wp-slimstat-reports.php:624
2067
  msgid "Recent Pages Not Found"
2068
  msgstr "Dernières pages non trouvées"
2069
 
2070
+ #: ../admin/view/wp-slimstat-reports.php:636
2071
  msgid "Recent Internal Searches"
2072
  msgstr "Recherches internes récentes"
2073
 
2074
+ #: ../admin/view/wp-slimstat-reports.php:646
2075
  #, fuzzy
2076
  msgid "Searches performed using WordPress' built-in search functionality."
2077
  msgstr ""
2078
  "Recherches effectuées en utilisant la fonctionnalité de recherche intégrée "
2079
  "dans Wordpress."
2080
 
2081
+ #: ../admin/view/wp-slimstat-reports.php:649
2082
  msgid "Top Categories"
2083
  msgstr "Top Catégories"
2084
 
2085
+ #: ../admin/view/wp-slimstat-reports.php:662
2086
  msgid "Top Downloads"
2087
  msgstr "Top Téléchargements"
2088
 
2089
+ #: ../admin/view/wp-slimstat-reports.php:673
2090
  msgid ""
2091
  "You can configure Slimstat to track specific file extensions as downloads."
2092
  msgstr ""
2093
 
2094
+ #: ../admin/view/wp-slimstat-reports.php:676
2095
  msgid "Recent Events"
2096
  msgstr "Evènements Récents"
2097
 
2098
+ #: ../admin/view/wp-slimstat-reports.php:685
2099
+ #: ../admin/view/wp-slimstat-reports.php:709
2100
  #, fuzzy
2101
  msgid ""
2102
  "This report lists any <em>event</em> occurred on your website. Please refer "
2106
  "web. S'il vous plaît se référer à la FAQ pour plus d'informations sur la "
2107
  "façon de tirer parti de cette fonctionnalité."
2108
 
2109
+ #: ../admin/view/wp-slimstat-reports.php:688
2110
  msgid "Top Posts"
2111
  msgstr "Top Posts"
2112
 
2113
+ #: ../admin/view/wp-slimstat-reports.php:700
2114
  #, fuzzy
2115
  msgid "Top Events"
2116
  msgstr "Contenus récents"
2117
 
2118
+ #: ../admin/view/wp-slimstat-reports.php:712
2119
  msgid "Top Internal Searches"
2120
  msgstr "Top Recherches Internes"
2121
 
2122
+ #: ../admin/view/wp-slimstat-reports.php:724
2123
  msgid "Recent Categories"
2124
  msgstr "Dernières Catégories"
2125
 
2126
+ #: ../admin/view/wp-slimstat-reports.php:736
2127
  msgid "Top Pages Not Found"
2128
  msgstr "Top Pages non trouvées"
2129
 
2130
+ #: ../admin/view/wp-slimstat-reports.php:748
2131
  msgid "Top Authors"
2132
  msgstr "Top Auteurs"
2133
 
2134
+ #: ../admin/view/wp-slimstat-reports.php:759
2135
  msgid "Top Tags"
2136
  msgstr "Top Mots Clés"
2137
 
2138
+ #: ../admin/view/wp-slimstat-reports.php:771
2139
  msgid "Recent Downloads"
2140
  msgstr "Téléchargements récents"
2141
 
2142
+ #: ../admin/view/wp-slimstat-reports.php:783
2143
  #, fuzzy
2144
  msgid "Top Outbound Links"
2145
  msgstr "Lien sortant"
2146
 
2147
+ #: ../admin/view/wp-slimstat-reports.php:795
2148
  msgid "Your Website"
2149
  msgstr "Votre site web"
2150
 
2151
+ #: ../admin/view/wp-slimstat-reports.php:802
2152
  msgid ""
2153
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2154
  "this report is not affected by the filters set here above."
2156
  "Votre contenu en bref : Posts, commentaires, pingbacks, etc. Merci de noter "
2157
  "que ce rpport ne prend pas en compte les filtres ci-dessus."
2158
 
2159
+ #: ../admin/view/wp-slimstat-reports.php:805
2160
  #, fuzzy
2161
  msgid "Top Bounce Pages"
2162
  msgstr "Pages de Rebonds"
2163
 
2164
+ #: ../admin/view/wp-slimstat-reports.php:818
2165
  #, fuzzy
2166
  msgid "Top Exit Pages"
2167
  msgstr "Top Pages Vues"
2168
 
2169
+ #: ../admin/view/wp-slimstat-reports.php:831
2170
  #, fuzzy
2171
  msgid "Top Entry Pages"
2172
  msgstr "Top Pages Vues"
2173
 
2174
+ #: ../admin/view/wp-slimstat-reports.php:844
2175
+ #: ../admin/view/wp-slimstat-reports.php:853
2176
  #, fuzzy
2177
  msgid "Outbound Links"
2178
  msgstr "Lien sortant"
2179
 
2180
+ #: ../admin/view/wp-slimstat-reports.php:854
2181
  msgid "Unique Outbound"
2182
  msgstr ""
2183
 
2184
+ #: ../admin/view/wp-slimstat-reports.php:863
2185
  msgid "World Map"
2186
  msgstr "Carte du monde"
2187
 
2188
+ #: ../admin/view/wp-slimstat-reports.php:945
2189
  msgid "Refresh"
2190
  msgstr "Rafraichir"
2191
 
2192
+ #: ../admin/view/wp-slimstat-reports.php:982
2193
  #, php-format
2194
  msgid "Results %s - %s of %s"
2195
  msgstr "Résultats %s - %s de %s"
2196
 
2197
+ #: ../admin/view/wp-slimstat-reports.php:984
2198
  msgid "Refresh in"
2199
  msgstr "Rafraichir dans "
2200
 
2201
+ #: ../admin/view/wp-slimstat-reports.php:1078
2202
  msgid "Category ID"
2203
  msgstr "l'ID de la catégorie de l'article"
2204
 
2205
+ #: ../admin/view/wp-slimstat-reports.php:1083
2206
+ #: ../admin/view/wp-slimstat-reports.php:1097
2207
  #: ../admin/view/wp-slimstat-reports.php:1102
2208
  #, fuzzy
2209
  msgid "Code"
2210
  msgstr "Code OS "
2211
 
2212
  # Unknown
2213
+ #: ../admin/view/wp-slimstat-reports.php:1098
2214
+ #: ../languages/dynamic_strings.php:339 ../wp-slimstat.php:1367
2215
  msgid "l-"
2216
  msgstr "Inconnue"
2217
 
2218
+ #: ../admin/view/wp-slimstat-reports.php:1115
2219
  msgid "URL"
2220
  msgstr ""
2221
 
2222
+ #: ../admin/view/wp-slimstat-reports.php:1128
2223
  msgid "Referrer"
2224
  msgstr "Référent"
2225
 
2226
+ #: ../admin/view/wp-slimstat-reports.php:1170
2227
+ #: ../admin/view/wp-slimstat-reports.php:1424
2228
+ #: ../admin/view/wp-slimstat-reports.php:1480
2229
+ #: ../admin/view/wp-slimstat-reports.php:1486
2230
+ #: ../admin/view/wp-slimstat-reports.php:1492
2231
+ #: ../admin/view/wp-slimstat-reports.php:1498
2232
+ #: ../admin/view/wp-slimstat-reports.php:1504
2233
+ #: ../admin/view/wp-slimstat-reports.php:1510
2234
+ #: ../admin/view/wp-slimstat-reports.php:1516
2235
+ #: ../admin/view/wp-slimstat-reports.php:1736
2236
  msgid "Hits"
2237
  msgstr "Hits"
2238
 
2239
+ #: ../admin/view/wp-slimstat-reports.php:1351
2240
  #, fuzzy
2241
  msgid "Dataset Size"
2242
  msgstr "Taille de la base de données"
2243
 
2244
+ #: ../admin/view/wp-slimstat-reports.php:1353
2245
  msgid "Total number of records stored in the database."
2246
  msgstr ""
2247
 
2248
+ #: ../admin/view/wp-slimstat-reports.php:1355
2249
  msgid "DB Size"
2250
  msgstr "Taille de la base de données"
2251
 
2252
+ #: ../admin/view/wp-slimstat-reports.php:1358
2253
  #, fuzzy
2254
  msgid "Tracking Enabled"
2255
  msgstr "Mode traçage"
2256
 
2257
+ #: ../admin/view/wp-slimstat-reports.php:1361
2258
  msgid "Javascript Mode"
2259
  msgstr "Mode Javascript"
2260
 
2261
+ #: ../admin/view/wp-slimstat-reports.php:1364
2262
  msgid "Tracking Browser Caps"
2263
  msgstr "Traçage Capacités Navigateurs"
2264
 
2265
+ #: ../admin/view/wp-slimstat-reports.php:1367
2266
  msgid "Auto purge"
2267
  msgstr "Purge automatique"
2268
 
2269
+ #: ../admin/view/wp-slimstat-reports.php:1370
2270
  msgid "Oldest pageview"
2271
  msgstr "Plus ancienne page vue"
2272
 
2273
+ #: ../admin/view/wp-slimstat-reports.php:1371
2274
  msgid "No visits"
2275
  msgstr "Aucune visite"
2276
 
2277
+ #: ../admin/view/wp-slimstat-reports.php:1373
2278
+ #: ../admin/wp-slimstat-admin.php:112
2279
+ #, fuzzy
2280
+ msgid "Geolocation"
2281
+ msgstr "Ordre de tri"
2282
+
2283
+ #: ../admin/view/wp-slimstat-reports.php:1375
2284
  msgid "Date when the MaxMind Geolocation database was last updated."
2285
  msgstr ""
2286
 
2287
+ #: ../admin/view/wp-slimstat-reports.php:1386
2288
+ #: ../admin/view/wp-slimstat-reports.php:1544
2289
  msgid ""
2290
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2291
  "the tracking code is executed."
2293
  "Une demande pour charger un fichier HTML. WP SlimStat enregistre un \"pages "
2294
  "vues \" chaque fois que le code de traçage est exécuté."
2295
 
2296
+ #: ../admin/view/wp-slimstat-reports.php:1388
2297
  #, fuzzy
2298
  msgid "Days in Range"
2299
  msgstr "Intervalle de date"
2300
 
2301
+ #: ../admin/view/wp-slimstat-reports.php:1391
2302
  #, fuzzy
2303
  msgid "Average Daily Pageviews"
2304
  msgstr "Nombre de pages vues en moyenne"
2305
 
2306
+ #: ../admin/view/wp-slimstat-reports.php:1393
2307
  #, fuzzy
2308
  msgid ""
2309
  "How many pages have been visited on average every day during the current "
2311
  msgstr ""
2312
  "Combien de pages ont été visitées en moyenne au cours de la période en cours."
2313
 
2314
+ #: ../admin/view/wp-slimstat-reports.php:1395
2315
  msgid "From Search Results"
2316
  msgstr "Résultat de recherches"
2317
 
2318
+ #: ../admin/view/wp-slimstat-reports.php:1397
2319
  msgid ""
2320
  "Visitors who landed on your site after searching for a keyword on Google, "
2321
  "Yahoo, etc."
2323
  "Visiteurs qui sont arrivés sur votre site après une recherche par mots clés "
2324
  "sur Google, Yahoo, etc"
2325
 
2326
+ #: ../admin/view/wp-slimstat-reports.php:1401
2327
  msgid ""
2328
  "Used to differentiate between multiple requests to download a file from one "
2329
  "internet address (IP) and requests originating from many distinct addresses"
2332
  "fichier à partir d'une adresse Internet (IP) unique et les demandes "
2333
  "provenant de plusieurs adresses distinctes"
2334
 
2335
+ #: ../admin/view/wp-slimstat-reports.php:1403
2336
  msgid "Last 30 minutes"
2337
  msgstr "30 dernières minutes"
2338
 
2339
+ #: ../admin/view/wp-slimstat-reports.php:1442
2340
  msgid ""
2341
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2342
  "multiple times if they perform multiple visits."
2345
  "reviennent sont comptés plusieurs fois s'ils effectuent des visites "
2346
  "multiples."
2347
 
2348
+ #: ../admin/view/wp-slimstat-reports.php:1446
2349
  msgid "It includes only traffic generated by human visitors."
2350
  msgstr "Cela ne comprend que les visites dites humaines."
2351
 
2352
+ #: ../admin/view/wp-slimstat-reports.php:1448
2353
  msgid "Bounce rate"
2354
  msgstr "Taux de rebond"
2355
 
2356
+ #: ../admin/view/wp-slimstat-reports.php:1450
2357
  msgid ""
2358
  "Percentage of single-page visits, i.e. visits in which the person left your "
2359
  "site from the entrance page."
2361
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2362
  "desquelles la personne a quitté votre site dès la page d'entrée."
2363
 
2364
+ #: ../admin/view/wp-slimstat-reports.php:1452
2365
  msgid "Known visitors"
2366
  msgstr "Visiteurs connus"
2367
 
2368
+ #: ../admin/view/wp-slimstat-reports.php:1454
2369
  msgid "Visitors who had previously left a comment on your blog."
2370
  msgstr "Visiteurs qui ont déjà laissé un commentaire sur votre blog."
2371
 
2372
+ #: ../admin/view/wp-slimstat-reports.php:1456
2373
  msgid "New visitors"
2374
  msgstr "Nouveaux visiteurs"
2375
 
2376
+ #: ../admin/view/wp-slimstat-reports.php:1458
2377
  msgid "Human users who visited your site only once."
2378
  msgstr "Visiteurs humains qui ont visité votre site une seule fois."
2379
 
2380
+ #: ../admin/view/wp-slimstat-reports.php:1460
2381
  msgid "Bots"
2382
  msgstr "Robots"
2383
 
2384
+ #: ../admin/view/wp-slimstat-reports.php:1463
2385
  #, fuzzy
2386
  msgid "Pageviews per visit"
2387
  msgstr "Pages vues par visite"
2388
 
2389
+ #: ../admin/view/wp-slimstat-reports.php:1466
2390
  msgid "Longest visit"
2391
  msgstr "Visite la plus longue"
2392
 
2393
+ #: ../admin/view/wp-slimstat-reports.php:1467
2394
  msgid "hits"
2395
  msgstr "hits"
2396
 
2397
+ #: ../admin/view/wp-slimstat-reports.php:1478
2398
  msgid "0 - 30 seconds"
2399
  msgstr "0 - 30 secondes"
2400
 
2401
+ #: ../admin/view/wp-slimstat-reports.php:1484
2402
  msgid "31 - 60 seconds"
2403
  msgstr "31 - 60 secondes"
2404
 
2405
+ #: ../admin/view/wp-slimstat-reports.php:1490
2406
  msgid "1 - 3 minutes"
2407
  msgstr "1 - 3 minutes"
2408
 
2409
+ #: ../admin/view/wp-slimstat-reports.php:1496
2410
  msgid "3 - 5 minutes"
2411
  msgstr "3 - 5 minutes"
2412
 
2413
+ #: ../admin/view/wp-slimstat-reports.php:1502
2414
  msgid "5 - 7 minutes"
2415
  msgstr "5 - 7 minutes"
2416
 
2417
+ #: ../admin/view/wp-slimstat-reports.php:1508
2418
  msgid "7 - 10 minutes"
2419
  msgstr "7 - 10 minutes"
2420
 
2421
+ #: ../admin/view/wp-slimstat-reports.php:1514
2422
  msgid "More than 10 minutes"
2423
  msgstr "Plus de 10 minutes"
2424
 
2425
+ #: ../admin/view/wp-slimstat-reports.php:1526
2426
  #, fuzzy
2427
  msgid "Average visit duration"
2428
  msgstr "Durée des Visites"
2429
 
2430
+ #: ../admin/view/wp-slimstat-reports.php:1546
2431
  msgid "Unique Referrers"
2432
  msgstr "Référents uniques"
2433
 
2434
+ #: ../admin/view/wp-slimstat-reports.php:1548
2435
  msgid ""
2436
  "A referrer (or referring site) is the site that a visitor previously visited "
2437
  "before following a link to your site."
2439
  "Un référent (ou site référent) est le site que le visiteur a visité avant de "
2440
  "suivre un lien vers votre site."
2441
 
2442
+ #: ../admin/view/wp-slimstat-reports.php:1550
2443
  msgid "Direct Pageviews"
2444
  msgstr "Pages Vues Directes"
2445
 
2446
+ #: ../admin/view/wp-slimstat-reports.php:1552
2447
  msgid ""
2448
  "Visitors who visited the site by typing the URL directly into their browser. "
2449
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2456
  "courriels non marquées, ou des liens à partir de documents qui ne "
2457
  "contiennent pas de variables de suivi."
2458
 
2459
+ #: ../admin/view/wp-slimstat-reports.php:1554
2460
  msgid "From a search result"
2461
  msgstr "Depuis un moteur de recherche"
2462
 
2463
+ #: ../admin/view/wp-slimstat-reports.php:1556
2464
  msgid ""
2465
  "Visitors who came to your site via searches on Google or some other search "
2466
  "engine."
2468
  "Visiteurs qui sont venus sur le site via un moteur de recherche comme Google "
2469
  "ou autre."
2470
 
2471
+ #: ../admin/view/wp-slimstat-reports.php:1558
2472
  msgid "Unique Landing Pages"
2473
  msgstr "Pages d'Entrées Uniques"
2474
 
2475
+ #: ../admin/view/wp-slimstat-reports.php:1560
2476
  msgid ""
2477
  "The first page that a user views during a session. This is also known as the "
2478
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2484
  "mots clés 'Brooklyn Office Space' et arrive sur votre page d'accueil, elle "
2485
  "sera comptée (pour cette visite) comme la page d'entrée."
2486
 
2487
+ #: ../admin/view/wp-slimstat-reports.php:1562
2488
  msgid "Bounce Pages"
2489
  msgstr "Pages de Rebonds"
2490
 
2491
+ #: ../admin/view/wp-slimstat-reports.php:1564
2492
  #, fuzzy
2493
  msgid "Number of single page visits to your site over the selected period."
2494
  msgstr ""
2495
  "Nombre de visites d'une seule page de votre site au cours de la période "
2496
  "sélectionnée."
2497
 
2498
+ #: ../admin/view/wp-slimstat-reports.php:1566
2499
  msgid "New Visitors Rate"
2500
  msgstr "Taux de Nouveaux Visiteurs"
2501
 
2502
+ #: ../admin/view/wp-slimstat-reports.php:1568
2503
  #, fuzzy
2504
  msgid ""
2505
  "Percentage of single page visits, i.e. visits in which the person left your "
2508
  "Pourcentage de visites d'une seule page, par exemple les visites au cours "
2509
  "desquelles la personne a quitté votre site dès la page d'entrée."
2510
 
2511
+ #: ../admin/view/wp-slimstat-reports.php:1570
2512
  msgid "Currently from search engines"
2513
  msgstr "Moteurs de recherche récents"
2514
 
2515
+ #: ../admin/view/wp-slimstat-reports.php:1572
2516
  msgid ""
2517
  "Visitors who visited the site in the last 5 minutes coming from a search "
2518
  "engine."
2520
  "Visiteurs qui ont visité le site dans les 5 dernières visites, provenant "
2521
  "d'un moteur de recherche."
2522
 
2523
+ #: ../admin/view/wp-slimstat-reports.php:1642
2524
  msgid "Number of pages in your site included in Google's index."
2525
  msgstr "Nombre de pages de votre site indexées par Google."
2526
 
2527
+ #: ../admin/view/wp-slimstat-reports.php:1643
2528
  msgid "Google Index"
2529
  msgstr "Index Google"
2530
 
2531
+ #: ../admin/view/wp-slimstat-reports.php:1644
2532
  msgid "Number of pages, according to Google, that link back to your site."
2533
  msgstr ""
2534
  "Nombre de pages qui pointent sur votre site, d'après les informations "
2535
  "fournies par Google."
2536
 
2537
+ #: ../admin/view/wp-slimstat-reports.php:1645
2538
  msgid "Google Backlinks"
2539
  msgstr "Backlinks Google"
2540
 
2541
+ #: ../admin/view/wp-slimstat-reports.php:1646
2542
  msgid ""
2543
  "How many times the Facebook Like button has been approximately clicked on "
2544
  "your site."
2545
  msgstr ""
2546
  "Nombre de fois que votre site a été Liké par quelqu'un sur le réseau social."
2547
 
2548
+ #: ../admin/view/wp-slimstat-reports.php:1647
2549
  msgid "Facebook Likes"
2550
  msgstr "\"J'aime\" Facebook"
2551
 
2552
+ #: ../admin/view/wp-slimstat-reports.php:1648
2553
  msgid ""
2554
  "How many times your site has been shared by someone on the social network."
2555
  msgstr ""
2556
  "Nombre de fois que votre site a été partagé par quelqu'un sur le réseau "
2557
  "social."
2558
 
2559
+ #: ../admin/view/wp-slimstat-reports.php:1649
2560
  msgid "Facebook Shares"
2561
  msgstr "Partages Facebook"
2562
 
2563
+ #: ../admin/view/wp-slimstat-reports.php:1650
2564
  msgid "How many times links to your website have been clicked on Facebook."
2565
  msgstr "Nombre de fois que vos liens ont été activés sur Facebook"
2566
 
2567
+ #: ../admin/view/wp-slimstat-reports.php:1651
2568
  msgid "Facebook Clicks"
2569
  msgstr "Clicks Facebook"
2570
 
2571
+ #: ../admin/view/wp-slimstat-reports.php:1652
2572
  msgid ""
2573
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2574
  "traffic data."
2576
  "Alexa est une filiale d'Amazon.com qui fournit des données commerciales "
2577
  "concernant le trafic web."
2578
 
2579
+ #: ../admin/view/wp-slimstat-reports.php:1653
2580
  msgid "Alexa World Rank"
2581
  msgstr "Alexa, Classement mondial"
2582
 
2583
+ #: ../admin/view/wp-slimstat-reports.php:1654
2584
  msgid "Alexa Country Rank"
2585
  msgstr "Alexa, Classement par pays"
2586
 
2587
+ #: ../admin/view/wp-slimstat-reports.php:1655
2588
  msgid "Alexa Popularity"
2589
  msgstr "Alexa, Popularité"
2590
 
2591
+ #: ../admin/view/wp-slimstat-reports.php:1666
2592
  msgid "Content Items"
2593
  msgstr "Contenus"
2594
 
2595
+ #: ../admin/view/wp-slimstat-reports.php:1668
2596
  msgid ""
2597
  "This value includes not only posts, but also custom post types, regardless "
2598
  "of their status"
2600
  "Cette valeur n'inclut pas seulement les articles de blog, mais aussi des "
2601
  "types personnalisés d'articles, quel que soit leur statut."
2602
 
2603
+ #: ../admin/view/wp-slimstat-reports.php:1670
2604
  #, fuzzy
2605
  msgid "Posts"
2606
  msgstr "Top Posts"
2607
 
2608
+ #: ../admin/view/wp-slimstat-reports.php:1673
2609
  #, fuzzy
2610
  msgid "Pages"
2611
  msgstr "Pages de sorties les plus utilisées"
2612
 
2613
+ #: ../admin/view/wp-slimstat-reports.php:1676
2614
  msgid "Attachments"
2615
  msgstr ""
2616
 
2617
+ #: ../admin/view/wp-slimstat-reports.php:1679
2618
  #, fuzzy
2619
  msgid "Revisions"
2620
  msgstr "Permissions"
2621
 
2622
+ #: ../admin/view/wp-slimstat-reports.php:1682
2623
  #, fuzzy
2624
  msgid "Comments"
2625
  msgstr "Nombre de commentaires"
2626
 
2627
+ #: ../admin/view/wp-slimstat-reports.php:1685
2628
  #, fuzzy
2629
  msgid "Avg Comments per Post"
2630
  msgstr "Moyenne de commentaires par Article"
2631
 
2632
+ #: ../admin/view/wp-slimstat-reports.php:1688
2633
  msgid "Avg Server Latency"
2634
  msgstr "Latence moyenne du serveur"
2635
 
2636
+ #: ../admin/view/wp-slimstat-reports.php:1690
2637
  msgid ""
2638
  "Latency is the amount of time it takes for the host server to receive and "
2639
  "process a request for a page object. The amount of latency depends largely "
2640
  "on how far away the user is from the server."
2641
  msgstr ""
2642
 
2643
+ #: ../admin/view/wp-slimstat-reports.php:1733
2644
  #, fuzzy
2645
  msgid "Coordinates"
2646
  msgstr "Mode traçage"
2647
 
2648
+ #: ../admin/view/wp-slimstat-reports.php:1733
2649
  msgid "Date"
2650
  msgstr ""
2651
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2652
  # Unknown
2653
+ #: ../admin/view/wp-slimstat-reports.php:1749
2654
  msgid "c-xx"
2655
  msgstr "Inconnu"
2656
 
2657
  # Afghanistan
2658
+ #: ../admin/view/wp-slimstat-reports.php:1749
2659
  msgid "c-af"
2660
  msgstr "Afghanistan"
2661
 
2662
  # Åland Islands
2663
+ #: ../admin/view/wp-slimstat-reports.php:1749
2664
  msgid "c-ax"
2665
  msgstr "Îles Åland"
2666
 
2667
  # Albania
2668
+ #: ../admin/view/wp-slimstat-reports.php:1749
2669
  msgid "c-al"
2670
  msgstr "Albanie"
2671
 
2672
  # Algeria
2673
+ #: ../admin/view/wp-slimstat-reports.php:1749
2674
  msgid "c-dz"
2675
  msgstr "Algérie"
2676
 
2677
  # Andorra
2678
+ #: ../admin/view/wp-slimstat-reports.php:1749
2679
  msgid "c-ad"
2680
  msgstr "Andorre"
2681
 
2682
  # Angola
2683
+ #: ../admin/view/wp-slimstat-reports.php:1749
2684
  msgid "c-ao"
2685
  msgstr "Angola"
2686
 
2687
  # Anguilla
2688
+ #: ../admin/view/wp-slimstat-reports.php:1749
2689
  msgid "c-ai"
2690
  msgstr "Anguilla"
2691
 
2692
  # Antigua and Barbuda
2693
+ #: ../admin/view/wp-slimstat-reports.php:1749
2694
  msgid "c-ag"
2695
  msgstr "Antigua et Barbuda"
2696
 
2697
  # Argentina
2698
+ #: ../admin/view/wp-slimstat-reports.php:1749
2699
  msgid "c-ar"
2700
  msgstr "Argentine"
2701
 
2702
  # Armenia
2703
+ #: ../admin/view/wp-slimstat-reports.php:1749
2704
  msgid "c-am"
2705
  msgstr "Arménie"
2706
 
2707
  # Aruba
2708
+ #: ../admin/view/wp-slimstat-reports.php:1749
2709
  msgid "c-aw"
2710
  msgstr "Aruba"
2711
 
2712
  # Australia
2713
+ #: ../admin/view/wp-slimstat-reports.php:1749
2714
  msgid "c-au"
2715
  msgstr "Australie"
2716
 
2717
  # Austria
2718
+ #: ../admin/view/wp-slimstat-reports.php:1749
2719
  msgid "c-at"
2720
  msgstr "Autriche"
2721
 
2722
  # Azerbaijan
2723
+ #: ../admin/view/wp-slimstat-reports.php:1749
2724
  msgid "c-az"
2725
  msgstr "Azerbaïdjan"
2726
 
2727
  # Bahamas
2728
+ #: ../admin/view/wp-slimstat-reports.php:1749
2729
  msgid "c-bs"
2730
  msgstr "Bahamas"
2731
 
2732
  # Bahrain
2733
+ #: ../admin/view/wp-slimstat-reports.php:1749
2734
  msgid "c-bh"
2735
  msgstr "Bahreïn"
2736
 
2737
  # Bangladesh
2738
+ #: ../admin/view/wp-slimstat-reports.php:1749
2739
  msgid "c-bd"
2740
  msgstr "Bangladesh"
2741
 
2742
  # Barbados
2743
+ #: ../admin/view/wp-slimstat-reports.php:1749
2744
  msgid "c-bb"
2745
  msgstr "Barbade"
2746
 
2747
  # Belarus
2748
+ #: ../admin/view/wp-slimstat-reports.php:1749
2749
  msgid "c-by"
2750
  msgstr "Bélarus"
2751
 
2752
  # Belgium
2753
+ #: ../admin/view/wp-slimstat-reports.php:1749
2754
  msgid "c-be"
2755
  msgstr "Belgique"
2756
 
2757
  # Belize
2758
+ #: ../admin/view/wp-slimstat-reports.php:1749
2759
  msgid "c-bz"
2760
  msgstr "Belize"
2761
 
2762
  # Benin
2763
+ #: ../admin/view/wp-slimstat-reports.php:1749
2764
  msgid "c-bj"
2765
  msgstr "Bénin"
2766
 
2767
  # Bermuda
2768
+ #: ../admin/view/wp-slimstat-reports.php:1749
2769
  msgid "c-bm"
2770
  msgstr "Bermudes"
2771
 
2772
  # Bhutan
2773
+ #: ../admin/view/wp-slimstat-reports.php:1749
2774
  msgid "c-bt"
2775
  msgstr "Bhoutan"
2776
 
2777
  # Bolivia
2778
+ #: ../admin/view/wp-slimstat-reports.php:1749
2779
  msgid "c-bo"
2780
  msgstr "État plurinational de Bolivie"
2781
 
2782
  # Bosnia and Herzegovina
2783
+ #: ../admin/view/wp-slimstat-reports.php:1749
2784
  msgid "c-ba"
2785
  msgstr "Bosnie-Herzégovine"
2786
 
2787
  # Botswana
2788
+ #: ../admin/view/wp-slimstat-reports.php:1749
2789
  msgid "c-bw"
2790
  msgstr "Botswana"
2791
 
2792
  # Brazil
2793
+ #: ../admin/view/wp-slimstat-reports.php:1749
2794
  msgid "c-br"
2795
  msgstr "Brésil"
2796
 
2797
  # Brunei Darussalam
2798
+ #: ../admin/view/wp-slimstat-reports.php:1749
2799
  msgid "c-bn"
2800
  msgstr "Brunéi Darussalam"
2801
 
2802
  # Bulgaria
2803
+ #: ../admin/view/wp-slimstat-reports.php:1749
2804
  msgid "c-bg"
2805
  msgstr "Bulgarie"
2806
 
2807
  # Burkina Faso
2808
+ #: ../admin/view/wp-slimstat-reports.php:1749
2809
  msgid "c-bf"
2810
  msgstr "Burkina Faso"
2811
 
2812
  # Burundi
2813
+ #: ../admin/view/wp-slimstat-reports.php:1749
2814
  msgid "c-bi"
2815
  msgstr "Burundi"
2816
 
2817
  # Cambodia
2818
+ #: ../admin/view/wp-slimstat-reports.php:1749
2819
  msgid "c-kh"
2820
  msgstr "Cambodge"
2821
 
2822
  # Cameroon
2823
+ #: ../admin/view/wp-slimstat-reports.php:1749
2824
  msgid "c-cm"
2825
  msgstr "Cameroun"
2826
 
2827
  # Canada
2828
+ #: ../admin/view/wp-slimstat-reports.php:1749
2829
  msgid "c-ca"
2830
  msgstr "Canada"
2831
 
2832
  # Cape Verde
2833
+ #: ../admin/view/wp-slimstat-reports.php:1749
2834
  msgid "c-cv"
2835
  msgstr "Cap-Vert"
2836
 
2837
  # Cayman Islands
2838
+ #: ../admin/view/wp-slimstat-reports.php:1749
2839
  msgid "c-ky"
2840
  msgstr "Îles Caïmans"
2841
 
2842
  # Central African Republic
2843
+ #: ../admin/view/wp-slimstat-reports.php:1749
2844
  msgid "c-cf"
2845
  msgstr "République Centrafricaine"
2846
 
2847
  # Chad
2848
+ #: ../admin/view/wp-slimstat-reports.php:1749
2849
  msgid "c-td"
2850
  msgstr "Tchad"
2851
 
2852
  # Chile
2853
+ #: ../admin/view/wp-slimstat-reports.php:1749
2854
  msgid "c-cl"
2855
  msgstr "Chili"
2856
 
2857
  # China
2858
+ #: ../admin/view/wp-slimstat-reports.php:1749
2859
  msgid "c-cn"
2860
  msgstr "Chine"
2861
 
2862
  # Colombia
2863
+ #: ../admin/view/wp-slimstat-reports.php:1749
2864
  msgid "c-co"
2865
  msgstr "Colombie"
2866
 
2867
  # Comoros
2868
+ #: ../admin/view/wp-slimstat-reports.php:1749
2869
  msgid "c-km"
2870
  msgstr "Comores"
2871
 
2872
  # Congo
2873
+ #: ../admin/view/wp-slimstat-reports.php:1749
2874
  msgid "c-cg"
2875
  msgstr "Congo"
2876
 
2877
  # The Democratic Republic of the Congo
2878
+ #: ../admin/view/wp-slimstat-reports.php:1749
2879
  msgid "c-cd"
2880
  msgstr "République Démocratique du Congo"
2881
 
2882
  # Costa Rica
2883
+ #: ../admin/view/wp-slimstat-reports.php:1749
2884
  msgid "c-cr"
2885
  msgstr "Costa Rica"
2886
 
2887
  # Côte d'Ivoire
2888
+ #: ../admin/view/wp-slimstat-reports.php:1749
2889
  msgid "c-ci"
2890
  msgstr "Côte d'Ivoire"
2891
 
2892
  # Croatia
2893
+ #: ../admin/view/wp-slimstat-reports.php:1749
2894
  msgid "c-hr"
2895
  msgstr "Croatie"
2896
 
2897
  # Cuba
2898
+ #: ../admin/view/wp-slimstat-reports.php:1749
2899
  msgid "c-cu"
2900
  msgstr "Cuba"
2901
 
2902
  # Cyprus
2903
+ #: ../admin/view/wp-slimstat-reports.php:1749
2904
  msgid "c-cy"
2905
  msgstr "Chypre"
2906
 
2907
  # Czech Republic
2908
+ #: ../admin/view/wp-slimstat-reports.php:1749
2909
  msgid "c-cz"
2910
  msgstr "République tchèque"
2911
 
2912
  # Denmark
2913
+ #: ../admin/view/wp-slimstat-reports.php:1749
2914
  msgid "c-dk"
2915
  msgstr "Danemark"
2916
 
2917
  # Djibouti
2918
+ #: ../admin/view/wp-slimstat-reports.php:1749
2919
  msgid "c-dj"
2920
  msgstr "Djibouti"
2921
 
2922
  # Dominica
2923
+ #: ../admin/view/wp-slimstat-reports.php:1749
2924
  msgid "c-dm"
2925
  msgstr "Dominique"
2926
 
2927
  # Dominican Republic
2928
+ #: ../admin/view/wp-slimstat-reports.php:1749
2929
  msgid "c-do"
2930
  msgstr "République dominicaine"
2931
 
2932
  # Ecuador
2933
+ #: ../admin/view/wp-slimstat-reports.php:1749
2934
  msgid "c-ec"
2935
  msgstr "Équateur"
2936
 
2937
  # Egypt
2938
+ #: ../admin/view/wp-slimstat-reports.php:1749
2939
  msgid "c-eg"
2940
  msgstr "Égypte"
2941
 
2942
  # El Salvador
2943
+ #: ../admin/view/wp-slimstat-reports.php:1749
2944
  msgid "c-sv"
2945
  msgstr "El Salvador"
2946
 
2947
  # Equatorial Guinea
2948
+ #: ../admin/view/wp-slimstat-reports.php:1749
2949
  msgid "c-gq"
2950
  msgstr "Guinée équatoriale"
2951
 
2952
  # Eritrea
2953
+ #: ../admin/view/wp-slimstat-reports.php:1749
2954
  msgid "c-er"
2955
  msgstr "Érythrée"
2956
 
2957
  # Estonia
2958
+ #: ../admin/view/wp-slimstat-reports.php:1749
2959
  msgid "c-ee"
2960
  msgstr "Estonie"
2961
 
2962
  # Ethiopia
2963
+ #: ../admin/view/wp-slimstat-reports.php:1749
2964
  msgid "c-et"
2965
  msgstr "Éthiopie"
2966
 
2967
  # Faroe Islands
2968
+ #: ../admin/view/wp-slimstat-reports.php:1749
2969
  msgid "c-fo"
2970
  msgstr "Îles Féroé"
2971
 
2972
  # Falkland Islands (Malvinas)
2973
+ #: ../admin/view/wp-slimstat-reports.php:1749
2974
  msgid "c-fk"
2975
  msgstr "Îles Falkland (Malvinas)"
2976
 
2977
  # Fiji
2978
+ #: ../admin/view/wp-slimstat-reports.php:1749
2979
  msgid "c-fj"
2980
  msgstr "Fidji"
2981
 
2982
  # Finland
2983
+ #: ../admin/view/wp-slimstat-reports.php:1749
2984
  msgid "c-fi"
2985
  msgstr "Finlande"
2986
 
2987
  # France
2988
+ #: ../admin/view/wp-slimstat-reports.php:1749
2989
  msgid "c-fr"
2990
  msgstr "France"
2991
 
2992
  # French Guiana
2993
+ #: ../admin/view/wp-slimstat-reports.php:1749
2994
  msgid "c-gf"
2995
  msgstr "Guyane française"
2996
 
2997
  # Gabon
2998
+ #: ../admin/view/wp-slimstat-reports.php:1749
2999
  msgid "c-ga"
3000
  msgstr "Gabon"
3001
 
3002
  # Gambia
3003
+ #: ../admin/view/wp-slimstat-reports.php:1749
3004
  msgid "c-gm"
3005
  msgstr "Gambie"
3006
 
3007
  # Georgia
3008
+ #: ../admin/view/wp-slimstat-reports.php:1749
3009
  msgid "c-ge"
3010
  msgstr "Géorgie"
3011
 
3012
  # Germany
3013
+ #: ../admin/view/wp-slimstat-reports.php:1749
3014
  msgid "c-de"
3015
  msgstr "Allemagne"
3016
 
3017
  # Ghana
3018
+ #: ../admin/view/wp-slimstat-reports.php:1749
3019
  msgid "c-gh"
3020
  msgstr "Ghana"
3021
 
3022
  # Greece
3023
+ #: ../admin/view/wp-slimstat-reports.php:1749
3024
  msgid "c-gr"
3025
  msgstr "Grèce"
3026
 
3027
  # Greenland
3028
+ #: ../admin/view/wp-slimstat-reports.php:1749
3029
  msgid "c-gl"
3030
  msgstr "Groenland"
3031
 
3032
  # Grenada
3033
+ #: ../admin/view/wp-slimstat-reports.php:1749
3034
  msgid "c-gd"
3035
  msgstr "Grenade"
3036
 
3037
  # Guadeloupe
3038
+ #: ../admin/view/wp-slimstat-reports.php:1749
3039
  msgid "c-gp"
3040
  msgstr "Guadeloupe"
3041
 
3042
  # Guatemala
3043
+ #: ../admin/view/wp-slimstat-reports.php:1749
3044
  msgid "c-gt"
3045
  msgstr "Guatemala"
3046
 
3047
  # Guinea
3048
+ #: ../admin/view/wp-slimstat-reports.php:1749
3049
  msgid "c-gn"
3050
  msgstr "Guinée"
3051
 
3052
  # Guinea-Bissau
3053
+ #: ../admin/view/wp-slimstat-reports.php:1749
3054
  msgid "c-gw"
3055
  msgstr "Guinée-Bissau"
3056
 
3057
  # Guyana
3058
+ #: ../admin/view/wp-slimstat-reports.php:1749
3059
  msgid "c-gy"
3060
  msgstr "Guyana"
3061
 
3062
  # Haiti
3063
+ #: ../admin/view/wp-slimstat-reports.php:1749
3064
  msgid "c-ht"
3065
  msgstr "Haïti"
3066
 
3067
  # Honduras
3068
+ #: ../admin/view/wp-slimstat-reports.php:1749
3069
  msgid "c-hn"
3070
  msgstr "Honduras"
3071
 
3072
  # Hong Kong
3073
+ #: ../admin/view/wp-slimstat-reports.php:1749
3074
  msgid "c-hk"
3075
  msgstr "Hong Kong"
3076
 
3077
  # Hungary
3078
+ #: ../admin/view/wp-slimstat-reports.php:1749
3079
  msgid "c-hu"
3080
  msgstr "Hongrie"
3081
 
3082
  # Iceland
3083
+ #: ../admin/view/wp-slimstat-reports.php:1749
3084
  msgid "c-is"
3085
  msgstr "Islande"
3086
 
3087
  # India
3088
+ #: ../admin/view/wp-slimstat-reports.php:1749
3089
  msgid "c-in"
3090
  msgstr "Inde"
3091
 
3092
  # Indonesia
3093
+ #: ../admin/view/wp-slimstat-reports.php:1749
3094
  msgid "c-id"
3095
  msgstr "Indonésie"
3096
 
3097
  # Islamic Republic of Iran
3098
+ #: ../admin/view/wp-slimstat-reports.php:1749
3099
  msgid "c-ir"
3100
  msgstr "République islamique d'Iran"
3101
 
3102
  # Iraq
3103
+ #: ../admin/view/wp-slimstat-reports.php:1749
3104
  msgid "c-iq"
3105
  msgstr "Irak"
3106
 
3107
  # Ireland
3108
+ #: ../admin/view/wp-slimstat-reports.php:1749
3109
  msgid "c-ie"
3110
  msgstr "Irlande"
3111
 
3112
  # Israel
3113
+ #: ../admin/view/wp-slimstat-reports.php:1749
3114
  msgid "c-il"
3115
  msgstr "Israël"
3116
 
3117
  # Italy
3118
+ #: ../admin/view/wp-slimstat-reports.php:1749
3119
  msgid "c-it"
3120
  msgstr "Italie"
3121
 
3122
  # Jamaica
3123
+ #: ../admin/view/wp-slimstat-reports.php:1749
3124
  msgid "c-jm"
3125
  msgstr "Jamaïque"
3126
 
3127
  # Japan
3128
+ #: ../admin/view/wp-slimstat-reports.php:1749
3129
  msgid "c-jp"
3130
  msgstr "Japon"
3131
 
3132
  # Jordan
3133
+ #: ../admin/view/wp-slimstat-reports.php:1749
3134
  msgid "c-jo"
3135
  msgstr "Jordanie"
3136
 
3137
  # Kazakhstan
3138
+ #: ../admin/view/wp-slimstat-reports.php:1749
3139
  msgid "c-kz"
3140
  msgstr "Kazakhstan"
3141
 
3142
  # Kenya
3143
+ #: ../admin/view/wp-slimstat-reports.php:1749
3144
  msgid "c-ke"
3145
  msgstr "Kenya"
3146
 
3147
  # Nauru
3148
+ #: ../admin/view/wp-slimstat-reports.php:1749
3149
  msgid "c-nr"
3150
  msgstr "Nauru"
3151
 
3152
  # Democratic People's Republic of Korea
3153
+ #: ../admin/view/wp-slimstat-reports.php:1749
3154
  msgid "c-kp"
3155
  msgstr "République populaire démocratique de Corée"
3156
 
3157
  # Republic of Korea
3158
+ #: ../admin/view/wp-slimstat-reports.php:1749
3159
  msgid "c-kr"
3160
  msgstr "République de Corée"
3161
 
3162
+ #: ../admin/view/wp-slimstat-reports.php:1749
3163
  msgid "c-kv"
3164
  msgstr "Kossovo"
3165
 
3166
  # Kuwait
3167
+ #: ../admin/view/wp-slimstat-reports.php:1749
3168
  msgid "c-kw"
3169
  msgstr "Koweït"
3170
 
3171
  # Kyrgyzstan
3172
+ #: ../admin/view/wp-slimstat-reports.php:1749
3173
  msgid "c-kg"
3174
  msgstr "Kirghizistan"
3175
 
3176
  # Lao People's Democratic Republic
3177
+ #: ../admin/view/wp-slimstat-reports.php:1749
3178
  msgid "c-la"
3179
  msgstr "République démocratique populaire lao"
3180
 
3181
  # Latvia
3182
+ #: ../admin/view/wp-slimstat-reports.php:1749
3183
  msgid "c-lv"
3184
  msgstr "Lettonie"
3185
 
3186
  # Lebanon
3187
+ #: ../admin/view/wp-slimstat-reports.php:1749
3188
  msgid "c-lb"
3189
  msgstr "Liban"
3190
 
3191
  # Lesotho
3192
+ #: ../admin/view/wp-slimstat-reports.php:1749
3193
  msgid "c-ls"
3194
  msgstr "Lesotho"
3195
 
3196
  # Liberia
3197
+ #: ../admin/view/wp-slimstat-reports.php:1749
3198
  msgid "c-lr"
3199
  msgstr "Libéria"
3200
 
3201
  # Libyan Arab Jamahiriya
3202
+ #: ../admin/view/wp-slimstat-reports.php:1749
3203
  msgid "c-ly"
3204
  msgstr "Jamahiriya arabe libyenne"
3205
 
3206
  # Liechtenstein
3207
+ #: ../admin/view/wp-slimstat-reports.php:1749
3208
  msgid "c-li"
3209
  msgstr "Liechtenstein"
3210
 
3211
  # Lithuania
3212
+ #: ../admin/view/wp-slimstat-reports.php:1749
3213
  msgid "c-lt"
3214
  msgstr "Lituanie"
3215
 
3216
  # Luxembourg
3217
+ #: ../admin/view/wp-slimstat-reports.php:1749
3218
  msgid "c-lu"
3219
  msgstr "Luxembourg"
3220
 
3221
  # The Former Yugoslav Republic of Macedonia
3222
+ #: ../admin/view/wp-slimstat-reports.php:1749
3223
  msgid "c-mk"
3224
  msgstr "Ex-république yougoslave de Macédoine"
3225
 
3226
  # Madagascar
3227
+ #: ../admin/view/wp-slimstat-reports.php:1749
3228
  msgid "c-mg"
3229
  msgstr "Madagascar"
3230
 
3231
  # Malawi
3232
+ #: ../admin/view/wp-slimstat-reports.php:1749
3233
  msgid "c-mw"
3234
  msgstr "Malawi"
3235
 
3236
  # Malaysia
3237
+ #: ../admin/view/wp-slimstat-reports.php:1749
3238
  msgid "c-my"
3239
  msgstr "Malaisie"
3240
 
3241
  # Mali
3242
+ #: ../admin/view/wp-slimstat-reports.php:1749
3243
  msgid "c-ml"
3244
  msgstr "Mali"
3245
 
3246
  # Malta
3247
+ #: ../admin/view/wp-slimstat-reports.php:1749
3248
  msgid "c-mt"
3249
  msgstr "Malte"
3250
 
3251
  # Martinique
3252
+ #: ../admin/view/wp-slimstat-reports.php:1749
3253
  msgid "c-mq"
3254
  msgstr "Martinique"
3255
 
3256
  # Mauritania
3257
+ #: ../admin/view/wp-slimstat-reports.php:1749
3258
  msgid "c-mr"
3259
  msgstr "Mauritanie"
3260
 
3261
  # Mauritius
3262
+ #: ../admin/view/wp-slimstat-reports.php:1749
3263
  msgid "c-mu"
3264
  msgstr "Maurice"
3265
 
3266
  # Mexico
3267
+ #: ../admin/view/wp-slimstat-reports.php:1749
3268
  msgid "c-mx"
3269
  msgstr "Mexique"
3270
 
3271
  # Moldova
3272
+ #: ../admin/view/wp-slimstat-reports.php:1749
3273
  msgid "c-md"
3274
  msgstr "République de Moldova"
3275
 
3276
  # Mongolia
3277
+ #: ../admin/view/wp-slimstat-reports.php:1749
3278
  msgid "c-mn"
3279
  msgstr "Mongolie"
3280
 
3281
  # Montenegro
3282
+ #: ../admin/view/wp-slimstat-reports.php:1749
3283
  msgid "c-me"
3284
  msgstr "Monténégro"
3285
 
3286
  # Montserrat
3287
+ #: ../admin/view/wp-slimstat-reports.php:1749
3288
  msgid "c-ms"
3289
  msgstr "Montserrat"
3290
 
3291
  # Morocco
3292
+ #: ../admin/view/wp-slimstat-reports.php:1749
3293
  msgid "c-ma"
3294
  msgstr "Maroc"
3295
 
3296
  # Mozambique
3297
+ #: ../admin/view/wp-slimstat-reports.php:1749
3298
  msgid "c-mz"
3299
  msgstr "Mozambique"
3300
 
3301
  # Myanmar
3302
+ #: ../admin/view/wp-slimstat-reports.php:1749
3303
  msgid "c-mm"
3304
  msgstr "Myanmar"
3305
 
3306
  # Namibia
3307
+ #: ../admin/view/wp-slimstat-reports.php:1749
3308
  msgid "c-na"
3309
  msgstr "Namibie"
3310
 
3311
  # Nepal
3312
+ #: ../admin/view/wp-slimstat-reports.php:1749
3313
  msgid "c-np"
3314
  msgstr "Népal"
3315
 
3316
  # Netherlands
3317
+ #: ../admin/view/wp-slimstat-reports.php:1749
3318
  msgid "c-nl"
3319
  msgstr "Pays-bas"
3320
 
3321
  # New Caledonia
3322
+ #: ../admin/view/wp-slimstat-reports.php:1749
3323
  msgid "c-nc"
3324
  msgstr "Nouvelle-Calédonie"
3325
 
3326
  # New Zealand
3327
+ #: ../admin/view/wp-slimstat-reports.php:1749
3328
  msgid "c-nz"
3329
  msgstr "Nouvelle-Zélande"
3330
 
3331
  # Nicaragua
3332
+ #: ../admin/view/wp-slimstat-reports.php:1749
3333
  msgid "c-ni"
3334
  msgstr "Nicaragua"
3335
 
3336
  # Niger
3337
+ #: ../admin/view/wp-slimstat-reports.php:1749
3338
  msgid "c-ne"
3339
  msgstr "Niger"
3340
 
3341
  # Nigeria
3342
+ #: ../admin/view/wp-slimstat-reports.php:1749
3343
  msgid "c-ng"
3344
  msgstr "Nigéria"
3345
 
3346
  # Norway
3347
+ #: ../admin/view/wp-slimstat-reports.php:1749
3348
  msgid "c-no"
3349
  msgstr "Norvège"
3350
 
3351
  # Oman
3352
+ #: ../admin/view/wp-slimstat-reports.php:1749
3353
  msgid "c-om"
3354
  msgstr "Oman"
3355
 
3356
  # Pakistan
3357
+ #: ../admin/view/wp-slimstat-reports.php:1749
3358
  msgid "c-pk"
3359
  msgstr "Pakistan"
3360
 
3361
  # Palau
3362
+ #: ../admin/view/wp-slimstat-reports.php:1749
3363
  msgid "c-pw"
3364
  msgstr "Palaos"
3365
 
3366
  # Occupied Palestinian Territory
3367
+ #: ../admin/view/wp-slimstat-reports.php:1749
3368
  msgid "c-ps"
3369
  msgstr "Territoire palestinien occupé"
3370
 
3371
  # Panama
3372
+ #: ../admin/view/wp-slimstat-reports.php:1749
3373
  msgid "c-pa"
3374
  msgstr "Panama"
3375
 
3376
  # Papua New Guinea
3377
+ #: ../admin/view/wp-slimstat-reports.php:1749
3378
  msgid "c-pg"
3379
  msgstr "Papouasie-Nouvelle-Guinée"
3380
 
3381
  # Paraguay
3382
+ #: ../admin/view/wp-slimstat-reports.php:1749
3383
  msgid "c-py"
3384
  msgstr "Paraguay"
3385
 
3386
  # Peru
3387
+ #: ../admin/view/wp-slimstat-reports.php:1749
3388
  msgid "c-pe"
3389
  msgstr "Pérou"
3390
 
3391
  # Philippines
3392
+ #: ../admin/view/wp-slimstat-reports.php:1749
3393
  msgid "c-ph"
3394
  msgstr "Philippines"
3395
 
3396
  # Poland
3397
+ #: ../admin/view/wp-slimstat-reports.php:1749
3398
  msgid "c-pl"
3399
  msgstr "Pologne"
3400
 
3401
  # Portugal
3402
+ #: ../admin/view/wp-slimstat-reports.php:1749
3403
  msgid "c-pt"
3404
  msgstr "Portugal"
3405
 
3406
  # Puerto Rico
3407
+ #: ../admin/view/wp-slimstat-reports.php:1749
3408
  msgid "c-pr"
3409
  msgstr "Porto Rico"
3410
 
3411
  # Qatar
3412
+ #: ../admin/view/wp-slimstat-reports.php:1749
3413
  msgid "c-qa"
3414
  msgstr "Qatar"
3415
 
3416
  # Réunion
3417
+ #: ../admin/view/wp-slimstat-reports.php:1749
3418
  msgid "c-re"
3419
  msgstr "Réunion"
3420
 
3421
  # Romania
3422
+ #: ../admin/view/wp-slimstat-reports.php:1749
3423
  msgid "c-ro"
3424
  msgstr "Roumanie"
3425
 
3426
  # Russian Federation
3427
+ #: ../admin/view/wp-slimstat-reports.php:1749
3428
  msgid "c-ru"
3429
  msgstr "Fédération de Russie"
3430
 
3431
  # Rwanda
3432
+ #: ../admin/view/wp-slimstat-reports.php:1749
3433
  msgid "c-rw"
3434
  msgstr "Rwanda"
3435
 
3436
  # Saint Kitts and Nevis
3437
+ #: ../admin/view/wp-slimstat-reports.php:1749
3438
  msgid "c-kn"
3439
  msgstr "Saint-Kitts-et-Nevis"
3440
 
3441
  # Saint Lucia
3442
+ #: ../admin/view/wp-slimstat-reports.php:1749
3443
  msgid "c-lc"
3444
  msgstr "Sainte-Lucie"
3445
 
3446
  # Saint Martin
3447
+ #: ../admin/view/wp-slimstat-reports.php:1749
3448
  msgid "c-mf"
3449
  msgstr "Saint-Martin"
3450
 
3451
  # Saint Vincent and the Grenadines
3452
+ #: ../admin/view/wp-slimstat-reports.php:1749
3453
  msgid "c-vc"
3454
  msgstr "Saint-Vincent-et-les Grenadines"
3455
 
3456
  # Samoa
3457
+ #: ../admin/view/wp-slimstat-reports.php:1749
3458
  msgid "c-ws"
3459
  msgstr "Samoa"
3460
 
3461
  # Sao Tome and Principe
3462
+ #: ../admin/view/wp-slimstat-reports.php:1749
3463
  msgid "c-st"
3464
  msgstr "Sao Tomé-et-Principe"
3465
 
3466
  # Saudi Arabia
3467
+ #: ../admin/view/wp-slimstat-reports.php:1749
3468
  msgid "c-sa"
3469
  msgstr "Arabie saoudite"
3470
 
3471
  # Senegal
3472
+ #: ../admin/view/wp-slimstat-reports.php:1749
3473
  msgid "c-sn"
3474
  msgstr "Sénégal"
3475
 
3476
  # Serbia
3477
+ #: ../admin/view/wp-slimstat-reports.php:1749
3478
  msgid "c-rs"
3479
  msgstr "Serbie"
3480
 
3481
  # Sierra Leone
3482
+ #: ../admin/view/wp-slimstat-reports.php:1749
3483
  msgid "c-sl"
3484
  msgstr "Sierra Leone"
3485
 
3486
  # Singapore
3487
+ #: ../admin/view/wp-slimstat-reports.php:1749
3488
  msgid "c-sg"
3489
  msgstr "Singapour"
3490
 
3491
  # Slovakia
3492
+ #: ../admin/view/wp-slimstat-reports.php:1749
3493
  msgid "c-sk"
3494
  msgstr "Slovaquie"
3495
 
3496
  # Slovenia
3497
+ #: ../admin/view/wp-slimstat-reports.php:1749
3498
  msgid "c-si"
3499
  msgstr "Slovénie"
3500
 
3501
  # Solomon Islands
3502
+ #: ../admin/view/wp-slimstat-reports.php:1749
3503
  msgid "c-sb"
3504
  msgstr "Îles Salomon"
3505
 
3506
  # Somalia
3507
+ #: ../admin/view/wp-slimstat-reports.php:1749
3508
  msgid "c-so"
3509
  msgstr "Somalie"
3510
 
3511
  # South Africa
3512
+ #: ../admin/view/wp-slimstat-reports.php:1749
3513
  msgid "c-za"
3514
  msgstr "Afrique du sud"
3515
 
3516
  # South Georgia and the South Sandwich Islands
3517
+ #: ../admin/view/wp-slimstat-reports.php:1749
3518
  msgid "c-gs"
3519
  msgstr "Géorgie du sud et les Îles Sandwich du sud"
3520
 
3521
  # Spain
3522
+ #: ../admin/view/wp-slimstat-reports.php:1749
3523
  msgid "c-es"
3524
  msgstr "Espagne"
3525
 
3526
  # Sri Lanka
3527
+ #: ../admin/view/wp-slimstat-reports.php:1749
3528
  msgid "c-lk"
3529
  msgstr "Sri Lanka"
3530
 
3531
  # Seychelles
3532
+ #: ../admin/view/wp-slimstat-reports.php:1749
3533
  msgid "c-sc"
3534
  msgstr "Seychelles"
3535
 
3536
  # Sudan
3537
+ #: ../admin/view/wp-slimstat-reports.php:1749
3538
  msgid "c-sd"
3539
  msgstr "Soudan"
3540
 
3541
+ #: ../admin/view/wp-slimstat-reports.php:1749
3542
  msgid "c-ss"
3543
  msgstr "Soudan du Sud"
3544
 
3545
  # Suriname
3546
+ #: ../admin/view/wp-slimstat-reports.php:1749
3547
  msgid "c-sr"
3548
  msgstr "Suriname"
3549
 
3550
  # Svalbard and Jan Mayen
3551
+ #: ../admin/view/wp-slimstat-reports.php:1749
3552
  msgid "c-sj"
3553
  msgstr "Svalbard et île Jan Mayen"
3554
 
3555
  # Swaziland
3556
+ #: ../admin/view/wp-slimstat-reports.php:1749
3557
  msgid "c-sz"
3558
  msgstr "Swaziland"
3559
 
3560
  # Sweden
3561
+ #: ../admin/view/wp-slimstat-reports.php:1749
3562
  msgid "c-se"
3563
  msgstr "Suède"
3564
 
3565
  # Switzerland
3566
+ #: ../admin/view/wp-slimstat-reports.php:1749
3567
  msgid "c-ch"
3568
  msgstr "Suisse"
3569
 
3570
  # Syrian Arab Republic
3571
+ #: ../admin/view/wp-slimstat-reports.php:1749
3572
  msgid "c-sy"
3573
  msgstr "République arabe syrienne"
3574
 
3575
  # Taiwan, Province of China
3576
+ #: ../admin/view/wp-slimstat-reports.php:1749
3577
  msgid "c-tw"
3578
  msgstr "Taïwan, province de Chine"
3579
 
3580
  # Tajikistan
3581
+ #: ../admin/view/wp-slimstat-reports.php:1749
3582
  msgid "c-tj"
3583
  msgstr "Tadjikistan"
3584
 
3585
  # United Republic of Tanzania
3586
+ #: ../admin/view/wp-slimstat-reports.php:1749
3587
  msgid "c-tz"
3588
  msgstr "République-unie de Tanzanie"
3589
 
3590
  # Thailand
3591
+ #: ../admin/view/wp-slimstat-reports.php:1749
3592
  msgid "c-th"
3593
  msgstr "Thaïlande"
3594
 
3595
  # Timor-Leste
3596
+ #: ../admin/vie