Slimstat Analytics - Version 4.2.5

Version Description

  • [New] A filter to customize the list of report screens/pages: slimstat_screens_info. Please contact us for more information.
  • [Update] After we introduced the new Customizer function, one of our most active users noted that pages would not disappear from the side navigation if no reports were associated to them. We update the functionality to include this new feature.
  • [Update] Detecting search engines and searchterms has become a real challenge in the last few years (thank you, NSA!). We updated our algorithm to detect if a referer is a search engine or not. (thank you, HubieDoobieDoo)
  • [Update] Instead of creating a copy of the MaxMind database for each site in a network, now the plugin uses a shared one stored in the main "uploads" folder.
  • [Update] How many people read this changelog? We want to conduct a little experiment to find out: use code CHANGELOG to get $25 off any new order placed after January 18, 2016 on our store. One use per account, only available to the first 20 users who will place an order.
  • [Update] Unfortunately our partner GetSocial.io has decided to terminate their partnership with us. The corresponding report has been removed from the admin.
  • [Fix] The tracker was not working as expected in Internet Explorer 7, returning the error message "Object doesn't support this property or method: trim" (thank you, Nick).
  • [Fix] Traffic Sources report was not grouping records as expected (thank you, HubieDoobieDoo)
Download this release

Release Info

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

Code changes from version 4.2.4 to 4.2.5

admin/config/index.php CHANGED
@@ -15,23 +15,6 @@ if (isset($_POST['options']['auto_purge'])){
15
  }
16
  }
17
 
18
- if ( !empty( $_POST[ 'options' ][ 'enable_getsocial' ] ) && $_POST[ 'options' ][ 'enable_getsocial' ] == 'yes' ) {
19
- $all_posts = get_posts( array( 'posts_per_page' => 100 ) );
20
- $all_post_urls = array();
21
-
22
- if ( !empty( $all_posts ) ) {
23
- foreach( $all_posts as $a_post ) {
24
- $all_post_urls[] = parse_url( get_permalink( $a_post->ID ), PHP_URL_PATH );
25
- }
26
-
27
- $args = json_encode( array(
28
- 'domain' => parse_url( get_site_url(), PHP_URL_HOST ),
29
- 'items' => $all_post_urls
30
- ) );
31
- wp_remote_post( 'http://api.at.sharescount.com/process', array( 'timeout' => 5, 'body' => $args ) );
32
- }
33
- }
34
-
35
  if (!empty($_POST['options']['ignore_capabilities'])){
36
  // Make sure all the capabilities exist in the system
37
  $capability_array = wp_slimstat::string_to_array($_POST['options']['ignore_capabilities']);
@@ -210,8 +193,7 @@ $options = array(
210
  'custom_css' => array('description' => __('Custom CSS','wp-slimstat'), 'type' => 'textarea', 'rows' => 8, 'long_description' => __("Paste here your custom stylesheet to personalize the way your reports look. <a href='https://slimstat.freshdesk.com/support/solutions/articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</a> for more information on how to use this setting.",'wp-slimstat')),
211
  'chart_colors' => array('description' => __('Chart Colors','wp-slimstat'), 'type' => 'text', 'long_description' => __("Customize the look and feel of your charts by assigning personalized colors to each metric. List 4 hex colors separated by commas, strictly in the following order: metric 1 previous, metric 2 previous, metric 1 current, metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>.",'wp-slimstat')),
212
  'show_complete_user_agent_tooltip' => array('description' => __('Show User Agent','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Choose if you want to see the browser name or a complete user agent string when hovering on browser icons.','wp-slimstat')),
213
- 'enable_sov' => array('description' => __('Enable SOV','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('In linguistic typology, a subject-object-verb (SOV) language is one in which the subject, object, and verb of a sentence appear in that order, like in Japanese.','wp-slimstat')),
214
- 'enable_getsocial' => array('description' => __( 'Social Analytics', 'wp-slimstat' ), 'type' => 'yesno', 'long_description' => __("Thanks to a <a href='http://getsocial.io/enterprise' target='_blank'>partnership with GetSocial.io</a>, you can access a powerful set of analytics for social media where you can identify top performing posts. Track social sharing to understand which of your posts are generating more engagement. When this option is enabled, Slimstat sends a list of all your posts's URLs to their service for analysis once daily.", 'wp-slimstat' ) )
215
  )
216
  ),
217
 
15
  }
16
  }
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  if (!empty($_POST['options']['ignore_capabilities'])){
19
  // Make sure all the capabilities exist in the system
20
  $capability_array = wp_slimstat::string_to_array($_POST['options']['ignore_capabilities']);
193
  'custom_css' => array('description' => __('Custom CSS','wp-slimstat'), 'type' => 'textarea', 'rows' => 8, 'long_description' => __("Paste here your custom stylesheet to personalize the way your reports look. <a href='https://slimstat.freshdesk.com/support/solutions/articles/5000528528-how-can-i-change-the-colors-associated-to-color-coded-pageviews-known-user-known-visitors-search-e' target='_blank'>Check the FAQ</a> for more information on how to use this setting.",'wp-slimstat')),
194
  'chart_colors' => array('description' => __('Chart Colors','wp-slimstat'), 'type' => 'text', 'long_description' => __("Customize the look and feel of your charts by assigning personalized colors to each metric. List 4 hex colors separated by commas, strictly in the following order: metric 1 previous, metric 2 previous, metric 1 current, metric 2 current. For example: <code>#ccc, #999, #bbcc44, #21759b</code>.",'wp-slimstat')),
195
  'show_complete_user_agent_tooltip' => array('description' => __('Show User Agent','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('Choose if you want to see the browser name or a complete user agent string when hovering on browser icons.','wp-slimstat')),
196
+ 'enable_sov' => array('description' => __('Enable SOV','wp-slimstat'), 'type' => 'yesno', 'long_description' => __('In linguistic typology, a subject-object-verb (SOV) language is one in which the subject, object, and verb of a sentence appear in that order, like in Japanese.','wp-slimstat'))
 
197
  )
198
  ),
199
 
admin/view/index.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php if (!function_exists('add_action')) exit(0); ?>
2
 
3
  <div class="wrap slimstat">
4
- <h2><?php echo wp_slimstat_reports::$screens_info[ $_GET[ 'page' ] ] ?></h2>
5
 
6
  <form action="<?php echo wp_slimstat_reports::fs_url(); ?>" method="post" id="slimstat-filters-form">
7
  <fieldset id="slimstat-filters"><?php
@@ -128,8 +128,8 @@
128
  <?php endif; endforeach; ?>
129
  </form>
130
  <?php
131
- if (!file_exists(wp_slimstat::$maxmind_path) && wp_slimstat::$options['no_maxmind_warning'] != 'yes'){
132
- wp_slimstat_admin::show_alert_message(sprintf(__("Install MaxMind's <a href='%s'>GeoLite DB</a> to determine your visitors' country of origin.",'wp-slimstat'), self::$config_url.'6').'<a id="slimstat-hide-geolite-notice" class="slimstat-font-cancel slimstat-float-right" title="Hide this notice" href="#"></a>', 'wp-ui-notification below-h2');
133
  }
134
 
135
  $filters_html = wp_slimstat_reports::get_filters_html(wp_slimstat_db::$filters_normalized['columns']);
@@ -142,10 +142,6 @@
142
  <form method="get" action=""><input type="hidden" id="meta-box-order-nonce" name="meta-box-order-nonce" value="<?php echo wp_create_nonce('meta-box-order') ?>" /></form><?php
143
 
144
  foreach( wp_slimstat_reports::$reports_info as $a_report_id => $a_report_info ) {
145
- // if ( empty( $a_report_info[ 'screens' ] ) || !in_array( $_GET[ 'page' ], $a_report_info[ 'screens' ] ) ) {
146
- // continue;
147
- // }
148
-
149
  wp_slimstat_reports::report_header( $a_report_id );
150
 
151
  // Third party reports can add their own methods via the callback parameter
1
  <?php if (!function_exists('add_action')) exit(0); ?>
2
 
3
  <div class="wrap slimstat">
4
+ <h2><?php echo wp_slimstat_admin::$screens_info[ $_GET[ 'page' ] ][ 'title' ] ?></h2>
5
 
6
  <form action="<?php echo wp_slimstat_reports::fs_url(); ?>" method="post" id="slimstat-filters-form">
7
  <fieldset id="slimstat-filters"><?php
128
  <?php endif; endforeach; ?>
129
  </form>
130
  <?php
131
+ if ( !file_exists( wp_slimstat::$maxmind_path ) && ( empty( wp_slimstat::$options[ 'no_maxmind_warning' ] ) || wp_slimstat::$options[ 'no_maxmind_warning' ] != 'yes' ) ) {
132
+ wp_slimstat_admin::show_alert_message( sprintf( __( "Install MaxMind's <a href='%s'>GeoLite DB</a> to determine your visitors' country of origin.", 'wp-slimstat' ), self::$config_url . '6' ) . '<a id="slimstat-hide-geolite-notice" class="slimstat-font-cancel slimstat-float-right" title="Hide this notice" href="#"></a>', 'wp-ui-notification below-h2' );
133
  }
134
 
135
  $filters_html = wp_slimstat_reports::get_filters_html(wp_slimstat_db::$filters_normalized['columns']);
142
  <form method="get" action=""><input type="hidden" id="meta-box-order-nonce" name="meta-box-order-nonce" value="<?php echo wp_create_nonce('meta-box-order') ?>" /></form><?php
143
 
144
  foreach( wp_slimstat_reports::$reports_info as $a_report_id => $a_report_info ) {
 
 
 
 
145
  wp_slimstat_reports::report_header( $a_report_id );
146
 
147
  // Third party reports can add their own methods via the callback parameter
admin/view/layout.php CHANGED
@@ -13,19 +13,26 @@
13
  'slimview6' => array(),
14
  'dashboard' => array()
15
  );
16
- foreach ( wp_slimstat_reports::$reports_info as $a_report_id => $a_report_info ) {
17
- if ( !empty( $a_report_info[ 'screens' ] ) ) {
18
- foreach ( $a_report_info[ 'screens' ] as $a_report_screen ) {
19
- if ( isset( $report_locations[ $a_report_screen ] ) ) {
20
- $report_locations[ $a_report_screen ][] = $a_report_id;
 
 
 
21
  }
22
  }
23
  }
24
  }
25
-
26
- foreach ( $report_locations as $a_location_id => $a_location_list ) {
27
- if ( !empty( wp_slimstat_reports::$user_reports[ $a_location_id ] ) ) {
28
- $report_locations[ $a_location_id ] = explode( ',', wp_slimstat_reports::$user_reports[ $a_location_id ] );
 
 
 
 
29
  }
30
  }
31
 
@@ -44,7 +51,7 @@
44
 
45
  <?php foreach ( $report_locations as $a_location_id => $a_location_list ): $hidden_reports = get_user_option( "metaboxhidden_{$page_location}_page_{$a_location_id}", $current_user->ID ); if ( !is_array( $hidden_reports ) ) $hidden_reports = array(); ?>
46
  <div id="postbox-container-<?php echo $a_location_id ?>" class="postbox-container">
47
- <h2 class="slimstat-options-section-header"><?php echo wp_slimstat_reports::$screens_info[ $a_location_id ] ?></h2>
48
  <div id="<?php echo $a_location_id ?>-sortables" class="meta-box-sortables"><?php
49
  foreach( $a_location_list as $a_report_id ) {
50
  if ( !in_array( $a_report_id, $already_seen ) ) {
13
  'slimview6' => array(),
14
  'dashboard' => array()
15
  );
16
+
17
+ if ( empty( wp_slimstat_reports::$user_reports ) ) {
18
+ foreach ( wp_slimstat_reports::$reports_info as $a_report_id => $a_report_info ) {
19
+ if ( !empty( $a_report_info[ 'screens' ] ) ) {
20
+ foreach ( $a_report_info[ 'screens' ] as $a_report_screen ) {
21
+ if ( isset( $report_locations[ $a_report_screen ] ) ) {
22
+ $report_locations[ $a_report_screen ][] = $a_report_id;
23
+ }
24
  }
25
  }
26
  }
27
  }
28
+ else {
29
+ foreach ( $report_locations as $a_location_id => $a_location_list ) {
30
+ if ( !empty( wp_slimstat_reports::$user_reports[ $a_location_id ] ) ) {
31
+ $report_locations[ $a_location_id ] = explode( ',', wp_slimstat_reports::$user_reports[ $a_location_id ] );
32
+ }
33
+ else {
34
+ $report_locations[ $a_location_id ] = array();
35
+ }
36
  }
37
  }
38
 
51
 
52
  <?php foreach ( $report_locations as $a_location_id => $a_location_list ): $hidden_reports = get_user_option( "metaboxhidden_{$page_location}_page_{$a_location_id}", $current_user->ID ); if ( !is_array( $hidden_reports ) ) $hidden_reports = array(); ?>
53
  <div id="postbox-container-<?php echo $a_location_id ?>" class="postbox-container">
54
+ <h2 class="slimstat-options-section-header"><?php echo wp_slimstat_admin::$screens_info[ $a_location_id ][ 'title' ] ?></h2>
55
  <div id="<?php echo $a_location_id ?>-sortables" class="meta-box-sortables"><?php
56
  foreach( $a_location_list as $a_report_id ) {
57
  if ( !in_array( $a_report_id, $already_seen ) ) {
admin/view/right-now.php CHANGED
@@ -152,8 +152,12 @@ else {
152
  }
153
 
154
  // Search Terms, with link to original SERP, and Outbound Resource
155
- if (!empty($results[$i]['searchterms'])){
156
- $results[$i]['searchterms'] = "<i class='spaced slimstat-font-search' title='".__('Search Terms','wp-slimstat')."'></i> ".wp_slimstat_reports::get_search_terms_info($results[$i]['searchterms'], $results[$i]['referer']);
 
 
 
 
157
  }
158
 
159
  // Server Latency and Page Speed
@@ -166,7 +170,7 @@ else {
166
  $time_on_page = '';
167
  if ( !$is_dashboard && !empty( $results[ $i ][ 'dt_out' ] ) ) {
168
  $duration = $results[ $i ][ 'dt_out' ] - $results[ $i ][ 'dt' ];
169
- $time_on_page = "<i class='slimstat-font-stopwatch spaced' title='" . __( 'Time spent on this page in seconds', 'wp-slimstat' ) . "'></i> " . date( ( $duration > 3599 ? 'H:i:s' : 'i:s' ), $duration );
170
  }
171
 
172
  // Avoid XSS attacks through the referer URL
152
  }
153
 
154
  // Search Terms, with link to original SERP, and Outbound Resource
155
+ $search_terms_info = wp_slimstat_reports::get_search_terms_info( $results[ $i ][ 'searchterms' ], $results[ $i ][ 'referer' ] );
156
+ if ( !empty( $search_terms_info ) ) {
157
+ $results[$i]['searchterms'] = "<i class='spaced slimstat-font-search' title='" . __( 'Search Terms', 'wp-slimstat' ) . "'></i> $search_terms_info";
158
+ }
159
+ else {
160
+ $results[$i]['searchterms'] = '';
161
  }
162
 
163
  // Server Latency and Page Speed
170
  $time_on_page = '';
171
  if ( !$is_dashboard && !empty( $results[ $i ][ 'dt_out' ] ) ) {
172
  $duration = $results[ $i ][ 'dt_out' ] - $results[ $i ][ 'dt' ];
173
+ $time_on_page = "<i class='slimstat-font-stopwatch spaced' title='" . __( 'Time spent on this page', 'wp-slimstat' ) . "'></i> " . date( ( $duration > 3599 ? 'H:i:s' : 'i:s' ), $duration );
174
  }
175
 
176
  // Avoid XSS attacks through the referer URL
admin/view/wp-slimstat-db.php CHANGED
@@ -44,7 +44,7 @@ class wp_slimstat_db {
44
  'platform' => array( __( 'Operating System', 'wp-slimstat' ), 'varchar' ),
45
  'resource' => array( __( 'Permalink', 'wp-slimstat' ), 'varchar' ),
46
  'referer' => array( __( 'Referer', 'wp-slimstat' ), 'varchar' ),
47
- 'username' => array( __( 'Visitor\'s Name', 'wp-slimstat' ), 'varchar' ),
48
  'outbound_resource' => array( __( 'Outbound Link', 'wp-slimstat' ), 'varchar' ),
49
  'page_performance' => array( __( 'Page Speed', 'wp-slimstat' ), 'int' ),
50
  'no_filter_selected_2' => array( '&nbsp;', 'none' ),
44
  'platform' => array( __( 'Operating System', 'wp-slimstat' ), 'varchar' ),
45
  'resource' => array( __( 'Permalink', 'wp-slimstat' ), 'varchar' ),
46
  'referer' => array( __( 'Referer', 'wp-slimstat' ), 'varchar' ),
47
+ 'username' => array( __( 'Visitor\'s Username', 'wp-slimstat' ), 'varchar' ),
48
  'outbound_resource' => array( __( 'Outbound Link', 'wp-slimstat' ), 'varchar' ),
49
  'page_performance' => array( __( 'Page Speed', 'wp-slimstat' ), 'int' ),
50
  'no_filter_selected_2' => array( '&nbsp;', 'none' ),
admin/view/wp-slimstat-reports.php CHANGED
@@ -3,7 +3,6 @@
3
  class wp_slimstat_reports {
4
 
5
  // Structures to store all the information about what screens and reports are available
6
- public static $screens_info = array();
7
  public static $reports_info = array();
8
  public static $user_reports = array();
9
 
@@ -17,17 +16,6 @@ class wp_slimstat_reports {
17
  * Initalize class properties
18
  */
19
  public static function init(){
20
- self::$screens_info = array(
21
- 'slimview1' => __( 'Access Log', 'wp-slimstat' ),
22
- 'slimview2' => __( 'Overview', 'wp-slimstat' ),
23
- 'slimview3' => __( 'Audience', 'wp-slimstat' ),
24
- 'slimview4' => __( 'Site Analysis', 'wp-slimstat' ),
25
- 'slimview5' => __( 'Traffic Sources', 'wp-slimstat' ),
26
- 'slimview6' => __( 'Geolocation', 'wp-slimstat' ),
27
- 'dashboard' => __( 'WordPress Dashboard', 'wp-slimstat' ),
28
- 'inactive' => __( 'Inactive Reports')
29
- );
30
-
31
  // Filters use the following format: browser equals Firefox&&&country contains gb
32
  $filters = array();
33
  if ( !empty( $_REQUEST[ 'fs' ] ) && is_array( $_REQUEST[ 'fs' ] ) ) {
@@ -76,13 +64,6 @@ class wp_slimstat_reports {
76
 
77
  $chart_tooltip = '<strong>' . __( 'Chart controls', 'wp-slimstat' ) . '</strong><ul><li>' . __( 'Use your mouse wheel to zoom in and out', 'wp-slimstat' ) . '</li><li>' . __( 'While zooming in, drag the chart to move to a different area', 'wp-slimstat' ) . '</li></ul>';
78
  self::$reports_info = array(
79
- 'slim_getsocial' => array(
80
- 'title' => __( 'Social Sharing Analytics', 'wp-slimstat' ),
81
- 'callback' => array( __CLASS__, 'show_getsocial' ),
82
- 'classes' => array( 'full-width' ),
83
- 'screens' => array( 'slimview4' )
84
- ),
85
-
86
  'slim_p7_02' => array(
87
  'title' => __( 'Visitors Activity', 'wp-slimstat' ),
88
  'callback' => array( __CLASS__, 'show_activity_log' ),
@@ -152,6 +133,7 @@ class wp_slimstat_reports {
152
  'callback_args' => array(
153
  'type' => 'recent',
154
  'columns' => 'searchterms',
 
155
  'more_columns' => 'referer, resource',
156
  'raw' => array( 'wp_slimstat_db', 'get_recent' )
157
  ),
@@ -178,7 +160,9 @@ class wp_slimstat_reports {
178
  'callback' => array( __CLASS__, 'raw_results_to_html' ),
179
  'callback_args' => array(
180
  'type' => 'top',
181
- 'columns' => 'referer',
 
 
182
  'where' => 'referer NOT LIKE "%' . str_replace( 'www.', '', parse_url( home_url(), PHP_URL_HOST ) ) . '%"',
183
  'raw' => array( 'wp_slimstat_db', 'get_top' )
184
  ),
@@ -202,6 +186,7 @@ class wp_slimstat_reports {
202
  'callback_args' => array(
203
  'type' => 'top',
204
  'columns' => 'searchterms',
 
205
  'raw' => array( 'wp_slimstat_db', 'get_top' )
206
  ),
207
  'classes' => array( 'normal' ),
@@ -265,7 +250,8 @@ class wp_slimstat_reports {
265
  'chart_labels' => array(
266
  __( 'Search Terms', 'wp-slimstat' ),
267
  __( 'Unique Terms', 'wp-slimstat' )
268
- )
 
269
  ),
270
  'classes' => array( 'wide', 'chart' ),
271
  'screens' => array( 'slimview2' ),
@@ -353,6 +339,7 @@ class wp_slimstat_reports {
353
  'callback_args' => array(
354
  'type' => 'top',
355
  'columns' => 'screen_width, screen_height',
 
356
  'raw' => array( 'wp_slimstat_db', 'get_top' )
357
  ),
358
  'classes' => array( 'normal' ),
@@ -545,8 +532,10 @@ class wp_slimstat_reports {
545
  'callback' => array( __CLASS__, 'raw_results_to_html' ),
546
  'callback_args' => array(
547
  'type' => 'top',
548
- 'columns' => 'referer',
549
- 'where' => "searchterms IS NOT NULL AND referer NOT LIKE '%".home_url()."%'",
 
 
550
  'raw' => array( 'wp_slimstat_db', 'get_top' )
551
  ),
552
  'classes' => array( 'normal' ),
@@ -884,16 +873,16 @@ class wp_slimstat_reports {
884
  'slim_p4_08' => 1,
885
  'slim_p4_14' => 1,
886
  'slim_p4_16' => 1,
887
- 'slim_p4_17' => 1
 
888
  );
889
 
890
  // Retrieve this user's list of active reports,
891
  $current_user = wp_get_current_user();
892
  $page_location = ( wp_slimstat::$options[ 'use_separate_menu' ] == 'yes' ) ? 'slimstat' : 'admin';
893
-
894
- // Do this only if we are in one of our screens (no dashboard!)
895
  self::$user_reports = get_user_option( "meta-box-order_{$page_location}_page_slimlayout", $current_user->ID );
896
 
 
897
  if ( !empty( $_REQUEST['page'] ) && strpos( $_REQUEST['page'], 'slimview' ) !== false ) {
898
 
899
  // If this list is not empty, we rearrange the order of our reports
@@ -1056,6 +1045,7 @@ class wp_slimstat_reports {
1056
 
1057
  $is_expanded = ( wp_slimstat::$options['expand_details'] == 'yes' ) ? ' expanded' : '';
1058
  $permalinks_enabled = get_option( 'permalink_structure' );
 
1059
 
1060
  for($i=0; $i<$count_page_results; $i++){
1061
  $row_details = $percentage = '';
@@ -1063,7 +1053,7 @@ class wp_slimstat_reports {
1063
  $element_value = $results[ $i ][ $_args[ 'columns' ] ];
1064
 
1065
  // Some columns require a special pre-treatment
1066
- switch ( $_args[ 'columns' ] ){
1067
 
1068
  case 'browser':
1069
  if (!empty($results[$i]['user_agent']) && wp_slimstat::$options['show_complete_user_agent_tooltip'] == 'yes'){
@@ -1092,23 +1082,22 @@ class wp_slimstat_reports {
1092
  break;
1093
 
1094
  case 'language':
1095
- case 'language_calculated':
1096
- $row_details = __('Code','wp-slimstat').": {$results[ $i ][ $_args[ 'columns' ] ]}";
1097
- $element_value = __('l-'.$results[ $i ][ $_args[ 'columns' ] ], 'wp-slimstat');
1098
  break;
1099
 
1100
  case 'platform':
1101
- case 'platform_calculated':
1102
- $row_details = __('Code','wp-slimstat').": {$results[ $i ][ $_args[ 'columns' ] ]}";
1103
- $element_value = __( $results[ $i ][ $_args[ 'columns' ] ], 'wp-slimstat');
1104
  break;
1105
 
1106
  case 'referer':
1107
  $element_value = str_replace( array( '<', '>' ), array( '&lt;', '&gt;' ), urldecode( $results[ $i ][ $_args[ 'columns' ] ] ) );
 
1108
  break;
1109
 
1110
  case 'resource':
1111
- case 'resource_calculated':
1112
  $resource_title = self::get_resource_title( $results[ $i ][ $_args[ 'columns' ] ] );
1113
  if ( $resource_title != $results[ $i ][ $_args[ 'columns' ] ] ) {
1114
  $row_details = __( 'URL', 'wp-slimstat' ) . ': ' . htmlentities( $results[ $i ][ $_args[ 'columns' ] ], ENT_QUOTES, 'UTF-8' );
@@ -1131,6 +1120,7 @@ class wp_slimstat_reports {
1131
  $element_value = htmlentities( $results[ $i ][ 'searchterms' ], ENT_QUOTES, 'UTF-8' );
1132
  }
1133
  break;
 
1134
  case 'username':
1135
  $element_value = $results[$i]['username'];
1136
  if (wp_slimstat::$options['show_display_name'] == 'yes'){
@@ -1149,9 +1139,9 @@ class wp_slimstat_reports {
1149
  default:
1150
  }
1151
 
1152
- $element_value = "<a class='slimstat-filter-link' href='".self::fs_url( $_args[ 'columns' ].' '.$_args['filter_op'].' '.$results[$i][ $_args[ 'columns' ] ] )."'>$element_value</a>";
1153
 
1154
- if ( !empty($_args['type'] ) && $_args['type'] == 'recent' ) {
1155
  $row_details = date_i18n(wp_slimstat::$options['date_format'].' '.wp_slimstat::$options['time_format'], $results[$i]['dt'], true) . ( !empty( $row_details ) ? '<br>' : '' ) . $row_details;
1156
  }
1157
 
@@ -1178,10 +1168,10 @@ class wp_slimstat_reports {
1178
  }
1179
  $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;
1180
  }
1181
- if ( $_args[ 'columns' ] == 'referer' ) {
1182
- $element_url = htmlentities($results[$i]['referer'], ENT_QUOTES, 'UTF-8');
1183
- $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;
1184
- }
1185
  if (!empty($results[$i]['ip']) && $_args[ 'columns' ] != 'ip' && wp_slimstat::$options['convert_ip_addresses'] != 'yes'){
1186
  $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>';
1187
  }
@@ -1735,77 +1725,6 @@ class wp_slimstat_reports {
1735
  }
1736
  }
1737
 
1738
- public static function show_getsocial() {
1739
- if ( !empty( $_POST[ 'fs' ][ 'addon_enable_getsocial' ] ) ) {
1740
- wp_slimstat::$options[ 'enable_getsocial' ] = 'yes';
1741
-
1742
- // Update the list of posts
1743
- $all_posts = get_posts( array( 'posts_per_page' => 100 ) );
1744
- $all_post_urls = array();
1745
-
1746
- if ( !empty( $all_posts ) ) {
1747
- foreach( $all_posts as $a_post ) {
1748
- $all_post_urls[] = parse_url( get_permalink( $a_post->ID ), PHP_URL_PATH );
1749
- }
1750
-
1751
- $args = json_encode( array(
1752
- 'domain' => parse_url( get_site_url(), PHP_URL_HOST ),
1753
- 'items' => $all_post_urls
1754
- ) );
1755
- wp_remote_post( 'http://api.at.sharescount.com/process', array( 'timeout' => 5, 'body' => $args ) );
1756
- }
1757
- }
1758
- if ( wp_slimstat::$options[ 'enable_getsocial' ] == 'yes' ) {
1759
- $response = wp_remote_get( 'http://api.at.sharescount.com/results/' . parse_url( get_site_url(), PHP_URL_HOST ), array( 'timeout' => 5 ) );
1760
- if ( is_wp_error( $response ) ) {
1761
- echo '<p class="nodata">' . __( 'Error contacting the GetSocial endpoint.', 'wp-slimstat' ) . '</p>';
1762
- }
1763
- else {
1764
- // Parse remote HTML file
1765
- $data = wp_remote_retrieve_body( $response );
1766
-
1767
- // Check for error
1768
- if ( is_wp_error( $data ) ) {
1769
- echo '<p class="nodata">' . __( 'Error decoding the GetSocial payload.', 'wp-slimstat' ) . '</p>';
1770
- }
1771
- else {
1772
- $decoded_data = @json_decode( $data );
1773
-
1774
- echo '<table class="wp-list-table widefat fixed" cellspacing="0">
1775
- <thead>
1776
- <tr>
1777
- <th scope="col" style="width:45%">Page</th>
1778
- <th scope="col" style="text-align:center">Facebook</th>
1779
- <th scope="col" style="text-align:center">Twitter</th>
1780
- <th scope="col" style="text-align:center">LinkedIn</th>
1781
- <th scope="col" style="text-align:center">Pinterest</th>
1782
- <th scope="col" style="text-align:center">Google</th>
1783
- <th scope="col" style="text-align:center">Total</th>
1784
- </tr>
1785
- </thead>';
1786
- foreach ( $decoded_data as $key => $obj ) {
1787
- echo "<tr>
1788
- <td>" . self::get_resource_title( $key ) ."</td>
1789
- <td style='text-align:center'>" . ( !empty( $obj->facebook ) ? $obj->facebook : 0 ) . "</td>
1790
- <td style='text-align:center'>" . ( !empty( $obj->twitter ) ? $obj->twitter : 0 ) . "</td>
1791
- <td style='text-align:center'>" . ( !empty( $obj->linkedin ) ? $obj->linkedin : 0 ) . "</td>
1792
- <td style='text-align:center'>" . ( !empty( $obj->pinterest ) ? $obj->pinterest : 0 ) . "</td>
1793
- <td style='text-align:center'>" . ( !empty( $obj->google ) ? $obj->google : 0 ) . "</td>
1794
- <td style='text-align:center'>" . ( !empty( $obj->total ) ? $obj->total : 0 ) . "</td>";
1795
- }
1796
- echo '</table>';
1797
- }
1798
- }
1799
- }
1800
- else {
1801
- echo '<p class="nodata">' . __( "Thanks to a partnership with GetSocial.io, you can access your website's<br/>social media metrics and identify your top performing posts.<br/> <a class='button-ajax' title='Enable this functionality' href='".self::fs_url()."&amp;fs%5Baddon_enable_getsocial%5D=yes'>Enable your social sharing report.</a>", 'wp-slimstat' ) . '</p>';
1802
- }
1803
-
1804
- if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
1805
- die();
1806
- }
1807
- }
1808
-
1809
  public static function show_world_map() {
1810
  $countries = wp_slimstat_db::get_top('country');
1811
  $data_areas = array('xx'=>'{id:"XX",balloonText:"'.__('c-xx','wp-slimstat').': 0",value:0,color:"#ededed"}','af'=>'{id:"AF",balloonText:"'.__('c-af','wp-slimstat').': 0",value:0,color:"#ededed"}','ax'=>'{id:"AX",balloonText:"'.__('c-ax','wp-slimstat').': 0",value:0,color:"#ededed"}','al'=>'{id:"AL",balloonText:"'.__('c-al','wp-slimstat').': 0",value:0,color:"#ededed"}','dz'=>'{id:"DZ",balloonText:"'.__('c-dz','wp-slimstat').': 0",value:0,color:"#ededed"}','ad'=>'{id:"AD",balloonText:"'.__('c-ad','wp-slimstat').': 0",value:0,color:"#ededed"}','ao'=>'{id:"AO",balloonText:"'.__('c-ao','wp-slimstat').': 0",value:0,color:"#ededed"}','ai'=>'{id:"AI",balloonText:"'.__('c-ai','wp-slimstat').': 0",value:0,color:"#ededed"}','ag'=>'{id:"AG",balloonText:"'.__('c-ag','wp-slimstat').': 0",value:0,color:"#ededed"}','ar'=>'{id:"AR",balloonText:"'.__('c-ar','wp-slimstat').': 0",value:0,color:"#ededed"}','am'=>'{id:"AM",balloonText:"'.__('c-am','wp-slimstat').': 0",value:0,color:"#ededed"}','aw'=>'{id:"AW",balloonText:"'.__('c-aw','wp-slimstat').': 0",value:0,color:"#ededed"}','au'=>'{id:"AU",balloonText:"'.__('c-au','wp-slimstat').': 0",value:0,color:"#ededed"}','at'=>'{id:"AT",balloonText:"'.__('c-at','wp-slimstat').': 0",value:0,color:"#ededed"}','az'=>'{id:"AZ",balloonText:"'.__('c-az','wp-slimstat').': 0",value:0,color:"#ededed"}','bs'=>'{id:"BS",balloonText:"'.__('c-bs','wp-slimstat').': 0",value:0,color:"#ededed"}','bh'=>'{id:"BH",balloonText:"'.__('c-bh','wp-slimstat').': 0",value:0,color:"#ededed"}','bd'=>'{id:"BD",balloonText:"'.__('c-bd','wp-slimstat').': 0",value:0,color:"#ededed"}','bb'=>'{id:"BB",balloonText:"'.__('c-bb','wp-slimstat').': 0",value:0,color:"#ededed"}','by'=>'{id:"BY",balloonText:"'.__('c-by','wp-slimstat').': 0",value:0,color:"#ededed"}','be'=>'{id:"BE",balloonText:"'.__('c-be','wp-slimstat').': 0",value:0,color:"#ededed"}','bz'=>'{id:"BZ",balloonText:"'.__('c-bz','wp-slimstat').': 0",value:0,color:"#ededed"}','bj'=>'{id:"BJ",balloonText:"'.__('c-bj','wp-slimstat').': 0",value:0,color:"#ededed"}','bm'=>'{id:"BM",balloonText:"'.__('c-bm','wp-slimstat').': 0",value:0,color:"#ededed"}','bt'=>'{id:"BT",balloonText:"'.__('c-bt','wp-slimstat').': 0",value:0,color:"#ededed"}','bo'=>'{id:"BO",balloonText:"'.__('c-bo','wp-slimstat').': 0",value:0,color:"#ededed"}','ba'=>'{id:"BA",balloonText:"'.__('c-ba','wp-slimstat').': 0",value:0,color:"#ededed"}','bw'=>'{id:"BW",balloonText:"'.__('c-bw','wp-slimstat').': 0",value:0,color:"#ededed"}','br'=>'{id:"BR",balloonText:"'.__('c-br','wp-slimstat').': 0",value:0,color:"#ededed"}','bn'=>'{id:"BN",balloonText:"'.__('c-bn','wp-slimstat').': 0",value:0,color:"#ededed"}','bg'=>'{id:"BG",balloonText:"'.__('c-bg','wp-slimstat').': 0",value:0,color:"#ededed"}','bf'=>'{id:"BF",balloonText:"'.__('c-bf','wp-slimstat').': 0",value:0,color:"#ededed"}','bi'=>'{id:"BI",balloonText:"'.__('c-bi','wp-slimstat').': 0",value:0,color:"#ededed"}','kh'=>'{id:"KH",balloonText:"'.__('c-kh','wp-slimstat').': 0",value:0,color:"#ededed"}','cm'=>'{id:"CM",balloonText:"'.__('c-cm','wp-slimstat').': 0",value:0,color:"#ededed"}','ca'=>'{id:"CA",balloonText:"'.__('c-ca','wp-slimstat').': 0",value:0,color:"#ededed"}','cv'=>'{id:"CV",balloonText:"'.__('c-cv','wp-slimstat').': 0",value:0,color:"#ededed"}','ky'=>'{id:"KY",balloonText:"'.__('c-ky','wp-slimstat').': 0",value:0,color:"#ededed"}','cf'=>'{id:"CF",balloonText:"'.__('c-cf','wp-slimstat').': 0",value:0,color:"#ededed"}','td'=>'{id:"TD",balloonText:"'.__('c-td','wp-slimstat').': 0",value:0,color:"#ededed"}','cl'=>'{id:"CL",balloonText:"'.__('c-cl','wp-slimstat').': 0",value:0,color:"#ededed"}','cn'=>'{id:"CN",balloonText:"'.__('c-cn','wp-slimstat').': 0",value:0,color:"#ededed"}','co'=>'{id:"CO",balloonText:"'.__('c-co','wp-slimstat').': 0",value:0,color:"#ededed"}','km'=>'{id:"KM",balloonText:"'.__('c-km','wp-slimstat').': 0",value:0,color:"#ededed"}','cg'=>'{id:"CG",balloonText:"'.__('c-cg','wp-slimstat').': 0",value:0,color:"#ededed"}','cd'=>'{id:"CD",balloonText:"'.__('c-cd','wp-slimstat').': 0",value:0,color:"#ededed"}','cr'=>'{id:"CR",balloonText:"'.__('c-cr','wp-slimstat').': 0",value:0,color:"#ededed"}','ci'=>'{id:"CI",balloonText:"'.__('c-ci','wp-slimstat').': 0",value:0,color:"#ededed"}','hr'=>'{id:"HR",balloonText:"'.__('c-hr','wp-slimstat').': 0",value:0,color:"#ededed"}','cu'=>'{id:"CU",balloonText:"'.__('c-cu','wp-slimstat').': 0",value:0,color:"#ededed"}','cy'=>'{id:"CY",balloonText:"'.__('c-cy','wp-slimstat').': 0",value:0,color:"#ededed"}','cz'=>'{id:"CZ",balloonText:"'.__('c-cz','wp-slimstat').': 0",value:0,color:"#ededed"}','dk'=>'{id:"DK",balloonText:"'.__('c-dk','wp-slimstat').': 0",value:0,color:"#ededed"}','dj'=>'{id:"DJ",balloonText:"'.__('c-dj','wp-slimstat').': 0",value:0,color:"#ededed"}','dm'=>'{id:"DM",balloonText:"'.__('c-dm','wp-slimstat').': 0",value:0,color:"#ededed"}','do'=>'{id:"DO",balloonText:"'.__('c-do','wp-slimstat').': 0",value:0,color:"#ededed"}','ec'=>'{id:"EC",balloonText:"'.__('c-ec','wp-slimstat').': 0",value:0,color:"#ededed"}','eg'=>'{id:"EG",balloonText:"'.__('c-eg','wp-slimstat').': 0",value:0,color:"#ededed"}','sv'=>'{id:"SV",balloonText:"'.__('c-sv','wp-slimstat').': 0",value:0,color:"#ededed"}','gq'=>'{id:"GQ",balloonText:"'.__('c-gq','wp-slimstat').': 0",value:0,color:"#ededed"}','er'=>'{id:"ER",balloonText:"'.__('c-er','wp-slimstat').': 0",value:0,color:"#ededed"}','ee'=>'{id:"EE",balloonText:"'.__('c-ee','wp-slimstat').': 0",value:0,color:"#ededed"}','et'=>'{id:"ET",balloonText:"'.__('c-et','wp-slimstat').': 0",value:0,color:"#ededed"}','fo'=>'{id:"FO",balloonText:"'.__('c-fo','wp-slimstat').': 0",value:0,color:"#ededed"}','fk'=>'{id:"FK",balloonText:"'.__('c-fk','wp-slimstat').': 0",value:0,color:"#ededed"}','fj'=>'{id:"FJ",balloonText:"'.__('c-fj','wp-slimstat').': 0",value:0,color:"#ededed"}','fi'=>'{id:"FI",balloonText:"'.__('c-fi','wp-slimstat').': 0",value:0,color:"#ededed"}','fr'=>'{id:"FR",balloonText:"'.__('c-fr','wp-slimstat').': 0",value:0,color:"#ededed"}','gf'=>'{id:"GF",balloonText:"'.__('c-gf','wp-slimstat').': 0",value:0,color:"#ededed"}','ga'=>'{id:"GA",balloonText:"'.__('c-ga','wp-slimstat').': 0",value:0,color:"#ededed"}','gm'=>'{id:"GM",balloonText:"'.__('c-gm','wp-slimstat').': 0",value:0,color:"#ededed"}','ge'=>'{id:"GE",balloonText:"'.__('c-ge','wp-slimstat').': 0",value:0,color:"#ededed"}','de'=>'{id:"DE",balloonText:"'.__('c-de','wp-slimstat').': 0",value:0,color:"#ededed"}','gh'=>'{id:"GH",balloonText:"'.__('c-gh','wp-slimstat').': 0",value:0,color:"#ededed"}','gr'=>'{id:"GR",balloonText:"'.__('c-gr','wp-slimstat').': 0",value:0,color:"#ededed"}','gl'=>'{id:"GL",balloonText:"'.__('c-gl','wp-slimstat').': 0",value:0,color:"#ededed"}','gd'=>'{id:"GD",balloonText:"'.__('c-gd','wp-slimstat').': 0",value:0,color:"#ededed"}','gp'=>'{id:"GP",balloonText:"'.__('c-gp','wp-slimstat').': 0",value:0,color:"#ededed"}','gt'=>'{id:"GT",balloonText:"'.__('c-gt','wp-slimstat').': 0",value:0,color:"#ededed"}','gn'=>'{id:"GN",balloonText:"'.__('c-gn','wp-slimstat').': 0",value:0,color:"#ededed"}','gw'=>'{id:"GW",balloonText:"'.__('c-gw','wp-slimstat').': 0",value:0,color:"#ededed"}','gy'=>'{id:"GY",balloonText:"'.__('c-gy','wp-slimstat').': 0",value:0,color:"#ededed"}','ht'=>'{id:"HT",balloonText:"'.__('c-ht','wp-slimstat').': 0",value:0,color:"#ededed"}','hn'=>'{id:"HN",balloonText:"'.__('c-hn','wp-slimstat').': 0",value:0,color:"#ededed"}','hk'=>'{id:"HK",balloonText:"'.__('c-hk','wp-slimstat').': 0",value:0,color:"#ededed"}','hu'=>'{id:"HU",balloonText:"'.__('c-hu','wp-slimstat').': 0",value:0,color:"#ededed"}','is'=>'{id:"IS",balloonText:"'.__('c-is','wp-slimstat').': 0",value:0,color:"#ededed"}','in'=>'{id:"IN",balloonText:"'.__('c-in','wp-slimstat').': 0",value:0,color:"#ededed"}','id'=>'{id:"ID",balloonText:"'.__('c-id','wp-slimstat').': 0",value:0,color:"#ededed"}','ir'=>'{id:"IR",balloonText:"'.__('c-ir','wp-slimstat').': 0",value:0,color:"#ededed"}','iq'=>'{id:"IQ",balloonText:"'.__('c-iq','wp-slimstat').': 0",value:0,color:"#ededed"}','ie'=>'{id:"IE",balloonText:"'.__('c-ie','wp-slimstat').': 0",value:0,color:"#ededed"}','il'=>'{id:"IL",balloonText:"'.__('c-il','wp-slimstat').': 0",value:0,color:"#ededed"}','it'=>'{id:"IT",balloonText:"'.__('c-it','wp-slimstat').': 0",value:0,color:"#ededed"}','jm'=>'{id:"JM",balloonText:"'.__('c-jm','wp-slimstat').': 0",value:0,color:"#ededed"}','jp'=>'{id:"JP",balloonText:"'.__('c-jp','wp-slimstat').': 0",value:0,color:"#ededed"}','jo'=>'{id:"JO",balloonText:"'.__('c-jo','wp-slimstat').': 0",value:0,color:"#ededed"}','kz'=>'{id:"KZ",balloonText:"'.__('c-kz','wp-slimstat').': 0",value:0,color:"#ededed"}','ke'=>'{id:"KE",balloonText:"'.__('c-ke','wp-slimstat').': 0",value:0,color:"#ededed"}','nr'=>'{id:"NR",balloonText:"'.__('c-nr','wp-slimstat').': 0",value:0,color:"#ededed"}','kp'=>'{id:"KP",balloonText:"'.__('c-kp','wp-slimstat').': 0",value:0,color:"#ededed"}','kr'=>'{id:"KR",balloonText:"'.__('c-kr','wp-slimstat').': 0",value:0,color:"#ededed"}','kv'=>'{id:"KV",balloonText:"'.__('c-kv','wp-slimstat').': 0",value:0,color:"#ededed"}','kw'=>'{id:"KW",balloonText:"'.__('c-kw','wp-slimstat').': 0",value:0,color:"#ededed"}','kg'=>'{id:"KG",balloonText:"'.__('c-kg','wp-slimstat').': 0",value:0,color:"#ededed"}','la'=>'{id:"LA",balloonText:"'.__('c-la','wp-slimstat').': 0",value:0,color:"#ededed"}','lv'=>'{id:"LV",balloonText:"'.__('c-lv','wp-slimstat').': 0",value:0,color:"#ededed"}','lb'=>'{id:"LB",balloonText:"'.__('c-lb','wp-slimstat').': 0",value:0,color:"#ededed"}','ls'=>'{id:"LS",balloonText:"'.__('c-ls','wp-slimstat').': 0",value:0,color:"#ededed"}','lr'=>'{id:"LR",balloonText:"'.__('c-lr','wp-slimstat').': 0",value:0,color:"#ededed"}','ly'=>'{id:"LY",balloonText:"'.__('c-ly','wp-slimstat').': 0",value:0,color:"#ededed"}','li'=>'{id:"LI",balloonText:"'.__('c-li','wp-slimstat').': 0",value:0,color:"#ededed"}','lt'=>'{id:"LT",balloonText:"'.__('c-lt','wp-slimstat').': 0",value:0,color:"#ededed"}','lu'=>'{id:"LU",balloonText:"'.__('c-lu','wp-slimstat').': 0",value:0,color:"#ededed"}','mk'=>'{id:"MK",balloonText:"'.__('c-mk','wp-slimstat').': 0",value:0,color:"#ededed"}','mg'=>'{id:"MG",balloonText:"'.__('c-mg','wp-slimstat').': 0",value:0,color:"#ededed"}','mw'=>'{id:"MW",balloonText:"'.__('c-mw','wp-slimstat').': 0",value:0,color:"#ededed"}','my'=>'{id:"MY",balloonText:"'.__('c-my','wp-slimstat').': 0",value:0,color:"#ededed"}','ml'=>'{id:"ML",balloonText:"'.__('c-ml','wp-slimstat').': 0",value:0,color:"#ededed"}','mt'=>'{id:"MT",balloonText:"'.__('c-mt','wp-slimstat').': 0",value:0,color:"#ededed"}','mq'=>'{id:"MQ",balloonText:"'.__('c-mq','wp-slimstat').': 0",value:0,color:"#ededed"}','mr'=>'{id:"MR",balloonText:"'.__('c-mr','wp-slimstat').': 0",value:0,color:"#ededed"}','mu'=>'{id:"MU",balloonText:"'.__('c-mu','wp-slimstat').': 0",value:0,color:"#ededed"}','mx'=>'{id:"MX",balloonText:"'.__('c-mx','wp-slimstat').': 0",value:0,color:"#ededed"}','md'=>'{id:"MD",balloonText:"'.__('c-md','wp-slimstat').': 0",value:0,color:"#ededed"}','mn'=>'{id:"MN",balloonText:"'.__('c-mn','wp-slimstat').': 0",value:0,color:"#ededed"}','me'=>'{id:"ME",balloonText:"'.__('c-me','wp-slimstat').': 0",value:0,color:"#ededed"}','ms'=>'{id:"MS",balloonText:"'.__('c-ms','wp-slimstat').': 0",value:0,color:"#ededed"}','ma'=>'{id:"MA",balloonText:"'.__('c-ma','wp-slimstat').': 0",value:0,color:"#ededed"}','mz'=>'{id:"MZ",balloonText:"'.__('c-mz','wp-slimstat').': 0",value:0,color:"#ededed"}','mm'=>'{id:"MM",balloonText:"'.__('c-mm','wp-slimstat').': 0",value:0,color:"#ededed"}','na'=>'{id:"NA",balloonText:"'.__('c-na','wp-slimstat').': 0",value:0,color:"#ededed"}','np'=>'{id:"NP",balloonText:"'.__('c-np','wp-slimstat').': 0",value:0,color:"#ededed"}','nl'=>'{id:"NL",balloonText:"'.__('c-nl','wp-slimstat').': 0",value:0,color:"#ededed"}','nc'=>'{id:"NC",balloonText:"'.__('c-nc','wp-slimstat').': 0",value:0,color:"#ededed"}','nz'=>'{id:"NZ",balloonText:"'.__('c-nz','wp-slimstat').': 0",value:0,color:"#ededed"}','ni'=>'{id:"NI",balloonText:"'.__('c-ni','wp-slimstat').': 0",value:0,color:"#ededed"}','ne'=>'{id:"NE",balloonText:"'.__('c-ne','wp-slimstat').': 0",value:0,color:"#ededed"}','ng'=>'{id:"NG",balloonText:"'.__('c-ng','wp-slimstat').': 0",value:0,color:"#ededed"}','no'=>'{id:"NO",balloonText:"'.__('c-no','wp-slimstat').': 0",value:0,color:"#ededed"}','om'=>'{id:"OM",balloonText:"'.__('c-om','wp-slimstat').': 0",value:0,color:"#ededed"}','pk'=>'{id:"PK",balloonText:"'.__('c-pk','wp-slimstat').': 0",value:0,color:"#ededed"}','pw'=>'{id:"PW",balloonText:"'.__('c-pw','wp-slimstat').': 0",value:0,color:"#ededed"}','ps'=>'{id:"PS",balloonText:"'.__('c-ps','wp-slimstat').': 0",value:0,color:"#ededed"}','pa'=>'{id:"PA",balloonText:"'.__('c-pa','wp-slimstat').': 0",value:0,color:"#ededed"}','pg'=>'{id:"PG",balloonText:"'.__('c-pg','wp-slimstat').': 0",value:0,color:"#ededed"}','py'=>'{id:"PY",balloonText:"'.__('c-py','wp-slimstat').': 0",value:0,color:"#ededed"}','pe'=>'{id:"PE",balloonText:"'.__('c-pe','wp-slimstat').': 0",value:0,color:"#ededed"}','ph'=>'{id:"PH",balloonText:"'.__('c-ph','wp-slimstat').': 0",value:0,color:"#ededed"}','pl'=>'{id:"PL",balloonText:"'.__('c-pl','wp-slimstat').': 0",value:0,color:"#ededed"}','pt'=>'{id:"PT",balloonText:"'.__('c-pt','wp-slimstat').': 0",value:0,color:"#ededed"}','pr'=>'{id:"PR",balloonText:"'.__('c-pr','wp-slimstat').': 0",value:0,color:"#ededed"}','qa'=>'{id:"QA",balloonText:"'.__('c-qa','wp-slimstat').': 0",value:0,color:"#ededed"}','re'=>'{id:"RE",balloonText:"'.__('c-re','wp-slimstat').': 0",value:0,color:"#ededed"}','ro'=>'{id:"RO",balloonText:"'.__('c-ro','wp-slimstat').': 0",value:0,color:"#ededed"}','ru'=>'{id:"RU",balloonText:"'.__('c-ru','wp-slimstat').': 0",value:0,color:"#ededed"}','rw'=>'{id:"RW",balloonText:"'.__('c-rw','wp-slimstat').': 0",value:0,color:"#ededed"}','kn'=>'{id:"KN",balloonText:"'.__('c-kn','wp-slimstat').': 0",value:0,color:"#ededed"}','lc'=>'{id:"LC",balloonText:"'.__('c-lc','wp-slimstat').': 0",value:0,color:"#ededed"}','mf'=>'{id:"MF",balloonText:"'.__('c-mf','wp-slimstat').': 0",value:0,color:"#ededed"}','vc'=>'{id:"VC",balloonText:"'.__('c-vc','wp-slimstat').': 0",value:0,color:"#ededed"}','ws'=>'{id:"WS",balloonText:"'.__('c-ws','wp-slimstat').': 0",value:0,color:"#ededed"}','st'=>'{id:"ST",balloonText:"'.__('c-st','wp-slimstat').': 0",value:0,color:"#ededed"}','sa'=>'{id:"SA",balloonText:"'.__('c-sa','wp-slimstat').': 0",value:0,color:"#ededed"}','sn'=>'{id:"SN",balloonText:"'.__('c-sn','wp-slimstat').': 0",value:0,color:"#ededed"}','rs'=>'{id:"RS",balloonText:"'.__('c-rs','wp-slimstat').': 0",value:0,color:"#ededed"}','sl'=>'{id:"SL",balloonText:"'.__('c-sl','wp-slimstat').': 0",value:0,color:"#ededed"}','sg'=>'{id:"SG",balloonText:"'.__('c-sg','wp-slimstat').': 0",value:0,color:"#ededed"}','sk'=>'{id:"SK",balloonText:"'.__('c-sk','wp-slimstat').': 0",value:0,color:"#ededed"}','si'=>'{id:"SI",balloonText:"'.__('c-si','wp-slimstat').': 0",value:0,color:"#ededed"}','sb'=>'{id:"SB",balloonText:"'.__('c-sb','wp-slimstat').': 0",value:0,color:"#ededed"}','so'=>'{id:"SO",balloonText:"'.__('c-so','wp-slimstat').': 0",value:0,color:"#ededed"}','za'=>'{id:"ZA",balloonText:"'.__('c-za','wp-slimstat').': 0",value:0,color:"#ededed"}','gs'=>'{id:"GS",balloonText:"'.__('c-gs','wp-slimstat').': 0",value:0,color:"#ededed"}','es'=>'{id:"ES",balloonText:"'.__('c-es','wp-slimstat').': 0",value:0,color:"#ededed"}','lk'=>'{id:"LK",balloonText:"'.__('c-lk','wp-slimstat').': 0",value:0,color:"#ededed"}','sc'=>'{id:"SC",balloonText:"'.__('c-sc','wp-slimstat').': 0",value:0,color:"#ededed"}','sd'=>'{id:"SD",balloonText:"'.__('c-sd','wp-slimstat').': 0",value:0,color:"#ededed"}','ss'=>'{id:"SS",balloonText:"'.__('c-ss','wp-slimstat').': 0",value:0,color:"#ededed"}','sr'=>'{id:"SR",balloonText:"'.__('c-sr','wp-slimstat').': 0",value:0,color:"#ededed"}','sj'=>'{id:"SJ",balloonText:"'.__('c-sj','wp-slimstat').': 0",value:0,color:"#ededed"}','sz'=>'{id:"SZ",balloonText:"'.__('c-sz','wp-slimstat').': 0",value:0,color:"#ededed"}','se'=>'{id:"SE",balloonText:"'.__('c-se','wp-slimstat').': 0",value:0,color:"#ededed"}','ch'=>'{id:"CH",balloonText:"'.__('c-ch','wp-slimstat').': 0",value:0,color:"#ededed"}','sy'=>'{id:"SY",balloonText:"'.__('c-sy','wp-slimstat').': 0",value:0,color:"#ededed"}','tw'=>'{id:"TW",balloonText:"'.__('c-tw','wp-slimstat').': 0",value:0,color:"#ededed"}','tj'=>'{id:"TJ",balloonText:"'.__('c-tj','wp-slimstat').': 0",value:0,color:"#ededed"}','tz'=>'{id:"TZ",balloonText:"'.__('c-tz','wp-slimstat').': 0",value:0,color:"#ededed"}','th'=>'{id:"TH",balloonText:"'.__('c-th','wp-slimstat').': 0",value:0,color:"#ededed"}','tl'=>'{id:"TL",balloonText:"'.__('c-tl','wp-slimstat').': 0",value:0,color:"#ededed"}','tg'=>'{id:"TG",balloonText:"'.__('c-tg','wp-slimstat').': 0",value:0,color:"#ededed"}','to'=>'{id:"TO",balloonText:"'.__('c-to','wp-slimstat').': 0",value:0,color:"#ededed"}','tt'=>'{id:"TT",balloonText:"'.__('c-tt','wp-slimstat').': 0",value:0,color:"#ededed"}','tn'=>'{id:"TN",balloonText:"'.__('c-tn','wp-slimstat').': 0",value:0,color:"#ededed"}','tr'=>'{id:"TR",balloonText:"'.__('c-tr','wp-slimstat').': 0",value:0,color:"#ededed"}','tm'=>'{id:"TM",balloonText:"'.__('c-tm','wp-slimstat').': 0",value:0,color:"#ededed"}','tc'=>'{id:"TC",balloonText:"'.__('c-tc','wp-slimstat').': 0",value:0,color:"#ededed"}','ug'=>'{id:"UG",balloonText:"'.__('c-ug','wp-slimstat').': 0",value:0,color:"#ededed"}','ua'=>'{id:"UA",balloonText:"'.__('c-ua','wp-slimstat').': 0",value:0,color:"#ededed"}','ae'=>'{id:"AE",balloonText:"'.__('c-ae','wp-slimstat').': 0",value:0,color:"#ededed"}','gb'=>'{id:"GB",balloonText:"'.__('c-gb','wp-slimstat').': 0",value:0,color:"#ededed"}','us'=>'{id:"US",balloonText:"'.__('c-us','wp-slimstat').': 0",value:0,color:"#ededed"}','uy'=>'{id:"UY",balloonText:"'.__('c-uy','wp-slimstat').': 0",value:0,color:"#ededed"}','uz'=>'{id:"UZ",balloonText:"'.__('c-uz','wp-slimstat').': 0",value:0,color:"#ededed"}','vu'=>'{id:"VU",balloonText:"'.__('c-vu','wp-slimstat').': 0",value:0,color:"#ededed"}','ve'=>'{id:"VE",balloonText:"'.__('c-ve','wp-slimstat').': 0",value:0,color:"#ededed"}','vn'=>'{id:"VN",balloonText:"'.__('c-vn','wp-slimstat').': 0",value:0,color:"#ededed"}','vg'=>'{id:"VG",balloonText:"'.__('c-vg','wp-slimstat').': 0",value:0,color:"#ededed"}','vi'=>'{id:"VI",balloonText:"'.__('c-vi','wp-slimstat').': 0",value:0,color:"#ededed"}','eh'=>'{id:"EH",balloonText:"'.__('c-eh','wp-slimstat').': 0",value:0,color:"#ededed"}','ye'=>'{id:"YE",balloonText:"'.__('c-ye','wp-slimstat').': 0",value:0,color:"#ededed"}','zm'=>'{id:"ZM",balloonText:"'.__('c-zm','wp-slimstat').': 0",value:0,color:"#ededed"}','zw'=>'{id:"ZW",balloonText:"'.__('c-zw','wp-slimstat').': 0",value:0,color:"#ededed"}','gg'=>'{id:"GG",balloonText:"'.__('c-gg','wp-slimstat').': 0",value:0,color:"#ededed"}','je'=>'{id:"JE",balloonText:"'.__('c-je','wp-slimstat').': 0",value:0,color:"#ededed"}','im'=>'{id:"IM",balloonText:"'.__('c-im','wp-slimstat').': 0",value:0,color:"#ededed"}','mv'=>'{id:"MV",balloonText:"'.__('c-mv','wp-slimstat').': 0",value:0,color:"#ededed"}');
@@ -1883,24 +1802,21 @@ class wp_slimstat_reports {
1883
  public static function get_search_terms_info($_searchterms = '', $_referer = '', $_serp_only = false){
1884
  $query_details = '';
1885
  $search_terms_info = '';
1886
- $domain = parse_url($_referer);
1887
- $domain = !empty( $domain['host'] ) ? $domain['host'] : '';
1888
-
1889
- parse_str("daum=search?q&naver=search.naver?query&google=search?q&yahoo=search?p&bing=search?q&aol=search?query&lycos=web?q&ask=web?q&cnn=search/?query&about=?q&mamma=result.php?q&voila=S/voila?rdata&virgilio=ricerca?qs&baidu=s?wd&yandex=yandsearch?text&najdi=search.jsp?q&seznam=?q&onet=wyniki.html?qt&yam=Search/Web/DefaultCSA.aspx?k&pchome=/search/?q&kvasir=alle?q&arama.mynet=web/goal/1/?q&nova_rambler=search?query", $query_formats);
1890
- preg_match("/(daum|naver|google|yahoo|bing|aol|lycos|ask|cnn|about|mamma|voila|virgilio|baidu|yandex|najdi|seznam|onet|szukacz|yam|pchome|kvasir|mynet|ekolay|rambler)./", $domain, $matches);
1891
- parse_str($_referer, $query_parse_str);
1892
 
1893
- if (!empty($query_parse_str['source']) && !$_serp_only){
1894
- $query_details = __('src','wp-slimstat').": {$query_parse_str['source']}";
1895
  }
1896
- if (!empty($query_parse_str['cd'])){
1897
- $query_details = __('serp','wp-slimstat').": {$query_parse_str['cd']}";
 
1898
  }
1899
- if (!empty($query_details)){
 
1900
  $query_details = "($query_details)";
1901
  }
1902
 
1903
- if (!empty($_searchterms)){
1904
  $search_terms_info = '<a class="slimstat-font-logout" target="_blank" title="' . htmlentities( __( 'Go to the referring page', 'wp-slimstat' ), ENT_QUOTES, 'UTF-8' ) . '" href="' . $_referer . '"></a>' . htmlentities( $_searchterms, ENT_QUOTES, 'UTF-8' );
1905
  $search_terms_info = "$search_terms_info $query_details";
1906
  }
@@ -1947,7 +1863,7 @@ class wp_slimstat_reports {
1947
  if ( empty( $_REQUEST[ 'page' ] ) ) {
1948
  $request_uri = str_replace( 'index.php', 'admin.php', $request_uri );
1949
  }
1950
- else if ( array_key_exists( $_REQUEST[ 'page' ], self::$screens_info ) ) {
1951
  $request_page = $_REQUEST[ 'page' ];
1952
  }
1953
  else {
3
  class wp_slimstat_reports {
4
 
5
  // Structures to store all the information about what screens and reports are available
 
6
  public static $reports_info = array();
7
  public static $user_reports = array();
8
 
16
  * Initalize class properties
17
  */
18
  public static function init(){
 
 
 
 
 
 
 
 
 
 
 
19
  // Filters use the following format: browser equals Firefox&&&country contains gb
20
  $filters = array();
21
  if ( !empty( $_REQUEST[ 'fs' ] ) && is_array( $_REQUEST[ 'fs' ] ) ) {
64
 
65
  $chart_tooltip = '<strong>' . __( 'Chart controls', 'wp-slimstat' ) . '</strong><ul><li>' . __( 'Use your mouse wheel to zoom in and out', 'wp-slimstat' ) . '</li><li>' . __( 'While zooming in, drag the chart to move to a different area', 'wp-slimstat' ) . '</li></ul>';
66
  self::$reports_info = array(
 
 
 
 
 
 
 
67
  'slim_p7_02' => array(
68
  'title' => __( 'Visitors Activity', 'wp-slimstat' ),
69
  'callback' => array( __CLASS__, 'show_activity_log' ),
133
  'callback_args' => array(
134
  'type' => 'recent',
135
  'columns' => 'searchterms',
136
+ 'where' => 'searchterms <> "_"',
137
  'more_columns' => 'referer, resource',
138
  'raw' => array( 'wp_slimstat_db', 'get_recent' )
139
  ),
160
  'callback' => array( __CLASS__, 'raw_results_to_html' ),
161
  'callback_args' => array(
162
  'type' => 'top',
163
+ 'columns' => 'REPLACE( SUBSTRING_INDEX( ( SUBSTRING_INDEX( ( SUBSTRING_INDEX( referer, "://", -1 ) ), "/", 1 ) ), ".", -5 ), "www.", "" )',
164
+ 'as_column' => 'referer_calculated',
165
+ 'filter_op' => 'contains',
166
  'where' => 'referer NOT LIKE "%' . str_replace( 'www.', '', parse_url( home_url(), PHP_URL_HOST ) ) . '%"',
167
  'raw' => array( 'wp_slimstat_db', 'get_top' )
168
  ),
186
  'callback_args' => array(
187
  'type' => 'top',
188
  'columns' => 'searchterms',
189
+ 'where' => 'searchterms <> "_"',
190
  'raw' => array( 'wp_slimstat_db', 'get_top' )
191
  ),
192
  'classes' => array( 'normal' ),
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' ),
339
  'callback_args' => array(
340
  'type' => 'top',
341
  'columns' => 'screen_width, screen_height',
342
+ 'where' => 'screen_width <> 0 AND screen_height <> 0',
343
  'raw' => array( 'wp_slimstat_db', 'get_top' )
344
  ),
345
  'classes' => array( 'normal' ),
532
  'callback' => array( __CLASS__, 'raw_results_to_html' ),
533
  'callback_args' => array(
534
  'type' => 'top',
535
+ 'columns' => 'REPLACE( SUBSTRING_INDEX( SUBSTRING_INDEX( SUBSTRING_INDEX( referer, "://", -1 ), "/", 1 ), ".", -5 ), "www.", "" )',
536
+ 'as_column' => 'referer_calculated',
537
+ 'filter_op' => 'contains',
538
+ 'where' => 'searchterms IS NOT NULL AND referer NOT LIKE "%' . str_replace( 'www.', '', parse_url( home_url(), PHP_URL_HOST ) ) . '%"',
539
  'raw' => array( 'wp_slimstat_db', 'get_top' )
540
  ),
541
  'classes' => array( 'normal' ),
873
  'slim_p4_08' => 1,
874
  'slim_p4_14' => 1,
875
  'slim_p4_16' => 1,
876
+ 'slim_p4_17' => 1,
877
+ 'slim_getsocial' => 1
878
  );
879
 
880
  // Retrieve this user's list of active reports,
881
  $current_user = wp_get_current_user();
882
  $page_location = ( wp_slimstat::$options[ 'use_separate_menu' ] == 'yes' ) ? 'slimstat' : 'admin';
 
 
883
  self::$user_reports = get_user_option( "meta-box-order_{$page_location}_page_slimlayout", $current_user->ID );
884
 
885
+ // Do this only if we are in one of our screens (no dashboard!)
886
  if ( !empty( $_REQUEST['page'] ) && strpos( $_REQUEST['page'], 'slimview' ) !== false ) {
887
 
888
  // If this list is not empty, we rearrange the order of our reports
1045
 
1046
  $is_expanded = ( wp_slimstat::$options['expand_details'] == 'yes' ) ? ' expanded' : '';
1047
  $permalinks_enabled = get_option( 'permalink_structure' );
1048
+ $column_not_calculated = str_replace( '_calculated', '', $_args[ 'columns' ] );
1049
 
1050
  for($i=0; $i<$count_page_results; $i++){
1051
  $row_details = $percentage = '';
1053
  $element_value = $results[ $i ][ $_args[ 'columns' ] ];
1054
 
1055
  // Some columns require a special pre-treatment
1056
+ switch ( $column_not_calculated ){
1057
 
1058
  case 'browser':
1059
  if (!empty($results[$i]['user_agent']) && wp_slimstat::$options['show_complete_user_agent_tooltip'] == 'yes'){
1082
  break;
1083
 
1084
  case 'language':
1085
+ $row_details = __( 'Code', 'wp-slimstat' ) . ": {$results[ $i ][ $_args[ 'columns' ] ]}";
1086
+ $element_value = __( 'l-' . $results[ $i ][ $_args[ 'columns' ] ], 'wp-slimstat' );
 
1087
  break;
1088
 
1089
  case 'platform':
1090
+ $row_details = __( 'Code', 'wp-slimstat' ).": {$results[ $i ][ $_args[ 'columns' ] ]}";
1091
+ $element_value = __( $results[ $i ][ $_args[ 'columns' ] ], 'wp-slimstat' );
1092
+ $results[ $i ][ $_args[ 'columns' ] ] = str_replace( 'p-', '', $results[ $i ][ $_args[ 'columns' ] ] );
1093
  break;
1094
 
1095
  case 'referer':
1096
  $element_value = str_replace( array( '<', '>' ), array( '&lt;', '&gt;' ), urldecode( $results[ $i ][ $_args[ 'columns' ] ] ) );
1097
+ //$element_value = parse_url( $element_value, PHP_URL_HOST );
1098
  break;
1099
 
1100
  case 'resource':
 
1101
  $resource_title = self::get_resource_title( $results[ $i ][ $_args[ 'columns' ] ] );
1102
  if ( $resource_title != $results[ $i ][ $_args[ 'columns' ] ] ) {
1103
  $row_details = __( 'URL', 'wp-slimstat' ) . ': ' . htmlentities( $results[ $i ][ $_args[ 'columns' ] ], ENT_QUOTES, 'UTF-8' );
1120
  $element_value = htmlentities( $results[ $i ][ 'searchterms' ], ENT_QUOTES, 'UTF-8' );
1121
  }
1122
  break;
1123
+
1124
  case 'username':
1125
  $element_value = $results[$i]['username'];
1126
  if (wp_slimstat::$options['show_display_name'] == 'yes'){
1139
  default:
1140
  }
1141
 
1142
+ $element_value = "<a class='slimstat-filter-link' href='" . self::fs_url( $column_not_calculated. ' ' . $_args[ 'filter_op' ] . ' ' . $results[ $i ][ $_args[ 'columns' ] ] ) . "'>$element_value</a>";
1143
 
1144
+ if ( !empty( $_args['type'] ) && $_args['type'] == 'recent' ) {
1145
  $row_details = date_i18n(wp_slimstat::$options['date_format'].' '.wp_slimstat::$options['time_format'], $results[$i]['dt'], true) . ( !empty( $row_details ) ? '<br>' : '' ) . $row_details;
1146
  }
1147
 
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
  }
1725
  }
1726
  }
1727
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1728
  public static function show_world_map() {
1729
  $countries = wp_slimstat_db::get_top('country');
1730
  $data_areas = array('xx'=>'{id:"XX",balloonText:"'.__('c-xx','wp-slimstat').': 0",value:0,color:"#ededed"}','af'=>'{id:"AF",balloonText:"'.__('c-af','wp-slimstat').': 0",value:0,color:"#ededed"}','ax'=>'{id:"AX",balloonText:"'.__('c-ax','wp-slimstat').': 0",value:0,color:"#ededed"}','al'=>'{id:"AL",balloonText:"'.__('c-al','wp-slimstat').': 0",value:0,color:"#ededed"}','dz'=>'{id:"DZ",balloonText:"'.__('c-dz','wp-slimstat').': 0",value:0,color:"#ededed"}','ad'=>'{id:"AD",balloonText:"'.__('c-ad','wp-slimstat').': 0",value:0,color:"#ededed"}','ao'=>'{id:"AO",balloonText:"'.__('c-ao','wp-slimstat').': 0",value:0,color:"#ededed"}','ai'=>'{id:"AI",balloonText:"'.__('c-ai','wp-slimstat').': 0",value:0,color:"#ededed"}','ag'=>'{id:"AG",balloonText:"'.__('c-ag','wp-slimstat').': 0",value:0,color:"#ededed"}','ar'=>'{id:"AR",balloonText:"'.__('c-ar','wp-slimstat').': 0",value:0,color:"#ededed"}','am'=>'{id:"AM",balloonText:"'.__('c-am','wp-slimstat').': 0",value:0,color:"#ededed"}','aw'=>'{id:"AW",balloonText:"'.__('c-aw','wp-slimstat').': 0",value:0,color:"#ededed"}','au'=>'{id:"AU",balloonText:"'.__('c-au','wp-slimstat').': 0",value:0,color:"#ededed"}','at'=>'{id:"AT",balloonText:"'.__('c-at','wp-slimstat').': 0",value:0,color:"#ededed"}','az'=>'{id:"AZ",balloonText:"'.__('c-az','wp-slimstat').': 0",value:0,color:"#ededed"}','bs'=>'{id:"BS",balloonText:"'.__('c-bs','wp-slimstat').': 0",value:0,color:"#ededed"}','bh'=>'{id:"BH",balloonText:"'.__('c-bh','wp-slimstat').': 0",value:0,color:"#ededed"}','bd'=>'{id:"BD",balloonText:"'.__('c-bd','wp-slimstat').': 0",value:0,color:"#ededed"}','bb'=>'{id:"BB",balloonText:"'.__('c-bb','wp-slimstat').': 0",value:0,color:"#ededed"}','by'=>'{id:"BY",balloonText:"'.__('c-by','wp-slimstat').': 0",value:0,color:"#ededed"}','be'=>'{id:"BE",balloonText:"'.__('c-be','wp-slimstat').': 0",value:0,color:"#ededed"}','bz'=>'{id:"BZ",balloonText:"'.__('c-bz','wp-slimstat').': 0",value:0,color:"#ededed"}','bj'=>'{id:"BJ",balloonText:"'.__('c-bj','wp-slimstat').': 0",value:0,color:"#ededed"}','bm'=>'{id:"BM",balloonText:"'.__('c-bm','wp-slimstat').': 0",value:0,color:"#ededed"}','bt'=>'{id:"BT",balloonText:"'.__('c-bt','wp-slimstat').': 0",value:0,color:"#ededed"}','bo'=>'{id:"BO",balloonText:"'.__('c-bo','wp-slimstat').': 0",value:0,color:"#ededed"}','ba'=>'{id:"BA",balloonText:"'.__('c-ba','wp-slimstat').': 0",value:0,color:"#ededed"}','bw'=>'{id:"BW",balloonText:"'.__('c-bw','wp-slimstat').': 0",value:0,color:"#ededed"}','br'=>'{id:"BR",balloonText:"'.__('c-br','wp-slimstat').': 0",value:0,color:"#ededed"}','bn'=>'{id:"BN",balloonText:"'.__('c-bn','wp-slimstat').': 0",value:0,color:"#ededed"}','bg'=>'{id:"BG",balloonText:"'.__('c-bg','wp-slimstat').': 0",value:0,color:"#ededed"}','bf'=>'{id:"BF",balloonText:"'.__('c-bf','wp-slimstat').': 0",value:0,color:"#ededed"}','bi'=>'{id:"BI",balloonText:"'.__('c-bi','wp-slimstat').': 0",value:0,color:"#ededed"}','kh'=>'{id:"KH",balloonText:"'.__('c-kh','wp-slimstat').': 0",value:0,color:"#ededed"}','cm'=>'{id:"CM",balloonText:"'.__('c-cm','wp-slimstat').': 0",value:0,color:"#ededed"}','ca'=>'{id:"CA",balloonText:"'.__('c-ca','wp-slimstat').': 0",value:0,color:"#ededed"}','cv'=>'{id:"CV",balloonText:"'.__('c-cv','wp-slimstat').': 0",value:0,color:"#ededed"}','ky'=>'{id:"KY",balloonText:"'.__('c-ky','wp-slimstat').': 0",value:0,color:"#ededed"}','cf'=>'{id:"CF",balloonText:"'.__('c-cf','wp-slimstat').': 0",value:0,color:"#ededed"}','td'=>'{id:"TD",balloonText:"'.__('c-td','wp-slimstat').': 0",value:0,color:"#ededed"}','cl'=>'{id:"CL",balloonText:"'.__('c-cl','wp-slimstat').': 0",value:0,color:"#ededed"}','cn'=>'{id:"CN",balloonText:"'.__('c-cn','wp-slimstat').': 0",value:0,color:"#ededed"}','co'=>'{id:"CO",balloonText:"'.__('c-co','wp-slimstat').': 0",value:0,color:"#ededed"}','km'=>'{id:"KM",balloonText:"'.__('c-km','wp-slimstat').': 0",value:0,color:"#ededed"}','cg'=>'{id:"CG",balloonText:"'.__('c-cg','wp-slimstat').': 0",value:0,color:"#ededed"}','cd'=>'{id:"CD",balloonText:"'.__('c-cd','wp-slimstat').': 0",value:0,color:"#ededed"}','cr'=>'{id:"CR",balloonText:"'.__('c-cr','wp-slimstat').': 0",value:0,color:"#ededed"}','ci'=>'{id:"CI",balloonText:"'.__('c-ci','wp-slimstat').': 0",value:0,color:"#ededed"}','hr'=>'{id:"HR",balloonText:"'.__('c-hr','wp-slimstat').': 0",value:0,color:"#ededed"}','cu'=>'{id:"CU",balloonText:"'.__('c-cu','wp-slimstat').': 0",value:0,color:"#ededed"}','cy'=>'{id:"CY",balloonText:"'.__('c-cy','wp-slimstat').': 0",value:0,color:"#ededed"}','cz'=>'{id:"CZ",balloonText:"'.__('c-cz','wp-slimstat').': 0",value:0,color:"#ededed"}','dk'=>'{id:"DK",balloonText:"'.__('c-dk','wp-slimstat').': 0",value:0,color:"#ededed"}','dj'=>'{id:"DJ",balloonText:"'.__('c-dj','wp-slimstat').': 0",value:0,color:"#ededed"}','dm'=>'{id:"DM",balloonText:"'.__('c-dm','wp-slimstat').': 0",value:0,color:"#ededed"}','do'=>'{id:"DO",balloonText:"'.__('c-do','wp-slimstat').': 0",value:0,color:"#ededed"}','ec'=>'{id:"EC",balloonText:"'.__('c-ec','wp-slimstat').': 0",value:0,color:"#ededed"}','eg'=>'{id:"EG",balloonText:"'.__('c-eg','wp-slimstat').': 0",value:0,color:"#ededed"}','sv'=>'{id:"SV",balloonText:"'.__('c-sv','wp-slimstat').': 0",value:0,color:"#ededed"}','gq'=>'{id:"GQ",balloonText:"'.__('c-gq','wp-slimstat').': 0",value:0,color:"#ededed"}','er'=>'{id:"ER",balloonText:"'.__('c-er','wp-slimstat').': 0",value:0,color:"#ededed"}','ee'=>'{id:"EE",balloonText:"'.__('c-ee','wp-slimstat').': 0",value:0,color:"#ededed"}','et'=>'{id:"ET",balloonText:"'.__('c-et','wp-slimstat').': 0",value:0,color:"#ededed"}','fo'=>'{id:"FO",balloonText:"'.__('c-fo','wp-slimstat').': 0",value:0,color:"#ededed"}','fk'=>'{id:"FK",balloonText:"'.__('c-fk','wp-slimstat').': 0",value:0,color:"#ededed"}','fj'=>'{id:"FJ",balloonText:"'.__('c-fj','wp-slimstat').': 0",value:0,color:"#ededed"}','fi'=>'{id:"FI",balloonText:"'.__('c-fi','wp-slimstat').': 0",value:0,color:"#ededed"}','fr'=>'{id:"FR",balloonText:"'.__('c-fr','wp-slimstat').': 0",value:0,color:"#ededed"}','gf'=>'{id:"GF",balloonText:"'.__('c-gf','wp-slimstat').': 0",value:0,color:"#ededed"}','ga'=>'{id:"GA",balloonText:"'.__('c-ga','wp-slimstat').': 0",value:0,color:"#ededed"}','gm'=>'{id:"GM",balloonText:"'.__('c-gm','wp-slimstat').': 0",value:0,color:"#ededed"}','ge'=>'{id:"GE",balloonText:"'.__('c-ge','wp-slimstat').': 0",value:0,color:"#ededed"}','de'=>'{id:"DE",balloonText:"'.__('c-de','wp-slimstat').': 0",value:0,color:"#ededed"}','gh'=>'{id:"GH",balloonText:"'.__('c-gh','wp-slimstat').': 0",value:0,color:"#ededed"}','gr'=>'{id:"GR",balloonText:"'.__('c-gr','wp-slimstat').': 0",value:0,color:"#ededed"}','gl'=>'{id:"GL",balloonText:"'.__('c-gl','wp-slimstat').': 0",value:0,color:"#ededed"}','gd'=>'{id:"GD",balloonText:"'.__('c-gd','wp-slimstat').': 0",value:0,color:"#ededed"}','gp'=>'{id:"GP",balloonText:"'.__('c-gp','wp-slimstat').': 0",value:0,color:"#ededed"}','gt'=>'{id:"GT",balloonText:"'.__('c-gt','wp-slimstat').': 0",value:0,color:"#ededed"}','gn'=>'{id:"GN",balloonText:"'.__('c-gn','wp-slimstat').': 0",value:0,color:"#ededed"}','gw'=>'{id:"GW",balloonText:"'.__('c-gw','wp-slimstat').': 0",value:0,color:"#ededed"}','gy'=>'{id:"GY",balloonText:"'.__('c-gy','wp-slimstat').': 0",value:0,color:"#ededed"}','ht'=>'{id:"HT",balloonText:"'.__('c-ht','wp-slimstat').': 0",value:0,color:"#ededed"}','hn'=>'{id:"HN",balloonText:"'.__('c-hn','wp-slimstat').': 0",value:0,color:"#ededed"}','hk'=>'{id:"HK",balloonText:"'.__('c-hk','wp-slimstat').': 0",value:0,color:"#ededed"}','hu'=>'{id:"HU",balloonText:"'.__('c-hu','wp-slimstat').': 0",value:0,color:"#ededed"}','is'=>'{id:"IS",balloonText:"'.__('c-is','wp-slimstat').': 0",value:0,color:"#ededed"}','in'=>'{id:"IN",balloonText:"'.__('c-in','wp-slimstat').': 0",value:0,color:"#ededed"}','id'=>'{id:"ID",balloonText:"'.__('c-id','wp-slimstat').': 0",value:0,color:"#ededed"}','ir'=>'{id:"IR",balloonText:"'.__('c-ir','wp-slimstat').': 0",value:0,color:"#ededed"}','iq'=>'{id:"IQ",balloonText:"'.__('c-iq','wp-slimstat').': 0",value:0,color:"#ededed"}','ie'=>'{id:"IE",balloonText:"'.__('c-ie','wp-slimstat').': 0",value:0,color:"#ededed"}','il'=>'{id:"IL",balloonText:"'.__('c-il','wp-slimstat').': 0",value:0,color:"#ededed"}','it'=>'{id:"IT",balloonText:"'.__('c-it','wp-slimstat').': 0",value:0,color:"#ededed"}','jm'=>'{id:"JM",balloonText:"'.__('c-jm','wp-slimstat').': 0",value:0,color:"#ededed"}','jp'=>'{id:"JP",balloonText:"'.__('c-jp','wp-slimstat').': 0",value:0,color:"#ededed"}','jo'=>'{id:"JO",balloonText:"'.__('c-jo','wp-slimstat').': 0",value:0,color:"#ededed"}','kz'=>'{id:"KZ",balloonText:"'.__('c-kz','wp-slimstat').': 0",value:0,color:"#ededed"}','ke'=>'{id:"KE",balloonText:"'.__('c-ke','wp-slimstat').': 0",value:0,color:"#ededed"}','nr'=>'{id:"NR",balloonText:"'.__('c-nr','wp-slimstat').': 0",value:0,color:"#ededed"}','kp'=>'{id:"KP",balloonText:"'.__('c-kp','wp-slimstat').': 0",value:0,color:"#ededed"}','kr'=>'{id:"KR",balloonText:"'.__('c-kr','wp-slimstat').': 0",value:0,color:"#ededed"}','kv'=>'{id:"KV",balloonText:"'.__('c-kv','wp-slimstat').': 0",value:0,color:"#ededed"}','kw'=>'{id:"KW",balloonText:"'.__('c-kw','wp-slimstat').': 0",value:0,color:"#ededed"}','kg'=>'{id:"KG",balloonText:"'.__('c-kg','wp-slimstat').': 0",value:0,color:"#ededed"}','la'=>'{id:"LA",balloonText:"'.__('c-la','wp-slimstat').': 0",value:0,color:"#ededed"}','lv'=>'{id:"LV",balloonText:"'.__('c-lv','wp-slimstat').': 0",value:0,color:"#ededed"}','lb'=>'{id:"LB",balloonText:"'.__('c-lb','wp-slimstat').': 0",value:0,color:"#ededed"}','ls'=>'{id:"LS",balloonText:"'.__('c-ls','wp-slimstat').': 0",value:0,color:"#ededed"}','lr'=>'{id:"LR",balloonText:"'.__('c-lr','wp-slimstat').': 0",value:0,color:"#ededed"}','ly'=>'{id:"LY",balloonText:"'.__('c-ly','wp-slimstat').': 0",value:0,color:"#ededed"}','li'=>'{id:"LI",balloonText:"'.__('c-li','wp-slimstat').': 0",value:0,color:"#ededed"}','lt'=>'{id:"LT",balloonText:"'.__('c-lt','wp-slimstat').': 0",value:0,color:"#ededed"}','lu'=>'{id:"LU",balloonText:"'.__('c-lu','wp-slimstat').': 0",value:0,color:"#ededed"}','mk'=>'{id:"MK",balloonText:"'.__('c-mk','wp-slimstat').': 0",value:0,color:"#ededed"}','mg'=>'{id:"MG",balloonText:"'.__('c-mg','wp-slimstat').': 0",value:0,color:"#ededed"}','mw'=>'{id:"MW",balloonText:"'.__('c-mw','wp-slimstat').': 0",value:0,color:"#ededed"}','my'=>'{id:"MY",balloonText:"'.__('c-my','wp-slimstat').': 0",value:0,color:"#ededed"}','ml'=>'{id:"ML",balloonText:"'.__('c-ml','wp-slimstat').': 0",value:0,color:"#ededed"}','mt'=>'{id:"MT",balloonText:"'.__('c-mt','wp-slimstat').': 0",value:0,color:"#ededed"}','mq'=>'{id:"MQ",balloonText:"'.__('c-mq','wp-slimstat').': 0",value:0,color:"#ededed"}','mr'=>'{id:"MR",balloonText:"'.__('c-mr','wp-slimstat').': 0",value:0,color:"#ededed"}','mu'=>'{id:"MU",balloonText:"'.__('c-mu','wp-slimstat').': 0",value:0,color:"#ededed"}','mx'=>'{id:"MX",balloonText:"'.__('c-mx','wp-slimstat').': 0",value:0,color:"#ededed"}','md'=>'{id:"MD",balloonText:"'.__('c-md','wp-slimstat').': 0",value:0,color:"#ededed"}','mn'=>'{id:"MN",balloonText:"'.__('c-mn','wp-slimstat').': 0",value:0,color:"#ededed"}','me'=>'{id:"ME",balloonText:"'.__('c-me','wp-slimstat').': 0",value:0,color:"#ededed"}','ms'=>'{id:"MS",balloonText:"'.__('c-ms','wp-slimstat').': 0",value:0,color:"#ededed"}','ma'=>'{id:"MA",balloonText:"'.__('c-ma','wp-slimstat').': 0",value:0,color:"#ededed"}','mz'=>'{id:"MZ",balloonText:"'.__('c-mz','wp-slimstat').': 0",value:0,color:"#ededed"}','mm'=>'{id:"MM",balloonText:"'.__('c-mm','wp-slimstat').': 0",value:0,color:"#ededed"}','na'=>'{id:"NA",balloonText:"'.__('c-na','wp-slimstat').': 0",value:0,color:"#ededed"}','np'=>'{id:"NP",balloonText:"'.__('c-np','wp-slimstat').': 0",value:0,color:"#ededed"}','nl'=>'{id:"NL",balloonText:"'.__('c-nl','wp-slimstat').': 0",value:0,color:"#ededed"}','nc'=>'{id:"NC",balloonText:"'.__('c-nc','wp-slimstat').': 0",value:0,color:"#ededed"}','nz'=>'{id:"NZ",balloonText:"'.__('c-nz','wp-slimstat').': 0",value:0,color:"#ededed"}','ni'=>'{id:"NI",balloonText:"'.__('c-ni','wp-slimstat').': 0",value:0,color:"#ededed"}','ne'=>'{id:"NE",balloonText:"'.__('c-ne','wp-slimstat').': 0",value:0,color:"#ededed"}','ng'=>'{id:"NG",balloonText:"'.__('c-ng','wp-slimstat').': 0",value:0,color:"#ededed"}','no'=>'{id:"NO",balloonText:"'.__('c-no','wp-slimstat').': 0",value:0,color:"#ededed"}','om'=>'{id:"OM",balloonText:"'.__('c-om','wp-slimstat').': 0",value:0,color:"#ededed"}','pk'=>'{id:"PK",balloonText:"'.__('c-pk','wp-slimstat').': 0",value:0,color:"#ededed"}','pw'=>'{id:"PW",balloonText:"'.__('c-pw','wp-slimstat').': 0",value:0,color:"#ededed"}','ps'=>'{id:"PS",balloonText:"'.__('c-ps','wp-slimstat').': 0",value:0,color:"#ededed"}','pa'=>'{id:"PA",balloonText:"'.__('c-pa','wp-slimstat').': 0",value:0,color:"#ededed"}','pg'=>'{id:"PG",balloonText:"'.__('c-pg','wp-slimstat').': 0",value:0,color:"#ededed"}','py'=>'{id:"PY",balloonText:"'.__('c-py','wp-slimstat').': 0",value:0,color:"#ededed"}','pe'=>'{id:"PE",balloonText:"'.__('c-pe','wp-slimstat').': 0",value:0,color:"#ededed"}','ph'=>'{id:"PH",balloonText:"'.__('c-ph','wp-slimstat').': 0",value:0,color:"#ededed"}','pl'=>'{id:"PL",balloonText:"'.__('c-pl','wp-slimstat').': 0",value:0,color:"#ededed"}','pt'=>'{id:"PT",balloonText:"'.__('c-pt','wp-slimstat').': 0",value:0,color:"#ededed"}','pr'=>'{id:"PR",balloonText:"'.__('c-pr','wp-slimstat').': 0",value:0,color:"#ededed"}','qa'=>'{id:"QA",balloonText:"'.__('c-qa','wp-slimstat').': 0",value:0,color:"#ededed"}','re'=>'{id:"RE",balloonText:"'.__('c-re','wp-slimstat').': 0",value:0,color:"#ededed"}','ro'=>'{id:"RO",balloonText:"'.__('c-ro','wp-slimstat').': 0",value:0,color:"#ededed"}','ru'=>'{id:"RU",balloonText:"'.__('c-ru','wp-slimstat').': 0",value:0,color:"#ededed"}','rw'=>'{id:"RW",balloonText:"'.__('c-rw','wp-slimstat').': 0",value:0,color:"#ededed"}','kn'=>'{id:"KN",balloonText:"'.__('c-kn','wp-slimstat').': 0",value:0,color:"#ededed"}','lc'=>'{id:"LC",balloonText:"'.__('c-lc','wp-slimstat').': 0",value:0,color:"#ededed"}','mf'=>'{id:"MF",balloonText:"'.__('c-mf','wp-slimstat').': 0",value:0,color:"#ededed"}','vc'=>'{id:"VC",balloonText:"'.__('c-vc','wp-slimstat').': 0",value:0,color:"#ededed"}','ws'=>'{id:"WS",balloonText:"'.__('c-ws','wp-slimstat').': 0",value:0,color:"#ededed"}','st'=>'{id:"ST",balloonText:"'.__('c-st','wp-slimstat').': 0",value:0,color:"#ededed"}','sa'=>'{id:"SA",balloonText:"'.__('c-sa','wp-slimstat').': 0",value:0,color:"#ededed"}','sn'=>'{id:"SN",balloonText:"'.__('c-sn','wp-slimstat').': 0",value:0,color:"#ededed"}','rs'=>'{id:"RS",balloonText:"'.__('c-rs','wp-slimstat').': 0",value:0,color:"#ededed"}','sl'=>'{id:"SL",balloonText:"'.__('c-sl','wp-slimstat').': 0",value:0,color:"#ededed"}','sg'=>'{id:"SG",balloonText:"'.__('c-sg','wp-slimstat').': 0",value:0,color:"#ededed"}','sk'=>'{id:"SK",balloonText:"'.__('c-sk','wp-slimstat').': 0",value:0,color:"#ededed"}','si'=>'{id:"SI",balloonText:"'.__('c-si','wp-slimstat').': 0",value:0,color:"#ededed"}','sb'=>'{id:"SB",balloonText:"'.__('c-sb','wp-slimstat').': 0",value:0,color:"#ededed"}','so'=>'{id:"SO",balloonText:"'.__('c-so','wp-slimstat').': 0",value:0,color:"#ededed"}','za'=>'{id:"ZA",balloonText:"'.__('c-za','wp-slimstat').': 0",value:0,color:"#ededed"}','gs'=>'{id:"GS",balloonText:"'.__('c-gs','wp-slimstat').': 0",value:0,color:"#ededed"}','es'=>'{id:"ES",balloonText:"'.__('c-es','wp-slimstat').': 0",value:0,color:"#ededed"}','lk'=>'{id:"LK",balloonText:"'.__('c-lk','wp-slimstat').': 0",value:0,color:"#ededed"}','sc'=>'{id:"SC",balloonText:"'.__('c-sc','wp-slimstat').': 0",value:0,color:"#ededed"}','sd'=>'{id:"SD",balloonText:"'.__('c-sd','wp-slimstat').': 0",value:0,color:"#ededed"}','ss'=>'{id:"SS",balloonText:"'.__('c-ss','wp-slimstat').': 0",value:0,color:"#ededed"}','sr'=>'{id:"SR",balloonText:"'.__('c-sr','wp-slimstat').': 0",value:0,color:"#ededed"}','sj'=>'{id:"SJ",balloonText:"'.__('c-sj','wp-slimstat').': 0",value:0,color:"#ededed"}','sz'=>'{id:"SZ",balloonText:"'.__('c-sz','wp-slimstat').': 0",value:0,color:"#ededed"}','se'=>'{id:"SE",balloonText:"'.__('c-se','wp-slimstat').': 0",value:0,color:"#ededed"}','ch'=>'{id:"CH",balloonText:"'.__('c-ch','wp-slimstat').': 0",value:0,color:"#ededed"}','sy'=>'{id:"SY",balloonText:"'.__('c-sy','wp-slimstat').': 0",value:0,color:"#ededed"}','tw'=>'{id:"TW",balloonText:"'.__('c-tw','wp-slimstat').': 0",value:0,color:"#ededed"}','tj'=>'{id:"TJ",balloonText:"'.__('c-tj','wp-slimstat').': 0",value:0,color:"#ededed"}','tz'=>'{id:"TZ",balloonText:"'.__('c-tz','wp-slimstat').': 0",value:0,color:"#ededed"}','th'=>'{id:"TH",balloonText:"'.__('c-th','wp-slimstat').': 0",value:0,color:"#ededed"}','tl'=>'{id:"TL",balloonText:"'.__('c-tl','wp-slimstat').': 0",value:0,color:"#ededed"}','tg'=>'{id:"TG",balloonText:"'.__('c-tg','wp-slimstat').': 0",value:0,color:"#ededed"}','to'=>'{id:"TO",balloonText:"'.__('c-to','wp-slimstat').': 0",value:0,color:"#ededed"}','tt'=>'{id:"TT",balloonText:"'.__('c-tt','wp-slimstat').': 0",value:0,color:"#ededed"}','tn'=>'{id:"TN",balloonText:"'.__('c-tn','wp-slimstat').': 0",value:0,color:"#ededed"}','tr'=>'{id:"TR",balloonText:"'.__('c-tr','wp-slimstat').': 0",value:0,color:"#ededed"}','tm'=>'{id:"TM",balloonText:"'.__('c-tm','wp-slimstat').': 0",value:0,color:"#ededed"}','tc'=>'{id:"TC",balloonText:"'.__('c-tc','wp-slimstat').': 0",value:0,color:"#ededed"}','ug'=>'{id:"UG",balloonText:"'.__('c-ug','wp-slimstat').': 0",value:0,color:"#ededed"}','ua'=>'{id:"UA",balloonText:"'.__('c-ua','wp-slimstat').': 0",value:0,color:"#ededed"}','ae'=>'{id:"AE",balloonText:"'.__('c-ae','wp-slimstat').': 0",value:0,color:"#ededed"}','gb'=>'{id:"GB",balloonText:"'.__('c-gb','wp-slimstat').': 0",value:0,color:"#ededed"}','us'=>'{id:"US",balloonText:"'.__('c-us','wp-slimstat').': 0",value:0,color:"#ededed"}','uy'=>'{id:"UY",balloonText:"'.__('c-uy','wp-slimstat').': 0",value:0,color:"#ededed"}','uz'=>'{id:"UZ",balloonText:"'.__('c-uz','wp-slimstat').': 0",value:0,color:"#ededed"}','vu'=>'{id:"VU",balloonText:"'.__('c-vu','wp-slimstat').': 0",value:0,color:"#ededed"}','ve'=>'{id:"VE",balloonText:"'.__('c-ve','wp-slimstat').': 0",value:0,color:"#ededed"}','vn'=>'{id:"VN",balloonText:"'.__('c-vn','wp-slimstat').': 0",value:0,color:"#ededed"}','vg'=>'{id:"VG",balloonText:"'.__('c-vg','wp-slimstat').': 0",value:0,color:"#ededed"}','vi'=>'{id:"VI",balloonText:"'.__('c-vi','wp-slimstat').': 0",value:0,color:"#ededed"}','eh'=>'{id:"EH",balloonText:"'.__('c-eh','wp-slimstat').': 0",value:0,color:"#ededed"}','ye'=>'{id:"YE",balloonText:"'.__('c-ye','wp-slimstat').': 0",value:0,color:"#ededed"}','zm'=>'{id:"ZM",balloonText:"'.__('c-zm','wp-slimstat').': 0",value:0,color:"#ededed"}','zw'=>'{id:"ZW",balloonText:"'.__('c-zw','wp-slimstat').': 0",value:0,color:"#ededed"}','gg'=>'{id:"GG",balloonText:"'.__('c-gg','wp-slimstat').': 0",value:0,color:"#ededed"}','je'=>'{id:"JE",balloonText:"'.__('c-je','wp-slimstat').': 0",value:0,color:"#ededed"}','im'=>'{id:"IM",balloonText:"'.__('c-im','wp-slimstat').': 0",value:0,color:"#ededed"}','mv'=>'{id:"MV",balloonText:"'.__('c-mv','wp-slimstat').': 0",value:0,color:"#ededed"}');
1802
  public static function get_search_terms_info($_searchterms = '', $_referer = '', $_serp_only = false){
1803
  $query_details = '';
1804
  $search_terms_info = '';
1805
+ parse_str( $_referer, $query_parse_str );
 
 
 
 
 
1806
 
1807
+ if ( !empty( $query_parse_str[ 'source' ] ) && !$_serp_only ) {
1808
+ $query_details = __( 'src', 'wp-slimstat' ) . ": {$query_parse_str[ 'source' ]}";
1809
  }
1810
+
1811
+ if ( !empty( $query_parse_str[ 'cd' ] ) ) {
1812
+ $query_details = __( 'serp', 'wp-slimstat') . ": {$query_parse_str[ 'cd' ]}";
1813
  }
1814
+
1815
+ if ( !empty( $query_details ) ) {
1816
  $query_details = "($query_details)";
1817
  }
1818
 
1819
+ if ( !empty( $_searchterms ) && $_searchterms != '_' ) {
1820
  $search_terms_info = '<a class="slimstat-font-logout" target="_blank" title="' . htmlentities( __( 'Go to the referring page', 'wp-slimstat' ), ENT_QUOTES, 'UTF-8' ) . '" href="' . $_referer . '"></a>' . htmlentities( $_searchterms, ENT_QUOTES, 'UTF-8' );
1821
  $search_terms_info = "$search_terms_info $query_details";
1822
  }
1863
  if ( empty( $_REQUEST[ 'page' ] ) ) {
1864
  $request_uri = str_replace( 'index.php', 'admin.php', $request_uri );
1865
  }
1866
+ else if ( array_key_exists( $_REQUEST[ 'page' ], wp_slimstat_admin::$screens_info ) ) {
1867
  $request_page = $_REQUEST[ 'page' ];
1868
  }
1869
  else {
admin/wp-slimstat-admin.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
 
3
  class wp_slimstat_admin {
 
4
  public static $config_url = '';
5
  public static $faulty_fields = array();
6
 
@@ -11,8 +12,7 @@ class wp_slimstat_admin {
11
  */
12
  public static function init(){
13
  if ( ( wp_slimstat::$options['enable_ads_network'] == 'yes' || wp_slimstat::$options['enable_ads_network'] == 'no' ) ) {
14
- self::$admin_notice = "2015 was a year full of exciting milestones and news for our plugin: more than 1.8 million downloads, 617 reviews with an average of 4.8 out of 5 stars, a major version release which brought a much needed denormalized data structure, a brand new javascript tracker, 1200 support tickets resolved, even <a style='font-weight:bold' href='https://www.youtube.com/watch?v=rxubKKLxhNE' target='_blank'>a YouTube video</a> talking about the security vulnerability that was patched last February. We look forward to improving our plugin even further during this new year that just started, as a way to celebrate Slimstat's 10th birthday (this April) in the best way possible. Thank you for being part of this incredible adventure!";
15
- // "We rewrote the heuristic algorithm decoding the user agent string (to determine the corresponding browser name, version, etc) from scratch. Also, we introduced a new option (under Settings > Tracker) to allow you to choose the detection logic to be used first: 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 {
@@ -66,9 +66,6 @@ class wp_slimstat_admin {
66
  </div>";
67
  }
68
 
69
- // Settings URL
70
- self::$config_url = 'admin.php?page=wp-slim-config&amp;tab=';
71
-
72
  // Load language files
73
  load_plugin_textdomain( 'wp-slimstat', WP_PLUGIN_DIR .'/wp-slimstat/languages', '/wp-slimstat/languages' );
74
 
@@ -77,6 +74,74 @@ class wp_slimstat_admin {
77
  load_textdomain( 'wp-slimstat', WP_PLUGIN_DIR .'/wp-slimstat/languages/wp-slimstat-en_US.mo' );
78
  }
79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  // WPMU - New blog created
81
  $active_sitewide_plugins = get_site_option('active_sitewide_plugins');
82
  if (!empty($active_sitewide_plugins['wp-slimstat/wp-slimstat.php'])){
@@ -99,6 +164,11 @@ class wp_slimstat_admin {
99
  add_action('transition_comment_status', array(__CLASS__, 'remove_spam'), 15, 3);
100
  }
101
 
 
 
 
 
 
102
  if (function_exists('is_network_admin') && !is_network_admin()){
103
  // Add the appropriate entries to the admin menu, if this user can view/admin WP SlimStats
104
  add_action('admin_menu', array(__CLASS__, 'wp_slimstat_add_view_menu'));
@@ -469,41 +539,33 @@ class wp_slimstat_admin {
469
  /**
470
  * Adds a new entry in the admin menu, to view the stats
471
  */
472
- public static function wp_slimstat_add_view_menu($_s){
473
- wp_slimstat::$options['capability_can_view'] = empty(wp_slimstat::$options['capability_can_view'])?'read':wp_slimstat::$options['capability_can_view'];
474
-
475
  // If this user is whitelisted, we use the minimum capability
476
  $minimum_capability = 'read';
477
  if (strpos(wp_slimstat::$options['can_view'], $GLOBALS['current_user']->user_login) === false){
478
  $minimum_capability = wp_slimstat::$options['capability_can_view'];
479
  }
480
 
 
 
481
  $new_entry = array();
482
- if (wp_slimstat::$options['use_separate_menu'] == 'yes'){
483
- $new_entry[] = add_menu_page(__('SlimStat','wp-slimstat'), __('SlimStat','wp-slimstat'), $minimum_capability, 'slimview1', array(__CLASS__, 'wp_slimstat_include_view'));
484
- $new_entry[] = add_submenu_page('slimview1', __('Access Log','wp-slimstat'), __('Access Log','wp-slimstat'), $minimum_capability, 'slimview1', array(__CLASS__, 'wp_slimstat_include_view'));
485
- $new_entry[] = add_submenu_page('slimview1', __('Overview','wp-slimstat'), __('Overview','wp-slimstat'), $minimum_capability, 'slimview2', array(__CLASS__, 'wp_slimstat_include_view'));
486
- $new_entry[] = add_submenu_page('slimview1', __('Audience','wp-slimstat'), __('Audience','wp-slimstat'), $minimum_capability, 'slimview3', array(__CLASS__, 'wp_slimstat_include_view'));
487
- $new_entry[] = add_submenu_page('slimview1', __('Site Analysis','wp-slimstat'), __('Site Analysis','wp-slimstat'), $minimum_capability, 'slimview4', array(__CLASS__, 'wp_slimstat_include_view'));
488
- $new_entry[] = add_submenu_page('slimview1', __('Traffic Sources','wp-slimstat'), __('Traffic Sources','wp-slimstat'), $minimum_capability, 'slimview5', array(__CLASS__, 'wp_slimstat_include_view'));
489
- $new_entry[] = add_submenu_page('slimview1', __('Geolocation','wp-slimstat'), __('Geolocation','wp-slimstat'), $minimum_capability, 'slimview6', array(__CLASS__, 'wp_slimstat_include_view'));
490
- $new_entry[] = add_submenu_page('slimview1', __('Customize','wp-slimstat'), __('Customize','wp-slimstat'), $minimum_capability, 'slimlayout', array(__CLASS__, 'wp_slimstat_include_layout'));
491
- $new_entry[] = add_submenu_page('slimview1', __('Add-ons','wp-slimstat'), __('Add-ons','wp-slimstat'), $minimum_capability, 'slimaddons', array(__CLASS__, 'wp_slimstat_include_addons'));
492
  }
493
- else{
494
- $new_entry[] = add_submenu_page('admin.php', __('SlimStat','wp-slimstat'), __('SlimStat','wp-slimstat'), $minimum_capability, 'slimview1', array(__CLASS__, 'wp_slimstat_include_view'));
495
- if (!is_admin_bar_showing()){
496
- $new_entry[] = add_submenu_page('index.php', __('SlimStat','wp-slimstat'), __('SlimStat','wp-slimstat'), $minimum_capability, 'slimview1', array(__CLASS__, 'wp_slimstat_include_view'));
497
- }
 
 
498
 
499
- // Let's tell WordPress that these page exist, without showing them
500
- $new_entry[] = add_submenu_page('admin.php', __('Overview','wp-slimstat'), __('Overview','wp-slimstat'), $minimum_capability, 'slimview2', array(__CLASS__, 'wp_slimstat_include_view'));
501
- $new_entry[] = add_submenu_page('admin.php', __('Audience','wp-slimstat'), __('Audience','wp-slimstat'), $minimum_capability, 'slimview3', array(__CLASS__, 'wp_slimstat_include_view'));
502
- $new_entry[] = add_submenu_page('admin.php', __('Site Analysis','wp-slimstat'), __('Site Analysis','wp-slimstat'), $minimum_capability, 'slimview4', array(__CLASS__, 'wp_slimstat_include_view'));
503
- $new_entry[] = add_submenu_page('admin.php', __('Traffic Sources','wp-slimstat'), __('Traffic Sources','wp-slimstat'), $minimum_capability, 'slimview5', array(__CLASS__, 'wp_slimstat_include_view'));
504
- $new_entry[] = add_submenu_page('admin.php', __('Geolocation','wp-slimstat'), __('Geolocation','wp-slimstat'), $minimum_capability, 'slimview6', array(__CLASS__, 'wp_slimstat_include_view'));
505
- $new_entry[] = add_submenu_page('admin.php', __('Customize','wp-slimstat'), __('Customize','wp-slimstat'), $minimum_capability, 'slimlayout', array(__CLASS__, 'wp_slimstat_include_layout'));
506
- $new_entry[] = add_submenu_page('admin.php', __('Add-ons','wp-slimstat'), __('Add-ons','wp-slimstat'), $minimum_capability, 'slimaddons', array(__CLASS__, 'wp_slimstat_include_addons'));
507
  }
508
 
509
  // Load styles and Javascript needed to make the reports look nice and interactive
@@ -517,6 +579,58 @@ class wp_slimstat_admin {
517
  }
518
  // end wp_slimstat_add_view_menu
519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
520
  /**
521
  * Adds a new entry in the admin menu, to manage SlimStat options
522
  */
1
  <?php
2
 
3
  class wp_slimstat_admin {
4
+ public static $screens_info = array();
5
  public static $config_url = '';
6
  public static $faulty_fields = array();
7
 
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 {
66
  </div>";
67
  }
68
 
 
 
 
69
  // Load language files
70
  load_plugin_textdomain( 'wp-slimstat', WP_PLUGIN_DIR .'/wp-slimstat/languages', '/wp-slimstat/languages' );
71
 
74
  load_textdomain( 'wp-slimstat', WP_PLUGIN_DIR .'/wp-slimstat/languages/wp-slimstat-en_US.mo' );
75
  }
76
 
77
+ // Define the default screens
78
+ self::$screens_info = array(
79
+ 'slimview1' => array(
80
+ 'is_report_group' => false,
81
+ 'show_in_sidebar' => true,
82
+ 'title' => __( 'Access Log', 'wp-slimstat' ),
83
+ 'callback' => array( __CLASS__, 'wp_slimstat_include_view' )
84
+ ),
85
+ 'slimview2' => array(
86
+ 'is_report_group' => true,
87
+ 'show_in_sidebar' => true,
88
+ 'title' => __( 'Overview', 'wp-slimstat' ),
89
+ 'callback' => array( __CLASS__, 'wp_slimstat_include_view' )
90
+ ),
91
+ 'slimview3' => array(
92
+ 'is_report_group' => true,
93
+ 'show_in_sidebar' => true,
94
+ 'title' => __( 'Audience', 'wp-slimstat' ),
95
+ 'callback' => array( __CLASS__, 'wp_slimstat_include_view' )
96
+ ),
97
+ 'slimview4' => array(
98
+ 'is_report_group' => true,
99
+ 'show_in_sidebar' => true,
100
+ 'title' => __( 'Site Analysis', 'wp-slimstat' ),
101
+ 'callback' => array( __CLASS__, 'wp_slimstat_include_view' )
102
+ ),
103
+ 'slimview5' => array(
104
+ 'is_report_group' => true,
105
+ 'show_in_sidebar' => true,
106
+ 'title' => __( 'Traffic Sources', 'wp-slimstat' ),
107
+ 'callback' => array( __CLASS__, 'wp_slimstat_include_view' )
108
+ ),
109
+ 'slimview6' => array(
110
+ 'is_report_group' => true,
111
+ 'show_in_sidebar' => true,
112
+ 'title' => __( 'Geolocation', 'wp-slimstat' ),
113
+ 'callback' => array( __CLASS__, 'wp_slimstat_include_view' )
114
+ ),
115
+ 'slimlayout' => array(
116
+ 'is_report_group' => false,
117
+ 'show_in_sidebar' => true,
118
+ 'title' => __( 'Customize', 'wp-slimstat' ),
119
+ 'callback' => array( __CLASS__, 'wp_slimstat_include_layout' )
120
+ ),
121
+ 'slimaddons' => array(
122
+ 'is_report_group' => false,
123
+ 'show_in_sidebar' => true,
124
+ 'title' => __( 'Add-ons', 'wp-slimstat' ),
125
+ 'callback' => array( __CLASS__, 'wp_slimstat_include_addons' )
126
+ ),
127
+ 'dashboard' => array(
128
+ 'is_report_group' => true,
129
+ 'show_in_sidebar' => false,
130
+ 'title' => __( 'WordPress Dashboard', 'wp-slimstat' ),
131
+ 'callback' => '' // No callback if show_in_sidebar is false
132
+ ),
133
+ 'inactive' => array(
134
+ 'is_report_group' => true,
135
+ 'show_in_sidebar' => false,
136
+ 'title' => __( 'Inactive Reports'),
137
+ 'callback' => '' // No callback if show_in_sidebar is false
138
+ )
139
+ );
140
+ self::$screens_info = apply_filters( 'slimstat_screens_info', self::$screens_info );
141
+
142
+ // Settings URL
143
+ self::$config_url = 'admin.php?page=wp-slim-config&amp;tab=';
144
+
145
  // WPMU - New blog created
146
  $active_sitewide_plugins = get_site_option('active_sitewide_plugins');
147
  if (!empty($active_sitewide_plugins['wp-slimstat/wp-slimstat.php'])){
164
  add_action('transition_comment_status', array(__CLASS__, 'remove_spam'), 15, 3);
165
  }
166
 
167
+ // Add a menu to the admin bar ( this function is declared here and not in wp_slimstat_admin because the latter is only initialized if is_admin(), and not in the front-end )
168
+ if ( wp_slimstat::$options[ 'use_separate_menu' ] != 'yes' && is_admin_bar_showing() ) {
169
+ add_action( 'admin_bar_menu', array( __CLASS__, 'wp_slimstat_adminbar' ), 100 );
170
+ }
171
+
172
  if (function_exists('is_network_admin') && !is_network_admin()){
173
  // Add the appropriate entries to the admin menu, if this user can view/admin WP SlimStats
174
  add_action('admin_menu', array(__CLASS__, 'wp_slimstat_add_view_menu'));
539
  /**
540
  * Adds a new entry in the admin menu, to view the stats
541
  */
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' ) );
 
 
 
 
 
 
556
  }
557
+ else {
558
+ $parent = 'admin.php';
559
+ $page_location = 'admin';
560
+ }
561
+
562
+ $current_user = wp_get_current_user();
563
+ $user_reports = get_user_option( "meta-box-order_{$page_location}_page_slimlayout", $current_user->ID );
564
 
565
+ foreach ( self::$screens_info as $a_screen_id => $a_screen_info ) {
566
+ if ( $a_screen_info[ 'show_in_sidebar' ] && ( !is_array( $user_reports ) || !empty( $user_reports[ $a_screen_id ] ) || !$a_screen_info[ 'is_report_group' ] ) ) {
567
+ $new_entry[] = add_submenu_page( $parent, $a_screen_info[ 'title' ], $a_screen_info[ 'title' ], $minimum_capability, $a_screen_id, $a_screen_info[ 'callback' ] );
568
+ }
 
 
 
 
569
  }
570
 
571
  // Load styles and Javascript needed to make the reports look nice and interactive
579
  }
580
  // end wp_slimstat_add_view_menu
581
 
582
+ /**
583
+ * Adds a new entry to the Wordpress Toolbar
584
+ */
585
+ public static function wp_slimstat_adminbar(){
586
+ // If this user is whitelisted, we use the minimum capability
587
+ $minimum_capability_view = 'read';
588
+ if ( strpos( wp_slimstat::$options[ 'can_view' ], $GLOBALS[ 'current_user' ]->user_login) === false ) {
589
+ $minimum_capability_view = wp_slimstat::$options[ 'capability_can_view' ];
590
+ }
591
+
592
+ // If this user is whitelisted, we use the minimum capability
593
+ $minimum_capability_config = 'read';
594
+ if ( ( strpos( wp_slimstat::$options[ 'can_admin' ], $GLOBALS[ 'current_user' ]->user_login ) === false) && $GLOBALS[ 'current_user' ]->user_login != 'slimstatadmin' ) {
595
+ $minimum_capability_config = wp_slimstat::$options[ 'capability_can_admin' ];
596
+ }
597
+
598
+ if ( ( function_exists( 'is_network_admin' ) && is_network_admin() ) || !is_user_logged_in() || !current_user_can( $minimum_capability_view ) ) {
599
+ return;
600
+ }
601
+
602
+ wp_slimstat::$options['capability_can_view'] = empty(wp_slimstat::$options['capability_can_view'])?'read':wp_slimstat::$options['capability_can_view'];
603
+
604
+ if (empty(wp_slimstat::$options['can_view']) || strpos(wp_slimstat::$options['can_view'], $GLOBALS['current_user']->user_login) !== false || current_user_can('manage_options')){
605
+ $slimstat_view_url = get_admin_url($GLOBALS['blog_id'], "admin.php?page=");
606
+ $slimstat_config_url = get_admin_url($GLOBALS['blog_id'], "admin.php?page=wp-slim-config");
607
+
608
+ $page_location = ( wp_slimstat::$options[ 'use_separate_menu' ] == 'yes' ) ? 'slimstat' : 'admin';
609
+ $user_reports = get_user_option( "meta-box-order_{$page_location}_page_slimlayout", $GLOBALS[ 'current_user' ]->ID );
610
+
611
+ $GLOBALS[ 'wp_admin_bar' ]->add_menu( array(
612
+ 'id' => 'slimstat-header',
613
+ 'title' => __( 'Slimstat', 'wp-slimstat' ),
614
+ 'href' => "{$slimstat_view_url}slimview1"
615
+ ) );
616
+
617
+ foreach ( self::$screens_info as $a_screen_id => $a_screen_info ) {
618
+ if ( $a_screen_info[ 'show_in_sidebar' ] && ( !is_array( $user_reports ) || !empty( $user_reports[ $a_screen_id ] ) || !$a_screen_info[ 'is_report_group' ] ) ) {
619
+ $GLOBALS[ 'wp_admin_bar' ]->add_menu( array(
620
+ 'id' => $a_screen_id,
621
+ 'href' => "{$slimstat_view_url}$a_screen_id",
622
+ 'parent' => 'slimstat-header',
623
+ 'title' => $a_screen_info[ 'title' ]
624
+ ) );
625
+ }
626
+ }
627
+
628
+ if ( ( empty( wp_slimstat::$options[ 'can_admin' ] ) || strpos( wp_slimstat::$options[ 'can_admin' ], $GLOBALS[ 'current_user' ]->user_login ) !== false || $GLOBALS[ 'current_user' ]->user_login == 'slimstatadmin' ) && current_user_can( $minimum_capability_config ) ) {
629
+ $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-config', 'href' => $slimstat_config_url, 'parent' => 'slimstat-header', 'title' => __('Settings', 'wp-slimstat')));
630
+ }
631
+ }
632
+ }
633
+
634
  /**
635
  * Adds a new entry in the admin menu, to manage SlimStat options
636
  */
languages/wp-slimstat-sv_SE.mo CHANGED
Binary file
languages/wp-slimstat-sv_SE.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:11-0500\n"
6
- "PO-Revision-Date: 2015-12-24 09:11-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: camu <info@duechiacchiere.it>\n"
9
  "Language: sv\n"
@@ -108,7 +108,7 @@ msgid ""
108
  "Do not add the javascript tracking code to your pages, if tracking mode is "
109
  "set to Server. Please note: if enabled, this will prevent the tracker from "
110
  "collecting information such as screen resolution, outbound links, downloads, "
111
- "etc. This option is ignored is Tracking Mode is set to Client."
112
  msgstr ""
113
  "Lägg inte till JavaScript spårningskod på dina sidor, om spårningsläget är "
114
  "inställt på servern. Observera: om den är aktiverad, kommer detta att "
@@ -116,7 +116,7 @@ msgstr ""
116
  "utgående länkar, nedladdningar, etc. Det här alternativet ignoreras spårar "
117
  "Läge är inställt på klienten."
118
 
119
- #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1359
120
  msgid "Off"
121
  msgstr "Av"
122
 
@@ -216,19 +216,19 @@ msgstr ""
216
  "bara en träff per användare i det givna tidsintervallet."
217
 
218
  # @ wp-slimstat
219
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:100
220
- #: ../admin/view/wp-slimstat-reports.php:109
221
- #: ../admin/view/wp-slimstat-reports.php:1375
222
- #: ../admin/view/wp-slimstat-reports.php:1533
223
  msgid "Pageviews"
224
  msgstr "Sidvisningar"
225
 
226
  # @ wp-slimstat
227
- #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:110
228
- #: ../admin/view/wp-slimstat-reports.php:286
229
- #: ../admin/view/wp-slimstat-reports.php:526
230
- #: ../admin/view/wp-slimstat-reports.php:1390
231
- #: ../admin/view/wp-slimstat-reports.php:1435
232
  msgid "Unique IPs"
233
  msgstr "Unika IP-adresser"
234
 
@@ -295,7 +295,7 @@ msgstr "Inlägg inloggade på eller före %s kommer att tas bort permanent."
295
  # @ wp-slimstat
296
  #: ../admin/config/index.php:126 ../admin/view/index.php:102
297
  #: ../admin/view/wp-slimstat-db.php:79
298
- #: ../admin/view/wp-slimstat-reports.php:1359
299
  msgid "days"
300
  msgstr "Dagar"
301
 
@@ -341,7 +341,7 @@ msgstr ""
341
  "1800 sekunder som minsta tid."
342
 
343
  # @ wp-slimstat
344
- #: ../admin/config/index.php:135 ../admin/config/index.php:205
345
  msgid "seconds"
346
  msgstr "Sekunder"
347
 
@@ -357,11 +357,45 @@ msgstr "Förlänga en session varje gång användaren besöker en ny sida."
357
 
358
  # @ wp-slimstat
359
  #: ../admin/config/index.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
360
  msgid "Enable CDN"
361
  msgstr "Aktivera CDN"
362
 
363
  # @ wp-slimstat
364
- #: ../admin/config/index.php:137
365
  msgid ""
366
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
367
  "by serving our tracking code from their fast and reliable network (free "
@@ -372,12 +406,12 @@ msgstr ""
372
  "nätverk (kostnadsfri tjänst)."
373
 
374
  # @ wp-slimstat
375
- #: ../admin/config/index.php:138
376
  msgid "Extensions to Track"
377
  msgstr "Fileändelser att spåra"
378
 
379
  # @ wp-slimstat
380
- #: ../admin/config/index.php:138
381
  msgid ""
382
  "List all the file extensions that you want to be treated as Downloads. "
383
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -391,17 +425,17 @@ msgstr ""
391
  "som sådan), om deras förlängning matchar en av de som listas här nedan."
392
 
393
  # @ wp-slimstat
394
- #: ../admin/config/index.php:140
395
  msgid "Internal and Outbound Links"
396
  msgstr "Interna och utgående länkar"
397
 
398
  # @ wp-slimstat
399
- #: ../admin/config/index.php:141
400
  msgid "Track Outbound Clicks"
401
  msgstr "Spåra utgående klick"
402
 
403
  # @ wp-slimstat
404
- #: ../admin/config/index.php:141
405
  msgid ""
406
  "Track when your visitors click on link to external websites. This option "
407
  "required Spy Mode to be enabled."
@@ -410,11 +444,11 @@ msgstr ""
410
  "alternativ krävs Spionläget är aktiverat."
411
 
412
  # @ wp-slimstat
413
- #: ../admin/config/index.php:142
414
  msgid "Track Coordinates"
415
  msgstr "Spår Koordinater"
416
 
417
- #: ../admin/config/index.php:142
418
  msgid ""
419
  "Collect mouse coordinates and other information for clicks on internal "
420
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
@@ -424,11 +458,11 @@ msgstr ""
424
  "Rekommenderas starkt om du använder heatmap add-on. Som standard är denna "
425
  "information endast samlas in för externa länkar."
426
 
427
- #: ../admin/config/index.php:143
428
  msgid "No Callback"
429
  msgstr "Ingen Callback"
430
 
431
- #: ../admin/config/index.php:143
432
  msgid ""
433
  "Track the event but do not invoke the callback function on links marked with "
434
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
@@ -440,11 +474,11 @@ msgstr ""
440
  "attribut innehåller en av dessa strängar (separerade med kommatecken) . "
441
  "Användbar för att förhindra konflikter med lightbox och liknande bibliotek."
442
 
443
- #: ../admin/config/index.php:144
444
  msgid "Do Not Track"
445
  msgstr "Spårar inte"
446
 
447
- #: ../admin/config/index.php:144
448
  msgid ""
449
  "Do not track links marked with one of these class names, <em>rel</em> "
450
  "attributes or whose <em>href</em> attribute contains one of these strings "
@@ -454,11 +488,11 @@ msgstr ""
454
  "eller vars <em>href</em> attribut innehåller en av dessa strängar "
455
  "(separerade med kommatecken)."
456
 
457
- #: ../admin/config/index.php:146
458
  msgid "Pages not belonging to this site"
459
  msgstr "Sidor som inte tillhör denna webbplats"
460
 
461
- #: ../admin/config/index.php:147
462
  msgid ""
463
  "Add the following code to all the non-WP pages you want to track, right "
464
  "before the closing BODY tag. Please make sure to change the protocol of all "
@@ -469,11 +503,11 @@ msgstr ""
469
  "webbadresser till HTTPS, om du extern webbplats serveras över en säker kanal."
470
 
471
  # @ wp-slimstat
472
- #: ../admin/config/index.php:157
473
  msgid "Allow External Domains"
474
  msgstr "Tillåt externa domäner"
475
 
476
- #: ../admin/config/index.php:157
477
  msgid ""
478
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
479
  "header is present on the requested resource, when using the external "
@@ -493,18 +527,18 @@ msgstr ""
493
  "förfrågningar."
494
 
495
  # @ wp-slimstat
496
- #: ../admin/config/index.php:158 ../admin/config/index.php:180
497
- #: ../admin/config/index.php:208
498
  msgid "Miscellaneous"
499
  msgstr "Övrigt"
500
 
501
  # @ wp-slimstat
502
- #: ../admin/config/index.php:159
503
  msgid "Enable UAN"
504
  msgstr "Aktivera UAN"
505
 
506
  # @ wp-slimstat
507
- #: ../admin/config/index.php:159
508
  msgid ""
509
  "Send anonymous data about user agents to our server for analysis. This "
510
  "allows us to contribute to the <a href='http://browscap.org/' "
@@ -520,32 +554,32 @@ msgstr ""
520
  "påverkas på något sätt."
521
 
522
  # @ wp-slimstat
523
- #: ../admin/config/index.php:164
524
  msgid "Filters"
525
  msgstr "Filter"
526
 
527
  # @ wp-slimstat
528
- #: ../admin/config/index.php:166
529
  msgid "Do not track settings"
530
  msgstr "Spåra inte inställningar"
531
 
532
  # @ wp-slimstat
533
- #: ../admin/config/index.php:167
534
  msgid "Track Registered Users"
535
  msgstr "Spåra Registerarde Användare"
536
 
537
  # @ wp-slimstat
538
- #: ../admin/config/index.php:167
539
  msgid "Enable this option to track logged in users."
540
  msgstr "Aktivera det här alternativet för att spåra inloggade användare."
541
 
542
  # @ wp-slimstat
543
- #: ../admin/config/index.php:168
544
  msgid "Blacklist by Username"
545
  msgstr "Blockera efter Användarnamn"
546
 
547
  # @ wp-slimstat
548
- #: ../admin/config/index.php:168
549
  msgid ""
550
  "List all the usernames you don't want to track, separated by commas. Please "
551
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
@@ -563,12 +597,12 @@ msgstr ""
563
  "att matcha user10 och user90."
564
 
565
  # @ wp-slimstat
566
- #: ../admin/config/index.php:169
567
  msgid "Blacklist by IP Address"
568
  msgstr "Blockerad av IP Adress"
569
 
570
  # @ wp-slimstat
571
- #: ../admin/config/index.php:169
572
  msgid ""
573
  "List all the IP addresses you don't want to track, separated by commas. Each "
574
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -583,12 +617,12 @@ msgstr ""
583
  "offentliga IP och den ursprungliga undersökningsperioden, om det finns."
584
 
585
  # @ wp-slimstat
586
- #: ../admin/config/index.php:170
587
  msgid "Blacklist by Capability"
588
  msgstr "Blockerad av Rättigheter"
589
 
590
  # @ wp-slimstat
591
- #: ../admin/config/index.php:170
592
  msgid ""
593
  "Users having at least one of the <a href='http://codex.wordpress.org/"
594
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
@@ -599,17 +633,17 @@ msgstr ""
599
  "kommer inte spåras. Rättigheterna är bokstavskänsliga."
600
 
601
  # @ wp-slimstat
602
- #: ../admin/config/index.php:172
603
  msgid "Profiling"
604
  msgstr "Profilering"
605
 
606
  # @ wp-slimstat
607
- #: ../admin/config/index.php:173
608
  msgid "Ignore Spammers"
609
  msgstr "Ignorera spammare"
610
 
611
  # @ wp-slimstat
612
- #: ../admin/config/index.php:173
613
  msgid ""
614
  "Enable this option if you don't want to track visits from users identified "
615
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -622,11 +656,11 @@ msgstr ""
622
  "bort från databasen."
623
 
624
  # @ wp-slimstat
625
- #: ../admin/config/index.php:174
626
  msgid "Ignore Bots"
627
  msgstr "Ignorera Bots"
628
 
629
- #: ../admin/config/index.php:174
630
  msgid ""
631
  "Turn on this feature if you want to have the accuracy level of server-side "
632
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -639,12 +673,12 @@ msgstr ""
639
  "klientläge, robotar är ignoreras oavsett denna inställning."
640
 
641
  # @ wp-slimstat
642
- #: ../admin/config/index.php:175
643
  msgid "Permalinks"
644
  msgstr "Permalänk"
645
 
646
  # @ wp-slimstat
647
- #: ../admin/config/index.php:175
648
  msgid ""
649
  "List all the URLs on your website that you don't want to track, separated by "
650
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -663,12 +697,12 @@ msgstr ""
663
  "och /abort. Strängar är skiftlägeskänsliga."
664
 
665
  # @ wp-slimstat
666
- #: ../admin/config/index.php:176
667
  msgid "Countries"
668
  msgstr "Länder"
669
 
670
  # @ wp-slimstat
671
- #: ../admin/config/index.php:176
672
  msgid ""
673
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
674
  "track, separated by commas."
@@ -677,12 +711,12 @@ msgstr ""
677
  "spåra, separerade med kommatecken."
678
 
679
  # @ wp-slimstat
680
- #: ../admin/config/index.php:177
681
  msgid "User Agents"
682
  msgstr "User Agents"
683
 
684
  # @ wp-slimstat
685
- #: ../admin/config/index.php:177
686
  msgid ""
687
  "Browsers (user agents) you don't want to track, separated by commas. You can "
688
  "specify the browser's version adding a slash after the name (i.e. "
@@ -700,12 +734,12 @@ msgstr ""
700
  "skiftlägeskänsliga."
701
 
702
  # @ wp-slimstat
703
- #: ../admin/config/index.php:178
704
  msgid "Referring Sites"
705
  msgstr "Hänvisnings-sajt"
706
 
707
  # @ wp-slimstat
708
- #: ../admin/config/index.php:178
709
  msgid ""
710
  "Referring URLs that you don't want to track, separated by commas: "
711
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -722,23 +756,23 @@ msgstr ""
722
  "filtrera (http://, https://)."
723
 
724
  # @ wp-slimstat
725
- #: ../admin/config/index.php:181
726
  msgid "Enable Privacy Mode"
727
  msgstr "Aktivera Sekretessläge"
728
 
729
  # @ wp-slimstat
730
- #: ../admin/config/index.php:181
731
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
732
  msgstr ""
733
  "Maskera besökarnas IP-adresser för att uppfylla europeiska sekretesslagar."
734
 
735
  # @ wp-slimstat
736
- #: ../admin/config/index.php:182
737
  msgid "Ignore Prefetch Requests"
738
  msgstr "Ignorera Prefetch förfrågningar"
739
 
740
  # @ wp-slimstat
741
- #: ../admin/config/index.php:182
742
  msgid ""
743
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
744
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
@@ -749,30 +783,30 @@ msgstr ""
749
  "target='_blank'>Link förhämtning funktionalitet</a>."
750
 
751
  # @ wp-slimstat
752
- #: ../admin/config/index.php:187 ../admin/config/index.php:220
753
  msgid "Reports"
754
  msgstr "Rapporter"
755
 
756
- #: ../admin/config/index.php:189
757
  msgid "Formats and Conversions"
758
  msgstr "Format och Konvertering"
759
 
760
  # @ wp-slimstat
761
- #: ../admin/config/index.php:190
762
  msgid "Number Format"
763
  msgstr "Numeriskt format"
764
 
765
  # @ wp-slimstat
766
- #: ../admin/config/index.php:190
767
  msgid "Choose the number format you want to use for your reports."
768
  msgstr "Välj vilken nummerformat du vill använda i dina rapporter,"
769
 
770
  # @ wp-slimstat
771
- #: ../admin/config/index.php:191
772
  msgid "Date Format"
773
  msgstr "Datumformat"
774
 
775
- #: ../admin/config/index.php:191
776
  msgid ""
777
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
778
  "Format</a> to use when displaying a pageview's date."
@@ -781,11 +815,11 @@ msgstr ""
781
  "Format</a> att använda vid visning av en sidvisnings datum."
782
 
783
  # @ wp-slimstat
784
- #: ../admin/config/index.php:192
785
  msgid "Time Format"
786
  msgstr "Tidformat"
787
 
788
- #: ../admin/config/index.php:192
789
  msgid ""
790
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
791
  "Format</a> to use when displaying a pageview's time."
@@ -794,12 +828,12 @@ msgstr ""
794
  "Format</a> att använda vid visning av en sidvisnings tid."
795
 
796
  # @ wp-slimstat
797
- #: ../admin/config/index.php:193
798
  msgid "Use Display Name"
799
  msgstr "Visa smeknamn"
800
 
801
  # @ wp-slimstat
802
- #: ../admin/config/index.php:193
803
  msgid ""
804
  "By default, users are listed by their usernames. Use this option to "
805
  "visualize their display names instead."
@@ -808,12 +842,12 @@ msgstr ""
808
  "Använd detta alternativ för att visualisera sina visningsnamn istället."
809
 
810
  # @ wp-slimstat
811
- #: ../admin/config/index.php:194
812
  msgid "Use Titles"
813
  msgstr "Visa Titlar"
814
 
815
  # @ wp-slimstat
816
- #: ../admin/config/index.php:194
817
  msgid ""
818
  "Slimstat converts your permalinks into post, page and category titles. "
819
  "Disable this feature if you need to see the URL in your reports."
@@ -822,25 +856,25 @@ msgstr ""
822
  "Inaktivera den här funktionen om du behöver se webbadressen i dina rapporter."
823
 
824
  # @ wp-slimstat
825
- #: ../admin/config/index.php:195
826
  msgid "Convert IP Addresses"
827
  msgstr "Konvertera IP-adresser"
828
 
829
  # @ wp-slimstat
830
- #: ../admin/config/index.php:195
831
  msgid "Display provider names instead of IP addresses."
832
  msgstr "Visa leverantörs namn istället för IP adresser."
833
 
834
  # @ wp-slimstat
835
- #: ../admin/config/index.php:197
836
  msgid "Functionality"
837
  msgstr "Funktionalitet"
838
 
839
- #: ../admin/config/index.php:198
840
  msgid "SlimScroll"
841
  msgstr "SlimScroll"
842
 
843
- #: ../admin/config/index.php:198
844
  msgid ""
845
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
846
  "scrollbar."
@@ -849,30 +883,30 @@ msgstr ""
849
  "webbläsaren scrollbar."
850
 
851
  # @ wp-slimstat
852
- #: ../admin/config/index.php:199
853
  msgid "Expand Details"
854
  msgstr "Expandera Detaljer"
855
 
856
  # @ wp-slimstat
857
- #: ../admin/config/index.php:199
858
  msgid "Expand each row's details by default, insted of on mousehover."
859
  msgstr "Expandera varje rads detaljer som default istället för mousehover"
860
 
861
  # @ wp-slimstat
862
- #: ../admin/config/index.php:200 ../admin/config/index.php:206
863
  msgid "Rows to Display"
864
  msgstr "Rader som ska visas"
865
 
866
  # @ wp-slimstat
867
- #: ../admin/config/index.php:200
868
  msgid "Specify the number of items in each report."
869
  msgstr "Ange antal objekt i varje rapport."
870
 
871
- #: ../admin/config/index.php:201 ../admin/view/wp-slimstat-db.php:101
872
  msgid "Max Results"
873
  msgstr "Max Resultat"
874
 
875
- #: ../admin/config/index.php:201
876
  msgid ""
877
  "Decide how many records should be retrieved from the database in total. "
878
  "Depending on your server configuration, you may want to fine tune this value "
@@ -883,27 +917,27 @@ msgstr ""
883
  "att överskrida din PHP minnesgräns."
884
 
885
  # @ wp-slimstat
886
- #: ../admin/config/index.php:202
887
  msgid "IP Lookup"
888
  msgstr "Leta upp IP"
889
 
890
  # @ wp-slimstat
891
- #: ../admin/config/index.php:202
892
  msgid "Customize the Geolocation service to be used in the reports."
893
  msgstr "Anpassa Geolokalisering tjänst som ska användas i rapporterna."
894
 
895
  # @ wp-slimstat
896
- #: ../admin/config/index.php:204
897
  msgid "Activity Log"
898
  msgstr "Aktivitetslog"
899
 
900
  # @ wp-slimstat
901
- #: ../admin/config/index.php:205
902
  msgid "Live Stream"
903
  msgstr "Live Stream"
904
 
905
  # @ wp-slimstat
906
- #: ../admin/config/index.php:205
907
  msgid ""
908
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
909
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
@@ -912,17 +946,17 @@ msgstr ""
912
  "<strong>0</strong> (siffran noll) för att inaktivera den här funktionen."
913
 
914
  # @ wp-slimstat
915
- #: ../admin/config/index.php:206
916
  msgid "Specify the number of items in the Activity Log."
917
  msgstr "Ange antal objekt i Aktivitetsloggen."
918
 
919
  # @ wp-slimstat
920
- #: ../admin/config/index.php:209
921
  msgid "Custom CSS"
922
  msgstr "Anpassad CSS"
923
 
924
  # @ wp-slimstat
925
- #: ../admin/config/index.php:209
926
  msgid ""
927
  "Paste here your custom stylesheet to personalize the way your reports look. "
928
  "<a href='https://slimstat.freshdesk.com/support/solutions/"
@@ -938,11 +972,11 @@ msgstr ""
938
  "inställningen."
939
 
940
  # @ wp-slimstat
941
- #: ../admin/config/index.php:210
942
  msgid "Chart Colors"
943
  msgstr "Diagram Färger"
944
 
945
- #: ../admin/config/index.php:210
946
  msgid ""
947
  "Customize the look and feel of your charts by assigning personalized colors "
948
  "to each metric. List 4 hex colors separated by commas, strictly in the "
@@ -956,12 +990,12 @@ msgstr ""
956
  "<code>#ccc, # 999, # bbcc44, # 21759b</code>."
957
 
958
  # @ wp-slimstat
959
- #: ../admin/config/index.php:211
960
  msgid "Show User Agent"
961
  msgstr " Visa användar Agent"
962
 
963
  # @ wp-slimstat
964
- #: ../admin/config/index.php:211
965
  msgid ""
966
  "Choose if you want to see the browser name or a complete user agent string "
967
  "when hovering on browser icons."
@@ -970,11 +1004,11 @@ msgstr ""
970
  "surfar på webbläsars ikoner."
971
 
972
  # @ wp-slimstat
973
- #: ../admin/config/index.php:212
974
  msgid "Enable SOV"
975
  msgstr "Aktivera SOV"
976
 
977
- #: ../admin/config/index.php:212
978
  msgid ""
979
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
980
  "the subject, object, and verb of a sentence appear in that order, like in "
@@ -983,11 +1017,11 @@ msgstr ""
983
  "I språktypologi, språket är en subjekt-objekt-verb (SOV) en i vilken ämnet, "
984
  "objekt och verb i en mening visas i den ordningen, som på japanska."
985
 
986
- #: ../admin/config/index.php:213
987
  msgid "Social Analytics"
988
  msgstr "Social Analytics"
989
 
990
- #: ../admin/config/index.php:213
991
  msgid ""
992
  "Thanks to a <a href='http://getsocial.io/enterprise' "
993
  "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
@@ -1004,17 +1038,17 @@ msgstr ""
1004
  "alla dina inlägg s webbadresser till deras tjänst för analys en gång om "
1005
  "dagen."
1006
 
1007
- #: ../admin/config/index.php:218
1008
  msgid "Access Control"
1009
  msgstr "Åtkomstkontroll"
1010
 
1011
  # @ wp-slimstat
1012
- #: ../admin/config/index.php:221
1013
  msgid "Restrict Authors"
1014
  msgstr "Begränsa Författare"
1015
 
1016
  # @ wp-slimstat
1017
- #: ../admin/config/index.php:221
1018
  msgid ""
1019
  "Enable this option if you want your authors to only see stats related to "
1020
  "their own content."
@@ -1023,12 +1057,12 @@ msgstr ""
1023
  "statistik relaterad till sitt eget innehåll."
1024
 
1025
  # @ wp-slimstat
1026
- #: ../admin/config/index.php:222 ../admin/config/index.php:226
1027
  msgid "Capability"
1028
  msgstr "Rättigheter"
1029
 
1030
  # @ wp-slimstat
1031
- #: ../admin/config/index.php:222
1032
  msgid ""
1033
  "Specify the minimum <a href='http://codex.wordpress.org/"
1034
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
@@ -1045,12 +1079,12 @@ msgstr ""
1045
  "I detta fall har en lista företräde framför rättighet."
1046
 
1047
  # @ wp-slimstat
1048
- #: ../admin/config/index.php:223 ../admin/config/index.php:227
1049
  msgid "Whitelist"
1050
  msgstr "Vitlista"
1051
 
1052
  # @ wp-slimstat
1053
- #: ../admin/config/index.php:223
1054
  msgid ""
1055
  "List all the users who should have access to the reports, separated by "
1056
  "commas. Administrators are implicitly allowed, so you don't need to list "
@@ -1061,14 +1095,14 @@ msgstr ""
1061
  "ange dem i här. Användarnamn är skiftlägeskänsliga."
1062
 
1063
  # @ wp-slimstat
1064
- #: ../admin/config/index.php:225 ../admin/config/index.php:250
1065
- #: ../admin/wp-slimstat-admin.php:532 ../admin/wp-slimstat-admin.php:535
1066
- #: ../wp-slimstat.php:1803
1067
  msgid "Settings"
1068
  msgstr "Inställningar"
1069
 
1070
  # @ wp-slimstat
1071
- #: ../admin/config/index.php:226
1072
  msgid ""
1073
  "Specify the minimum <a href='http://codex.wordpress.org/"
1074
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -1081,7 +1115,7 @@ msgstr ""
1081
  "åsidosätta det här alternativet för specifika användare."
1082
 
1083
  # @ wp-slimstat
1084
- #: ../admin/config/index.php:227
1085
  msgid ""
1086
  "List all the users who can edit these options, separated by commas. Please "
1087
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
@@ -1092,14 +1126,14 @@ msgstr ""
1092
  "att ta med dig! Användarnamn är skiftlägeskänsliga."
1093
 
1094
  # @ wp-slimstat
1095
- #: ../admin/config/index.php:232
1096
  msgid "Maintenance"
1097
  msgstr "Underhåll"
1098
 
1099
  # @ wp-slimstat
1100
- #: ../admin/config/index.php:237 ../admin/view/addons.php:32
1101
- #: ../admin/wp-slimstat-admin.php:490 ../admin/wp-slimstat-admin.php:505
1102
- #: ../wp-slimstat.php:1800
1103
  msgid "Add-ons"
1104
  msgstr "Tillägg "
1105
 
@@ -1131,80 +1165,68 @@ msgstr "Geolocation databas har avinstallerats från din server."
1131
  msgid "The geolocation database has been installed on your server."
1132
  msgstr "Geolocation databas har installerats på din server."
1133
 
1134
- #: ../admin/config/maintenance.php:166
1135
- msgid ""
1136
- "Your data was successfully imported. You may now drop the old tables: "
1137
- "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
1138
- "wp_slim_outbound. Please note: if you are using Slimstat in a MU network, "
1139
- "you will need to run the import script on all your sites before you can "
1140
- "delete the old tables."
1141
- msgstr ""
1142
- "Dina data har importerats. Nu kan du tabort gamla tabeller: wp_slim_stats_3, "
1143
- "wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, wp_slim_outbound. "
1144
- "Observera: Om du använder Slimstat i MU nätverk, måste du köra import "
1145
- "skriptet på alla dina webbplatser innan du kan ta bort gamla tabeller."
1146
-
1147
  # @ wp-slimstat
1148
- #: ../admin/config/maintenance.php:175
1149
  msgid "Your reports were successfully restored to their default arrangement."
1150
  msgstr "Dina rapporter har återställts till default-läge."
1151
 
1152
  # @ wp-slimstat
1153
- #: ../admin/config/maintenance.php:185
1154
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1155
  msgstr "Dina Slimstat tabeller har framgångsrikt omvandlats till InnoDB."
1156
 
1157
  # @ wp-slimstat
1158
- #: ../admin/config/maintenance.php:191
1159
  msgid "All the archived records were successfully deleted."
1160
  msgstr "Alla arkiverade poster har tagits bort."
1161
 
1162
  # @ wp-slimstat
1163
- #: ../admin/config/maintenance.php:199
1164
  msgid "All the records were successfully deleted."
1165
  msgstr "Alla poster har tagits bort."
1166
 
1167
- #: ../admin/config/maintenance.php:221
1168
- msgid "Debugging"
1169
  msgstr "Felsökning"
1170
 
1171
  # @ wp-slimstat
1172
- #: ../admin/config/maintenance.php:224
1173
  msgid "Tracker Status"
1174
  msgstr "Tracker Status"
1175
 
1176
  # @ wp-slimstat
1177
- #: ../admin/config/maintenance.php:226
1178
- msgid "recorded on"
1179
- msgstr "registrerades "
1180
 
1181
- #: ../admin/config/maintenance.php:226
1182
  msgid "No Errors so far"
1183
  msgstr "Inga FEL än sålänge"
1184
 
1185
- #: ../admin/config/maintenance.php:227
1186
  msgid ""
1187
  "The information here above is useful to troubleshoot issues with the "
1188
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1189
  "the tracker could not record a pageview and are indicative of some kind of "
1190
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1191
  "most recent pageview was not recorded, based on your settings (filters, "
1192
- "blackslists, etc). Please include this code when sending a support request."
 
1193
  msgstr ""
1194
  "Informationen ovan är användbar för att felsöka problem med trackern. Det "
1195
- "innefattar både <strong> fel </ strong>, som returneras när tracker inte "
1196
- "kunde registrera en sidvisning och är ett tecken på någon form av fel, och "
1197
- "<strong> meddelanden </ strong>, som förklarar anledningen till den senaste "
1198
  "sidvisning registreardes inte in, baserat på dina inställningar (filter, "
1199
  "blackslists, etc). Vänligen inkludera denna kod när du skickar en begäran om "
1200
  "support."
1201
 
1202
  # @ wp-slimstat
1203
- #: ../admin/config/maintenance.php:233
1204
  msgid "Enable SQL Debug"
1205
  msgstr "Aktivera Felsökning av SQL"
1206
 
1207
- #: ../admin/config/maintenance.php:236
1208
  msgid ""
1209
  "Display the SQL code used to retrieve the data from the database. Useful to "
1210
  "troubleshoot issues with data consistency or missing pageviews."
@@ -1213,32 +1235,28 @@ msgstr ""
1213
  "att felsöka problem med överensstämmelse mellan uppgifter eller saknade "
1214
  "sidvisningar."
1215
 
1216
- #: ../admin/config/maintenance.php:240
1217
  msgid "Disable SQL Debug"
1218
  msgstr "Inaktivera SQL Debug"
1219
 
1220
- #: ../admin/config/maintenance.php:243
1221
  msgid "Deactivate the SQL output on top of each report."
1222
  msgstr "Avaktivera SQL-utgången på toppen av varje rapport."
1223
 
1224
- #: ../admin/config/maintenance.php:248
1225
- msgid "Layout"
1226
- msgstr "Layout"
1227
-
1228
  # @ wp-slimstat
1229
- #: ../admin/config/maintenance.php:251
1230
  msgid ""
1231
  "Are you sure you want to restore the default arrangement of your reports?"
1232
  msgstr ""
1233
  "Är du säker på att du vill återställa standard arrangemang av dina rapporter?"
1234
 
1235
  # @ wp-slimstat
1236
- #: ../admin/config/maintenance.php:251
1237
  msgid "No Panic Button"
1238
  msgstr "Ingen Panik Knapp"
1239
 
1240
  # @ wp-slimstat
1241
- #: ../admin/config/maintenance.php:253
1242
  msgid ""
1243
  "Reset the default arrangement of your reports. Helpful when, for some "
1244
  "reason, reports disappear from your panels or something doesn't look right "
@@ -1249,111 +1267,111 @@ msgstr ""
1249
  "ser bra ut i visning av rapporter."
1250
 
1251
  # @ wp-slimstat
1252
- #: ../admin/config/maintenance.php:257
1253
  msgid "Data Maintenance"
1254
  msgstr "Data Underhåll"
1255
 
1256
  # @ wp-slimstat
1257
- #: ../admin/config/maintenance.php:260
1258
  msgid "Delete pageviews where"
1259
  msgstr "Radera sidvisningar där"
1260
 
1261
  # @ wp-slimstat
1262
- #: ../admin/config/maintenance.php:274 ../admin/view/index.php:16
1263
  msgid "equals"
1264
  msgstr "lika"
1265
 
1266
  # @ wp-slimstat
1267
- #: ../admin/config/maintenance.php:275 ../admin/view/index.php:17
1268
  msgid "is not equal to"
1269
  msgstr "är inte lika med"
1270
 
1271
  # @ wp-slimstat
1272
- #: ../admin/config/maintenance.php:276 ../admin/view/index.php:18
1273
  msgid "contains"
1274
  msgstr "innehåller"
1275
 
1276
- #: ../admin/config/maintenance.php:277 ../admin/view/index.php:19
1277
  msgid "is included in"
1278
  msgstr "är inkluderat i"
1279
 
1280
  # @ wp-slimstat
1281
- #: ../admin/config/maintenance.php:278 ../admin/view/index.php:20
1282
  msgid "does not contain"
1283
  msgstr "innehåller inte"
1284
 
1285
  # @ wp-slimstat
1286
- #: ../admin/config/maintenance.php:279 ../admin/view/index.php:21
1287
  msgid "starts with"
1288
  msgstr "börjar med"
1289
 
1290
  # @ wp-slimstat
1291
- #: ../admin/config/maintenance.php:280 ../admin/view/index.php:22
1292
  msgid "ends with"
1293
  msgstr "slutar med"
1294
 
1295
  # @ wp-slimstat
1296
- #: ../admin/config/maintenance.php:281 ../admin/view/index.php:23
1297
  msgid "sounds like"
1298
  msgstr "låter som"
1299
 
1300
  # @ wp-slimstat
1301
- #: ../admin/config/maintenance.php:282 ../admin/view/index.php:24
1302
  msgid "is greater than"
1303
  msgstr "är större än"
1304
 
1305
  # @ wp-slimstat
1306
- #: ../admin/config/maintenance.php:283 ../admin/view/index.php:25
1307
  msgid "is less than"
1308
  msgstr "är mindre än"
1309
 
1310
  # @ wp-slimstat
1311
- #: ../admin/config/maintenance.php:284 ../admin/view/index.php:27
1312
  msgid "matches"
1313
  msgstr "matchas"
1314
 
1315
  # @ wp-slimstat
1316
- #: ../admin/config/maintenance.php:285 ../admin/view/index.php:28
1317
  msgid "does not match"
1318
  msgstr "matchas inte"
1319
 
1320
  # @ wp-slimstat
1321
- #: ../admin/config/maintenance.php:286 ../admin/view/index.php:29
1322
  msgid "is empty"
1323
  msgstr "är tomt"
1324
 
1325
  # @ wp-slimstat
1326
- #: ../admin/config/maintenance.php:287 ../admin/view/index.php:30
1327
  msgid "is not empty"
1328
  msgstr "är inte tomt"
1329
 
1330
  # @ wp-slimstat
1331
- #: ../admin/config/maintenance.php:290 ../admin/view/index.php:42
1332
  #: ../admin/view/index.php:105
1333
  msgid "Apply"
1334
  msgstr "Genomför"
1335
 
1336
  # @ wp-slimstat
1337
- #: ../admin/config/maintenance.php:291
1338
  msgid ""
1339
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1340
  msgstr ""
1341
  "Är du säker på att du vill ta bort dessa rader PERMANENT från din databas?"
1342
 
1343
  # @ wp-slimstat
1344
- #: ../admin/config/maintenance.php:298
1345
  msgid ""
1346
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1347
  "database?"
1348
  msgstr "Är du säker på att du PERMANENT RADERA ALLT från din databas?"
1349
 
1350
  # @ wp-slimstat
1351
- #: ../admin/config/maintenance.php:298
1352
  msgid "Delete All Records"
1353
  msgstr "Tabort Alla poster"
1354
 
1355
  # @ wp-slimstat
1356
- #: ../admin/config/maintenance.php:301
1357
  msgid ""
1358
  "Erase all the information collected so far by Slimstat, including the "
1359
  "archive. This operation <strong>does not</strong> reset your settings."
@@ -1363,7 +1381,7 @@ msgstr ""
1363
  "inställningar."
1364
 
1365
  # @ wp-slimstat
1366
- #: ../admin/config/maintenance.php:307
1367
  msgid ""
1368
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1369
  "archive?"
@@ -1371,21 +1389,21 @@ msgstr ""
1371
  "Är du säker på att du vill PERMANENT RADERA alla poster från ditt arkiv?"
1372
 
1373
  # @ wp-slimstat
1374
- #: ../admin/config/maintenance.php:307
1375
  msgid "Delete Archive"
1376
  msgstr "Tabort Arkiv"
1377
 
1378
- #: ../admin/config/maintenance.php:310
1379
  msgid "Erase all the archived records. This operation cannot be undone."
1380
  msgstr "Radera alla arkiverade poster. Denna operation kan inte ångras."
1381
 
1382
  # @ wp-slimstat
1383
- #: ../admin/config/maintenance.php:316
1384
  msgid "Improve Performance"
1385
  msgstr "Förbättra Prestanda"
1386
 
1387
  # @ wp-slimstat
1388
- #: ../admin/config/maintenance.php:320
1389
  msgid ""
1390
  "Please note that you will need about 30% more DB space to store the extra "
1391
  "information required."
@@ -1394,12 +1412,12 @@ msgstr ""
1394
  "information som krävs."
1395
 
1396
  # @ wp-slimstat
1397
- #: ../admin/config/maintenance.php:324
1398
  msgid "Save DB Space"
1399
  msgstr "Spara DB utrymme"
1400
 
1401
  # @ wp-slimstat
1402
- #: ../admin/config/maintenance.php:327
1403
  msgid ""
1404
  "Please note that by removing table indexes, Slimstat's performance will be "
1405
  "affected."
@@ -1407,51 +1425,30 @@ msgstr ""
1407
  "Observera att genom att ta bort tabellindex, kommer SlimStat's prestanda "
1408
  "påverkas."
1409
 
1410
- #: ../admin/config/maintenance.php:334
1411
- msgid ""
1412
- "Hold on tight, we are about to import all your old data. Are you sure you "
1413
- "want to proceed?"
1414
- msgstr ""
1415
- "Observera, vi är på väg att importera alla dina gamla data. Är du säker på "
1416
- "att du vill fortsätta?"
1417
-
1418
- # @ wp-slimstat
1419
- #: ../admin/config/maintenance.php:334
1420
- msgid "Import old data"
1421
- msgstr "Importera gammalt data"
1422
-
1423
- #: ../admin/config/maintenance.php:337
1424
- msgid ""
1425
- "Import all the records from the old table structure. No data will be deleted "
1426
- "from your database."
1427
- msgstr ""
1428
- "Importera alla poster från den gamla tabellstruktur. Inga data raderas från "
1429
- "databasen."
1430
-
1431
- #: ../admin/config/maintenance.php:341
1432
  msgid "MaxMind IP to Country"
1433
  msgstr "MaxMind IP för Länder"
1434
 
1435
- #: ../admin/config/maintenance.php:347
1436
  msgid ""
1437
  "Do you want to download and install the geolocation database from MaxMind's "
1438
  "server?"
1439
  msgstr ""
1440
  "Vill du ladda ner och installera Geolocation databasen från MaxMind's server?"
1441
 
1442
- #: ../admin/config/maintenance.php:347
1443
  msgid "Install GeoLite DB"
1444
  msgstr "Installera GeoLite DB"
1445
 
1446
- #: ../admin/config/maintenance.php:350
1447
  msgid "Do you want to uninstall the geolocation database?"
1448
  msgstr "Vill du avinstallera geolocation databasen?"
1449
 
1450
- #: ../admin/config/maintenance.php:350
1451
  msgid "Uninstall GeoLite DB"
1452
  msgstr "Avinstallera GeoLite DB"
1453
 
1454
- #: ../admin/config/maintenance.php:354
1455
  msgid ""
1456
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1457
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
@@ -1468,12 +1465,12 @@ msgstr ""
1468
  "funktion."
1469
 
1470
  # @ wp-slimstat
1471
- #: ../admin/config/maintenance.php:359
1472
  msgid "Import and Export"
1473
  msgstr "Importera och Exportera"
1474
 
1475
  # @ wp-slimstat
1476
- #: ../admin/config/maintenance.php:363
1477
  msgid ""
1478
  "Here below you can find the current configuration string for Slimstat. You "
1479
  "can update your settings by pasting a new string inside the text area and "
@@ -1484,32 +1481,32 @@ msgstr ""
1484
  "textområdet och klicka på knappen Importera."
1485
 
1486
  # @ wp-slimstat
1487
- #: ../admin/config/maintenance.php:368
1488
  msgid "Import"
1489
  msgstr "Importera"
1490
 
1491
  # @ wp-slimstat
1492
- #: ../admin/config/maintenance.php:369
1493
  msgid "Are you sure you want to OVERWRITE your current settings?"
1494
  msgstr "Är du säker på att du vill återställa dina flikar?"
1495
 
1496
  # @ wp-slimstat
1497
- #: ../admin/config/maintenance.php:374
1498
  msgid "Database Information"
1499
  msgstr "Databasinformation"
1500
 
1501
  # @ wp-slimstat
1502
- #: ../admin/config/maintenance.php:377
1503
  msgid "Engine"
1504
  msgstr "Motor"
1505
 
1506
  # @ wp-slimstat
1507
- #: ../admin/config/maintenance.php:381
1508
  msgid "switch to InnoDB"
1509
  msgstr "koppla om till InnoDB"
1510
 
1511
  # @ wp-slimstat
1512
- #: ../admin/config/maintenance.php:392
1513
  msgid "records"
1514
  msgstr "poster"
1515
 
@@ -1595,12 +1592,12 @@ msgid "Load"
1595
  msgstr "Ladda"
1596
 
1597
  # @ wp-slimstat
1598
- #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1397
1599
  msgid "Today"
1600
  msgstr "Idag"
1601
 
1602
  # @ wp-slimstat
1603
- #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1400
1604
  msgid "Yesterday"
1605
  msgstr "Igår"
1606
 
@@ -1729,8 +1726,8 @@ msgid "Syndication Reader"
1729
  msgstr "Syndikerings-läsare"
1730
 
1731
  # @ wp-slimstat
1732
- #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1031
1733
- #: ../admin/view/wp-slimstat-reports.php:1706
1734
  msgid "No data to display"
1735
  msgstr "Inget data att visa"
1736
 
@@ -1741,20 +1738,20 @@ msgstr "Datum och Tid"
1741
 
1742
  # Local IP Address
1743
  # @ wp-slimstat
1744
- #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1082
1745
- #: ../admin/view/wp-slimstat-reports.php:1820 ../wp-slimstat.php:1409
1746
  msgid "c-"
1747
  msgstr "Unknown Country"
1748
 
1749
  # @ wp-slimstat
1750
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1751
- #: ../admin/wp-slimstat-admin.php:846 ../admin/wp-slimstat-admin.php:886
1752
  msgid "Originating IP"
1753
  msgstr "Ursprungs IP"
1754
 
1755
  # @ wp-slimstat
1756
- #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1179
1757
- #: ../admin/view/wp-slimstat-reports.php:1183
1758
  msgid "Open this URL in a new window"
1759
  msgstr "Öppna denna URL i nytt fönster"
1760
 
@@ -1765,9 +1762,9 @@ msgstr "Lokala sökresultat sidan"
1765
 
1766
  # @ wp-slimstat
1767
  #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1768
- #: ../admin/view/wp-slimstat-reports.php:257
1769
- #: ../admin/view/wp-slimstat-reports.php:266
1770
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
1771
  msgid "Search Terms"
1772
  msgstr "Söktermer"
1773
 
@@ -1818,12 +1815,12 @@ msgid "User Logged Out"
1818
  msgstr "Användare utloggad"
1819
 
1820
  # @ wp-slimstat
1821
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:862
1822
  msgid "Browser"
1823
  msgstr "Webbläsare"
1824
 
1825
  # @ wp-slimstat
1826
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:863
1827
  msgid "Country Code"
1828
  msgstr "Landskod"
1829
 
@@ -1833,34 +1830,34 @@ msgid "IP Address"
1833
  msgstr "IP-adress"
1834
 
1835
  # @ wp-slimstat
1836
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:866
1837
  msgid "Language Code"
1838
  msgstr "Språkkod"
1839
 
1840
  # @ wp-slimstat
1841
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1842
- #: ../admin/wp-slimstat-admin.php:867
1843
  msgid "Operating System"
1844
  msgstr "Operativsystem"
1845
 
1846
  # @ wp-slimstat
1847
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1848
- #: ../admin/wp-slimstat-admin.php:868
1849
  msgid "Permalink"
1850
  msgstr "Permalänk"
1851
 
1852
  # @ wp-slimstat
1853
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:869
1854
  msgid "Referer"
1855
  msgstr "Referera till"
1856
 
1857
  # @ wp-slimstat
1858
- #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:870
1859
  msgid "Visitor's Name"
1860
  msgstr "Besökares namn"
1861
 
1862
  # @ wp-slimstat
1863
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:852
1864
  msgid "Outbound Link"
1865
  msgstr "Utgående Länk"
1866
 
@@ -1875,22 +1872,22 @@ msgstr "-- Avancerat filter --"
1875
 
1876
  # @ wp-slimstat
1877
  #: ../admin/view/wp-slimstat-db.php:52
1878
- #: ../admin/view/wp-slimstat-reports.php:373
1879
  msgid "Browser Capabilities"
1880
  msgstr "Browserkapaciteter"
1881
 
1882
  # @ wp-slimstat
1883
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:881
1884
  msgid "Browser Version"
1885
  msgstr "Webbläsarversion"
1886
 
1887
  # @ wp-slimstat
1888
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:882
1889
  msgid "Browser Type"
1890
  msgstr "Typ av Browser"
1891
 
1892
  # @ wp-slimstat
1893
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:851
1894
  msgid "User Agent"
1895
  msgstr "User Agent"
1896
 
@@ -1903,17 +1900,17 @@ msgid "Server Latency"
1903
  msgstr "Latens Server"
1904
 
1905
  # @ wp-slimstat
1906
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:884
1907
  msgid "Post Author"
1908
  msgstr "Postförfattare"
1909
 
1910
  # @ wp-slimstat
1911
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:885
1912
  msgid "Post Category ID"
1913
  msgstr "Postkategori ID"
1914
 
1915
  # @ wp-slimstat
1916
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:887
1917
  msgid "Resource Content Type"
1918
  msgstr "Resurs innehållstyp"
1919
 
@@ -1936,7 +1933,7 @@ msgid "Viewport Size"
1936
  msgstr "Viewport Storlek"
1937
 
1938
  # @ wp-slimstat
1939
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:889
1940
  msgid "Visit ID"
1941
  msgstr "Besök ID"
1942
 
@@ -1983,7 +1980,7 @@ msgid "Event ID"
1983
  msgstr "Event ID"
1984
 
1985
  #: ../admin/view/wp-slimstat-db.php:96
1986
- #: ../admin/view/wp-slimstat-reports.php:1720
1987
  msgid "Type"
1988
  msgstr "Typ"
1989
 
@@ -2006,138 +2003,92 @@ msgstr "Ordning"
2006
  msgid "Offset"
2007
  msgstr "Offset"
2008
 
2009
- #: ../admin/view/wp-slimstat-reports.php:21 ../admin/wp-slimstat-admin.php:483
2010
- #: ../wp-slimstat.php:1793
2011
- msgid "Access Log"
2012
- msgstr "Access Logg"
2013
-
2014
- # @ wp-slimstat
2015
- #: ../admin/view/wp-slimstat-reports.php:22 ../admin/wp-slimstat-admin.php:484
2016
- #: ../admin/wp-slimstat-admin.php:499 ../wp-slimstat.php:1794
2017
- msgid "Overview"
2018
- msgstr "Överblick"
2019
-
2020
- #: ../admin/view/wp-slimstat-reports.php:23 ../admin/wp-slimstat-admin.php:485
2021
- #: ../admin/wp-slimstat-admin.php:500 ../wp-slimstat.php:1795
2022
- msgid "Audience"
2023
- msgstr "Besökare"
2024
-
2025
- #: ../admin/view/wp-slimstat-reports.php:24 ../admin/wp-slimstat-admin.php:486
2026
- #: ../admin/wp-slimstat-admin.php:501 ../wp-slimstat.php:1796
2027
- msgid "Site Analysis"
2028
- msgstr "Sajt Analys"
2029
-
2030
- # @ wp-slimstat
2031
- #: ../admin/view/wp-slimstat-reports.php:25
2032
- #: ../admin/view/wp-slimstat-reports.php:516
2033
- #: ../admin/wp-slimstat-admin.php:487 ../admin/wp-slimstat-admin.php:502
2034
- #: ../wp-slimstat.php:1797
2035
- msgid "Traffic Sources"
2036
- msgstr "Trafikkällor"
2037
-
2038
- # @ wp-slimstat
2039
- #: ../admin/view/wp-slimstat-reports.php:26
2040
- #: ../admin/view/wp-slimstat-reports.php:1364
2041
- #: ../admin/wp-slimstat-admin.php:488 ../admin/wp-slimstat-admin.php:503
2042
- #: ../wp-slimstat.php:1798
2043
- msgid "Geolocation"
2044
- msgstr "Geolokalisering"
2045
-
2046
- # @ wp-slimstat
2047
- #: ../admin/view/wp-slimstat-reports.php:27
2048
- msgid "WordPress Dashboard"
2049
- msgstr "Wordpress Panel"
2050
-
2051
- #: ../admin/view/wp-slimstat-reports.php:28
2052
- msgid "Inactive Reports"
2053
- msgstr "Inaktiva rapporter"
2054
-
2055
  # @ wp-slimstat
2056
- #: ../admin/view/wp-slimstat-reports.php:77
2057
  msgid "Chart controls"
2058
  msgstr "Kontroll av Diagram"
2059
 
2060
  # @ wp-slimstat
2061
- #: ../admin/view/wp-slimstat-reports.php:77
2062
  msgid "Use your mouse wheel to zoom in and out"
2063
  msgstr "Använd mus-hjulet för att zooma in eller ut."
2064
 
2065
  # @ wp-slimstat
2066
- #: ../admin/view/wp-slimstat-reports.php:77
2067
  msgid "While zooming in, drag the chart to move to a different area"
2068
  msgstr ""
2069
  "Medans man zoomar in, drag i kartan för att flytta till olika ställen på "
2070
  "kartan."
2071
 
2072
- #: ../admin/view/wp-slimstat-reports.php:80
2073
  msgid "Social Sharing Analytics"
2074
  msgstr "Social Sharing Analytics"
2075
 
2076
- #: ../admin/view/wp-slimstat-reports.php:87
2077
  msgid "Visitors Activity"
2078
  msgstr "Besökares Aktivitet"
2079
 
2080
  # @ wp-slimstat
2081
- #: ../admin/view/wp-slimstat-reports.php:96
2082
  msgid "Color codes"
2083
  msgstr "Färgkod"
2084
 
2085
  # @ wp-slimstat
2086
- #: ../admin/view/wp-slimstat-reports.php:96
2087
  msgid "From search result page"
2088
  msgstr "Från sökresultatsida"
2089
 
2090
  # @ wp-slimstat
2091
- #: ../admin/view/wp-slimstat-reports.php:96 ../admin/wp-slimstat-admin.php:844
2092
  msgid "Known Visitor"
2093
  msgstr "Känd besökare"
2094
 
2095
  # @ wp-slimstat
2096
- #: ../admin/view/wp-slimstat-reports.php:96
2097
  msgid "Known Users"
2098
  msgstr "Kända användare"
2099
 
2100
  # @ wp-slimstat
2101
- #: ../admin/view/wp-slimstat-reports.php:96
2102
  msgid "Other Humans"
2103
  msgstr "Andra människor"
2104
 
2105
  # @ wp-slimstat
2106
- #: ../admin/view/wp-slimstat-reports.php:96
2107
  msgid "Bot or Crawler"
2108
  msgstr "Spindlar"
2109
 
2110
  # @ wp-slimstat
2111
- #: ../admin/view/wp-slimstat-reports.php:118
2112
  msgid "About Slimstat"
2113
  msgstr "Om SlimStat"
2114
 
2115
- #: ../admin/view/wp-slimstat-reports.php:127
2116
  msgid "Traffic at a Glance"
2117
  msgstr "Överblick Trafik"
2118
 
2119
  # @ wp-slimstat
2120
- #: ../admin/view/wp-slimstat-reports.php:137
2121
  msgid "Currently Online"
2122
  msgstr "Nuvarande Online"
2123
 
2124
  # @ wp-slimstat
2125
- #: ../admin/view/wp-slimstat-reports.php:150
2126
  msgid "Recent Search Terms"
2127
  msgstr "Senaste Söktermer"
2128
 
2129
  # @ wp-slimstat
2130
- #: ../admin/view/wp-slimstat-reports.php:160
2131
  msgid "Keywords used by your visitors to find your website on a search engine."
2132
  msgstr ""
2133
  "Sökord som används av dina besökare att hitta din webbplats på en sökmotor."
2134
 
2135
  # @ wp-slimstat
2136
- #: ../admin/view/wp-slimstat-reports.php:163
2137
  msgid "Top Web Pages"
2138
  msgstr "Topp Websidor"
2139
 
2140
- #: ../admin/view/wp-slimstat-reports.php:174
2141
  msgid ""
2142
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
2143
  "site, including posts, products, categories, and so on. You can set the "
@@ -2152,27 +2103,27 @@ msgstr ""
2152
  "har."
2153
 
2154
  # @ wp-slimstat
2155
- #: ../admin/view/wp-slimstat-reports.php:177
2156
  msgid "Top Traffic Sources"
2157
  msgstr "Topp Trafikkällor"
2158
 
2159
  # @ wp-slimstat
2160
- #: ../admin/view/wp-slimstat-reports.php:189
2161
  msgid "Top Known Visitors"
2162
  msgstr "Topp Kända besökare"
2163
 
2164
  # @ wp-slimstat
2165
- #: ../admin/view/wp-slimstat-reports.php:200
2166
  msgid "Top Search Terms"
2167
  msgstr "Topp Söktermer"
2168
 
2169
  # @ wp-slimstat
2170
- #: ../admin/view/wp-slimstat-reports.php:211
2171
  msgid "Top Countries"
2172
  msgstr "Topp Länder"
2173
 
2174
  # @ wp-slimstat
2175
- #: ../admin/view/wp-slimstat-reports.php:220
2176
  msgid ""
2177
  "You can configure Slimstat to ignore a specific Country by setting the "
2178
  "corresponding filter under Settings > Slimstat > Filters."
@@ -2181,12 +2132,12 @@ msgstr ""
2181
  "motsvarande filter under Inställningar > Slimstat > Filter."
2182
 
2183
  # @ wp-slimstat
2184
- #: ../admin/view/wp-slimstat-reports.php:223
2185
  msgid "Rankings"
2186
  msgstr "Rankningar"
2187
 
2188
  # @ wp-slimstat
2189
- #: ../admin/view/wp-slimstat-reports.php:227
2190
  msgid ""
2191
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
2192
  "measures your site's rankings. Values are updated every 12 hours. Filters "
@@ -2197,17 +2148,17 @@ msgstr ""
2197
  "anges ovan gäller inte för den här rapporten."
2198
 
2199
  # @ wp-slimstat
2200
- #: ../admin/view/wp-slimstat-reports.php:230
2201
  msgid "Top Language Families"
2202
  msgstr "Topp Språk Familjer"
2203
 
2204
  # @ wp-slimstat
2205
- #: ../admin/view/wp-slimstat-reports.php:243
2206
  msgid "Users Currently Online"
2207
  msgstr "Användare fn Online"
2208
 
2209
  # @ wp-slimstat
2210
- #: ../admin/view/wp-slimstat-reports.php:254
2211
  msgid ""
2212
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2213
  "Slimstat leverages this information to identify returning visitors. Please "
@@ -2218,27 +2169,27 @@ msgstr ""
2218
  "besökare. Observera att besökare inkluderar registrerade användare."
2219
 
2220
  # @ wp-slimstat
2221
- #: ../admin/view/wp-slimstat-reports.php:267
2222
  msgid "Unique Terms"
2223
  msgstr "Unika Termer"
2224
 
2225
  # @ wp-slimstat
2226
- #: ../admin/view/wp-slimstat-reports.php:276
2227
  msgid "Human Visits"
2228
  msgstr "Mänskliga besök"
2229
 
2230
  # @ wp-slimstat
2231
- #: ../admin/view/wp-slimstat-reports.php:285
2232
- #: ../admin/view/wp-slimstat-reports.php:1431
2233
  msgid "Visits"
2234
  msgstr "Besök"
2235
 
2236
  # @ wp-slimstat
2237
- #: ../admin/view/wp-slimstat-reports.php:295
2238
  msgid "Audience Overview"
2239
  msgstr "Överblick Besökare"
2240
 
2241
- #: ../admin/view/wp-slimstat-reports.php:302
2242
  msgid ""
2243
  "Where not otherwise specified, the metrics in this report are referred to "
2244
  "human visitors."
@@ -2247,23 +2198,23 @@ msgstr ""
2247
  "besökare."
2248
 
2249
  # @ wp-slimstat
2250
- #: ../admin/view/wp-slimstat-reports.php:305
2251
  msgid "Top Languages"
2252
  msgstr "Topp Språk"
2253
 
2254
  # @ wp-slimstat
2255
- #: ../admin/view/wp-slimstat-reports.php:316
2256
  msgid "Top Browsers"
2257
  msgstr "Topp Webbläsare"
2258
 
2259
  # @ wp-slimstat
2260
- #: ../admin/view/wp-slimstat-reports.php:327
2261
  msgid "Top Service Providers"
2262
  msgstr "Topp Internetleverantör"
2263
 
2264
  # @ wp-slimstat
 
2265
  #: ../admin/view/wp-slimstat-reports.php:336
2266
- #: ../admin/view/wp-slimstat-reports.php:348
2267
  msgid ""
2268
  "Internet Service Provider: a company which provides other companies or "
2269
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -2277,25 +2228,25 @@ msgstr ""
2277
  "Inställningar > Slimstat > Filter."
2278
 
2279
  # @ wp-slimstat
2280
- #: ../admin/view/wp-slimstat-reports.php:339
2281
  msgid "Top Operating Systems"
2282
  msgstr "Topp OS"
2283
 
2284
  # @ wp-slimstat
2285
- #: ../admin/view/wp-slimstat-reports.php:351
2286
  msgid "Top Screen Resolutions"
2287
  msgstr "Topp Skärmupplösning"
2288
 
2289
- #: ../admin/view/wp-slimstat-reports.php:362
2290
  msgid "Top Viewport Sizes"
2291
  msgstr "Topp Viewport Storlek"
2292
 
2293
  # @ wp-slimstat
2294
- #: ../admin/view/wp-slimstat-reports.php:382
2295
  msgid "Visit Duration"
2296
  msgstr "Besöks Varaktighet"
2297
 
2298
- #: ../admin/view/wp-slimstat-reports.php:389
2299
  msgid ""
2300
  "All values represent the percentages of pageviews within the corresponding "
2301
  "time range."
@@ -2304,36 +2255,36 @@ msgstr ""
2304
  "tidsintervallet."
2305
 
2306
  # @ wp-slimstat
2307
- #: ../admin/view/wp-slimstat-reports.php:392
2308
  msgid "Recent Countries"
2309
  msgstr "Senaste Länder"
2310
 
2311
- #: ../admin/view/wp-slimstat-reports.php:403
2312
  msgid "Recent Viewport Sizes"
2313
  msgstr "Senaste Viewport Storlek"
2314
 
2315
  # @ wp-slimstat
2316
- #: ../admin/view/wp-slimstat-reports.php:414
2317
  msgid "Recent Operating Systems"
2318
  msgstr "Senaste OS"
2319
 
2320
  # @ wp-slimstat
2321
- #: ../admin/view/wp-slimstat-reports.php:425
2322
  msgid "Recent Browsers"
2323
  msgstr "Senaste Webbläsarna"
2324
 
2325
  # @ wp-slimstat
2326
- #: ../admin/view/wp-slimstat-reports.php:436
2327
  msgid "Recent Languages"
2328
  msgstr "Senaste Språk"
2329
 
2330
  # @ wp-slimstat
2331
- #: ../admin/view/wp-slimstat-reports.php:447
2332
  msgid "Top Browser Families"
2333
  msgstr "Topp Webbläsarfamiljer"
2334
 
2335
  # @ wp-slimstat
2336
- #: ../admin/view/wp-slimstat-reports.php:456
2337
  msgid ""
2338
  "This report shows you what user agent families (no version considered) are "
2339
  "popular among your visitors."
@@ -2342,12 +2293,12 @@ msgstr ""
2342
  "bland besökarna."
2343
 
2344
  # @ wp-slimstat
2345
- #: ../admin/view/wp-slimstat-reports.php:459
2346
  msgid "Top OS Families"
2347
  msgstr "Topp OS (opperativsystem) "
2348
 
2349
  # @ wp-slimstat
2350
- #: ../admin/view/wp-slimstat-reports.php:470
2351
  msgid ""
2352
  "This report shows you what operating system families (no version considered) "
2353
  "are popular among your visitors."
@@ -2356,82 +2307,89 @@ msgstr ""
2356
  "bland besökarna."
2357
 
2358
  # @ wp-slimstat
2359
- #: ../admin/view/wp-slimstat-reports.php:473
2360
  msgid "Recent Users"
2361
  msgstr "Senaste Användare"
2362
 
2363
  # @ wp-slimstat
2364
- #: ../admin/view/wp-slimstat-reports.php:485
2365
  msgid "Top Users"
2366
  msgstr "Topp Användare"
2367
 
2368
  # @ wp-slimstat
2369
- #: ../admin/view/wp-slimstat-reports.php:497
2370
- #: ../admin/view/wp-slimstat-reports.php:506
2371
  msgid "Users"
2372
  msgstr "Användare"
2373
 
2374
  # @ wp-slimstat
2375
- #: ../admin/view/wp-slimstat-reports.php:507
2376
  msgid "Unique Users"
2377
  msgstr "Unika Användare"
2378
 
2379
  # @ wp-slimstat
2380
- #: ../admin/view/wp-slimstat-reports.php:525
 
 
 
 
 
 
 
2381
  msgid "Domains"
2382
  msgstr "Domäner"
2383
 
2384
  # @ wp-slimstat
2385
- #: ../admin/view/wp-slimstat-reports.php:535
2386
  msgid "Traffic Summary"
2387
  msgstr "Sammanställning Trafik"
2388
 
2389
  # @ wp-slimstat
2390
- #: ../admin/view/wp-slimstat-reports.php:544
2391
  msgid "Top Referring Search Engines"
2392
  msgstr "Topp Sökmotorers hänvisning"
2393
 
2394
  # @ wp-slimstat
2395
- #: ../admin/view/wp-slimstat-reports.php:571
2396
  msgid "Recent Outbound Links"
2397
  msgstr "Senaste Utgående Länkar"
2398
 
2399
  # @ wp-slimstat
2400
- #: ../admin/view/wp-slimstat-reports.php:583
2401
  msgid "Recent Posts"
2402
  msgstr "Senaste Poster"
2403
 
2404
  # @ wp-slimstat
2405
- #: ../admin/view/wp-slimstat-reports.php:611
2406
  msgid "Recent Feeds"
2407
  msgstr "Senaste Feeds"
2408
 
2409
  # @ wp-slimstat
2410
- #: ../admin/view/wp-slimstat-reports.php:623
2411
  msgid "Recent Pages Not Found"
2412
  msgstr "Senaste Sidor Ej Funna"
2413
 
2414
  # @ wp-slimstat
2415
- #: ../admin/view/wp-slimstat-reports.php:635
2416
  msgid "Recent Internal Searches"
2417
  msgstr "Senaste Interna sökningar"
2418
 
2419
  # @ wp-slimstat
2420
- #: ../admin/view/wp-slimstat-reports.php:645
2421
  msgid "Searches performed using WordPress' built-in search functionality."
2422
  msgstr "Sökningar som görs med hjälp av Wordpress inbyggda sökfunktion."
2423
 
2424
  # @ wp-slimstat
2425
- #: ../admin/view/wp-slimstat-reports.php:648
2426
  msgid "Top Categories"
2427
  msgstr "Topp Kategorier"
2428
 
2429
  # @ wp-slimstat
2430
- #: ../admin/view/wp-slimstat-reports.php:661
2431
  msgid "Top Downloads"
2432
  msgstr "Topp nedladdningarna"
2433
 
2434
- #: ../admin/view/wp-slimstat-reports.php:672
2435
  msgid ""
2436
  "You can configure Slimstat to track specific file extensions as downloads."
2437
  msgstr ""
@@ -2439,12 +2397,12 @@ msgstr ""
2439
  "nedladdningar."
2440
 
2441
  # @ wp-slimstat
2442
- #: ../admin/view/wp-slimstat-reports.php:675
2443
  msgid "Recent Events"
2444
  msgstr "Senaste Events"
2445
 
2446
- #: ../admin/view/wp-slimstat-reports.php:684
2447
- #: ../admin/view/wp-slimstat-reports.php:708
2448
  msgid ""
2449
  "This report lists any <em>event</em> occurred on your website. Please refer "
2450
  "to the FAQ for more information on how to use this functionality."
@@ -2453,57 +2411,57 @@ msgstr ""
2453
  "Se FAQ för mer information om hur du använder den här funktionen."
2454
 
2455
  # @ wp-slimstat
2456
- #: ../admin/view/wp-slimstat-reports.php:687
2457
  msgid "Top Posts"
2458
  msgstr "Topp Poster"
2459
 
2460
  # @ wp-slimstat
2461
- #: ../admin/view/wp-slimstat-reports.php:699
2462
  msgid "Top Events"
2463
  msgstr "Topp Events"
2464
 
2465
  # @ wp-slimstat
2466
- #: ../admin/view/wp-slimstat-reports.php:711
2467
  msgid "Top Internal Searches"
2468
  msgstr "Topp Interna Sökningar"
2469
 
2470
  # @ wp-slimstat
2471
- #: ../admin/view/wp-slimstat-reports.php:723
2472
  msgid "Recent Categories"
2473
  msgstr "Senaste Kategorierna"
2474
 
2475
  # @ wp-slimstat
2476
- #: ../admin/view/wp-slimstat-reports.php:735
2477
  msgid "Top Pages Not Found"
2478
  msgstr "Topp Sidor Ej Funna"
2479
 
2480
  # @ wp-slimstat
2481
- #: ../admin/view/wp-slimstat-reports.php:747
2482
  msgid "Top Authors"
2483
  msgstr "Topp Författare"
2484
 
2485
  # @ wp-slimstat
2486
- #: ../admin/view/wp-slimstat-reports.php:758
2487
  msgid "Top Tags"
2488
  msgstr "Topp Taggar"
2489
 
2490
  # @ wp-slimstat
2491
- #: ../admin/view/wp-slimstat-reports.php:770
2492
  msgid "Recent Downloads"
2493
  msgstr "Senaste Nedladdningar"
2494
 
2495
  # @ wp-slimstat
2496
- #: ../admin/view/wp-slimstat-reports.php:782
2497
  msgid "Top Outbound Links"
2498
  msgstr "Topp Utgående Länk"
2499
 
2500
  # @ wp-slimstat
2501
- #: ../admin/view/wp-slimstat-reports.php:794
2502
  msgid "Your Website"
2503
  msgstr "Din Webbplats"
2504
 
2505
  # @ wp-slimstat
2506
- #: ../admin/view/wp-slimstat-reports.php:801
2507
  msgid ""
2508
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2509
  "this report is not affected by the filters set here above."
@@ -2512,143 +2470,150 @@ msgstr ""
2512
  "denna rapport inte påverkas av filtren som här ovan."
2513
 
2514
  # @ wp-slimstat
2515
- #: ../admin/view/wp-slimstat-reports.php:804
2516
  msgid "Top Bounce Pages"
2517
  msgstr "Topp Avvisande Sidor"
2518
 
2519
  # @ wp-slimstat
2520
- #: ../admin/view/wp-slimstat-reports.php:817
2521
  msgid "Top Exit Pages"
2522
  msgstr "Topp Utgångs-Sidor"
2523
 
2524
  # @ wp-slimstat
2525
- #: ../admin/view/wp-slimstat-reports.php:830
2526
  msgid "Top Entry Pages"
2527
  msgstr "Topp Ingångs-Sidor"
2528
 
2529
  # @ wp-slimstat
2530
- #: ../admin/view/wp-slimstat-reports.php:843
2531
- #: ../admin/view/wp-slimstat-reports.php:852
2532
  msgid "Outbound Links"
2533
  msgstr "Utgående Länkar"
2534
 
2535
- #: ../admin/view/wp-slimstat-reports.php:853
2536
  msgid "Unique Outbound"
2537
  msgstr "Inika Outbound"
2538
 
2539
  # @ wp-slimstat
2540
- #: ../admin/view/wp-slimstat-reports.php:862
2541
  msgid "World Map"
2542
  msgstr "Världskarta"
2543
 
2544
  # @ wp-slimstat
2545
- #: ../admin/view/wp-slimstat-reports.php:944
2546
  msgid "Refresh"
2547
  msgstr "Uppdatera varje"
2548
 
2549
  # @ wp-slimstat
2550
- #: ../admin/view/wp-slimstat-reports.php:981
2551
  #, php-format
2552
  msgid "Results %s - %s of %s"
2553
  msgstr "Resultat %s - %s av %s"
2554
 
2555
  # @ wp-slimstat
2556
- #: ../admin/view/wp-slimstat-reports.php:983
2557
  msgid "Refresh in"
2558
  msgstr "Uppdateras inom"
2559
 
2560
  # @ wp-slimstat
2561
- #: ../admin/view/wp-slimstat-reports.php:1076
2562
  msgid "Category ID"
2563
  msgstr "Kategori ID"
2564
 
2565
- #: ../admin/view/wp-slimstat-reports.php:1081
2566
- #: ../admin/view/wp-slimstat-reports.php:1096
2567
- #: ../admin/view/wp-slimstat-reports.php:1102
2568
  msgid "Code"
2569
  msgstr "Kod"
2570
 
2571
  # Unknown
2572
  # @ wp-slimstat
2573
- #: ../admin/view/wp-slimstat-reports.php:1097
2574
- #: ../languages/dynamic_strings.php:319 ../wp-slimstat.php:1421
2575
  msgid "l-"
2576
  msgstr "Okänd"
2577
 
2578
- #: ../admin/view/wp-slimstat-reports.php:1114
2579
  msgid "URL"
2580
  msgstr "URL"
2581
 
2582
  # @ wp-slimstat
2583
- #: ../admin/view/wp-slimstat-reports.php:1127
2584
  msgid "Referrer"
2585
  msgstr "Referera till"
2586
 
2587
  # @ wp-slimstat
2588
- #: ../admin/view/wp-slimstat-reports.php:1168
2589
- #: ../admin/view/wp-slimstat-reports.php:1415
2590
- #: ../admin/view/wp-slimstat-reports.php:1471
2591
- #: ../admin/view/wp-slimstat-reports.php:1477
2592
- #: ../admin/view/wp-slimstat-reports.php:1483
2593
- #: ../admin/view/wp-slimstat-reports.php:1489
2594
- #: ../admin/view/wp-slimstat-reports.php:1495
2595
- #: ../admin/view/wp-slimstat-reports.php:1501
2596
- #: ../admin/view/wp-slimstat-reports.php:1507
2597
- #: ../admin/view/wp-slimstat-reports.php:1727
2598
  msgid "Hits"
2599
  msgstr "Träffar"
2600
 
2601
  # @ wp-slimstat
2602
- #: ../admin/view/wp-slimstat-reports.php:1342
2603
  msgid "Dataset Size"
2604
  msgstr "Dataset Storlek"
2605
 
2606
- #: ../admin/view/wp-slimstat-reports.php:1344
2607
  msgid "Total number of records stored in the database."
2608
  msgstr "Totalt antal poster sparade i databasen"
2609
 
2610
  # @ wp-slimstat
2611
- #: ../admin/view/wp-slimstat-reports.php:1346
2612
  msgid "DB Size"
2613
  msgstr "DB Storlek"
2614
 
2615
  # @ wp-slimstat
2616
- #: ../admin/view/wp-slimstat-reports.php:1349
2617
  msgid "Tracking Enabled"
2618
  msgstr "Spårning Aktiverad"
2619
 
2620
  # @ wp-slimstat
2621
- #: ../admin/view/wp-slimstat-reports.php:1352
2622
  msgid "Javascript Mode"
2623
  msgstr "Javascript-läge"
2624
 
2625
  # @ wp-slimstat
2626
- #: ../admin/view/wp-slimstat-reports.php:1355
2627
  msgid "Tracking Browser Caps"
2628
  msgstr "Spåra Browser Caps"
2629
 
2630
  # @ wp-slimstat
2631
- #: ../admin/view/wp-slimstat-reports.php:1358
2632
  msgid "Auto purge"
2633
  msgstr "Autorensning"
2634
 
2635
  # @ wp-slimstat
2636
- #: ../admin/view/wp-slimstat-reports.php:1361
2637
  msgid "Oldest pageview"
2638
  msgstr "Äldsta sidvisning"
2639
 
2640
  # @ wp-slimstat
2641
- #: ../admin/view/wp-slimstat-reports.php:1362
2642
  msgid "No visits"
2643
  msgstr "Inga besök"
2644
 
2645
- #: ../admin/view/wp-slimstat-reports.php:1366
 
 
 
 
 
 
 
2646
  msgid "Date when the MaxMind Geolocation database was last updated."
2647
  msgstr "Datum då MaxMind Geolocation databasen senast uppdaterades."
2648
 
2649
  # @ wp-slimstat
2650
- #: ../admin/view/wp-slimstat-reports.php:1377
2651
- #: ../admin/view/wp-slimstat-reports.php:1535
2652
  msgid ""
2653
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2654
  "the tracking code is executed."
@@ -2657,17 +2622,17 @@ msgstr ""
2657
  "varje gång spårningskoden körs."
2658
 
2659
  # @ wp-slimstat
2660
- #: ../admin/view/wp-slimstat-reports.php:1379
2661
  msgid "Days in Range"
2662
  msgstr "Dagar inom intervallet"
2663
 
2664
  # @ wp-slimstat
2665
- #: ../admin/view/wp-slimstat-reports.php:1382
2666
  msgid "Average Daily Pageviews"
2667
  msgstr "Genomsnittlig Daglig Sidvisning"
2668
 
2669
  # @ wp-slimstat
2670
- #: ../admin/view/wp-slimstat-reports.php:1384
2671
  msgid ""
2672
  "How many pages have been visited on average every day during the current "
2673
  "period."
@@ -2676,12 +2641,12 @@ msgstr ""
2676
  "perioden."
2677
 
2678
  # @ wp-slimstat
2679
- #: ../admin/view/wp-slimstat-reports.php:1386
2680
  msgid "From Search Results"
2681
  msgstr "Från Sökresultat"
2682
 
2683
  # @ wp-slimstat
2684
- #: ../admin/view/wp-slimstat-reports.php:1388
2685
  msgid ""
2686
  "Visitors who landed on your site after searching for a keyword on Google, "
2687
  "Yahoo, etc."
@@ -2690,7 +2655,7 @@ msgstr ""
2690
  "Yahoo etc."
2691
 
2692
  # @ wp-slimstat
2693
- #: ../admin/view/wp-slimstat-reports.php:1392
2694
  msgid ""
2695
  "Used to differentiate between multiple requests to download a file from one "
2696
  "internet address (IP) and requests originating from many distinct addresses"
@@ -2699,12 +2664,12 @@ msgstr ""
2699
  "från en internet adress (IP) och förfrågningar från flera olika adresser"
2700
 
2701
  # @ wp-slimstat
2702
- #: ../admin/view/wp-slimstat-reports.php:1394
2703
  msgid "Last 30 minutes"
2704
  msgstr "Sista 30 minuterna"
2705
 
2706
  # @ wp-slimstat
2707
- #: ../admin/view/wp-slimstat-reports.php:1433
2708
  msgid ""
2709
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2710
  "multiple times if they perform multiple visits."
@@ -2713,17 +2678,17 @@ msgstr ""
2713
  "flera gånger om de utför flera besök."
2714
 
2715
  # @ wp-slimstat
2716
- #: ../admin/view/wp-slimstat-reports.php:1437
2717
  msgid "It includes only traffic generated by human visitors."
2718
  msgstr "Omfattar endast trafik som genereras av mänskliga besökare."
2719
 
2720
  # @ wp-slimstat
2721
- #: ../admin/view/wp-slimstat-reports.php:1439
2722
  msgid "Bounce rate"
2723
  msgstr "Avvisningsfrekvens"
2724
 
2725
  # @ wp-slimstat
2726
- #: ../admin/view/wp-slimstat-reports.php:1441
2727
  msgid ""
2728
  "Percentage of single-page visits, i.e. visits in which the person left your "
2729
  "site from the entrance page."
@@ -2732,92 +2697,92 @@ msgstr ""
2732
  "ingångssidan."
2733
 
2734
  # @ wp-slimstat
2735
- #: ../admin/view/wp-slimstat-reports.php:1443
2736
  msgid "Known visitors"
2737
  msgstr "Kända besökare"
2738
 
2739
  # @ wp-slimstat
2740
- #: ../admin/view/wp-slimstat-reports.php:1445
2741
  msgid "Visitors who had previously left a comment on your blog."
2742
  msgstr "Besökare som tidigare lämnade en kommentar på din blogg."
2743
 
2744
  # @ wp-slimstat
2745
- #: ../admin/view/wp-slimstat-reports.php:1447
2746
  msgid "New visitors"
2747
  msgstr "Nya besökare"
2748
 
2749
  # @ wp-slimstat
2750
- #: ../admin/view/wp-slimstat-reports.php:1449
2751
  msgid "Human users who visited your site only once."
2752
  msgstr "Mänskliga användare som besökt din sajt endast en gång."
2753
 
2754
  # @ wp-slimstat
2755
- #: ../admin/view/wp-slimstat-reports.php:1451
2756
  msgid "Bots"
2757
  msgstr "Bots"
2758
 
2759
  # @ wp-slimstat
2760
- #: ../admin/view/wp-slimstat-reports.php:1454
2761
  msgid "Pageviews per visit"
2762
  msgstr "Sidvisning per besök"
2763
 
2764
  # @ wp-slimstat
2765
- #: ../admin/view/wp-slimstat-reports.php:1457
2766
  msgid "Longest visit"
2767
  msgstr "Längsta besök"
2768
 
2769
  # @ wp-slimstat
2770
- #: ../admin/view/wp-slimstat-reports.php:1458
2771
  msgid "hits"
2772
  msgstr "träffar"
2773
 
2774
  # @ wp-slimstat
2775
- #: ../admin/view/wp-slimstat-reports.php:1469
2776
  msgid "0 - 30 seconds"
2777
  msgstr "0 - 30 sekunder"
2778
 
2779
  # @ wp-slimstat
2780
- #: ../admin/view/wp-slimstat-reports.php:1475
2781
  msgid "31 - 60 seconds"
2782
  msgstr "31 - 60 sekunder"
2783
 
2784
  # @ wp-slimstat
2785
- #: ../admin/view/wp-slimstat-reports.php:1481
2786
  msgid "1 - 3 minutes"
2787
  msgstr "1 - 3 minuter"
2788
 
2789
  # @ wp-slimstat
2790
- #: ../admin/view/wp-slimstat-reports.php:1487
2791
  msgid "3 - 5 minutes"
2792
  msgstr "3 - 5 minuter"
2793
 
2794
  # @ wp-slimstat
2795
- #: ../admin/view/wp-slimstat-reports.php:1493
2796
  msgid "5 - 7 minutes"
2797
  msgstr "5 - 7 minuter"
2798
 
2799
  # @ wp-slimstat
2800
- #: ../admin/view/wp-slimstat-reports.php:1499
2801
  msgid "7 - 10 minutes"
2802
  msgstr "7 - 10 minuter"
2803
 
2804
  # @ wp-slimstat
2805
- #: ../admin/view/wp-slimstat-reports.php:1505
2806
  msgid "More than 10 minutes"
2807
  msgstr "Mer än 10 minuter"
2808
 
2809
  # @ wp-slimstat
2810
- #: ../admin/view/wp-slimstat-reports.php:1517
2811
  msgid "Average visit duration"
2812
  msgstr "Genomsnittlig längd på besök"
2813
 
2814
  # @ wp-slimstat
2815
- #: ../admin/view/wp-slimstat-reports.php:1537
2816
  msgid "Unique Referrers"
2817
  msgstr "Unika Referrers"
2818
 
2819
  # @ wp-slimstat
2820
- #: ../admin/view/wp-slimstat-reports.php:1539
2821
  msgid ""
2822
  "A referrer (or referring site) is the site that a visitor previously visited "
2823
  "before following a link to your site."
@@ -2826,12 +2791,12 @@ msgstr ""
2826
  "tidigare besökt innan genom länk till din webbplats."
2827
 
2828
  # @ wp-slimstat
2829
- #: ../admin/view/wp-slimstat-reports.php:1541
2830
  msgid "Direct Pageviews"
2831
  msgstr "Direkt Sidvisning"
2832
 
2833
  # @ wp-slimstat
2834
- #: ../admin/view/wp-slimstat-reports.php:1543
2835
  msgid ""
2836
  "Visitors who visited the site by typing the URL directly into their browser. "
2837
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -2844,12 +2809,12 @@ msgstr ""
2844
  "eller länkar från handlingar som inte inbegriper spårnings variabler."
2845
 
2846
  # @ wp-slimstat
2847
- #: ../admin/view/wp-slimstat-reports.php:1545
2848
  msgid "From a search result"
2849
  msgstr "Från ett sökresultat"
2850
 
2851
  # @ wp-slimstat
2852
- #: ../admin/view/wp-slimstat-reports.php:1547
2853
  msgid ""
2854
  "Visitors who came to your site via searches on Google or some other search "
2855
  "engine."
@@ -2858,12 +2823,12 @@ msgstr ""
2858
  "sökmotor."
2859
 
2860
  # @ wp-slimstat
2861
- #: ../admin/view/wp-slimstat-reports.php:1549
2862
  msgid "Unique Landing Pages"
2863
  msgstr "Unika Landningssidor"
2864
 
2865
  # @ wp-slimstat
2866
- #: ../admin/view/wp-slimstat-reports.php:1551
2867
  msgid ""
2868
  "The first page that a user views during a session. This is also known as the "
2869
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -2876,21 +2841,21 @@ msgstr ""
2876
  "landningssida."
2877
 
2878
  # @ wp-slimstat
2879
- #: ../admin/view/wp-slimstat-reports.php:1553
2880
  msgid "Bounce Pages"
2881
  msgstr "Avvisande Sidor"
2882
 
2883
- #: ../admin/view/wp-slimstat-reports.php:1555
2884
  msgid "Number of single page visits to your site over the selected period."
2885
  msgstr "Antal enkelsidiga besök på din webbplats under den valda perioden."
2886
 
2887
  # @ wp-slimstat
2888
- #: ../admin/view/wp-slimstat-reports.php:1557
2889
  msgid "New Visitors Rate"
2890
  msgstr "Nya besökare Grad"
2891
 
2892
  # @ wp-slimstat
2893
- #: ../admin/view/wp-slimstat-reports.php:1559
2894
  msgid ""
2895
  "Percentage of single page visits, i.e. visits in which the person left your "
2896
  "site from the entrance page."
@@ -2899,12 +2864,12 @@ msgstr ""
2899
  "webbplatsen från ingångssidan."
2900
 
2901
  # @ wp-slimstat
2902
- #: ../admin/view/wp-slimstat-reports.php:1561
2903
  msgid "Currently from search engines"
2904
  msgstr "För närvarande från sökmotorer"
2905
 
2906
  # @ wp-slimstat
2907
- #: ../admin/view/wp-slimstat-reports.php:1563
2908
  msgid ""
2909
  "Visitors who visited the site in the last 5 minutes coming from a search "
2910
  "engine."
@@ -2913,27 +2878,27 @@ msgstr ""
2913
  "sökmotor."
2914
 
2915
  # @ wp-slimstat
2916
- #: ../admin/view/wp-slimstat-reports.php:1633
2917
  msgid "Number of pages in your site included in Google's index."
2918
  msgstr "Antal sidor i din webbplats i Googles index."
2919
 
2920
  # @ wp-slimstat
2921
- #: ../admin/view/wp-slimstat-reports.php:1634
2922
  msgid "Google Index"
2923
  msgstr "Google Index"
2924
 
2925
  # @ wp-slimstat
2926
- #: ../admin/view/wp-slimstat-reports.php:1635
2927
  msgid "Number of pages, according to Google, that link back to your site."
2928
  msgstr "Antal sidor, enligt Google, som länkar tillbaka till din webbplats."
2929
 
2930
  # @ wp-slimstat
2931
- #: ../admin/view/wp-slimstat-reports.php:1636
2932
  msgid "Google Backlinks"
2933
  msgstr "Google bakåtlänkar"
2934
 
2935
  # @ wp-slimstat
2936
- #: ../admin/view/wp-slimstat-reports.php:1637
2937
  msgid ""
2938
  "How many times the Facebook Like button has been approximately clicked on "
2939
  "your site."
@@ -2942,34 +2907,34 @@ msgstr ""
2942
  "webbplats."
2943
 
2944
  # @ wp-slimstat
2945
- #: ../admin/view/wp-slimstat-reports.php:1638
2946
  msgid "Facebook Likes"
2947
  msgstr "Facebook Gillas"
2948
 
2949
  # @ wp-slimstat
2950
- #: ../admin/view/wp-slimstat-reports.php:1639
2951
  msgid ""
2952
  "How many times your site has been shared by someone on the social network."
2953
  msgstr ""
2954
  "Hur många gånger din webbplats har delat med någon på det sociala nätverket."
2955
 
2956
  # @ wp-slimstat
2957
- #: ../admin/view/wp-slimstat-reports.php:1640
2958
  msgid "Facebook Shares"
2959
  msgstr "Facebook Delning"
2960
 
2961
  # @ wp-slimstat
2962
- #: ../admin/view/wp-slimstat-reports.php:1641
2963
  msgid "How many times links to your website have been clicked on Facebook."
2964
  msgstr "Hur många gånger länkar till din webbplats har klickats på Facebook."
2965
 
2966
  # @ wp-slimstat
2967
- #: ../admin/view/wp-slimstat-reports.php:1642
2968
  msgid "Facebook Clicks"
2969
  msgstr "Facebook klick"
2970
 
2971
  # @ wp-slimstat
2972
- #: ../admin/view/wp-slimstat-reports.php:1643
2973
  msgid ""
2974
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2975
  "traffic data."
@@ -2978,27 +2943,27 @@ msgstr ""
2978
  "trafikdata."
2979
 
2980
  # @ wp-slimstat
2981
- #: ../admin/view/wp-slimstat-reports.php:1644
2982
  msgid "Alexa World Rank"
2983
  msgstr "Alexa Världs Rankning"
2984
 
2985
  # @ wp-slimstat
2986
- #: ../admin/view/wp-slimstat-reports.php:1645
2987
  msgid "Alexa Country Rank"
2988
  msgstr "Alexa Lands Rankning"
2989
 
2990
  # @ wp-slimstat
2991
- #: ../admin/view/wp-slimstat-reports.php:1646
2992
  msgid "Alexa Popularity"
2993
  msgstr "Alexa Popularitet"
2994
 
2995
  # @ wp-slimstat
2996
- #: ../admin/view/wp-slimstat-reports.php:1657
2997
  msgid "Content Items"
2998
  msgstr "Innehållsposter"
2999
 
3000
  # @ wp-slimstat
3001
- #: ../admin/view/wp-slimstat-reports.php:1659
3002
  msgid ""
3003
  "This value includes not only posts, but also custom post types, regardless "
3004
  "of their status"
@@ -3007,37 +2972,37 @@ msgstr ""
3007
  "oavsett deras status"
3008
 
3009
  # @ wp-slimstat
3010
- #: ../admin/view/wp-slimstat-reports.php:1661
3011
  msgid "Posts"
3012
  msgstr "Inlägg"
3013
 
3014
  # @ wp-slimstat
3015
- #: ../admin/view/wp-slimstat-reports.php:1664
3016
  msgid "Pages"
3017
  msgstr "Sidor"
3018
 
3019
- #: ../admin/view/wp-slimstat-reports.php:1667
3020
  msgid "Attachments"
3021
  msgstr "Bilagor"
3022
 
3023
  # @ wp-slimstat
3024
- #: ../admin/view/wp-slimstat-reports.php:1670
3025
  msgid "Revisions"
3026
  msgstr "Revideringar"
3027
 
3028
- #: ../admin/view/wp-slimstat-reports.php:1673
3029
  msgid "Comments"
3030
  msgstr "Kommentarer"
3031
 
3032
- #: ../admin/view/wp-slimstat-reports.php:1676
3033
  msgid "Avg Comments per Post"
3034
  msgstr "G.snitt kommentarer per Inlägg"
3035
 
3036
- #: ../admin/view/wp-slimstat-reports.php:1679
3037
  msgid "Avg Server Latency"
3038
  msgstr "G.snitt Server latens"
3039
 
3040
- #: ../admin/view/wp-slimstat-reports.php:1681
3041
  msgid ""
3042
  "Latency is the amount of time it takes for the host server to receive and "
3043
  "process a request for a page object. The amount of latency depends largely "
@@ -3048,23 +3013,23 @@ msgstr ""
3048
  "hur långt bort användaren är från servern."
3049
 
3050
  # @ wp-slimstat
3051
- #: ../admin/view/wp-slimstat-reports.php:1724
3052
  msgid "Coordinates"
3053
  msgstr "Koordinater"
3054
 
3055
- #: ../admin/view/wp-slimstat-reports.php:1724
3056
  msgid "Date"
3057
  msgstr "Datum"
3058
 
3059
- #: ../admin/view/wp-slimstat-reports.php:1761
3060
  msgid "Error contacting the GetSocial endpoint."
3061
  msgstr "Fel vid kontakt med GetSocial."
3062
 
3063
- #: ../admin/view/wp-slimstat-reports.php:1769
3064
  msgid "Error decoding the GetSocial payload."
3065
  msgstr "Fel avkodning av GetSocial nyttolast."
3066
 
3067
- #: ../admin/view/wp-slimstat-reports.php:1801
3068
  msgid ""
3069
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
3070
  ">social media metrics and identify your top performing posts.<br/> <a "
@@ -3076,1409 +3041,1439 @@ msgstr ""
3076
 
3077
  # Unknown
3078
  # @ wp-slimstat
3079
- #: ../admin/view/wp-slimstat-reports.php:1811
3080
  msgid "c-xx"
3081
  msgstr "Okänd"
3082
 
3083
  # Afghanistan
3084
  # @ wp-slimstat
3085
- #: ../admin/view/wp-slimstat-reports.php:1811
3086
  msgid "c-af"
3087
  msgstr "Afghanistan"
3088
 
3089
  # Åland Islands
3090
  # @ wp-slimstat
3091
- #: ../admin/view/wp-slimstat-reports.php:1811
3092
  msgid "c-ax"
3093
  msgstr "Åland"
3094
 
3095
  # Albania
3096
  # @ wp-slimstat
3097
- #: ../admin/view/wp-slimstat-reports.php:1811
3098
  msgid "c-al"
3099
  msgstr "Albanien"
3100
 
3101
  # Algeria
3102
  # @ wp-slimstat
3103
- #: ../admin/view/wp-slimstat-reports.php:1811
3104
  msgid "c-dz"
3105
  msgstr "Algeriet"
3106
 
3107
  # Andorra
3108
  # @ wp-slimstat
3109
- #: ../admin/view/wp-slimstat-reports.php:1811
3110
  msgid "c-ad"
3111
  msgstr "Andorra"
3112
 
3113
  # Angola
3114
  # @ wp-slimstat
3115
- #: ../admin/view/wp-slimstat-reports.php:1811
3116
  msgid "c-ao"
3117
  msgstr "Angola"
3118
 
3119
  # Anguilla
3120
  # @ wp-slimstat
3121
- #: ../admin/view/wp-slimstat-reports.php:1811
3122
  msgid "c-ai"
3123
  msgstr "Anguilla"
3124
 
3125
  # Antigua and Barbuda
3126
  # @ wp-slimstat
3127
- #: ../admin/view/wp-slimstat-reports.php:1811
3128
  msgid "c-ag"
3129
  msgstr "Antigua och Barbuda"
3130
 
3131
  # Argentina
3132
  # @ wp-slimstat
3133
- #: ../admin/view/wp-slimstat-reports.php:1811
3134
  msgid "c-ar"
3135
  msgstr "Argentina"
3136
 
3137
  # Armenia
3138
  # @ wp-slimstat
3139
- #: ../admin/view/wp-slimstat-reports.php:1811
3140
  msgid "c-am"
3141
  msgstr "Armenien"
3142
 
3143
  # Aruba
3144
  # @ wp-slimstat
3145
- #: ../admin/view/wp-slimstat-reports.php:1811
3146
  msgid "c-aw"
3147
  msgstr "Aruba"
3148
 
3149
  # Australia
3150
  # @ wp-slimstat
3151
- #: ../admin/view/wp-slimstat-reports.php:1811
3152
  msgid "c-au"
3153
  msgstr "Australien"
3154
 
3155
  # Austria
3156
  # @ wp-slimstat
3157
- #: ../admin/view/wp-slimstat-reports.php:1811
3158
  msgid "c-at"
3159
  msgstr "Österrike"
3160
 
3161
  # Azerbaijan
3162
  # @ wp-slimstat
3163
- #: ../admin/view/wp-slimstat-reports.php:1811
3164
  msgid "c-az"
3165
  msgstr "Azerbajdzjan"
3166
 
3167
  # Bahamas
3168
  # @ wp-slimstat
3169
- #: ../admin/view/wp-slimstat-reports.php:1811
3170
  msgid "c-bs"
3171
  msgstr "Bahamas"
3172
 
3173
  # Bahrain
3174
  # @ wp-slimstat
3175
- #: ../admin/view/wp-slimstat-reports.php:1811
3176
  msgid "c-bh"
3177
  msgstr "Bahrain"
3178
 
3179
  # Bangladesh
3180
  # @ wp-slimstat
3181
- #: ../admin/view/wp-slimstat-reports.php:1811
3182
  msgid "c-bd"
3183
  msgstr "Bangladesh"
3184
 
3185
  # Barbados
3186
  # @ wp-slimstat
3187
- #: ../admin/view/wp-slimstat-reports.php:1811
3188
  msgid "c-bb"
3189
  msgstr "Barbados"
3190
 
3191
  # Belarus
3192
  # @ wp-slimstat
3193
- #: ../admin/view/wp-slimstat-reports.php:1811
3194
  msgid "c-by"
3195
  msgstr "Belarus"
3196
 
3197
  # Belgium
3198
  # @ wp-slimstat
3199
- #: ../admin/view/wp-slimstat-reports.php:1811
3200
  msgid "c-be"
3201
  msgstr "Belgien"
3202
 
3203
  # Belize
3204
  # @ wp-slimstat
3205
- #: ../admin/view/wp-slimstat-reports.php:1811
3206
  msgid "c-bz"
3207
  msgstr "Belize"
3208
 
3209
  # Benin
3210
  # @ wp-slimstat
3211
- #: ../admin/view/wp-slimstat-reports.php:1811
3212
  msgid "c-bj"
3213
  msgstr "Benin"
3214
 
3215
  # Bermuda
3216
  # @ wp-slimstat
3217
- #: ../admin/view/wp-slimstat-reports.php:1811
3218
  msgid "c-bm"
3219
  msgstr "Bermuda"
3220
 
3221
  # Bhutan
3222
  # @ wp-slimstat
3223
- #: ../admin/view/wp-slimstat-reports.php:1811
3224
  msgid "c-bt"
3225
  msgstr "Bhutan"
3226
 
3227
  # Bolivia
3228
  # @ wp-slimstat
3229
- #: ../admin/view/wp-slimstat-reports.php:1811
3230
  msgid "c-bo"
3231
  msgstr "Bolivia"
3232
 
3233
  # Bosnia and Herzegovina
3234
  # @ wp-slimstat
3235
- #: ../admin/view/wp-slimstat-reports.php:1811
3236
  msgid "c-ba"
3237
  msgstr "Bosnien och Hercegovina"
3238
 
3239
  # Botswana
3240
  # @ wp-slimstat
3241
- #: ../admin/view/wp-slimstat-reports.php:1811
3242
  msgid "c-bw"
3243
  msgstr "Botswana"
3244
 
3245
  # Brazil
3246
  # @ wp-slimstat
3247
- #: ../admin/view/wp-slimstat-reports.php:1811
3248
  msgid "c-br"
3249
  msgstr "Brazilien"
3250
 
3251
  # Brunei Darussalam
3252
  # @ wp-slimstat
3253
- #: ../admin/view/wp-slimstat-reports.php:1811
3254
  msgid "c-bn"
3255
  msgstr "Brunei"
3256
 
3257
  # Bulgaria
3258
  # @ wp-slimstat
3259
- #: ../admin/view/wp-slimstat-reports.php:1811
3260
  msgid "c-bg"
3261
  msgstr "Bulgarien"
3262
 
3263
  # Burkina Faso
3264
  # @ wp-slimstat
3265
- #: ../admin/view/wp-slimstat-reports.php:1811
3266
  msgid "c-bf"
3267
  msgstr "Burkina Faso"
3268
 
3269
  # Burundi
3270
  # @ wp-slimstat
3271
- #: ../admin/view/wp-slimstat-reports.php:1811
3272
  msgid "c-bi"
3273
  msgstr "Burundi"
3274
 
3275
  # Cambodia
3276
  # @ wp-slimstat
3277
- #: ../admin/view/wp-slimstat-reports.php:1811
3278
  msgid "c-kh"
3279
  msgstr "Kambodja"
3280
 
3281
  # Cameroon
3282
  # @ wp-slimstat
3283
- #: ../admin/view/wp-slimstat-reports.php:1811
3284
  msgid "c-cm"
3285
  msgstr "Kamerun"
3286
 
3287
  # Canada
3288
  # @ wp-slimstat
3289
- #: ../admin/view/wp-slimstat-reports.php:1811
3290
  msgid "c-ca"
3291
  msgstr "Kanada"
3292
 
3293
  # Cape Verde
3294
  # @ wp-slimstat
3295
- #: ../admin/view/wp-slimstat-reports.php:1811
3296
  msgid "c-cv"
3297
  msgstr "Kap Verde"
3298
 
3299
  # Cayman Islands
3300
  # @ wp-slimstat
3301
- #: ../admin/view/wp-slimstat-reports.php:1811
3302
  msgid "c-ky"
3303
  msgstr "Caymanöarna"
3304
 
3305
  # Central African Republic
3306
  # @ wp-slimstat
3307
- #: ../admin/view/wp-slimstat-reports.php:1811
3308
  msgid "c-cf"
3309
  msgstr "Centralafricanska Republiken"
3310
 
3311
  # Chad
3312
  # @ wp-slimstat
3313
- #: ../admin/view/wp-slimstat-reports.php:1811
3314
  msgid "c-td"
3315
  msgstr "Chad"
3316
 
3317
  # Chile
3318
  # @ wp-slimstat
3319
- #: ../admin/view/wp-slimstat-reports.php:1811
3320
  msgid "c-cl"
3321
  msgstr "Chile"
3322
 
3323
  # China
3324
  # @ wp-slimstat
3325
- #: ../admin/view/wp-slimstat-reports.php:1811
3326
  msgid "c-cn"
3327
  msgstr "Kina"
3328
 
3329
  # Colombia
3330
  # @ wp-slimstat
3331
- #: ../admin/view/wp-slimstat-reports.php:1811
3332
  msgid "c-co"
3333
  msgstr "Colombia"
3334
 
3335
  # Comoros
3336
  # @ wp-slimstat
3337
- #: ../admin/view/wp-slimstat-reports.php:1811
3338
  msgid "c-km"
3339
  msgstr "Komorerna"
3340
 
3341
  # Congo
3342
  # @ wp-slimstat
3343
- #: ../admin/view/wp-slimstat-reports.php:1811
3344
  msgid "c-cg"
3345
  msgstr "Kongo"
3346
 
3347
  # The Democratic Republic of the Congo
3348
  # @ wp-slimstat
3349
- #: ../admin/view/wp-slimstat-reports.php:1811
3350
  msgid "c-cd"
3351
  msgstr "Kongo, Demokratiska republiken"
3352
 
3353
  # Costa Rica
3354
  # @ wp-slimstat
3355
- #: ../admin/view/wp-slimstat-reports.php:1811
3356
  msgid "c-cr"
3357
  msgstr "Costa Rica"
3358
 
3359
  # Côte d'Ivoire
3360
  # @ wp-slimstat
3361
- #: ../admin/view/wp-slimstat-reports.php:1811
3362
  msgid "c-ci"
3363
  msgstr "Côte d'Ivoire"
3364
 
3365
  # Croatia
3366
  # @ wp-slimstat
3367
- #: ../admin/view/wp-slimstat-reports.php:1811
3368
  msgid "c-hr"
3369
  msgstr "Kroatien"
3370
 
3371
  # Cuba
3372
  # @ wp-slimstat
3373
- #: ../admin/view/wp-slimstat-reports.php:1811
3374
  msgid "c-cu"
3375
  msgstr "Kuba"
3376
 
3377
  # Cyprus
3378
  # @ wp-slimstat
3379
- #: ../admin/view/wp-slimstat-reports.php:1811
3380
  msgid "c-cy"
3381
  msgstr "Cypern"
3382
 
3383
  # Czech Republic
3384
  # @ wp-slimstat
3385
- #: ../admin/view/wp-slimstat-reports.php:1811
3386
  msgid "c-cz"
3387
  msgstr "Tjeckien"
3388
 
3389
  # Denmark
3390
  # @ wp-slimstat
3391
- #: ../admin/view/wp-slimstat-reports.php:1811
3392
  msgid "c-dk"
3393
  msgstr "Danmark"
3394
 
3395
  # Djibouti
3396
  # @ wp-slimstat
3397
- #: ../admin/view/wp-slimstat-reports.php:1811
3398
  msgid "c-dj"
3399
  msgstr "Djibouti"
3400
 
3401
  # Dominica
3402
  # @ wp-slimstat
3403
- #: ../admin/view/wp-slimstat-reports.php:1811
3404
  msgid "c-dm"
3405
  msgstr "Dominica"
3406
 
3407
  # Dominican Republic
3408
  # @ wp-slimstat
3409
- #: ../admin/view/wp-slimstat-reports.php:1811
3410
  msgid "c-do"
3411
  msgstr "Dominikanska republiken"
3412
 
3413
  # Ecuador
3414
  # @ wp-slimstat
3415
- #: ../admin/view/wp-slimstat-reports.php:1811
3416
  msgid "c-ec"
3417
  msgstr "Ecuador"
3418
 
3419
  # Egypt
3420
  # @ wp-slimstat
3421
- #: ../admin/view/wp-slimstat-reports.php:1811
3422
  msgid "c-eg"
3423
  msgstr "Egypten"
3424
 
3425
  # El Salvador
3426
  # @ wp-slimstat
3427
- #: ../admin/view/wp-slimstat-reports.php:1811
3428
  msgid "c-sv"
3429
  msgstr "El Salvador"
3430
 
3431
  # Equatorial Guinea
3432
  # @ wp-slimstat
3433
- #: ../admin/view/wp-slimstat-reports.php:1811
3434
  msgid "c-gq"
3435
  msgstr "Ekvatorialguinea"
3436
 
3437
  # Eritrea
3438
  # @ wp-slimstat
3439
- #: ../admin/view/wp-slimstat-reports.php:1811
3440
  msgid "c-er"
3441
  msgstr "Eritrea"
3442
 
3443
  # Estonia
3444
  # @ wp-slimstat
3445
- #: ../admin/view/wp-slimstat-reports.php:1811
3446
  msgid "c-ee"
3447
  msgstr "Estland"
3448
 
3449
  # Ethiopia
3450
  # @ wp-slimstat
3451
- #: ../admin/view/wp-slimstat-reports.php:1811
3452
  msgid "c-et"
3453
  msgstr "Ethiopien"
3454
 
3455
  # Faroe Islands
3456
  # @ wp-slimstat
3457
- #: ../admin/view/wp-slimstat-reports.php:1811
3458
  msgid "c-fo"
3459
  msgstr "Färöarna"
3460
 
3461
  # Falkland Islands (Malvinas)
3462
  # @ wp-slimstat
3463
- #: ../admin/view/wp-slimstat-reports.php:1811
3464
  msgid "c-fk"
3465
  msgstr "Falklandsöarna"
3466
 
3467
  # Fiji
3468
  # @ wp-slimstat
3469
- #: ../admin/view/wp-slimstat-reports.php:1811
3470
  msgid "c-fj"
3471
  msgstr "Fijiöarna"
3472
 
3473
  # Finland
3474
  # @ wp-slimstat
3475
- #: ../admin/view/wp-slimstat-reports.php:1811
3476
  msgid "c-fi"
3477
  msgstr "Finland"
3478
 
3479
  # France
3480
  # @ wp-slimstat
3481
- #: ../admin/view/wp-slimstat-reports.php:1811
3482
  msgid "c-fr"
3483
  msgstr "Frankrike"
3484
 
3485
  # French Guiana
3486
  # @ wp-slimstat
3487
- #: ../admin/view/wp-slimstat-reports.php:1811
3488
  msgid "c-gf"
3489
  msgstr "Franska Guinea"
3490
 
3491
  # Gabon
3492
  # @ wp-slimstat
3493
- #: ../admin/view/wp-slimstat-reports.php:1811
3494
  msgid "c-ga"
3495
  msgstr "Gabon, Republiken"
3496
 
3497
  # Gambia
3498
  # @ wp-slimstat
3499
- #: ../admin/view/wp-slimstat-reports.php:1811
3500
  msgid "c-gm"
3501
  msgstr "Gambia"
3502
 
3503
  # Georgia
3504
  # @ wp-slimstat
3505
- #: ../admin/view/wp-slimstat-reports.php:1811
3506
  msgid "c-ge"
3507
  msgstr "Georgien"
3508
 
3509
  # Germany
3510
  # @ wp-slimstat
3511
- #: ../admin/view/wp-slimstat-reports.php:1811
3512
  msgid "c-de"
3513
  msgstr "Tyskland"
3514
 
3515
  # Ghana
3516
  # @ wp-slimstat
3517
- #: ../admin/view/wp-slimstat-reports.php:1811
3518
  msgid "c-gh"
3519
  msgstr "Ghana"
3520
 
3521
  # Greece
3522
  # @ wp-slimstat
3523
- #: ../admin/view/wp-slimstat-reports.php:1811
3524
  msgid "c-gr"
3525
  msgstr "Grekland"
3526
 
3527
  # Greenland
3528
  # @ wp-slimstat
3529
- #: ../admin/view/wp-slimstat-reports.php:1811
3530
  msgid "c-gl"
3531
  msgstr "Grönland"
3532
 
3533
  # Grenada
3534
  # @ wp-slimstat
3535
- #: ../admin/view/wp-slimstat-reports.php:1811
3536
  msgid "c-gd"
3537
  msgstr "Grenada"
3538
 
3539
  # Guadeloupe
3540
  # @ wp-slimstat
3541
- #: ../admin/view/wp-slimstat-reports.php:1811
3542
  msgid "c-gp"
3543
  msgstr "Guadeloupe"
3544
 
3545
  # Guatemala
3546
  # @ wp-slimstat
3547
- #: ../admin/view/wp-slimstat-reports.php:1811
3548
  msgid "c-gt"
3549
  msgstr "Guatemala"
3550
 
3551
  # Guinea
3552
  # @ wp-slimstat
3553
- #: ../admin/view/wp-slimstat-reports.php:1811
3554
  msgid "c-gn"
3555
  msgstr "Guinea"
3556
 
3557
  # Guinea-Bissau
3558
  # @ wp-slimstat
3559
- #: ../admin/view/wp-slimstat-reports.php:1811
3560
  msgid "c-gw"
3561
  msgstr "Guinea-Bissau"
3562
 
3563
  # Guyana
3564
  # @ wp-slimstat
3565
- #: ../admin/view/wp-slimstat-reports.php:1811
3566
  msgid "c-gy"
3567
  msgstr "Guyana"
3568
 
3569
  # Haiti
3570
  # @ wp-slimstat
3571
- #: ../admin/view/wp-slimstat-reports.php:1811
3572
  msgid "c-ht"
3573
  msgstr "Haiti"
3574
 
3575
  # Honduras
3576
  # @ wp-slimstat
3577
- #: ../admin/view/wp-slimstat-reports.php:1811
3578
  msgid "c-hn"
3579
  msgstr "Honduras"
3580
 
3581
  # Hong Kong
3582
  # @ wp-slimstat
3583
- #: ../admin/view/wp-slimstat-reports.php:1811
3584
  msgid "c-hk"
3585
  msgstr "Hongkong"
3586
 
3587
  # Hungary
3588
  # @ wp-slimstat
3589
- #: ../admin/view/wp-slimstat-reports.php:1811
3590
  msgid "c-hu"
3591
  msgstr "Ungern"
3592
 
3593
  # Iceland
3594
  # @ wp-slimstat
3595
- #: ../admin/view/wp-slimstat-reports.php:1811
3596
  msgid "c-is"
3597
  msgstr "Island"
3598
 
3599
  # India
3600
  # @ wp-slimstat
3601
- #: ../admin/view/wp-slimstat-reports.php:1811
3602
  msgid "c-in"
3603
  msgstr "Indien"
3604
 
3605
  # Indonesia
3606
  # @ wp-slimstat
3607
- #: ../admin/view/wp-slimstat-reports.php:1811
3608
  msgid "c-id"
3609
  msgstr "Indonesien"
3610
 
3611
  # Islamic Republic of Iran
3612
  # @ wp-slimstat
3613
- #: ../admin/view/wp-slimstat-reports.php:1811
3614
  msgid "c-ir"
3615
  msgstr "Iran, Islamiska republiken"
3616
 
3617
  # Iraq
3618
  # @ wp-slimstat
3619
- #: ../admin/view/wp-slimstat-reports.php:1811
3620
  msgid "c-iq"
3621
  msgstr "Irak"
3622
 
3623
  # Ireland
3624
  # @ wp-slimstat
3625
- #: ../admin/view/wp-slimstat-reports.php:1811
3626
  msgid "c-ie"
3627
  msgstr "Ireland"
3628
 
3629
  # Israel
3630
  # @ wp-slimstat
3631
- #: ../admin/view/wp-slimstat-reports.php:1811
3632
  msgid "c-il"
3633
  msgstr "Israel"
3634
 
3635
  # Italy
3636
  # @ wp-slimstat
3637
- #: ../admin/view/wp-slimstat-reports.php:1811
3638
  msgid "c-it"
3639
  msgstr "Italien"
3640
 
3641
  # Jamaica
3642
  # @ wp-slimstat
3643
- #: ../admin/view/wp-slimstat-reports.php:1811
3644
  msgid "c-jm"
3645
  msgstr "Jamaica"
3646
 
3647
  # Japan
3648
  # @ wp-slimstat
3649
- #: ../admin/view/wp-slimstat-reports.php:1811
3650
  msgid "c-jp"
3651
  msgstr "Japan"
3652
 
3653
  # Jordan
3654
  # @ wp-slimstat
3655
- #: ../admin/view/wp-slimstat-reports.php:1811
3656
  msgid "c-jo"
3657
  msgstr "Jordanien"
3658
 
3659
  # Kazakhstan
3660
  # @ wp-slimstat
3661
- #: ../admin/view/wp-slimstat-reports.php:1811
3662
  msgid "c-kz"
3663
  msgstr "Kazakstan"
3664
 
3665
  # Kenya
3666
  # @ wp-slimstat
3667
- #: ../admin/view/wp-slimstat-reports.php:1811
3668
  msgid "c-ke"
3669
  msgstr "Kenya"
3670
 
3671
  # Nauru
3672
  # @ wp-slimstat
3673
- #: ../admin/view/wp-slimstat-reports.php:1811
3674
  msgid "c-nr"
3675
  msgstr "Nauru"
3676
 
3677
  # Democratic People's Republic of Korea
3678
  # @ wp-slimstat
3679
- #: ../admin/view/wp-slimstat-reports.php:1811
3680
  msgid "c-kp"
3681
  msgstr "Korea, Demokratiska folkrepubliken"
3682
 
3683
  # Republic of Korea
3684
  # @ wp-slimstat
3685
- #: ../admin/view/wp-slimstat-reports.php:1811
3686
  msgid "c-kr"
3687
  msgstr "Korea, Republiken"
3688
 
3689
  # @ wp-slimstat
3690
- #: ../admin/view/wp-slimstat-reports.php:1811
3691
  msgid "c-kv"
3692
  msgstr "Kosovo"
3693
 
3694
  # Kuwait
3695
  # @ wp-slimstat
3696
- #: ../admin/view/wp-slimstat-reports.php:1811
3697
  msgid "c-kw"
3698
  msgstr "Kuwait"
3699
 
3700
  # Kyrgyzstan
3701
  # @ wp-slimstat
3702
- #: ../admin/view/wp-slimstat-reports.php:1811
3703
  msgid "c-kg"
3704
  msgstr "Kirgizistan, Republiken"
3705
 
3706
  # Lao People's Democratic Republic
3707
  # @ wp-slimstat
3708
- #: ../admin/view/wp-slimstat-reports.php:1811
3709
  msgid "c-la"
3710
  msgstr "Laos, Demokratiska folkrepubliken"
3711
 
3712
  # Latvia
3713
  # @ wp-slimstat
3714
- #: ../admin/view/wp-slimstat-reports.php:1811
3715
  msgid "c-lv"
3716
  msgstr "Lettland"
3717
 
3718
  # Lebanon
3719
  # @ wp-slimstat
3720
- #: ../admin/view/wp-slimstat-reports.php:1811
3721
  msgid "c-lb"
3722
  msgstr "Libanon"
3723
 
3724
  # Lesotho
3725
  # @ wp-slimstat
3726
- #: ../admin/view/wp-slimstat-reports.php:1811
3727
  msgid "c-ls"
3728
  msgstr "Lesotho"
3729
 
3730
  # Liberia
3731
  # @ wp-slimstat
3732
- #: ../admin/view/wp-slimstat-reports.php:1811
3733
  msgid "c-lr"
3734
  msgstr "Liberia"
3735
 
3736
  # Libyan Arab Jamahiriya
3737
  # @ wp-slimstat
3738
- #: ../admin/view/wp-slimstat-reports.php:1811
3739
  msgid "c-ly"
3740
  msgstr "Socialistiska folkliga libyska arabiska Jamahiriya"
3741
 
3742
  # Liechtenstein
3743
  # @ wp-slimstat
3744
- #: ../admin/view/wp-slimstat-reports.php:1811
3745
  msgid "c-li"
3746
  msgstr "Liechtenstein"
3747
 
3748
  # Lithuania
3749
  # @ wp-slimstat
3750
- #: ../admin/view/wp-slimstat-reports.php:1811
3751
  msgid "c-lt"
3752
  msgstr "Litauen"
3753
 
3754
  # Luxembourg
3755
  # @ wp-slimstat
3756
- #: ../admin/view/wp-slimstat-reports.php:1811
3757
  msgid "c-lu"
3758
  msgstr "Luxembourg"
3759
 
3760
  # The Former Yugoslav Republic of Macedonia
3761
  # @ wp-slimstat
3762
- #: ../admin/view/wp-slimstat-reports.php:1811
3763
  msgid "c-mk"
3764
  msgstr "Makedonien"
3765
 
3766
  # Madagascar
3767
  # @ wp-slimstat
3768
- #: ../admin/view/wp-slimstat-reports.php:1811
3769
  msgid "c-mg"
3770
  msgstr "Madagaskar"
3771
 
3772
  # Malawi
3773
  # @ wp-slimstat
3774
- #: ../admin/view/wp-slimstat-reports.php:1811
3775
  msgid "c-mw"
3776
  msgstr "Malawi"
3777
 
3778
  # Malaysia
3779
  # @ wp-slimstat
3780
- #: ../admin/view/wp-slimstat-reports.php:1811
3781
  msgid "c-my"
3782
  msgstr "Malaysia"
3783
 
3784
  # Mali
3785
  # @ wp-slimstat
3786
- #: ../admin/view/wp-slimstat-reports.php:1811
3787
  msgid "c-ml"
3788
  msgstr "Mali"
3789
 
3790
  # Malta
3791
  # @ wp-slimstat
3792
- #: ../admin/view/wp-slimstat-reports.php:1811
3793
  msgid "c-mt"
3794
  msgstr "Malta"
3795
 
3796
  # Martinique
3797
  # @ wp-slimstat
3798
- #: ../admin/view/wp-slimstat-reports.php:1811
3799
  msgid "c-mq"
3800
  msgstr "Martinique"
3801
 
3802
  # Mauritania
3803
  # @ wp-slimstat
3804
- #: ../admin/view/wp-slimstat-reports.php:1811
3805
  msgid "c-mr"
3806
  msgstr "Mauritanien"
3807
 
3808
  # Mauritius
3809
  # @ wp-slimstat
3810
- #: ../admin/view/wp-slimstat-reports.php:1811
3811
  msgid "c-mu"
3812
  msgstr "Mauritius"
3813
 
3814
  # Mexico
3815
  # @ wp-slimstat
3816
- #: ../admin/view/wp-slimstat-reports.php:1811
3817
  msgid "c-mx"
3818
  msgstr "Mexikos förenta stater"
3819
 
3820
  # Moldova
3821
  # @ wp-slimstat
3822
- #: ../admin/view/wp-slimstat-reports.php:1811
3823
  msgid "c-md"
3824
  msgstr "Moldovien"
3825
 
3826
  # Mongolia
3827
  # @ wp-slimstat
3828
- #: ../admin/view/wp-slimstat-reports.php:1811
3829
  msgid "c-mn"
3830
  msgstr "Mongoliet"
3831
 
3832
  # Montenegro
3833
  # @ wp-slimstat
3834
- #: ../admin/view/wp-slimstat-reports.php:1811
3835
  msgid "c-me"
3836
  msgstr "Montenegro, Republiken"
3837
 
3838
  # Montserrat
3839
  # @ wp-slimstat
3840
- #: ../admin/view/wp-slimstat-reports.php:1811
3841
  msgid "c-ms"
3842
  msgstr "Montserrat"
3843
 
3844
  # Morocco
3845
  # @ wp-slimstat
3846
- #: ../admin/view/wp-slimstat-reports.php:1811
3847
  msgid "c-ma"
3848
  msgstr "Marocko"
3849
 
3850
  # Mozambique
3851
  # @ wp-slimstat
3852
- #: ../admin/view/wp-slimstat-reports.php:1811
3853
  msgid "c-mz"
3854
  msgstr "Moçambique"
3855
 
3856
  # Myanmar
3857
  # @ wp-slimstat
3858
- #: ../admin/view/wp-slimstat-reports.php:1811
3859
  msgid "c-mm"
3860
  msgstr "Myanmar"
3861
 
3862
  # Namibia
3863
  # @ wp-slimstat
3864
- #: ../admin/view/wp-slimstat-reports.php:1811
3865
  msgid "c-na"
3866
  msgstr "Namibia"
3867
 
3868
  # Nepal
3869
  # @ wp-slimstat
3870
- #: ../admin/view/wp-slimstat-reports.php:1811
3871
  msgid "c-np"
3872
  msgstr "Nepal"
3873
 
3874
  # Netherlands
3875
  # @ wp-slimstat
3876
- #: ../admin/view/wp-slimstat-reports.php:1811
3877
  msgid "c-nl"
3878
  msgstr "Nederländerna"
3879
 
3880
  # New Caledonia
3881
  # @ wp-slimstat
3882
- #: ../admin/view/wp-slimstat-reports.php:1811
3883
  msgid "c-nc"
3884
  msgstr "Nya Kaledonien"
3885
 
3886
  # New Zealand
3887
  # @ wp-slimstat
3888
- #: ../admin/view/wp-slimstat-reports.php:1811
3889
  msgid "c-nz"
3890
  msgstr "Nya Zeeland"
3891
 
3892
  # Nicaragua
3893
  # @ wp-slimstat
3894
- #: ../admin/view/wp-slimstat-reports.php:1811
3895
  msgid "c-ni"
3896
  msgstr "Nicaragua"
3897
 
3898
  # Niger
3899
  # @ wp-slimstat
3900
- #: ../admin/view/wp-slimstat-reports.php:1811
3901
  msgid "c-ne"
3902
  msgstr "Niger"
3903
 
3904
  # Nigeria
3905
  # @ wp-slimstat
3906
- #: ../admin/view/wp-slimstat-reports.php:1811
3907
  msgid "c-ng"
3908
  msgstr "Nigeria"
3909
 
3910
  # Norway
3911
  # @ wp-slimstat
3912
- #: ../admin/view/wp-slimstat-reports.php:1811
3913
  msgid "c-no"
3914
  msgstr "Norge"
3915
 
3916
  # Oman
3917
  # @ wp-slimstat
3918
- #: ../admin/view/wp-slimstat-reports.php:1811
3919
  msgid "c-om"
3920
  msgstr "Oman"
3921
 
3922
  # Pakistan
3923
  # @ wp-slimstat
3924
- #: ../admin/view/wp-slimstat-reports.php:1811
3925
  msgid "c-pk"
3926
  msgstr "Pakistan"
3927
 
3928
  # Palau
3929
  # @ wp-slimstat
3930
- #: ../admin/view/wp-slimstat-reports.php:1811
3931
  msgid "c-pw"
3932
  msgstr "Palau"
3933
 
3934
  # Occupied Palestinian Territory
3935
  # @ wp-slimstat
3936
- #: ../admin/view/wp-slimstat-reports.php:1811
3937
  msgid "c-ps"
3938
  msgstr "Palestina"
3939
 
3940
  # Panama
3941
  # @ wp-slimstat
3942
- #: ../admin/view/wp-slimstat-reports.php:1811
3943
  msgid "c-pa"
3944
  msgstr "Panama"
3945
 
3946
  # Papua New Guinea
3947
  # @ wp-slimstat
3948
- #: ../admin/view/wp-slimstat-reports.php:1811
3949
  msgid "c-pg"
3950
  msgstr "Papua Nya Guinea"
3951
 
3952
  # Paraguay
3953
  # @ wp-slimstat
3954
- #: ../admin/view/wp-slimstat-reports.php:1811
3955
  msgid "c-py"
3956
  msgstr "Paraguay"
3957
 
3958
  # Peru
3959
  # @ wp-slimstat
3960
- #: ../admin/view/wp-slimstat-reports.php:1811
3961
  msgid "c-pe"
3962
  msgstr "Peru"
3963
 
3964
  # Philippines
3965
  # @ wp-slimstat
3966
- #: ../admin/view/wp-slimstat-reports.php:1811
3967
  msgid "c-ph"
3968
  msgstr "Filippinerna"
3969
 
3970
  # Poland
3971
  # @ wp-slimstat
3972
- #: ../admin/view/wp-slimstat-reports.php:1811
3973
  msgid "c-pl"
3974
  msgstr "Poland"
3975
 
3976
  # Portugal
3977
  # @ wp-slimstat
3978
- #: ../admin/view/wp-slimstat-reports.php:1811
3979
  msgid "c-pt"
3980
  msgstr "Portugal"
3981
 
3982
  # Puerto Rico
3983
  # @ wp-slimstat
3984
- #: ../admin/view/wp-slimstat-reports.php:1811
3985
  msgid "c-pr"
3986
  msgstr "Puerto Rico"
3987
 
3988
  # Qatar
3989
  # @ wp-slimstat
3990
- #: ../admin/view/wp-slimstat-reports.php:1811
3991
  msgid "c-qa"
3992
  msgstr "Qatar"
3993
 
3994
  # Réunion
3995
  # @ wp-slimstat
3996
- #: ../admin/view/wp-slimstat-reports.php:1811
3997
  msgid "c-re"
3998
  msgstr "Réunion"
3999
 
4000
  # Romania
4001
  # @ wp-slimstat
4002
- #: ../admin/view/wp-slimstat-reports.php:1811
4003
  msgid "c-ro"
4004
  msgstr "Romanien"
4005
 
4006
  # Russian Federation
4007
  # @ wp-slimstat
4008
- #: ../admin/view/wp-slimstat-reports.php:1811
4009
  msgid "c-ru"
4010
  msgstr "Ryska federationen"
4011
 
4012
  # Rwanda
4013
  # @ wp-slimstat
4014
- #: ../admin/view/wp-slimstat-reports.php:1811
4015
  msgid "c-rw"
4016
  msgstr "Rwanda"
4017
 
4018
  # Saint Kitts and Nevis
4019
  # @ wp-slimstat
4020
- #: ../admin/view/wp-slimstat-reports.php:1811
4021
  msgid "c-kn"
4022
  msgstr "Saint Kitts and Nevis"
4023
 
4024
  # Saint Lucia
4025
  # @ wp-slimstat
4026
- #: ../admin/view/wp-slimstat-reports.php:1811
4027
  msgid "c-lc"
4028
  msgstr "Saint Lucia"
4029
 
4030
  # Saint Martin
4031
  # @ wp-slimstat
4032
- #: ../admin/view/wp-slimstat-reports.php:1811
4033
  msgid "c-mf"
4034
  msgstr "Sint Maarten"
4035
 
4036
  # Saint Vincent and the Grenadines
4037
  # @ wp-slimstat
4038
- #: ../admin/view/wp-slimstat-reports.php:1811
4039
  msgid "c-vc"
4040
  msgstr "Saint Vincent och Grenadinerna"
4041
 
4042
  # Samoa
4043
  # @ wp-slimstat
4044
- #: ../admin/view/wp-slimstat-reports.php:1811
4045
  msgid "c-ws"
4046
  msgstr "Samoa"
4047
 
4048
  # Sao Tome and Principe
4049
  # @ wp-slimstat
4050
- #: ../admin/view/wp-slimstat-reports.php:1811
4051
  msgid "c-st"
4052
  msgstr "São Tomé och Príncipe"
4053
 
4054
  # Saudi Arabia
4055
  # @ wp-slimstat
4056
- #: ../admin/view/wp-slimstat-reports.php:1811
4057
  msgid "c-sa"
4058
  msgstr "Saudi Arabien"
4059
 
4060
  # Senegal
4061
  # @ wp-slimstat
4062
- #: ../admin/view/wp-slimstat-reports.php:1811
4063
  msgid "c-sn"
4064
  msgstr "Senegal"
4065
 
4066
  # Serbia
4067
  # @ wp-slimstat
4068
- #: ../admin/view/wp-slimstat-reports.php:1811
4069
  msgid "c-rs"
4070
  msgstr "Serbien"
4071
 
4072
  # Sierra Leone
4073
  # @ wp-slimstat
4074
- #: ../admin/view/wp-slimstat-reports.php:1811
4075
  msgid "c-sl"
4076
  msgstr "Sierra Leone"
4077
 
4078
  # Singapore
4079
  # @ wp-slimstat
4080
- #: ../admin/view/wp-slimstat-reports.php:1811
4081
  msgid "c-sg"
4082
  msgstr "Singapore"
4083
 
4084
  # Slovakia
4085
  # @ wp-slimstat
4086
- #: ../admin/view/wp-slimstat-reports.php:1811
4087
  msgid "c-sk"
4088
  msgstr "Slovakien"
4089
 
4090
  # Slovenia
4091
  # @ wp-slimstat
4092
- #: ../admin/view/wp-slimstat-reports.php:1811
4093
  msgid "c-si"
4094
  msgstr "Slovenien"
4095
 
4096
  # Solomon Islands
4097
  # @ wp-slimstat
4098
- #: ../admin/view/wp-slimstat-reports.php:1811
4099
  msgid "c-sb"
4100
  msgstr "Solomonöarna"
4101
 
4102
  # Somalia
4103
  # @ wp-slimstat
4104
- #: ../admin/view/wp-slimstat-reports.php:1811
4105
  msgid "c-so"
4106
  msgstr "Somalia"
4107
 
4108
  # South Africa
4109
  # @ wp-slimstat
4110
- #: ../admin/view/wp-slimstat-reports.php:1811
4111
  msgid "c-za"
4112
  msgstr "Sydafrika"
4113
 
4114
  # South Georgia and the South Sandwich Islands
4115
  # @ wp-slimstat
4116
- #: ../admin/view/wp-slimstat-reports.php:1811
4117
  msgid "c-gs"
4118
  msgstr "Sydgeorgien och Sydsandwichöarna"
4119
 
4120
  # Spain
4121
  # @ wp-slimstat
4122
- #: ../admin/view/wp-slimstat-reports.php:1811
4123
  msgid "c-es"
4124
  msgstr "Spanien"
4125
 
4126
  # Sri Lanka
4127
  # @ wp-slimstat
4128
- #: ../admin/view/wp-slimstat-reports.php:1811
4129
  msgid "c-lk"
4130
  msgstr "Sri Lanka"
4131
 
4132
  # @ wp-slimstat
4133
- #: ../admin/view/wp-slimstat-reports.php:1811
4134
  msgid "c-sc"
4135
  msgstr "Seychelles"
4136
 
4137
  # Sudan
4138
  # @ wp-slimstat
4139
- #: ../admin/view/wp-slimstat-reports.php:1811
4140
  msgid "c-sd"
4141
  msgstr "Sudan"
4142
 
4143
  # @ wp-slimstat
4144
- #: ../admin/view/wp-slimstat-reports.php:1811
4145
  msgid "c-ss"
4146
  msgstr "Södra Sudan"
4147
 
4148
  # Suriname
4149
  # @ wp-slimstat
4150
- #: ../admin/view/wp-slimstat-reports.php:1811
4151
  msgid "c-sr"
4152
  msgstr "Suriname"
4153
 
4154
  # Svalbard and Jan Mayen
4155
  # @ wp-slimstat
4156
- #: ../admin/view/wp-slimstat-reports.php:1811
4157
  msgid "c-sj"
4158
  msgstr "Svalbard och Jan Mayen"
4159
 
4160
  # Swaziland
4161
  # @ wp-slimstat
4162
- #: ../admin/view/wp-slimstat-reports.php:1811
4163
  msgid "c-sz"
4164
  msgstr "Swaziland"
4165
 
4166
  # Sweden
4167
  # @ wp-slimstat
4168
- #: ../admin/view/wp-slimstat-reports.php:1811
4169
  msgid "c-se"
4170
  msgstr "Sverige"
4171
 
4172
  # Switzerland
4173
  # @ wp-slimstat
4174
- #: ../admin/view/wp-slimstat-reports.php:1811
4175
  msgid "c-ch"
4176
  msgstr "Schweiz"
4177
 
4178
  # Syrian Arab Republic
4179
  # @ wp-slimstat
4180
- #: ../admin/view/wp-slimstat-reports.php:1811
4181
  msgid "c-sy"
4182
  msgstr "Syrien"
4183
 
4184
  # Taiwan, Province of China
4185
  # @ wp-slimstat
4186
- #: ../admin/view/wp-slimstat-reports.php:1811
4187
  msgid "c-tw"
4188
  msgstr "Taiwan"
4189
 
4190
  # Tajikistan
4191
  # @ wp-slimstat
4192
- #: ../admin/view/wp-slimstat-reports.php:1811
4193
  msgid "c-tj"
4194
  msgstr "Tadzjikistan"
4195
 
4196
  # United Republic of Tanzania
4197
  # @ wp-slimstat
4198
- #: ../admin/view/wp-slimstat-reports.php:1811
4199
  msgid "c-tz"
4200
  msgstr "Tanzania, Förenade republiken"
4201
 
4202
  # Thailand
4203
  # @ wp-slimstat
4204
- #: ../admin/view/wp-slimstat-reports.php:1811
4205
  msgid "c-th"
4206
  msgstr "Thailand"
4207
 
4208
  # Timor-Leste
4209
  # @ wp-slimstat
4210
- #: ../admin/view/wp-slimstat-reports.php:1811
4211
  msgid "c-tl"
4212
  msgstr "Timor-Leste (Östtimor)"
4213
 
4214
  # Togo
4215
  # @ wp-slimstat
4216
- #: ../admin/view/wp-slimstat-reports.php:1811
4217
  msgid "c-tg"
4218
  msgstr "Togo"
4219
 
4220
  # Tonga
4221
  # @ wp-slimstat
4222
- #: ../admin/view/wp-slimstat-reports.php:1811
4223
  msgid "c-to"
4224
  msgstr "Tonga"
4225
 
4226
  # Trinidad and Tobago
4227
  # @ wp-slimstat
4228
- #: ../admin/view/wp-slimstat-reports.php:1811
4229
  msgid "c-tt"
4230
  msgstr "Trinidad och Tobago"
4231
 
4232
  # Tunisia
4233
  # @ wp-slimstat
4234
- #: ../admin/view/wp-slimstat-reports.php:1811
4235
  msgid "c-tn"
4236
  msgstr "Tunisien"
4237
 
4238
  # Turkey
4239
  # @ wp-slimstat
4240
- #: ../admin/view/wp-slimstat-reports.php:1811
4241
  msgid "c-tr"
4242
  msgstr "Turkiet"
4243
 
4244
  # Turkmenistan
4245
  # @ wp-slimstat
4246
- #: ../admin/view/wp-slimstat-reports.php:1811
4247
  msgid "c-tm"
4248
  msgstr "Turkmenistan"
4249
 
4250
  # Turks and Caicos Islands
4251
  # @ wp-slimstat
4252
- #: ../admin/view/wp-slimstat-reports.php:1811
4253
  msgid "c-tc"
4254
  msgstr "Turks- och Caicosöarna"
4255
 
4256
  # Uganda
4257
  # @ wp-slimstat
4258
- #: ../admin/view/wp-slimstat-reports.php:1811
4259
  msgid "c-ug"
4260
  msgstr "Uganda"
4261
 
4262
  # Ukraine
4263
  # @ wp-slimstat
4264
- #: ../admin/view/wp-slimstat-reports.php:1811
4265
  msgid "c-ua"
4266
  msgstr "Ukraina"
4267
 
4268
  # United Arab Emirates
4269
  # @ wp-slimstat
4270
- #: ../admin/view/wp-slimstat-reports.php:1811
4271
  msgid "c-ae"
4272
  msgstr "Förenade Arabemiraten"
4273
 
4274
  # United Kingdom
4275
  # @ wp-slimstat
4276
- #: ../admin/view/wp-slimstat-reports.php:1811
4277
  msgid "c-gb"
4278
  msgstr "Storbritanien"
4279
 
4280
  # United States
4281
  # @ wp-slimstat
4282
- #: ../admin/view/wp-slimstat-reports.php:1811
4283
  msgid "c-us"
4284
  msgstr "Amerikas förenta stater"
4285
 
4286
  # Uruguay
4287
  # @ wp-slimstat
4288
- #: ../admin/view/wp-slimstat-reports.php:1811
4289
  msgid "c-uy"
4290
  msgstr "Uruguay"
4291
 
4292
  # Uzbekistan
4293
  # @ wp-slimstat
4294
- #: ../admin/view/wp-slimstat-reports.php:1811
4295
  msgid "c-uz"
4296
  msgstr "Uzbekistan"
4297
 
4298
  # Vanuatu
4299
  # @ wp-slimstat
4300
- #: ../admin/view/wp-slimstat-reports.php:1811
4301
  msgid "c-vu"
4302
  msgstr "Vanuatu"
4303
 
4304
  # Venezuela
4305
  # @ wp-slimstat
4306
- #: ../admin/view/wp-slimstat-reports.php:1811
4307
  msgid "c-ve"
4308
  msgstr "Venezuela"
4309
 
4310
  # Viet Nam
4311
  # @ wp-slimstat
4312
- #: ../admin/view/wp-slimstat-reports.php:1811
4313
  msgid "c-vn"
4314
  msgstr "Vietnam"
4315
 
4316
  # British Virgin Islands
4317
  # @ wp-slimstat
4318
- #: ../admin/view/wp-slimstat-reports.php:1811
4319
  msgid "c-vg"
4320
  msgstr "Jungfruöarna, Brittiska "
4321
 
4322
  # U.S. Virgin Islands
4323
  # @ wp-slimstat
4324
- #: ../admin/view/wp-slimstat-reports.php:1811
4325
  msgid "c-vi"
4326
  msgstr "Jungfruöarna, Amerikanska"
4327
 
4328
  # Western Sahara
4329
  # @ wp-slimstat
4330
- #: ../admin/view/wp-slimstat-reports.php:1811
4331
  msgid "c-eh"
4332
  msgstr "Väst Sahara"
4333
 
4334
  # Yemen
4335
  # @ wp-slimstat
4336
- #: ../admin/view/wp-slimstat-reports.php:1811
4337
  msgid "c-ye"
4338
  msgstr "Jemen"
4339
 
4340
  # Zambia
4341
  # @ wp-slimstat
4342
- #: ../admin/view/wp-slimstat-reports.php:1811
4343
  msgid "c-zm"
4344
  msgstr "Zambia"
4345
 
4346
  # Zimbabwe
4347
  # @ wp-slimstat
4348
- #: ../admin/view/wp-slimstat-reports.php:1811
4349
  msgid "c-zw"
4350
  msgstr "Zimbabwe"
4351
 
4352
  # Guernsey
4353
  # @ wp-slimstat
4354
- #: ../admin/view/wp-slimstat-reports.php:1811
4355
  msgid "c-gg"
4356
  msgstr "Guernsey"
4357
 
4358
  # Jersey
4359
  # @ wp-slimstat
4360
- #: ../admin/view/wp-slimstat-reports.php:1811
4361
  msgid "c-je"
4362
  msgstr "Jersey, Fögderiet"
4363
 
4364
  # Isle of Man
4365
  # @ wp-slimstat
4366
- #: ../admin/view/wp-slimstat-reports.php:1811
4367
  msgid "c-im"
4368
  msgstr "Isle of Man"
4369
 
4370
  # Maldives
4371
  # @ wp-slimstat
4372
- #: ../admin/view/wp-slimstat-reports.php:1811
4373
  msgid "c-mv"
4374
  msgstr "Maldiverna"
4375
 
4376
  # @ wp-slimstat
4377
- #: ../admin/view/wp-slimstat-reports.php:1812
4378
  msgid "c-eu"
4379
  msgstr "Europe (generic)"
4380
 
4381
  # @ wp-slimstat
4382
- #: ../admin/view/wp-slimstat-reports.php:1894
4383
  msgid "src"
4384
  msgstr "scr"
4385
 
4386
  # @ wp-slimstat
4387
- #: ../admin/view/wp-slimstat-reports.php:1897
4388
  msgid "serp"
4389
  msgstr "serp"
4390
 
4391
  # @ wp-slimstat
4392
- #: ../admin/view/wp-slimstat-reports.php:1904
4393
  msgid "Go to the referring page"
4394
  msgstr "Gå till sidan med hänvisning"
4395
 
4396
  # @ wp-slimstat
4397
- #: ../admin/view/wp-slimstat-reports.php:1926
4398
  msgid "Remove filter for"
4399
  msgstr "Tabort filter för"
4400
 
4401
- #: ../admin/view/wp-slimstat-reports.php:1930
4402
  msgid "Save"
4403
  msgstr "Spara"
4404
 
4405
  # @ wp-slimstat
4406
- #: ../admin/view/wp-slimstat-reports.php:1933
4407
  msgid "Reset All"
4408
  msgstr "Återställ Allt"
4409
 
4410
  # @ wp-slimstat
4411
- #: ../admin/view/wp-slimstat-reports.php:1937
4412
  msgid "Current filters:"
4413
  msgstr "Nuvarande filter"
4414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4415
  # @ wp-slimstat
4416
- #: ../admin/wp-slimstat-admin.php:482 ../admin/wp-slimstat-admin.php:493
4417
- #: ../admin/wp-slimstat-admin.php:495
4418
  msgid "SlimStat"
4419
  msgstr "SlimStat"
4420
 
4421
  # @ wp-slimstat
4422
- #: ../admin/wp-slimstat-admin.php:489 ../admin/wp-slimstat-admin.php:504
4423
- #: ../wp-slimstat.php:1799
4424
  msgid "Customize"
4425
  msgstr "Anpassa"
4426
 
4427
  # @ wp-slimstat
4428
- #: ../admin/wp-slimstat-admin.php:587
4429
  msgid "Pageviews in the last "
4430
  msgstr "Sidvisningar i de senaste"
4431
 
4432
  # @ wp-slimstat
4433
- #: ../admin/wp-slimstat-admin.php:590
4434
  msgid "Unique IPs in the last "
4435
  msgstr "Unika IP-adresser de senaste"
4436
 
4437
  # @ wp-slimstat
4438
- #: ../admin/wp-slimstat-admin.php:644
4439
  msgid "Show on screen"
4440
  msgstr "Visa på skärm"
4441
 
4442
- #: ../admin/wp-slimstat-admin.php:725
4443
  msgid "Already saved"
4444
  msgstr "Redan sparad"
4445
 
4446
- #: ../admin/wp-slimstat-admin.php:733
4447
  msgid "Saved"
4448
  msgstr "Sparad"
4449
 
4450
  # @ wp-slimstat
4451
- #: ../admin/wp-slimstat-admin.php:753
4452
  msgid "Delete this filter"
4453
  msgstr "Ta bort detta filter"
4454
 
4455
  # @ wp-slimstat
4456
- #: ../admin/wp-slimstat-admin.php:797
4457
  msgid "There was an error updating the following options:"
4458
  msgstr "Ett fel uppstod vid uppdateringen av följande alternativ:"
4459
 
4460
  # @ wp-slimstat
4461
- #: ../admin/wp-slimstat-admin.php:800
4462
  msgid "Your changes have been saved."
4463
  msgstr "Dina ändringar har sparats"
4464
 
4465
  # @ wp-slimstat
4466
- #: ../admin/wp-slimstat-admin.php:823
4467
  msgid "Save Changes"
4468
  msgstr "Spara ändringar"
4469
 
4470
  # @ wp-slimstat
4471
- #: ../admin/wp-slimstat-admin.php:839
4472
  msgid "Definitions"
4473
  msgstr "Definitioner"
4474
 
4475
  # @ wp-slimstat
4476
- #: ../admin/wp-slimstat-admin.php:842
4477
  msgid "Pageview"
4478
  msgstr "Sidvisning"
4479
 
4480
  # @ wp-slimstat
4481
- #: ../admin/wp-slimstat-admin.php:842
4482
  msgid ""
4483
  "A request to load a single HTML file (\"page\"). This should be contrasted "
4484
  "with a \"hit\", which refers to a request for any file from a web server. "
@@ -4489,12 +4484,12 @@ msgstr ""
4489
  "webbserver. Slimstat loggar en sidvisning varje gång spårningskoden körs"
4490
 
4491
  # @ wp-slimstat
4492
- #: ../admin/wp-slimstat-admin.php:843
4493
  msgid "(Human) Visit"
4494
  msgstr "(Mänskliga) besök"
4495
 
4496
  # @ wp-slimstat
4497
- #: ../admin/wp-slimstat-admin.php:843
4498
  msgid ""
4499
  "A period of interaction between a visitor's browser and your website, ending "
4500
  "when the browser is closed or when the user has been inactive on that site "
@@ -4505,7 +4500,7 @@ msgstr ""
4505
  "denna plats i 30 minuter"
4506
 
4507
  # @ wp-slimstat
4508
- #: ../admin/wp-slimstat-admin.php:844
4509
  msgid ""
4510
  "Any user who has left a comment on your blog, and is thus identified by "
4511
  "Wordpress as a returning visitor"
@@ -4514,12 +4509,12 @@ msgstr ""
4514
  "identifierad av Wordpress som återkommande besökare"
4515
 
4516
  # @ wp-slimstat
4517
- #: ../admin/wp-slimstat-admin.php:845
4518
  msgid "Unique IP"
4519
  msgstr "Unik IP"
4520
 
4521
  # @ wp-slimstat
4522
- #: ../admin/wp-slimstat-admin.php:845
4523
  msgid ""
4524
  "Used to differentiate between multiple requests to download a file from one "
4525
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -4532,7 +4527,7 @@ msgstr ""
4532
  "sidvisning kom från, det är bra, men inte perfekt"
4533
 
4534
  # @ wp-slimstat
4535
- #: ../admin/wp-slimstat-admin.php:846
4536
  msgid ""
4537
  "the originating IP address of a client connecting to a web server through an "
4538
  "HTTP proxy or load balancer"
@@ -4541,12 +4536,12 @@ msgstr ""
4541
  "eller balanserad laddning"
4542
 
4543
  # @ wp-slimstat
4544
- #: ../admin/wp-slimstat-admin.php:847
4545
  msgid "Direct Traffic"
4546
  msgstr "Direkt Trafik"
4547
 
4548
  # @ wp-slimstat
4549
- #: ../admin/wp-slimstat-admin.php:847
4550
  msgid ""
4551
  "All those people showing up to your Web site by typing in the URL of your "
4552
  "Web site coming or from a bookmark; some people also call this \"default "
@@ -4557,12 +4552,12 @@ msgstr ""
4557
  "detta \"standard trafik\" eller \"omgivande trafik\" "
4558
 
4559
  # @ wp-slimstat
4560
- #: ../admin/wp-slimstat-admin.php:848
4561
  msgid "Search Engine"
4562
  msgstr "Sökmotor"
4563
 
4564
  # @ wp-slimstat
4565
- #: ../admin/wp-slimstat-admin.php:848
4566
  msgid ""
4567
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
4568
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
@@ -4572,19 +4567,19 @@ msgstr ""
4572
  "om att"
4573
 
4574
  # @ wp-slimstat
4575
- #: ../admin/wp-slimstat-admin.php:849 ../admin/wp-slimstat-admin.php:865
4576
  msgid "Keywords used by your visitors to find your website on a search engine"
4577
  msgstr ""
4578
  "Nyckelord som dina besökare använder för att hitta din webbplats på en "
4579
  "sökmotor"
4580
 
4581
  # @ wp-slimstat
4582
- #: ../admin/wp-slimstat-admin.php:850
4583
  msgid "SERP"
4584
  msgstr "SERP"
4585
 
4586
  # @ wp-slimstat
4587
- #: ../admin/wp-slimstat-admin.php:850
4588
  msgid ""
4589
  "Short for search engine results page, the Web page that a search engine "
4590
  "returns with the results of its search. The value shown represents your rank "
@@ -4595,7 +4590,7 @@ msgstr ""
4595
  "position) i den förteckning av resultat"
4596
 
4597
  # @ wp-slimstat
4598
- #: ../admin/wp-slimstat-admin.php:851
4599
  msgid ""
4600
  "Any program used for accessing a website; this includes browsers, robots, "
4601
  "spiders and any other program that was used to retrieve information from the "
@@ -4606,7 +4601,7 @@ msgstr ""
4606
  "att hämta information från sajten"
4607
 
4608
  # @ wp-slimstat
4609
- #: ../admin/wp-slimstat-admin.php:852
4610
  msgid ""
4611
  "A link from one domain to another is said to be outbound from its source "
4612
  "anchor and inbound to its target. This report lists all the links to other "
@@ -4617,32 +4612,32 @@ msgstr ""
4617
  "webbplatser följt av dina besökare. "
4618
 
4619
  # @ wp-slimstat
4620
- #: ../admin/wp-slimstat-admin.php:859
4621
  msgid "Basic Filters"
4622
  msgstr "Grundläggande filter"
4623
 
4624
  # @ wp-slimstat
4625
- #: ../admin/wp-slimstat-admin.php:862
4626
  msgid "User agent (Firefox, Chrome, ...)"
4627
  msgstr "User agent (Firefox, Chrome, ...)"
4628
 
4629
  # @ wp-slimstat
4630
- #: ../admin/wp-slimstat-admin.php:863
4631
  msgid "2-letter code (us, ru, de, it, ...)"
4632
  msgstr "2-bokstavskod (us, ru, de, it, ...)"
4633
 
4634
  # @ wp-slimstat
4635
- #: ../admin/wp-slimstat-admin.php:864
4636
  msgid "IP"
4637
  msgstr "IP"
4638
 
4639
  # @ wp-slimstat
4640
- #: ../admin/wp-slimstat-admin.php:864
4641
  msgid "Visitor's public IP address"
4642
  msgstr "Besökares publika IP adress"
4643
 
4644
  # @ wp-slimstat
4645
- #: ../admin/wp-slimstat-admin.php:866
4646
  msgid ""
4647
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4648
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
@@ -4653,7 +4648,7 @@ msgstr ""
4653
  "kolumnen) för mer information"
4654
 
4655
  # @ wp-slimstat
4656
- #: ../admin/wp-slimstat-admin.php:867
4657
  msgid ""
4658
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4659
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
@@ -4664,17 +4659,17 @@ msgstr ""
4664
  "för mer information"
4665
 
4666
  # @ wp-slimstat
4667
- #: ../admin/wp-slimstat-admin.php:868
4668
  msgid "URL accessed on your site"
4669
  msgstr "URL accessed på din webbplats"
4670
 
4671
  # @ wp-slimstat
4672
- #: ../admin/wp-slimstat-admin.php:869
4673
  msgid "Complete address of the referrer page"
4674
  msgstr "Fullständig adress till referrersida"
4675
 
4676
  # @ wp-slimstat
4677
- #: ../admin/wp-slimstat-admin.php:870
4678
  msgid ""
4679
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4680
  "comment"
@@ -4682,17 +4677,17 @@ msgstr ""
4682
  "Besökarens namn enligt den cookie som Wordpress när de lämnar en kommentar"
4683
 
4684
  # @ wp-slimstat
4685
- #: ../admin/wp-slimstat-admin.php:878
4686
  msgid "Advanced Filters"
4687
  msgstr "Avancerat filter"
4688
 
4689
  # @ wp-slimstat
4690
- #: ../admin/wp-slimstat-admin.php:881
4691
  msgid "user agent version (9.0, 11, ...)"
4692
  msgstr "user agent version (9.0, 11, ...)"
4693
 
4694
  # @ wp-slimstat
4695
- #: ../admin/wp-slimstat-admin.php:882
4696
  msgid ""
4697
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4698
  "all others"
@@ -4701,12 +4696,12 @@ msgstr ""
4701
  "andra"
4702
 
4703
  # @ wp-slimstat
4704
- #: ../admin/wp-slimstat-admin.php:883
4705
  msgid "Pageview Attributes"
4706
  msgstr "Sidvisnings attributer"
4707
 
4708
  # @ wp-slimstat
4709
- #: ../admin/wp-slimstat-admin.php:883
4710
  msgid ""
4711
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4712
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
@@ -4717,23 +4712,23 @@ msgstr ""
4717
  "Link_prefetching_FAQ\">Link Prefetching</a> eller liknande tekniker"
4718
 
4719
  # @ wp-slimstat
4720
- #: ../admin/wp-slimstat-admin.php:884
4721
  msgid "author associated to that post/page when the resource was accessed"
4722
  msgstr "författaren är associerad med den post/sida när resursen var accessad"
4723
 
4724
  # @ wp-slimstat
4725
- #: ../admin/wp-slimstat-admin.php:885
4726
  msgid "ID of the category/term associated to the resource, when available"
4727
  msgstr ""
4728
  "ID-numret för den kategori/sikt kopplat till resursen, när tillgängliga"
4729
 
4730
  # @ wp-slimstat
4731
- #: ../admin/wp-slimstat-admin.php:886
4732
  msgid "visitor's originating IP address, if available"
4733
  msgstr "besökarens IP-adress, om tillgänglig "
4734
 
4735
  # @ wp-slimstat
4736
- #: ../admin/wp-slimstat-admin.php:887
4737
  msgid ""
4738
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4739
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -4747,17 +4742,17 @@ msgstr ""
4747
  "Conditional_Tags\">Villkorliga taggar manual</a> för mer information "
4748
 
4749
  # @ wp-slimstat
4750
- #: ../admin/wp-slimstat-admin.php:888
4751
  msgid "Screen Resolution"
4752
  msgstr "Skärmupplösning"
4753
 
4754
  # @ wp-slimstat
4755
- #: ../admin/wp-slimstat-admin.php:888
4756
  msgid "viewport width and height (1024x768, 800x600, ...)"
4757
  msgstr "Upplösning bredd och höjd (1024x768, 800x600, ...)"
4758
 
4759
  # @ wp-slimstat
4760
- #: ../admin/wp-slimstat-admin.php:889
4761
  msgid ""
4762
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4763
  "visitors"
@@ -4766,12 +4761,12 @@ msgstr ""
4766
  "mänskliga besökare"
4767
 
4768
  # @ wp-slimstat
4769
- #: ../admin/wp-slimstat-admin.php:890
4770
  msgid "Date Filters"
4771
  msgstr "Datum Filter"
4772
 
4773
  # @ wp-slimstat
4774
- #: ../admin/wp-slimstat-admin.php:890
4775
  msgid ""
4776
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4777
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
@@ -4782,12 +4777,12 @@ msgstr ""
4782
  "år=tomt intervall=-1 ställs ett år-till-datum filter)"
4783
 
4784
  # @ wp-slimstat
4785
- #: ../admin/wp-slimstat-admin.php:891
4786
  msgid "SERP Position"
4787
  msgstr "SERP Position"
4788
 
4789
  # @ wp-slimstat
4790
- #: ../admin/wp-slimstat-admin.php:891
4791
  msgid ""
4792
  "set the filter to Referer contains cd=N&, where N is the position you are "
4793
  "looking for"
@@ -4795,16 +4790,16 @@ msgstr ""
4795
  "sätt filter till Referer innehåller cd=N&, där N är positionen du letar efter"
4796
 
4797
  # @ wp-slimstat
4798
- #: ../admin/wp-slimstat-admin.php:918
4799
  msgid "Yes"
4800
  msgstr "Ja"
4801
 
4802
  # @ wp-slimstat
4803
- #: ../admin/wp-slimstat-admin.php:919
4804
  msgid "No"
4805
  msgstr "Nej"
4806
 
4807
- #: ../admin/wp-slimstat-admin.php:920
4808
  msgid "Site Specific"
4809
  msgstr "Sajt specifikt"
4810
 
@@ -4838,1841 +4833,1973 @@ msgstr "BeOS"
4838
  msgid "blackberry os"
4839
  msgstr "BlackBerry OS"
4840
 
 
4841
  #: ../languages/dynamic_strings.php:11
 
 
 
 
4842
  msgid "chromeos"
4843
  msgstr "chromeos"
4844
 
 
 
 
 
4845
  # @ wp-slimstat
4846
- #: ../languages/dynamic_strings.php:12
4847
  msgid "cygwin"
4848
  msgstr "Cygwin"
4849
 
4850
  # @ wp-slimstat
4851
- #: ../languages/dynamic_strings.php:13
4852
  msgid "debian"
4853
  msgstr "Debian"
4854
 
4855
  # @ wp-slimstat
4856
- #: ../languages/dynamic_strings.php:14
4857
  msgid "digital unix"
4858
  msgstr "Digital Unix"
4859
 
4860
- #: ../languages/dynamic_strings.php:15
 
 
 
 
4861
  msgid "firefoxos"
4862
  msgstr "firefoxos"
4863
 
4864
  # @ wp-slimstat
4865
- #: ../languages/dynamic_strings.php:16
4866
  msgid "freebsd"
4867
  msgstr "FreeBSD"
4868
 
 
 
 
 
4869
  # @ wp-slimstat
4870
- #: ../languages/dynamic_strings.php:17
4871
  msgid "hp-ux"
4872
  msgstr "HP-UX"
4873
 
4874
  # @ wp-slimstat
4875
- #: ../languages/dynamic_strings.php:18
4876
  msgid "ios"
4877
  msgstr "Apple iOS"
4878
 
4879
  # @ wp-slimstat
4880
- #: ../languages/dynamic_strings.php:19
 
 
 
 
 
4881
  msgid "iphone osx"
4882
  msgstr "iPhone OS X"
4883
 
4884
  # @ wp-slimstat
4885
- #: ../languages/dynamic_strings.php:20
4886
  msgid "irix"
4887
  msgstr "IRIX"
4888
 
4889
  # @ wp-slimstat
4890
- #: ../languages/dynamic_strings.php:21
4891
  msgid "java"
4892
  msgstr "Java"
4893
 
 
 
 
 
 
 
 
 
4894
  # @ wp-slimstat
4895
- #: ../languages/dynamic_strings.php:22
4896
  msgid "linux"
4897
  msgstr "Linux"
4898
 
4899
  # @ wp-slimstat
4900
- #: ../languages/dynamic_strings.php:23
4901
  msgid "mac"
4902
  msgstr "Mac"
4903
 
4904
  # @ wp-slimstat
4905
- #: ../languages/dynamic_strings.php:24
4906
  msgid "mac68k"
4907
  msgstr "Mac 68k"
4908
 
4909
  # @ wp-slimstat
4910
- #: ../languages/dynamic_strings.php:25
4911
  msgid "macosx"
4912
  msgstr "Mac OS X"
4913
 
4914
  # @ wp-slimstat
4915
- #: ../languages/dynamic_strings.php:26
4916
  msgid "macppc"
4917
  msgstr "Mac PowerPC"
4918
 
 
 
 
 
4919
  # @ wp-slimstat
4920
- #: ../languages/dynamic_strings.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4921
  msgid "netbsd"
4922
  msgstr "NetBSD"
4923
 
 
 
 
 
4924
  # @ wp-slimstat
4925
- #: ../languages/dynamic_strings.php:28
4926
  msgid "openbsd"
4927
  msgstr "OpenBSD"
4928
 
4929
  # @ wp-slimstat
4930
- #: ../languages/dynamic_strings.php:29
4931
  msgid "openvms"
4932
  msgstr "OpenVMS"
4933
 
4934
  # @ wp-slimstat
4935
- #: ../languages/dynamic_strings.php:30
4936
  msgid "os/2"
4937
  msgstr "IBM OS/2"
4938
 
4939
  # @ wp-slimstat
4940
- #: ../languages/dynamic_strings.php:31
4941
  msgid "palm"
4942
  msgstr "Palm"
4943
 
4944
  # @ wp-slimstat
4945
- #: ../languages/dynamic_strings.php:32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4946
  msgid "powertv"
4947
  msgstr "PowerTV"
4948
 
4949
- #: ../languages/dynamic_strings.php:33
 
 
 
 
4950
  msgid "rim os"
4951
  msgstr "rim os"
4952
 
4953
  # @ wp-slimstat
4954
- #: ../languages/dynamic_strings.php:34
4955
  msgid "risc os"
4956
  msgstr "Risc OS"
4957
 
 
 
 
 
4958
  # @ wp-slimstat
4959
- #: ../languages/dynamic_strings.php:35
4960
  msgid "solaris"
4961
  msgstr "Solaris"
4962
 
4963
  # @ wp-slimstat
4964
- #: ../languages/dynamic_strings.php:36
4965
  msgid "sunos"
4966
  msgstr "Sun OS"
4967
 
 
 
 
 
4968
  # @ wp-slimstat
4969
- #: ../languages/dynamic_strings.php:37
4970
  msgid "symbianos"
4971
  msgstr "Symbian OS"
4972
 
4973
- #: ../languages/dynamic_strings.php:38
4974
  msgid "ubuntu"
4975
  msgstr "ubuntu"
4976
 
4977
  # @ wp-slimstat
4978
- #: ../languages/dynamic_strings.php:39
4979
  msgid "unix"
4980
  msgstr "Unix"
4981
 
4982
  # @ wp-slimstat
4983
- #: ../languages/dynamic_strings.php:40
4984
  msgid "unknown"
4985
  msgstr "Okänd"
4986
 
4987
  # @ wp-slimstat
4988
- #: ../languages/dynamic_strings.php:41
 
 
 
 
 
4989
  msgid "wap"
4990
  msgstr "WAP"
4991
 
4992
  # @ wp-slimstat
4993
- #: ../languages/dynamic_strings.php:42
4994
  msgid "webos"
4995
  msgstr "WebOS"
4996
 
4997
  # @ wp-slimstat
4998
- #: ../languages/dynamic_strings.php:43
4999
  msgid "win10"
5000
  msgstr "win10"
5001
 
5002
  # @ wp-slimstat
5003
- #: ../languages/dynamic_strings.php:44
5004
  msgid "win16"
5005
  msgstr "Windows 16-bit"
5006
 
5007
  # @ wp-slimstat
5008
- #: ../languages/dynamic_strings.php:45
5009
  msgid "win2000"
5010
  msgstr "Windows 2000"
5011
 
5012
  # @ wp-slimstat
5013
- #: ../languages/dynamic_strings.php:46
5014
  msgid "win2003"
5015
  msgstr "Windows 2003"
5016
 
5017
  # @ wp-slimstat
5018
- #: ../languages/dynamic_strings.php:47
5019
  msgid "win31"
5020
  msgstr "Windows 3.1"
5021
 
5022
  # @ wp-slimstat
5023
- #: ../languages/dynamic_strings.php:48
5024
  msgid "win32"
5025
  msgstr "Windows 32-bit"
5026
 
5027
  # @ wp-slimstat
5028
- #: ../languages/dynamic_strings.php:49 ../languages/dynamic_strings.php:50
5029
  msgid "win7"
5030
  msgstr "Windows 7"
5031
 
5032
  # @ wp-slimstat
5033
- #: ../languages/dynamic_strings.php:51
5034
  msgid "win8"
5035
  msgstr "Windows 8"
5036
 
5037
  # @ wp-slimstat
5038
- #: ../languages/dynamic_strings.php:52
5039
  msgid "win8.1"
5040
  msgstr "Windows 8.1"
5041
 
5042
  # @ wp-slimstat
5043
- #: ../languages/dynamic_strings.php:53
5044
  msgid "win95"
5045
  msgstr "Windows 95"
5046
 
5047
  # @ wp-slimstat
5048
- #: ../languages/dynamic_strings.php:54
5049
  msgid "win98"
5050
  msgstr "Windows 98"
5051
 
5052
  # @ wp-slimstat
5053
- #: ../languages/dynamic_strings.php:55
5054
  msgid "wince"
5055
  msgstr "Windows CE"
5056
 
5057
  # @ wp-slimstat
5058
- #: ../languages/dynamic_strings.php:56
5059
- msgid "windows phone"
5060
- msgstr "windows phone"
5061
-
5062
- # @ wp-slimstat
5063
- #: ../languages/dynamic_strings.php:57
5064
  msgid "winme"
5065
  msgstr "Windows ME"
5066
 
5067
  # @ wp-slimstat
5068
- #: ../languages/dynamic_strings.php:58
5069
  msgid "winnt"
5070
  msgstr "Windows NT"
5071
 
5072
  # @ wp-slimstat
5073
- #: ../languages/dynamic_strings.php:59
5074
  msgid "winphone7"
5075
  msgstr "Windows Phone 7"
5076
 
5077
  # @ wp-slimstat
5078
- #: ../languages/dynamic_strings.php:60
5079
  msgid "winphone7.5"
5080
  msgstr "winphone7.5"
5081
 
5082
  # @ wp-slimstat
5083
- #: ../languages/dynamic_strings.php:61
5084
  msgid "winphone8"
5085
  msgstr "winphone8"
5086
 
5087
  # @ wp-slimstat
5088
- #: ../languages/dynamic_strings.php:62
5089
  msgid "winphone8.1"
5090
  msgstr "winphone8.1"
5091
 
 
 
 
 
5092
  # @ wp-slimstat
5093
- #: ../languages/dynamic_strings.php:63
5094
  msgid "winvista"
5095
  msgstr "Windows Vista"
5096
 
5097
  # @ wp-slimstat
5098
- #: ../languages/dynamic_strings.php:64
5099
  msgid "winxp"
5100
  msgstr "Windows XP"
5101
 
5102
  # @ wp-slimstat
5103
- #: ../languages/dynamic_strings.php:65
5104
  msgid "wyderos"
5105
  msgstr "WyderOS"
5106
 
 
 
 
 
5107
  # @ wp-slimstat
5108
- #: ../languages/dynamic_strings.php:68
5109
  msgid "acrobat"
5110
  msgstr "Acrobat"
5111
 
5112
  # @ wp-slimstat
5113
- #: ../languages/dynamic_strings.php:69
5114
  msgid "director"
5115
  msgstr "Macromedia Director"
5116
 
5117
  # @ wp-slimstat
5118
- #: ../languages/dynamic_strings.php:70
5119
  msgid "flash"
5120
  msgstr "Flash"
5121
 
5122
  # @ wp-slimstat
5123
- #: ../languages/dynamic_strings.php:71
5124
  msgid "mediaplayer"
5125
  msgstr "Media Player"
5126
 
5127
  # @ wp-slimstat
5128
- #: ../languages/dynamic_strings.php:72
5129
  msgid "quicktime"
5130
  msgstr "Quicktime"
5131
 
5132
  # @ wp-slimstat
5133
- #: ../languages/dynamic_strings.php:73
5134
  msgid "real"
5135
  msgstr "Real Player"
5136
 
5137
  # @ wp-slimstat
5138
- #: ../languages/dynamic_strings.php:74
5139
  msgid "silverlight"
5140
  msgstr "Silverlight"
5141
 
5142
  # @ wp-slimstat
5143
- #: ../languages/dynamic_strings.php:77
5144
  msgid "p-and"
5145
  msgstr "Android"
5146
 
5147
  # @ wp-slimstat
5148
- #: ../languages/dynamic_strings.php:78
5149
  msgid "p-bla"
5150
  msgstr "BlackBerry"
5151
 
5152
  # @ wp-slimstat
5153
- #: ../languages/dynamic_strings.php:79
5154
  msgid "p-chr"
5155
  msgstr "Chrome OS"
5156
 
5157
- #: ../languages/dynamic_strings.php:80
5158
  msgid "p-fir"
5159
  msgstr "p-fir"
5160
 
5161
  # @ wp-slimstat
5162
- #: ../languages/dynamic_strings.php:81
5163
  msgid "p-fre"
5164
  msgstr "Linux FreeBSD"
5165
 
5166
  # @ wp-slimstat
5167
- #: ../languages/dynamic_strings.php:82
5168
  msgid "p-ios"
5169
  msgstr "Apple iOS"
5170
 
5171
  # @ wp-slimstat
5172
- #: ../languages/dynamic_strings.php:83
5173
  msgid "p-jav"
5174
  msgstr "Java-based OS"
5175
 
5176
  # @ wp-slimstat
5177
- #: ../languages/dynamic_strings.php:84
5178
  msgid "p-lin"
5179
  msgstr "Linux"
5180
 
5181
  # @ wp-slimstat
5182
- #: ../languages/dynamic_strings.php:85
5183
  msgid "p-mac"
5184
  msgstr "Apple"
5185
 
5186
- #: ../languages/dynamic_strings.php:86
5187
  msgid "p-rim"
5188
  msgstr "p-rim"
5189
 
5190
  # @ wp-slimstat
5191
- #: ../languages/dynamic_strings.php:87
5192
  msgid "p-sym"
5193
  msgstr "Symbian OS"
5194
 
5195
- #: ../languages/dynamic_strings.php:88
5196
  msgid "p-ubu"
5197
  msgstr "Ubuntu"
5198
 
5199
  # @ wp-slimstat
5200
- #: ../languages/dynamic_strings.php:89
5201
  msgid "p-unk"
5202
  msgstr "Unknown"
5203
 
5204
  # @ wp-slimstat
5205
- #: ../languages/dynamic_strings.php:90
5206
  msgid "p-win"
5207
  msgstr "Microsoft"
5208
 
5209
  # Afrikaans
5210
  # @ wp-slimstat
5211
- #: ../languages/dynamic_strings.php:93
5212
  msgid "l-af"
5213
  msgstr "Afrikaans"
5214
 
5215
  # Afrikaans
5216
  # @ wp-slimstat
5217
- #: ../languages/dynamic_strings.php:94
5218
  msgid "l-af-za"
5219
  msgstr "Afrikaans"
5220
 
5221
  # Arabic
5222
  # @ wp-slimstat
5223
- #: ../languages/dynamic_strings.php:95
5224
  msgid "l-ar"
5225
  msgstr "Arabiska"
5226
 
5227
  # Arabic (United Arab Emirates)
5228
  # @ wp-slimstat
5229
- #: ../languages/dynamic_strings.php:96
5230
  msgid "l-ar-ae"
5231
  msgstr "Arabiska (Förenade Arabemiraten)"
5232
 
5233
  # Arabic (Bahrain)
5234
  # @ wp-slimstat
5235
- #: ../languages/dynamic_strings.php:97
5236
  msgid "l-ar-bh"
5237
  msgstr "Arabiska (Bahrain)"
5238
 
5239
  # Arabic (Algeria)
5240
  # @ wp-slimstat
5241
- #: ../languages/dynamic_strings.php:98
5242
  msgid "l-ar-dz"
5243
  msgstr "Arabiska (Algeriet)"
5244
 
5245
  # Arabic (Egypt)
5246
  # @ wp-slimstat
5247
- #: ../languages/dynamic_strings.php:99
5248
  msgid "l-ar-eg"
5249
  msgstr "Arabiska (Egypten)"
5250
 
5251
  # Arabic (Iraq)
5252
  # @ wp-slimstat
5253
- #: ../languages/dynamic_strings.php:100
5254
  msgid "l-ar-iq"
5255
  msgstr "Arabic (Iraq)"
5256
 
5257
  # Arabic (Jordan)
5258
  # @ wp-slimstat
5259
- #: ../languages/dynamic_strings.php:101
5260
  msgid "l-ar-jo"
5261
  msgstr "Arabiska (Jordanien)"
5262
 
5263
  # Arabic (Kuwait)
5264
  # @ wp-slimstat
5265
- #: ../languages/dynamic_strings.php:102
5266
  msgid "l-ar-kw"
5267
  msgstr "Arabiska (Kuwait)"
5268
 
5269
  # Arabic (Lebanon)
5270
  # @ wp-slimstat
5271
- #: ../languages/dynamic_strings.php:103
5272
  msgid "l-ar-lb"
5273
  msgstr "Arabiska (Libanon)"
5274
 
5275
  # Arabic (Libya)
5276
  # @ wp-slimstat
5277
- #: ../languages/dynamic_strings.php:104
5278
  msgid "l-ar-ly"
5279
  msgstr "Arabiska (Libyen)"
5280
 
5281
  # Arabic (Morocco)
5282
  # @ wp-slimstat
5283
- #: ../languages/dynamic_strings.php:105
5284
  msgid "l-ar-ma"
5285
  msgstr "Arabiska (Morocko)"
5286
 
5287
  # Arabic (Oman)
5288
  # @ wp-slimstat
5289
- #: ../languages/dynamic_strings.php:106
5290
  msgid "l-ar-om"
5291
  msgstr "Arabiska (Oman)"
5292
 
5293
  # Arabic (Qatar)
5294
  # @ wp-slimstat
5295
- #: ../languages/dynamic_strings.php:107
5296
  msgid "l-ar-qa"
5297
  msgstr "Arabiska (Qatar)"
5298
 
5299
  # Arabic (Saudi Arabia)
5300
  # @ wp-slimstat
5301
- #: ../languages/dynamic_strings.php:108
5302
  msgid "l-ar-sa"
5303
  msgstr "Arabic (Saudi Arabien)"
5304
 
5305
  # Arabic (Syria)
5306
  # @ wp-slimstat
5307
- #: ../languages/dynamic_strings.php:109
5308
  msgid "l-ar-sy"
5309
  msgstr "Arabiska (Syrien)"
5310
 
5311
  # Arabic (Tunisia)
5312
  # @ wp-slimstat
5313
- #: ../languages/dynamic_strings.php:110
5314
  msgid "l-ar-tn"
5315
  msgstr "Arabiska (Tunisien)"
5316
 
5317
  # Arabic (Yemen)
5318
  # @ wp-slimstat
5319
- #: ../languages/dynamic_strings.php:111
5320
  msgid "l-ar-ye"
5321
  msgstr "Arabiska (Jemen)"
5322
 
5323
  # Azerbaijani
5324
  # @ wp-slimstat
5325
- #: ../languages/dynamic_strings.php:112
5326
  msgid "l-az"
5327
  msgstr "Azerbajdzjanska"
5328
 
5329
  # Azerbaijani
5330
  # @ wp-slimstat
5331
- #: ../languages/dynamic_strings.php:113
5332
  msgid "l-az-az"
5333
  msgstr "Azerbajdzjanska"
5334
 
5335
  # Belarusian
5336
  # @ wp-slimstat
5337
- #: ../languages/dynamic_strings.php:114
5338
  msgid "l-be"
5339
  msgstr "Vitryska, Ryska"
5340
 
5341
  # Belarusian
5342
  # @ wp-slimstat
5343
- #: ../languages/dynamic_strings.php:115
5344
  msgid "l-be-by"
5345
  msgstr "Vitryska, Ryska"
5346
 
5347
  # Bulgarian
5348
  # @ wp-slimstat
5349
- #: ../languages/dynamic_strings.php:116
5350
  msgid "l-bg"
5351
  msgstr "Bulgariska"
5352
 
5353
  # Bulgarian
5354
  # @ wp-slimstat
5355
- #: ../languages/dynamic_strings.php:117
5356
  msgid "l-bg-bg"
5357
  msgstr "Bulgariska"
5358
 
5359
  # Bosnian
5360
  # @ wp-slimstat
5361
- #: ../languages/dynamic_strings.php:118
5362
  msgid "l-bs-ba"
5363
  msgstr "Bosniska"
5364
 
5365
  # Catalan; Valencian
5366
  # @ wp-slimstat
5367
- #: ../languages/dynamic_strings.php:119
5368
  msgid "l-ca"
5369
  msgstr "Katalanska; Valencianska"
5370
 
5371
  # Catalan; Valencian
5372
  # @ wp-slimstat
5373
- #: ../languages/dynamic_strings.php:120
5374
  msgid "l-ca-es"
5375
  msgstr "Katalanska; Valencianska"
5376
 
5377
  # Czech
5378
  # @ wp-slimstat
5379
- #: ../languages/dynamic_strings.php:121
5380
  msgid "l-cs"
5381
  msgstr "Tjeckiska"
5382
 
5383
  # Czech
5384
  # @ wp-slimstat
5385
- #: ../languages/dynamic_strings.php:122
5386
  msgid "l-cs-cz"
5387
  msgstr "Tjeckiska"
5388
 
5389
  # Welsh
5390
  # @ wp-slimstat
5391
- #: ../languages/dynamic_strings.php:123
5392
  msgid "l-cy"
5393
  msgstr "Welsh"
5394
 
5395
  # Welsh
5396
  # @ wp-slimstat
5397
- #: ../languages/dynamic_strings.php:124
5398
  msgid "l-cy-gb"
5399
  msgstr "Welsh"
5400
 
5401
  # Danish
5402
  # @ wp-slimstat
5403
- #: ../languages/dynamic_strings.php:125
5404
  msgid "l-da"
5405
  msgstr "Danska"
5406
 
5407
  # Danish
5408
  # @ wp-slimstat
5409
- #: ../languages/dynamic_strings.php:126
5410
  msgid "l-da-dk"
5411
  msgstr "Danska"
5412
 
5413
  # German
5414
  # @ wp-slimstat
5415
- #: ../languages/dynamic_strings.php:127
5416
  msgid "l-de"
5417
  msgstr "Tyska"
5418
 
5419
  # German (Austria)
5420
  # @ wp-slimstat
5421
- #: ../languages/dynamic_strings.php:128
5422
  msgid "l-de-at"
5423
  msgstr "Tyska (Österrike)"
5424
 
5425
  # German (Switzerland)
5426
  # @ wp-slimstat
5427
- #: ../languages/dynamic_strings.php:129
5428
  msgid "l-de-ch"
5429
  msgstr "Tyska (Schweiz)"
5430
 
5431
  # German (Germany)
5432
  # @ wp-slimstat
5433
- #: ../languages/dynamic_strings.php:130
5434
  msgid "l-de-de"
5435
  msgstr "Tyska (Tyskland)"
5436
 
5437
  # German (Liechtenstein)
5438
  # @ wp-slimstat
5439
- #: ../languages/dynamic_strings.php:131
5440
  msgid "l-de-li"
5441
  msgstr "Tyska (Liechtenstein)"
5442
 
5443
  # German (Luxembourg)
5444
  # @ wp-slimstat
5445
- #: ../languages/dynamic_strings.php:132
5446
  msgid "l-de-lu"
5447
  msgstr "Tyska (Luxembourg)"
5448
 
5449
  # Dhivehi; Divehi; Maldivian
5450
  # @ wp-slimstat
5451
- #: ../languages/dynamic_strings.php:133
5452
  msgid "l-dv"
5453
  msgstr "Divehi (Maldiverna)"
5454
 
5455
  # Dhivehi; Divehi; Maldivian
5456
  # @ wp-slimstat
5457
- #: ../languages/dynamic_strings.php:134
5458
  msgid "l-dv-mv"
5459
  msgstr "Divehi (Maldiverna)"
5460
 
5461
  # Modern Greek (1453-)
5462
  # @ wp-slimstat
5463
- #: ../languages/dynamic_strings.php:135
5464
  msgid "l-el"
5465
  msgstr "Modern Grekiska (1453-)"
5466
 
5467
  # Greek (Greece)
5468
  # @ wp-slimstat
5469
- #: ../languages/dynamic_strings.php:136
5470
  msgid "l-el-gr"
5471
  msgstr "Grekiska (Grekland)"
5472
 
5473
  # English
5474
  # @ wp-slimstat
5475
- #: ../languages/dynamic_strings.php:137
5476
  msgid "l-en"
5477
  msgstr "Engelska"
5478
 
5479
  # English (Australia)
5480
  # @ wp-slimstat
5481
- #: ../languages/dynamic_strings.php:138
5482
  msgid "l-en-au"
5483
  msgstr "Engelska (Australien)"
5484
 
5485
  # English (Belize)
5486
  # @ wp-slimstat
5487
- #: ../languages/dynamic_strings.php:139
5488
  msgid "l-en-bz"
5489
  msgstr "Engelska (Belize)"
5490
 
5491
  # English (Canada)
5492
  # @ wp-slimstat
5493
- #: ../languages/dynamic_strings.php:140
5494
  msgid "l-en-ca"
5495
  msgstr "Engelska (Kanada)"
5496
 
5497
  # English (Canada)
5498
  # @ wp-slimstat
5499
- #: ../languages/dynamic_strings.php:141
5500
  msgid "l-en-cb"
5501
  msgstr "Engelska (Kanada)"
5502
 
5503
  # English (United Kingdom)
5504
  # @ wp-slimstat
5505
- #: ../languages/dynamic_strings.php:142
5506
  msgid "l-en-gb"
5507
  msgstr "Engelska (Storbritanien)"
5508
 
5509
  # English (Ireland)
5510
  # @ wp-slimstat
5511
- #: ../languages/dynamic_strings.php:143
5512
  msgid "l-en-ie"
5513
  msgstr "Engelska (Irland)"
5514
 
5515
  # English (Jamaica)
5516
  # @ wp-slimstat
5517
- #: ../languages/dynamic_strings.php:144
5518
  msgid "l-en-jm"
5519
  msgstr "Engelska (Jamaica)"
5520
 
5521
  # English (New Zealand)
5522
  # @ wp-slimstat
5523
- #: ../languages/dynamic_strings.php:145
5524
  msgid "l-en-nz"
5525
  msgstr "Engelska (Nya Zeeland)"
5526
 
5527
  # English
5528
  # @ wp-slimstat
5529
- #: ../languages/dynamic_strings.php:146
5530
  msgid "l-en-ph"
5531
  msgstr "Engelska"
5532
 
5533
  # English (Trinidad)
5534
  # @ wp-slimstat
5535
- #: ../languages/dynamic_strings.php:147
5536
  msgid "l-en-tt"
5537
  msgstr "Engelska (Trinidad)"
5538
 
5539
  # English (United States)
5540
  # @ wp-slimstat
5541
- #: ../languages/dynamic_strings.php:148
5542
  msgid "l-en-us"
5543
  msgstr "Engelska (Amerika)"
5544
 
5545
  # English (South Africa)
5546
  # @ wp-slimstat
5547
- #: ../languages/dynamic_strings.php:149
5548
  msgid "l-en-za"
5549
  msgstr "Engelska (Sydafrika)"
5550
 
5551
  # English (South Africa)
5552
  # @ wp-slimstat
5553
- #: ../languages/dynamic_strings.php:150
5554
  msgid "l-en-zw"
5555
  msgstr "Engelska (Sydafrika)"
5556
 
5557
  # Esperanto
5558
  # @ wp-slimstat
5559
- #: ../languages/dynamic_strings.php:151
5560
  msgid "l-eo"
5561
  msgstr "Esperanto"
5562
 
5563
  # Spanish; Castilian
5564
  # @ wp-slimstat
5565
- #: ../languages/dynamic_strings.php:152
5566
  msgid "l-es"
5567
  msgstr "Spanska; Kastilianska"
5568
 
5569
  # Spanish (Argentina)
5570
  # @ wp-slimstat
5571
- #: ../languages/dynamic_strings.php:153
5572
  msgid "l-es-ar"
5573
  msgstr "Spanska (Argentina)"
5574
 
5575
  # Spanish (Bolivia)
5576
  # @ wp-slimstat
5577
- #: ../languages/dynamic_strings.php:154
5578
  msgid "l-es-bo"
5579
  msgstr "Spanska (Bolivia)"
5580
 
5581
  # Spanish (Chile)
5582
  # @ wp-slimstat
5583
- #: ../languages/dynamic_strings.php:155
5584
  msgid "l-es-cl"
5585
  msgstr "Spanska (Chile)"
5586
 
5587
  # Spanish (Colombia)
5588
  # @ wp-slimstat
5589
- #: ../languages/dynamic_strings.php:156
5590
  msgid "l-es-co"
5591
  msgstr "Spanska (Colombia)"
5592
 
5593
  # Spanish (Costa Rica)
5594
  # @ wp-slimstat
5595
- #: ../languages/dynamic_strings.php:157
5596
  msgid "l-es-cr"
5597
  msgstr "Spanska (Costa Rica)"
5598
 
5599
  # Spanish (Dominican Republic)
5600
  # @ wp-slimstat
5601
- #: ../languages/dynamic_strings.php:158
5602
  msgid "l-es-do"
5603
  msgstr "Spanska (Dominikanska republiken)"
5604
 
5605
  # Spanish (Ecuador)
5606
  # @ wp-slimstat
5607
- #: ../languages/dynamic_strings.php:159
5608
  msgid "l-es-ec"
5609
  msgstr "Spanska (Ecuador)"
5610
 
5611
  # Spanish (Spain)
5612
  # @ wp-slimstat
5613
- #: ../languages/dynamic_strings.php:160
5614
  msgid "l-es-es"
5615
  msgstr "Spanska (Spanien)"
5616
 
5617
  # Spanish (Guatemala)
5618
  # @ wp-slimstat
5619
- #: ../languages/dynamic_strings.php:161
5620
  msgid "l-es-gt"
5621
  msgstr "Spanska (Guatemala)"
5622
 
5623
  # Spanish (Honduras)
5624
  # @ wp-slimstat
5625
- #: ../languages/dynamic_strings.php:162
5626
  msgid "l-es-hn"
5627
  msgstr "Spanska (Honduras)"
5628
 
5629
  # Spanish (Mexico)
5630
  # @ wp-slimstat
5631
- #: ../languages/dynamic_strings.php:163
5632
  msgid "l-es-mx"
5633
  msgstr "Spanska (Mexico)"
5634
 
5635
  # Spanish (Nicaragua)
5636
  # @ wp-slimstat
5637
- #: ../languages/dynamic_strings.php:164
5638
  msgid "l-es-ni"
5639
  msgstr "Spanska (Nicaragua)"
5640
 
5641
  # Spanish (Panama)
5642
  # @ wp-slimstat
5643
- #: ../languages/dynamic_strings.php:165
5644
  msgid "l-es-pa"
5645
  msgstr "Spanska (Panama)"
5646
 
5647
  # Spanish (Peru)
5648
  # @ wp-slimstat
5649
- #: ../languages/dynamic_strings.php:166
5650
  msgid "l-es-pe"
5651
  msgstr "Spanska (Peru)"
5652
 
5653
  # Spanish (Puerto Rico)
5654
  # @ wp-slimstat
5655
- #: ../languages/dynamic_strings.php:167
5656
  msgid "l-es-pr"
5657
  msgstr "Spanska (Puerto Rico)"
5658
 
5659
  # Spanish (Paraguay)
5660
  # @ wp-slimstat
5661
- #: ../languages/dynamic_strings.php:168
5662
  msgid "l-es-py"
5663
  msgstr "Spanska (Paraguay)"
5664
 
5665
  # Spanish (El Salvador)
5666
  # @ wp-slimstat
5667
- #: ../languages/dynamic_strings.php:169
5668
  msgid "l-es-sv"
5669
  msgstr "Spanska (El Salvador)"
5670
 
5671
  # Spanish (Uruguay)
5672
  # @ wp-slimstat
5673
- #: ../languages/dynamic_strings.php:170
5674
  msgid "l-es-uy"
5675
  msgstr "Spanska (Uruguay)"
5676
 
5677
  # Spanish (Venezuela)
5678
  # @ wp-slimstat
5679
- #: ../languages/dynamic_strings.php:171
5680
  msgid "l-es-ve"
5681
  msgstr "Spanska (Venezuela)"
5682
 
5683
  # Estonian
5684
  # @ wp-slimstat
5685
- #: ../languages/dynamic_strings.php:172
5686
  msgid "l-et"
5687
  msgstr "Estniska"
5688
 
5689
  # Estonian
5690
  # @ wp-slimstat
5691
- #: ../languages/dynamic_strings.php:173
5692
  msgid "l-et-ee"
5693
  msgstr "Estniska"
5694
 
5695
  # Basque
5696
  # @ wp-slimstat
5697
- #: ../languages/dynamic_strings.php:174
5698
  msgid "l-eu"
5699
  msgstr "Baskiska"
5700
 
5701
  # Basque
5702
  # @ wp-slimstat
5703
- #: ../languages/dynamic_strings.php:175
5704
  msgid "l-eu-es"
5705
  msgstr "Baskiska"
5706
 
5707
  # Persian
5708
  # @ wp-slimstat
5709
- #: ../languages/dynamic_strings.php:176
5710
  msgid "l-fa"
5711
  msgstr "Persiska"
5712
 
5713
  # Persian
5714
  # @ wp-slimstat
5715
- #: ../languages/dynamic_strings.php:177
5716
  msgid "l-fa-ir"
5717
  msgstr "Persiska"
5718
 
5719
  # Finnish
5720
  # @ wp-slimstat
5721
- #: ../languages/dynamic_strings.php:178
5722
  msgid "l-fi"
5723
  msgstr "Finska"
5724
 
5725
  # Finnish
5726
  # @ wp-slimstat
5727
- #: ../languages/dynamic_strings.php:179
5728
  msgid "l-fi-fi"
5729
  msgstr "Finska"
5730
 
5731
  # Faroese
5732
  # @ wp-slimstat
5733
- #: ../languages/dynamic_strings.php:180
5734
  msgid "l-fo"
5735
  msgstr "Frisiska"
5736
 
5737
  # Faroese
5738
  # @ wp-slimstat
5739
- #: ../languages/dynamic_strings.php:181
5740
  msgid "l-fo-fo"
5741
  msgstr "Frisiska"
5742
 
5743
  # French
5744
  # @ wp-slimstat
5745
- #: ../languages/dynamic_strings.php:182
5746
  msgid "l-fr"
5747
  msgstr "Franska"
5748
 
5749
  # French (Belgium)
5750
  # @ wp-slimstat
5751
- #: ../languages/dynamic_strings.php:183
5752
  msgid "l-fr-be"
5753
  msgstr "Franska (Belgien)"
5754
 
5755
  # French (Canada)
5756
  # @ wp-slimstat
5757
- #: ../languages/dynamic_strings.php:184
5758
  msgid "l-fr-ca"
5759
  msgstr "Franska (Kanada)"
5760
 
5761
  # French (Switzerland)
5762
  # @ wp-slimstat
5763
- #: ../languages/dynamic_strings.php:185
5764
  msgid "l-fr-ch"
5765
  msgstr "Franska (Schweiz)"
5766
 
5767
  # French (France)
5768
  # @ wp-slimstat
5769
- #: ../languages/dynamic_strings.php:186
5770
  msgid "l-fr-fr"
5771
  msgstr "Franska (Frankrike)"
5772
 
5773
  # French (Luxembourg)
5774
  # @ wp-slimstat
5775
- #: ../languages/dynamic_strings.php:187
5776
  msgid "l-fr-lu"
5777
  msgstr "Franska (Luxembourg)"
5778
 
5779
  # French (Switzerland)
5780
  # @ wp-slimstat
5781
- #: ../languages/dynamic_strings.php:188
5782
  msgid "l-fr-mc"
5783
  msgstr "Franska (Schweiz)"
5784
 
5785
  # Galician
5786
  # @ wp-slimstat
5787
- #: ../languages/dynamic_strings.php:189
5788
  msgid "l-gl"
5789
  msgstr "Galiciska"
5790
 
5791
  # Spanish; Castilian
5792
  # @ wp-slimstat
5793
- #: ../languages/dynamic_strings.php:190
5794
  msgid "l-gl-es"
5795
  msgstr "Spanska; Kastilianska"
5796
 
5797
  # Gujarati
5798
  # @ wp-slimstat
5799
- #: ../languages/dynamic_strings.php:191
5800
  msgid "l-gu"
5801
  msgstr "Gujarati (Indien)"
5802
 
5803
  # Gujarati
5804
  # @ wp-slimstat
5805
- #: ../languages/dynamic_strings.php:192
5806
  msgid "l-gu-in"
5807
  msgstr "Gujarati (Indien)"
5808
 
5809
  # Hebrew
5810
  # @ wp-slimstat
5811
- #: ../languages/dynamic_strings.php:193
5812
  msgid "l-he"
5813
  msgstr "Hebreiska"
5814
 
5815
  # Hebrew (Israel)
5816
  # @ wp-slimstat
5817
- #: ../languages/dynamic_strings.php:194
5818
  msgid "l-he-il"
5819
  msgstr "Hebreiska (Israel)"
5820
 
5821
  # Hindi
5822
  # @ wp-slimstat
5823
- #: ../languages/dynamic_strings.php:195
5824
  msgid "l-hi"
5825
  msgstr "Hindi"
5826
 
5827
  # Hindi
5828
  # @ wp-slimstat
5829
- #: ../languages/dynamic_strings.php:196
5830
  msgid "l-hi-in"
5831
  msgstr "Hindi"
5832
 
5833
  # Croatian
5834
  # @ wp-slimstat
5835
- #: ../languages/dynamic_strings.php:197
5836
  msgid "l-hr"
5837
  msgstr "Kroatiska"
5838
 
5839
  # Croatian
5840
  # @ wp-slimstat
5841
- #: ../languages/dynamic_strings.php:198
5842
  msgid "l-hr-ba"
5843
  msgstr "Kroatiska"
5844
 
5845
  # Croatian
5846
  # @ wp-slimstat
5847
- #: ../languages/dynamic_strings.php:199
5848
  msgid "l-hr-hr"
5849
  msgstr "Kroatiska"
5850
 
5851
  # Hungarian
5852
  # @ wp-slimstat
5853
- #: ../languages/dynamic_strings.php:200
5854
  msgid "l-hu"
5855
  msgstr "Ungerska"
5856
 
5857
  # Hungarian (Hungary)
5858
  # @ wp-slimstat
5859
- #: ../languages/dynamic_strings.php:201
5860
  msgid "l-hu-hu"
5861
  msgstr "Ungerska (Ungern)"
5862
 
5863
  # Armenian
5864
  # @ wp-slimstat
5865
- #: ../languages/dynamic_strings.php:202
5866
  msgid "l-hy"
5867
  msgstr "Armeniska"
5868
 
5869
  # Armenian
5870
  # @ wp-slimstat
5871
- #: ../languages/dynamic_strings.php:203
5872
  msgid "l-hy-am"
5873
  msgstr "Armeniska"
5874
 
5875
  # Indonesian
5876
  # @ wp-slimstat
5877
- #: ../languages/dynamic_strings.php:204
5878
  msgid "l-id"
5879
  msgstr "Indonesiska"
5880
 
5881
  # Indonesian
5882
  # @ wp-slimstat
5883
- #: ../languages/dynamic_strings.php:205
5884
  msgid "l-id-id"
5885
  msgstr "Indonesiska"
5886
 
5887
  # Icelandic
5888
  # @ wp-slimstat
5889
- #: ../languages/dynamic_strings.php:206
5890
  msgid "l-is"
5891
  msgstr "Isländska"
5892
 
5893
  # Icelandic
5894
  # @ wp-slimstat
5895
- #: ../languages/dynamic_strings.php:207
5896
  msgid "l-is-is"
5897
  msgstr "Isländska"
5898
 
5899
  # Italian
5900
  # @ wp-slimstat
5901
- #: ../languages/dynamic_strings.php:208
5902
  msgid "l-it"
5903
  msgstr "Italienska"
5904
 
5905
  # Italian (Switzerland)
5906
  # @ wp-slimstat
5907
- #: ../languages/dynamic_strings.php:209
5908
  msgid "l-it-ch"
5909
  msgstr "Italienska (Schweiz)"
5910
 
5911
  # Italian (Italia)
5912
  # @ wp-slimstat
5913
- #: ../languages/dynamic_strings.php:210
5914
  msgid "l-it-it"
5915
  msgstr "Italienska (Italien)"
5916
 
5917
  # Japanese
5918
  # @ wp-slimstat
5919
- #: ../languages/dynamic_strings.php:211
5920
  msgid "l-ja"
5921
  msgstr "Japanska"
5922
 
5923
  # Japanes
5924
  # @ wp-slimstat
5925
- #: ../languages/dynamic_strings.php:212
5926
  msgid "l-ja-jp"
5927
  msgstr "Japanska"
5928
 
5929
  # Georgian
5930
  # @ wp-slimstat
5931
- #: ../languages/dynamic_strings.php:213
5932
  msgid "l-ka"
5933
  msgstr "Georgiska"
5934
 
5935
  # Georgian
5936
  # @ wp-slimstat
5937
- #: ../languages/dynamic_strings.php:214
5938
  msgid "l-ka-ge"
5939
  msgstr "Georgiska"
5940
 
5941
  # Kazakh
5942
  # @ wp-slimstat
5943
- #: ../languages/dynamic_strings.php:215
5944
  msgid "l-kk"
5945
  msgstr "Kazakiska"
5946
 
5947
  # Kazakh
5948
  # @ wp-slimstat
5949
- #: ../languages/dynamic_strings.php:216
5950
  msgid "l-kk-kz"
5951
  msgstr "Kazakiska"
5952
 
5953
  # Kannada
5954
  # @ wp-slimstat
5955
- #: ../languages/dynamic_strings.php:217
5956
  msgid "l-kn"
5957
  msgstr "Kannada (Indien)"
5958
 
5959
  # Kannada
5960
  # @ wp-slimstat
5961
- #: ../languages/dynamic_strings.php:218
5962
  msgid "l-kn-in"
5963
  msgstr "Kannada (Indien)"
5964
 
5965
  # Korean
5966
  # @ wp-slimstat
5967
- #: ../languages/dynamic_strings.php:219
5968
  msgid "l-ko"
5969
  msgstr "Koreanska"
5970
 
5971
  # Korean (Republic of Korea)
5972
  # @ wp-slimstat
5973
- #: ../languages/dynamic_strings.php:220
5974
  msgid "l-ko-kr"
5975
  msgstr "Koreanska (Korea republik)"
5976
 
5977
  # Korean
5978
  # @ wp-slimstat
5979
- #: ../languages/dynamic_strings.php:221
5980
  msgid "l-kok"
5981
  msgstr "Koreanska"
5982
 
5983
  # Korean
5984
  # @ wp-slimstat
5985
- #: ../languages/dynamic_strings.php:222
5986
  msgid "l-kok-in"
5987
  msgstr "Koreanska"
5988
 
5989
  # Kirghiz; Kyrgyz
5990
  # @ wp-slimstat
5991
- #: ../languages/dynamic_strings.php:223
5992
  msgid "l-ky"
5993
  msgstr "Kirgiziska; Kyrgyz"
5994
 
5995
  # Kirghiz; Kyrgyz
5996
  # @ wp-slimstat
5997
- #: ../languages/dynamic_strings.php:224
5998
  msgid "l-ky-kg"
5999
  msgstr "Kirgiziska; Kyrgyz"
6000
 
6001
  # Lithuanian
6002
  # @ wp-slimstat
6003
- #: ../languages/dynamic_strings.php:225
6004
  msgid "l-lt"
6005
  msgstr "Litauiska"
6006
 
6007
  # Lithuanian
6008
  # @ wp-slimstat
6009
- #: ../languages/dynamic_strings.php:226
6010
  msgid "l-lt-lt"
6011
  msgstr "Litauiska"
6012
 
6013
  # Latvian
6014
  # @ wp-slimstat
6015
- #: ../languages/dynamic_strings.php:227
6016
  msgid "l-lv"
6017
  msgstr "Lettiska; Latvija"
6018
 
6019
  # Latvian
6020
  # @ wp-slimstat
6021
- #: ../languages/dynamic_strings.php:228
6022
  msgid "l-lv-lv"
6023
  msgstr "Lettiska; Latvija"
6024
 
6025
  # Maori
6026
  # @ wp-slimstat
6027
- #: ../languages/dynamic_strings.php:229
6028
  msgid "l-mi"
6029
  msgstr "Maori (Nya Zeeland)"
6030
 
6031
  # Maori
6032
  # @ wp-slimstat
6033
- #: ../languages/dynamic_strings.php:230
6034
  msgid "l-mi-nz"
6035
  msgstr "Maori (Nya Zeeland)"
6036
 
6037
  # Macedonian
6038
  # @ wp-slimstat
6039
- #: ../languages/dynamic_strings.php:231
6040
  msgid "l-mk"
6041
  msgstr "Makedonska"
6042
 
6043
  # Macedonian
6044
  # @ wp-slimstat
6045
- #: ../languages/dynamic_strings.php:232
6046
  msgid "l-mk-ml"
6047
  msgstr "Makedonska"
6048
 
6049
  # Mongolian
6050
  # @ wp-slimstat
6051
- #: ../languages/dynamic_strings.php:233
6052
  msgid "l-mn"
6053
  msgstr "Mongoliska"
6054
 
6055
  # Mongolian
6056
  # @ wp-slimstat
6057
- #: ../languages/dynamic_strings.php:234
6058
  msgid "l-mn-mn"
6059
  msgstr "Mongoliska"
6060
 
6061
  # Marathi
6062
  # @ wp-slimstat
6063
- #: ../languages/dynamic_strings.php:235
6064
  msgid "l-mr"
6065
  msgstr "Marathi (Indien)"
6066
 
6067
  # Marathi
6068
  # @ wp-slimstat
6069
- #: ../languages/dynamic_strings.php:236
6070
  msgid "l-mr-in"
6071
  msgstr "Marathi (Indien)"
6072
 
6073
  # Malay
6074
  # @ wp-slimstat
6075
- #: ../languages/dynamic_strings.php:237
6076
  msgid "l-ms"
6077
  msgstr "malajiska (Filipinerna)"
6078
 
6079
  # Malay
6080
  # @ wp-slimstat
6081
- #: ../languages/dynamic_strings.php:238
6082
  msgid "l-ms-bn"
6083
  msgstr "malajiska (Filipinerna)"
6084
 
6085
  # Malay
6086
  # @ wp-slimstat
6087
- #: ../languages/dynamic_strings.php:239
6088
  msgid "l-ms-my"
6089
  msgstr "malajiska (Filipinerna)"
6090
 
6091
  # Maltese
6092
  # @ wp-slimstat
6093
- #: ../languages/dynamic_strings.php:240
6094
  msgid "l-mt"
6095
  msgstr "Maltesiska"
6096
 
6097
  # Maltese
6098
  # @ wp-slimstat
6099
- #: ../languages/dynamic_strings.php:241
6100
  msgid "l-mt-mt"
6101
  msgstr "Maltesiska"
6102
 
6103
  # Norwegian BokmÃ¥l
6104
  # @ wp-slimstat
6105
- #: ../languages/dynamic_strings.php:242
6106
  msgid "l-nb"
6107
  msgstr "Norska Bokmål"
6108
 
6109
  # Norwegian BokmÃ¥l
6110
  # @ wp-slimstat
6111
- #: ../languages/dynamic_strings.php:243
6112
  msgid "l-nb-no"
6113
  msgstr "Norska Bokmål"
6114
 
6115
  # Dutch; Flemish
6116
  # @ wp-slimstat
6117
- #: ../languages/dynamic_strings.php:244
6118
  msgid "l-nl"
6119
  msgstr "Nederländska; Flemish"
6120
 
6121
  # Dutch (Belgium)
6122
  # @ wp-slimstat
6123
- #: ../languages/dynamic_strings.php:245
6124
  msgid "l-nl-be"
6125
  msgstr "Nederländska (Belgien)"
6126
 
6127
  # Dutch (Netherlands)
6128
  # @ wp-slimstat
6129
- #: ../languages/dynamic_strings.php:246
6130
  msgid "l-nl-nl"
6131
  msgstr "Nederländska (Nederländerna)"
6132
 
6133
  # Norwegian Nynorsk
6134
  # @ wp-slimstat
6135
- #: ../languages/dynamic_strings.php:247
6136
  msgid "l-nn-no"
6137
  msgstr "Norska Nynorsk"
6138
 
6139
  # @ wp-slimstat
6140
- #: ../languages/dynamic_strings.php:248
6141
  msgid "l-ns"
6142
  msgstr "Northern Sotho"
6143
 
6144
  # @ wp-slimstat
6145
- #: ../languages/dynamic_strings.php:249
6146
  msgid "l-ns-za"
6147
  msgstr "Northern Sotho (South Africa)"
6148
 
6149
  # Panjabi; Punjabi
6150
  # @ wp-slimstat
6151
- #: ../languages/dynamic_strings.php:250
6152
  msgid "l-pa"
6153
  msgstr "Punjabi (Indien)"
6154
 
6155
  # Panjabi; Punjabi
6156
  # @ wp-slimstat
6157
- #: ../languages/dynamic_strings.php:251
6158
  msgid "l-pa-in"
6159
  msgstr "Punjabi (Indien)"
6160
 
6161
  # Polish
6162
  # @ wp-slimstat
6163
- #: ../languages/dynamic_strings.php:252
6164
  msgid "l-pl"
6165
  msgstr "Poliska"
6166
 
6167
  # Polish
6168
  # @ wp-slimstat
6169
- #: ../languages/dynamic_strings.php:253
6170
  msgid "l-pl-pl"
6171
  msgstr "Poliska"
6172
 
6173
  # Pushto; Pashto
6174
  # @ wp-slimstat
6175
- #: ../languages/dynamic_strings.php:254
6176
  msgid "l-ps"
6177
  msgstr "Pashto (Afghanistan)"
6178
 
6179
  # Spanish (Argentina)
6180
  # @ wp-slimstat
6181
- #: ../languages/dynamic_strings.php:255
6182
  msgid "l-ps-ar"
6183
  msgstr "Spanska (Argentina)"
6184
 
6185
  # Portuguese
6186
  # @ wp-slimstat
6187
- #: ../languages/dynamic_strings.php:256
6188
  msgid "l-pt"
6189
  msgstr "Portugisiska"
6190
 
6191
  # Portuguese (Brazil)
6192
  # @ wp-slimstat
6193
- #: ../languages/dynamic_strings.php:257
6194
  msgid "l-pt-br"
6195
  msgstr "Portugisiska (Brasilien)"
6196
 
6197
  # Portuguese
6198
  # @ wp-slimstat
6199
- #: ../languages/dynamic_strings.php:258
6200
  msgid "l-pt-pt"
6201
  msgstr "Portugisiska"
6202
 
6203
  # Quechua
6204
  # @ wp-slimstat
6205
- #: ../languages/dynamic_strings.php:259
6206
  msgid "l-qu"
6207
  msgstr "Quechua"
6208
 
6209
  # Quechua
6210
  # @ wp-slimstat
6211
- #: ../languages/dynamic_strings.php:260
6212
  msgid "l-qu-bo"
6213
  msgstr "Quechua"
6214
 
6215
  # Quechua
6216
  # @ wp-slimstat
6217
- #: ../languages/dynamic_strings.php:261
6218
  msgid "l-qu-ec"
6219
  msgstr "Quechua"
6220
 
6221
  # Quechua
6222
  # @ wp-slimstat
6223
- #: ../languages/dynamic_strings.php:262
6224
  msgid "l-qu-pe"
6225
  msgstr "Quechua"
6226
 
6227
  # Romanian; Moldavian; Moldovan
6228
  # @ wp-slimstat
6229
- #: ../languages/dynamic_strings.php:263
6230
  msgid "l-ro"
6231
  msgstr "Romänska; Moldaviska; Moldovan"
6232
 
6233
  # Romanian; Moldavian; Moldovan
6234
  # @ wp-slimstat
6235
- #: ../languages/dynamic_strings.php:264
6236
  msgid "l-ro-ro"
6237
  msgstr "Romänska"
6238
 
6239
  # Russian
6240
  # @ wp-slimstat
6241
- #: ../languages/dynamic_strings.php:265
6242
  msgid "l-ru"
6243
  msgstr "Ryska"
6244
 
6245
  # Russian (Russia)
6246
  # @ wp-slimstat
6247
- #: ../languages/dynamic_strings.php:266
6248
  msgid "l-ru-ru"
6249
  msgstr "Ryska (Ryssland)"
6250
 
6251
  # Sanskrit
6252
  # @ wp-slimstat
6253
- #: ../languages/dynamic_strings.php:267
6254
  msgid "l-sa"
6255
  msgstr "Sanskrit (Indien)"
6256
 
6257
  # Sanskrit
6258
  # @ wp-slimstat
6259
- #: ../languages/dynamic_strings.php:268
6260
  msgid "l-sa-in"
6261
  msgstr "Sanskrit (Indien)"
6262
 
6263
  # Northern Sami
6264
  # @ wp-slimstat
6265
- #: ../languages/dynamic_strings.php:269
6266
  msgid "l-se"
6267
  msgstr "Nordisk Sami"
6268
 
6269
  # Northern Sami
6270
  # @ wp-slimstat
6271
- #: ../languages/dynamic_strings.php:270
6272
  msgid "l-se-fi"
6273
  msgstr "Nordisk Sami"
6274
 
6275
  # Northern Sami
6276
  # @ wp-slimstat
6277
- #: ../languages/dynamic_strings.php:271
6278
  msgid "l-se-no"
6279
  msgstr "Nordisk Sami"
6280
 
6281
  # Northern Sami
6282
  # @ wp-slimstat
6283
- #: ../languages/dynamic_strings.php:272
6284
  msgid "l-se-se"
6285
  msgstr "Nordisk Sami"
6286
 
6287
  # Slovak
6288
  # @ wp-slimstat
6289
- #: ../languages/dynamic_strings.php:273
6290
  msgid "l-sk"
6291
  msgstr "Slovakiska"
6292
 
6293
  # Slovak
6294
  # @ wp-slimstat
6295
- #: ../languages/dynamic_strings.php:274
6296
  msgid "l-sk-sk"
6297
  msgstr "Slovakiska"
6298
 
6299
  # Slovenian
6300
  # @ wp-slimstat
6301
- #: ../languages/dynamic_strings.php:275
6302
  msgid "l-sl"
6303
  msgstr "Slovenska"
6304
 
6305
  # Slovenian
6306
  # @ wp-slimstat
6307
- #: ../languages/dynamic_strings.php:276
6308
  msgid "l-sl-si"
6309
  msgstr "Slovenska"
6310
 
6311
  # Albanian
6312
  # @ wp-slimstat
6313
- #: ../languages/dynamic_strings.php:277
6314
  msgid "l-sq"
6315
  msgstr "Albanska"
6316
 
6317
  # Albanian
6318
  # @ wp-slimstat
6319
- #: ../languages/dynamic_strings.php:278
6320
  msgid "l-sq-al"
6321
  msgstr "Albanska"
6322
 
6323
  # Serbian
6324
  # @ wp-slimstat
6325
- #: ../languages/dynamic_strings.php:279
6326
  msgid "l-sr-ba"
6327
  msgstr "Serbiska"
6328
 
6329
  # Serbian
6330
  # @ wp-slimstat
6331
- #: ../languages/dynamic_strings.php:280
6332
  msgid "l-sr-sp"
6333
  msgstr "Serbiska"
6334
 
6335
  # Swedish
6336
  # @ wp-slimstat
6337
- #: ../languages/dynamic_strings.php:281
6338
  msgid "l-sv"
6339
  msgstr "Svenska"
6340
 
6341
  # Swedish (Finland)
6342
  # @ wp-slimstat
6343
- #: ../languages/dynamic_strings.php:282
6344
  msgid "l-sv-fi"
6345
  msgstr "Svenska (Finland)"
6346
 
6347
  # Swedish (Sweden)
6348
  # @ wp-slimstat
6349
- #: ../languages/dynamic_strings.php:283
6350
  msgid "l-sv-se"
6351
  msgstr "Svenska (Sverige)"
6352
 
6353
  # Swahili
6354
  # @ wp-slimstat
6355
- #: ../languages/dynamic_strings.php:284
6356
  msgid "l-sw"
6357
  msgstr "Swahili"
6358
 
6359
  # Swahili
6360
  # @ wp-slimstat
6361
- #: ../languages/dynamic_strings.php:285
6362
  msgid "l-sw-ke"
6363
  msgstr "Swahili"
6364
 
6365
  # Tamil
6366
  # @ wp-slimstat
6367
- #: ../languages/dynamic_strings.php:286
6368
  msgid "l-ta"
6369
  msgstr "Tamil (Indien)"
6370
 
6371
  # Tamil
6372
  # @ wp-slimstat
6373
- #: ../languages/dynamic_strings.php:287
6374
  msgid "l-ta-in"
6375
  msgstr "Tamil (Indien)"
6376
 
6377
  # Telugu
6378
  # @ wp-slimstat
6379
- #: ../languages/dynamic_strings.php:288
6380
  msgid "l-te"
6381
  msgstr "Telugu (Indien)"
6382
 
6383
  # Telugu
6384
  # @ wp-slimstat
6385
- #: ../languages/dynamic_strings.php:289
6386
  msgid "l-te-in"
6387
  msgstr "Telugu (Indien)"
6388
 
6389
  # Thai
6390
  # @ wp-slimstat
6391
- #: ../languages/dynamic_strings.php:290
6392
  msgid "l-th"
6393
  msgstr "Thailändska"
6394
 
6395
  # Thai
6396
  # @ wp-slimstat
6397
- #: ../languages/dynamic_strings.php:291
6398
  msgid "l-th-th"
6399
  msgstr "Thailändska"
6400
 
6401
  # Tagalog
6402
  # @ wp-slimstat
6403
- #: ../languages/dynamic_strings.php:292
6404
  msgid "l-tl"
6405
  msgstr "Tagalog"
6406
 
6407
  # Tagalog
6408
  # @ wp-slimstat
6409
- #: ../languages/dynamic_strings.php:293
6410
  msgid "l-tl-ph"
6411
  msgstr "Tagalog"
6412
 
6413
  # Tswana
6414
  # @ wp-slimstat
6415
- #: ../languages/dynamic_strings.php:294
6416
  msgid "l-tn"
6417
  msgstr "Tswana (Sydafrika)"
6418
 
6419
  # English (South Africa)
6420
  # @ wp-slimstat
6421
- #: ../languages/dynamic_strings.php:295
6422
  msgid "l-tn-za"
6423
  msgstr "Engelska (Sydafrika)"
6424
 
6425
  # Turkish
6426
  # @ wp-slimstat
6427
- #: ../languages/dynamic_strings.php:296
6428
  msgid "l-tr"
6429
  msgstr "Turkiska"
6430
 
6431
  # Turkish
6432
  # @ wp-slimstat
6433
- #: ../languages/dynamic_strings.php:297
6434
  msgid "l-tr-tr"
6435
  msgstr "Turkiska"
6436
 
6437
  # Tatar
6438
  # @ wp-slimstat
6439
- #: ../languages/dynamic_strings.php:298
6440
  msgid "l-tt"
6441
  msgstr "Tatariska"
6442
 
6443
  # Tatar
6444
  # @ wp-slimstat
6445
- #: ../languages/dynamic_strings.php:299
6446
  msgid "l-tt-ru"
6447
  msgstr "Tatariska"
6448
 
6449
  # Tsonga
6450
  # @ wp-slimstat
6451
- #: ../languages/dynamic_strings.php:300
6452
  msgid "l-ts"
6453
  msgstr "Tsonga"
6454
 
6455
  # Ukrainian
6456
  # @ wp-slimstat
6457
- #: ../languages/dynamic_strings.php:301
6458
  msgid "l-uk"
6459
  msgstr "Ukrainska"
6460
 
6461
  # Ukrainian
6462
  # @ wp-slimstat
6463
- #: ../languages/dynamic_strings.php:302
6464
  msgid "l-uk-ua"
6465
  msgstr "Ukrainska"
6466
 
6467
  # Urdu
6468
  # @ wp-slimstat
6469
- #: ../languages/dynamic_strings.php:303
6470
  msgid "l-ur"
6471
  msgstr "Urdu"
6472
 
6473
  # Urdu
6474
  # @ wp-slimstat
6475
- #: ../languages/dynamic_strings.php:304
6476
  msgid "l-ur-pk"
6477
  msgstr "Urdu"
6478
 
6479
  # Uzbek
6480
  # @ wp-slimstat
6481
- #: ../languages/dynamic_strings.php:305
6482
  msgid "l-uz"
6483
  msgstr "Uzbekiska"
6484
 
6485
  # Uzbek
6486
  # @ wp-slimstat
6487
- #: ../languages/dynamic_strings.php:306
6488
  msgid "l-uz-uz"
6489
  msgstr "Uzbekiska"
6490
 
6491
  # Vietnamese
6492
  # @ wp-slimstat
6493
- #: ../languages/dynamic_strings.php:307
6494
  msgid "l-vi"
6495
  msgstr "Vietnamesiska"
6496
 
6497
  # Vietnamese
6498
  # @ wp-slimstat
6499
- #: ../languages/dynamic_strings.php:308
6500
  msgid "l-vi-vn"
6501
  msgstr "Vietnamesiska"
6502
 
6503
  # Xhosa
6504
  # @ wp-slimstat
6505
- #: ../languages/dynamic_strings.php:309
6506
  msgid "l-xh"
6507
  msgstr "Xhosa (Sydafrika)"
6508
 
6509
  # Xhosa
6510
  # @ wp-slimstat
6511
- #: ../languages/dynamic_strings.php:310
6512
  msgid "l-xh-za"
6513
  msgstr "Xhosa (Sydafrika)"
6514
 
6515
  # Chinese
6516
  # @ wp-slimstat
6517
- #: ../languages/dynamic_strings.php:311
6518
  msgid "l-zh"
6519
  msgstr "Kinesiska"
6520
 
6521
  # Chinese (China)
6522
  # @ wp-slimstat
6523
- #: ../languages/dynamic_strings.php:312
6524
  msgid "l-zh-cn"
6525
  msgstr "Kinesiska (Kina)"
6526
 
6527
  # Chinese (Hong Kong)
6528
  # @ wp-slimstat
6529
- #: ../languages/dynamic_strings.php:313
6530
  msgid "l-zh-hk"
6531
  msgstr "Kinesiska (Hong Kong)"
6532
 
6533
  # Chinese
6534
  # @ wp-slimstat
6535
- #: ../languages/dynamic_strings.php:314
6536
  msgid "l-zh-mo"
6537
  msgstr "Kinesiska"
6538
 
6539
  # Chinese (Singapore)
6540
  # @ wp-slimstat
6541
- #: ../languages/dynamic_strings.php:315
6542
  msgid "l-zh-sg"
6543
  msgstr "Kinesiska (Singapore)"
6544
 
6545
  # Chinese (Taiwan)
6546
  # @ wp-slimstat
6547
- #: ../languages/dynamic_strings.php:316
6548
  msgid "l-zh-tw"
6549
  msgstr "Kinesiska (Taiwan)"
6550
 
6551
  # Zulu
6552
  # @ wp-slimstat
6553
- #: ../languages/dynamic_strings.php:317
6554
  msgid "l-zu"
6555
  msgstr "Zulu (Sydafrika)"
6556
 
6557
  # Zulu
6558
  # @ wp-slimstat
6559
- #: ../languages/dynamic_strings.php:318
6560
  msgid "l-zu-za"
6561
  msgstr "Zulu (Sydafrika)"
6562
 
6563
  # Unknown
6564
  # @ wp-slimstat
6565
- #: ../languages/dynamic_strings.php:320
6566
  msgid "l-empty"
6567
  msgstr "Okänd"
6568
 
6569
  # Unknown
6570
  # @ wp-slimstat
6571
- #: ../languages/dynamic_strings.php:321
6572
  msgid "l-xx"
6573
  msgstr "Okänd"
6574
 
6575
  # Local IP Address
6576
  # @ wp-slimstat
6577
- #: ../languages/dynamic_strings.php:323
6578
  msgid "c-xy"
6579
  msgstr "Local IP Address"
6580
 
6581
- #: ../wp-slimstat.php:223 ../wp-slimstat.php:515
6582
  msgid "Notice: Pageview filtered by third-party code"
6583
  msgstr "Observera: Sidvisning filtreras av tredje part kod"
6584
 
6585
- #: ../wp-slimstat.php:240
6586
  #, php-format
6587
  msgid "Error: Malformed URL %s"
6588
  msgstr "Error: Felaktig URL %s"
6589
 
6590
- #: ../wp-slimstat.php:259
6591
  #, php-format
6592
  msgid "Notice: Referrer %s is blacklisted"
6593
  msgstr "Obeservera: Hänvisningsadress %s är svartlistad"
6594
 
6595
- #: ../wp-slimstat.php:347
6596
  #, php-format
6597
  msgid "Notice: Permalink %s is blacklisted"
6598
  msgstr "Observera: Permalänk %s är svartlistad"
6599
 
6600
- #: ../wp-slimstat.php:358
6601
  msgid "Error: Empty or not supported IP address format (IPv6)"
6602
  msgstr "Tom eller osupporterad IP-adress format (IPv6)"
6603
 
6604
- #: ../wp-slimstat.php:367
6605
  #, php-format
6606
  msgid "Notice: Logged in user %s not tracked"
6607
  msgstr "Observera: Inloggad användare %s spåras ej"
6608
 
6609
- #: ../wp-slimstat.php:375
6610
  #, php-format
6611
  msgid "Notice: User with capability %s not tracked"
6612
  msgstr "Observera: Användaren med given rättighet %s spåras ej"
6613
 
6614
- #: ../wp-slimstat.php:385
6615
  #, php-format
6616
  msgid "Notice: User %s is blacklisted"
6617
  msgstr "Observera: Användare %s är svartlistad"
6618
 
6619
- #: ../wp-slimstat.php:406
6620
  #, php-format
6621
  msgid "Notice: Spammer %s not tracked"
6622
  msgstr "Observera: Spammare %s spåras ej"
6623
 
6624
- #: ../wp-slimstat.php:435
6625
  #, php-format
6626
  msgid "Notice: IP address %s is blacklisted"
6627
  msgstr "Observera: IP adress %s är svartlistad"
6628
 
6629
- #: ../wp-slimstat.php:464
6630
  #, php-format
6631
  msgid "Notice: Country %s is blacklisted"
6632
  msgstr "Observera: Land %s är svartlistad"
6633
 
6634
  # @ wp-slimstat
6635
- #: ../wp-slimstat.php:473
6636
  msgid "Notice: Prefetch requests are ignored"
6637
  msgstr "Ignorera Prefetch förfrågningar"
6638
 
6639
  # @ wp-slimstat
6640
- #: ../wp-slimstat.php:489
6641
  msgid "Notice: Bot not tracked"
6642
  msgstr "Observera: Bot spåras ej"
6643
 
6644
- #: ../wp-slimstat.php:498
6645
  #, php-format
6646
  msgid "Notice: Browser %s is blacklisted"
6647
  msgstr "Observera: Browser %s är svartlistad"
6648
 
6649
- #: ../wp-slimstat.php:528
6650
  msgid "Error:"
6651
  msgstr "Fel:"
6652
 
6653
- #: ../wp-slimstat.php:1209
6654
  msgid "Invalid payload string. Try clearing your WordPress cache."
6655
  msgstr "Ogitlig sträng. Försök att rensa WorPress cache."
6656
 
6657
- #: ../wp-slimstat.php:1219
6658
  msgid "Invalid data signature. Try clearing your WordPress cache."
6659
  msgstr "Ogiltiga data signatur. Försök att rensa din Wordpress cache."
6660
 
6661
  # @ wp-slimstat
6662
- #: ../wp-slimstat.php:1289
6663
  msgid "There was an error downloading the MaxMind Geolite DB:"
6664
  msgstr "Det uppstod ett fel vid nedladdning av MaxMind GeoLite DB:"
6665
 
6666
  # @ wp-slimstat
6667
- #: ../wp-slimstat.php:1297 ../wp-slimstat.php:1306
6668
  msgid "There was an error opening the zipped MaxMind Geolite DB."
6669
  msgstr "Det gick inte att öppna den zippade MaxMind GeoLite DB."
6670
 
6671
- #: ../wp-slimstat.php:1301
6672
  msgid "Function gzopen not defined. Aborting."
6673
  msgstr "Funktion gzopen inte definierad. Avbryter."
6674
 
6675
  # @ wp-slimstat
6676
- #: ../wp-slimstat.php:1311
6677
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
6678
  msgstr "Det gick inte att öppna den uppackade MaxMind GeoLite DB."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-06 20:29-0500\n"
6
+ "PO-Revision-Date: 2016-01-06 20:29-0500\n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: camu <info@duechiacchiere.it>\n"
9
  "Language: sv\n"
108
  "Do not add the javascript tracking code to your pages, if tracking mode is "
109
  "set to Server. Please note: if enabled, this will prevent the tracker from "
110
  "collecting information such as screen resolution, outbound links, downloads, "
111
+ "etc. This option is ignored if Tracking Mode is set to Client."
112
  msgstr ""
113
  "Lägg inte till JavaScript spårningskod på dina sidor, om spårningsläget är "
114
  "inställt på servern. Observera: om den är aktiverad, kommer detta att "
116
  "utgående länkar, nedladdningar, etc. Det här alternativet ignoreras spårar "
117
  "Läge är inställt på klienten."
118
 
119
+ #: ../admin/config/index.php:114 ../admin/view/wp-slimstat-reports.php:1346
120
  msgid "Off"
121
  msgstr "Av"
122
 
216
  "bara en träff per användare i det givna tidsintervallet."
217
 
218
  # @ wp-slimstat
219
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:88
220
+ #: ../admin/view/wp-slimstat-reports.php:97
221
+ #: ../admin/view/wp-slimstat-reports.php:1362
222
+ #: ../admin/view/wp-slimstat-reports.php:1520
223
  msgid "Pageviews"
224
  msgstr "Sidvisningar"
225
 
226
  # @ wp-slimstat
227
+ #: ../admin/config/index.php:121 ../admin/view/wp-slimstat-reports.php:98
228
+ #: ../admin/view/wp-slimstat-reports.php:274
229
+ #: ../admin/view/wp-slimstat-reports.php:514
230
+ #: ../admin/view/wp-slimstat-reports.php:1377
231
+ #: ../admin/view/wp-slimstat-reports.php:1422
232
  msgid "Unique IPs"
233
  msgstr "Unika IP-adresser"
234
 
295
  # @ wp-slimstat
296
  #: ../admin/config/index.php:126 ../admin/view/index.php:102
297
  #: ../admin/view/wp-slimstat-db.php:79
298
+ #: ../admin/view/wp-slimstat-reports.php:1346
299
  msgid "days"
300
  msgstr "Dagar"
301
 
341
  "1800 sekunder som minsta tid."
342
 
343
  # @ wp-slimstat
344
+ #: ../admin/config/index.php:135 ../admin/config/index.php:206
345
  msgid "seconds"
346
  msgstr "Sekunder"
347
 
357
 
358
  # @ wp-slimstat
359
  #: ../admin/config/index.php:137
360
+ msgid "Browser Detection"
361
+ msgstr "Webbläsaridentifiering"
362
+
363
+ #: ../admin/config/index.php:137
364
+ msgid ""
365
+ "The heuristic function is much faster and requires very little memory, but "
366
+ "for uncommon user agent strings it might be less accurate, and produce a "
367
+ "unreliable match. Browscap.ini, the third party database we use, is memory "
368
+ "intensive and it uses a bruteforce approach to determine a visitor's "
369
+ "browser, but it's very accurate and precise even with the most obscure user "
370
+ "agent strings (almost all of them). You decide which one should be used "
371
+ "first: the other one will only be invoked if the one you chose did not "
372
+ "produce a match."
373
+ msgstr ""
374
+ "Den heuristiska funktion är mycket snabbare och kräver väldigt lite minne, "
375
+ "men för ovanliga user agent strängar kan det vara mindre exakt, och "
376
+ "producera en opålitlig match. Browscap.ini, tredje part databas använder, är "
377
+ "minneskrävande och den använder en bruteforce metod för att bestämma en "
378
+ "besökares webbläsare, men det är mycket noggrann och exakt även med de mest "
379
+ "obskyra user agent strängar (nästan alla av dem). Du bestämmer vilka man bör "
380
+ "användas först: den andra kommer endast åberopas om du valde inte producera "
381
+ "en match."
382
+
383
+ # @ wp-slimstat
384
+ #: ../admin/config/index.php:137
385
+ msgid "Browscap"
386
+ msgstr "Browscap"
387
+
388
+ #: ../admin/config/index.php:137
389
+ msgid "Heuristic"
390
+ msgstr "Heuristisk"
391
+
392
+ # @ wp-slimstat
393
+ #: ../admin/config/index.php:138
394
  msgid "Enable CDN"
395
  msgstr "Aktivera CDN"
396
 
397
  # @ wp-slimstat
398
+ #: ../admin/config/index.php:138
399
  msgid ""
400
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
401
  "by serving our tracking code from their fast and reliable network (free "
406
  "nätverk (kostnadsfri tjänst)."
407
 
408
  # @ wp-slimstat
409
+ #: ../admin/config/index.php:139
410
  msgid "Extensions to Track"
411
  msgstr "Fileändelser att spåra"
412
 
413
  # @ wp-slimstat
414
+ #: ../admin/config/index.php:139
415
  msgid ""
416
  "List all the file extensions that you want to be treated as Downloads. "
417
  "Please note that links pointing to external resources (i.e. PDFs on a "
425
  "som sådan), om deras förlängning matchar en av de som listas här nedan."
426
 
427
  # @ wp-slimstat
428
+ #: ../admin/config/index.php:141
429
  msgid "Internal and Outbound Links"
430
  msgstr "Interna och utgående länkar"
431
 
432
  # @ wp-slimstat
433
+ #: ../admin/config/index.php:142
434
  msgid "Track Outbound Clicks"
435
  msgstr "Spåra utgående klick"
436
 
437
  # @ wp-slimstat
438
+ #: ../admin/config/index.php:142
439
  msgid ""
440
  "Track when your visitors click on link to external websites. This option "
441
  "required Spy Mode to be enabled."
444
  "alternativ krävs Spionläget är aktiverat."
445
 
446
  # @ wp-slimstat
447
+ #: ../admin/config/index.php:143
448
  msgid "Track Coordinates"
449
  msgstr "Spår Koordinater"
450
 
451
+ #: ../admin/config/index.php:143
452
  msgid ""
453
  "Collect mouse coordinates and other information for clicks on internal "
454
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
458
  "Rekommenderas starkt om du använder heatmap add-on. Som standard är denna "
459
  "information endast samlas in för externa länkar."
460
 
461
+ #: ../admin/config/index.php:144
462
  msgid "No Callback"
463
  msgstr "Ingen Callback"
464
 
465
+ #: ../admin/config/index.php:144
466
  msgid ""
467
  "Track the event but do not invoke the callback function on links marked with "
468
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
474
  "attribut innehåller en av dessa strängar (separerade med kommatecken) . "
475
  "Användbar för att förhindra konflikter med lightbox och liknande bibliotek."
476
 
477
+ #: ../admin/config/index.php:145
478
  msgid "Do Not Track"
479
  msgstr "Spårar inte"
480
 
481
+ #: ../admin/config/index.php:145
482
  msgid ""
483
  "Do not track links marked with one of these class names, <em>rel</em> "
484
  "attributes or whose <em>href</em> attribute contains one of these strings "
488
  "eller vars <em>href</em> attribut innehåller en av dessa strängar "
489
  "(separerade med kommatecken)."
490
 
491
+ #: ../admin/config/index.php:147
492
  msgid "Pages not belonging to this site"
493
  msgstr "Sidor som inte tillhör denna webbplats"
494
 
495
+ #: ../admin/config/index.php:148
496
  msgid ""
497
  "Add the following code to all the non-WP pages you want to track, right "
498
  "before the closing BODY tag. Please make sure to change the protocol of all "
503
  "webbadresser till HTTPS, om du extern webbplats serveras över en säker kanal."
504
 
505
  # @ wp-slimstat
506
+ #: ../admin/config/index.php:158
507
  msgid "Allow External Domains"
508
  msgstr "Tillåt externa domäner"
509
 
510
+ #: ../admin/config/index.php:158
511
  msgid ""
512
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
513
  "header is present on the requested resource, when using the external "
527
  "förfrågningar."
528
 
529
  # @ wp-slimstat
530
+ #: ../admin/config/index.php:159 ../admin/config/index.php:181
531
+ #: ../admin/config/index.php:209
532
  msgid "Miscellaneous"
533
  msgstr "Övrigt"
534
 
535
  # @ wp-slimstat
536
+ #: ../admin/config/index.php:160
537
  msgid "Enable UAN"
538
  msgstr "Aktivera UAN"
539
 
540
  # @ wp-slimstat
541
+ #: ../admin/config/index.php:160
542
  msgid ""
543
  "Send anonymous data about user agents to our server for analysis. This "
544
  "allows us to contribute to the <a href='http://browscap.org/' "
554
  "påverkas på något sätt."
555
 
556
  # @ wp-slimstat
557
+ #: ../admin/config/index.php:165
558
  msgid "Filters"
559
  msgstr "Filter"
560
 
561
  # @ wp-slimstat
562
+ #: ../admin/config/index.php:167
563
  msgid "Do not track settings"
564
  msgstr "Spåra inte inställningar"
565
 
566
  # @ wp-slimstat
567
+ #: ../admin/config/index.php:168
568
  msgid "Track Registered Users"
569
  msgstr "Spåra Registerarde Användare"
570
 
571
  # @ wp-slimstat
572
+ #: ../admin/config/index.php:168
573
  msgid "Enable this option to track logged in users."
574
  msgstr "Aktivera det här alternativet för att spåra inloggade användare."
575
 
576
  # @ wp-slimstat
577
+ #: ../admin/config/index.php:169
578
  msgid "Blacklist by Username"
579
  msgstr "Blockera efter Användarnamn"
580
 
581
  # @ wp-slimstat
582
+ #: ../admin/config/index.php:169
583
  msgid ""
584
  "List all the usernames you don't want to track, separated by commas. Please "
585
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
597
  "att matcha user10 och user90."
598
 
599
  # @ wp-slimstat
600
+ #: ../admin/config/index.php:170
601
  msgid "Blacklist by IP Address"
602
  msgstr "Blockerad av IP Adress"
603
 
604
  # @ wp-slimstat
605
+ #: ../admin/config/index.php:170
606
  msgid ""
607
  "List all the IP addresses you don't want to track, separated by commas. Each "
608
  "network <strong>must</strong> be defined using the <a href='http://en."
617
  "offentliga IP och den ursprungliga undersökningsperioden, om det finns."
618
 
619
  # @ wp-slimstat
620
+ #: ../admin/config/index.php:171
621
  msgid "Blacklist by Capability"
622
  msgstr "Blockerad av Rättigheter"
623
 
624
  # @ wp-slimstat
625
+ #: ../admin/config/index.php:171
626
  msgid ""
627
  "Users having at least one of the <a href='http://codex.wordpress.org/"
628
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
633
  "kommer inte spåras. Rättigheterna är bokstavskänsliga."
634
 
635
  # @ wp-slimstat
636
+ #: ../admin/config/index.php:173
637
  msgid "Profiling"
638
  msgstr "Profilering"
639
 
640
  # @ wp-slimstat
641
+ #: ../admin/config/index.php:174
642
  msgid "Ignore Spammers"
643
  msgstr "Ignorera spammare"
644
 
645
  # @ wp-slimstat
646
+ #: ../admin/config/index.php:174
647
  msgid ""
648
  "Enable this option if you don't want to track visits from users identified "
649
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
656
  "bort från databasen."
657
 
658
  # @ wp-slimstat
659
+ #: ../admin/config/index.php:175
660
  msgid "Ignore Bots"
661
  msgstr "Ignorera Bots"
662
 
663
+ #: ../admin/config/index.php:175
664
  msgid ""
665
  "Turn on this feature if you want to have the accuracy level of server-side "
666
  "tracking, but not the inconvenience of getting your database clogged with "
673
  "klientläge, robotar är ignoreras oavsett denna inställning."
674
 
675
  # @ wp-slimstat
676
+ #: ../admin/config/index.php:176
677
  msgid "Permalinks"
678
  msgstr "Permalänk"
679
 
680
  # @ wp-slimstat
681
+ #: ../admin/config/index.php:176
682
  msgid ""
683
  "List all the URLs on your website that you don't want to track, separated by "
684
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
697
  "och /abort. Strängar är skiftlägeskänsliga."
698
 
699
  # @ wp-slimstat
700
+ #: ../admin/config/index.php:177
701
  msgid "Countries"
702
  msgstr "Länder"
703
 
704
  # @ wp-slimstat
705
+ #: ../admin/config/index.php:177
706
  msgid ""
707
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
708
  "track, separated by commas."
711
  "spåra, separerade med kommatecken."
712
 
713
  # @ wp-slimstat
714
+ #: ../admin/config/index.php:178
715
  msgid "User Agents"
716
  msgstr "User Agents"
717
 
718
  # @ wp-slimstat
719
+ #: ../admin/config/index.php:178
720
  msgid ""
721
  "Browsers (user agents) you don't want to track, separated by commas. You can "
722
  "specify the browser's version adding a slash after the name (i.e. "
734
  "skiftlägeskänsliga."
735
 
736
  # @ wp-slimstat
737
+ #: ../admin/config/index.php:179
738
  msgid "Referring Sites"
739
  msgstr "Hänvisnings-sajt"
740
 
741
  # @ wp-slimstat
742
+ #: ../admin/config/index.php:179
743
  msgid ""
744
  "Referring URLs that you don't want to track, separated by commas: "
745
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
756
  "filtrera (http://, https://)."
757
 
758
  # @ wp-slimstat
759
+ #: ../admin/config/index.php:182
760
  msgid "Enable Privacy Mode"
761
  msgstr "Aktivera Sekretessläge"
762
 
763
  # @ wp-slimstat
764
+ #: ../admin/config/index.php:182
765
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
766
  msgstr ""
767
  "Maskera besökarnas IP-adresser för att uppfylla europeiska sekretesslagar."
768
 
769
  # @ wp-slimstat
770
+ #: ../admin/config/index.php:183
771
  msgid "Ignore Prefetch Requests"
772
  msgstr "Ignorera Prefetch förfrågningar"
773
 
774
  # @ wp-slimstat
775
+ #: ../admin/config/index.php:183
776
  msgid ""
777
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
778
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
783
  "target='_blank'>Link förhämtning funktionalitet</a>."
784
 
785
  # @ wp-slimstat
786
+ #: ../admin/config/index.php:188 ../admin/config/index.php:221
787
  msgid "Reports"
788
  msgstr "Rapporter"
789
 
790
+ #: ../admin/config/index.php:190
791
  msgid "Formats and Conversions"
792
  msgstr "Format och Konvertering"
793
 
794
  # @ wp-slimstat
795
+ #: ../admin/config/index.php:191
796
  msgid "Number Format"
797
  msgstr "Numeriskt format"
798
 
799
  # @ wp-slimstat
800
+ #: ../admin/config/index.php:191
801
  msgid "Choose the number format you want to use for your reports."
802
  msgstr "Välj vilken nummerformat du vill använda i dina rapporter,"
803
 
804
  # @ wp-slimstat
805
+ #: ../admin/config/index.php:192
806
  msgid "Date Format"
807
  msgstr "Datumformat"
808
 
809
+ #: ../admin/config/index.php:192
810
  msgid ""
811
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
812
  "Format</a> to use when displaying a pageview's date."
815
  "Format</a> att använda vid visning av en sidvisnings datum."
816
 
817
  # @ wp-slimstat
818
+ #: ../admin/config/index.php:193
819
  msgid "Time Format"
820
  msgstr "Tidformat"
821
 
822
+ #: ../admin/config/index.php:193
823
  msgid ""
824
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
825
  "Format</a> to use when displaying a pageview's time."
828
  "Format</a> att använda vid visning av en sidvisnings tid."
829
 
830
  # @ wp-slimstat
831
+ #: ../admin/config/index.php:194
832
  msgid "Use Display Name"
833
  msgstr "Visa smeknamn"
834
 
835
  # @ wp-slimstat
836
+ #: ../admin/config/index.php:194
837
  msgid ""
838
  "By default, users are listed by their usernames. Use this option to "
839
  "visualize their display names instead."
842
  "Använd detta alternativ för att visualisera sina visningsnamn istället."
843
 
844
  # @ wp-slimstat
845
+ #: ../admin/config/index.php:195
846
  msgid "Use Titles"
847
  msgstr "Visa Titlar"
848
 
849
  # @ wp-slimstat
850
+ #: ../admin/config/index.php:195
851
  msgid ""
852
  "Slimstat converts your permalinks into post, page and category titles. "
853
  "Disable this feature if you need to see the URL in your reports."
856
  "Inaktivera den här funktionen om du behöver se webbadressen i dina rapporter."
857
 
858
  # @ wp-slimstat
859
+ #: ../admin/config/index.php:196
860
  msgid "Convert IP Addresses"
861
  msgstr "Konvertera IP-adresser"
862
 
863
  # @ wp-slimstat
864
+ #: ../admin/config/index.php:196
865
  msgid "Display provider names instead of IP addresses."
866
  msgstr "Visa leverantörs namn istället för IP adresser."
867
 
868
  # @ wp-slimstat
869
+ #: ../admin/config/index.php:198
870
  msgid "Functionality"
871
  msgstr "Funktionalitet"
872
 
873
+ #: ../admin/config/index.php:199
874
  msgid "SlimScroll"
875
  msgstr "SlimScroll"
876
 
877
+ #: ../admin/config/index.php:199
878
  msgid ""
879
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
880
  "scrollbar."
883
  "webbläsaren scrollbar."
884
 
885
  # @ wp-slimstat
886
+ #: ../admin/config/index.php:200
887
  msgid "Expand Details"
888
  msgstr "Expandera Detaljer"
889
 
890
  # @ wp-slimstat
891
+ #: ../admin/config/index.php:200
892
  msgid "Expand each row's details by default, insted of on mousehover."
893
  msgstr "Expandera varje rads detaljer som default istället för mousehover"
894
 
895
  # @ wp-slimstat
896
+ #: ../admin/config/index.php:201 ../admin/config/index.php:207
897
  msgid "Rows to Display"
898
  msgstr "Rader som ska visas"
899
 
900
  # @ wp-slimstat
901
+ #: ../admin/config/index.php:201
902
  msgid "Specify the number of items in each report."
903
  msgstr "Ange antal objekt i varje rapport."
904
 
905
+ #: ../admin/config/index.php:202 ../admin/view/wp-slimstat-db.php:101
906
  msgid "Max Results"
907
  msgstr "Max Resultat"
908
 
909
+ #: ../admin/config/index.php:202
910
  msgid ""
911
  "Decide how many records should be retrieved from the database in total. "
912
  "Depending on your server configuration, you may want to fine tune this value "
917
  "att överskrida din PHP minnesgräns."
918
 
919
  # @ wp-slimstat
920
+ #: ../admin/config/index.php:203
921
  msgid "IP Lookup"
922
  msgstr "Leta upp IP"
923
 
924
  # @ wp-slimstat
925
+ #: ../admin/config/index.php:203
926
  msgid "Customize the Geolocation service to be used in the reports."
927
  msgstr "Anpassa Geolokalisering tjänst som ska användas i rapporterna."
928
 
929
  # @ wp-slimstat
930
+ #: ../admin/config/index.php:205
931
  msgid "Activity Log"
932
  msgstr "Aktivitetslog"
933
 
934
  # @ wp-slimstat
935
+ #: ../admin/config/index.php:206
936
  msgid "Live Stream"
937
  msgstr "Live Stream"
938
 
939
  # @ wp-slimstat
940
+ #: ../admin/config/index.php:206
941
  msgid ""
942
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
943
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
946
  "<strong>0</strong> (siffran noll) för att inaktivera den här funktionen."
947
 
948
  # @ wp-slimstat
949
+ #: ../admin/config/index.php:207
950
  msgid "Specify the number of items in the Activity Log."
951
  msgstr "Ange antal objekt i Aktivitetsloggen."
952
 
953
  # @ wp-slimstat
954
+ #: ../admin/config/index.php:210
955
  msgid "Custom CSS"
956
  msgstr "Anpassad CSS"
957
 
958
  # @ wp-slimstat
959
+ #: ../admin/config/index.php:210
960
  msgid ""
961
  "Paste here your custom stylesheet to personalize the way your reports look. "
962
  "<a href='https://slimstat.freshdesk.com/support/solutions/"
972
  "inställningen."
973
 
974
  # @ wp-slimstat
975
+ #: ../admin/config/index.php:211
976
  msgid "Chart Colors"
977
  msgstr "Diagram Färger"
978
 
979
+ #: ../admin/config/index.php:211
980
  msgid ""
981
  "Customize the look and feel of your charts by assigning personalized colors "
982
  "to each metric. List 4 hex colors separated by commas, strictly in the "
990
  "<code>#ccc, # 999, # bbcc44, # 21759b</code>."
991
 
992
  # @ wp-slimstat
993
+ #: ../admin/config/index.php:212
994
  msgid "Show User Agent"
995
  msgstr " Visa användar Agent"
996
 
997
  # @ wp-slimstat
998
+ #: ../admin/config/index.php:212
999
  msgid ""
1000
  "Choose if you want to see the browser name or a complete user agent string "
1001
  "when hovering on browser icons."
1004
  "surfar på webbläsars ikoner."
1005
 
1006
  # @ wp-slimstat
1007
+ #: ../admin/config/index.php:213
1008
  msgid "Enable SOV"
1009
  msgstr "Aktivera SOV"
1010
 
1011
+ #: ../admin/config/index.php:213
1012
  msgid ""
1013
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
1014
  "the subject, object, and verb of a sentence appear in that order, like in "
1017
  "I språktypologi, språket är en subjekt-objekt-verb (SOV) en i vilken ämnet, "
1018
  "objekt och verb i en mening visas i den ordningen, som på japanska."
1019
 
1020
+ #: ../admin/config/index.php:214
1021
  msgid "Social Analytics"
1022
  msgstr "Social Analytics"
1023
 
1024
+ #: ../admin/config/index.php:214
1025
  msgid ""
1026
  "Thanks to a <a href='http://getsocial.io/enterprise' "
1027
  "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
1038
  "alla dina inlägg s webbadresser till deras tjänst för analys en gång om "
1039
  "dagen."
1040
 
1041
+ #: ../admin/config/index.php:219
1042
  msgid "Access Control"
1043
  msgstr "Åtkomstkontroll"
1044
 
1045
  # @ wp-slimstat
1046
+ #: ../admin/config/index.php:222
1047
  msgid "Restrict Authors"
1048
  msgstr "Begränsa Författare"
1049
 
1050
  # @ wp-slimstat
1051
+ #: ../admin/config/index.php:222
1052
  msgid ""
1053
  "Enable this option if you want your authors to only see stats related to "
1054
  "their own content."
1057
  "statistik relaterad till sitt eget innehåll."
1058
 
1059
  # @ wp-slimstat
1060
+ #: ../admin/config/index.php:223 ../admin/config/index.php:227
1061
  msgid "Capability"
1062
  msgstr "Rättigheter"
1063
 
1064
  # @ wp-slimstat
1065
+ #: ../admin/config/index.php:223
1066
  msgid ""
1067
  "Specify the minimum <a href='http://codex.wordpress.org/"
1068
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
1079
  "I detta fall har en lista företräde framför rättighet."
1080
 
1081
  # @ wp-slimstat
1082
+ #: ../admin/config/index.php:224 ../admin/config/index.php:228
1083
  msgid "Whitelist"
1084
  msgstr "Vitlista"
1085
 
1086
  # @ wp-slimstat
1087
+ #: ../admin/config/index.php:224
1088
  msgid ""
1089
  "List all the users who should have access to the reports, separated by "
1090
  "commas. Administrators are implicitly allowed, so you don't need to list "
1095
  "ange dem i här. Användarnamn är skiftlägeskänsliga."
1096
 
1097
  # @ wp-slimstat
1098
+ #: ../admin/config/index.php:226 ../admin/config/index.php:251
1099
+ #: ../admin/wp-slimstat-admin.php:574 ../admin/wp-slimstat-admin.php:592
1100
+ #: ../admin/wp-slimstat-admin.php:595
1101
  msgid "Settings"
1102
  msgstr "Inställningar"
1103
 
1104
  # @ wp-slimstat
1105
+ #: ../admin/config/index.php:227
1106
  msgid ""
1107
  "Specify the minimum <a href='http://codex.wordpress.org/"
1108
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
1115
  "åsidosätta det här alternativet för specifika användare."
1116
 
1117
  # @ wp-slimstat
1118
+ #: ../admin/config/index.php:228
1119
  msgid ""
1120
  "List all the users who can edit these options, separated by commas. Please "
1121
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
1126
  "att ta med dig! Användarnamn är skiftlägeskänsliga."
1127
 
1128
  # @ wp-slimstat
1129
+ #: ../admin/config/index.php:233
1130
  msgid "Maintenance"
1131
  msgstr "Underhåll"
1132
 
1133
  # @ wp-slimstat
1134
+ #: ../admin/config/index.php:238 ../admin/view/addons.php:32
1135
+ #: ../admin/wp-slimstat-admin.php:508 ../admin/wp-slimstat-admin.php:523
1136
+ #: ../admin/wp-slimstat-admin.php:571
1137
  msgid "Add-ons"
1138
  msgstr "Tillägg "
1139
 
1165
  msgid "The geolocation database has been installed on your server."
1166
  msgstr "Geolocation databas har installerats på din server."
1167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1168
  # @ wp-slimstat
1169
+ #: ../admin/config/maintenance.php:82
1170
  msgid "Your reports were successfully restored to their default arrangement."
1171
  msgstr "Dina rapporter har återställts till default-läge."
1172
 
1173
  # @ wp-slimstat
1174
+ #: ../admin/config/maintenance.php:92
1175
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1176
  msgstr "Dina Slimstat tabeller har framgångsrikt omvandlats till InnoDB."
1177
 
1178
  # @ wp-slimstat
1179
+ #: ../admin/config/maintenance.php:98
1180
  msgid "All the archived records were successfully deleted."
1181
  msgstr "Alla arkiverade poster har tagits bort."
1182
 
1183
  # @ wp-slimstat
1184
+ #: ../admin/config/maintenance.php:106
1185
  msgid "All the records were successfully deleted."
1186
  msgstr "Alla poster har tagits bort."
1187
 
1188
+ #: ../admin/config/maintenance.php:128
1189
+ msgid "Troubleshooting"
1190
  msgstr "Felsökning"
1191
 
1192
  # @ wp-slimstat
1193
+ #: ../admin/config/maintenance.php:131
1194
  msgid "Tracker Status"
1195
  msgstr "Tracker Status"
1196
 
1197
  # @ wp-slimstat
1198
+ #: ../admin/config/maintenance.php:133
1199
+ msgid "Reset the tracker status"
1200
+ msgstr "Återställa tracker status"
1201
 
1202
+ #: ../admin/config/maintenance.php:133
1203
  msgid "No Errors so far"
1204
  msgstr "Inga FEL än sålänge"
1205
 
1206
+ #: ../admin/config/maintenance.php:134
1207
  msgid ""
1208
  "The information here above is useful to troubleshoot issues with the "
1209
  "tracker. It includes both <strong>errors</strong>, which are returned when "
1210
  "the tracker could not record a pageview and are indicative of some kind of "
1211
  "malfunction, and <strong>notices</strong>, which explain the reason why the "
1212
  "most recent pageview was not recorded, based on your settings (filters, "
1213
+ "blackslists, etc). Please include the message here above when sending a "
1214
+ "support request."
1215
  msgstr ""
1216
  "Informationen ovan är användbar för att felsöka problem med trackern. Det "
1217
+ "innefattar både <strong>fel</strong>, som returneras när tracker inte kunde "
1218
+ "registrera en sidvisning och är ett tecken på någon form av fel, och "
1219
+ "<strong> meddelanden</strong>, som förklarar anledningen till den senaste "
1220
  "sidvisning registreardes inte in, baserat på dina inställningar (filter, "
1221
  "blackslists, etc). Vänligen inkludera denna kod när du skickar en begäran om "
1222
  "support."
1223
 
1224
  # @ wp-slimstat
1225
+ #: ../admin/config/maintenance.php:140
1226
  msgid "Enable SQL Debug"
1227
  msgstr "Aktivera Felsökning av SQL"
1228
 
1229
+ #: ../admin/config/maintenance.php:143
1230
  msgid ""
1231
  "Display the SQL code used to retrieve the data from the database. Useful to "
1232
  "troubleshoot issues with data consistency or missing pageviews."
1235
  "att felsöka problem med överensstämmelse mellan uppgifter eller saknade "
1236
  "sidvisningar."
1237
 
1238
+ #: ../admin/config/maintenance.php:147
1239
  msgid "Disable SQL Debug"
1240
  msgstr "Inaktivera SQL Debug"
1241
 
1242
+ #: ../admin/config/maintenance.php:150
1243
  msgid "Deactivate the SQL output on top of each report."
1244
  msgstr "Avaktivera SQL-utgången på toppen av varje rapport."
1245
 
 
 
 
 
1246
  # @ wp-slimstat
1247
+ #: ../admin/config/maintenance.php:155
1248
  msgid ""
1249
  "Are you sure you want to restore the default arrangement of your reports?"
1250
  msgstr ""
1251
  "Är du säker på att du vill återställa standard arrangemang av dina rapporter?"
1252
 
1253
  # @ wp-slimstat
1254
+ #: ../admin/config/maintenance.php:155
1255
  msgid "No Panic Button"
1256
  msgstr "Ingen Panik Knapp"
1257
 
1258
  # @ wp-slimstat
1259
+ #: ../admin/config/maintenance.php:157
1260
  msgid ""
1261
  "Reset the default arrangement of your reports. Helpful when, for some "
1262
  "reason, reports disappear from your panels or something doesn't look right "
1267
  "ser bra ut i visning av rapporter."
1268
 
1269
  # @ wp-slimstat
1270
+ #: ../admin/config/maintenance.php:161
1271
  msgid "Data Maintenance"
1272
  msgstr "Data Underhåll"
1273
 
1274
  # @ wp-slimstat
1275
+ #: ../admin/config/maintenance.php:164
1276
  msgid "Delete pageviews where"
1277
  msgstr "Radera sidvisningar där"
1278
 
1279
  # @ wp-slimstat
1280
+ #: ../admin/config/maintenance.php:178 ../admin/view/index.php:16
1281
  msgid "equals"
1282
  msgstr "lika"
1283
 
1284
  # @ wp-slimstat
1285
+ #: ../admin/config/maintenance.php:179 ../admin/view/index.php:17
1286
  msgid "is not equal to"
1287
  msgstr "är inte lika med"
1288
 
1289
  # @ wp-slimstat
1290
+ #: ../admin/config/maintenance.php:180 ../admin/view/index.php:18
1291
  msgid "contains"
1292
  msgstr "innehåller"
1293
 
1294
+ #: ../admin/config/maintenance.php:181 ../admin/view/index.php:19
1295
  msgid "is included in"
1296
  msgstr "är inkluderat i"
1297
 
1298
  # @ wp-slimstat
1299
+ #: ../admin/config/maintenance.php:182 ../admin/view/index.php:20
1300
  msgid "does not contain"
1301
  msgstr "innehåller inte"
1302
 
1303
  # @ wp-slimstat
1304
+ #: ../admin/config/maintenance.php:183 ../admin/view/index.php:21
1305
  msgid "starts with"
1306
  msgstr "börjar med"
1307
 
1308
  # @ wp-slimstat
1309
+ #: ../admin/config/maintenance.php:184 ../admin/view/index.php:22
1310
  msgid "ends with"
1311
  msgstr "slutar med"
1312
 
1313
  # @ wp-slimstat
1314
+ #: ../admin/config/maintenance.php:185 ../admin/view/index.php:23
1315
  msgid "sounds like"
1316
  msgstr "låter som"
1317
 
1318
  # @ wp-slimstat
1319
+ #: ../admin/config/maintenance.php:186 ../admin/view/index.php:24
1320
  msgid "is greater than"
1321
  msgstr "är större än"
1322
 
1323
  # @ wp-slimstat
1324
+ #: ../admin/config/maintenance.php:187 ../admin/view/index.php:25
1325
  msgid "is less than"
1326
  msgstr "är mindre än"
1327
 
1328
  # @ wp-slimstat
1329
+ #: ../admin/config/maintenance.php:188 ../admin/view/index.php:27
1330
  msgid "matches"
1331
  msgstr "matchas"
1332
 
1333
  # @ wp-slimstat
1334
+ #: ../admin/config/maintenance.php:189 ../admin/view/index.php:28
1335
  msgid "does not match"
1336
  msgstr "matchas inte"
1337
 
1338
  # @ wp-slimstat
1339
+ #: ../admin/config/maintenance.php:190 ../admin/view/index.php:29
1340
  msgid "is empty"
1341
  msgstr "är tomt"
1342
 
1343
  # @ wp-slimstat
1344
+ #: ../admin/config/maintenance.php:191 ../admin/view/index.php:30
1345
  msgid "is not empty"
1346
  msgstr "är inte tomt"
1347
 
1348
  # @ wp-slimstat
1349
+ #: ../admin/config/maintenance.php:194 ../admin/view/index.php:42
1350
  #: ../admin/view/index.php:105
1351
  msgid "Apply"
1352
  msgstr "Genomför"
1353
 
1354
  # @ wp-slimstat
1355
+ #: ../admin/config/maintenance.php:195
1356
  msgid ""
1357
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1358
  msgstr ""
1359
  "Är du säker på att du vill ta bort dessa rader PERMANENT från din databas?"
1360
 
1361
  # @ wp-slimstat
1362
+ #: ../admin/config/maintenance.php:202
1363
  msgid ""
1364
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1365
  "database?"
1366
  msgstr "Är du säker på att du PERMANENT RADERA ALLT från din databas?"
1367
 
1368
  # @ wp-slimstat
1369
+ #: ../admin/config/maintenance.php:202
1370
  msgid "Delete All Records"
1371
  msgstr "Tabort Alla poster"
1372
 
1373
  # @ wp-slimstat
1374
+ #: ../admin/config/maintenance.php:205
1375
  msgid ""
1376
  "Erase all the information collected so far by Slimstat, including the "
1377
  "archive. This operation <strong>does not</strong> reset your settings."
1381
  "inställningar."
1382
 
1383
  # @ wp-slimstat
1384
+ #: ../admin/config/maintenance.php:211
1385
  msgid ""
1386
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1387
  "archive?"
1389
  "Är du säker på att du vill PERMANENT RADERA alla poster från ditt arkiv?"
1390
 
1391
  # @ wp-slimstat
1392
+ #: ../admin/config/maintenance.php:211
1393
  msgid "Delete Archive"
1394
  msgstr "Tabort Arkiv"
1395
 
1396
+ #: ../admin/config/maintenance.php:214
1397
  msgid "Erase all the archived records. This operation cannot be undone."
1398
  msgstr "Radera alla arkiverade poster. Denna operation kan inte ångras."
1399
 
1400
  # @ wp-slimstat
1401
+ #: ../admin/config/maintenance.php:220
1402
  msgid "Improve Performance"
1403
  msgstr "Förbättra Prestanda"
1404
 
1405
  # @ wp-slimstat
1406
+ #: ../admin/config/maintenance.php:224
1407
  msgid ""
1408
  "Please note that you will need about 30% more DB space to store the extra "
1409
  "information required."
1412
  "information som krävs."
1413
 
1414
  # @ wp-slimstat
1415
+ #: ../admin/config/maintenance.php:228
1416
  msgid "Save DB Space"
1417
  msgstr "Spara DB utrymme"
1418
 
1419
  # @ wp-slimstat
1420
+ #: ../admin/config/maintenance.php:231
1421
  msgid ""
1422
  "Please note that by removing table indexes, Slimstat's performance will be "
1423
  "affected."
1425
  "Observera att genom att ta bort tabellindex, kommer SlimStat's prestanda "
1426
  "påverkas."
1427
 
1428
+ #: ../admin/config/maintenance.php:236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1429
  msgid "MaxMind IP to Country"
1430
  msgstr "MaxMind IP för Länder"
1431
 
1432
+ #: ../admin/config/maintenance.php:242
1433
  msgid ""
1434
  "Do you want to download and install the geolocation database from MaxMind's "
1435
  "server?"
1436
  msgstr ""
1437
  "Vill du ladda ner och installera Geolocation databasen från MaxMind's server?"
1438
 
1439
+ #: ../admin/config/maintenance.php:242
1440
  msgid "Install GeoLite DB"
1441
  msgstr "Installera GeoLite DB"
1442
 
1443
+ #: ../admin/config/maintenance.php:245
1444
  msgid "Do you want to uninstall the geolocation database?"
1445
  msgstr "Vill du avinstallera geolocation databasen?"
1446
 
1447
+ #: ../admin/config/maintenance.php:245
1448
  msgid "Uninstall GeoLite DB"
1449
  msgstr "Avinstallera GeoLite DB"
1450
 
1451
+ #: ../admin/config/maintenance.php:249
1452
  msgid ""
1453
  "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1454
  "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1465
  "funktion."
1466
 
1467
  # @ wp-slimstat
1468
+ #: ../admin/config/maintenance.php:254
1469
  msgid "Import and Export"
1470
  msgstr "Importera och Exportera"
1471
 
1472
  # @ wp-slimstat
1473
+ #: ../admin/config/maintenance.php:258
1474
  msgid ""
1475
  "Here below you can find the current configuration string for Slimstat. You "
1476
  "can update your settings by pasting a new string inside the text area and "
1481
  "textområdet och klicka på knappen Importera."
1482
 
1483
  # @ wp-slimstat
1484
+ #: ../admin/config/maintenance.php:263
1485
  msgid "Import"
1486
  msgstr "Importera"
1487
 
1488
  # @ wp-slimstat
1489
+ #: ../admin/config/maintenance.php:264
1490
  msgid "Are you sure you want to OVERWRITE your current settings?"
1491
  msgstr "Är du säker på att du vill återställa dina flikar?"
1492
 
1493
  # @ wp-slimstat
1494
+ #: ../admin/config/maintenance.php:269
1495
  msgid "Database Information"
1496
  msgstr "Databasinformation"
1497
 
1498
  # @ wp-slimstat
1499
+ #: ../admin/config/maintenance.php:272
1500
  msgid "Engine"
1501
  msgstr "Motor"
1502
 
1503
  # @ wp-slimstat
1504
+ #: ../admin/config/maintenance.php:276
1505
  msgid "switch to InnoDB"
1506
  msgstr "koppla om till InnoDB"
1507
 
1508
  # @ wp-slimstat
1509
+ #: ../admin/config/maintenance.php:287
1510
  msgid "records"
1511
  msgstr "poster"
1512
 
1592
  msgstr "Ladda"
1593
 
1594
  # @ wp-slimstat
1595
+ #: ../admin/view/index.php:66 ../admin/view/wp-slimstat-reports.php:1384
1596
  msgid "Today"
1597
  msgstr "Idag"
1598
 
1599
  # @ wp-slimstat
1600
+ #: ../admin/view/index.php:67 ../admin/view/wp-slimstat-reports.php:1387
1601
  msgid "Yesterday"
1602
  msgstr "Igår"
1603
 
1726
  msgstr "Syndikerings-läsare"
1727
 
1728
  # @ wp-slimstat
1729
+ #: ../admin/view/right-now.php:37 ../admin/view/wp-slimstat-reports.php:1018
1730
+ #: ../admin/view/wp-slimstat-reports.php:1693
1731
  msgid "No data to display"
1732
  msgstr "Inget data att visa"
1733
 
1738
 
1739
  # Local IP Address
1740
  # @ wp-slimstat
1741
+ #: ../admin/view/right-now.php:65 ../admin/view/wp-slimstat-reports.php:1069
1742
+ #: ../admin/view/wp-slimstat-reports.php:1807 ../wp-slimstat.php:1307
1743
  msgid "c-"
1744
  msgstr "Unknown Country"
1745
 
1746
  # @ wp-slimstat
1747
  #: ../admin/view/right-now.php:117 ../admin/view/wp-slimstat-db.php:60
1748
+ #: ../admin/wp-slimstat-admin.php:906 ../admin/wp-slimstat-admin.php:946
1749
  msgid "Originating IP"
1750
  msgstr "Ursprungs IP"
1751
 
1752
  # @ wp-slimstat
1753
+ #: ../admin/view/right-now.php:148 ../admin/view/wp-slimstat-reports.php:1166
1754
+ #: ../admin/view/wp-slimstat-reports.php:1170
1755
  msgid "Open this URL in a new window"
1756
  msgstr "Öppna denna URL i nytt fönster"
1757
 
1762
 
1763
  # @ wp-slimstat
1764
  #: ../admin/view/right-now.php:156 ../admin/view/wp-slimstat-db.php:42
1765
+ #: ../admin/view/wp-slimstat-reports.php:245
1766
+ #: ../admin/view/wp-slimstat-reports.php:254
1767
+ #: ../admin/wp-slimstat-admin.php:909 ../admin/wp-slimstat-admin.php:925
1768
  msgid "Search Terms"
1769
  msgstr "Söktermer"
1770
 
1815
  msgstr "Användare utloggad"
1816
 
1817
  # @ wp-slimstat
1818
+ #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:922
1819
  msgid "Browser"
1820
  msgstr "Webbläsare"
1821
 
1822
  # @ wp-slimstat
1823
+ #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:923
1824
  msgid "Country Code"
1825
  msgstr "Landskod"
1826
 
1830
  msgstr "IP-adress"
1831
 
1832
  # @ wp-slimstat
1833
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:926
1834
  msgid "Language Code"
1835
  msgstr "Språkkod"
1836
 
1837
  # @ wp-slimstat
1838
  #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:87
1839
+ #: ../admin/wp-slimstat-admin.php:927
1840
  msgid "Operating System"
1841
  msgstr "Operativsystem"
1842
 
1843
  # @ wp-slimstat
1844
  #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:88
1845
+ #: ../admin/wp-slimstat-admin.php:928
1846
  msgid "Permalink"
1847
  msgstr "Permalänk"
1848
 
1849
  # @ wp-slimstat
1850
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:929
1851
  msgid "Referer"
1852
  msgstr "Referera till"
1853
 
1854
  # @ wp-slimstat
1855
+ #: ../admin/view/wp-slimstat-db.php:47 ../admin/wp-slimstat-admin.php:930
1856
  msgid "Visitor's Name"
1857
  msgstr "Besökares namn"
1858
 
1859
  # @ wp-slimstat
1860
+ #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:912
1861
  msgid "Outbound Link"
1862
  msgstr "Utgående Länk"
1863
 
1872
 
1873
  # @ wp-slimstat
1874
  #: ../admin/view/wp-slimstat-db.php:52
1875
+ #: ../admin/view/wp-slimstat-reports.php:361
1876
  msgid "Browser Capabilities"
1877
  msgstr "Browserkapaciteter"
1878
 
1879
  # @ wp-slimstat
1880
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:941
1881
  msgid "Browser Version"
1882
  msgstr "Webbläsarversion"
1883
 
1884
  # @ wp-slimstat
1885
+ #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:942
1886
  msgid "Browser Type"
1887
  msgstr "Typ av Browser"
1888
 
1889
  # @ wp-slimstat
1890
+ #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:911
1891
  msgid "User Agent"
1892
  msgstr "User Agent"
1893
 
1900
  msgstr "Latens Server"
1901
 
1902
  # @ wp-slimstat
1903
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:944
1904
  msgid "Post Author"
1905
  msgstr "Postförfattare"
1906
 
1907
  # @ wp-slimstat
1908
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:945
1909
  msgid "Post Category ID"
1910
  msgstr "Postkategori ID"
1911
 
1912
  # @ wp-slimstat
1913
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:947
1914
  msgid "Resource Content Type"
1915
  msgstr "Resurs innehållstyp"
1916
 
1933
  msgstr "Viewport Storlek"
1934
 
1935
  # @ wp-slimstat
1936
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:949
1937
  msgid "Visit ID"
1938
  msgstr "Besök ID"
1939
 
1980
  msgstr "Event ID"
1981
 
1982
  #: ../admin/view/wp-slimstat-db.php:96
1983
+ #: ../admin/view/wp-slimstat-reports.php:1707
1984
  msgid "Type"
1985
  msgstr "Typ"
1986
 
2003
  msgid "Offset"
2004
  msgstr "Offset"
2005
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2006
  # @ wp-slimstat
2007
+ #: ../admin/view/wp-slimstat-reports.php:65
2008
  msgid "Chart controls"
2009
  msgstr "Kontroll av Diagram"
2010
 
2011
  # @ wp-slimstat
2012
+ #: ../admin/view/wp-slimstat-reports.php:65
2013
  msgid "Use your mouse wheel to zoom in and out"
2014
  msgstr "Använd mus-hjulet för att zooma in eller ut."
2015
 
2016
  # @ wp-slimstat
2017
+ #: ../admin/view/wp-slimstat-reports.php:65
2018
  msgid "While zooming in, drag the chart to move to a different area"
2019
  msgstr ""
2020
  "Medans man zoomar in, drag i kartan för att flytta till olika ställen på "
2021
  "kartan."
2022
 
2023
+ #: ../admin/view/wp-slimstat-reports.php:68
2024
  msgid "Social Sharing Analytics"
2025
  msgstr "Social Sharing Analytics"
2026
 
2027
+ #: ../admin/view/wp-slimstat-reports.php:75
2028
  msgid "Visitors Activity"
2029
  msgstr "Besökares Aktivitet"
2030
 
2031
  # @ wp-slimstat
2032
+ #: ../admin/view/wp-slimstat-reports.php:84
2033
  msgid "Color codes"
2034
  msgstr "Färgkod"
2035
 
2036
  # @ wp-slimstat
2037
+ #: ../admin/view/wp-slimstat-reports.php:84
2038
  msgid "From search result page"
2039
  msgstr "Från sökresultatsida"
2040
 
2041
  # @ wp-slimstat
2042
+ #: ../admin/view/wp-slimstat-reports.php:84 ../admin/wp-slimstat-admin.php:904
2043
  msgid "Known Visitor"
2044
  msgstr "Känd besökare"
2045
 
2046
  # @ wp-slimstat
2047
+ #: ../admin/view/wp-slimstat-reports.php:84
2048
  msgid "Known Users"
2049
  msgstr "Kända användare"
2050
 
2051
  # @ wp-slimstat
2052
+ #: ../admin/view/wp-slimstat-reports.php:84
2053
  msgid "Other Humans"
2054
  msgstr "Andra människor"
2055
 
2056
  # @ wp-slimstat
2057
+ #: ../admin/view/wp-slimstat-reports.php:84
2058
  msgid "Bot or Crawler"
2059
  msgstr "Spindlar"
2060
 
2061
  # @ wp-slimstat
2062
+ #: ../admin/view/wp-slimstat-reports.php:106
2063
  msgid "About Slimstat"
2064
  msgstr "Om SlimStat"
2065
 
2066
+ #: ../admin/view/wp-slimstat-reports.php:115
2067
  msgid "Traffic at a Glance"
2068
  msgstr "Överblick Trafik"
2069
 
2070
  # @ wp-slimstat
2071
+ #: ../admin/view/wp-slimstat-reports.php:125
2072
  msgid "Currently Online"
2073
  msgstr "Nuvarande Online"
2074
 
2075
  # @ wp-slimstat
2076
+ #: ../admin/view/wp-slimstat-reports.php:138
2077
  msgid "Recent Search Terms"
2078
  msgstr "Senaste Söktermer"
2079
 
2080
  # @ wp-slimstat
2081
+ #: ../admin/view/wp-slimstat-reports.php:148
2082
  msgid "Keywords used by your visitors to find your website on a search engine."
2083
  msgstr ""
2084
  "Sökord som används av dina besökare att hitta din webbplats på en sökmotor."
2085
 
2086
  # @ wp-slimstat
2087
+ #: ../admin/view/wp-slimstat-reports.php:151
2088
  msgid "Top Web Pages"
2089
  msgstr "Topp Websidor"
2090
 
2091
+ #: ../admin/view/wp-slimstat-reports.php:162
2092
  msgid ""
2093
  "Here a \"page\" is not just a WordPress page type, but any webpage on your "
2094
  "site, including posts, products, categories, and so on. You can set the "
2103
  "har."
2104
 
2105
  # @ wp-slimstat
2106
+ #: ../admin/view/wp-slimstat-reports.php:165
2107
  msgid "Top Traffic Sources"
2108
  msgstr "Topp Trafikkällor"
2109
 
2110
  # @ wp-slimstat
2111
+ #: ../admin/view/wp-slimstat-reports.php:177
2112
  msgid "Top Known Visitors"
2113
  msgstr "Topp Kända besökare"
2114
 
2115
  # @ wp-slimstat
2116
+ #: ../admin/view/wp-slimstat-reports.php:188
2117
  msgid "Top Search Terms"
2118
  msgstr "Topp Söktermer"
2119
 
2120
  # @ wp-slimstat
2121
+ #: ../admin/view/wp-slimstat-reports.php:199
2122
  msgid "Top Countries"
2123
  msgstr "Topp Länder"
2124
 
2125
  # @ wp-slimstat
2126
+ #: ../admin/view/wp-slimstat-reports.php:208
2127
  msgid ""
2128
  "You can configure Slimstat to ignore a specific Country by setting the "
2129
  "corresponding filter under Settings > Slimstat > Filters."
2132
  "motsvarande filter under Inställningar > Slimstat > Filter."
2133
 
2134
  # @ wp-slimstat
2135
+ #: ../admin/view/wp-slimstat-reports.php:211
2136
  msgid "Rankings"
2137
  msgstr "Rankningar"
2138
 
2139
  # @ wp-slimstat
2140
+ #: ../admin/view/wp-slimstat-reports.php:215
2141
  msgid ""
2142
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
2143
  "measures your site's rankings. Values are updated every 12 hours. Filters "
2148
  "anges ovan gäller inte för den här rapporten."
2149
 
2150
  # @ wp-slimstat
2151
+ #: ../admin/view/wp-slimstat-reports.php:218
2152
  msgid "Top Language Families"
2153
  msgstr "Topp Språk Familjer"
2154
 
2155
  # @ wp-slimstat
2156
+ #: ../admin/view/wp-slimstat-reports.php:231
2157
  msgid "Users Currently Online"
2158
  msgstr "Användare fn Online"
2159
 
2160
  # @ wp-slimstat
2161
+ #: ../admin/view/wp-slimstat-reports.php:242
2162
  msgid ""
2163
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2164
  "Slimstat leverages this information to identify returning visitors. Please "
2169
  "besökare. Observera att besökare inkluderar registrerade användare."
2170
 
2171
  # @ wp-slimstat
2172
+ #: ../admin/view/wp-slimstat-reports.php:255
2173
  msgid "Unique Terms"
2174
  msgstr "Unika Termer"
2175
 
2176
  # @ wp-slimstat
2177
+ #: ../admin/view/wp-slimstat-reports.php:264
2178
  msgid "Human Visits"
2179
  msgstr "Mänskliga besök"
2180
 
2181
  # @ wp-slimstat
2182
+ #: ../admin/view/wp-slimstat-reports.php:273
2183
+ #: ../admin/view/wp-slimstat-reports.php:1418
2184
  msgid "Visits"
2185
  msgstr "Besök"
2186
 
2187
  # @ wp-slimstat
2188
+ #: ../admin/view/wp-slimstat-reports.php:283
2189
  msgid "Audience Overview"
2190
  msgstr "Överblick Besökare"
2191
 
2192
+ #: ../admin/view/wp-slimstat-reports.php:290
2193
  msgid ""
2194
  "Where not otherwise specified, the metrics in this report are referred to "
2195
  "human visitors."
2198
  "besökare."
2199
 
2200
  # @ wp-slimstat
2201
+ #: ../admin/view/wp-slimstat-reports.php:293
2202
  msgid "Top Languages"
2203
  msgstr "Topp Språk"
2204
 
2205
  # @ wp-slimstat
2206
+ #: ../admin/view/wp-slimstat-reports.php:304
2207
  msgid "Top Browsers"
2208
  msgstr "Topp Webbläsare"
2209
 
2210
  # @ wp-slimstat
2211
+ #: ../admin/view/wp-slimstat-reports.php:315
2212
  msgid "Top Service Providers"
2213
  msgstr "Topp Internetleverantör"
2214
 
2215
  # @ wp-slimstat
2216
+ #: ../admin/view/wp-slimstat-reports.php:324
2217
  #: ../admin/view/wp-slimstat-reports.php:336
 
2218
  msgid ""
2219
  "Internet Service Provider: a company which provides other companies or "
2220
  "individuals with access to the Internet. Your DSL or cable internet service "
2228
  "Inställningar > Slimstat > Filter."
2229
 
2230
  # @ wp-slimstat
2231
+ #: ../admin/view/wp-slimstat-reports.php:327
2232
  msgid "Top Operating Systems"
2233
  msgstr "Topp OS"
2234
 
2235
  # @ wp-slimstat
2236
+ #: ../admin/view/wp-slimstat-reports.php:339
2237
  msgid "Top Screen Resolutions"
2238
  msgstr "Topp Skärmupplösning"
2239
 
2240
+ #: ../admin/view/wp-slimstat-reports.php:350
2241
  msgid "Top Viewport Sizes"
2242
  msgstr "Topp Viewport Storlek"
2243
 
2244
  # @ wp-slimstat
2245
+ #: ../admin/view/wp-slimstat-reports.php:370
2246
  msgid "Visit Duration"
2247
  msgstr "Besöks Varaktighet"
2248
 
2249
+ #: ../admin/view/wp-slimstat-reports.php:377
2250
  msgid ""
2251
  "All values represent the percentages of pageviews within the corresponding "
2252
  "time range."
2255
  "tidsintervallet."
2256
 
2257
  # @ wp-slimstat
2258
+ #: ../admin/view/wp-slimstat-reports.php:380
2259
  msgid "Recent Countries"
2260
  msgstr "Senaste Länder"
2261
 
2262
+ #: ../admin/view/wp-slimstat-reports.php:391
2263
  msgid "Recent Viewport Sizes"
2264
  msgstr "Senaste Viewport Storlek"
2265
 
2266
  # @ wp-slimstat
2267
+ #: ../admin/view/wp-slimstat-reports.php:402
2268
  msgid "Recent Operating Systems"
2269
  msgstr "Senaste OS"
2270
 
2271
  # @ wp-slimstat
2272
+ #: ../admin/view/wp-slimstat-reports.php:413
2273
  msgid "Recent Browsers"
2274
  msgstr "Senaste Webbläsarna"
2275
 
2276
  # @ wp-slimstat
2277
+ #: ../admin/view/wp-slimstat-reports.php:424
2278
  msgid "Recent Languages"
2279
  msgstr "Senaste Språk"
2280
 
2281
  # @ wp-slimstat
2282
+ #: ../admin/view/wp-slimstat-reports.php:435
2283
  msgid "Top Browser Families"
2284
  msgstr "Topp Webbläsarfamiljer"
2285
 
2286
  # @ wp-slimstat
2287
+ #: ../admin/view/wp-slimstat-reports.php:444
2288
  msgid ""
2289
  "This report shows you what user agent families (no version considered) are "
2290
  "popular among your visitors."
2293
  "bland besökarna."
2294
 
2295
  # @ wp-slimstat
2296
+ #: ../admin/view/wp-slimstat-reports.php:447
2297
  msgid "Top OS Families"
2298
  msgstr "Topp OS (opperativsystem) "
2299
 
2300
  # @ wp-slimstat
2301
+ #: ../admin/view/wp-slimstat-reports.php:458
2302
  msgid ""
2303
  "This report shows you what operating system families (no version considered) "
2304
  "are popular among your visitors."
2307
  "bland besökarna."
2308
 
2309
  # @ wp-slimstat
2310
+ #: ../admin/view/wp-slimstat-reports.php:461
2311
  msgid "Recent Users"
2312
  msgstr "Senaste Användare"
2313
 
2314
  # @ wp-slimstat
2315
+ #: ../admin/view/wp-slimstat-reports.php:473
2316
  msgid "Top Users"
2317
  msgstr "Topp Användare"
2318
 
2319
  # @ wp-slimstat
2320
+ #: ../admin/view/wp-slimstat-reports.php:485
2321
+ #: ../admin/view/wp-slimstat-reports.php:494
2322
  msgid "Users"
2323
  msgstr "Användare"
2324
 
2325
  # @ wp-slimstat
2326
+ #: ../admin/view/wp-slimstat-reports.php:495
2327
  msgid "Unique Users"
2328
  msgstr "Unika Användare"
2329
 
2330
  # @ wp-slimstat
2331
+ #: ../admin/view/wp-slimstat-reports.php:504 ../admin/wp-slimstat-admin.php:76
2332
+ #: ../admin/wp-slimstat-admin.php:505 ../admin/wp-slimstat-admin.php:520
2333
+ #: ../admin/wp-slimstat-admin.php:568
2334
+ msgid "Traffic Sources"
2335
+ msgstr "Trafikkällor"
2336
+
2337
+ # @ wp-slimstat
2338
+ #: ../admin/view/wp-slimstat-reports.php:513
2339
  msgid "Domains"
2340
  msgstr "Domäner"
2341
 
2342
  # @ wp-slimstat
2343
+ #: ../admin/view/wp-slimstat-reports.php:523
2344
  msgid "Traffic Summary"
2345
  msgstr "Sammanställning Trafik"
2346
 
2347
  # @ wp-slimstat
2348
+ #: ../admin/view/wp-slimstat-reports.php:532
2349
  msgid "Top Referring Search Engines"
2350
  msgstr "Topp Sökmotorers hänvisning"
2351
 
2352
  # @ wp-slimstat
2353
+ #: ../admin/view/wp-slimstat-reports.php:559
2354
  msgid "Recent Outbound Links"
2355
  msgstr "Senaste Utgående Länkar"
2356
 
2357
  # @ wp-slimstat
2358
+ #: ../admin/view/wp-slimstat-reports.php:571
2359
  msgid "Recent Posts"
2360
  msgstr "Senaste Poster"
2361
 
2362
  # @ wp-slimstat
2363
+ #: ../admin/view/wp-slimstat-reports.php:599
2364
  msgid "Recent Feeds"
2365
  msgstr "Senaste Feeds"
2366
 
2367
  # @ wp-slimstat
2368
+ #: ../admin/view/wp-slimstat-reports.php:611
2369
  msgid "Recent Pages Not Found"
2370
  msgstr "Senaste Sidor Ej Funna"
2371
 
2372
  # @ wp-slimstat
2373
+ #: ../admin/view/wp-slimstat-reports.php:623
2374
  msgid "Recent Internal Searches"
2375
  msgstr "Senaste Interna sökningar"
2376
 
2377
  # @ wp-slimstat
2378
+ #: ../admin/view/wp-slimstat-reports.php:633
2379
  msgid "Searches performed using WordPress' built-in search functionality."
2380
  msgstr "Sökningar som görs med hjälp av Wordpress inbyggda sökfunktion."
2381
 
2382
  # @ wp-slimstat
2383
+ #: ../admin/view/wp-slimstat-reports.php:636
2384
  msgid "Top Categories"
2385
  msgstr "Topp Kategorier"
2386
 
2387
  # @ wp-slimstat
2388
+ #: ../admin/view/wp-slimstat-reports.php:649
2389
  msgid "Top Downloads"
2390
  msgstr "Topp nedladdningarna"
2391
 
2392
+ #: ../admin/view/wp-slimstat-reports.php:660
2393
  msgid ""
2394
  "You can configure Slimstat to track specific file extensions as downloads."
2395
  msgstr ""
2397
  "nedladdningar."
2398
 
2399
  # @ wp-slimstat
2400
+ #: ../admin/view/wp-slimstat-reports.php:663
2401
  msgid "Recent Events"
2402
  msgstr "Senaste Events"
2403
 
2404
+ #: ../admin/view/wp-slimstat-reports.php:672
2405
+ #: ../admin/view/wp-slimstat-reports.php:696
2406
  msgid ""
2407
  "This report lists any <em>event</em> occurred on your website. Please refer "
2408
  "to the FAQ for more information on how to use this functionality."
2411
  "Se FAQ för mer information om hur du använder den här funktionen."
2412
 
2413
  # @ wp-slimstat
2414
+ #: ../admin/view/wp-slimstat-reports.php:675
2415
  msgid "Top Posts"
2416
  msgstr "Topp Poster"
2417
 
2418
  # @ wp-slimstat
2419
+ #: ../admin/view/wp-slimstat-reports.php:687
2420
  msgid "Top Events"
2421
  msgstr "Topp Events"
2422
 
2423
  # @ wp-slimstat
2424
+ #: ../admin/view/wp-slimstat-reports.php:699
2425
  msgid "Top Internal Searches"
2426
  msgstr "Topp Interna Sökningar"
2427
 
2428
  # @ wp-slimstat
2429
+ #: ../admin/view/wp-slimstat-reports.php:711
2430
  msgid "Recent Categories"
2431
  msgstr "Senaste Kategorierna"
2432
 
2433
  # @ wp-slimstat
2434
+ #: ../admin/view/wp-slimstat-reports.php:723
2435
  msgid "Top Pages Not Found"
2436
  msgstr "Topp Sidor Ej Funna"
2437
 
2438
  # @ wp-slimstat
2439
+ #: ../admin/view/wp-slimstat-reports.php:735
2440
  msgid "Top Authors"
2441
  msgstr "Topp Författare"
2442
 
2443
  # @ wp-slimstat
2444
+ #: ../admin/view/wp-slimstat-reports.php:746
2445
  msgid "Top Tags"
2446
  msgstr "Topp Taggar"
2447
 
2448
  # @ wp-slimstat
2449
+ #: ../admin/view/wp-slimstat-reports.php:758
2450
  msgid "Recent Downloads"
2451
  msgstr "Senaste Nedladdningar"
2452
 
2453
  # @ wp-slimstat
2454
+ #: ../admin/view/wp-slimstat-reports.php:770
2455
  msgid "Top Outbound Links"
2456
  msgstr "Topp Utgående Länk"
2457
 
2458
  # @ wp-slimstat
2459
+ #: ../admin/view/wp-slimstat-reports.php:782
2460
  msgid "Your Website"
2461
  msgstr "Din Webbplats"
2462
 
2463
  # @ wp-slimstat
2464
+ #: ../admin/view/wp-slimstat-reports.php:789
2465
  msgid ""
2466
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2467
  "this report is not affected by the filters set here above."
2470
  "denna rapport inte påverkas av filtren som här ovan."
2471
 
2472
  # @ wp-slimstat
2473
+ #: ../admin/view/wp-slimstat-reports.php:792
2474
  msgid "Top Bounce Pages"
2475
  msgstr "Topp Avvisande Sidor"
2476
 
2477
  # @ wp-slimstat
2478
+ #: ../admin/view/wp-slimstat-reports.php:805
2479
  msgid "Top Exit Pages"
2480
  msgstr "Topp Utgångs-Sidor"
2481
 
2482
  # @ wp-slimstat
2483
+ #: ../admin/view/wp-slimstat-reports.php:818
2484
  msgid "Top Entry Pages"
2485
  msgstr "Topp Ingångs-Sidor"
2486
 
2487
  # @ wp-slimstat
2488
+ #: ../admin/view/wp-slimstat-reports.php:831
2489
+ #: ../admin/view/wp-slimstat-reports.php:840
2490
  msgid "Outbound Links"
2491
  msgstr "Utgående Länkar"
2492
 
2493
+ #: ../admin/view/wp-slimstat-reports.php:841
2494
  msgid "Unique Outbound"
2495
  msgstr "Inika Outbound"
2496
 
2497
  # @ wp-slimstat
2498
+ #: ../admin/view/wp-slimstat-reports.php:850
2499
  msgid "World Map"
2500
  msgstr "Världskarta"
2501
 
2502
  # @ wp-slimstat
2503
+ #: ../admin/view/wp-slimstat-reports.php:931
2504
  msgid "Refresh"
2505
  msgstr "Uppdatera varje"
2506
 
2507
  # @ wp-slimstat
2508
+ #: ../admin/view/wp-slimstat-reports.php:968
2509
  #, php-format
2510
  msgid "Results %s - %s of %s"
2511
  msgstr "Resultat %s - %s av %s"
2512
 
2513
  # @ wp-slimstat
2514
+ #: ../admin/view/wp-slimstat-reports.php:970
2515
  msgid "Refresh in"
2516
  msgstr "Uppdateras inom"
2517
 
2518
  # @ wp-slimstat
2519
+ #: ../admin/view/wp-slimstat-reports.php:1063
2520
  msgid "Category ID"
2521
  msgstr "Kategori ID"
2522
 
2523
+ #: ../admin/view/wp-slimstat-reports.php:1068
2524
+ #: ../admin/view/wp-slimstat-reports.php:1083
2525
+ #: ../admin/view/wp-slimstat-reports.php:1089
2526
  msgid "Code"
2527
  msgstr "Kod"
2528
 
2529
  # Unknown
2530
  # @ wp-slimstat
2531
+ #: ../admin/view/wp-slimstat-reports.php:1084
2532
+ #: ../languages/dynamic_strings.php:339 ../wp-slimstat.php:1319
2533
  msgid "l-"
2534
  msgstr "Okänd"
2535
 
2536
+ #: ../admin/view/wp-slimstat-reports.php:1101
2537
  msgid "URL"
2538
  msgstr "URL"
2539
 
2540
  # @ wp-slimstat
2541
+ #: ../admin/view/wp-slimstat-reports.php:1114
2542
  msgid "Referrer"
2543
  msgstr "Referera till"
2544
 
2545
  # @ wp-slimstat
2546
+ #: ../admin/view/wp-slimstat-reports.php:1155
2547
+ #: ../admin/view/wp-slimstat-reports.php:1402
2548
+ #: ../admin/view/wp-slimstat-reports.php:1458
2549
+ #: ../admin/view/wp-slimstat-reports.php:1464
2550
+ #: ../admin/view/wp-slimstat-reports.php:1470
2551
+ #: ../admin/view/wp-slimstat-reports.php:1476
2552
+ #: ../admin/view/wp-slimstat-reports.php:1482
2553
+ #: ../admin/view/wp-slimstat-reports.php:1488
2554
+ #: ../admin/view/wp-slimstat-reports.php:1494
2555
+ #: ../admin/view/wp-slimstat-reports.php:1714
2556
  msgid "Hits"
2557
  msgstr "Träffar"
2558
 
2559
  # @ wp-slimstat
2560
+ #: ../admin/view/wp-slimstat-reports.php:1329
2561
  msgid "Dataset Size"
2562
  msgstr "Dataset Storlek"
2563
 
2564
+ #: ../admin/view/wp-slimstat-reports.php:1331
2565
  msgid "Total number of records stored in the database."
2566
  msgstr "Totalt antal poster sparade i databasen"
2567
 
2568
  # @ wp-slimstat
2569
+ #: ../admin/view/wp-slimstat-reports.php:1333
2570
  msgid "DB Size"
2571
  msgstr "DB Storlek"
2572
 
2573
  # @ wp-slimstat
2574
+ #: ../admin/view/wp-slimstat-reports.php:1336
2575
  msgid "Tracking Enabled"
2576
  msgstr "Spårning Aktiverad"
2577
 
2578
  # @ wp-slimstat
2579
+ #: ../admin/view/wp-slimstat-reports.php:1339
2580
  msgid "Javascript Mode"
2581
  msgstr "Javascript-läge"
2582
 
2583
  # @ wp-slimstat
2584
+ #: ../admin/view/wp-slimstat-reports.php:1342
2585
  msgid "Tracking Browser Caps"
2586
  msgstr "Spåra Browser Caps"
2587
 
2588
  # @ wp-slimstat
2589
+ #: ../admin/view/wp-slimstat-reports.php:1345
2590
  msgid "Auto purge"
2591
  msgstr "Autorensning"
2592
 
2593
  # @ wp-slimstat
2594
+ #: ../admin/view/wp-slimstat-reports.php:1348
2595
  msgid "Oldest pageview"
2596
  msgstr "Äldsta sidvisning"
2597
 
2598
  # @ wp-slimstat
2599
+ #: ../admin/view/wp-slimstat-reports.php:1349
2600
  msgid "No visits"
2601
  msgstr "Inga besök"
2602
 
2603
+ # @ wp-slimstat
2604
+ #: ../admin/view/wp-slimstat-reports.php:1351
2605
+ #: ../admin/wp-slimstat-admin.php:77 ../admin/wp-slimstat-admin.php:506
2606
+ #: ../admin/wp-slimstat-admin.php:521 ../admin/wp-slimstat-admin.php:569
2607
+ msgid "Geolocation"
2608
+ msgstr "Geolokalisering"
2609
+
2610
+ #: ../admin/view/wp-slimstat-reports.php:1353
2611
  msgid "Date when the MaxMind Geolocation database was last updated."
2612
  msgstr "Datum då MaxMind Geolocation databasen senast uppdaterades."
2613
 
2614
  # @ wp-slimstat
2615
+ #: ../admin/view/wp-slimstat-reports.php:1364
2616
+ #: ../admin/view/wp-slimstat-reports.php:1522
2617
  msgid ""
2618
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2619
  "the tracking code is executed."
2622
  "varje gång spårningskoden körs."
2623
 
2624
  # @ wp-slimstat
2625
+ #: ../admin/view/wp-slimstat-reports.php:1366
2626
  msgid "Days in Range"
2627
  msgstr "Dagar inom intervallet"
2628
 
2629
  # @ wp-slimstat
2630
+ #: ../admin/view/wp-slimstat-reports.php:1369
2631
  msgid "Average Daily Pageviews"
2632
  msgstr "Genomsnittlig Daglig Sidvisning"
2633
 
2634
  # @ wp-slimstat
2635
+ #: ../admin/view/wp-slimstat-reports.php:1371
2636
  msgid ""
2637
  "How many pages have been visited on average every day during the current "
2638
  "period."
2641
  "perioden."
2642
 
2643
  # @ wp-slimstat
2644
+ #: ../admin/view/wp-slimstat-reports.php:1373
2645
  msgid "From Search Results"
2646
  msgstr "Från Sökresultat"
2647
 
2648
  # @ wp-slimstat
2649
+ #: ../admin/view/wp-slimstat-reports.php:1375
2650
  msgid ""
2651
  "Visitors who landed on your site after searching for a keyword on Google, "
2652
  "Yahoo, etc."
2655
  "Yahoo etc."
2656
 
2657
  # @ wp-slimstat
2658
+ #: ../admin/view/wp-slimstat-reports.php:1379
2659
  msgid ""
2660
  "Used to differentiate between multiple requests to download a file from one "
2661
  "internet address (IP) and requests originating from many distinct addresses"
2664
  "från en internet adress (IP) och förfrågningar från flera olika adresser"
2665
 
2666
  # @ wp-slimstat
2667
+ #: ../admin/view/wp-slimstat-reports.php:1381
2668
  msgid "Last 30 minutes"
2669
  msgstr "Sista 30 minuterna"
2670
 
2671
  # @ wp-slimstat
2672
+ #: ../admin/view/wp-slimstat-reports.php:1420
2673
  msgid ""
2674
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
2675
  "multiple times if they perform multiple visits."
2678
  "flera gånger om de utför flera besök."
2679
 
2680
  # @ wp-slimstat
2681
+ #: ../admin/view/wp-slimstat-reports.php:1424
2682
  msgid "It includes only traffic generated by human visitors."
2683
  msgstr "Omfattar endast trafik som genereras av mänskliga besökare."
2684
 
2685
  # @ wp-slimstat
2686
+ #: ../admin/view/wp-slimstat-reports.php:1426
2687
  msgid "Bounce rate"
2688
  msgstr "Avvisningsfrekvens"
2689
 
2690
  # @ wp-slimstat
2691
+ #: ../admin/view/wp-slimstat-reports.php:1428
2692
  msgid ""
2693
  "Percentage of single-page visits, i.e. visits in which the person left your "
2694
  "site from the entrance page."
2697
  "ingångssidan."
2698
 
2699
  # @ wp-slimstat
2700
+ #: ../admin/view/wp-slimstat-reports.php:1430
2701
  msgid "Known visitors"
2702
  msgstr "Kända besökare"
2703
 
2704
  # @ wp-slimstat
2705
+ #: ../admin/view/wp-slimstat-reports.php:1432
2706
  msgid "Visitors who had previously left a comment on your blog."
2707
  msgstr "Besökare som tidigare lämnade en kommentar på din blogg."
2708
 
2709
  # @ wp-slimstat
2710
+ #: ../admin/view/wp-slimstat-reports.php:1434
2711
  msgid "New visitors"
2712
  msgstr "Nya besökare"
2713
 
2714
  # @ wp-slimstat
2715
+ #: ../admin/view/wp-slimstat-reports.php:1436
2716
  msgid "Human users who visited your site only once."
2717
  msgstr "Mänskliga användare som besökt din sajt endast en gång."
2718
 
2719
  # @ wp-slimstat
2720
+ #: ../admin/view/wp-slimstat-reports.php:1438
2721
  msgid "Bots"
2722
  msgstr "Bots"
2723
 
2724
  # @ wp-slimstat
2725
+ #: ../admin/view/wp-slimstat-reports.php:1441
2726
  msgid "Pageviews per visit"
2727
  msgstr "Sidvisning per besök"
2728
 
2729
  # @ wp-slimstat
2730
+ #: ../admin/view/wp-slimstat-reports.php:1444
2731
  msgid "Longest visit"
2732
  msgstr "Längsta besök"
2733
 
2734
  # @ wp-slimstat
2735
+ #: ../admin/view/wp-slimstat-reports.php:1445
2736
  msgid "hits"
2737
  msgstr "träffar"
2738
 
2739
  # @ wp-slimstat
2740
+ #: ../admin/view/wp-slimstat-reports.php:1456
2741
  msgid "0 - 30 seconds"
2742
  msgstr "0 - 30 sekunder"
2743
 
2744
  # @ wp-slimstat
2745
+ #: ../admin/view/wp-slimstat-reports.php:1462
2746
  msgid "31 - 60 seconds"
2747
  msgstr "31 - 60 sekunder"
2748
 
2749
  # @ wp-slimstat
2750
+ #: ../admin/view/wp-slimstat-reports.php:1468
2751
  msgid "1 - 3 minutes"
2752
  msgstr "1 - 3 minuter"
2753
 
2754
  # @ wp-slimstat
2755
+ #: ../admin/view/wp-slimstat-reports.php:1474
2756
  msgid "3 - 5 minutes"
2757
  msgstr "3 - 5 minuter"
2758
 
2759
  # @ wp-slimstat
2760
+ #: ../admin/view/wp-slimstat-reports.php:1480
2761
  msgid "5 - 7 minutes"
2762
  msgstr "5 - 7 minuter"
2763
 
2764
  # @ wp-slimstat
2765
+ #: ../admin/view/wp-slimstat-reports.php:1486
2766
  msgid "7 - 10 minutes"
2767
  msgstr "7 - 10 minuter"
2768
 
2769
  # @ wp-slimstat
2770
+ #: ../admin/view/wp-slimstat-reports.php:1492
2771
  msgid "More than 10 minutes"
2772
  msgstr "Mer än 10 minuter"
2773
 
2774
  # @ wp-slimstat
2775
+ #: ../admin/view/wp-slimstat-reports.php:1504
2776
  msgid "Average visit duration"
2777
  msgstr "Genomsnittlig längd på besök"
2778
 
2779
  # @ wp-slimstat
2780
+ #: ../admin/view/wp-slimstat-reports.php:1524
2781
  msgid "Unique Referrers"
2782
  msgstr "Unika Referrers"
2783
 
2784
  # @ wp-slimstat
2785
+ #: ../admin/view/wp-slimstat-reports.php:1526
2786
  msgid ""
2787
  "A referrer (or referring site) is the site that a visitor previously visited "
2788
  "before following a link to your site."
2791
  "tidigare besökt innan genom länk till din webbplats."
2792
 
2793
  # @ wp-slimstat
2794
+ #: ../admin/view/wp-slimstat-reports.php:1528
2795
  msgid "Direct Pageviews"
2796
  msgstr "Direkt Sidvisning"
2797
 
2798
  # @ wp-slimstat
2799
+ #: ../admin/view/wp-slimstat-reports.php:1530
2800
  msgid ""
2801
  "Visitors who visited the site by typing the URL directly into their browser. "
2802
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2809
  "eller länkar från handlingar som inte inbegriper spårnings variabler."
2810
 
2811
  # @ wp-slimstat
2812
+ #: ../admin/view/wp-slimstat-reports.php:1532
2813
  msgid "From a search result"
2814
  msgstr "Från ett sökresultat"
2815
 
2816
  # @ wp-slimstat
2817
+ #: ../admin/view/wp-slimstat-reports.php:1534
2818
  msgid ""
2819
  "Visitors who came to your site via searches on Google or some other search "
2820
  "engine."
2823
  "sökmotor."
2824
 
2825
  # @ wp-slimstat
2826
+ #: ../admin/view/wp-slimstat-reports.php:1536
2827
  msgid "Unique Landing Pages"
2828
  msgstr "Unika Landningssidor"
2829
 
2830
  # @ wp-slimstat
2831
+ #: ../admin/view/wp-slimstat-reports.php:1538
2832
  msgid ""
2833
  "The first page that a user views during a session. This is also known as the "
2834
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2841
  "landningssida."
2842
 
2843
  # @ wp-slimstat
2844
+ #: ../admin/view/wp-slimstat-reports.php:1540
2845
  msgid "Bounce Pages"
2846
  msgstr "Avvisande Sidor"
2847
 
2848
+ #: ../admin/view/wp-slimstat-reports.php:1542
2849
  msgid "Number of single page visits to your site over the selected period."
2850
  msgstr "Antal enkelsidiga besök på din webbplats under den valda perioden."
2851
 
2852
  # @ wp-slimstat
2853
+ #: ../admin/view/wp-slimstat-reports.php:1544
2854
  msgid "New Visitors Rate"
2855
  msgstr "Nya besökare Grad"
2856
 
2857
  # @ wp-slimstat
2858
+ #: ../admin/view/wp-slimstat-reports.php:1546
2859
  msgid ""
2860
  "Percentage of single page visits, i.e. visits in which the person left your "
2861
  "site from the entrance page."
2864
  "webbplatsen från ingångssidan."
2865
 
2866
  # @ wp-slimstat
2867
+ #: ../admin/view/wp-slimstat-reports.php:1548
2868
  msgid "Currently from search engines"
2869
  msgstr "För närvarande från sökmotorer"
2870
 
2871
  # @ wp-slimstat
2872
+ #: ../admin/view/wp-slimstat-reports.php:1550
2873
  msgid ""
2874
  "Visitors who visited the site in the last 5 minutes coming from a search "
2875
  "engine."
2878
  "sökmotor."
2879
 
2880
  # @ wp-slimstat
2881
+ #: ../admin/view/wp-slimstat-reports.php:1620
2882
  msgid "Number of pages in your site included in Google's index."
2883
  msgstr "Antal sidor i din webbplats i Googles index."
2884
 
2885
  # @ wp-slimstat
2886
+ #: ../admin/view/wp-slimstat-reports.php:1621
2887
  msgid "Google Index"
2888
  msgstr "Google Index"
2889
 
2890
  # @ wp-slimstat
2891
+ #: ../admin/view/wp-slimstat-reports.php:1622
2892
  msgid "Number of pages, according to Google, that link back to your site."
2893
  msgstr "Antal sidor, enligt Google, som länkar tillbaka till din webbplats."
2894
 
2895
  # @ wp-slimstat
2896
+ #: ../admin/view/wp-slimstat-reports.php:1623
2897
  msgid "Google Backlinks"
2898
  msgstr "Google bakåtlänkar"
2899
 
2900
  # @ wp-slimstat
2901
+ #: ../admin/view/wp-slimstat-reports.php:1624
2902
  msgid ""
2903
  "How many times the Facebook Like button has been approximately clicked on "
2904
  "your site."
2907
  "webbplats."
2908
 
2909
  # @ wp-slimstat
2910
+ #: ../admin/view/wp-slimstat-reports.php:1625
2911
  msgid "Facebook Likes"
2912
  msgstr "Facebook Gillas"
2913
 
2914
  # @ wp-slimstat
2915
+ #: ../admin/view/wp-slimstat-reports.php:1626
2916
  msgid ""
2917
  "How many times your site has been shared by someone on the social network."
2918
  msgstr ""
2919
  "Hur många gånger din webbplats har delat med någon på det sociala nätverket."
2920
 
2921
  # @ wp-slimstat
2922
+ #: ../admin/view/wp-slimstat-reports.php:1627
2923
  msgid "Facebook Shares"
2924
  msgstr "Facebook Delning"
2925
 
2926
  # @ wp-slimstat
2927
+ #: ../admin/view/wp-slimstat-reports.php:1628
2928
  msgid "How many times links to your website have been clicked on Facebook."
2929
  msgstr "Hur många gånger länkar till din webbplats har klickats på Facebook."
2930
 
2931
  # @ wp-slimstat
2932
+ #: ../admin/view/wp-slimstat-reports.php:1629
2933
  msgid "Facebook Clicks"
2934
  msgstr "Facebook klick"
2935
 
2936
  # @ wp-slimstat
2937
+ #: ../admin/view/wp-slimstat-reports.php:1630
2938
  msgid ""
2939
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2940
  "traffic data."
2943
  "trafikdata."
2944
 
2945
  # @ wp-slimstat
2946
+ #: ../admin/view/wp-slimstat-reports.php:1631
2947
  msgid "Alexa World Rank"
2948
  msgstr "Alexa Världs Rankning"
2949
 
2950
  # @ wp-slimstat
2951
+ #: ../admin/view/wp-slimstat-reports.php:1632
2952
  msgid "Alexa Country Rank"
2953
  msgstr "Alexa Lands Rankning"
2954
 
2955
  # @ wp-slimstat
2956
+ #: ../admin/view/wp-slimstat-reports.php:1633
2957
  msgid "Alexa Popularity"
2958
  msgstr "Alexa Popularitet"
2959
 
2960
  # @ wp-slimstat
2961
+ #: ../admin/view/wp-slimstat-reports.php:1644
2962
  msgid "Content Items"
2963
  msgstr "Innehållsposter"
2964
 
2965
  # @ wp-slimstat
2966
+ #: ../admin/view/wp-slimstat-reports.php:1646
2967
  msgid ""
2968
  "This value includes not only posts, but also custom post types, regardless "
2969
  "of their status"
2972
  "oavsett deras status"
2973
 
2974
  # @ wp-slimstat
2975
+ #: ../admin/view/wp-slimstat-reports.php:1648
2976
  msgid "Posts"
2977
  msgstr "Inlägg"
2978
 
2979
  # @ wp-slimstat
2980
+ #: ../admin/view/wp-slimstat-reports.php:1651
2981
  msgid "Pages"
2982
  msgstr "Sidor"
2983
 
2984
+ #: ../admin/view/wp-slimstat-reports.php:1654
2985
  msgid "Attachments"
2986
  msgstr "Bilagor"
2987
 
2988
  # @ wp-slimstat
2989
+ #: ../admin/view/wp-slimstat-reports.php:1657
2990
  msgid "Revisions"
2991
  msgstr "Revideringar"
2992
 
2993
+ #: ../admin/view/wp-slimstat-reports.php:1660
2994
  msgid "Comments"
2995
  msgstr "Kommentarer"
2996
 
2997
+ #: ../admin/view/wp-slimstat-reports.php:1663
2998
  msgid "Avg Comments per Post"
2999
  msgstr "G.snitt kommentarer per Inlägg"
3000
 
3001
+ #: ../admin/view/wp-slimstat-reports.php:1666
3002
  msgid "Avg Server Latency"
3003
  msgstr "G.snitt Server latens"
3004
 
3005
+ #: ../admin/view/wp-slimstat-reports.php:1668
3006
  msgid ""
3007
  "Latency is the amount of time it takes for the host server to receive and "
3008
  "process a request for a page object. The amount of latency depends largely "
3013
  "hur långt bort användaren är från servern."
3014
 
3015
  # @ wp-slimstat
3016
+ #: ../admin/view/wp-slimstat-reports.php:1711
3017
  msgid "Coordinates"
3018
  msgstr "Koordinater"
3019
 
3020
+ #: ../admin/view/wp-slimstat-reports.php:1711
3021
  msgid "Date"
3022
  msgstr "Datum"
3023
 
3024
+ #: ../admin/view/wp-slimstat-reports.php:1748
3025
  msgid "Error contacting the GetSocial endpoint."
3026
  msgstr "Fel vid kontakt med GetSocial."
3027
 
3028
+ #: ../admin/view/wp-slimstat-reports.php:1756
3029
  msgid "Error decoding the GetSocial payload."
3030
  msgstr "Fel avkodning av GetSocial nyttolast."
3031
 
3032
+ #: ../admin/view/wp-slimstat-reports.php:1788
3033
  msgid ""
3034
  "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
3035
  ">social media metrics and identify your top performing posts.<br/> <a "
3041
 
3042
  # Unknown
3043
  # @ wp-slimstat
3044
+ #: ../admin/view/wp-slimstat-reports.php:1798
3045
  msgid "c-xx"
3046
  msgstr "Okänd"
3047
 
3048
  # Afghanistan
3049
  # @ wp-slimstat
3050
+ #: ../admin/view/wp-slimstat-reports.php:1798
3051
  msgid "c-af"
3052
  msgstr "Afghanistan"
3053
 
3054
  # Åland Islands
3055
  # @ wp-slimstat
3056
+ #: ../admin/view/wp-slimstat-reports.php:1798
3057
  msgid "c-ax"
3058
  msgstr "Åland"
3059
 
3060
  # Albania
3061
  # @ wp-slimstat
3062
+ #: ../admin/view/wp-slimstat-reports.php:1798
3063
  msgid "c-al"
3064
  msgstr "Albanien"
3065
 
3066
  # Algeria
3067
  # @ wp-slimstat
3068
+ #: ../admin/view/wp-slimstat-reports.php:1798
3069
  msgid "c-dz"
3070
  msgstr "Algeriet"
3071
 
3072
  # Andorra
3073
  # @ wp-slimstat
3074
+ #: ../admin/view/wp-slimstat-reports.php:1798
3075
  msgid "c-ad"
3076
  msgstr "Andorra"
3077
 
3078
  # Angola
3079
  # @ wp-slimstat
3080
+ #: ../admin/view/wp-slimstat-reports.php:1798
3081
  msgid "c-ao"
3082
  msgstr "Angola"
3083
 
3084
  # Anguilla
3085
  # @ wp-slimstat
3086
+ #: ../admin/view/wp-slimstat-reports.php:1798
3087
  msgid "c-ai"
3088
  msgstr "Anguilla"
3089
 
3090
  # Antigua and Barbuda
3091
  # @ wp-slimstat
3092
+ #: ../admin/view/wp-slimstat-reports.php:1798
3093
  msgid "c-ag"
3094
  msgstr "Antigua och Barbuda"
3095
 
3096
  # Argentina
3097
  # @ wp-slimstat
3098
+ #: ../admin/view/wp-slimstat-reports.php:1798
3099
  msgid "c-ar"
3100
  msgstr "Argentina"
3101
 
3102
  # Armenia
3103
  # @ wp-slimstat
3104
+ #: ../admin/view/wp-slimstat-reports.php:1798
3105
  msgid "c-am"
3106
  msgstr "Armenien"
3107
 
3108
  # Aruba
3109
  # @ wp-slimstat
3110
+ #: ../admin/view/wp-slimstat-reports.php:1798
3111
  msgid "c-aw"
3112
  msgstr "Aruba"
3113
 
3114
  # Australia
3115
  # @ wp-slimstat
3116
+ #: ../admin/view/wp-slimstat-reports.php:1798
3117
  msgid "c-au"
3118
  msgstr "Australien"
3119
 
3120
  # Austria
3121
  # @ wp-slimstat
3122
+ #: ../admin/view/wp-slimstat-reports.php:1798
3123
  msgid "c-at"
3124
  msgstr "Österrike"
3125
 
3126
  # Azerbaijan
3127
  # @ wp-slimstat
3128
+ #: ../admin/view/wp-slimstat-reports.php:1798
3129
  msgid "c-az"
3130
  msgstr "Azerbajdzjan"
3131
 
3132
  # Bahamas
3133
  # @ wp-slimstat
3134
+ #: ../admin/view/wp-slimstat-reports.php:1798
3135
  msgid "c-bs"
3136
  msgstr "Bahamas"
3137
 
3138
  # Bahrain
3139
  # @ wp-slimstat
3140
+ #: ../admin/view/wp-slimstat-reports.php:1798
3141
  msgid "c-bh"
3142
  msgstr "Bahrain"
3143
 
3144
  # Bangladesh
3145
  # @ wp-slimstat
3146
+ #: ../admin/view/wp-slimstat-reports.php:1798
3147
  msgid "c-bd"
3148
  msgstr "Bangladesh"
3149
 
3150
  # Barbados
3151
  # @ wp-slimstat
3152
+ #: ../admin/view/wp-slimstat-reports.php:1798
3153
  msgid "c-bb"
3154
  msgstr "Barbados"
3155
 
3156
  # Belarus
3157
  # @ wp-slimstat
3158
+ #: ../admin/view/wp-slimstat-reports.php:1798
3159
  msgid "c-by"
3160
  msgstr "Belarus"
3161
 
3162
  # Belgium
3163
  # @ wp-slimstat
3164
+ #: ../admin/view/wp-slimstat-reports.php:1798
3165
  msgid "c-be"
3166
  msgstr "Belgien"
3167
 
3168
  # Belize
3169
  # @ wp-slimstat
3170
+ #: ../admin/view/wp-slimstat-reports.php:1798
3171
  msgid "c-bz"
3172
  msgstr "Belize"
3173
 
3174
  # Benin
3175
  # @ wp-slimstat
3176
+ #: ../admin/view/wp-slimstat-reports.php:1798
3177
  msgid "c-bj"
3178
  msgstr "Benin"
3179
 
3180
  # Bermuda
3181
  # @ wp-slimstat
3182
+ #: ../admin/view/wp-slimstat-reports.php:1798
3183
  msgid "c-bm"
3184
  msgstr "Bermuda"
3185
 
3186
  # Bhutan
3187
  # @ wp-slimstat
3188
+ #: ../admin/view/wp-slimstat-reports.php:1798
3189
  msgid "c-bt"
3190
  msgstr "Bhutan"
3191
 
3192
  # Bolivia
3193
  # @ wp-slimstat
3194
+ #: ../admin/view/wp-slimstat-reports.php:1798
3195
  msgid "c-bo"
3196
  msgstr "Bolivia"
3197
 
3198
  # Bosnia and Herzegovina
3199
  # @ wp-slimstat
3200
+ #: ../admin/view/wp-slimstat-reports.php:1798
3201
  msgid "c-ba"
3202
  msgstr "Bosnien och Hercegovina"
3203
 
3204
  # Botswana
3205
  # @ wp-slimstat
3206
+ #: ../admin/view/wp-slimstat-reports.php:1798
3207
  msgid "c-bw"
3208
  msgstr "Botswana"
3209
 
3210
  # Brazil
3211
  # @ wp-slimstat
3212
+ #: ../admin/view/wp-slimstat-reports.php:1798
3213
  msgid "c-br"
3214
  msgstr "Brazilien"
3215
 
3216
  # Brunei Darussalam
3217
  # @ wp-slimstat
3218
+ #: ../admin/view/wp-slimstat-reports.php:1798
3219
  msgid "c-bn"
3220
  msgstr "Brunei"
3221
 
3222
  # Bulgaria
3223
  # @ wp-slimstat
3224
+ #: ../admin/view/wp-slimstat-reports.php:1798
3225
  msgid "c-bg"
3226
  msgstr "Bulgarien"
3227
 
3228
  # Burkina Faso
3229
  # @ wp-slimstat
3230
+ #: ../admin/view/wp-slimstat-reports.php:1798
3231
  msgid "c-bf"
3232
  msgstr "Burkina Faso"
3233
 
3234
  # Burundi
3235
  # @ wp-slimstat
3236
+ #: ../admin/view/wp-slimstat-reports.php:1798
3237
  msgid "c-bi"
3238
  msgstr "Burundi"
3239
 
3240
  # Cambodia
3241
  # @ wp-slimstat
3242
+ #: ../admin/view/wp-slimstat-reports.php:1798
3243
  msgid "c-kh"
3244
  msgstr "Kambodja"
3245
 
3246
  # Cameroon
3247
  # @ wp-slimstat
3248
+ #: ../admin/view/wp-slimstat-reports.php:1798
3249
  msgid "c-cm"
3250
  msgstr "Kamerun"
3251
 
3252
  # Canada
3253
  # @ wp-slimstat
3254
+ #: ../admin/view/wp-slimstat-reports.php:1798
3255
  msgid "c-ca"
3256
  msgstr "Kanada"
3257
 
3258
  # Cape Verde
3259
  # @ wp-slimstat
3260
+ #: ../admin/view/wp-slimstat-reports.php:1798
3261
  msgid "c-cv"
3262
  msgstr "Kap Verde"
3263
 
3264
  # Cayman Islands
3265
  # @ wp-slimstat
3266
+ #: ../admin/view/wp-slimstat-reports.php:1798
3267
  msgid "c-ky"
3268
  msgstr "Caymanöarna"
3269
 
3270
  # Central African Republic
3271
  # @ wp-slimstat
3272
+ #: ../admin/view/wp-slimstat-reports.php:1798
3273
  msgid "c-cf"
3274
  msgstr "Centralafricanska Republiken"
3275
 
3276
  # Chad
3277
  # @ wp-slimstat
3278
+ #: ../admin/view/wp-slimstat-reports.php:1798
3279
  msgid "c-td"
3280
  msgstr "Chad"
3281
 
3282
  # Chile
3283
  # @ wp-slimstat
3284
+ #: ../admin/view/wp-slimstat-reports.php:1798
3285
  msgid "c-cl"
3286
  msgstr "Chile"
3287
 
3288
  # China
3289
  # @ wp-slimstat
3290
+ #: ../admin/view/wp-slimstat-reports.php:1798
3291
  msgid "c-cn"
3292
  msgstr "Kina"
3293
 
3294
  # Colombia
3295
  # @ wp-slimstat
3296
+ #: ../admin/view/wp-slimstat-reports.php:1798
3297
  msgid "c-co"
3298
  msgstr "Colombia"
3299
 
3300
  # Comoros
3301
  # @ wp-slimstat
3302
+ #: ../admin/view/wp-slimstat-reports.php:1798
3303
  msgid "c-km"
3304
  msgstr "Komorerna"
3305
 
3306
  # Congo
3307
  # @ wp-slimstat
3308
+ #: ../admin/view/wp-slimstat-reports.php:1798
3309
  msgid "c-cg"
3310
  msgstr "Kongo"
3311
 
3312
  # The Democratic Republic of the Congo
3313
  # @ wp-slimstat
3314
+ #: ../admin/view/wp-slimstat-reports.php:1798
3315
  msgid "c-cd"
3316
  msgstr "Kongo, Demokratiska republiken"
3317
 
3318
  # Costa Rica
3319
  # @ wp-slimstat
3320
+ #: ../admin/view/wp-slimstat-reports.php:1798
3321
  msgid "c-cr"
3322
  msgstr "Costa Rica"
3323
 
3324
  # Côte d'Ivoire
3325
  # @ wp-slimstat
3326
+ #: ../admin/view/wp-slimstat-reports.php:1798
3327
  msgid "c-ci"
3328
  msgstr "Côte d'Ivoire"
3329
 
3330
  # Croatia
3331
  # @ wp-slimstat
3332
+ #: ../admin/view/wp-slimstat-reports.php:1798
3333
  msgid "c-hr"
3334
  msgstr "Kroatien"
3335
 
3336
  # Cuba
3337
  # @ wp-slimstat
3338
+ #: ../admin/view/wp-slimstat-reports.php:1798
3339
  msgid "c-cu"
3340
  msgstr "Kuba"
3341
 
3342
  # Cyprus
3343
  # @ wp-slimstat
3344
+ #: ../admin/view/wp-slimstat-reports.php:1798
3345
  msgid "c-cy"
3346
  msgstr "Cypern"
3347
 
3348
  # Czech Republic
3349
  # @ wp-slimstat
3350
+ #: ../admin/view/wp-slimstat-reports.php:1798
3351
  msgid "c-cz"
3352
  msgstr "Tjeckien"
3353
 
3354
  # Denmark
3355
  # @ wp-slimstat
3356
+ #: ../admin/view/wp-slimstat-reports.php:1798
3357
  msgid "c-dk"
3358
  msgstr "Danmark"
3359
 
3360
  # Djibouti
3361
  # @ wp-slimstat
3362
+ #: ../admin/view/wp-slimstat-reports.php:1798
3363
  msgid "c-dj"
3364
  msgstr "Djibouti"
3365
 
3366
  # Dominica
3367
  # @ wp-slimstat
3368
+ #: ../admin/view/wp-slimstat-reports.php:1798
3369
  msgid "c-dm"
3370
  msgstr "Dominica"
3371
 
3372
  # Dominican Republic
3373
  # @ wp-slimstat
3374
+ #: ../admin/view/wp-slimstat-reports.php:1798
3375
  msgid "c-do"
3376
  msgstr "Dominikanska republiken"
3377
 
3378
  # Ecuador
3379
  # @ wp-slimstat
3380
+ #: ../admin/view/wp-slimstat-reports.php:1798
3381
  msgid "c-ec"
3382
  msgstr "Ecuador"
3383
 
3384
  # Egypt
3385
  # @ wp-slimstat
3386
+ #: ../admin/view/wp-slimstat-reports.php:1798
3387
  msgid "c-eg"
3388
  msgstr "Egypten"
3389
 
3390
  # El Salvador
3391
  # @ wp-slimstat
3392
+ #: ../admin/view/wp-slimstat-reports.php:1798
3393
  msgid "c-sv"
3394
  msgstr "El Salvador"
3395
 
3396
  # Equatorial Guinea
3397
  # @ wp-slimstat
3398
+ #: ../admin/view/wp-slimstat-reports.php:1798
3399
  msgid "c-gq"
3400
  msgstr "Ekvatorialguinea"
3401
 
3402
  # Eritrea
3403
  # @ wp-slimstat
3404
+ #: ../admin/view/wp-slimstat-reports.php:1798
3405
  msgid "c-er"
3406
  msgstr "Eritrea"
3407
 
3408
  # Estonia
3409
  # @ wp-slimstat
3410
+ #: ../admin/view/wp-slimstat-reports.php:1798
3411
  msgid "c-ee"
3412
  msgstr "Estland"
3413
 
3414
  # Ethiopia
3415
  # @ wp-slimstat
3416
+ #: ../admin/view/wp-slimstat-reports.php:1798
3417
  msgid "c-et"
3418
  msgstr "Ethiopien"
3419
 
3420
  # Faroe Islands
3421
  # @ wp-slimstat
3422
+ #: ../admin/view/wp-slimstat-reports.php:1798
3423
  msgid "c-fo"
3424
  msgstr "Färöarna"
3425
 
3426
  # Falkland Islands (Malvinas)
3427
  # @ wp-slimstat
3428
+ #: ../admin/view/wp-slimstat-reports.php:1798
3429
  msgid "c-fk"
3430
  msgstr "Falklandsöarna"
3431
 
3432
  # Fiji
3433
  # @ wp-slimstat
3434
+ #: ../admin/view/wp-slimstat-reports.php:1798
3435
  msgid "c-fj"
3436
  msgstr "Fijiöarna"
3437
 
3438
  # Finland
3439
  # @ wp-slimstat
3440
+ #: ../admin/view/wp-slimstat-reports.php:1798
3441
  msgid "c-fi"
3442
  msgstr "Finland"
3443
 
3444
  # France
3445
  # @ wp-slimstat
3446
+ #: ../admin/view/wp-slimstat-reports.php:1798
3447
  msgid "c-fr"
3448
  msgstr "Frankrike"
3449
 
3450
  # French Guiana
3451
  # @ wp-slimstat
3452
+ #: ../admin/view/wp-slimstat-reports.php:1798
3453
  msgid "c-gf"
3454
  msgstr "Franska Guinea"
3455
 
3456
  # Gabon
3457
  # @ wp-slimstat
3458
+ #: ../admin/view/wp-slimstat-reports.php:1798
3459
  msgid "c-ga"
3460
  msgstr "Gabon, Republiken"
3461
 
3462
  # Gambia
3463
  # @ wp-slimstat
3464
+ #: ../admin/view/wp-slimstat-reports.php:1798
3465
  msgid "c-gm"
3466
  msgstr "Gambia"
3467
 
3468
  # Georgia
3469
  # @ wp-slimstat
3470
+ #: ../admin/view/wp-slimstat-reports.php:1798
3471
  msgid "c-ge"
3472
  msgstr "Georgien"
3473
 
3474
  # Germany
3475
  # @ wp-slimstat
3476
+ #: ../admin/view/wp-slimstat-reports.php:1798
3477
  msgid "c-de"
3478
  msgstr "Tyskland"
3479
 
3480
  # Ghana
3481
  # @ wp-slimstat
3482
+ #: ../admin/view/wp-slimstat-reports.php:1798
3483
  msgid "c-gh"
3484
  msgstr "Ghana"
3485
 
3486
  # Greece
3487
  # @ wp-slimstat
3488
+ #: ../admin/view/wp-slimstat-reports.php:1798
3489
  msgid "c-gr"
3490
  msgstr "Grekland"
3491
 
3492
  # Greenland
3493
  # @ wp-slimstat
3494
+ #: ../admin/view/wp-slimstat-reports.php:1798
3495
  msgid "c-gl"
3496
  msgstr "Grönland"
3497
 
3498
  # Grenada
3499
  # @ wp-slimstat
3500
+ #: ../admin/view/wp-slimstat-reports.php:1798
3501
  msgid "c-gd"
3502
  msgstr "Grenada"
3503
 
3504
  # Guadeloupe
3505
  # @ wp-slimstat
3506
+ #: ../admin/view/wp-slimstat-reports.php:1798
3507
  msgid "c-gp"
3508
  msgstr "Guadeloupe"
3509
 
3510
  # Guatemala
3511
  # @ wp-slimstat
3512
+ #: ../admin/view/wp-slimstat-reports.php:1798
3513
  msgid "c-gt"
3514
  msgstr "Guatemala"
3515
 
3516
  # Guinea
3517
  # @ wp-slimstat
3518
+ #: ../admin/view/wp-slimstat-reports.php:1798
3519
  msgid "c-gn"
3520
  msgstr "Guinea"
3521
 
3522
  # Guinea-Bissau
3523
  # @ wp-slimstat
3524
+ #: ../admin/view/wp-slimstat-reports.php:1798
3525
  msgid "c-gw"
3526
  msgstr "Guinea-Bissau"
3527
 
3528
  # Guyana
3529
  # @ wp-slimstat
3530
+ #: ../admin/view/wp-slimstat-reports.php:1798
3531
  msgid "c-gy"
3532
  msgstr "Guyana"
3533
 
3534
  # Haiti
3535
  # @ wp-slimstat
3536
+ #: ../admin/view/wp-slimstat-reports.php:1798
3537
  msgid "c-ht"
3538
  msgstr "Haiti"
3539
 
3540
  # Honduras
3541
  # @ wp-slimstat
3542
+ #: ../admin/view/wp-slimstat-reports.php:1798
3543
  msgid "c-hn"
3544
  msgstr "Honduras"
3545
 
3546
  # Hong Kong
3547
  # @ wp-slimstat
3548
+ #: ../admin/view/wp-slimstat-reports.php:1798
3549
  msgid "c-hk"
3550
  msgstr "Hongkong"
3551
 
3552
  # Hungary
3553
  # @ wp-slimstat
3554
+ #: ../admin/view/wp-slimstat-reports.php:1798
3555
  msgid "c-hu"
3556
  msgstr "Ungern"
3557
 
3558
  # Iceland
3559
  # @ wp-slimstat
3560
+ #: ../admin/view/wp-slimstat-reports.php:1798
3561
  msgid "c-is"
3562
  msgstr "Island"
3563
 
3564
  # India
3565
  # @ wp-slimstat
3566
+ #: ../admin/view/wp-slimstat-reports.php:1798
3567
  msgid "c-in"
3568
  msgstr "Indien"
3569
 
3570
  # Indonesia
3571
  # @ wp-slimstat
3572
+ #: ../admin/view/wp-slimstat-reports.php:1798
3573
  msgid "c-id"
3574
  msgstr "Indonesien"
3575
 
3576
  # Islamic Republic of Iran
3577
  # @ wp-slimstat
3578
+ #: ../admin/view/wp-slimstat-reports.php:1798
3579
  msgid "c-ir"
3580
  msgstr "Iran, Islamiska republiken"
3581
 
3582
  # Iraq
3583
  # @ wp-slimstat
3584
+ #: ../admin/view/wp-slimstat-reports.php:1798
3585
  msgid "c-iq"
3586
  msgstr "Irak"
3587
 
3588
  # Ireland
3589
  # @ wp-slimstat
3590
+ #: ../admin/view/wp-slimstat-reports.php:1798
3591
  msgid "c-ie"
3592
  msgstr "Ireland"
3593
 
3594
  # Israel
3595
  # @ wp-slimstat
3596
+ #: ../admin/view/wp-slimstat-reports.php:1798
3597
  msgid "c-il"
3598
  msgstr "Israel"
3599
 
3600
  # Italy
3601
  # @ wp-slimstat
3602
+ #: ../admin/view/wp-slimstat-reports.php:1798
3603
  msgid "c-it"
3604
  msgstr "Italien"
3605
 
3606
  # Jamaica
3607
  # @ wp-slimstat
3608
+ #: ../admin/view/wp-slimstat-reports.php:1798
3609
  msgid "c-jm"
3610
  msgstr "Jamaica"
3611
 
3612
  # Japan
3613
  # @ wp-slimstat
3614
+ #: ../admin/view/wp-slimstat-reports.php:1798
3615
  msgid "c-jp"
3616
  msgstr "Japan"
3617
 
3618
  # Jordan
3619
  # @ wp-slimstat
3620
+ #: ../admin/view/wp-slimstat-reports.php:1798
3621
  msgid "c-jo"
3622
  msgstr "Jordanien"
3623
 
3624
  # Kazakhstan
3625
  # @ wp-slimstat
3626
+ #: ../admin/view/wp-slimstat-reports.php:1798
3627
  msgid "c-kz"
3628
  msgstr "Kazakstan"
3629
 
3630
  # Kenya
3631
  # @ wp-slimstat
3632
+ #: ../admin/view/wp-slimstat-reports.php:1798
3633
  msgid "c-ke"
3634
  msgstr "Kenya"
3635
 
3636
  # Nauru
3637
  # @ wp-slimstat
3638
+ #: ../admin/view/wp-slimstat-reports.php:1798
3639
  msgid "c-nr"
3640
  msgstr "Nauru"
3641
 
3642
  # Democratic People's Republic of Korea
3643
  # @ wp-slimstat
3644
+ #: ../admin/view/wp-slimstat-reports.php:1798
3645
  msgid "c-kp"
3646
  msgstr "Korea, Demokratiska folkrepubliken"
3647
 
3648
  # Republic of Korea
3649
  # @ wp-slimstat
3650
+ #: ../admin/view/wp-slimstat-reports.php:1798
3651
  msgid "c-kr"
3652
  msgstr "Korea, Republiken"
3653
 
3654
  # @ wp-slimstat
3655
+ #: ../admin/view/wp-slimstat-reports.php:1798
3656
  msgid "c-kv"
3657
  msgstr "Kosovo"
3658
 
3659
  # Kuwait
3660
  # @ wp-slimstat
3661
+ #: ../admin/view/wp-slimstat-reports.php:1798
3662
  msgid "c-kw"
3663
  msgstr "Kuwait"
3664
 
3665
  # Kyrgyzstan
3666
  # @ wp-slimstat
3667
+ #: ../admin/view/wp-slimstat-reports.php:1798
3668
  msgid "c-kg"
3669
  msgstr "Kirgizistan, Republiken"
3670
 
3671
  # Lao People's Democratic Republic
3672
  # @ wp-slimstat
3673
+ #: ../admin/view/wp-slimstat-reports.php:1798
3674
  msgid "c-la"
3675
  msgstr "Laos, Demokratiska folkrepubliken"
3676
 
3677
  # Latvia
3678
  # @ wp-slimstat
3679
+ #: ../admin/view/wp-slimstat-reports.php:1798
3680
  msgid "c-lv"
3681
  msgstr "Lettland"
3682
 
3683
  # Lebanon
3684
  # @ wp-slimstat
3685
+ #: ../admin/view/wp-slimstat-reports.php:1798
3686
  msgid "c-lb"
3687
  msgstr "Libanon"
3688
 
3689
  # Lesotho
3690
  # @ wp-slimstat
3691
+ #: ../admin/view/wp-slimstat-reports.php:1798
3692
  msgid "c-ls"
3693
  msgstr "Lesotho"
3694
 
3695
  # Liberia
3696
  # @ wp-slimstat
3697
+ #: ../admin/view/wp-slimstat-reports.php:1798
3698
  msgid "c-lr"
3699
  msgstr "Liberia"
3700
 
3701
  # Libyan Arab Jamahiriya
3702
  # @ wp-slimstat
3703
+ #: ../admin/view/wp-slimstat-reports.php:1798
3704
  msgid "c-ly"
3705
  msgstr "Socialistiska folkliga libyska arabiska Jamahiriya"
3706
 
3707
  # Liechtenstein
3708
  # @ wp-slimstat
3709
+ #: ../admin/view/wp-slimstat-reports.php:1798
3710
  msgid "c-li"
3711
  msgstr "Liechtenstein"
3712
 
3713
  # Lithuania
3714
  # @ wp-slimstat
3715
+ #: ../admin/view/wp-slimstat-reports.php:1798
3716
  msgid "c-lt"
3717
  msgstr "Litauen"
3718
 
3719
  # Luxembourg
3720
  # @ wp-slimstat
3721
+ #: ../admin/view/wp-slimstat-reports.php:1798
3722
  msgid "c-lu"
3723
  msgstr "Luxembourg"
3724
 
3725
  # The Former Yugoslav Republic of Macedonia
3726
  # @ wp-slimstat
3727
+ #: ../admin/view/wp-slimstat-reports.php:1798
3728
  msgid "c-mk"
3729
  msgstr "Makedonien"
3730
 
3731
  # Madagascar
3732
  # @ wp-slimstat
3733
+ #: ../admin/view/wp-slimstat-reports.php:1798
3734
  msgid "c-mg"
3735
  msgstr "Madagaskar"
3736
 
3737
  # Malawi
3738
  # @ wp-slimstat
3739
+ #: ../admin/view/wp-slimstat-reports.php:1798
3740
  msgid "c-mw"
3741
  msgstr "Malawi"
3742
 
3743
  # Malaysia
3744
  # @ wp-slimstat
3745
+ #: ../admin/view/wp-slimstat-reports.php:1798
3746
  msgid "c-my"
3747
  msgstr "Malaysia"
3748
 
3749
  # Mali
3750
  # @ wp-slimstat
3751
+ #: ../admin/view/wp-slimstat-reports.php:1798
3752
  msgid "c-ml"
3753
  msgstr "Mali"
3754
 
3755
  # Malta
3756
  # @ wp-slimstat
3757
+ #: ../admin/view/wp-slimstat-reports.php:1798
3758
  msgid "c-mt"
3759
  msgstr "Malta"
3760
 
3761
  # Martinique
3762
  # @ wp-slimstat
3763
+ #: ../admin/view/wp-slimstat-reports.php:1798
3764
  msgid "c-mq"
3765
  msgstr "Martinique"
3766
 
3767
  # Mauritania
3768
  # @ wp-slimstat
3769
+ #: ../admin/view/wp-slimstat-reports.php:1798
3770
  msgid "c-mr"
3771
  msgstr "Mauritanien"
3772
 
3773
  # Mauritius
3774
  # @ wp-slimstat
3775
+ #: ../admin/view/wp-slimstat-reports.php:1798
3776
  msgid "c-mu"
3777
  msgstr "Mauritius"
3778
 
3779
  # Mexico
3780
  # @ wp-slimstat
3781
+ #: ../admin/view/wp-slimstat-reports.php:1798
3782
  msgid "c-mx"
3783
  msgstr "Mexikos förenta stater"
3784
 
3785
  # Moldova
3786
  # @ wp-slimstat
3787
+ #: ../admin/view/wp-slimstat-reports.php:1798
3788
  msgid "c-md"
3789
  msgstr "Moldovien"
3790
 
3791
  # Mongolia
3792
  # @ wp-slimstat
3793
+ #: ../admin/view/wp-slimstat-reports.php:1798
3794
  msgid "c-mn"
3795
  msgstr "Mongoliet"
3796
 
3797
  # Montenegro
3798
  # @ wp-slimstat
3799
+ #: ../admin/view/wp-slimstat-reports.php:1798
3800
  msgid "c-me"
3801
  msgstr "Montenegro, Republiken"
3802
 
3803
  # Montserrat
3804
  # @ wp-slimstat
3805
+ #: ../admin/view/wp-slimstat-reports.php:1798
3806
  msgid "c-ms"
3807
  msgstr "Montserrat"
3808
 
3809
  # Morocco
3810
  # @ wp-slimstat
3811
+ #: ../admin/view/wp-slimstat-reports.php:1798
3812
  msgid "c-ma"
3813
  msgstr "Marocko"
3814
 
3815
  # Mozambique
3816
  # @ wp-slimstat
3817
+ #: ../admin/view/wp-slimstat-reports.php:1798
3818
  msgid "c-mz"
3819
  msgstr "Moçambique"
3820
 
3821
  # Myanmar
3822
  # @ wp-slimstat
3823
+ #: ../admin/view/wp-slimstat-reports.php:1798
3824
  msgid "c-mm"
3825
  msgstr "Myanmar"
3826
 
3827
  # Namibia
3828
  # @ wp-slimstat
3829
+ #: ../admin/view/wp-slimstat-reports.php:1798
3830
  msgid "c-na"
3831
  msgstr "Namibia"
3832
 
3833
  # Nepal
3834
  # @ wp-slimstat
3835
+ #: ../admin/view/wp-slimstat-reports.php:1798
3836
  msgid "c-np"
3837
  msgstr "Nepal"
3838
 
3839
  # Netherlands
3840
  # @ wp-slimstat
3841
+ #: ../admin/view/wp-slimstat-reports.php:1798
3842
  msgid "c-nl"
3843
  msgstr "Nederländerna"
3844
 
3845
  # New Caledonia
3846
  # @ wp-slimstat
3847
+ #: ../admin/view/wp-slimstat-reports.php:1798
3848
  msgid "c-nc"
3849
  msgstr "Nya Kaledonien"
3850
 
3851
  # New Zealand
3852
  # @ wp-slimstat
3853
+ #: ../admin/view/wp-slimstat-reports.php:1798
3854
  msgid "c-nz"
3855
  msgstr "Nya Zeeland"
3856
 
3857
  # Nicaragua
3858
  # @ wp-slimstat
3859
+ #: ../admin/view/wp-slimstat-reports.php:1798
3860
  msgid "c-ni"
3861
  msgstr "Nicaragua"
3862
 
3863
  # Niger
3864
  # @ wp-slimstat
3865
+ #: ../admin/view/wp-slimstat-reports.php:1798
3866
  msgid "c-ne"
3867
  msgstr "Niger"
3868
 
3869
  # Nigeria
3870
  # @ wp-slimstat
3871
+ #: ../admin/view/wp-slimstat-reports.php:1798
3872
  msgid "c-ng"
3873
  msgstr "Nigeria"
3874
 
3875
  # Norway
3876
  # @ wp-slimstat
3877
+ #: ../admin/view/wp-slimstat-reports.php:1798
3878
  msgid "c-no"
3879
  msgstr "Norge"
3880
 
3881
  # Oman
3882
  # @ wp-slimstat
3883
+ #: ../admin/view/wp-slimstat-reports.php:1798
3884
  msgid "c-om"
3885
  msgstr "Oman"
3886
 
3887
  # Pakistan
3888
  # @ wp-slimstat
3889
+ #: ../admin/view/wp-slimstat-reports.php:1798
3890
  msgid "c-pk"
3891
  msgstr "Pakistan"
3892
 
3893
  # Palau
3894
  # @ wp-slimstat
3895
+ #: ../admin/view/wp-slimstat-reports.php:1798
3896
  msgid "c-pw"
3897
  msgstr "Palau"
3898
 
3899
  # Occupied Palestinian Territory
3900
  # @ wp-slimstat
3901
+ #: ../admin/view/wp-slimstat-reports.php:1798
3902
  msgid "c-ps"
3903
  msgstr "Palestina"
3904
 
3905
  # Panama
3906
  # @ wp-slimstat
3907
+ #: ../admin/view/wp-slimstat-reports.php:1798
3908
  msgid "c-pa"
3909
  msgstr "Panama"
3910
 
3911
  # Papua New Guinea
3912
  # @ wp-slimstat
3913
+ #: ../admin/view/wp-slimstat-reports.php:1798
3914
  msgid "c-pg"
3915
  msgstr "Papua Nya Guinea"
3916
 
3917
  # Paraguay
3918
  # @ wp-slimstat
3919
+ #: ../admin/view/wp-slimstat-reports.php:1798
3920
  msgid "c-py"
3921
  msgstr "Paraguay"
3922
 
3923
  # Peru
3924
  # @ wp-slimstat
3925
+ #: ../admin/view/wp-slimstat-reports.php:1798
3926
  msgid "c-pe"
3927
  msgstr "Peru"
3928
 
3929
  # Philippines
3930
  # @ wp-slimstat
3931
+ #: ../admin/view/wp-slimstat-reports.php:1798
3932
  msgid "c-ph"
3933
  msgstr "Filippinerna"
3934
 
3935
  # Poland
3936
  # @ wp-slimstat
3937
+ #: ../admin/view/wp-slimstat-reports.php:1798
3938
  msgid "c-pl"
3939
  msgstr "Poland"
3940
 
3941
  # Portugal
3942
  # @ wp-slimstat
3943
+ #: ../admin/view/wp-slimstat-reports.php:1798
3944
  msgid "c-pt"
3945
  msgstr "Portugal"
3946
 
3947
  # Puerto Rico
3948
  # @ wp-slimstat
3949
+ #: ../admin/view/wp-slimstat-reports.php:1798
3950
  msgid "c-pr"
3951
  msgstr "Puerto Rico"
3952
 
3953
  # Qatar
3954
  # @ wp-slimstat
3955
+ #: ../admin/view/wp-slimstat-reports.php:1798
3956
  msgid "c-qa"
3957
  msgstr "Qatar"
3958
 
3959
  # Réunion
3960
  # @ wp-slimstat
3961
+ #: ../admin/view/wp-slimstat-reports.php:1798
3962
  msgid "c-re"
3963
  msgstr "Réunion"
3964
 
3965
  # Romania
3966
  # @ wp-slimstat
3967
+ #: ../admin/view/wp-slimstat-reports.php:1798
3968
  msgid "c-ro"
3969
  msgstr "Romanien"
3970
 
3971
  # Russian Federation
3972
  # @ wp-slimstat
3973
+ #: ../admin/view/wp-slimstat-reports.php:1798
3974
  msgid "c-ru"
3975
  msgstr "Ryska federationen"
3976
 
3977
  # Rwanda
3978
  # @ wp-slimstat
3979
+ #: ../admin/view/wp-slimstat-reports.php:1798
3980
  msgid "c-rw"
3981
  msgstr "Rwanda"
3982
 
3983
  # Saint Kitts and Nevis
3984
  # @ wp-slimstat
3985
+ #: ../admin/view/wp-slimstat-reports.php:1798
3986
  msgid "c-kn"
3987
  msgstr "Saint Kitts and Nevis"
3988
 
3989
  # Saint Lucia
3990
  # @ wp-slimstat
3991
+ #: ../admin/view/wp-slimstat-reports.php:1798
3992
  msgid "c-lc"
3993
  msgstr "Saint Lucia"
3994
 
3995
  # Saint Martin
3996
  # @ wp-slimstat
3997
+ #: ../admin/view/wp-slimstat-reports.php:1798
3998
  msgid "c-mf"
3999
  msgstr "Sint Maarten"
4000
 
4001
  # Saint Vincent and the Grenadines
4002
  # @ wp-slimstat
4003
+ #: ../admin/view/wp-slimstat-reports.php:1798
4004
  msgid "c-vc"
4005
  msgstr "Saint Vincent och Grenadinerna"
4006
 
4007
  # Samoa
4008
  # @ wp-slimstat
4009
+ #: ../admin/view/wp-slimstat-reports.php:1798
4010
  msgid "c-ws"
4011
  msgstr "Samoa"
4012
 
4013
  # Sao Tome and Principe
4014
  # @ wp-slimstat
4015
+ #: ../admin/view/wp-slimstat-reports.php:1798
4016
  msgid "c-st"
4017
  msgstr "São Tomé och Príncipe"
4018
 
4019
  # Saudi Arabia
4020
  # @ wp-slimstat
4021
+ #: ../admin/view/wp-slimstat-reports.php:1798
4022
  msgid "c-sa"
4023
  msgstr "Saudi Arabien"
4024
 
4025
  # Senegal
4026
  # @ wp-slimstat
4027
+ #: ../admin/view/wp-slimstat-reports.php:1798
4028
  msgid "c-sn"
4029
  msgstr "Senegal"
4030
 
4031
  # Serbia
4032
  # @ wp-slimstat
4033
+ #: ../admin/view/wp-slimstat-reports.php:1798
4034
  msgid "c-rs"
4035
  msgstr "Serbien"
4036
 
4037
  # Sierra Leone
4038
  # @ wp-slimstat
4039
+ #: ../admin/view/wp-slimstat-reports.php:1798
4040
  msgid "c-sl"
4041
  msgstr "Sierra Leone"
4042
 
4043
  # Singapore
4044
  # @ wp-slimstat
4045
+ #: ../admin/view/wp-slimstat-reports.php:1798
4046
  msgid "c-sg"
4047
  msgstr "Singapore"
4048
 
4049
  # Slovakia
4050
  # @ wp-slimstat
4051
+ #: ../admin/view/wp-slimstat-reports.php:1798
4052
  msgid "c-sk"
4053
  msgstr "Slovakien"
4054
 
4055
  # Slovenia
4056
  # @ wp-slimstat
4057
+ #: ../admin/view/wp-slimstat-reports.php:1798
4058
  msgid "c-si"
4059
  msgstr "Slovenien"
4060
 
4061
  # Solomon Islands
4062
  # @ wp-slimstat
4063
+ #: ../admin/view/wp-slimstat-reports.php:1798
4064
  msgid "c-sb"
4065
  msgstr "Solomonöarna"
4066
 
4067
  # Somalia
4068
  # @ wp-slimstat
4069
+ #: ../admin/view/wp-slimstat-reports.php:1798
4070
  msgid "c-so"
4071
  msgstr "Somalia"
4072
 
4073
  # South Africa
4074
  # @ wp-slimstat
4075
+ #: ../admin/view/wp-slimstat-reports.php:1798
4076
  msgid "c-za"
4077
  msgstr "Sydafrika"
4078
 
4079
  # South Georgia and the South Sandwich Islands
4080
  # @ wp-slimstat
4081
+ #: ../admin/view/wp-slimstat-reports.php:1798
4082
  msgid "c-gs"
4083
  msgstr "Sydgeorgien och Sydsandwichöarna"
4084
 
4085
  # Spain
4086
  # @ wp-slimstat
4087
+ #: ../admin/view/wp-slimstat-reports.php:1798
4088
  msgid "c-es"
4089
  msgstr "Spanien"
4090
 
4091
  # Sri Lanka
4092
  # @ wp-slimstat
4093
+ #: ../admin/view/wp-slimstat-reports.php:1798
4094
  msgid "c-lk"
4095
  msgstr "Sri Lanka"
4096
 
4097
  # @ wp-slimstat
4098
+ #: ../admin/view/wp-slimstat-reports.php:1798
4099
  msgid "c-sc"
4100
  msgstr "Seychelles"
4101
 
4102
  # Sudan
4103
  # @ wp-slimstat
4104
+ #: ../admin/view/wp-slimstat-reports.php:1798
4105
  msgid "c-sd"
4106
  msgstr "Sudan"
4107
 
4108
  # @ wp-slimstat
4109
+ #: ../admin/view/wp-slimstat-reports.php:1798
4110
  msgid "c-ss"
4111
  msgstr "Södra Sudan"
4112
 
4113
  # Suriname
4114
  # @ wp-slimstat
4115
+ #: ../admin/view/wp-slimstat-reports.php:1798
4116
  msgid "c-sr"
4117
  msgstr "Suriname"
4118
 
4119
  # Svalbard and Jan Mayen
4120
  # @ wp-slimstat
4121
+ #: ../admin/view/wp-slimstat-reports.php:1798
4122
  msgid "c-sj"
4123
  msgstr "Svalbard och Jan Mayen"
4124
 
4125
  # Swaziland
4126
  # @ wp-slimstat
4127
+ #: ../admin/view/wp-slimstat-reports.php:1798
4128
  msgid "c-sz"
4129
  msgstr "Swaziland"
4130
 
4131
  # Sweden
4132
  # @ wp-slimstat
4133
+ #: ../admin/view/wp-slimstat-reports.php:1798
4134
  msgid "c-se"
4135
  msgstr "Sverige"
4136
 
4137
  # Switzerland
4138
  # @ wp-slimstat
4139
+ #: ../admin/view/wp-slimstat-reports.php:1798
4140
  msgid "c-ch"
4141
  msgstr "Schweiz"
4142
 
4143
  # Syrian Arab Republic
4144
  # @ wp-slimstat
4145
+ #: ../admin/view/wp-slimstat-reports.php:1798
4146
  msgid "c-sy"
4147
  msgstr "Syrien"
4148
 
4149
  # Taiwan, Province of China
4150
  # @ wp-slimstat
4151
+ #: ../admin/view/wp-slimstat-reports.php:1798
4152
  msgid "c-tw"
4153
  msgstr "Taiwan"
4154
 
4155
  # Tajikistan
4156
  # @ wp-slimstat
4157
+ #: ../admin/view/wp-slimstat-reports.php:1798
4158
  msgid "c-tj"
4159
  msgstr "Tadzjikistan"
4160
 
4161
  # United Republic of Tanzania
4162
  # @ wp-slimstat
4163
+ #: ../admin/view/wp-slimstat-reports.php:1798
4164
  msgid "c-tz"
4165
  msgstr "Tanzania, Förenade republiken"
4166
 
4167
  # Thailand
4168
  # @ wp-slimstat
4169
+ #: ../admin/view/wp-slimstat-reports.php:1798
4170
  msgid "c-th"
4171
  msgstr "Thailand"
4172
 
4173
  # Timor-Leste
4174
  # @ wp-slimstat
4175
+ #: ../admin/view/wp-slimstat-reports.php:1798
4176
  msgid "c-tl"
4177
  msgstr "Timor-Leste (Östtimor)"
4178
 
4179
  # Togo
4180
  # @ wp-slimstat
4181
+ #: ../admin/view/wp-slimstat-reports.php:1798
4182
  msgid "c-tg"
4183
  msgstr "Togo"
4184
 
4185
  # Tonga
4186
  # @ wp-slimstat
4187
+ #: ../admin/view/wp-slimstat-reports.php:1798
4188
  msgid "c-to"
4189
  msgstr "Tonga"
4190
 
4191
  # Trinidad and Tobago
4192
  # @ wp-slimstat
4193
+ #: ../admin/view/wp-slimstat-reports.php:1798
4194
  msgid "c-tt"
4195
  msgstr "Trinidad och Tobago"
4196
 
4197
  # Tunisia
4198
  # @ wp-slimstat
4199
+ #: ../admin/view/wp-slimstat-reports.php:1798
4200
  msgid "c-tn"
4201
  msgstr "Tunisien"
4202
 
4203
  # Turkey
4204
  # @ wp-slimstat
4205
+ #: ../admin/view/wp-slimstat-reports.php:1798
4206
  msgid "c-tr"
4207
  msgstr "Turkiet"
4208
 
4209
  # Turkmenistan
4210
  # @ wp-slimstat
4211
+ #: ../admin/view/wp-slimstat-reports.php:1798
4212
  msgid "c-tm"
4213
  msgstr "Turkmenistan"
4214
 
4215
  # Turks and Caicos Islands
4216
  # @ wp-slimstat
4217
+ #: ../admin/view/wp-slimstat-reports.php:1798
4218
  msgid "c-tc"
4219
  msgstr "Turks- och Caicosöarna"
4220
 
4221
  # Uganda
4222
  # @ wp-slimstat
4223
+ #: ../admin/view/wp-slimstat-reports.php:1798
4224
  msgid "c-ug"
4225
  msgstr "Uganda"
4226
 
4227
  # Ukraine
4228
  # @ wp-slimstat
4229
+ #: ../admin/view/wp-slimstat-reports.php:1798
4230
  msgid "c-ua"
4231
  msgstr "Ukraina"
4232
 
4233
  # United Arab Emirates
4234
  # @ wp-slimstat
4235
+ #: ../admin/view/wp-slimstat-reports.php:1798
4236
  msgid "c-ae"
4237
  msgstr "Förenade Arabemiraten"
4238
 
4239
  # United Kingdom
4240
  # @ wp-slimstat
4241
+ #: ../admin/view/wp-slimstat-reports.php:1798
4242
  msgid "c-gb"
4243
  msgstr "Storbritanien"
4244
 
4245
  # United States
4246
  # @ wp-slimstat
4247
+ #: ../admin/view/wp-slimstat-reports.php:1798
4248
  msgid "c-us"
4249
  msgstr "Amerikas förenta stater"
4250
 
4251
  # Uruguay
4252
  # @ wp-slimstat
4253
+ #: ../admin/view/wp-slimstat-reports.php:1798
4254
  msgid "c-uy"
4255
  msgstr "Uruguay"
4256
 
4257
  # Uzbekistan
4258
  # @ wp-slimstat
4259
+ #: ../admin/view/wp-slimstat-reports.php:1798
4260
  msgid "c-uz"
4261
  msgstr "Uzbekistan"
4262
 
4263
  # Vanuatu
4264
  # @ wp-slimstat
4265
+ #: ../admin/view/wp-slimstat-reports.php:1798
4266
  msgid "c-vu"
4267
  msgstr "Vanuatu"
4268
 
4269
  # Venezuela
4270
  # @ wp-slimstat
4271
+ #: ../admin/view/wp-slimstat-reports.php:1798
4272
  msgid "c-ve"
4273
  msgstr "Venezuela"
4274
 
4275
  # Viet Nam
4276
  # @ wp-slimstat
4277
+ #: ../admin/view/wp-slimstat-reports.php:1798
4278
  msgid "c-vn"
4279
  msgstr "Vietnam"
4280
 
4281
  # British Virgin Islands
4282
  # @ wp-slimstat
4283
+ #: ../admin/view/wp-slimstat-reports.php:1798
4284
  msgid "c-vg"
4285
  msgstr "Jungfruöarna, Brittiska "
4286
 
4287
  # U.S. Virgin Islands
4288
  # @ wp-slimstat
4289
+ #: ../admin/view/wp-slimstat-reports.php:1798
4290
  msgid "c-vi"
4291
  msgstr "Jungfruöarna, Amerikanska"
4292
 
4293
  # Western Sahara
4294
  # @ wp-slimstat
4295
+ #: ../admin/view/wp-slimstat-reports.php:1798
4296
  msgid "c-eh"
4297
  msgstr "Väst Sahara"
4298
 
4299
  # Yemen
4300
  # @ wp-slimstat
4301
+ #: ../admin/view/wp-slimstat-reports.php:1798
4302
  msgid "c-ye"
4303
  msgstr "Jemen"
4304
 
4305
  # Zambia
4306
  # @ wp-slimstat
4307
+ #: ../admin/view/wp-slimstat-reports.php:1798
4308
  msgid "c-zm"
4309
  msgstr "Zambia"
4310
 
4311
  # Zimbabwe
4312
  # @ wp-slimstat
4313
+ #: ../admin/view/wp-slimstat-reports.php:1798
4314
  msgid "c-zw"
4315
  msgstr "Zimbabwe"
4316
 
4317
  # Guernsey
4318
  # @ wp-slimstat
4319
+ #: ../admin/view/wp-slimstat-reports.php:1798
4320
  msgid "c-gg"
4321
  msgstr "Guernsey"
4322
 
4323
  # Jersey
4324
  # @ wp-slimstat
4325
+ #: ../admin/view/wp-slimstat-reports.php:1798
4326
  msgid "c-je"
4327
  msgstr "Jersey, Fögderiet"
4328
 
4329
  # Isle of Man
4330
  # @ wp-slimstat
4331
+ #: ../admin/view/wp-slimstat-reports.php:1798
4332
  msgid "c-im"
4333
  msgstr "Isle of Man"
4334
 
4335
  # Maldives
4336
  # @ wp-slimstat
4337
+ #: ../admin/view/wp-slimstat-reports.php:1798
4338
  msgid "c-mv"
4339
  msgstr "Maldiverna"
4340
 
4341
  # @ wp-slimstat
4342
+ #: ../admin/view/wp-slimstat-reports.php:1799
4343
  msgid "c-eu"
4344
  msgstr "Europe (generic)"
4345
 
4346
  # @ wp-slimstat
4347
+ #: ../admin/view/wp-slimstat-reports.php:1881
4348
  msgid "src"
4349
  msgstr "scr"
4350
 
4351
  # @ wp-slimstat
4352
+ #: ../admin/view/wp-slimstat-reports.php:1884
4353
  msgid "serp"
4354
  msgstr "serp"
4355
 
4356
  # @ wp-slimstat
4357
+ #: ../admin/view/wp-slimstat-reports.php:1891
4358
  msgid "Go to the referring page"
4359
  msgstr "Gå till sidan med hänvisning"
4360
 
4361
  # @ wp-slimstat
4362
+ #: ../admin/view/wp-slimstat-reports.php:1913
4363
  msgid "Remove filter for"
4364
  msgstr "Tabort filter för"
4365
 
4366
+ #: ../admin/view/wp-slimstat-reports.php:1917
4367
  msgid "Save"
4368
  msgstr "Spara"
4369
 
4370
  # @ wp-slimstat
4371
+ #: ../admin/view/wp-slimstat-reports.php:1920
4372
  msgid "Reset All"
4373
  msgstr "Återställ Allt"
4374
 
4375
  # @ wp-slimstat
4376
+ #: ../admin/view/wp-slimstat-reports.php:1924
4377
  msgid "Current filters:"
4378
  msgstr "Nuvarande filter"
4379
 
4380
+ #: ../admin/wp-slimstat-admin.php:72 ../admin/wp-slimstat-admin.php:501
4381
+ #: ../admin/wp-slimstat-admin.php:564
4382
+ msgid "Access Log"
4383
+ msgstr "Access Logg"
4384
+
4385
+ # @ wp-slimstat
4386
+ #: ../admin/wp-slimstat-admin.php:73 ../admin/wp-slimstat-admin.php:502
4387
+ #: ../admin/wp-slimstat-admin.php:517 ../admin/wp-slimstat-admin.php:565
4388
+ msgid "Overview"
4389
+ msgstr "Överblick"
4390
+
4391
+ #: ../admin/wp-slimstat-admin.php:74 ../admin/wp-slimstat-admin.php:503
4392
+ #: ../admin/wp-slimstat-admin.php:518 ../admin/wp-slimstat-admin.php:566
4393
+ msgid "Audience"
4394
+ msgstr "Besökare"
4395
+
4396
+ #: ../admin/wp-slimstat-admin.php:75 ../admin/wp-slimstat-admin.php:504
4397
+ #: ../admin/wp-slimstat-admin.php:519 ../admin/wp-slimstat-admin.php:567
4398
+ msgid "Site Analysis"
4399
+ msgstr "Sajt Analys"
4400
+
4401
+ # @ wp-slimstat
4402
+ #: ../admin/wp-slimstat-admin.php:78
4403
+ msgid "WordPress Dashboard"
4404
+ msgstr "Wordpress Panel"
4405
+
4406
+ #: ../admin/wp-slimstat-admin.php:79
4407
+ msgid "Inactive Reports"
4408
+ msgstr "Inaktiva rapporter"
4409
+
4410
  # @ wp-slimstat
4411
+ #: ../admin/wp-slimstat-admin.php:500 ../admin/wp-slimstat-admin.php:511
4412
+ #: ../admin/wp-slimstat-admin.php:513
4413
  msgid "SlimStat"
4414
  msgstr "SlimStat"
4415
 
4416
  # @ wp-slimstat
4417
+ #: ../admin/wp-slimstat-admin.php:507 ../admin/wp-slimstat-admin.php:522
4418
+ #: ../admin/wp-slimstat-admin.php:570
4419
  msgid "Customize"
4420
  msgstr "Anpassa"
4421
 
4422
  # @ wp-slimstat
4423
+ #: ../admin/wp-slimstat-admin.php:647
4424
  msgid "Pageviews in the last "
4425
  msgstr "Sidvisningar i de senaste"
4426
 
4427
  # @ wp-slimstat
4428
+ #: ../admin/wp-slimstat-admin.php:650
4429
  msgid "Unique IPs in the last "
4430
  msgstr "Unika IP-adresser de senaste"
4431
 
4432
  # @ wp-slimstat
4433
+ #: ../admin/wp-slimstat-admin.php:704
4434
  msgid "Show on screen"
4435
  msgstr "Visa på skärm"
4436
 
4437
+ #: ../admin/wp-slimstat-admin.php:785
4438
  msgid "Already saved"
4439
  msgstr "Redan sparad"
4440
 
4441
+ #: ../admin/wp-slimstat-admin.php:793
4442
  msgid "Saved"
4443
  msgstr "Sparad"
4444
 
4445
  # @ wp-slimstat
4446
+ #: ../admin/wp-slimstat-admin.php:813
4447
  msgid "Delete this filter"
4448
  msgstr "Ta bort detta filter"
4449
 
4450
  # @ wp-slimstat
4451
+ #: ../admin/wp-slimstat-admin.php:857
4452
  msgid "There was an error updating the following options:"
4453
  msgstr "Ett fel uppstod vid uppdateringen av följande alternativ:"
4454
 
4455
  # @ wp-slimstat
4456
+ #: ../admin/wp-slimstat-admin.php:860
4457
  msgid "Your changes have been saved."
4458
  msgstr "Dina ändringar har sparats"
4459
 
4460
  # @ wp-slimstat
4461
+ #: ../admin/wp-slimstat-admin.php:883
4462
  msgid "Save Changes"
4463
  msgstr "Spara ändringar"
4464
 
4465
  # @ wp-slimstat
4466
+ #: ../admin/wp-slimstat-admin.php:899
4467
  msgid "Definitions"
4468
  msgstr "Definitioner"
4469
 
4470
  # @ wp-slimstat
4471
+ #: ../admin/wp-slimstat-admin.php:902
4472
  msgid "Pageview"
4473
  msgstr "Sidvisning"
4474
 
4475
  # @ wp-slimstat
4476
+ #: ../admin/wp-slimstat-admin.php:902
4477
  msgid ""
4478
  "A request to load a single HTML file (\"page\"). This should be contrasted "
4479
  "with a \"hit\", which refers to a request for any file from a web server. "
4484
  "webbserver. Slimstat loggar en sidvisning varje gång spårningskoden körs"
4485
 
4486
  # @ wp-slimstat
4487
+ #: ../admin/wp-slimstat-admin.php:903
4488
  msgid "(Human) Visit"
4489
  msgstr "(Mänskliga) besök"
4490
 
4491
  # @ wp-slimstat
4492
+ #: ../admin/wp-slimstat-admin.php:903
4493
  msgid ""
4494
  "A period of interaction between a visitor's browser and your website, ending "
4495
  "when the browser is closed or when the user has been inactive on that site "
4500
  "denna plats i 30 minuter"
4501
 
4502
  # @ wp-slimstat
4503
+ #: ../admin/wp-slimstat-admin.php:904
4504
  msgid ""
4505
  "Any user who has left a comment on your blog, and is thus identified by "
4506
  "Wordpress as a returning visitor"
4509
  "identifierad av Wordpress som återkommande besökare"
4510
 
4511
  # @ wp-slimstat
4512
+ #: ../admin/wp-slimstat-admin.php:905
4513
  msgid "Unique IP"
4514
  msgstr "Unik IP"
4515
 
4516
  # @ wp-slimstat
4517
+ #: ../admin/wp-slimstat-admin.php:905
4518
  msgid ""
4519
  "Used to differentiate between multiple requests to download a file from one "
4520
  "internet address (IP) and requests originating from many distinct addresses; "
4527
  "sidvisning kom från, det är bra, men inte perfekt"
4528
 
4529
  # @ wp-slimstat
4530
+ #: ../admin/wp-slimstat-admin.php:906
4531
  msgid ""
4532
  "the originating IP address of a client connecting to a web server through an "
4533
  "HTTP proxy or load balancer"
4536
  "eller balanserad laddning"
4537
 
4538
  # @ wp-slimstat
4539
+ #: ../admin/wp-slimstat-admin.php:907
4540
  msgid "Direct Traffic"
4541
  msgstr "Direkt Trafik"
4542
 
4543
  # @ wp-slimstat
4544
+ #: ../admin/wp-slimstat-admin.php:907
4545
  msgid ""
4546
  "All those people showing up to your Web site by typing in the URL of your "
4547
  "Web site coming or from a bookmark; some people also call this \"default "
4552
  "detta \"standard trafik\" eller \"omgivande trafik\" "
4553
 
4554
  # @ wp-slimstat
4555
+ #: ../admin/wp-slimstat-admin.php:908
4556
  msgid "Search Engine"
4557
  msgstr "Sökmotor"
4558
 
4559
  # @ wp-slimstat
4560
+ #: ../admin/wp-slimstat-admin.php:908
4561
  msgid ""
4562
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
4563
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
4567
  "om att"
4568
 
4569
  # @ wp-slimstat
4570
+ #: ../admin/wp-slimstat-admin.php:909 ../admin/wp-slimstat-admin.php:925
4571
  msgid "Keywords used by your visitors to find your website on a search engine"
4572
  msgstr ""
4573
  "Nyckelord som dina besökare använder för att hitta din webbplats på en "
4574
  "sökmotor"
4575
 
4576
  # @ wp-slimstat
4577
+ #: ../admin/wp-slimstat-admin.php:910
4578
  msgid "SERP"
4579
  msgstr "SERP"
4580
 
4581
  # @ wp-slimstat
4582
+ #: ../admin/wp-slimstat-admin.php:910
4583
  msgid ""
4584
  "Short for search engine results page, the Web page that a search engine "
4585
  "returns with the results of its search. The value shown represents your rank "
4590
  "position) i den förteckning av resultat"
4591
 
4592
  # @ wp-slimstat
4593
+ #: ../admin/wp-slimstat-admin.php:911
4594
  msgid ""
4595
  "Any program used for accessing a website; this includes browsers, robots, "
4596
  "spiders and any other program that was used to retrieve information from the "
4601
  "att hämta information från sajten"
4602
 
4603
  # @ wp-slimstat
4604
+ #: ../admin/wp-slimstat-admin.php:912
4605
  msgid ""
4606
  "A link from one domain to another is said to be outbound from its source "
4607
  "anchor and inbound to its target. This report lists all the links to other "
4612
  "webbplatser följt av dina besökare. "
4613
 
4614
  # @ wp-slimstat
4615
+ #: ../admin/wp-slimstat-admin.php:919
4616
  msgid "Basic Filters"
4617
  msgstr "Grundläggande filter"
4618
 
4619
  # @ wp-slimstat
4620
+ #: ../admin/wp-slimstat-admin.php:922
4621
  msgid "User agent (Firefox, Chrome, ...)"
4622
  msgstr "User agent (Firefox, Chrome, ...)"
4623
 
4624
  # @ wp-slimstat
4625
+ #: ../admin/wp-slimstat-admin.php:923
4626
  msgid "2-letter code (us, ru, de, it, ...)"
4627
  msgstr "2-bokstavskod (us, ru, de, it, ...)"
4628
 
4629
  # @ wp-slimstat
4630
+ #: ../admin/wp-slimstat-admin.php:924
4631
  msgid "IP"
4632
  msgstr "IP"
4633
 
4634
  # @ wp-slimstat
4635
+ #: ../admin/wp-slimstat-admin.php:924
4636
  msgid "Visitor's public IP address"
4637
  msgstr "Besökares publika IP adress"
4638
 
4639
  # @ wp-slimstat
4640
+ #: ../admin/wp-slimstat-admin.php:926
4641
  msgid ""
4642
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
4643
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
4648
  "kolumnen) för mer information"
4649
 
4650
  # @ wp-slimstat
4651
+ #: ../admin/wp-slimstat-admin.php:927
4652
  msgid ""
4653
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
4654
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
4659
  "för mer information"
4660
 
4661
  # @ wp-slimstat
4662
+ #: ../admin/wp-slimstat-admin.php:928
4663
  msgid "URL accessed on your site"
4664
  msgstr "URL accessed på din webbplats"
4665
 
4666
  # @ wp-slimstat
4667
+ #: ../admin/wp-slimstat-admin.php:929
4668
  msgid "Complete address of the referrer page"
4669
  msgstr "Fullständig adress till referrersida"
4670
 
4671
  # @ wp-slimstat
4672
+ #: ../admin/wp-slimstat-admin.php:930
4673
  msgid ""
4674
  "Visitors' names according to the cookie set by Wordpress after they leave a "
4675
  "comment"
4677
  "Besökarens namn enligt den cookie som Wordpress när de lämnar en kommentar"
4678
 
4679
  # @ wp-slimstat
4680
+ #: ../admin/wp-slimstat-admin.php:938
4681
  msgid "Advanced Filters"
4682
  msgstr "Avancerat filter"
4683
 
4684
  # @ wp-slimstat
4685
+ #: ../admin/wp-slimstat-admin.php:941
4686
  msgid "user agent version (9.0, 11, ...)"
4687
  msgstr "user agent version (9.0, 11, ...)"
4688
 
4689
  # @ wp-slimstat
4690
+ #: ../admin/wp-slimstat-admin.php:942
4691
  msgid ""
4692
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4693
  "all others"
4696
  "andra"
4697
 
4698
  # @ wp-slimstat
4699
+ #: ../admin/wp-slimstat-admin.php:943
4700
  msgid "Pageview Attributes"
4701
  msgstr "Sidvisnings attributer"
4702
 
4703
  # @ wp-slimstat
4704
+ #: ../admin/wp-slimstat-admin.php:943
4705
  msgid ""
4706
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4707
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4712
  "Link_prefetching_FAQ\">Link Prefetching</a> eller liknande tekniker"
4713
 
4714
  # @ wp-slimstat
4715
+ #: ../admin/wp-slimstat-admin.php:944
4716
  msgid "author associated to that post/page when the resource was accessed"
4717
  msgstr "författaren är associerad med den post/sida när resursen var accessad"
4718
 
4719
  # @ wp-slimstat
4720
+ #: ../admin/wp-slimstat-admin.php:945
4721
  msgid "ID of the category/term associated to the resource, when available"
4722
  msgstr ""
4723
  "ID-numret för den kategori/sikt kopplat till resursen, när tillgängliga"
4724
 
4725
  # @ wp-slimstat
4726
+ #: ../admin/wp-slimstat-admin.php:946
4727
  msgid "visitor's originating IP address, if available"
4728
  msgstr "besökarens IP-adress, om tillgänglig "
4729
 
4730
  # @ wp-slimstat
4731
+ #: ../admin/wp-slimstat-admin.php:947
4732
  msgid ""
4733
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4734
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4742
  "Conditional_Tags\">Villkorliga taggar manual</a> för mer information "
4743
 
4744
  # @ wp-slimstat
4745
+ #: ../admin/wp-slimstat-admin.php:948
4746
  msgid "Screen Resolution"
4747
  msgstr "Skärmupplösning"
4748
 
4749
  # @ wp-slimstat
4750
+ #: ../admin/wp-slimstat-admin.php:948
4751
  msgid "viewport width and height (1024x768, 800x600, ...)"
4752
  msgstr "Upplösning bredd och höjd (1024x768, 800x600, ...)"
4753
 
4754
  # @ wp-slimstat
4755
+ #: ../admin/wp-slimstat-admin.php:949
4756
  msgid ""
4757
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4758
  "visitors"
4761
  "mänskliga besökare"
4762
 
4763
  # @ wp-slimstat
4764
+ #: ../admin/wp-slimstat-admin.php:950
4765
  msgid "Date Filters"
4766
  msgstr "Datum Filter"
4767
 
4768
  # @ wp-slimstat
4769
+ #: ../admin/wp-slimstat-admin.php:950
4770
  msgid ""
4771
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4772
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4777
  "år=tomt intervall=-1 ställs ett år-till-datum filter)"
4778
 
4779
  # @ wp-slimstat
4780
+ #: ../admin/wp-slimstat-admin.php:951
4781
  msgid "SERP Position"
4782
  msgstr "SERP Position"
4783
 
4784
  # @ wp-slimstat
4785
+ #: ../admin/wp-slimstat-admin.php:951
4786
  msgid ""
4787
  "set the filter to Referer contains cd=N&, where N is the position you are "
4788
  "looking for"
4790
  "sätt filter till Referer innehåller cd=N&, där N är positionen du letar efter"
4791
 
4792
  # @ wp-slimstat
4793
+ #: ../admin/wp-slimstat-admin.php:978
4794
  msgid "Yes"
4795
  msgstr "Ja"
4796
 
4797
  # @ wp-slimstat
4798
+ #: ../admin/wp-slimstat-admin.php:979
4799
  msgid "No"
4800
  msgstr "Nej"
4801
 
4802
+ #: ../admin/wp-slimstat-admin.php:980
4803
  msgid "Site Specific"
4804
  msgstr "Sajt specifikt"
4805
 
4833
  msgid "blackberry os"
4834
  msgstr "BlackBerry OS"
4835
 
4836
+ # @ wp-slimstat
4837
  #: ../languages/dynamic_strings.php:11
4838
+ msgid "centos"
4839
+ msgstr "CentOS Linux"
4840
+
4841
+ #: ../languages/dynamic_strings.php:12
4842
  msgid "chromeos"
4843
  msgstr "chromeos"
4844
 
4845
+ #: ../languages/dynamic_strings.php:13
4846
+ msgid "commodore64"
4847
+ msgstr "Commodore 64"
4848
+
4849
  # @ wp-slimstat
4850
+ #: ../languages/dynamic_strings.php:14
4851
  msgid "cygwin"
4852
  msgstr "Cygwin"
4853
 
4854
  # @ wp-slimstat
4855
+ #: ../languages/dynamic_strings.php:15
4856
  msgid "debian"
4857
  msgstr "Debian"
4858
 
4859
  # @ wp-slimstat
4860
+ #: ../languages/dynamic_strings.php:16
4861
  msgid "digital unix"
4862
  msgstr "Digital Unix"
4863
 
4864
+ #: ../languages/dynamic_strings.php:17
4865
+ msgid "fedora"
4866
+ msgstr "Fedora Linux"
4867
+
4868
+ #: ../languages/dynamic_strings.php:18
4869
  msgid "firefoxos"
4870
  msgstr "firefoxos"
4871
 
4872
  # @ wp-slimstat
4873
+ #: ../languages/dynamic_strings.php:19
4874
  msgid "freebsd"
4875
  msgstr "FreeBSD"
4876
 
4877
+ #: ../languages/dynamic_strings.php:20
4878
+ msgid "gentoo"
4879
+ msgstr "Gentoo Linux"
4880
+
4881
  # @ wp-slimstat
4882
+ #: ../languages/dynamic_strings.php:21
4883
  msgid "hp-ux"
4884
  msgstr "HP-UX"
4885
 
4886
  # @ wp-slimstat
4887
+ #: ../languages/dynamic_strings.php:22
4888
  msgid "ios"
4889
  msgstr "Apple iOS"
4890
 
4891
  # @ wp-slimstat
4892
+ #: ../languages/dynamic_strings.php:23
4893
+ msgid "iphone os"
4894
+ msgstr "iPhone OS X"
4895
+
4896
+ # @ wp-slimstat
4897
+ #: ../languages/dynamic_strings.php:24
4898
  msgid "iphone osx"
4899
  msgstr "iPhone OS X"
4900
 
4901
  # @ wp-slimstat
4902
+ #: ../languages/dynamic_strings.php:25
4903
  msgid "irix"
4904
  msgstr "IRIX"
4905
 
4906
  # @ wp-slimstat
4907
+ #: ../languages/dynamic_strings.php:26
4908
  msgid "java"
4909
  msgstr "Java"
4910
 
4911
+ #: ../languages/dynamic_strings.php:27
4912
+ msgid "kanotix"
4913
+ msgstr "Kanotix Linux"
4914
+
4915
+ #: ../languages/dynamic_strings.php:28
4916
+ msgid "knoppix"
4917
+ msgstr "Knoppix Linux"
4918
+
4919
  # @ wp-slimstat
4920
+ #: ../languages/dynamic_strings.php:29
4921
  msgid "linux"
4922
  msgstr "Linux"
4923
 
4924
  # @ wp-slimstat
4925
+ #: ../languages/dynamic_strings.php:30
4926
  msgid "mac"
4927
  msgstr "Mac"
4928
 
4929
  # @ wp-slimstat
4930
+ #: ../languages/dynamic_strings.php:31
4931
  msgid "mac68k"
4932
  msgstr "Mac 68k"
4933
 
4934
  # @ wp-slimstat
4935
+ #: ../languages/dynamic_strings.php:32
4936
  msgid "macosx"
4937
  msgstr "Mac OS X"
4938
 
4939
  # @ wp-slimstat
4940
+ #: ../languages/dynamic_strings.php:33
4941
  msgid "macppc"
4942
  msgstr "Mac PowerPC"
4943
 
4944
+ #: ../languages/dynamic_strings.php:34
4945
+ msgid "mandrake"
4946
+ msgstr "Mandrake Linux"
4947
+
4948
  # @ wp-slimstat
4949
+ #: ../languages/dynamic_strings.php:35
4950
+ msgid "mandriva"
4951
+ msgstr "Mandriva Linux"
4952
+
4953
+ #: ../languages/dynamic_strings.php:36
4954
+ msgid "mepis"
4955
+ msgstr "MePIS"
4956
+
4957
+ # Spanish (Dominican Republic)
4958
+ # @ wp-slimstat
4959
+ #: ../languages/dynamic_strings.php:37
4960
+ msgid "ms-dos"
4961
+ msgstr "MS-DOS"
4962
+
4963
+ # @ wp-slimstat
4964
+ #: ../languages/dynamic_strings.php:38
4965
  msgid "netbsd"
4966
  msgstr "NetBSD"
4967
 
4968
+ #: ../languages/dynamic_strings.php:39
4969
+ msgid "nintendo"
4970
+ msgstr "Nintendo"
4971
+
4972
  # @ wp-slimstat
4973
+ #: ../languages/dynamic_strings.php:40
4974
  msgid "openbsd"
4975
  msgstr "OpenBSD"
4976
 
4977
  # @ wp-slimstat
4978
+ #: ../languages/dynamic_strings.php:41
4979
  msgid "openvms"
4980
  msgstr "OpenVMS"
4981
 
4982
  # @ wp-slimstat
4983
+ #: ../languages/dynamic_strings.php:42
4984
  msgid "os/2"
4985
  msgstr "IBM OS/2"
4986
 
4987
  # @ wp-slimstat
4988
+ #: ../languages/dynamic_strings.php:43
4989
  msgid "palm"
4990
  msgstr "Palm"
4991
 
4992
  # @ wp-slimstat
4993
+ #: ../languages/dynamic_strings.php:44
4994
+ msgid "palmos"
4995
+ msgstr "PalmOS"
4996
+
4997
+ # @ wp-slimstat
4998
+ #: ../languages/dynamic_strings.php:45
4999
+ msgid "pclinuxos"
5000
+ msgstr "PCLinux"
5001
+
5002
+ #: ../languages/dynamic_strings.php:46
5003
+ msgid "playstation"
5004
+ msgstr "Playstation"
5005
+
5006
+ # @ wp-slimstat
5007
+ #: ../languages/dynamic_strings.php:47
5008
  msgid "powertv"
5009
  msgstr "PowerTV"
5010
 
5011
+ #: ../languages/dynamic_strings.php:48
5012
+ msgid "redhat"
5013
+ msgstr "RedHat Linux"
5014
+
5015
+ #: ../languages/dynamic_strings.php:49
5016
  msgid "rim os"
5017
  msgstr "rim os"
5018
 
5019
  # @ wp-slimstat
5020
+ #: ../languages/dynamic_strings.php:50
5021
  msgid "risc os"
5022
  msgstr "Risc OS"
5023
 
5024
+ #: ../languages/dynamic_strings.php:51
5025
+ msgid "slackware"
5026
+ msgstr "Slackware Linux"
5027
+
5028
  # @ wp-slimstat
5029
+ #: ../languages/dynamic_strings.php:52
5030
  msgid "solaris"
5031
  msgstr "Solaris"
5032
 
5033
  # @ wp-slimstat
5034
+ #: ../languages/dynamic_strings.php:53
5035
  msgid "sunos"
5036
  msgstr "Sun OS"
5037
 
5038
+ #: ../languages/dynamic_strings.php:54
5039
+ msgid "suse"
5040
+ msgstr "SuSE Linux"
5041
+
5042
  # @ wp-slimstat
5043
+ #: ../languages/dynamic_strings.php:55
5044
  msgid "symbianos"
5045
  msgstr "Symbian OS"
5046
 
5047
+ #: ../languages/dynamic_strings.php:56
5048
  msgid "ubuntu"
5049
  msgstr "ubuntu"
5050
 
5051
  # @ wp-slimstat
5052
+ #: ../languages/dynamic_strings.php:57
5053
  msgid "unix"
5054
  msgstr "Unix"
5055
 
5056
  # @ wp-slimstat
5057
+ #: ../languages/dynamic_strings.php:58
5058
  msgid "unknown"
5059
  msgstr "Okänd"
5060
 
5061
  # @ wp-slimstat
5062
+ #: ../languages/dynamic_strings.php:59
5063
+ msgid "xandros"
5064
+ msgstr "Xandros Linux"
5065
+
5066
+ # @ wp-slimstat
5067
+ #: ../languages/dynamic_strings.php:60
5068
  msgid "wap"
5069
  msgstr "WAP"
5070
 
5071
  # @ wp-slimstat
5072
+ #: ../languages/dynamic_strings.php:61
5073
  msgid "webos"
5074
  msgstr "WebOS"
5075
 
5076
  # @ wp-slimstat
5077
+ #: ../languages/dynamic_strings.php:62
5078
  msgid "win10"
5079
  msgstr "win10"
5080
 
5081
  # @ wp-slimstat
5082
+ #: ../languages/dynamic_strings.php:63
5083
  msgid "win16"
5084
  msgstr "Windows 16-bit"
5085
 
5086
  # @ wp-slimstat
5087
+ #: ../languages/dynamic_strings.php:64
5088
  msgid "win2000"
5089
  msgstr "Windows 2000"
5090
 
5091
  # @ wp-slimstat
5092
+ #: ../languages/dynamic_strings.php:65
5093
  msgid "win2003"
5094
  msgstr "Windows 2003"
5095
 
5096
  # @ wp-slimstat
5097
+ #: ../languages/dynamic_strings.php:66
5098
  msgid "win31"
5099
  msgstr "Windows 3.1"
5100
 
5101
  # @ wp-slimstat
5102
+ #: ../languages/dynamic_strings.php:67
5103
  msgid "win32"
5104
  msgstr "Windows 32-bit"
5105
 
5106
  # @ wp-slimstat
5107
+ #: ../languages/dynamic_strings.php:68 ../languages/dynamic_strings.php:69
5108
  msgid "win7"
5109
  msgstr "Windows 7"
5110
 
5111
  # @ wp-slimstat
5112
+ #: ../languages/dynamic_strings.php:70
5113
  msgid "win8"
5114
  msgstr "Windows 8"
5115
 
5116
  # @ wp-slimstat
5117
+ #: ../languages/dynamic_strings.php:71
5118
  msgid "win8.1"
5119
  msgstr "Windows 8.1"
5120
 
5121
  # @ wp-slimstat
5122
+ #: ../languages/dynamic_strings.php:72
5123
  msgid "win95"
5124
  msgstr "Windows 95"
5125
 
5126
  # @ wp-slimstat
5127
+ #: ../languages/dynamic_strings.php:73
5128
  msgid "win98"
5129
  msgstr "Windows 98"
5130
 
5131
  # @ wp-slimstat
5132
+ #: ../languages/dynamic_strings.php:74
5133
  msgid "wince"
5134
  msgstr "Windows CE"
5135
 
5136
  # @ wp-slimstat
5137
+ #: ../languages/dynamic_strings.php:75
 
 
 
 
 
5138
  msgid "winme"
5139
  msgstr "Windows ME"
5140
 
5141
  # @ wp-slimstat
5142
+ #: ../languages/dynamic_strings.php:76
5143
  msgid "winnt"
5144
  msgstr "Windows NT"
5145
 
5146
  # @ wp-slimstat
5147
+ #: ../languages/dynamic_strings.php:77
5148
  msgid "winphone7"
5149
  msgstr "Windows Phone 7"
5150
 
5151
  # @ wp-slimstat
5152
+ #: ../languages/dynamic_strings.php:78
5153
  msgid "winphone7.5"
5154
  msgstr "winphone7.5"
5155
 
5156
  # @ wp-slimstat
5157
+ #: ../languages/dynamic_strings.php:79
5158
  msgid "winphone8"
5159
  msgstr "winphone8"
5160
 
5161
  # @ wp-slimstat
5162
+ #: ../languages/dynamic_strings.php:80
5163
  msgid "winphone8.1"
5164
  msgstr "winphone8.1"
5165
 
5166
+ #: ../languages/dynamic_strings.php:81
5167
+ msgid "winrt"
5168
+ msgstr "Windows RT"
5169
+
5170
  # @ wp-slimstat
5171
+ #: ../languages/dynamic_strings.php:82
5172
  msgid "winvista"
5173
  msgstr "Windows Vista"
5174
 
5175
  # @ wp-slimstat
5176
+ #: ../languages/dynamic_strings.php:83
5177
  msgid "winxp"
5178
  msgstr "Windows XP"
5179
 
5180
  # @ wp-slimstat
5181
+ #: ../languages/dynamic_strings.php:84
5182
  msgid "wyderos"
5183
  msgstr "WyderOS"
5184
 
5185
+ #: ../languages/dynamic_strings.php:85
5186
+ msgid "zaurus"
5187
+ msgstr "Zaurus"
5188
+
5189
  # @ wp-slimstat
5190
+ #: ../languages/dynamic_strings.php:88
5191
  msgid "acrobat"
5192
  msgstr "Acrobat"
5193
 
5194
  # @ wp-slimstat
5195
+ #: ../languages/dynamic_strings.php:89
5196
  msgid "director"
5197
  msgstr "Macromedia Director"
5198
 
5199
  # @ wp-slimstat
5200
+ #: ../languages/dynamic_strings.php:90
5201
  msgid "flash"
5202
  msgstr "Flash"
5203
 
5204
  # @ wp-slimstat
5205
+ #: ../languages/dynamic_strings.php:91
5206
  msgid "mediaplayer"
5207
  msgstr "Media Player"
5208
 
5209
  # @ wp-slimstat
5210
+ #: ../languages/dynamic_strings.php:92
5211
  msgid "quicktime"
5212
  msgstr "Quicktime"
5213
 
5214
  # @ wp-slimstat
5215
+ #: ../languages/dynamic_strings.php:93
5216
  msgid "real"
5217
  msgstr "Real Player"
5218
 
5219
  # @ wp-slimstat
5220
+ #: ../languages/dynamic_strings.php:94
5221
  msgid "silverlight"
5222
  msgstr "Silverlight"
5223
 
5224
  # @ wp-slimstat
5225
+ #: ../languages/dynamic_strings.php:97
5226
  msgid "p-and"
5227
  msgstr "Android"
5228
 
5229
  # @ wp-slimstat
5230
+ #: ../languages/dynamic_strings.php:98
5231
  msgid "p-bla"
5232
  msgstr "BlackBerry"
5233
 
5234
  # @ wp-slimstat
5235
+ #: ../languages/dynamic_strings.php:99
5236
  msgid "p-chr"
5237
  msgstr "Chrome OS"
5238
 
5239
+ #: ../languages/dynamic_strings.php:100
5240
  msgid "p-fir"
5241
  msgstr "p-fir"
5242
 
5243
  # @ wp-slimstat
5244
+ #: ../languages/dynamic_strings.php:101
5245
  msgid "p-fre"
5246
  msgstr "Linux FreeBSD"
5247
 
5248
  # @ wp-slimstat
5249
+ #: ../languages/dynamic_strings.php:102
5250
  msgid "p-ios"
5251
  msgstr "Apple iOS"
5252
 
5253
  # @ wp-slimstat
5254
+ #: ../languages/dynamic_strings.php:103
5255
  msgid "p-jav"
5256
  msgstr "Java-based OS"
5257
 
5258
  # @ wp-slimstat
5259
+ #: ../languages/dynamic_strings.php:104
5260
  msgid "p-lin"
5261
  msgstr "Linux"
5262
 
5263
  # @ wp-slimstat
5264
+ #: ../languages/dynamic_strings.php:105
5265
  msgid "p-mac"
5266
  msgstr "Apple"
5267
 
5268
+ #: ../languages/dynamic_strings.php:106
5269
  msgid "p-rim"
5270
  msgstr "p-rim"
5271
 
5272
  # @ wp-slimstat
5273
+ #: ../languages/dynamic_strings.php:107
5274
  msgid "p-sym"
5275
  msgstr "Symbian OS"
5276
 
5277
+ #: ../languages/dynamic_strings.php:108
5278
  msgid "p-ubu"
5279
  msgstr "Ubuntu"
5280
 
5281
  # @ wp-slimstat
5282
+ #: ../languages/dynamic_strings.php:109
5283
  msgid "p-unk"
5284
  msgstr "Unknown"
5285
 
5286
  # @ wp-slimstat
5287
+ #: ../languages/dynamic_strings.php:110
5288
  msgid "p-win"
5289
  msgstr "Microsoft"
5290
 
5291
  # Afrikaans
5292
  # @ wp-slimstat
5293
+ #: ../languages/dynamic_strings.php:113
5294
  msgid "l-af"
5295
  msgstr "Afrikaans"
5296
 
5297
  # Afrikaans
5298
  # @ wp-slimstat
5299
+ #: ../languages/dynamic_strings.php:114
5300
  msgid "l-af-za"
5301
  msgstr "Afrikaans"
5302
 
5303
  # Arabic
5304
  # @ wp-slimstat
5305
+ #: ../languages/dynamic_strings.php:115
5306
  msgid "l-ar"
5307
  msgstr "Arabiska"
5308
 
5309
  # Arabic (United Arab Emirates)
5310
  # @ wp-slimstat
5311
+ #: ../languages/dynamic_strings.php:116
5312
  msgid "l-ar-ae"
5313
  msgstr "Arabiska (Förenade Arabemiraten)"
5314
 
5315
  # Arabic (Bahrain)
5316
  # @ wp-slimstat
5317
+ #: ../languages/dynamic_strings.php:117
5318
  msgid "l-ar-bh"
5319
  msgstr "Arabiska (Bahrain)"
5320
 
5321
  # Arabic (Algeria)
5322
  # @ wp-slimstat
5323
+ #: ../languages/dynamic_strings.php:118
5324
  msgid "l-ar-dz"
5325
  msgstr "Arabiska (Algeriet)"
5326
 
5327
  # Arabic (Egypt)
5328
  # @ wp-slimstat
5329
+ #: ../languages/dynamic_strings.php:119
5330
  msgid "l-ar-eg"
5331
  msgstr "Arabiska (Egypten)"
5332
 
5333
  # Arabic (Iraq)
5334
  # @ wp-slimstat
5335
+ #: ../languages/dynamic_strings.php:120
5336
  msgid "l-ar-iq"
5337
  msgstr "Arabic (Iraq)"
5338
 
5339
  # Arabic (Jordan)
5340
  # @ wp-slimstat
5341
+ #: ../languages/dynamic_strings.php:121
5342
  msgid "l-ar-jo"
5343
  msgstr "Arabiska (Jordanien)"
5344
 
5345
  # Arabic (Kuwait)
5346
  # @ wp-slimstat
5347
+ #: ../languages/dynamic_strings.php:122
5348
  msgid "l-ar-kw"
5349
  msgstr "Arabiska (Kuwait)"
5350
 
5351
  # Arabic (Lebanon)
5352
  # @ wp-slimstat
5353
+ #: ../languages/dynamic_strings.php:123
5354
  msgid "l-ar-lb"
5355
  msgstr "Arabiska (Libanon)"
5356
 
5357
  # Arabic (Libya)
5358
  # @ wp-slimstat
5359
+ #: ../languages/dynamic_strings.php:124
5360
  msgid "l-ar-ly"
5361
  msgstr "Arabiska (Libyen)"
5362
 
5363
  # Arabic (Morocco)
5364
  # @ wp-slimstat
5365
+ #: ../languages/dynamic_strings.php:125
5366
  msgid "l-ar-ma"
5367
  msgstr "Arabiska (Morocko)"
5368
 
5369
  # Arabic (Oman)
5370
  # @ wp-slimstat
5371
+ #: ../languages/dynamic_strings.php:126
5372
  msgid "l-ar-om"
5373
  msgstr "Arabiska (Oman)"
5374
 
5375
  # Arabic (Qatar)
5376
  # @ wp-slimstat
5377
+ #: ../languages/dynamic_strings.php:127
5378
  msgid "l-ar-qa"
5379
  msgstr "Arabiska (Qatar)"
5380
 
5381
  # Arabic (Saudi Arabia)
5382
  # @ wp-slimstat
5383
+ #: ../languages/dynamic_strings.php:128
5384
  msgid "l-ar-sa"
5385
  msgstr "Arabic (Saudi Arabien)"
5386
 
5387
  # Arabic (Syria)
5388
  # @ wp-slimstat
5389
+ #: ../languages/dynamic_strings.php:129
5390
  msgid "l-ar-sy"
5391
  msgstr "Arabiska (Syrien)"
5392
 
5393
  # Arabic (Tunisia)
5394
  # @ wp-slimstat
5395
+ #: ../languages/dynamic_strings.php:130
5396
  msgid "l-ar-tn"
5397
  msgstr "Arabiska (Tunisien)"
5398
 
5399
  # Arabic (Yemen)
5400
  # @ wp-slimstat
5401
+ #: ../languages/dynamic_strings.php:131
5402
  msgid "l-ar-ye"
5403
  msgstr "Arabiska (Jemen)"
5404
 
5405
  # Azerbaijani
5406
  # @ wp-slimstat
5407
+ #: ../languages/dynamic_strings.php:132
5408
  msgid "l-az"
5409
  msgstr "Azerbajdzjanska"
5410
 
5411
  # Azerbaijani
5412
  # @ wp-slimstat
5413
+ #: ../languages/dynamic_strings.php:133
5414
  msgid "l-az-az"
5415
  msgstr "Azerbajdzjanska"
5416
 
5417
  # Belarusian
5418
  # @ wp-slimstat
5419
+ #: ../languages/dynamic_strings.php:134
5420
  msgid "l-be"
5421
  msgstr "Vitryska, Ryska"
5422
 
5423
  # Belarusian
5424
  # @ wp-slimstat
5425
+ #: ../languages/dynamic_strings.php:135
5426
  msgid "l-be-by"
5427
  msgstr "Vitryska, Ryska"
5428
 
5429
  # Bulgarian
5430
  # @ wp-slimstat
5431
+ #: ../languages/dynamic_strings.php:136
5432
  msgid "l-bg"
5433
  msgstr "Bulgariska"
5434
 
5435
  # Bulgarian
5436
  # @ wp-slimstat
5437
+ #: ../languages/dynamic_strings.php:137
5438
  msgid "l-bg-bg"
5439
  msgstr "Bulgariska"
5440
 
5441
  # Bosnian
5442
  # @ wp-slimstat
5443
+ #: ../languages/dynamic_strings.php:138
5444
  msgid "l-bs-ba"
5445
  msgstr "Bosniska"
5446
 
5447
  # Catalan; Valencian
5448
  # @ wp-slimstat
5449
+ #: ../languages/dynamic_strings.php:139
5450
  msgid "l-ca"
5451
  msgstr "Katalanska; Valencianska"
5452
 
5453
  # Catalan; Valencian
5454
  # @ wp-slimstat
5455
+ #: ../languages/dynamic_strings.php:140
5456
  msgid "l-ca-es"
5457
  msgstr "Katalanska; Valencianska"
5458
 
5459
  # Czech
5460
  # @ wp-slimstat
5461
+ #: ../languages/dynamic_strings.php:141
5462
  msgid "l-cs"
5463
  msgstr "Tjeckiska"
5464
 
5465
  # Czech
5466
  # @ wp-slimstat
5467
+ #: ../languages/dynamic_strings.php:142
5468
  msgid "l-cs-cz"
5469
  msgstr "Tjeckiska"
5470
 
5471
  # Welsh
5472
  # @ wp-slimstat
5473
+ #: ../languages/dynamic_strings.php:143
5474
  msgid "l-cy"
5475
  msgstr "Welsh"
5476
 
5477
  # Welsh
5478
  # @ wp-slimstat
5479
+ #: ../languages/dynamic_strings.php:144
5480
  msgid "l-cy-gb"
5481
  msgstr "Welsh"
5482
 
5483
  # Danish
5484
  # @ wp-slimstat
5485
+ #: ../languages/dynamic_strings.php:145
5486
  msgid "l-da"
5487
  msgstr "Danska"
5488
 
5489
  # Danish
5490
  # @ wp-slimstat
5491
+ #: ../languages/dynamic_strings.php:146
5492
  msgid "l-da-dk"
5493
  msgstr "Danska"
5494
 
5495
  # German
5496
  # @ wp-slimstat
5497
+ #: ../languages/dynamic_strings.php:147
5498
  msgid "l-de"
5499
  msgstr "Tyska"
5500
 
5501
  # German (Austria)
5502
  # @ wp-slimstat
5503
+ #: ../languages/dynamic_strings.php:148
5504
  msgid "l-de-at"
5505
  msgstr "Tyska (Österrike)"
5506
 
5507
  # German (Switzerland)
5508
  # @ wp-slimstat
5509
+ #: ../languages/dynamic_strings.php:149
5510
  msgid "l-de-ch"
5511
  msgstr "Tyska (Schweiz)"
5512
 
5513
  # German (Germany)
5514
  # @ wp-slimstat
5515
+ #: ../languages/dynamic_strings.php:150
5516
  msgid "l-de-de"
5517
  msgstr "Tyska (Tyskland)"
5518
 
5519
  # German (Liechtenstein)
5520
  # @ wp-slimstat
5521
+ #: ../languages/dynamic_strings.php:151
5522
  msgid "l-de-li"
5523
  msgstr "Tyska (Liechtenstein)"
5524
 
5525
  # German (Luxembourg)
5526
  # @ wp-slimstat
5527
+ #: ../languages/dynamic_strings.php:152
5528
  msgid "l-de-lu"
5529
  msgstr "Tyska (Luxembourg)"
5530
 
5531
  # Dhivehi; Divehi; Maldivian
5532
  # @ wp-slimstat
5533
+ #: ../languages/dynamic_strings.php:153
5534
  msgid "l-dv"
5535
  msgstr "Divehi (Maldiverna)"
5536
 
5537
  # Dhivehi; Divehi; Maldivian
5538
  # @ wp-slimstat
5539
+ #: ../languages/dynamic_strings.php:154
5540
  msgid "l-dv-mv"
5541
  msgstr "Divehi (Maldiverna)"
5542
 
5543
  # Modern Greek (1453-)
5544
  # @ wp-slimstat
5545
+ #: ../languages/dynamic_strings.php:155
5546
  msgid "l-el"
5547
  msgstr "Modern Grekiska (1453-)"
5548
 
5549
  # Greek (Greece)
5550
  # @ wp-slimstat
5551
+ #: ../languages/dynamic_strings.php:156
5552
  msgid "l-el-gr"
5553
  msgstr "Grekiska (Grekland)"
5554
 
5555
  # English
5556
  # @ wp-slimstat
5557
+ #: ../languages/dynamic_strings.php:157
5558
  msgid "l-en"
5559
  msgstr "Engelska"
5560
 
5561
  # English (Australia)
5562
  # @ wp-slimstat
5563
+ #: ../languages/dynamic_strings.php:158
5564
  msgid "l-en-au"
5565
  msgstr "Engelska (Australien)"
5566
 
5567
  # English (Belize)
5568
  # @ wp-slimstat
5569
+ #: ../languages/dynamic_strings.php:159
5570
  msgid "l-en-bz"
5571
  msgstr "Engelska (Belize)"
5572
 
5573
  # English (Canada)
5574
  # @ wp-slimstat
5575
+ #: ../languages/dynamic_strings.php:160
5576
  msgid "l-en-ca"
5577
  msgstr "Engelska (Kanada)"
5578
 
5579
  # English (Canada)
5580
  # @ wp-slimstat
5581
+ #: ../languages/dynamic_strings.php:161
5582
  msgid "l-en-cb"
5583
  msgstr "Engelska (Kanada)"
5584
 
5585
  # English (United Kingdom)
5586
  # @ wp-slimstat
5587
+ #: ../languages/dynamic_strings.php:162
5588
  msgid "l-en-gb"
5589
  msgstr "Engelska (Storbritanien)"
5590
 
5591
  # English (Ireland)
5592
  # @ wp-slimstat
5593
+ #: ../languages/dynamic_strings.php:163
5594
  msgid "l-en-ie"
5595
  msgstr "Engelska (Irland)"
5596
 
5597
  # English (Jamaica)
5598
  # @ wp-slimstat
5599
+ #: ../languages/dynamic_strings.php:164
5600
  msgid "l-en-jm"
5601
  msgstr "Engelska (Jamaica)"
5602
 
5603
  # English (New Zealand)
5604
  # @ wp-slimstat
5605
+ #: ../languages/dynamic_strings.php:165
5606
  msgid "l-en-nz"
5607
  msgstr "Engelska (Nya Zeeland)"
5608
 
5609
  # English
5610
  # @ wp-slimstat
5611
+ #: ../languages/dynamic_strings.php:166
5612
  msgid "l-en-ph"
5613
  msgstr "Engelska"
5614
 
5615
  # English (Trinidad)
5616
  # @ wp-slimstat
5617
+ #: ../languages/dynamic_strings.php:167
5618
  msgid "l-en-tt"
5619
  msgstr "Engelska (Trinidad)"
5620
 
5621
  # English (United States)
5622
  # @ wp-slimstat
5623
+ #: ../languages/dynamic_strings.php:168
5624
  msgid "l-en-us"
5625
  msgstr "Engelska (Amerika)"
5626
 
5627
  # English (South Africa)
5628
  # @ wp-slimstat
5629
+ #: ../languages/dynamic_strings.php:169
5630
  msgid "l-en-za"
5631
  msgstr "Engelska (Sydafrika)"
5632
 
5633
  # English (South Africa)
5634
  # @ wp-slimstat
5635
+ #: ../languages/dynamic_strings.php:170
5636
  msgid "l-en-zw"
5637
  msgstr "Engelska (Sydafrika)"
5638
 
5639
  # Esperanto
5640
  # @ wp-slimstat
5641
+ #: ../languages/dynamic_strings.php:171
5642
  msgid "l-eo"
5643
  msgstr "Esperanto"
5644
 
5645
  # Spanish; Castilian
5646
  # @ wp-slimstat
5647
+ #: ../languages/dynamic_strings.php:172
5648
  msgid "l-es"
5649
  msgstr "Spanska; Kastilianska"
5650
 
5651
  # Spanish (Argentina)
5652
  # @ wp-slimstat
5653
+ #: ../languages/dynamic_strings.php:173
5654
  msgid "l-es-ar"
5655
  msgstr "Spanska (Argentina)"
5656
 
5657
  # Spanish (Bolivia)
5658
  # @ wp-slimstat
5659
+ #: ../languages/dynamic_strings.php:174
5660
  msgid "l-es-bo"
5661
  msgstr "Spanska (Bolivia)"
5662
 
5663
  # Spanish (Chile)
5664
  # @ wp-slimstat
5665
+ #: ../languages/dynamic_strings.php:175
5666
  msgid "l-es-cl"
5667
  msgstr "Spanska (Chile)"
5668
 
5669
  # Spanish (Colombia)
5670
  # @ wp-slimstat
5671
+ #: ../languages/dynamic_strings.php:176
5672
  msgid "l-es-co"
5673
  msgstr "Spanska (Colombia)"
5674
 
5675
  # Spanish (Costa Rica)
5676
  # @ wp-slimstat
5677
+ #: ../languages/dynamic_strings.php:177
5678
  msgid "l-es-cr"
5679
  msgstr "Spanska (Costa Rica)"
5680
 
5681
  # Spanish (Dominican Republic)
5682
  # @ wp-slimstat
5683
+ #: ../languages/dynamic_strings.php:178
5684
  msgid "l-es-do"
5685
  msgstr "Spanska (Dominikanska republiken)"
5686
 
5687
  # Spanish (Ecuador)
5688
  # @ wp-slimstat
5689
+ #: ../languages/dynamic_strings.php:179
5690
  msgid "l-es-ec"
5691
  msgstr "Spanska (Ecuador)"
5692
 
5693
  # Spanish (Spain)
5694
  # @ wp-slimstat
5695
+ #: ../languages/dynamic_strings.php:180
5696
  msgid "l-es-es"
5697
  msgstr "Spanska (Spanien)"
5698
 
5699
  # Spanish (Guatemala)
5700
  # @ wp-slimstat
5701
+ #: ../languages/dynamic_strings.php:181
5702
  msgid "l-es-gt"
5703
  msgstr "Spanska (Guatemala)"
5704
 
5705
  # Spanish (Honduras)
5706
  # @ wp-slimstat
5707
+ #: ../languages/dynamic_strings.php:182
5708
  msgid "l-es-hn"
5709
  msgstr "Spanska (Honduras)"
5710
 
5711
  # Spanish (Mexico)
5712
  # @ wp-slimstat
5713
+ #: ../languages/dynamic_strings.php:183
5714
  msgid "l-es-mx"
5715
  msgstr "Spanska (Mexico)"
5716
 
5717
  # Spanish (Nicaragua)
5718
  # @ wp-slimstat
5719
+ #: ../languages/dynamic_strings.php:184
5720
  msgid "l-es-ni"
5721
  msgstr "Spanska (Nicaragua)"
5722
 
5723
  # Spanish (Panama)
5724
  # @ wp-slimstat
5725
+ #: ../languages/dynamic_strings.php:185
5726
  msgid "l-es-pa"
5727
  msgstr "Spanska (Panama)"
5728
 
5729
  # Spanish (Peru)
5730
  # @ wp-slimstat
5731
+ #: ../languages/dynamic_strings.php:186
5732
  msgid "l-es-pe"
5733
  msgstr "Spanska (Peru)"
5734
 
5735
  # Spanish (Puerto Rico)
5736
  # @ wp-slimstat
5737
+ #: ../languages/dynamic_strings.php:187
5738
  msgid "l-es-pr"
5739
  msgstr "Spanska (Puerto Rico)"
5740
 
5741
  # Spanish (Paraguay)
5742
  # @ wp-slimstat
5743
+ #: ../languages/dynamic_strings.php:188
5744
  msgid "l-es-py"
5745
  msgstr "Spanska (Paraguay)"
5746
 
5747
  # Spanish (El Salvador)
5748
  # @ wp-slimstat
5749
+ #: ../languages/dynamic_strings.php:189
5750
  msgid "l-es-sv"
5751
  msgstr "Spanska (El Salvador)"
5752
 
5753
  # Spanish (Uruguay)
5754
  # @ wp-slimstat
5755
+ #: ../languages/dynamic_strings.php:190
5756
  msgid "l-es-uy"
5757
  msgstr "Spanska (Uruguay)"
5758
 
5759
  # Spanish (Venezuela)
5760
  # @ wp-slimstat
5761
+ #: ../languages/dynamic_strings.php:191
5762
  msgid "l-es-ve"
5763
  msgstr "Spanska (Venezuela)"
5764
 
5765
  # Estonian
5766
  # @ wp-slimstat
5767
+ #: ../languages/dynamic_strings.php:192
5768
  msgid "l-et"
5769
  msgstr "Estniska"
5770
 
5771
  # Estonian
5772
  # @ wp-slimstat
5773
+ #: ../languages/dynamic_strings.php:193
5774
  msgid "l-et-ee"
5775
  msgstr "Estniska"
5776
 
5777
  # Basque
5778
  # @ wp-slimstat
5779
+ #: ../languages/dynamic_strings.php:194
5780
  msgid "l-eu"
5781
  msgstr "Baskiska"
5782
 
5783
  # Basque
5784
  # @ wp-slimstat
5785
+ #: ../languages/dynamic_strings.php:195
5786
  msgid "l-eu-es"
5787
  msgstr "Baskiska"
5788
 
5789
  # Persian
5790
  # @ wp-slimstat
5791
+ #: ../languages/dynamic_strings.php:196
5792
  msgid "l-fa"
5793
  msgstr "Persiska"
5794
 
5795
  # Persian
5796
  # @ wp-slimstat
5797
+ #: ../languages/dynamic_strings.php:197
5798
  msgid "l-fa-ir"
5799
  msgstr "Persiska"
5800
 
5801
  # Finnish
5802
  # @ wp-slimstat
5803
+ #: ../languages/dynamic_strings.php:198
5804
  msgid "l-fi"
5805
  msgstr "Finska"
5806
 
5807
  # Finnish
5808
  # @ wp-slimstat
5809
+ #: ../languages/dynamic_strings.php:199
5810
  msgid "l-fi-fi"
5811
  msgstr "Finska"
5812
 
5813
  # Faroese
5814
  # @ wp-slimstat
5815
+ #: ../languages/dynamic_strings.php:200
5816
  msgid "l-fo"
5817
  msgstr "Frisiska"
5818
 
5819
  # Faroese
5820
  # @ wp-slimstat
5821
+ #: ../languages/dynamic_strings.php:201
5822
  msgid "l-fo-fo"
5823
  msgstr "Frisiska"
5824
 
5825
  # French
5826
  # @ wp-slimstat
5827
+ #: ../languages/dynamic_strings.php:202
5828
  msgid "l-fr"
5829
  msgstr "Franska"
5830
 
5831
  # French (Belgium)
5832
  # @ wp-slimstat
5833
+ #: ../languages/dynamic_strings.php:203
5834
  msgid "l-fr-be"
5835
  msgstr "Franska (Belgien)"
5836
 
5837
  # French (Canada)
5838
  # @ wp-slimstat
5839
+ #: ../languages/dynamic_strings.php:204
5840
  msgid "l-fr-ca"
5841
  msgstr "Franska (Kanada)"
5842
 
5843
  # French (Switzerland)
5844
  # @ wp-slimstat
5845
+ #: ../languages/dynamic_strings.php:205
5846
  msgid "l-fr-ch"
5847
  msgstr "Franska (Schweiz)"
5848
 
5849
  # French (France)
5850
  # @ wp-slimstat
5851
+ #: ../languages/dynamic_strings.php:206
5852
  msgid "l-fr-fr"
5853
  msgstr "Franska (Frankrike)"
5854
 
5855
  # French (Luxembourg)
5856
  # @ wp-slimstat
5857
+ #: ../languages/dynamic_strings.php:207
5858
  msgid "l-fr-lu"
5859
  msgstr "Franska (Luxembourg)"
5860
 
5861
  # French (Switzerland)
5862
  # @ wp-slimstat
5863
+ #: ../languages/dynamic_strings.php:208
5864
  msgid "l-fr-mc"
5865
  msgstr "Franska (Schweiz)"
5866
 
5867
  # Galician
5868
  # @ wp-slimstat
5869
+ #: ../languages/dynamic_strings.php:209
5870
  msgid "l-gl"
5871
  msgstr "Galiciska"
5872
 
5873
  # Spanish; Castilian
5874
  # @ wp-slimstat
5875
+ #: ../languages/dynamic_strings.php:210
5876
  msgid "l-gl-es"
5877
  msgstr "Spanska; Kastilianska"
5878
 
5879
  # Gujarati
5880
  # @ wp-slimstat
5881
+ #: ../languages/dynamic_strings.php:211
5882
  msgid "l-gu"
5883
  msgstr "Gujarati (Indien)"
5884
 
5885
  # Gujarati
5886
  # @ wp-slimstat
5887
+ #: ../languages/dynamic_strings.php:212
5888
  msgid "l-gu-in"
5889
  msgstr "Gujarati (Indien)"
5890
 
5891
  # Hebrew
5892
  # @ wp-slimstat
5893
+ #: ../languages/dynamic_strings.php:213
5894
  msgid "l-he"
5895
  msgstr "Hebreiska"
5896
 
5897
  # Hebrew (Israel)
5898
  # @ wp-slimstat
5899
+ #: ../languages/dynamic_strings.php:214
5900
  msgid "l-he-il"
5901
  msgstr "Hebreiska (Israel)"
5902
 
5903
  # Hindi
5904
  # @ wp-slimstat
5905
+ #: ../languages/dynamic_strings.php:215
5906
  msgid "l-hi"
5907
  msgstr "Hindi"
5908
 
5909
  # Hindi
5910
  # @ wp-slimstat
5911
+ #: ../languages/dynamic_strings.php:216
5912
  msgid "l-hi-in"
5913
  msgstr "Hindi"
5914
 
5915
  # Croatian
5916
  # @ wp-slimstat
5917
+ #: ../languages/dynamic_strings.php:217
5918
  msgid "l-hr"
5919
  msgstr "Kroatiska"
5920
 
5921
  # Croatian
5922
  # @ wp-slimstat
5923
+ #: ../languages/dynamic_strings.php:218
5924
  msgid "l-hr-ba"
5925
  msgstr "Kroatiska"
5926
 
5927
  # Croatian
5928
  # @ wp-slimstat
5929
+ #: ../languages/dynamic_strings.php:219
5930
  msgid "l-hr-hr"
5931
  msgstr "Kroatiska"
5932
 
5933
  # Hungarian
5934
  # @ wp-slimstat
5935
+ #: ../languages/dynamic_strings.php:220
5936
  msgid "l-hu"
5937
  msgstr "Ungerska"
5938
 
5939
  # Hungarian (Hungary)
5940
  # @ wp-slimstat
5941
+ #: ../languages/dynamic_strings.php:221
5942
  msgid "l-hu-hu"
5943
  msgstr "Ungerska (Ungern)"
5944
 
5945
  # Armenian
5946
  # @ wp-slimstat
5947
+ #: ../languages/dynamic_strings.php:222
5948
  msgid "l-hy"
5949
  msgstr "Armeniska"
5950
 
5951
  # Armenian
5952
  # @ wp-slimstat
5953
+ #: ../languages/dynamic_strings.php:223
5954
  msgid "l-hy-am"
5955
  msgstr "Armeniska"
5956
 
5957
  # Indonesian
5958
  # @ wp-slimstat
5959
+ #: ../languages/dynamic_strings.php:224
5960
  msgid "l-id"
5961
  msgstr "Indonesiska"
5962
 
5963
  # Indonesian
5964
  # @ wp-slimstat
5965
+ #: ../languages/dynamic_strings.php:225
5966
  msgid "l-id-id"
5967
  msgstr "Indonesiska"
5968
 
5969
  # Icelandic
5970
  # @ wp-slimstat
5971
+ #: ../languages/dynamic_strings.php:226
5972
  msgid "l-is"
5973
  msgstr "Isländska"
5974
 
5975
  # Icelandic
5976
  # @ wp-slimstat
5977
+ #: ../languages/dynamic_strings.php:227
5978
  msgid "l-is-is"
5979
  msgstr "Isländska"
5980
 
5981
  # Italian
5982
  # @ wp-slimstat
5983
+ #: ../languages/dynamic_strings.php:228
5984
  msgid "l-it"
5985
  msgstr "Italienska"
5986
 
5987
  # Italian (Switzerland)
5988
  # @ wp-slimstat
5989
+ #: ../languages/dynamic_strings.php:229
5990
  msgid "l-it-ch"
5991
  msgstr "Italienska (Schweiz)"
5992
 
5993
  # Italian (Italia)
5994
  # @ wp-slimstat
5995
+ #: ../languages/dynamic_strings.php:230
5996
  msgid "l-it-it"
5997
  msgstr "Italienska (Italien)"
5998
 
5999
  # Japanese
6000
  # @ wp-slimstat
6001
+ #: ../languages/dynamic_strings.php:231
6002
  msgid "l-ja"
6003
  msgstr "Japanska"
6004
 
6005
  # Japanes
6006
  # @ wp-slimstat
6007
+ #: ../languages/dynamic_strings.php:232
6008
  msgid "l-ja-jp"
6009
  msgstr "Japanska"
6010
 
6011
  # Georgian
6012
  # @ wp-slimstat
6013
+ #: ../languages/dynamic_strings.php:233
6014
  msgid "l-ka"
6015
  msgstr "Georgiska"
6016
 
6017
  # Georgian
6018
  # @ wp-slimstat
6019
+ #: ../languages/dynamic_strings.php:234
6020
  msgid "l-ka-ge"
6021
  msgstr "Georgiska"
6022
 
6023
  # Kazakh
6024
  # @ wp-slimstat
6025
+ #: ../languages/dynamic_strings.php:235
6026
  msgid "l-kk"
6027
  msgstr "Kazakiska"
6028
 
6029
  # Kazakh
6030
  # @ wp-slimstat
6031
+ #: ../languages/dynamic_strings.php:236
6032
  msgid "l-kk-kz"
6033
  msgstr "Kazakiska"
6034
 
6035
  # Kannada
6036
  # @ wp-slimstat
6037
+ #: ../languages/dynamic_strings.php:237
6038
  msgid "l-kn"
6039
  msgstr "Kannada (Indien)"
6040
 
6041
  # Kannada
6042
  # @ wp-slimstat
6043
+ #: ../languages/dynamic_strings.php:238
6044
  msgid "l-kn-in"
6045
  msgstr "Kannada (Indien)"
6046
 
6047
  # Korean
6048
  # @ wp-slimstat
6049
+ #: ../languages/dynamic_strings.php:239
6050
  msgid "l-ko"
6051
  msgstr "Koreanska"
6052
 
6053
  # Korean (Republic of Korea)
6054
  # @ wp-slimstat
6055
+ #: ../languages/dynamic_strings.php:240
6056
  msgid "l-ko-kr"
6057
  msgstr "Koreanska (Korea republik)"
6058
 
6059
  # Korean
6060
  # @ wp-slimstat
6061
+ #: ../languages/dynamic_strings.php:241
6062
  msgid "l-kok"
6063
  msgstr "Koreanska"
6064
 
6065
  # Korean
6066
  # @ wp-slimstat
6067
+ #: ../languages/dynamic_strings.php:242
6068
  msgid "l-kok-in"
6069
  msgstr "Koreanska"
6070
 
6071
  # Kirghiz; Kyrgyz
6072
  # @ wp-slimstat
6073
+ #: ../languages/dynamic_strings.php:243
6074
  msgid "l-ky"
6075
  msgstr "Kirgiziska; Kyrgyz"
6076
 
6077
  # Kirghiz; Kyrgyz
6078
  # @ wp-slimstat
6079
+ #: ../languages/dynamic_strings.php:244
6080
  msgid "l-ky-kg"
6081
  msgstr "Kirgiziska; Kyrgyz"
6082
 
6083
  # Lithuanian
6084
  # @ wp-slimstat
6085
+ #: ../languages/dynamic_strings.php:245
6086
  msgid "l-lt"
6087
  msgstr "Litauiska"
6088
 
6089
  # Lithuanian
6090
  # @ wp-slimstat
6091
+ #: ../languages/dynamic_strings.php:246
6092
  msgid "l-lt-lt"
6093
  msgstr "Litauiska"
6094
 
6095
  # Latvian
6096
  # @ wp-slimstat
6097
+ #: ../languages/dynamic_strings.php:247
6098
  msgid "l-lv"
6099
  msgstr "Lettiska; Latvija"
6100
 
6101
  # Latvian
6102
  # @ wp-slimstat
6103
+ #: ../languages/dynamic_strings.php:248
6104
  msgid "l-lv-lv"
6105
  msgstr "Lettiska; Latvija"
6106
 
6107
  # Maori
6108
  # @ wp-slimstat
6109
+ #: ../languages/dynamic_strings.php:249
6110
  msgid "l-mi"
6111
  msgstr "Maori (Nya Zeeland)"
6112
 
6113
  # Maori
6114
  # @ wp-slimstat
6115
+ #: ../languages/dynamic_strings.php:250
6116
  msgid "l-mi-nz"
6117
  msgstr "Maori (Nya Zeeland)"
6118
 
6119
  # Macedonian
6120
  # @ wp-slimstat
6121
+ #: ../languages/dynamic_strings.php:251
6122
  msgid "l-mk"
6123
  msgstr "Makedonska"
6124
 
6125
  # Macedonian
6126
  # @ wp-slimstat
6127
+ #: ../languages/dynamic_strings.php:252
6128
  msgid "l-mk-ml"
6129
  msgstr "Makedonska"
6130
 
6131
  # Mongolian
6132
  # @ wp-slimstat
6133
+ #: ../languages/dynamic_strings.php:253
6134
  msgid "l-mn"
6135
  msgstr "Mongoliska"
6136
 
6137
  # Mongolian
6138
  # @ wp-slimstat
6139
+ #: ../languages/dynamic_strings.php:254
6140
  msgid "l-mn-mn"
6141
  msgstr "Mongoliska"
6142
 
6143
  # Marathi
6144
  # @ wp-slimstat
6145
+ #: ../languages/dynamic_strings.php:255
6146
  msgid "l-mr"
6147
  msgstr "Marathi (Indien)"
6148
 
6149
  # Marathi
6150
  # @ wp-slimstat
6151
+ #: ../languages/dynamic_strings.php:256
6152
  msgid "l-mr-in"
6153
  msgstr "Marathi (Indien)"
6154
 
6155
  # Malay
6156
  # @ wp-slimstat
6157
+ #: ../languages/dynamic_strings.php:257
6158
  msgid "l-ms"
6159
  msgstr "malajiska (Filipinerna)"
6160
 
6161
  # Malay
6162
  # @ wp-slimstat
6163
+ #: ../languages/dynamic_strings.php:258
6164
  msgid "l-ms-bn"
6165
  msgstr "malajiska (Filipinerna)"
6166
 
6167
  # Malay
6168
  # @ wp-slimstat
6169
+ #: ../languages/dynamic_strings.php:259
6170
  msgid "l-ms-my"
6171
  msgstr "malajiska (Filipinerna)"
6172
 
6173
  # Maltese
6174
  # @ wp-slimstat
6175
+ #: ../languages/dynamic_strings.php:260
6176
  msgid "l-mt"
6177
  msgstr "Maltesiska"
6178
 
6179
  # Maltese
6180
  # @ wp-slimstat
6181
+ #: ../languages/dynamic_strings.php:261
6182
  msgid "l-mt-mt"
6183
  msgstr "Maltesiska"
6184
 
6185
  # Norwegian BokmÃ¥l
6186
  # @ wp-slimstat
6187
+ #: ../languages/dynamic_strings.php:262
6188
  msgid "l-nb"
6189
  msgstr "Norska Bokmål"
6190
 
6191
  # Norwegian BokmÃ¥l
6192
  # @ wp-slimstat
6193
+ #: ../languages/dynamic_strings.php:263
6194
  msgid "l-nb-no"
6195
  msgstr "Norska Bokmål"
6196
 
6197
  # Dutch; Flemish
6198
  # @ wp-slimstat
6199
+ #: ../languages/dynamic_strings.php:264
6200
  msgid "l-nl"
6201
  msgstr "Nederländska; Flemish"
6202
 
6203
  # Dutch (Belgium)
6204
  # @ wp-slimstat
6205
+ #: ../languages/dynamic_strings.php:265
6206
  msgid "l-nl-be"
6207
  msgstr "Nederländska (Belgien)"
6208
 
6209
  # Dutch (Netherlands)
6210
  # @ wp-slimstat
6211
+ #: ../languages/dynamic_strings.php:266
6212
  msgid "l-nl-nl"
6213
  msgstr "Nederländska (Nederländerna)"
6214
 
6215
  # Norwegian Nynorsk
6216
  # @ wp-slimstat
6217
+ #: ../languages/dynamic_strings.php:267
6218
  msgid "l-nn-no"
6219
  msgstr "Norska Nynorsk"
6220
 
6221
  # @ wp-slimstat
6222
+ #: ../languages/dynamic_strings.php:268
6223
  msgid "l-ns"
6224
  msgstr "Northern Sotho"
6225
 
6226
  # @ wp-slimstat
6227
+ #: ../languages/dynamic_strings.php:269
6228
  msgid "l-ns-za"
6229
  msgstr "Northern Sotho (South Africa)"
6230
 
6231
  # Panjabi; Punjabi
6232
  # @ wp-slimstat
6233
+ #: ../languages/dynamic_strings.php:270
6234
  msgid "l-pa"
6235
  msgstr "Punjabi (Indien)"
6236
 
6237
  # Panjabi; Punjabi
6238
  # @ wp-slimstat
6239
+ #: ../languages/dynamic_strings.php:271
6240
  msgid "l-pa-in"
6241
  msgstr "Punjabi (Indien)"
6242
 
6243
  # Polish
6244
  # @ wp-slimstat
6245
+ #: ../languages/dynamic_strings.php:272
6246
  msgid "l-pl"
6247
  msgstr "Poliska"
6248
 
6249
  # Polish
6250
  # @ wp-slimstat
6251
+ #: ../languages/dynamic_strings.php:273
6252
  msgid "l-pl-pl"
6253
  msgstr "Poliska"
6254
 
6255
  # Pushto; Pashto
6256
  # @ wp-slimstat
6257
+ #: ../languages/dynamic_strings.php:274
6258
  msgid "l-ps"
6259
  msgstr "Pashto (Afghanistan)"
6260
 
6261
  # Spanish (Argentina)
6262
  # @ wp-slimstat
6263
+ #: ../languages/dynamic_strings.php:275
6264
  msgid "l-ps-ar"
6265
  msgstr "Spanska (Argentina)"
6266
 
6267
  # Portuguese
6268
  # @ wp-slimstat
6269
+ #: ../languages/dynamic_strings.php:276
6270
  msgid "l-pt"
6271
  msgstr "Portugisiska"
6272
 
6273
  # Portuguese (Brazil)
6274
  # @ wp-slimstat
6275
+ #: ../languages/dynamic_strings.php:277
6276
  msgid "l-pt-br"
6277
  msgstr "Portugisiska (Brasilien)"
6278
 
6279
  # Portuguese
6280
  # @ wp-slimstat
6281
+ #: ../languages/dynamic_strings.php:278
6282
  msgid "l-pt-pt"
6283
  msgstr "Portugisiska"
6284
 
6285
  # Quechua
6286
  # @ wp-slimstat
6287
+ #: ../languages/dynamic_strings.php:279
6288
  msgid "l-qu"
6289
  msgstr "Quechua"
6290
 
6291
  # Quechua
6292
  # @ wp-slimstat
6293
+ #: ../languages/dynamic_strings.php:280
6294
  msgid "l-qu-bo"
6295
  msgstr "Quechua"
6296
 
6297
  # Quechua
6298
  # @ wp-slimstat
6299
+ #: ../languages/dynamic_strings.php:281
6300
  msgid "l-qu-ec"
6301
  msgstr "Quechua"
6302
 
6303
  # Quechua
6304
  # @ wp-slimstat
6305
+ #: ../languages/dynamic_strings.php:282
6306
  msgid "l-qu-pe"
6307
  msgstr "Quechua"
6308
 
6309
  # Romanian; Moldavian; Moldovan
6310
  # @ wp-slimstat
6311
+ #: ../languages/dynamic_strings.php:283
6312
  msgid "l-ro"
6313
  msgstr "Romänska; Moldaviska; Moldovan"
6314
 
6315
  # Romanian; Moldavian; Moldovan
6316
  # @ wp-slimstat
6317
+ #: ../languages/dynamic_strings.php:284
6318
  msgid "l-ro-ro"
6319
  msgstr "Romänska"
6320
 
6321
  # Russian
6322
  # @ wp-slimstat
6323
+ #: ../languages/dynamic_strings.php:285
6324
  msgid "l-ru"
6325
  msgstr "Ryska"
6326
 
6327
  # Russian (Russia)
6328
  # @ wp-slimstat
6329
+ #: ../languages/dynamic_strings.php:286
6330
  msgid "l-ru-ru"
6331
  msgstr "Ryska (Ryssland)"
6332
 
6333
  # Sanskrit
6334
  # @ wp-slimstat
6335
+ #: ../languages/dynamic_strings.php:287
6336
  msgid "l-sa"
6337
  msgstr "Sanskrit (Indien)"
6338
 
6339
  # Sanskrit
6340
  # @ wp-slimstat
6341
+ #: ../languages/dynamic_strings.php:288
6342
  msgid "l-sa-in"
6343
  msgstr "Sanskrit (Indien)"
6344
 
6345
  # Northern Sami
6346
  # @ wp-slimstat
6347
+ #: ../languages/dynamic_strings.php:289
6348
  msgid "l-se"
6349
  msgstr "Nordisk Sami"
6350
 
6351
  # Northern Sami
6352
  # @ wp-slimstat
6353
+ #: ../languages/dynamic_strings.php:290
6354
  msgid "l-se-fi"
6355
  msgstr "Nordisk Sami"
6356
 
6357
  # Northern Sami
6358
  # @ wp-slimstat
6359
+ #: ../languages/dynamic_strings.php:291
6360
  msgid "l-se-no"
6361
  msgstr "Nordisk Sami"
6362
 
6363
  # Northern Sami
6364
  # @ wp-slimstat
6365
+ #: ../languages/dynamic_strings.php:292
6366
  msgid "l-se-se"
6367
  msgstr "Nordisk Sami"
6368
 
6369
  # Slovak
6370
  # @ wp-slimstat
6371
+ #: ../languages/dynamic_strings.php:293
6372
  msgid "l-sk"
6373
  msgstr "Slovakiska"
6374
 
6375
  # Slovak
6376
  # @ wp-slimstat
6377
+ #: ../languages/dynamic_strings.php:294
6378
  msgid "l-sk-sk"
6379
  msgstr "Slovakiska"
6380
 
6381
  # Slovenian
6382
  # @ wp-slimstat
6383
+ #: ../languages/dynamic_strings.php:295
6384
  msgid "l-sl"
6385
  msgstr "Slovenska"
6386
 
6387
  # Slovenian
6388
  # @ wp-slimstat
6389
+ #: ../languages/dynamic_strings.php:296
6390
  msgid "l-sl-si"
6391
  msgstr "Slovenska"
6392
 
6393
  # Albanian
6394
  # @ wp-slimstat
6395
+ #: ../languages/dynamic_strings.php:297
6396
  msgid "l-sq"
6397
  msgstr "Albanska"
6398
 
6399
  # Albanian
6400
  # @ wp-slimstat
6401
+ #: ../languages/dynamic_strings.php:298
6402
  msgid "l-sq-al"
6403
  msgstr "Albanska"
6404
 
6405
  # Serbian
6406
  # @ wp-slimstat
6407
+ #: ../languages/dynamic_strings.php:299
6408
  msgid "l-sr-ba"
6409
  msgstr "Serbiska"
6410
 
6411
  # Serbian
6412
  # @ wp-slimstat
6413
+ #: ../languages/dynamic_strings.php:300
6414
  msgid "l-sr-sp"
6415
  msgstr "Serbiska"
6416
 
6417
  # Swedish
6418
  # @ wp-slimstat
6419
+ #: ../languages/dynamic_strings.php:301
6420
  msgid "l-sv"
6421
  msgstr "Svenska"
6422
 
6423
  # Swedish (Finland)
6424
  # @ wp-slimstat
6425
+ #: ../languages/dynamic_strings.php:302
6426
  msgid "l-sv-fi"
6427
  msgstr "Svenska (Finland)"
6428
 
6429
  # Swedish (Sweden)
6430
  # @ wp-slimstat
6431
+ #: ../languages/dynamic_strings.php:303
6432
  msgid "l-sv-se"
6433
  msgstr "Svenska (Sverige)"
6434
 
6435
  # Swahili
6436
  # @ wp-slimstat
6437
+ #: ../languages/dynamic_strings.php:304
6438
  msgid "l-sw"
6439
  msgstr "Swahili"
6440
 
6441
  # Swahili
6442
  # @ wp-slimstat
6443
+ #: ../languages/dynamic_strings.php:305
6444
  msgid "l-sw-ke"
6445
  msgstr "Swahili"
6446
 
6447
  # Tamil
6448
  # @ wp-slimstat
6449
+ #: ../languages/dynamic_strings.php:306
6450
  msgid "l-ta"
6451
  msgstr "Tamil (Indien)"
6452
 
6453
  # Tamil
6454
  # @ wp-slimstat
6455
+ #: ../languages/dynamic_strings.php:307
6456
  msgid "l-ta-in"
6457
  msgstr "Tamil (Indien)"
6458
 
6459
  # Telugu
6460
  # @ wp-slimstat
6461
+ #: ../languages/dynamic_strings.php:308
6462
  msgid "l-te"
6463
  msgstr "Telugu (Indien)"
6464
 
6465
  # Telugu
6466
  # @ wp-slimstat
6467
+ #: ../languages/dynamic_strings.php:309
6468
  msgid "l-te-in"
6469
  msgstr "Telugu (Indien)"
6470
 
6471
  # Thai
6472
  # @ wp-slimstat
6473
+ #: ../languages/dynamic_strings.php:310
6474
  msgid "l-th"
6475
  msgstr "Thailändska"
6476
 
6477
  # Thai
6478
  # @ wp-slimstat
6479
+ #: ../languages/dynamic_strings.php:311
6480
  msgid "l-th-th"
6481
  msgstr "Thailändska"
6482
 
6483
  # Tagalog
6484
  # @ wp-slimstat
6485
+ #: ../languages/dynamic_strings.php:312
6486
  msgid "l-tl"
6487
  msgstr "Tagalog"
6488
 
6489
  # Tagalog
6490
  # @ wp-slimstat
6491
+ #: ../languages/dynamic_strings.php:313
6492
  msgid "l-tl-ph"
6493
  msgstr "Tagalog"
6494
 
6495
  # Tswana
6496
  # @ wp-slimstat
6497
+ #: ../languages/dynamic_strings.php:314
6498
  msgid "l-tn"
6499
  msgstr "Tswana (Sydafrika)"
6500
 
6501
  # English (South Africa)
6502
  # @ wp-slimstat
6503
+ #: ../languages/dynamic_strings.php:315
6504
  msgid "l-tn-za"
6505
  msgstr "Engelska (Sydafrika)"
6506
 
6507
  # Turkish
6508
  # @ wp-slimstat
6509
+ #: ../languages/dynamic_strings.php:316
6510
  msgid "l-tr"
6511
  msgstr "Turkiska"
6512
 
6513
  # Turkish
6514
  # @ wp-slimstat
6515
+ #: ../languages/dynamic_strings.php:317
6516
  msgid "l-tr-tr"
6517
  msgstr "Turkiska"
6518
 
6519
  # Tatar
6520
  # @ wp-slimstat
6521
+ #: ../languages/dynamic_strings.php:318
6522
  msgid "l-tt"
6523
  msgstr "Tatariska"
6524
 
6525
  # Tatar
6526
  # @ wp-slimstat
6527
+ #: ../languages/dynamic_strings.php:319
6528
  msgid "l-tt-ru"
6529
  msgstr "Tatariska"
6530
 
6531
  # Tsonga
6532
  # @ wp-slimstat
6533
+ #: ../languages/dynamic_strings.php:320
6534
  msgid "l-ts"
6535
  msgstr "Tsonga"
6536
 
6537
  # Ukrainian
6538
  # @ wp-slimstat
6539
+ #: ../languages/dynamic_strings.php:321
6540
  msgid "l-uk"
6541
  msgstr "Ukrainska"
6542
 
6543
  # Ukrainian
6544
  # @ wp-slimstat
6545
+ #: ../languages/dynamic_strings.php:322
6546
  msgid "l-uk-ua"
6547
  msgstr "Ukrainska"
6548
 
6549
  # Urdu
6550
  # @ wp-slimstat
6551
+ #: ../languages/dynamic_strings.php:323
6552
  msgid "l-ur"
6553
  msgstr "Urdu"
6554
 
6555
  # Urdu
6556
  # @ wp-slimstat
6557
+ #: ../languages/dynamic_strings.php:324
6558
  msgid "l-ur-pk"
6559
  msgstr "Urdu"
6560
 
6561
  # Uzbek
6562
  # @ wp-slimstat
6563
+ #: ../languages/dynamic_strings.php:325
6564
  msgid "l-uz"
6565
  msgstr "Uzbekiska"
6566
 
6567
  # Uzbek
6568
  # @ wp-slimstat
6569
+ #: ../languages/dynamic_strings.php:326
6570
  msgid "l-uz-uz"
6571
  msgstr "Uzbekiska"
6572
 
6573
  # Vietnamese
6574
  # @ wp-slimstat
6575
+ #: ../languages/dynamic_strings.php:327
6576
  msgid "l-vi"
6577
  msgstr "Vietnamesiska"
6578
 
6579
  # Vietnamese
6580
  # @ wp-slimstat
6581
+ #: ../languages/dynamic_strings.php:328
6582
  msgid "l-vi-vn"
6583
  msgstr "Vietnamesiska"
6584
 
6585
  # Xhosa
6586
  # @ wp-slimstat
6587
+ #: ../languages/dynamic_strings.php:329
6588
  msgid "l-xh"
6589
  msgstr "Xhosa (Sydafrika)"
6590
 
6591
  # Xhosa
6592
  # @ wp-slimstat
6593
+ #: ../languages/dynamic_strings.php:330
6594
  msgid "l-xh-za"
6595
  msgstr "Xhosa (Sydafrika)"
6596
 
6597
  # Chinese
6598
  # @ wp-slimstat
6599
+ #: ../languages/dynamic_strings.php:331
6600
  msgid "l-zh"
6601
  msgstr "Kinesiska"
6602
 
6603
  # Chinese (China)
6604
  # @ wp-slimstat
6605
+ #: ../languages/dynamic_strings.php:332
6606
  msgid "l-zh-cn"
6607
  msgstr "Kinesiska (Kina)"
6608
 
6609
  # Chinese (Hong Kong)
6610
  # @ wp-slimstat
6611
+ #: ../languages/dynamic_strings.php:333
6612
  msgid "l-zh-hk"
6613
  msgstr "Kinesiska (Hong Kong)"
6614
 
6615
  # Chinese
6616
  # @ wp-slimstat
6617
+ #: ../languages/dynamic_strings.php:334
6618
  msgid "l-zh-mo"
6619
  msgstr "Kinesiska"
6620
 
6621
  # Chinese (Singapore)
6622
  # @ wp-slimstat
6623
+ #: ../languages/dynamic_strings.php:335
6624
  msgid "l-zh-sg"
6625
  msgstr "Kinesiska (Singapore)"
6626
 
6627
  # Chinese (Taiwan)
6628
  # @ wp-slimstat
6629
+ #: ../languages/dynamic_strings.php:336
6630
  msgid "l-zh-tw"
6631
  msgstr "Kinesiska (Taiwan)"
6632
 
6633
  # Zulu
6634
  # @ wp-slimstat
6635
+ #: ../languages/dynamic_strings.php:337
6636
  msgid "l-zu"
6637
  msgstr "Zulu (Sydafrika)"
6638
 
6639
  # Zulu
6640
  # @ wp-slimstat
6641
+ #: ../languages/dynamic_strings.php:338
6642
  msgid "l-zu-za"
6643
  msgstr "Zulu (Sydafrika)"
6644
 
6645
  # Unknown
6646
  # @ wp-slimstat
6647
+ #: ../languages/dynamic_strings.php:340
6648
  msgid "l-empty"
6649
  msgstr "Okänd"
6650
 
6651
  # Unknown
6652
  # @ wp-slimstat
6653
+ #: ../languages/dynamic_strings.php:341
6654
  msgid "l-xx"
6655
  msgstr "Okänd"
6656
 
6657
  # Local IP Address
6658
  # @ wp-slimstat
6659
+ #: ../languages/dynamic_strings.php:343
6660
  msgid "c-xy"
6661
  msgstr "Local IP Address"
6662
 
6663
+ #: ../wp-slimstat.php:228 ../wp-slimstat.php:520
6664
  msgid "Notice: Pageview filtered by third-party code"
6665
  msgstr "Observera: Sidvisning filtreras av tredje part kod"
6666
 
6667
+ #: ../wp-slimstat.php:245
6668
  #, php-format
6669
  msgid "Error: Malformed URL %s"
6670
  msgstr "Error: Felaktig URL %s"
6671
 
6672
+ #: ../wp-slimstat.php:264
6673
  #, php-format
6674
  msgid "Notice: Referrer %s is blacklisted"
6675
  msgstr "Obeservera: Hänvisningsadress %s är svartlistad"
6676
 
6677
+ #: ../wp-slimstat.php:352
6678
  #, php-format
6679
  msgid "Notice: Permalink %s is blacklisted"
6680
  msgstr "Observera: Permalänk %s är svartlistad"
6681
 
6682
+ #: ../wp-slimstat.php:363
6683
  msgid "Error: Empty or not supported IP address format (IPv6)"
6684
  msgstr "Tom eller osupporterad IP-adress format (IPv6)"
6685
 
6686
+ #: ../wp-slimstat.php:372
6687
  #, php-format
6688
  msgid "Notice: Logged in user %s not tracked"
6689
  msgstr "Observera: Inloggad användare %s spåras ej"
6690
 
6691
+ #: ../wp-slimstat.php:380
6692
  #, php-format
6693
  msgid "Notice: User with capability %s not tracked"
6694
  msgstr "Observera: Användaren med given rättighet %s spåras ej"
6695
 
6696
+ #: ../wp-slimstat.php:390
6697
  #, php-format
6698
  msgid "Notice: User %s is blacklisted"
6699
  msgstr "Observera: Användare %s är svartlistad"
6700
 
6701
+ #: ../wp-slimstat.php:411
6702
  #, php-format
6703
  msgid "Notice: Spammer %s not tracked"
6704
  msgstr "Observera: Spammare %s spåras ej"
6705
 
6706
+ #: ../wp-slimstat.php:440
6707
  #, php-format
6708
  msgid "Notice: IP address %s is blacklisted"
6709
  msgstr "Observera: IP adress %s är svartlistad"
6710
 
6711
+ #: ../wp-slimstat.php:469
6712
  #, php-format
6713
  msgid "Notice: Country %s is blacklisted"
6714
  msgstr "Observera: Land %s är svartlistad"
6715
 
6716
  # @ wp-slimstat
6717
+ #: ../wp-slimstat.php:478
6718
  msgid "Notice: Prefetch requests are ignored"
6719
  msgstr "Ignorera Prefetch förfrågningar"
6720
 
6721
  # @ wp-slimstat
6722
+ #: ../wp-slimstat.php:494
6723
  msgid "Notice: Bot not tracked"
6724
  msgstr "Observera: Bot spåras ej"
6725
 
6726
+ #: ../wp-slimstat.php:503
6727
  #, php-format
6728
  msgid "Notice: Browser %s is blacklisted"
6729
  msgstr "Observera: Browser %s är svartlistad"
6730
 
6731
+ #: ../wp-slimstat.php:533
6732
  msgid "Error:"
6733
  msgstr "Fel:"
6734
 
6735
+ #: ../wp-slimstat.php:1105
6736
  msgid "Invalid payload string. Try clearing your WordPress cache."
6737
  msgstr "Ogitlig sträng. Försök att rensa WorPress cache."
6738
 
6739
+ #: ../wp-slimstat.php:1115
6740
  msgid "Invalid data signature. Try clearing your WordPress cache."
6741
  msgstr "Ogiltiga data signatur. Försök att rensa din Wordpress cache."
6742
 
6743
  # @ wp-slimstat
6744
+ #: ../wp-slimstat.php:1187
6745
  msgid "There was an error downloading the MaxMind Geolite DB:"
6746
  msgstr "Det uppstod ett fel vid nedladdning av MaxMind GeoLite DB:"
6747
 
6748
  # @ wp-slimstat
6749
+ #: ../wp-slimstat.php:1195 ../wp-slimstat.php:1204
6750
  msgid "There was an error opening the zipped MaxMind Geolite DB."
6751
  msgstr "Det gick inte att öppna den zippade MaxMind GeoLite DB."
6752
 
6753
+ #: ../wp-slimstat.php:1199
6754
  msgid "Function gzopen not defined. Aborting."
6755
  msgstr "Funktion gzopen inte definierad. Avbryter."
6756
 
6757
  # @ wp-slimstat
6758
+ #: ../wp-slimstat.php:1209
6759
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
6760
  msgstr "Det gick inte att öppna den uppackade MaxMind GeoLite DB."
6761
+
6762
+ #~ msgid ""
6763
+ #~ "Your data was successfully imported. You may now drop the old tables: "
6764
+ #~ "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, "
6765
+ #~ "wp_slim_screenres, wp_slim_outbound. Please note: if you are using "
6766
+ #~ "Slimstat in a MU network, you will need to run the import script on all "
6767
+ #~ "your sites before you can delete the old tables."
6768
+ #~ msgstr ""
6769
+ #~ "Dina data har importerats. Nu kan du tabort gamla tabeller: "
6770
+ #~ "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, "
6771
+ #~ "wp_slim_screenres, wp_slim_outbound. Observera: Om du använder Slimstat i "
6772
+ #~ "MU nätverk, måste du köra import skriptet på alla dina webbplatser innan "
6773
+ #~ "du kan ta bort gamla tabeller."
6774
+
6775
+ #~ msgid "Debugging"
6776
+ #~ msgstr "Felsökning"
6777
+
6778
+ # @ wp-slimstat
6779
+ #~ msgid "recorded on"
6780
+ #~ msgstr "registrerades på"
6781
+
6782
+ #~ msgid "Layout"
6783
+ #~ msgstr "Layout"
6784
+
6785
+ #~ msgid ""
6786
+ #~ "Hold on tight, we are about to import all your old data. Are you sure you "
6787
+ #~ "want to proceed?"
6788
+ #~ msgstr ""
6789
+ #~ "Observera, vi är på väg att importera alla dina gamla data. Är du säker "
6790
+ #~ "på att du vill fortsätta?"
6791
+
6792
+ # @ wp-slimstat
6793
+ #~ msgid "Import old data"
6794
+ #~ msgstr "Importera gammalt data"
6795
+
6796
+ #~ msgid ""
6797
+ #~ "Import all the records from the old table structure. No data will be "
6798
+ #~ "deleted from your database."
6799
+ #~ msgstr ""
6800
+ #~ "Importera alla poster från den gamla tabellstruktur. Inga data raderas "
6801
+ #~ "från databasen."
6802
+
6803
+ # @ wp-slimstat
6804
+ #~ msgid "windows phone"
6805
+ #~ msgstr "windows phone"
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: analytics, tracking, reports, analyze, wassup, geolocation, online users,
5
  Text Domain: wp-slimstat
6
  Requires at least: 3.8
7
  Tested up to: 4.4
8
- Stable tag: 4.2.4
9
 
10
  == Description ==
11
  [youtube https://www.youtube.com/watch?v=iJCtjxArq4U]
@@ -63,9 +63,19 @@ Our knowledge base is available on our [support center](http://docs.wp-slimstat.
63
 
64
  == Changelog ==
65
 
 
 
 
 
 
 
 
 
 
 
66
  = 4.2.4 =
67
- * [New] You can now reset the tracker status in order to better troubleshoot issues with the plugin (thank you, Per).
68
  * [New] We rewrote the heuristic algorithm that decodes the user agent string. Also, we introduced a new option (under Settings > Tracker) to allow you to choose the detection logic to be used first: 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.
 
69
  * [Update] We now include the smaller version of the Browscap database, which covers the 50,000 most common user agent strings, instead of the full version which covers about 130,000 strings. Please contact us if your project requires the high level of accuracy offered by the latter.
70
  * [Update] Swedish localization updated and 100% complete (thank you, Per).
71
  * [Update] Some web accelerators (Cloudflare and others) use the custom header HTTP_X_REAL_IP to keep track of a visitor's originating IP. Our code is now inspecting this header (thank you, Saeid).
5
  Text Domain: wp-slimstat
6
  Requires at least: 3.8
7
  Tested up to: 4.4
8
+ Stable tag: 4.2.5
9
 
10
  == Description ==
11
  [youtube https://www.youtube.com/watch?v=iJCtjxArq4U]
63
 
64
  == Changelog ==
65
 
66
+ = 4.2.5 =
67
+ * [New] A filter to customize the list of report screens/pages: slimstat_screens_info. Please contact us for more information.
68
+ * [Update] After we introduced the new Customizer function, one of our most active users noted that pages would not disappear from the side navigation if no reports were associated to them. We update the functionality to include this new feature.
69
+ * [Update] Detecting search engines and searchterms has become a real challenge in the last few years (thank you, NSA!). We updated our algorithm to detect if a referer is a search engine or not. (thank you, HubieDoobieDoo)
70
+ * [Update] Instead of creating a copy of the MaxMind database for each site in a network, now the plugin uses a shared one stored in the main "uploads" folder.
71
+ * [Update] How many people read this changelog? We want to conduct a little experiment to find out: use code CHANGELOG to get $25 off any new order placed after January 18, 2016 on [our store](http://www.wp-slimstat.com/addons/). One use per account, only available to the first 20 users who will place an order.
72
+ * [Update] Unfortunately our partner GetSocial.io has decided to terminate their partnership with us. The corresponding report has been removed from the admin.
73
+ * [Fix] The tracker was not working as expected in Internet Explorer 7, returning the error message "Object doesn't support this property or method: trim" (thank you, Nick).
74
+ * [Fix] Traffic Sources report was not grouping records as expected (thank you, [HubieDoobieDoo](https://wordpress.org/support/topic/search-engine-detection-googlefr-1))
75
+
76
  = 4.2.4 =
 
77
  * [New] We rewrote the heuristic algorithm that decodes the user agent string. Also, we introduced a new option (under Settings > Tracker) to allow you to choose the detection logic to be used first: 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.
78
+ * [New] You can now reset the tracker status in order to better troubleshoot issues with the plugin (thank you, Per).
79
  * [Update] We now include the smaller version of the Browscap database, which covers the 50,000 most common user agent strings, instead of the full version which covers about 130,000 strings. Please contact us if your project requires the high level of accuracy offered by the latter.
80
  * [Update] Swedish localization updated and 100% complete (thank you, Per).
81
  * [Update] Some web accelerators (Cloudflare and others) use the custom header HTTP_X_REAL_IP to keep track of a visitor's originating IP. Our code is now inspecting this header (thank you, Saeid).
wp-slimstat.js CHANGED
@@ -388,7 +388,7 @@ var SlimStat = {
388
 
389
  in_array : function ( needle, haystack ) {
390
  for ( var i = 0; i < haystack.length; i++ ) {
391
- if ( "function" == typeof haystack[ i ].trim && haystack[ i ].trim() == needle ) {
392
  return true;
393
  }
394
  }
@@ -397,7 +397,7 @@ var SlimStat = {
397
 
398
  in_array_substring : function ( needle, haystack_of_substrings ) {
399
  for ( var i = 0; i < haystack_of_substrings.length; i++ ) {
400
- if ( "function" == typeof haystack_of_substrings[ i ].trim && needle.indexOf( haystack_of_substrings[ i ].trim() ) != -1 ) {
401
  return true;
402
  }
403
  }
388
 
389
  in_array : function ( needle, haystack ) {
390
  for ( var i = 0; i < haystack.length; i++ ) {
391
+ if ( haystack[ i ].trim() == needle ) {
392
  return true;
393
  }
394
  }
397
 
398
  in_array_substring : function ( needle, haystack_of_substrings ) {
399
  for ( var i = 0; i < haystack_of_substrings.length; i++ ) {
400
+ if ( needle.indexOf( haystack_of_substrings[ i ].trim() ) != -1 ) {
401
  return true;
402
  }
403
  }
wp-slimstat.min.js CHANGED
@@ -1 +1,530 @@
1
- var SlimStat={_id:"undefined"!=typeof SlimStatParams.id?SlimStatParams.id:"-1.0",_base64_key_str:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_plugins:{acrobat:{substrings:["Adobe","Acrobat"],active_x_strings:["AcroPDF.PDF","PDF.PDFCtrl.5"]},director:{substrings:["Shockwave","Director"],active_x_strings:["SWCtl.SWCtl"]},flash:{substrings:["Shockwave","Flash"],active_x_strings:["ShockwaveFlash.ShockwaveFlash"]},mediaplayer:{substrings:["Windows Media"],active_x_strings:["WMPlayer.OCX"]},quicktime:{substrings:["QuickTime"],active_x_strings:["QuickTime.QuickTime"]},real:{substrings:["RealPlayer"],active_x_strings:["rmocx.RealPlayer G2 Control","RealPlayer.RealPlayer(tm) ActiveX Control (32-bit)","RealVideo.RealVideo(tm) ActiveX Control (32-bit)"]},silverlight:{substrings:["Silverlight"],active_x_strings:["AgControl.AgControl"]}},_utf8_encode:function(t){var e,n,a="";for(t=t.replace(/\r\n/g,"\n"),e=0;e<t.length;e++)n=t.charCodeAt(e),128>n?a+=String.fromCharCode(n):n>127&&2048>n?(a+=String.fromCharCode(n>>6|192),a+=String.fromCharCode(63&n|128)):(a+=String.fromCharCode(n>>12|224),a+=String.fromCharCode(n>>6&63|128),a+=String.fromCharCode(63&n|128));return a},_base64_encode:function(t){var e,n,a,i,r,s,o,d="",l=0;for(t=SlimStat._utf8_encode(t);l<t.length;)e=t.charCodeAt(l++),n=t.charCodeAt(l++),a=t.charCodeAt(l++),i=e>>2,r=(3&e)<<4|n>>4,s=(15&n)<<2|a>>6,o=63&a,isNaN(n)?s=o=64:isNaN(a)&&(o=64),d=d+SlimStat._base64_key_str.charAt(i)+SlimStat._base64_key_str.charAt(r)+SlimStat._base64_key_str.charAt(s)+this._base64_key_str.charAt(o);return d},_detect_single_plugin_not_ie:function(t){var e,n,a,i;for(a in navigator.plugins){e=""+navigator.plugins[a].name+navigator.plugins[a].description,n=0;for(i in SlimStat._plugins[t].substrings)-1!=e.indexOf(SlimStat._plugins[t].substrings[i])&&n++;if(n==SlimStat._plugins[t].substrings.length)return!0}return!1},_detect_single_plugin_ie:function(t){var e;for(e in SlimStat._plugins[t].active_x_strings)try{return new ActiveXObject(SlimStat._plugins[t].active_x_strings[e]),!0}catch(n){return!1}},_detect_single_plugin:function(t){return navigator.plugins.length?this.detect=this._detect_single_plugin_not_ie:this.detect=this._detect_single_plugin_ie,this.detect(t)},detect_plugins:function(){var t,e=[];for(t in SlimStat._plugins)SlimStat._detect_single_plugin(t)&&e.push(t);return e.join(",")},get_page_performance:function(){return slim_performance=window.performance||window.mozPerformance||window.msPerformance||window.webkitPerformance||{},"undefined"==typeof slim_performance.timing?0:slim_performance.timing.loadEventEnd-slim_performance.timing.responseEnd},get_server_latency:function(){return slim_performance=window.performance||window.mozPerformance||window.msPerformance||window.webkitPerformance||{},"undefined"==typeof slim_performance.timing?0:slim_performance.timing.responseEnd-slim_performance.timing.connectEnd},send_to_server:function(t,e,n){if("undefined"==typeof SlimStatParams.ajaxurl||"undefined"==typeof t)return"function"==typeof e&&e(),!1;"undefined"==typeof n&&(n=!0);try{window.XMLHttpRequest?request=new XMLHttpRequest:window.ActiveXObject&&(request=new ActiveXObject("Microsoft.XMLHTTP"))}catch(a){return"function"==typeof e&&e(),!1}return slimstat_data_with_client_info=t+"&sw="+screen.width+"&sh="+screen.height+"&bw="+window.innerWidth+"&bh="+window.innerHeight+"&sl="+SlimStat.get_server_latency()+"&pp="+SlimStat.get_page_performance()+"&pl="+SlimStat.detect_plugins(),request?(request.open("POST",SlimStatParams.ajaxurl,n),request.setRequestHeader("Content-type","application/x-www-form-urlencoded"),request.send(slimstat_data_with_client_info),n?request.onreadystatechange=function(){4==request.readyState&&("undefined"==typeof SlimStatParams.id?(parsed_id=parseInt(request.responseText),!isNaN(parsed_id)&&parsed_id>0&&(SlimStat._id=request.responseText)):SlimStat._id=SlimStatParams.id,"function"==typeof e&&e())}:("undefined"==typeof SlimStatParams.id?(parsed_id=parseInt(request.responseText),!isNaN(parsed_id)&&parsed_id>0&&(SlimStat._id=request.responseText)):SlimStat._id=SlimStatParams.id,"function"==typeof e&&e()),!0):!1},ss_track:function(t,e,n,a,i){if(t=t?t:window.event,type="undefined"==typeof e?0:parseInt(e),note_array=[],"undefined"==typeof i&&(i=!0),parsed_id=parseInt(SlimStat._id),isNaN(parsed_id)||parsed_id<=0)return"function"==typeof a&&a(),!1;if(node="undefined"!=typeof t.target?t.target:"undefined"!=typeof t.srcElement?t.srcElement:!1,!node)return"function"==typeof a&&a(),!1;switch(3==node.nodeType&&(node=node.parentNode),parent_node=node.parentNode,resource_url="",node.nodeName){case"FORM":"undefined"!=typeof node.action&&node.action&&(resource_url=node.action);break;case"INPUT":for(;"undefined"!=typeof parent_node&&"FORM"!=parent_node.nodeName&&"BODY"!=parent_node.nodeName;)parent_node=parent_node.parentNode;if("undefined"!=typeof parent_node.action&&parent_node.action){resource_url=parent_node.action;break}default:if("A"!=node.nodeName)for(;"undefined"!=typeof node.parentNode&&null!=node.parentNode&&"A"!=node.nodeName&&"BODY"!=node.nodeName;)node=node.parentNode;"undefined"!=typeof node.hash&&node.hash&&node.hostname==location.hostname?resource_url=node.hash:"undefined"!=typeof node.href&&(resource_url=node.href),"function"==typeof node.getAttribute&&("undefined"!=typeof node.getAttribute("title")&&node.getAttribute("title")&&note_array.push("Title:"+node.getAttribute("title")),"undefined"!=typeof node.getAttribute("id")&&node.getAttribute("id")&&note_array.push("ID:"+node.getAttribute("id")))}return pos_x=-1,pos_y=-1,position="","undefined"!=typeof t.pageX&&"undefined"!=typeof t.pageY?(pos_x=t.pageX,pos_y=t.pageY):"undefined"!=typeof t.clientX&&"undefined"!=typeof t.clientY&&"undefined"!=typeof document.body.scrollLeft&&"undefined"!=typeof document.documentElement.scrollLeft&&"undefined"!=typeof document.body.scrollTop&&"undefined"!=typeof document.documentElement.scrollTop&&(pos_x=t.clientX+document.body.scrollLeft+document.documentElement.scrollLeft,pos_y=t.clientY+document.body.scrollTop+document.documentElement.scrollTop),pos_x>0&&pos_y>0&&(position=pos_x+","+pos_y),event_description=t.type,"keypress"==t.type?event_description+="; keypress:"+String.fromCharCode(parseInt(t.which)):"click"==t.type&&(event_description+="; which:"+t.which),"undefined"!=typeof n&&n&&note_array.push(n),note_string=SlimStat._base64_encode(note_array.join(", ")),requested_op="add",1==type?resource_url=resource_url.substring(resource_url.indexOf(location.hostname)+location.hostname.length):(0==type||2==type)&&(requested_op="update"),SlimStat.send_to_server("action=slimtrack&op="+requested_op+"&id="+SlimStat._id+"&ty="+type+"&ref="+SlimStat._base64_encode(document.referrer)+"&res="+SlimStat._base64_encode(resource_url)+"&pos="+position+"&des="+SlimStat._base64_encode(event_description)+"&no="+note_string,a,i),!0},add_event:function(t,e,n){t&&t.addEventListener?t.addEventListener(e,n,!1):t&&t.attachEvent?(t["e"+e+n]=n,t[e+n]=function(){t["e"+e+n](window.event)},t.attachEvent("on"+e,t[e+n])):t["on"+e]=t["e"+e+n]},event_fire:function(t,e){document.createEvent?(new_event=document.createEvent("MouseEvents"),new_event.initEvent(e.type,!0,!1,document.defaultView,e.button),t.dispatchEvent(new_event)):document.createEventObject&&(new_event=document.createEventObject(),t.fireEvent("on"+e.type,new_event))},in_array:function(t,e){for(var n=0;n<e.length;n++)if("function"==typeof e[n].trim&&e[n].trim()==t)return!0;return!1},in_array_substring:function(t,e){for(var n=0;n<e.length;n++)if("function"==typeof e[n].trim&&-1!=t.indexOf(e[n].trim()))return!0;return!1}};SlimStat.add_event(window,"load",function(){if("undefined"==typeof SlimStatParams.disable_outbound_tracking){all_links=document.getElementsByTagName("a");for(var t="undefined"!=typeof SlimStatParams.extensions_to_track&&SlimStatParams.extensions_to_track?SlimStatParams.extensions_to_track.split(","):[],e="undefined"!=typeof SlimStatParams.outbound_classes_rel_href_to_ignore&&SlimStatParams.outbound_classes_rel_href_to_ignore?SlimStatParams.outbound_classes_rel_href_to_ignore.split(","):[],n="undefined"!=typeof SlimStatParams.outbound_classes_rel_href_to_not_track&&SlimStatParams.outbound_classes_rel_href_to_not_track?SlimStatParams.outbound_classes_rel_href_to_not_track.split(","):[],a=0;a<all_links.length;a++){var i=all_links[a];if(i.setAttribute("data-slimstat-clicked","false"),i.setAttribute("data-slimstat-type",!i.href||i.hostname!=location.hostname&&-1!=i.href.indexOf("://")?0:2),i.setAttribute("data-slimstat-tracking","true"),i.setAttribute("data-slimstat-callback","true"),i.setAttribute("data-slimstat-async","false"),2!=i.getAttribute("data-slimstat-type")||"undefined"!=typeof SlimStatParams.track_internal_links&&"false"!=SlimStatParams.track_internal_links||i.setAttribute("data-slimstat-tracking","false"),"true"==i.getAttribute("data-slimstat-tracking")&&(e.length>0||n.length>0)){classes_current_link="undefined"!=typeof i.className&&i.className?i.className.split(" "):[];for(var r=0;r<classes_current_link.length;r++)if(SlimStat.in_array_substring(classes_current_link[r],e)&&i.setAttribute("data-slimstat-callback","false"),SlimStat.in_array_substring(classes_current_link[r],n)){i.setAttribute("data-slimstat-tracking","false");break}}"true"==i.getAttribute("data-slimstat-tracking")&&"undefined"!=typeof i.attributes.rel&&i.attributes.rel.value&&(SlimStat.in_array_substring(i.attributes.rel.value,e)&&i.setAttribute("data-slimstat-callback","false"),SlimStat.in_array_substring(i.attributes.rel.value,n)&&i.setAttribute("data-slimstat-tracking","false")),"true"==i.getAttribute("data-slimstat-tracking")&&"undefined"!=typeof i.href&&i.href&&(SlimStat.in_array_substring(i.href,e)&&i.setAttribute("data-slimstat-callback","false"),SlimStat.in_array_substring(i.href,n)&&i.setAttribute("data-slimstat-tracking","false")),extension_current_link=i.pathname.split(".").pop().replace(/[\/\-]/g,""),t.length>0&&2==i.getAttribute("data-slimstat-type")&&SlimStat.in_array(extension_current_link,t)&&(i.setAttribute("data-slimstat-tracking","true"),i.setAttribute("data-slimstat-type",1)),"true"==i.getAttribute("data-slimstat-tracking")&&i.target&&!i.target.match(/^_(self|parent|top)$/i)&&(i.setAttribute("data-slimstat-callback","false"),i.setAttribute("data-slimstat-async","true")),"false"==i.getAttribute("data-slimstat-tracking")&&i.setAttribute("data-slimstat-callback","false"),SlimStat.add_event(i,"click",function(t){if("true"==this.getAttribute("data-slimstat-tracking")&&"false"==this.getAttribute("data-slimstat-clicked")){if("true"==this.getAttribute("data-slimstat-callback"))return this.setAttribute("data-slimstat-clicked","true"),function(t,e){SlimStat.ss_track(e,t.getAttribute("data-slimstat-type"),"",function(){SlimStat.event_fire(t,e)},"true"==t.getAttribute("data-slimstat-async")||"false"==t.getAttribute("data-slimstat-callback"))}(this,t),!1;SlimStat.ss_track(t,this.getAttribute("data-slimstat-type"),"",function(){},"true"==this.getAttribute("data-slimstat-async")||"false"==this.getAttribute("data-slimstat-callback"))}})}}});var slimstat_data="action=slimtrack";"undefined"!=typeof SlimStatParams.id&&parseInt(SlimStatParams.id)>0?slimstat_data+="&op=update&id="+SlimStatParams.id:"undefined"!=typeof SlimStatParams.ci&&(slimstat_data+="&op=add&id="+SlimStatParams.ci+"&ref="+SlimStat._base64_encode(document.referrer)+"&res="+SlimStat._base64_encode(window.location.href)),slimstat_data.length&&SlimStat.add_event(window,"load",function(){setTimeout(function(){SlimStat.send_to_server(slimstat_data)},0)});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ var SlimStat = {
2
+ // Private Properties
3
+ _id: "undefined" != typeof SlimStatParams.id ? SlimStatParams.id : "-1.0",
4
+ _base64_key_str: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
5
+ _plugins: {
6
+ acrobat: {
7
+ substrings: ["Adobe", "Acrobat"],
8
+ active_x_strings: ["AcroPDF.PDF", "PDF.PDFCtrl.5"]
9
+ },
10
+ director: {
11
+ substrings: ["Shockwave", "Director"],
12
+ active_x_strings: ["SWCtl.SWCtl"]
13
+ },
14
+ flash: {
15
+ substrings: ["Shockwave", "Flash"],
16
+ active_x_strings: ["ShockwaveFlash.ShockwaveFlash"]
17
+ },
18
+ mediaplayer: {
19
+ substrings: ["Windows Media"],
20
+ active_x_strings: ["WMPlayer.OCX"]
21
+ },
22
+ quicktime: {
23
+ substrings: ["QuickTime"],
24
+ active_x_strings: ["QuickTime.QuickTime"]
25
+ },
26
+ real: {
27
+ substrings: ["RealPlayer"],
28
+ active_x_strings: ["rmocx.RealPlayer G2 Control", "RealPlayer.RealPlayer(tm) ActiveX Control (32-bit)", "RealVideo.RealVideo(tm) ActiveX Control (32-bit)"]
29
+ },
30
+ silverlight: {
31
+ substrings: ["Silverlight"],
32
+ active_x_strings: ["AgControl.AgControl"]
33
+ }
34
+ },
35
+
36
+ _utf8_encode : function (string) {
37
+ var n, c, utftext = "";
38
+
39
+ string = string.replace(/\r\n/g,"\n");
40
+
41
+ for (n = 0; n < string.length; n++) {
42
+ c = string.charCodeAt(n);
43
+
44
+ if (c < 128) {
45
+ utftext += String.fromCharCode(c);
46
+ }
47
+ else if((c > 127) && (c < 2048)) {
48
+ utftext += String.fromCharCode((c >> 6) | 192);
49
+ utftext += String.fromCharCode((c & 63) | 128);
50
+ }
51
+ else {
52
+ utftext += String.fromCharCode((c >> 12) | 224);
53
+ utftext += String.fromCharCode(((c >> 6) & 63) | 128);
54
+ utftext += String.fromCharCode((c & 63) | 128);
55
+ }
56
+ }
57
+ return utftext;
58
+ },
59
+
60
+ // Base64 Encode - http://www.webtoolkit.info/
61
+ _base64_encode : function ( input ) {
62
+ var chr1, chr2, chr3, enc1, enc2, enc3, enc4, output = "", i = 0;
63
+
64
+ input = SlimStat._utf8_encode(input);
65
+
66
+ while (i < input.length) {
67
+ chr1 = input.charCodeAt(i++);
68
+ chr2 = input.charCodeAt(i++);
69
+ chr3 = input.charCodeAt(i++);
70
+
71
+ enc1 = chr1 >> 2;
72
+ enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
73
+ enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
74
+ enc4 = chr3 & 63;
75
+
76
+ if (isNaN(chr2)) {
77
+ enc3 = enc4 = 64;
78
+ } else if (isNaN(chr3)) {
79
+ enc4 = 64;
80
+ }
81
+
82
+ output = output + SlimStat._base64_key_str.charAt(enc1) + SlimStat._base64_key_str.charAt(enc2) + SlimStat._base64_key_str.charAt(enc3) + this._base64_key_str.charAt(enc4);
83
+ }
84
+ return output;
85
+ },
86
+
87
+ _detect_single_plugin_not_ie : function ( plugin_name ) {
88
+ var plugin, haystack, found, i, j;
89
+
90
+ for ( i in navigator.plugins ) {
91
+ haystack = '' + navigator.plugins[ i ].name + navigator.plugins[ i ].description;
92
+ found = 0;
93
+
94
+ for ( j in SlimStat._plugins[ plugin_name ].substrings ) {
95
+ if ( haystack.indexOf( SlimStat._plugins[ plugin_name ].substrings[ j ] ) != -1 ) {
96
+ found++;
97
+ }
98
+ }
99
+
100
+ if ( found == SlimStat._plugins[ plugin_name ].substrings.length ) {
101
+ return true;
102
+ }
103
+ }
104
+ return false;
105
+ },
106
+
107
+ _detect_single_plugin_ie : function ( plugin_name ) {
108
+ var i;
109
+
110
+ for (i in SlimStat._plugins[plugin_name].active_x_strings) {
111
+ try {
112
+ new ActiveXObject( SlimStat._plugins[plugin_name].active_x_strings[i] );
113
+ return true;
114
+ }
115
+ catch(e) {
116
+ return false;
117
+ }
118
+ }
119
+ },
120
+
121
+ _detect_single_plugin : function ( plugin_name ) {
122
+ if( navigator.plugins.length ) {
123
+ this.detect = this._detect_single_plugin_not_ie;
124
+ }
125
+ else {
126
+ this.detect = this._detect_single_plugin_ie;
127
+ }
128
+ return this.detect( plugin_name );
129
+ },
130
+
131
+ detect_plugins : function () {
132
+ var a_plugin, plugins = [];
133
+
134
+ for (a_plugin in SlimStat._plugins) {
135
+ if (SlimStat._detect_single_plugin(a_plugin)) {
136
+ plugins.push( a_plugin );
137
+ }
138
+ }
139
+ return plugins.join( "," );
140
+ },
141
+
142
+ get_page_performance : function () {
143
+ slim_performance = window.performance || window.mozPerformance || window.msPerformance || window.webkitPerformance || {};
144
+ if ( "undefined" == typeof slim_performance.timing ){
145
+ return 0;
146
+ }
147
+
148
+ return slim_performance.timing.loadEventEnd - slim_performance.timing.responseEnd;
149
+ },
150
+
151
+ get_server_latency : function () {
152
+ slim_performance = window.performance || window.mozPerformance || window.msPerformance || window.webkitPerformance || {};
153
+ if ( "undefined" == typeof slim_performance.timing ){
154
+ return 0;
155
+ }
156
+
157
+ return slim_performance.timing.responseEnd - slim_performance.timing.connectEnd;
158
+ },
159
+
160
+ send_to_server : function ( data, callback, async ) {
161
+ if ( "undefined" == typeof SlimStatParams.ajaxurl || "undefined" == typeof data ) {
162
+ if ( "function" == typeof callback ){
163
+ callback();
164
+ }
165
+ return false;
166
+ }
167
+
168
+ if ( "undefined" == typeof async ) {
169
+ async = true;
170
+ }
171
+
172
+ try {
173
+ if ( window.XMLHttpRequest ) {
174
+ request = new XMLHttpRequest();
175
+ }
176
+ else if ( window.ActiveXObject ) { // code for IE6, IE5
177
+ request = new ActiveXObject( "Microsoft.XMLHTTP" );
178
+ }
179
+ } catch ( failed ) {
180
+ if ( "function" == typeof callback ){
181
+ callback();
182
+ }
183
+ return false;
184
+ }
185
+
186
+ slimstat_data_with_client_info = data + "&sw=" + screen.width + "&sh=" + screen.height + "&bw=" + window.innerWidth + "&bh=" + window.innerHeight + "&sl=" + SlimStat.get_server_latency() + "&pp=" + SlimStat.get_page_performance() + "&pl=" + SlimStat.detect_plugins()
187
+
188
+ if ( request ) {
189
+ request.open( "POST", SlimStatParams.ajaxurl, async );
190
+ request.setRequestHeader( "Content-type", "application/x-www-form-urlencoded" );
191
+ request.send( slimstat_data_with_client_info );
192
+
193
+ if ( async ) {
194
+ request.onreadystatechange = function() {
195
+ if ( 4 == request.readyState ) {
196
+ if ( "undefined" == typeof SlimStatParams.id ) {
197
+ parsed_id = parseInt( request.responseText );
198
+ if ( !isNaN( parsed_id ) && parsed_id > 0 ) {
199
+ SlimStat._id = request.responseText;
200
+ }
201
+ }
202
+ else {
203
+ SlimStat._id = SlimStatParams.id;
204
+ }
205
+
206
+ if ( "function" == typeof callback ) {
207
+ callback();
208
+ }
209
+ }
210
+ }
211
+ }
212
+ else {
213
+ if ( "undefined" == typeof SlimStatParams.id ) {
214
+ parsed_id = parseInt( request.responseText );
215
+ if ( !isNaN( parsed_id ) && parsed_id > 0 ) {
216
+ SlimStat._id = request.responseText;
217
+ }
218
+ }
219
+ else {
220
+ SlimStat._id = SlimStatParams.id;
221
+ }
222
+
223
+ if ( "function" == typeof callback ) {
224
+ callback();
225
+ }
226
+ }
227
+
228
+ return true;
229
+ }
230
+
231
+ return false;
232
+ },
233
+
234
+ ss_track : function ( e, c, note, callback, async ) {
235
+ // Check function params
236
+ e = e ? e : window.event;
237
+ type = ( "undefined" == typeof c ) ? 0 : parseInt( c );
238
+ note_array = [];
239
+
240
+ if ( "undefined" == typeof async ) {
241
+ async = true;
242
+ }
243
+
244
+ parsed_id = parseInt( SlimStat._id );
245
+ if ( isNaN( parsed_id ) || parsed_id <= 0 ) {
246
+ if ( "function" == typeof callback ) {
247
+ callback();
248
+ }
249
+ return false;
250
+ }
251
+
252
+ node = ( "undefined" != typeof e.target ) ? e.target : ( ( "undefined" != typeof e.srcElement ) ? e.srcElement : false );
253
+ if ( !node ) {
254
+ if ("function" == typeof callback ) {
255
+ callback();
256
+ }
257
+ return false;
258
+ }
259
+
260
+ // Safari bug
261
+ if ( 3 == node.nodeType ) {
262
+ node = node.parentNode;
263
+ }
264
+
265
+ parent_node = node.parentNode;
266
+ resource_url = '';
267
+
268
+ // This handler can be attached to any element, but only A carries the extra info we need
269
+ switch ( node.nodeName ) {
270
+ case 'FORM':
271
+ if ( "undefined" != typeof node.action && node.action ) {
272
+ resource_url = node.action;
273
+ }
274
+ break;
275
+
276
+ case 'INPUT':
277
+ // Let's look for a FORM element
278
+ while ( "undefined" != typeof parent_node && parent_node.nodeName != "FORM" && parent_node.nodeName != "BODY" ) {
279
+ parent_node = parent_node.parentNode;
280
+ }
281
+ if ( "undefined" != typeof parent_node.action && parent_node.action ) {
282
+ resource_url = parent_node.action;
283
+ break;
284
+ }
285
+
286
+ default:
287
+ // Any other element
288
+ if ( "A" != node.nodeName ) {
289
+ while ( "undefined" != typeof node.parentNode && null != node.parentNode && "A" != node.nodeName && "BODY" != node.nodeName ) {
290
+ node = node.parentNode;
291
+ }
292
+ }
293
+
294
+ // Anchor in the same page
295
+ if ( "undefined" != typeof node.hash && node.hash && node.hostname == location.hostname ) {
296
+ resource_url = node.hash;
297
+ }
298
+ else if ( "undefined" != typeof node.href ) {
299
+ resource_url = node.href;
300
+ }
301
+
302
+ // If this element has a title, we can record that as well
303
+ if ( "function" == typeof node.getAttribute){
304
+ if ( "undefined" != typeof node.getAttribute("title") && node.getAttribute("title") ) {
305
+ note_array.push( "Title:" + node.getAttribute( "title" ) );
306
+ }
307
+ if ( "undefined" != typeof node.getAttribute("id") && node.getAttribute("id") ) {
308
+ note_array.push( "ID:" + node.getAttribute( "id" ) );
309
+ }
310
+ }
311
+ }
312
+
313
+ // Event coordinates
314
+ pos_x = -1;
315
+ pos_y = -1;
316
+ position = "";
317
+
318
+ if ( "undefined" != typeof e.pageX && "undefined" != typeof e.pageY ) {
319
+ pos_x = e.pageX;
320
+ pos_y = e.pageY;
321
+ }
322
+ else if ( "undefined" != typeof e.clientX && "undefined" != typeof e.clientY &&
323
+ "undefined" != typeof document.body.scrollLeft && "undefined" != typeof document.documentElement.scrollLeft &&
324
+ "undefined" != typeof document.body.scrollTop && "undefined" != typeof document.documentElement.scrollTop ) {
325
+ pos_x = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
326
+ pos_y = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
327
+ }
328
+
329
+ if ( pos_x > 0 && pos_y > 0 ) {
330
+ position = pos_x + "," + pos_y;
331
+ }
332
+
333
+ // Event description and button pressed
334
+ event_description = e.type;
335
+ if ( "keypress" == e.type ) {
336
+ event_description += '; keypress:' + String.fromCharCode( parseInt( e.which ) );
337
+ }
338
+ else if ( "click" == e.type ) {
339
+ event_description += '; which:' + e.which;
340
+ }
341
+
342
+ // Custom description for this event
343
+ if ( "undefined" != typeof note && note ){
344
+ note_array.push( note );
345
+ }
346
+
347
+ note_string = SlimStat._base64_encode( note_array.join( ", " ) );
348
+ requested_op = "add";
349
+
350
+ if ( 1 == type ) {
351
+ resource_url = resource_url.substring( resource_url.indexOf( location.hostname ) + location.hostname.length );
352
+ }
353
+ else if ( 0 == type || 2 == type ) {
354
+ requested_op = "update";
355
+ }
356
+
357
+ SlimStat.send_to_server( "action=slimtrack&op=" + requested_op + "&id=" + SlimStat._id + "&ty=" + type + "&ref=" + SlimStat._base64_encode( document.referrer ) + "&res=" + SlimStat._base64_encode( resource_url ) + "&pos=" + position + "&des=" + SlimStat._base64_encode( event_description ) + "&no=" + note_string, callback, async );
358
+
359
+ return true;
360
+ },
361
+
362
+ add_event : function ( obj, type, fn ) {
363
+ if ( obj && obj.addEventListener ) {
364
+ obj.addEventListener( type, fn, false );
365
+ }
366
+ else if ( obj && obj.attachEvent ) {
367
+ obj[ "e" + type + fn ] = fn;
368
+ obj[ type + fn ] = function() { obj[ "e" + type + fn ] ( window.event ); }
369
+ obj.attachEvent( "on"+type, obj[type+fn] );
370
+ }
371
+ else {
372
+ obj[ "on" + type ] = obj[ "e" + type + fn ];
373
+ }
374
+ },
375
+
376
+ event_fire : function ( target, event_object ) {
377
+ if ( document.createEvent ) {
378
+
379
+ new_event = document.createEvent( 'MouseEvents' );
380
+ new_event.initEvent( event_object.type, true, false, document.defaultView, event_object.button );
381
+ target.dispatchEvent( new_event );
382
+ }
383
+ else if ( document.createEventObject ) {
384
+ new_event = document.createEventObject();
385
+ target.fireEvent( 'on' + event_object.type, new_event );
386
+ }
387
+ },
388
+
389
+ in_array : function ( needle, haystack ) {
390
+ for ( var i = 0; i < haystack.length; i++ ) {
391
+ if ( haystack[ i ].trim() == needle ) {
392
+ return true;
393
+ }
394
+ }
395
+ return false;
396
+ },
397
+
398
+ in_array_substring : function ( needle, haystack_of_substrings ) {
399
+ for ( var i = 0; i < haystack_of_substrings.length; i++ ) {
400
+ if ( needle.indexOf( haystack_of_substrings[ i ].trim() ) != -1 ) {
401
+ return true;
402
+ }
403
+ }
404
+ return false;
405
+ }
406
+ };
407
+
408
+ SlimStat.add_event( window, "load", function() {
409
+ if ( "undefined" == typeof SlimStatParams.disable_outbound_tracking ) {
410
+ all_links = document.getElementsByTagName( "a" );
411
+ var extensions_to_track = ( "undefined" != typeof SlimStatParams.extensions_to_track && SlimStatParams.extensions_to_track ) ? SlimStatParams.extensions_to_track.split( ',' ) : [];
412
+ var to_ignore = ( "undefined" != typeof SlimStatParams.outbound_classes_rel_href_to_ignore && SlimStatParams.outbound_classes_rel_href_to_ignore ) ? SlimStatParams.outbound_classes_rel_href_to_ignore.split( ',' ) : [];
413
+ var to_not_track = ( "undefined" != typeof SlimStatParams.outbound_classes_rel_href_to_not_track && SlimStatParams.outbound_classes_rel_href_to_not_track ) ? SlimStatParams.outbound_classes_rel_href_to_not_track.split( ',' ) : [];
414
+
415
+ for (var i = 0; i < all_links.length; i++) {
416
+ var cur_link = all_links[i];
417
+
418
+ // Types
419
+ // 0: external
420
+ // 1: download
421
+ // 2: internal
422
+
423
+ cur_link.setAttribute( "data-slimstat-clicked", "false" );
424
+ cur_link.setAttribute( "data-slimstat-type", ( cur_link.href && ( cur_link.hostname == location.hostname || cur_link.href.indexOf('://') == -1 ) ) ? 2 : 0 );
425
+ cur_link.setAttribute( "data-slimstat-tracking", "true" );
426
+ cur_link.setAttribute( "data-slimstat-callback", "true" );
427
+ cur_link.setAttribute( "data-slimstat-async", "false" );
428
+
429
+ // Track other internal links?
430
+ if ( 2 == cur_link.getAttribute( "data-slimstat-type" ) && ( "undefined" == typeof SlimStatParams.track_internal_links || "false" == SlimStatParams.track_internal_links ) ) {
431
+ cur_link.setAttribute( "data-slimstat-tracking", "false" );
432
+ }
433
+
434
+ // Do not invoke the callback or don't track links with given classes
435
+ if ( "true" == cur_link.getAttribute( "data-slimstat-tracking" ) && ( to_ignore.length > 0 || to_not_track.length > 0 ) ) {
436
+ classes_current_link = ( "undefined" != typeof cur_link.className && cur_link.className ) ? cur_link.className.split( " " ) : [];
437
+
438
+ for ( var cl = 0; cl < classes_current_link.length; cl++ ) {
439
+ if ( SlimStat.in_array_substring( classes_current_link[ cl ], to_ignore ) ) {
440
+ cur_link.setAttribute( "data-slimstat-callback", "false" );
441
+ }
442
+ if ( SlimStat.in_array_substring( classes_current_link[ cl ], to_not_track ) ) {
443
+ cur_link.setAttribute( "data-slimstat-tracking", "false" );
444
+ break;
445
+ }
446
+ }
447
+ }
448
+
449
+ // Do not invoke the callback on links with given rel
450
+ if ( "true" == cur_link.getAttribute( "data-slimstat-tracking" ) && "undefined" != typeof cur_link.attributes.rel && cur_link.attributes.rel.value ) {
451
+ if ( SlimStat.in_array_substring( cur_link.attributes.rel.value, to_ignore ) ) {
452
+ cur_link.setAttribute( "data-slimstat-callback", "false" );
453
+ }
454
+ if ( SlimStat.in_array_substring( cur_link.attributes.rel.value, to_not_track ) ) {
455
+ cur_link.setAttribute( "data-slimstat-tracking", "false" );
456
+ }
457
+ }
458
+
459
+ // Do not invoke the callback on links with given href
460
+ if ( "true" == cur_link.getAttribute( "data-slimstat-tracking" ) && "undefined" != typeof cur_link.href && cur_link.href ) {
461
+ if ( SlimStat.in_array_substring( cur_link.href, to_ignore ) ) {
462
+ cur_link.setAttribute( "data-slimstat-callback", "false" );
463
+ }
464
+ if ( SlimStat.in_array_substring( cur_link.href, to_not_track ) ) {
465
+ cur_link.setAttribute( "data-slimstat-tracking", "false" );
466
+ }
467
+ }
468
+
469
+ // Track downloads (internal)
470
+ extension_current_link = cur_link.pathname.split( '.' ).pop().replace( /[\/\-]/g, '' );
471
+ if ( extensions_to_track.length > 0 && 2 == cur_link.getAttribute( "data-slimstat-type" ) && SlimStat.in_array( extension_current_link, extensions_to_track ) ) {
472
+ cur_link.setAttribute( "data-slimstat-tracking", "true" );
473
+ cur_link.setAttribute( "data-slimstat-type", 1 );
474
+ }
475
+
476
+ // Do not invoke the callback on links that open a new window
477
+ if ( "true" == cur_link.getAttribute( "data-slimstat-tracking" ) && cur_link.target && !cur_link.target.match( /^_(self|parent|top)$/i ) ) {
478
+ cur_link.setAttribute( "data-slimstat-callback", "false" );
479
+ cur_link.setAttribute( "data-slimstat-async", "true" );
480
+ }
481
+
482
+ // No callback if this link is not being tracked
483
+ if ( "false" == cur_link.getAttribute( "data-slimstat-tracking" ) ) {
484
+ cur_link.setAttribute( "data-slimstat-callback", "false" );
485
+ }
486
+
487
+ SlimStat.add_event( cur_link, "click", function( e ) {
488
+ if ( "true" == this.getAttribute( "data-slimstat-tracking" ) && "false" == this.getAttribute( "data-slimstat-clicked" ) ) {
489
+ if ( "true" == this.getAttribute( "data-slimstat-callback" ) ) {
490
+ this.setAttribute( "data-slimstat-clicked", "true" );
491
+
492
+ (function( node, event_object ) {
493
+ SlimStat.ss_track( event_object, node.getAttribute( "data-slimstat-type" ), "", function() {
494
+ SlimStat.event_fire( node, event_object );
495
+ }, ( node.getAttribute( "data-slimstat-async" ) == "true" || node.getAttribute( "data-slimstat-callback" ) == "false" ) );
496
+ })( this, e );
497
+
498
+ return false;
499
+ }
500
+ else{
501
+ SlimStat.ss_track( e, this.getAttribute( "data-slimstat-type" ), "", function() {}, ( this.getAttribute( "data-slimstat-async" ) == "true" || this.getAttribute( "data-slimstat-callback" ) == "false" ) );
502
+ }
503
+ }
504
+ });
505
+ }
506
+ }
507
+ } );
508
+
509
+ var slimstat_data = "action=slimtrack";
510
+ if ( "undefined" != typeof SlimStatParams.id && parseInt( SlimStatParams.id ) > 0 ) {
511
+ slimstat_data += "&op=update&id=" + SlimStatParams.id;
512
+ }
513
+ else if ( "undefined" != typeof SlimStatParams.ci ) {
514
+ slimstat_data += "&op=add&id=" + SlimStatParams.ci + "&ref=" + SlimStat._base64_encode( document.referrer ) + "&res=" + SlimStat._base64_encode( window.location.href );
515
+ }
516
+
517
+ // Gathers all the information and sends it to the server
518
+ if ( slimstat_data.length ) {
519
+ SlimStat.add_event( window, 'load', function(){
520
+ setTimeout( function(){
521
+ SlimStat.send_to_server(slimstat_data);
522
+ }, 0 );
523
+ } );
524
+ }
525
+
526
+ if ( typeof String.prototype.trim !== 'function' ) {
527
+ String.prototype.trim = function() {
528
+ return this.replace( /^\s+|\s+$/g, '' );
529
+ }
530
+ }
wp-slimstat.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Slimstat
4
  Plugin URI: http://wordpress.org/plugins/wp-slimstat/
5
  Description: The leading web analytics plugin for WordPress
6
- Version: 4.2.4
7
  Author: Camu
8
  Author URI: http://www.wp-slimstat.com/
9
  Text Domain: wp-slimstat
@@ -15,7 +15,7 @@ if ( !empty( wp_slimstat::$options ) ) {
15
  }
16
 
17
  class wp_slimstat {
18
- public static $version = '4.2.4';
19
  public static $options = array();
20
 
21
  public static $wpdb = '';
@@ -49,20 +49,19 @@ class wp_slimstat {
49
  // Allow third-party tools to use a custom database for Slimstat
50
  self::$wpdb = apply_filters( 'slimstat_custom_wpdb', $GLOBALS[ 'wpdb' ] );
51
 
52
- // Add a menu to the admin bar ( this function is declared here and not in wp_slimstat_admin because the latter is only initialized if is_admin(), and not in the front-end )
53
- if ( self::$options[ 'use_separate_menu' ] != 'yes' && is_admin_bar_showing() ) {
54
- add_action( 'admin_bar_menu', array( __CLASS__, 'wp_slimstat_adminbar' ), 100 );
55
- }
56
-
57
  // Hook a DB clean-up routine to the daily cronjob
58
  add_action( 'wp_slimstat_purge', array( __CLASS__, 'wp_slimstat_purge' ) );
59
 
60
  // Allow external domains on CORS requests
61
  add_filter( 'allowed_http_origins', array(__CLASS__, 'open_cors_admin_ajax' ) );
62
 
63
- // Define the folder where to store the geolocation database
64
- self::$maxmind_path = apply_filters( 'slimstat_maxmind_path', wp_upload_dir() );
65
- self::$maxmind_path = self::$maxmind_path['basedir'] . '/wp-slimstat/maxmind.dat';
 
 
 
 
66
 
67
  // Enable the tracker (both server- and client-side)
68
  if ( !is_admin() || self::$options[ 'track_admin_pages' ] == 'yes' ) {
@@ -87,7 +86,7 @@ class wp_slimstat {
87
  }
88
  }
89
 
90
- if ( self::$options[ 'enable_ads_network' ] == 'yes' ) {
91
  add_action( 'init', array( __CLASS__, 'init_pidx' ) );
92
  add_action( 'wp_head', array( __CLASS__, 'print_code' ) );
93
  add_filter( 'the_content', array( __CLASS__, 'print_code' ) );
@@ -97,6 +96,11 @@ class wp_slimstat {
97
  // Shortcodes
98
  add_shortcode('slimstat', array(__CLASS__, 'slimstat_shortcode'), 15);
99
 
 
 
 
 
 
100
  // Update the options before shutting down
101
  add_action('shutdown', array(__CLASS__, 'slimstat_save_options'), 100);
102
  }
@@ -251,23 +255,29 @@ class wp_slimstat {
251
  return $_argument;
252
  }
253
 
254
- // Fix Google Images referring domain
255
- if ( strpos(self::$stat[ 'referer' ], 'www.google' ) !== false ) {
256
- if ( strpos( self::$stat[ 'referer' ], '/imgres?' ) !== false ) {
257
- self::$stat[ 'referer' ] = str_replace( 'www.google', 'images.google', self::$stat[ 'referer' ] );
258
- }
259
- if ( strpos( self::$stat[ 'referer' ], '/url?' ) !== false ) {
260
- self::$stat[ 'referer' ] = str_replace( '/url?', '/search?', self::$stat[ 'referer' ] );
261
- }
262
  }
 
 
 
 
 
 
 
 
 
 
263
 
264
- // Is this referer blacklisted?
265
- foreach(self::string_to_array(self::$options['ignore_referers']) as $a_filter){
266
- $pattern = str_replace( array('\*', '\!') , array('(.*)', '.'), preg_quote($a_filter, '/'));
267
- if ( preg_match( "@^$pattern$@i", self::$stat[ 'referer' ] ) ) {
268
- self::$stat[ 'id' ] = -207;
269
- self::_set_error_array( sprintf( __( 'Notice: Referrer %s is blacklisted', 'wp-slimstat'), self::$stat[ 'referer' ] ) );
270
- return $_argument;
 
271
  }
272
  }
273
  }
@@ -302,13 +312,12 @@ class wp_slimstat {
302
  self::$stat = self::$stat + $content_info;
303
 
304
  // We want to record both hits and searches (performed through the site search form)
305
- if (self::$stat['content_type'] == 'external'){
306
- self::$stat['resource'] = $_SERVER['HTTP_REFERER'];
307
- self::$stat['referer'] = '';
308
  }
309
- else if (is_array(self::$data_js) && isset(self::$data_js['res'])){
310
-
311
- $parsed_permalink = parse_url(base64_decode(self::$data_js['res']));
312
  self::$stat['searchterms'] = self::_get_search_terms($referer);
313
 
314
  // Was this an internal search?
@@ -329,18 +338,8 @@ class wp_slimstat {
329
  }
330
 
331
  // Don't store empty values in the database
332
- if ( empty( self::$stat['searchterms'] ) ) {
333
- unset( self::$stat['searchterms'] );
334
- }
335
-
336
- // If referer is site itself, unset value
337
- if ( !empty( self::$stat[ 'referer' ] ) ) {
338
- $parsed_referer = parse_url( self::$stat[ 'referer' ], PHP_URL_HOST );
339
- $parsed_site_url = parse_url( get_site_url(), PHP_URL_HOST );
340
-
341
- if ( $parsed_referer == $parsed_site_url ) {
342
- unset( self::$stat[ 'referer' ] );
343
- }
344
  }
345
 
346
  // Do not track report pages in the admin
@@ -538,8 +537,8 @@ class wp_slimstat {
538
  self::_set_error_array( __( 'Error:', 'wp-slimstat' ) . ' ' . self::$wpdb->last_error );
539
 
540
  // Attempt to init the environment (new blog in a MU network?)
541
- include_once(WP_PLUGIN_DIR.'/wp-slimstat/admin/wp-slimstat-admin.php');
542
- wp_slimstat_admin::init_environment(true);
543
 
544
  return $_argument;
545
  }
@@ -750,30 +749,69 @@ class wp_slimstat {
750
  /**
751
  * Sniffs out referrals from search engines and tries to determine the query string
752
  */
753
- protected static function _get_search_terms($_url = array()){
754
- if (empty($_url) || !isset($_url['host']) || !isset($_url['query']) || strpos($_url['host'], 'facebook') !== false) return '';
755
-
756
- $query_formats = array('daum' => 'q', 'eniro' => 'search_word', 'naver' => 'query', 'google' => 'q', 'www.google' => 'as_q', 'yahoo' => 'p', 'msn' => 'q', 'bing' => 'q', 'aol' => 'query', 'lycos' => 'q', 'ask' => 'q', 'cnn' => 'query', 'about' => 'q', 'mamma' => 'q', 'voila' => 'rdata', 'virgilio' => 'qs', 'baidu' => 'wd', 'yandex' => 'text', 'najdi' => 'q', 'seznam' => 'q', 'search' => 'q', 'onet' => 'qt', 'yam' => 'k', 'pchome' => 'q', 'kvasir' => 'q', 'mynet' => 'q', 'nova_rambler' => 'words');
757
- $charsets = array('baidu' => 'EUC-CN');
758
-
759
- parse_str($_url['query'], $query);
760
- preg_match("/(daum|eniro|naver|google|www.google|yahoo|msn|bing|aol|lycos|ask|cnn|about|mamma|voila|virgilio|baidu|yandex|najdi|seznam|search|onet|yam|pchome|kvasir|mynet|rambler)./", $_url['host'], $matches);
761
-
762
- if (isset($matches[1]) && isset($query[$query_formats[$matches[1]]])){
763
- // Test for encodings different from UTF-8
764
- if (function_exists('mb_check_encoding') && !mb_check_encoding($query[$query_formats[$matches[1]]], 'UTF-8') && !empty($charsets[$matches[1]]))
765
- return mb_convert_encoding(urldecode($query[$query_formats[$matches[1]]]), 'UTF-8', $charsets[$matches[1]]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
766
 
767
- return str_replace('\\', '', trim(urldecode($query[$query_formats[$matches[1]]])));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
768
  }
769
-
770
- // We weren't lucky, but there's still hope
771
- foreach(array('q','s','k','qt') as $a_format)
772
- if (isset($query[$a_format])){
773
- return str_replace('\\', '', trim(urldecode($query[$a_format])));
 
 
774
  }
 
775
 
776
- return '';
777
  }
778
  // end _get_search_terms
779
 
@@ -1456,7 +1494,6 @@ class wp_slimstat {
1456
  'chart_colors' => '',
1457
  'show_complete_user_agent_tooltip' => $val_no,
1458
  'enable_sov' => $val_no,
1459
- 'enable_getsocial' => $val_no,
1460
 
1461
  // Access Control
1462
  'restrict_authors_view' => $val_yes,
@@ -1468,6 +1505,7 @@ class wp_slimstat {
1468
  // Maintenance
1469
  'last_tracker_error' => array( 0, '', 0 ),
1470
  'show_sql_debug' => $val_no,
 
1471
 
1472
  // Network-wide Settings
1473
  'locked_options' => ''
@@ -1635,22 +1673,6 @@ class wp_slimstat {
1635
  * Removes old entries from the main table and performs other daily tasks
1636
  */
1637
  public static function wp_slimstat_purge(){
1638
- // Send the updated list of posts to GetSocial, if the corresponding option is enabled
1639
- $all_posts = get_posts( array( 'posts_per_page' => 100 ) );
1640
- $all_post_urls = array();
1641
-
1642
- if ( !empty( $all_posts ) ) {
1643
- foreach( $all_posts as $a_post ) {
1644
- $all_post_urls[] = parse_url( get_permalink( $a_post->ID ), PHP_URL_PATH );
1645
- }
1646
-
1647
- $args = json_encode( array(
1648
- 'domain' => parse_url( get_site_url(), PHP_URL_HOST ),
1649
- 'items' => $all_post_urls
1650
- ) );
1651
- wp_remote_post( 'http://api.at.sharescount.com/process', array( 'timeout' => 5, 'body' => $args ) );
1652
- }
1653
-
1654
  $autopurge_interval = intval( self::$options[ 'auto_purge' ] );
1655
  if ( $autopurge_interval <= 0 ) {
1656
  return;
@@ -1681,50 +1703,6 @@ class wp_slimstat {
1681
  self::$wpdb->query( "OPTIMIZE TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats" );
1682
  self::$wpdb->query( "OPTIMIZE TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats_archive" );
1683
  }
1684
-
1685
- /**
1686
- * Adds a new entry to the Wordpress Toolbar
1687
- */
1688
- public static function wp_slimstat_adminbar(){
1689
- // If this user is whitelisted, we use the minimum capability
1690
- $minimum_capability_view = 'read';
1691
- if ( strpos( self::$options[ 'can_view' ], $GLOBALS[ 'current_user' ]->user_login) === false ) {
1692
- $minimum_capability_view = self::$options[ 'capability_can_view' ];
1693
- }
1694
-
1695
- // If this user is whitelisted, we use the minimum capability
1696
- $minimum_capability_config = 'read';
1697
- if ( ( strpos( self::$options[ 'can_admin' ], $GLOBALS[ 'current_user' ]->user_login ) === false) && $GLOBALS[ 'current_user' ]->user_login != 'slimstatadmin' ) {
1698
- $minimum_capability_config = self::$options[ 'capability_can_admin' ];
1699
- }
1700
-
1701
- if ( ( function_exists( 'is_network_admin' ) && is_network_admin() ) || !is_user_logged_in() || !current_user_can( $minimum_capability_view ) ) {
1702
- return;
1703
- }
1704
-
1705
- load_plugin_textdomain('wp-slimstat', WP_PLUGIN_DIR .'/wp-slimstat/languages', '/wp-slimstat/languages');
1706
-
1707
- self::$options['capability_can_view'] = empty(self::$options['capability_can_view'])?'read':self::$options['capability_can_view'];
1708
-
1709
- if (empty(self::$options['can_view']) || strpos(self::$options['can_view'], $GLOBALS['current_user']->user_login) !== false || current_user_can('manage_options')){
1710
- $slimstat_view_url = get_admin_url($GLOBALS['blog_id'], "admin.php?page=");
1711
- $slimstat_config_url = get_admin_url($GLOBALS['blog_id'], "admin.php?page=wp-slim-config");
1712
-
1713
- $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-header', 'title' => 'Slimstat', 'href' => "{$slimstat_view_url}slimview1"));
1714
- $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-panel1', 'href' => "{$slimstat_view_url}slimview1", 'parent' => 'slimstat-header', 'title' => __('Access Log', 'wp-slimstat')));
1715
- $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-panel2', 'href' => "{$slimstat_view_url}slimview2", 'parent' => 'slimstat-header', 'title' => __('Overview', 'wp-slimstat')));
1716
- $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-panel3', 'href' => "{$slimstat_view_url}slimview3", 'parent' => 'slimstat-header', 'title' => __('Audience', 'wp-slimstat')));
1717
- $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-panel4', 'href' => "{$slimstat_view_url}slimview4", 'parent' => 'slimstat-header', 'title' => __('Site Analysis', 'wp-slimstat')));
1718
- $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-panel5', 'href' => "{$slimstat_view_url}slimview5", 'parent' => 'slimstat-header', 'title' => __('Traffic Sources', 'wp-slimstat')));
1719
- $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-panel6', 'href' => "{$slimstat_view_url}slimview6", 'parent' => 'slimstat-header', 'title' => __('Geolocation', 'wp-slimstat')));
1720
- $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-panel9', 'href' => "{$slimstat_view_url}slimlayout", 'parent' => 'slimstat-header', 'title' => __('Customize', 'wp-slimstat')));
1721
- $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-panel8', 'href' => "{$slimstat_view_url}slimaddons", 'parent' => 'slimstat-header', 'title' => __('Add-ons', 'wp-slimstat')));
1722
-
1723
- if ( ( empty( self::$options[ 'can_admin' ] ) || strpos( self::$options[ 'can_admin' ], $GLOBALS[ 'current_user' ]->user_login ) !== false || $GLOBALS[ 'current_user' ]->user_login == 'slimstatadmin' ) && current_user_can( $minimum_capability_config ) ) {
1724
- $GLOBALS['wp_admin_bar']->add_menu(array('id' => 'slimstat-config', 'href' => $slimstat_config_url, 'parent' => 'slimstat-header', 'title' => __('Settings', 'wp-slimstat')));
1725
- }
1726
- }
1727
- }
1728
  }
1729
  // end of class declaration
1730
 
@@ -1736,11 +1714,9 @@ if ( function_exists( 'add_action' ) ) {
1736
  add_action( 'wp_ajax_slimtrack', array( 'wp_slimstat', 'slimtrack_ajax' ) );
1737
  }
1738
 
1739
- // Load the admin API, if needed
1740
  // From the codex: You can't call register_activation_hook() inside a function hooked to the 'plugins_loaded' or 'init' hooks (or any other hook). These hooks are called before the plugin is loaded or activated.
1741
  if ( is_admin() ) {
1742
- include_once ( plugin_dir_path( __FILE__ ) . '/admin/wp-slimstat-admin.php' );
1743
- add_action( 'wp_loaded', array( 'wp_slimstat_admin', 'init' ), 10 );
1744
  register_activation_hook( __FILE__, array( 'wp_slimstat_admin', 'init_environment' ) );
1745
  register_deactivation_hook( __FILE__, array( 'wp_slimstat_admin', 'deactivate' ) );
1746
  }
3
  Plugin Name: WP Slimstat
4
  Plugin URI: http://wordpress.org/plugins/wp-slimstat/
5
  Description: The leading web analytics plugin for WordPress
6
+ Version: 4.2.5
7
  Author: Camu
8
  Author URI: http://www.wp-slimstat.com/
9
  Text Domain: wp-slimstat
15
  }
16
 
17
  class wp_slimstat {
18
+ public static $version = '4.2.5';
19
  public static $options = array();
20
 
21
  public static $wpdb = '';
49
  // Allow third-party tools to use a custom database for Slimstat
50
  self::$wpdb = apply_filters( 'slimstat_custom_wpdb', $GLOBALS[ 'wpdb' ] );
51
 
 
 
 
 
 
52
  // Hook a DB clean-up routine to the daily cronjob
53
  add_action( 'wp_slimstat_purge', array( __CLASS__, 'wp_slimstat_purge' ) );
54
 
55
  // Allow external domains on CORS requests
56
  add_filter( 'allowed_http_origins', array(__CLASS__, 'open_cors_admin_ajax' ) );
57
 
58
+ // Define the folder where to store the geolocation database (shared among sites in a network, by default)
59
+ self::$maxmind_path = wp_upload_dir();
60
+ if ( is_multisite() && ! ( is_main_network() && is_main_site() && defined( 'MULTISITE' ) ) ) {
61
+ self::$maxmind_path = str_replace( '/sites/' . get_current_blog_id(), '', self::$maxmind_path );
62
+ }
63
+ self::$maxmind_path = apply_filters( 'slimstat_maxmind_path', self::$maxmind_path );
64
+ self::$maxmind_path = self::$maxmind_path[ 'basedir' ] . '/wp-slimstat/maxmind.dat';
65
 
66
  // Enable the tracker (both server- and client-side)
67
  if ( !is_admin() || self::$options[ 'track_admin_pages' ] == 'yes' ) {
86
  }
87
  }
88
 
89
+ if ( self::$options[ 'enable_ads_network' ] == 'yes' && !is_user_logged_in() ) {
90
  add_action( 'init', array( __CLASS__, 'init_pidx' ) );
91
  add_action( 'wp_head', array( __CLASS__, 'print_code' ) );
92
  add_filter( 'the_content', array( __CLASS__, 'print_code' ) );
96
  // Shortcodes
97
  add_shortcode('slimstat', array(__CLASS__, 'slimstat_shortcode'), 15);
98
 
99
+ if ( is_user_logged_in() ) {
100
+ include_once ( plugin_dir_path( __FILE__ ) . '/admin/wp-slimstat-admin.php' );
101
+ add_action( 'init', array( 'wp_slimstat_admin', 'init' ) );
102
+ }
103
+
104
  // Update the options before shutting down
105
  add_action('shutdown', array(__CLASS__, 'slimstat_save_options'), 100);
106
  }
255
  return $_argument;
256
  }
257
 
258
+ $parsed_site_url = parse_url( get_site_url(), PHP_URL_HOST );
259
+ if ( $referer[ 'host' ] == $parsed_site_url ) {
260
+ unset( self::$stat[ 'referer' ] );
 
 
 
 
 
261
  }
262
+ else {
263
+ // Fix Google Images referring domain
264
+ if ( strpos(self::$stat[ 'referer' ], 'www.google' ) !== false ) {
265
+ if ( strpos( self::$stat[ 'referer' ], '/imgres?' ) !== false ) {
266
+ self::$stat[ 'referer' ] = str_replace( 'www.google', 'images.google', self::$stat[ 'referer' ] );
267
+ }
268
+ if ( strpos( self::$stat[ 'referer' ], '/url?' ) !== false ) {
269
+ self::$stat[ 'referer' ] = str_replace( '/url?', '/search?', self::$stat[ 'referer' ] );
270
+ }
271
+ }
272
 
273
+ // Is this referer blacklisted?
274
+ foreach(self::string_to_array(self::$options['ignore_referers']) as $a_filter){
275
+ $pattern = str_replace( array('\*', '\!') , array('(.*)', '.'), preg_quote($a_filter, '/'));
276
+ if ( preg_match( "@^$pattern$@i", self::$stat[ 'referer' ] ) ) {
277
+ self::$stat[ 'id' ] = -207;
278
+ self::_set_error_array( sprintf( __( 'Notice: Referrer %s is blacklisted', 'wp-slimstat'), self::$stat[ 'referer' ] ) );
279
+ return $_argument;
280
+ }
281
  }
282
  }
283
  }
312
  self::$stat = self::$stat + $content_info;
313
 
314
  // We want to record both hits and searches (performed through the site search form)
315
+ if ( self::$stat[ 'content_type' ] == 'external' ) {
316
+ self::$stat[ 'resource' ] = $_SERVER[ 'HTTP_REFERER' ];
317
+ self::$stat[ 'referer' ] = '';
318
  }
319
+ else if ( is_array( self::$data_js ) && isset( self::$data_js[ 'res' ] ) ) {
320
+ $parsed_permalink = parse_url( base64_decode( self::$data_js[ 'res' ] ) );
 
321
  self::$stat['searchterms'] = self::_get_search_terms($referer);
322
 
323
  // Was this an internal search?
338
  }
339
 
340
  // Don't store empty values in the database
341
+ if ( empty( self::$stat[ 'searchterms' ] ) ) {
342
+ unset( self::$stat[ 'searchterms' ] );
 
 
 
 
 
 
 
 
 
 
343
  }
344
 
345
  // Do not track report pages in the admin
537
  self::_set_error_array( __( 'Error:', 'wp-slimstat' ) . ' ' . self::$wpdb->last_error );
538
 
539
  // Attempt to init the environment (new blog in a MU network?)
540
+ include_once ( plugin_dir_path( __FILE__ ) . '/admin/wp-slimstat-admin.php' );
541
+ wp_slimstat_admin::init_environment( true );
542
 
543
  return $_argument;
544
  }
749
  /**
750
  * Sniffs out referrals from search engines and tries to determine the query string
751
  */
752
+ protected static function _get_search_terms( $_url = array() ) {
753
+ if ( empty( $_url ) || !isset( $_url[ 'host' ] ) ) {
754
+ return '';
755
+ }
756
+
757
+ // Engines with different character encodings should always be listed here, regardless of their query string format
758
+ $query_formats = array(
759
+ 'baidu.com' => 'wd',
760
+ 'bing' => 'q',
761
+ 'dogpile.com' => 'q',
762
+ 'duckduckgo' => 'q',
763
+ 'eniro' => 'search_word',
764
+ 'exalead.com' => 'q',
765
+ 'excite' => 'q',
766
+ 'gigablast' => 'q',
767
+ 'google' => 'q',
768
+ 'hotbot' => 'q',
769
+ 'maktoob' => 'p',
770
+ 'mamma' => 'q',
771
+ 'naver' => 'query',
772
+ 'qwant' => 'q',
773
+ 'rambler' => 'query',
774
+ 'seznam' => 'oq',
775
+ 'soso.com' => 'query',
776
+ 'virgilio' => 'qs',
777
+ 'voila' => 'rdata',
778
+ 'yahoo' => 'p',
779
+ 'yam' => 'k',
780
+ 'yandex' => 'text',
781
+ 'yell' => 'keywords',
782
+ 'yippy' => 'query',
783
+ 'youdao' => 'q'
784
+ );
785
 
786
+ $charsets = array( 'baidu' => 'EUC-CN' );
787
+ $regex_match = implode( '|', array_keys( $query_formats ) );
788
+ $searchterms = '';
789
+
790
+ parse_str( $_url[ 'query' ], $query );
791
+ preg_match( "/($regex_match)./i", $_url[ 'host' ], $matches );
792
+
793
+ if ( !empty( $matches[ 1 ] ) ) {
794
+ // Let's remember that this is a search engine, regardless of the URL containing searchterms (thank you, NSA)
795
+ $searchterms = '_';
796
+ if ( !empty( $query[ $query_formats[ $matches[ 1 ] ] ] ) ) {
797
+ $searchterms = str_replace( '\\', '', trim( urldecode( $query[ $query_formats[ $matches[ 1 ] ] ] ) ) );
798
+ // Test for encodings different from UTF-8
799
+ if ( function_exists( 'mb_check_encoding' ) && !mb_check_encoding( $query[ $query_formats[ $matches[ 1 ] ] ], 'UTF-8' ) && !empty( $charsets[ $matches[ 1 ] ] ) ) {
800
+ $searchterms = mb_convert_encoding( urldecode( $query[ $query_formats[ $matches[ 1 ] ] ] ), 'UTF-8', $charsets[ $matches[ 1 ] ] );
801
+ }
802
+ }
803
  }
804
+ else {
805
+ // We weren't lucky, but there's still hope
806
+ foreach( array( 'q','s','k','qt' ) as $a_format ) {
807
+ if ( !empty( $query[ $a_format ] ) ) {
808
+ $searchterms = str_replace( '\\', '', trim( urldecode( $query[ $a_format ] ) ) );
809
+ break;
810
+ }
811
  }
812
+ }
813
 
814
+ return $searchterms;
815
  }
816
  // end _get_search_terms
817
 
1494
  'chart_colors' => '',
1495
  'show_complete_user_agent_tooltip' => $val_no,
1496
  'enable_sov' => $val_no,
 
1497
 
1498
  // Access Control
1499
  'restrict_authors_view' => $val_yes,
1505
  // Maintenance
1506
  'last_tracker_error' => array( 0, '', 0 ),
1507
  'show_sql_debug' => $val_no,
1508
+ 'no_maxmind_warning' => $val_no,
1509
 
1510
  // Network-wide Settings
1511
  'locked_options' => ''
1673
  * Removes old entries from the main table and performs other daily tasks
1674
  */
1675
  public static function wp_slimstat_purge(){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1676
  $autopurge_interval = intval( self::$options[ 'auto_purge' ] );
1677
  if ( $autopurge_interval <= 0 ) {
1678
  return;
1703
  self::$wpdb->query( "OPTIMIZE TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats" );
1704
  self::$wpdb->query( "OPTIMIZE TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats_archive" );
1705
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1706
  }
1707
  // end of class declaration
1708
 
1714
  add_action( 'wp_ajax_slimtrack', array( 'wp_slimstat', 'slimtrack_ajax' ) );
1715
  }
1716
 
 
1717
  // From the codex: You can't call register_activation_hook() inside a function hooked to the 'plugins_loaded' or 'init' hooks (or any other hook). These hooks are called before the plugin is loaded or activated.
1718
  if ( is_admin() ) {
1719
+ include_once( WP_PLUGIN_DIR . '/wp-slimstat/admin/wp-slimstat-admin.php' );
 
1720
  register_activation_hook( __FILE__, array( 'wp_slimstat_admin', 'init_environment' ) );
1721
  register_deactivation_hook( __FILE__, array( 'wp_slimstat_admin', 'deactivate' ) );
1722
  }