Slimstat Analytics - Version 4.7.9

Version Description

  • [Note] Jason is back! Apologies for the radio silence in the last few months, due to personal reasons. Please know that this plugin is still very much alive and kicking. I'm working on cleaning up my development environment, updating the Git repository and streamlining coding workflows. I'm catching up on past and new feature requests and pending bugfixes. As always, thank you for your continued support.
  • [Update] Our optimized fork of the Browscap Library is now available as a public Github repository. Slimstat will now check for updates on Github directly, which streamlines our deployment workflow. Feel free to contact us if you experience any issues with the new data file.
Download this release

Release Info

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

Code changes from version 4.7.8.3 to 4.7.9

admin/config/maintenance.php CHANGED
@@ -10,9 +10,9 @@ wp_slimstat_reports::init();
10
  if ( !empty( $_REQUEST[ 'action' ] ) ) {
11
  switch ( $_REQUEST[ 'action' ] ) {
12
  case 'activate-indexes':
13
- wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD INDEX {$GLOBALS['wpdb']->prefix}stats_resource_idx( resource( 20 ) )" );
14
- wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD INDEX {$GLOBALS['wpdb']->prefix}stats_browser_idx( browser( 10 ) )" );
15
- wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD INDEX {$GLOBALS['wpdb']->prefix}stats_searchterms_idx( searchterms( 15 ) )" );
16
  wp_slimstat_admin::show_alert_message( __( 'Congratulations! Slimstat Analytics is now optimized for <a href="http://www.youtube.com/watch?v=ygE01sOhzz0" target="_blank">ludicrous speed</a>.', 'wp-slimstat' ) );
17
  break;
18
 
@@ -21,9 +21,9 @@ if ( !empty( $_REQUEST[ 'action' ] ) ) {
21
  break;
22
 
23
  case 'deactivate-indexes':
24
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats DROP INDEX {$GLOBALS['wpdb']->prefix}stats_resource_idx");
25
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats DROP INDEX {$GLOBALS['wpdb']->prefix}stats_browser_idx");
26
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats DROP INDEX {$GLOBALS['wpdb']->prefix}stats_searchterms_idx");
27
  wp_slimstat_admin::show_alert_message( __( 'Indexing has been disabled. Enjoy the extra database space!', 'wp-slimstat' ) );
28
  break;
29
 
@@ -34,7 +34,7 @@ if ( !empty( $_REQUEST[ 'action' ] ) ) {
34
  case 'delete-records':
35
  $rows_affected = 0;
36
 
37
- if (key_exists($_REQUEST['f'], wp_slimstat_db::$columns_names)){
38
  $rows_affected = wp_slimstat::$wpdb->query("
39
  DELETE t1.*
40
  FROM {$GLOBALS['wpdb']->prefix}slim_stats t1
@@ -76,7 +76,7 @@ if ( !empty( $_REQUEST[ 'action' ] ) ) {
76
  case 'delete-browscap':
77
  // Delete the existing folder, if there
78
  WP_Filesystem();
79
- if ( $GLOBALS[ 'wp_filesystem' ]->rmdir( wp_slimstat::$upload_dir . '/browscap-db/', true ) ) {
80
  wp_slimstat_admin::show_alert_message( __( 'The Browscap data file has been uninstalled from your server.', 'wp-slimstat' ) );
81
  }
82
  else {
@@ -115,11 +115,13 @@ if ( !empty( $_REQUEST[ 'action' ] ) ) {
115
  break;
116
 
117
  case 'switch-engine':
118
- $have_innodb = wp_slimstat::$wpdb->get_results("SHOW VARIABLES LIKE 'have_innodb'", ARRAY_A);
119
- if ($have_innodb[0]['Value'] != 'YES') return;
 
 
120
 
121
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ENGINE = InnoDB");
122
- wp_slimstat::$wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_events ENGINE = InnoDB");
123
 
124
  wp_slimstat_admin::show_alert_message( __( 'Your Slimstat tables have been successfully converted to InnoDB.', 'wp-slimstat' ) );
125
  break;
10
  if ( !empty( $_REQUEST[ 'action' ] ) ) {
11
  switch ( $_REQUEST[ 'action' ] ) {
12
  case 'activate-indexes':
13
+ wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats ADD INDEX {$GLOBALS[ 'wpdb' ]->prefix}stats_resource_idx( resource( 20 ) )" );
14
+ wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats ADD INDEX {$GLOBALS[ 'wpdb' ]->prefix}stats_browser_idx( browser( 10 ) )" );
15
+ wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats ADD INDEX {$GLOBALS[ 'wpdb' ]->prefix}stats_searchterms_idx( searchterms( 15 ) )" );
16
  wp_slimstat_admin::show_alert_message( __( 'Congratulations! Slimstat Analytics is now optimized for <a href="http://www.youtube.com/watch?v=ygE01sOhzz0" target="_blank">ludicrous speed</a>.', 'wp-slimstat' ) );
17
  break;
18
 
21
  break;
22
 
23
  case 'deactivate-indexes':
24
+ wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats DROP INDEX {$GLOBALS[ 'wpdb' ]->prefix}stats_resource_idx" );
25
+ wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats DROP INDEX {$GLOBALS[ 'wpdb' ]->prefix}stats_browser_idx");
26
+ wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats DROP INDEX {$GLOBALS[ 'wpdb' ]->prefix}stats_searchterms_idx");
27
  wp_slimstat_admin::show_alert_message( __( 'Indexing has been disabled. Enjoy the extra database space!', 'wp-slimstat' ) );
28
  break;
29
 
34
  case 'delete-records':
35
  $rows_affected = 0;
36
 
37
+ if ( key_exists( $_REQUEST[ 'f' ], wp_slimstat_db::$columns_names ) ) {
38
  $rows_affected = wp_slimstat::$wpdb->query("
39
  DELETE t1.*
40
  FROM {$GLOBALS['wpdb']->prefix}slim_stats t1
76
  case 'delete-browscap':
77
  // Delete the existing folder, if there
78
  WP_Filesystem();
79
+ if ( $GLOBALS[ 'wp_filesystem' ]->rmdir( wp_slimstat::$upload_dir . '/browscap-db-master/', true ) ) {
80
  wp_slimstat_admin::show_alert_message( __( 'The Browscap data file has been uninstalled from your server.', 'wp-slimstat' ) );
81
  }
82
  else {
115
  break;
116
 
117
  case 'switch-engine':
118
+ $have_innodb = wp_slimstat::$wpdb->get_results( "SHOW VARIABLES LIKE 'have_innodb'", ARRAY_A );
119
+ if ( $have_innodb[ 0 ][ 'Value' ] != 'YES' ) {
120
+ return 0;
121
+ }
122
 
123
+ wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_stats ENGINE = InnoDB" );
124
+ wp_slimstat::$wpdb->query( "ALTER TABLE {$GLOBALS[ 'wpdb' ]->prefix}slim_events ENGINE = InnoDB" );
125
 
126
  wp_slimstat_admin::show_alert_message( __( 'Your Slimstat tables have been successfully converted to InnoDB.', 'wp-slimstat' ) );
127
  break;
admin/images/platforms/macos.png ADDED
Binary file
admin/view/right-now.php CHANGED
@@ -12,7 +12,7 @@ $is_dashboard = empty( $_REQUEST[ 'page' ] ) || $_REQUEST[ 'page' ] != 'slimview
12
 
13
  // Available icons
14
  $supported_browser_icons = array( 'Android', 'Anonymouse', 'Baiduspider', 'BlackBerry', 'BingBot', 'CFNetwork', 'Chrome', 'Chromium', 'Default Browser', 'Edge', 'Exabot/BiggerBetter', 'FacebookExternalHit', 'FeedBurner', 'Feedfetcher-Google', 'Firefox', 'Internet Archive', 'Googlebot', 'Google Bot', 'Google Feedfetcher', 'Google Web Preview', 'IE', 'IEMobile', 'iPad', 'iPhone', 'iPod Touch', 'Maxthon', 'Mediapartners-Google', 'Microsoft-WebDAV', 'msnbot', 'Mozilla', 'NewsGatorOnline', 'Netscape', 'Nokia', 'Opera', 'Opera Mini', 'Opera Mobi', 'Pingdom', 'Python', 'PycURL', 'Safari', 'W3C_Validator', 'WordPress', 'Yahoo! Slurp', 'YandexBot' );
15
- $supported_os_icons = array( 'android',' blackberry os', 'cellos', 'chromeos', 'ios', 'iphone osx', 'java', 'linux', 'macosx', 'rim os', 'symbianos', 'win7', 'win8', 'win8.1', 'win10', 'winphone7', 'winphone7.5', 'winphone8', 'winphone8.1', 'winvista', 'winxp', 'unknown' );
16
  $supported_browser_types = array( __( 'Human', 'wp-slimstat' ), __( 'Bot/Crawler', 'wp-slimstat' ), __( 'Mobile Device', 'wp-slimstat' ), __( 'Syndication Reader', 'wp-slimstat' ) );
17
 
18
  $plugin_url = plugins_url( '', dirname( __FILE__ ) );
12
 
13
  // Available icons
14
  $supported_browser_icons = array( 'Android', 'Anonymouse', 'Baiduspider', 'BlackBerry', 'BingBot', 'CFNetwork', 'Chrome', 'Chromium', 'Default Browser', 'Edge', 'Exabot/BiggerBetter', 'FacebookExternalHit', 'FeedBurner', 'Feedfetcher-Google', 'Firefox', 'Internet Archive', 'Googlebot', 'Google Bot', 'Google Feedfetcher', 'Google Web Preview', 'IE', 'IEMobile', 'iPad', 'iPhone', 'iPod Touch', 'Maxthon', 'Mediapartners-Google', 'Microsoft-WebDAV', 'msnbot', 'Mozilla', 'NewsGatorOnline', 'Netscape', 'Nokia', 'Opera', 'Opera Mini', 'Opera Mobi', 'Pingdom', 'Python', 'PycURL', 'Safari', 'W3C_Validator', 'WordPress', 'Yahoo! Slurp', 'YandexBot' );
15
+ $supported_os_icons = array( 'android',' blackberry os', 'cellos', 'chromeos', 'ios', 'iphone osx', 'java', 'linux', 'macos', 'macosx', 'rim os', 'symbianos', 'win7', 'win8', 'win8.1', 'win10', 'winphone7', 'winphone7.5', 'winphone8', 'winphone8.1', 'winvista', 'winxp', 'unknown' );
16
  $supported_browser_types = array( __( 'Human', 'wp-slimstat' ), __( 'Bot/Crawler', 'wp-slimstat' ), __( 'Mobile Device', 'wp-slimstat' ), __( 'Syndication Reader', 'wp-slimstat' ) );
17
 
18
  $plugin_url = plugins_url( '', dirname( __FILE__ ) );
admin/wp-slimstat-admin.php CHANGED
@@ -11,7 +11,7 @@ class wp_slimstat_admin {
11
  * Init -- Sets things up.
12
  */
13
  public static function init() {
14
- self::$admin_notice = "A few users have reached out to us to ask if Slimstat would be compliant with the upcoming <a href='https://en.wikipedia.org/wiki/General_Data_Protection_Regulation' target='_blank'>General Data Protection Regulation (GDPR)</a> guidelines and regulations that are about to be activated all across Europe. Based on our understanding of this new law, as long as the hosting provider where you are storing the information collected by Slimstat is GDPR compliant, then you won't have to worry about any extra layers of compliance offered by software like ours. One of our primary goals is to make sure that you and only you are the sole owner of the data collected by our plugin. This has always been what makes Slimstat stand out from the crowd: while Jetpack, Google Analytics and many other services have full unrestricted access to the data they collect on your website, we at Slimstat don't treat our users as <em>the product</em> that we sell to other companies. Also, starting with this update, our plugin honors the <a href='https://en.wikipedia.org/wiki/Do_Not_Track' target='_blank'>Do Not Track header</a> (this feature can be turned off in the settings), and we introduced an experimental option to allow your users to opt out of tracking via a text box displayed. Please let us know if you notice any issues with these new features.";
15
 
16
  // self::$admin_notice = "Now that we have a cleaner foundation to build on, it's time to start introducing new reports and new ways to segment your audience and the traffic they generate. While our users test the latest changes and updates (to confirm that the foundation is indeed solid and bug-free), we are hard at work implementing the first batch of new reports. Some of them will be made available in the free version, while others will be added to our premium add-on, <a href='http://www.wp-slimstat.com/downloads/user-overview/' target='_blank'>User Overview</a>. And we need your help! If you think that a specific report should be added to Slimstat, please do not hesitate <a href='http://support.wp-slimstat.com' target='_blank'>to let us know</a>.";
17
 
@@ -413,6 +413,17 @@ class wp_slimstat_admin {
413
  }
414
  // --- END: Updates for version 4.7.8.2 ---
415
 
 
 
 
 
 
 
 
 
 
 
 
416
  // Now we can update the version stored in the database
417
  wp_slimstat::$settings[ 'version' ] = wp_slimstat::$version;
418
 
11
  * Init -- Sets things up.
12
  */
13
  public static function init() {
14
+ self::$admin_notice = "Jason is back! Apologies for the radio silence in the last few months, due to personal reasons. Please know that this plugin is still very much alive and kicking. I'm working on cleaning up my development environment, updating the Git repository and streamlining coding workflows. I'm catching up on past and new feature requests and pending bugfixes. As always, thank you for your continued support.<br><br><strong>Please note</strong>: this new version uses our new optimized Browscap Library <a href='https://github.com/slimstat/browscap-db' target='_blank'>published on Github</a>, to streamline our deployment workflow. Feel free to contact us if you experience any issues with the new data file.";
15
 
16
  // self::$admin_notice = "Now that we have a cleaner foundation to build on, it's time to start introducing new reports and new ways to segment your audience and the traffic they generate. While our users test the latest changes and updates (to confirm that the foundation is indeed solid and bug-free), we are hard at work implementing the first batch of new reports. Some of them will be made available in the free version, while others will be added to our premium add-on, <a href='http://www.wp-slimstat.com/downloads/user-overview/' target='_blank'>User Overview</a>. And we need your help! If you think that a specific report should be added to Slimstat, please do not hesitate <a href='http://support.wp-slimstat.com' target='_blank'>to let us know</a>.";
17
 
413
  }
414
  // --- END: Updates for version 4.7.8.2 ---
415
 
416
+ // --- Updates for version 4.7.9 ---
417
+ if ( version_compare( wp_slimstat::$settings[ 'version' ], '4.7.9', '<' ) ) {
418
+ // Delete the old Browscap Library and install the new one
419
+ if ( file_exists( wp_slimstat::$upload_dir . '/browscap-db/autoload.php' ) ) {
420
+ WP_Filesystem();
421
+ $GLOBALS[ 'wp_filesystem' ]->rmdir( wp_slimstat::$upload_dir . '/browscap-db/', true );
422
+ slim_browser::update_browscap_database( true );
423
+ }
424
+ }
425
+ // --- END: Updates for version 4.7.9 ---
426
+
427
  // Now we can update the version stored in the database
428
  wp_slimstat::$settings[ 'version' ] = wp_slimstat::$version;
429
 
browscap/browser.php CHANGED
@@ -14,7 +14,7 @@ class slim_browser {
14
  );
15
 
16
  // Path to the Browscap data and library
17
- self::$browscap_autoload_path = wp_slimstat::$upload_dir . '/browscap-db/autoload.php';
18
 
19
  if ( file_exists( self::$browscap_autoload_path ) && version_compare( PHP_VERSION, '5.5', '>=' ) ) {
20
  self::update_browscap_database( false );
@@ -31,7 +31,7 @@ class slim_browser {
31
  }
32
 
33
  if ( method_exists( 'slimBrowscapConnector', 'get_browser_from_browscap' ) ) {
34
- self::$browser = slimBrowscapConnector::get_browser_from_browscap( self::$browser );
35
  }
36
 
37
  if ( self::$browser[ 'browser' ] == 'Default Browser' ) {
@@ -110,7 +110,7 @@ class slim_browser {
110
  fclose( $handle );
111
 
112
  // Now check the version number on the server
113
- $response = wp_remote_get( 'http://s3.amazonaws.com/browscap/autoload.txt' );
114
  if ( !is_array( $response ) || is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) {
115
  wp_slimstat::slimstat_save_options();
116
  return array( 5, __( 'There was an error checking the remote library version. Please try again later.', 'wp-slimstat' ) );
@@ -126,7 +126,7 @@ class slim_browser {
126
 
127
  // Download the most recent version of our pre-processed Browscap database
128
  if ( $download_remote_file ) {
129
- $response = wp_safe_remote_get( 'http://s3.amazonaws.com/browscap/browscap-db.zip', array( 'timeout' => 300, 'stream' => true, 'filename' => $browscap_zip ) );
130
 
131
  if ( !file_exists( $browscap_zip ) ) {
132
  wp_slimstat::$settings[ 'browscap_last_modified' ] = $current_timestamp;
14
  );
15
 
16
  // Path to the Browscap data and library
17
+ self::$browscap_autoload_path = wp_slimstat::$upload_dir . '/browscap-db-master/composer/autoload_real.php';
18
 
19
  if ( file_exists( self::$browscap_autoload_path ) && version_compare( PHP_VERSION, '5.5', '>=' ) ) {
20
  self::update_browscap_database( false );
31
  }
32
 
33
  if ( method_exists( 'slimBrowscapConnector', 'get_browser_from_browscap' ) ) {
34
+ self::$browser = slimBrowscapConnector::get_browser_from_browscap( self::$browser, wp_slimstat::$upload_dir . '/browscap-db-master/cache/' );
35
  }
36
 
37
  if ( self::$browser[ 'browser' ] == 'Default Browser' ) {
110
  fclose( $handle );
111
 
112
  // Now check the version number on the server
113
+ $response = wp_remote_get( 'https://raw.githubusercontent.com/slimstat/browscap-db/master/version.txt' );
114
  if ( !is_array( $response ) || is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) {
115
  wp_slimstat::slimstat_save_options();
116
  return array( 5, __( 'There was an error checking the remote library version. Please try again later.', 'wp-slimstat' ) );
126
 
127
  // Download the most recent version of our pre-processed Browscap database
128
  if ( $download_remote_file ) {
129
+ $response = wp_safe_remote_get( 'https://github.com/slimstat/browscap-db/archive/master.zip', array( 'timeout' => 300, 'stream' => true, 'filename' => $browscap_zip ) );
130
 
131
  if ( !file_exists( $browscap_zip ) ) {
132
  wp_slimstat::$settings[ 'browscap_last_modified' ] = $current_timestamp;
languages/dynamic_strings.php CHANGED
@@ -29,6 +29,7 @@ __('knoppix','wp-slimstat'), // Knoppix Linux
29
  __('linux','wp-slimstat'), // Linux Generic
30
  __('mac','wp-slimstat'), // Mac
31
  __('mac68k','wp-slimstat'), // Mac 68k
 
32
  __('macosx','wp-slimstat'), // Mac OS X
33
  __('macppc','wp-slimstat'), // Mac PowerPC
34
  __('mandrake','wp-slimstat'), // Mandrake Linux
29
  __('linux','wp-slimstat'), // Linux Generic
30
  __('mac','wp-slimstat'), // Mac
31
  __('mac68k','wp-slimstat'), // Mac 68k
32
+ __('macos','wp-slimstat'), // Mac OS X
33
  __('macosx','wp-slimstat'), // Mac OS X
34
  __('macppc','wp-slimstat'), // Mac PowerPC
35
  __('mandrake','wp-slimstat'), // Mandrake Linux
languages/wp-slimstat-en_US.mo CHANGED
Binary file
languages/wp-slimstat-en_US.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2017-03-09 22:19-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: camu <support@wp-slimstat.com>\n"
@@ -9,7 +9,7 @@ msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.12\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -17,8 +17,8 @@ msgstr ""
17
  "X-Poedit-SearchPathExcluded-0: ../admin/update-checker\n"
18
  "X-Poedit-SearchPathExcluded-1: ../admin/js\n"
19
 
20
- #: ../admin/config/index.php:22 ../admin/config/index.php:47
21
- #: ../admin/config/index.php:72
22
  msgid ""
23
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
24
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
@@ -28,31 +28,31 @@ msgstr ""
28
  msgid "Read access: username not found"
29
  msgstr ""
30
 
31
- #: ../admin/config/index.php:62
32
  msgid "Config access: username not found"
33
  msgstr ""
34
 
35
- #: ../admin/config/index.php:81
36
  msgid "Basic"
37
  msgstr ""
38
 
39
- #: ../admin/config/index.php:83 ../admin/config/index.php:104
40
  msgid "Tracker"
41
  msgstr ""
42
 
43
- #: ../admin/config/index.php:84
44
  msgid "Enable Tracking"
45
  msgstr ""
46
 
47
- #: ../admin/config/index.php:84
48
  msgid "Turn the tracker on or off, while keeping the reports accessible."
49
  msgstr ""
50
 
51
- #: ../admin/config/index.php:85
52
  msgid "Tracking Mode"
53
  msgstr ""
54
 
55
- #: ../admin/config/index.php:85
56
  msgid ""
57
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
58
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
@@ -61,164 +61,159 @@ msgid ""
61
  "spammers, search engines and other crawlers</strong> will not be tracked."
62
  msgstr ""
63
 
64
- #: ../admin/config/index.php:85
65
  msgid "Client"
66
  msgstr ""
67
 
68
- #: ../admin/config/index.php:85
69
  msgid "Server"
70
  msgstr ""
71
 
72
- #: ../admin/config/index.php:86
73
  msgid "Track Client Info"
74
  msgstr ""
75
 
76
- #: ../admin/config/index.php:86
77
  msgid ""
78
- "If this option is disabled, Slimstat will not add the Javascript tracking "
79
- "code to your pages, if tracking mode is set to Server. Please note: if "
80
- "enabled, this will prevent the tracker from collecting information such as "
81
- "screen resolution, outbound links, downloads, etc. This option is ignored if "
82
- "Tracking Mode is set to Client."
83
  msgstr ""
84
 
85
- #: ../admin/config/index.php:87
86
  msgid "Track Admin Pages"
87
  msgstr ""
88
 
89
- #: ../admin/config/index.php:87
90
  msgid "Enable this option to track your users' activity within the admin."
91
  msgstr ""
92
 
93
- #: ../admin/config/index.php:89
94
  msgid "WordPress Integration"
95
  msgstr ""
96
 
97
- #: ../admin/config/index.php:90
98
  msgid "Dashboard Widgets"
99
  msgstr ""
100
 
101
- #: ../admin/config/index.php:90
102
  msgid ""
103
  "Enable this option if you want to add reports to your WordPress Dashboard. "
104
  "Use the Customizer to choose which ones to display."
105
  msgstr ""
106
 
107
- #: ../admin/config/index.php:91
108
  msgid "Menu Position"
109
  msgstr ""
110
 
111
- #: ../admin/config/index.php:91
112
  msgid ""
113
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
114
  "admin bar (if visible)."
115
  msgstr ""
116
 
117
- #: ../admin/config/index.php:91
118
  msgid "Side"
119
  msgstr ""
120
 
121
- #: ../admin/config/index.php:91
122
  msgid "Bar"
123
  msgstr ""
124
 
125
- #: ../admin/config/index.php:92
126
- msgid "Posts and Pages"
127
  msgstr ""
128
 
129
- #: ../admin/config/index.php:92
130
  msgid ""
131
- "Add a new column to the Edit Posts/Pages screens, with the number of hits "
132
- "per post within the timeframe specified here below."
 
133
  msgstr ""
134
 
135
- #: ../admin/config/index.php:93
136
- msgid "Report Interval"
137
  msgstr ""
138
 
139
- #: ../admin/config/index.php:93
140
  msgid ""
141
- "Enter the time range, in days, that should be used to calculate the value "
142
- "here above."
143
  msgstr ""
144
 
145
- #: ../admin/config/index.php:94
146
  msgid "Report Type"
147
  msgstr ""
148
 
149
- #: ../admin/config/index.php:94
150
  msgid ""
151
  "Select what kind of information you would like to see displayed on your "
152
  "Posts admin screen. Hits counts all the pageviews regardless of the user, "
153
  "(unique) IPs counts only one hit per IP in the given time range."
154
  msgstr ""
155
 
156
- #: ../admin/config/index.php:94 ../admin/view/wp-slimstat-reports.php:1204
157
- #: ../admin/view/wp-slimstat-reports.php:1208
158
- #: ../admin/view/wp-slimstat-reports.php:1477
159
- #: ../admin/view/wp-slimstat-reports.php:1536
160
- #: ../admin/view/wp-slimstat-reports.php:1542
161
- #: ../admin/view/wp-slimstat-reports.php:1548
162
- #: ../admin/view/wp-slimstat-reports.php:1554
163
- #: ../admin/view/wp-slimstat-reports.php:1560
164
- #: ../admin/view/wp-slimstat-reports.php:1566
165
- #: ../admin/view/wp-slimstat-reports.php:1572
166
- #: ../admin/view/wp-slimstat-reports.php:1844
167
  msgid "Hits"
168
  msgstr ""
169
 
170
- #: ../admin/config/index.php:94
171
  msgid "IPs"
172
  msgstr ""
173
 
174
- #: ../admin/config/index.php:95
175
  msgid "Hide Add-ons"
176
  msgstr ""
177
 
178
- #: ../admin/config/index.php:95
179
  msgid ""
180
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
181
  "from the list of plugins in WordPress. Please note that you will still "
182
  "receive updates for hidden add-ons."
183
  msgstr ""
184
 
185
- #: ../admin/config/index.php:97
186
  msgid "Database"
187
  msgstr ""
188
 
189
- #: ../admin/config/index.php:98
190
  msgid "Retain data for"
191
  msgstr ""
192
 
193
- #: ../admin/config/index.php:98
194
  msgid ""
195
  "Clean-up log entries older than the number of days specified here above. "
196
- "Enter <strong>0</strong> (number zero) if you want to preserve your data "
197
- "regardless of its age."
198
  msgstr ""
199
 
200
- #: ../admin/config/index.php:98
201
  msgid "Next clean-up on"
202
  msgstr ""
203
 
204
- #: ../admin/config/index.php:98
205
  #, php-format
206
  msgid ""
207
  "Entries logged on or before %s will be archived or deleted according to the "
208
  "option here below."
209
  msgstr ""
210
 
211
- #: ../admin/config/index.php:98 ../admin/view/index.php:106
212
- #: ../admin/view/wp-slimstat-db.php:98
213
- #: ../admin/view/wp-slimstat-reports.php:1421
214
  msgid "days"
215
  msgstr ""
216
 
217
- #: ../admin/config/index.php:99
218
  msgid "Archive records"
219
  msgstr ""
220
 
221
- #: ../admin/config/index.php:99
222
  msgid ""
223
  "If DB space is not an issue, you can decide to archive older records in "
224
  "another table, instead of deleting them. This way performance is preserved, "
@@ -228,15 +223,114 @@ msgid ""
228
  "is uninstalled. Make sure to backup your data before you proceed."
229
  msgstr ""
230
 
231
- #: ../admin/config/index.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
  msgid "Link Tracking"
233
  msgstr ""
234
 
235
- #: ../admin/config/index.php:107
236
  msgid "Do Not Track"
237
  msgstr ""
238
 
239
- #: ../admin/config/index.php:107
240
  msgid ""
241
  "Slimstat will ignore links marked with one of these class names, <em>rel</"
242
  "em> attributes or whose <em>href</em> attribute contains one of these "
@@ -245,11 +339,11 @@ msgid ""
245
  "remove it from this list, some features might not work as expected."
246
  msgstr ""
247
 
248
- #: ../admin/config/index.php:108
249
  msgid "Downloads"
250
  msgstr ""
251
 
252
- #: ../admin/config/index.php:108
253
  msgid ""
254
  "List all the file extensions that you want to be treated as Downloads. "
255
  "Please note that links pointing to external resources (i.e. PDFs on an "
@@ -258,11 +352,11 @@ msgid ""
258
  "below."
259
  msgstr ""
260
 
261
- #: ../admin/config/index.php:109
262
  msgid "Same-Domain Referrers"
263
  msgstr ""
264
 
265
- #: ../admin/config/index.php:109
266
  msgid ""
267
  "By default, when the domain of the referrer for a given page view is the "
268
  "same as the current site, that information is not tracked to save space in "
@@ -271,67 +365,95 @@ msgid ""
271
  "another, as they are technically \"separate\" websites."
272
  msgstr ""
273
 
274
- #: ../admin/config/index.php:111
275
  msgid "Advanced Options"
276
  msgstr ""
277
 
278
- #: ../admin/config/index.php:112
279
- msgid "Track WP Users"
280
  msgstr ""
281
 
282
- #: ../admin/config/index.php:112
283
- msgid "Enable this option to track logged in users."
 
 
 
 
 
 
 
 
284
  msgstr ""
285
 
286
- #: ../admin/config/index.php:113
 
 
 
 
 
 
 
 
287
  msgid "Session Duration"
288
  msgstr ""
289
 
290
- #: ../admin/config/index.php:113
291
  msgid ""
292
  "How many seconds should a human session last? Google Analytics sets it to "
293
  "1800 seconds."
294
  msgstr ""
295
 
296
- #: ../admin/config/index.php:113 ../admin/config/index.php:175
297
  msgid "seconds"
298
  msgstr ""
299
 
300
- #: ../admin/config/index.php:114
301
  msgid "Extend Session"
302
  msgstr ""
303
 
304
- #: ../admin/config/index.php:114
305
  msgid "Extend the duration of a session each time the user visits a new page."
306
  msgstr ""
307
 
308
- #: ../admin/config/index.php:115
309
  msgid "Enable CDN"
310
  msgstr ""
311
 
312
- #: ../admin/config/index.php:115
313
  msgid ""
314
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
315
  "by serving our tracking code from their fast and reliable network (free "
316
  "service)."
317
  msgstr ""
318
 
319
- #: ../admin/config/index.php:117
 
 
 
 
 
 
 
 
 
 
 
 
320
  msgid "External Pages"
321
  msgstr ""
322
 
323
- #: ../admin/config/index.php:118
324
  msgid ""
325
  "Add the following code to all the non-WP pages you want to track, right "
326
  "before the closing BODY tag. Please make sure to change the protocol of all "
327
  "the URLs to HTTPS, if you external site is served over a secure channel."
328
  msgstr ""
329
 
330
- #: ../admin/config/index.php:128
331
  msgid "Allow Domains"
332
  msgstr ""
333
 
334
- #: ../admin/config/index.php:128
335
  msgid ""
336
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
337
  "header is present on the requested resource, when using the external "
@@ -342,109 +464,107 @@ msgid ""
342
  "implications of allowing CORS requests."
343
  msgstr ""
344
 
345
- #: ../admin/config/index.php:133
346
  msgid "Filters"
347
  msgstr ""
348
 
349
- #: ../admin/config/index.php:135
350
- msgid "Do not track settings"
351
  msgstr ""
352
 
353
- #: ../admin/config/index.php:136
354
- msgid "Blacklist by Username"
355
  msgstr ""
356
 
357
- #: ../admin/config/index.php:136
358
- msgid ""
359
- "List all the usernames you don't want to track. Please be aware that spaces "
360
- "are <em>not</em> ignored and that usernames are case sensitive. Wildcards: "
361
- "<code>*</code> matches 'any string, including the empty string', <code>!</"
362
- "code> matches 'any character'. For example, <code>user*</code> will match "
363
- "user12 and userfoo, <code>u*100</code> will match user100 and uber100, "
364
- "<code>user!0</code> will match user10 and user90."
365
  msgstr ""
366
 
367
- #: ../admin/config/index.php:137
368
- msgid "Blacklist by IP Address"
369
  msgstr ""
370
 
371
- #: ../admin/config/index.php:137
372
  msgid ""
373
- "List all the IP addresses you don't want to track. Each network "
374
- "<strong>must</strong> be defined using the <a href='http://en.wikipedia.org/"
375
- "wiki/Classless_Inter-Domain_Routing' target='_blank'>CIDR notation</a> (i.e. "
376
- "<em>192.168.0.0/24</em>). This filter applies both to the public IP and the "
377
- "originating IP, if available."
378
  msgstr ""
379
 
380
- #: ../admin/config/index.php:138
381
- msgid "Blacklist by Capability"
382
  msgstr ""
383
 
384
- #: ../admin/config/index.php:138
385
  msgid ""
386
- "Users having at least one of the <a href='http://codex.wordpress.org/"
387
- "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
388
- "will not be tracked. Capabilities are case-insensitive."
 
389
  msgstr ""
390
 
391
- #: ../admin/config/index.php:140
392
- msgid "Profiling"
393
  msgstr ""
394
 
395
- #: ../admin/config/index.php:141
396
- msgid "Ignore Spammers"
 
 
 
397
  msgstr ""
398
 
399
- #: ../admin/config/index.php:141
400
- msgid ""
401
- "Enable this option if you don't want to track visits from users identified "
402
- "as spammers by third-party tools like Akismet. Pageviews generated by users "
403
- "whose comments are later marked as spam, will also be removed from the "
404
- "database."
405
  msgstr ""
406
 
407
- #: ../admin/config/index.php:142
408
- msgid "Ignore Bots"
409
  msgstr ""
410
 
411
- #: ../admin/config/index.php:142
412
  msgid ""
413
- "Turn on this feature if you want to have the accuracy level of server-side "
414
- "tracking, but not the inconvenience of getting your database clogged with "
415
- "pageviews generated by crawlers, spiders, search engine bots, etc. Please "
416
- "note that in Client mode, bots are ignored regardless of this setting."
 
 
417
  msgstr ""
418
 
419
- #: ../admin/config/index.php:143
420
- msgid "Permalinks"
421
  msgstr ""
422
 
423
- #: ../admin/config/index.php:143
424
  msgid ""
425
- "List all the URLs on your website that you don't want to track. Don't "
426
- "include the domain name: <em>/about, ?p=1</em>, etc. Wildcards: <code>*</"
427
- "code> matches 'any string, including the empty string', <code>!</code> "
428
- "matches 'any character'. For example, <code>/abou*</code> will match /about "
429
- "and /abound, <code>/abo*t</code> will match /aboundant and /about, <code>/"
430
- "abo!t</code> will match /about and /abort. Strings are case-insensitive."
 
 
 
431
  msgstr ""
432
 
433
- #: ../admin/config/index.php:144
434
  msgid "Countries"
435
  msgstr ""
436
 
437
- #: ../admin/config/index.php:144
438
  msgid ""
439
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
440
  "track."
441
  msgstr ""
442
 
443
- #: ../admin/config/index.php:145
444
  msgid "User Agents"
445
  msgstr ""
446
 
447
- #: ../admin/config/index.php:145
448
  msgid ""
449
  "Browsers (user agents) you don't want to track. You can specify the "
450
  "browser's version adding a slash after the name (i.e. <em>Firefox/3.6</"
@@ -454,163 +574,206 @@ msgid ""
454
  "and IE/8.0. Strings are case-insensitive."
455
  msgstr ""
456
 
457
- #: ../admin/config/index.php:146
458
- msgid "Referring Sites"
459
  msgstr ""
460
 
461
- #: ../admin/config/index.php:146
462
  msgid ""
463
- "Referring URLs that you don't want to track: <code>http://mysite.com*</"
464
- "code>, <code>*/ignore-me-please</code>, etc. Wildcards: <code>*</code> "
465
- "matches 'any string, including the empty string', <code>!</code> matches "
466
- "'any character'. Strings are case-insensitive. Please include either a "
467
- "wildcard or the protocol you want to filter (http://, https://)."
468
  msgstr ""
469
 
470
- #: ../admin/config/index.php:148 ../admin/config/index.php:178
471
- msgid "Miscellaneous"
472
  msgstr ""
473
 
474
- #: ../admin/config/index.php:149
475
- msgid "Enable Privacy Mode"
 
 
 
476
  msgstr ""
477
 
478
- #: ../admin/config/index.php:149
479
- msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
480
  msgstr ""
481
 
482
- #: ../admin/config/index.php:150
483
- msgid "Ignore Prefetch Requests"
484
  msgstr ""
485
 
486
- #: ../admin/config/index.php:150
487
  msgid ""
488
- "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
489
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
490
- "target='_blank'>Link Prefetching functionality</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
491
  msgstr ""
492
 
493
- #: ../admin/config/index.php:155 ../admin/config/index.php:189
494
  msgid "Reports"
495
  msgstr ""
496
 
497
- #: ../admin/config/index.php:157
498
- msgid "Formats and Conversions"
499
  msgstr ""
500
 
501
- #: ../admin/config/index.php:158
502
  msgid "Number Format"
503
  msgstr ""
504
 
505
- #: ../admin/config/index.php:158
506
  msgid "Choose the number format you want to use for your reports."
507
  msgstr ""
508
 
509
- #: ../admin/config/index.php:159
510
  msgid "Date Format"
511
  msgstr ""
512
 
513
- #: ../admin/config/index.php:159
514
  msgid ""
515
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
516
  "Format</a> to use when displaying a pageview's date."
517
  msgstr ""
518
 
519
- #: ../admin/config/index.php:160
520
  msgid "Time Format"
521
  msgstr ""
522
 
523
- #: ../admin/config/index.php:160
524
  msgid ""
525
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
526
  "Format</a> to use when displaying a pageview's time."
527
  msgstr ""
528
 
529
- #: ../admin/config/index.php:161
530
  msgid "Use Display Name"
531
  msgstr ""
532
 
533
- #: ../admin/config/index.php:161
534
  msgid ""
535
  "By default, users are listed by their usernames. Use this option to "
536
  "visualize their display names instead."
537
  msgstr ""
538
 
539
- #: ../admin/config/index.php:162
540
  msgid "Use Titles"
541
  msgstr ""
542
 
543
- #: ../admin/config/index.php:162
544
  msgid ""
545
  "Slimstat converts your permalinks into post, page and category titles. "
546
  "Disable this feature if you need to see the URL in your reports."
547
  msgstr ""
548
 
549
- #: ../admin/config/index.php:163
550
  msgid "Convert IP Addresses"
551
  msgstr ""
552
 
553
- #: ../admin/config/index.php:163
554
  msgid "Display provider names instead of IP addresses."
555
  msgstr ""
556
 
557
- #: ../admin/config/index.php:165
558
  msgid "Functionality"
559
  msgstr ""
560
 
561
- #: ../admin/config/index.php:166
562
  msgid "Async Mode"
563
  msgstr ""
564
 
565
- #: ../admin/config/index.php:166
566
  msgid ""
567
  "Activate this feature if your reports take a while to load. It breaks down "
568
  "the load on your server into multiple requests, thus avoiding memory issues "
569
  "and performance problems."
570
  msgstr ""
571
 
572
- #: ../admin/config/index.php:167
 
 
 
 
 
 
 
 
 
 
 
 
573
  msgid "Expand Details"
574
  msgstr ""
575
 
576
- #: ../admin/config/index.php:167
577
  msgid "Expand each row's details by default, insted of on mousehover."
578
  msgstr ""
579
 
580
- #: ../admin/config/index.php:168 ../admin/config/index.php:176
581
  msgid "Rows to Display"
582
  msgstr ""
583
 
584
- #: ../admin/config/index.php:168
585
  msgid "Specify the number of items in each report."
586
  msgstr ""
587
 
588
- #: ../admin/config/index.php:169 ../admin/view/wp-slimstat-db.php:121
589
  msgid "Max Results"
590
  msgstr ""
591
 
592
- #: ../admin/config/index.php:169
593
  msgid ""
594
  "Decide how many records should be retrieved from the database in total. "
595
  "Depending on your server configuration, you may want to fine tune this value "
596
  "to avoid exceeding your PHP memory limit."
597
  msgstr ""
598
 
599
- #: ../admin/config/index.php:170
600
  msgid "IP Lookup"
601
  msgstr ""
602
 
603
- #: ../admin/config/index.php:170
604
  msgid ""
605
  "Customize the Geolocation service to be used in the reports. Default: "
606
  "<code>http://www.infosniper.net/?ip_address=</code>"
607
  msgstr ""
608
 
609
- #: ../admin/config/index.php:171
610
  msgid "Mozscape Access ID"
611
  msgstr ""
612
 
613
- #: ../admin/config/index.php:171
614
  msgid ""
615
  "Get accurate rankings for your website through the free <a href=\"https://"
616
  "moz.com/community/join?redirect=/products/api/keys\" target=\"_blank"
@@ -618,39 +781,54 @@ msgid ""
618
  "started. Then enter your personal identification code here."
619
  msgstr ""
620
 
621
- #: ../admin/config/index.php:172
622
  msgid "Mozscape Secret Key"
623
  msgstr ""
624
 
625
- #: ../admin/config/index.php:172
626
  msgid ""
627
  "Do not share your secret key with anyone or they will be able to make API "
628
  "requests on your account!"
629
  msgstr ""
630
 
631
- #: ../admin/config/index.php:174 ../admin/wp-slimstat-admin.php:33
632
- msgid "Access Log"
633
  msgstr ""
634
 
635
- #: ../admin/config/index.php:175
636
  msgid "Auto Refresh"
637
  msgstr ""
638
 
639
- #: ../admin/config/index.php:175
640
  msgid ""
641
  "Enable the Live View, which refreshes the Access Log every X seconds. Enter "
642
  "<strong>0</strong> (number zero) to deactivate this feature."
643
  msgstr ""
644
 
645
- #: ../admin/config/index.php:176
646
  msgid "Specify the number of items in the Access Log."
647
  msgstr ""
648
 
649
- #: ../admin/config/index.php:179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
650
  msgid "Custom CSS"
651
  msgstr ""
652
 
653
- #: ../admin/config/index.php:179
654
  msgid ""
655
  "Paste here your custom stylesheet to personalize the way your reports look. "
656
  "<a href='https://slimstat.freshdesk.com/support/solutions/"
@@ -659,11 +837,11 @@ msgid ""
659
  "a> for more information on how to use this setting."
660
  msgstr ""
661
 
662
- #: ../admin/config/index.php:180
663
  msgid "Chart Colors"
664
  msgstr ""
665
 
666
- #: ../admin/config/index.php:180
667
  msgid ""
668
  "Customize the look and feel of your charts by assigning personalized colors "
669
  "to each metric. List 4 hex colors, strictly in the following order: metric 1 "
@@ -671,46 +849,57 @@ msgid ""
671
  "example: <code>#ccc, #999, #bbcc44, #21759b</code>."
672
  msgstr ""
673
 
674
- #: ../admin/config/index.php:181
 
 
 
 
 
 
 
 
 
 
675
  msgid "Show User Agent"
676
  msgstr ""
677
 
678
- #: ../admin/config/index.php:181
679
  msgid ""
680
  "Choose if you want to see the browser name or a complete user agent string "
681
- "when hovering on browser icons."
682
  msgstr ""
683
 
684
- #: ../admin/config/index.php:182
685
  msgid "Enable SOV"
686
  msgstr ""
687
 
688
- #: ../admin/config/index.php:182
689
  msgid ""
690
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
691
  "the subject, object, and verb of a sentence appear in that order, like in "
692
  "Japanese."
693
  msgstr ""
694
 
695
- #: ../admin/config/index.php:187
696
  msgid "Access Control"
697
  msgstr ""
698
 
699
- #: ../admin/config/index.php:190
700
  msgid "Restrict Authors"
701
  msgstr ""
702
 
703
- #: ../admin/config/index.php:190
704
  msgid ""
705
  "Enable this option if you want your authors to only see stats related to "
706
  "their own content."
707
  msgstr ""
708
 
709
- #: ../admin/config/index.php:191 ../admin/config/index.php:195
 
710
  msgid "Capability"
711
  msgstr ""
712
 
713
- #: ../admin/config/index.php:191
714
  msgid ""
715
  "Specify the minimum <a href='http://codex.wordpress.org/"
716
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
@@ -720,24 +909,44 @@ msgid ""
720
  "In this case, the list has precedence over the capability."
721
  msgstr ""
722
 
723
- #: ../admin/config/index.php:192 ../admin/config/index.php:196
 
724
  msgid "Whitelist"
725
  msgstr ""
726
 
727
- #: ../admin/config/index.php:192
728
  msgid ""
729
  "List all the users who should have access to the reports. Administrators are "
730
  "implicitly allowed, so you don't need to list them in here. Usernames are "
731
  "case sensitive."
732
  msgstr ""
733
 
734
- #: ../admin/config/index.php:194 ../admin/config/index.php:219
735
- #: ../admin/wp-slimstat-admin.php:859 ../admin/wp-slimstat-admin.php:877
736
- #: ../admin/wp-slimstat-admin.php:880
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
737
  msgid "Settings"
738
  msgstr ""
739
 
740
- #: ../admin/config/index.php:195
741
  msgid ""
742
  "Specify the minimum <a href='http://codex.wordpress.org/"
743
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -745,23 +954,44 @@ msgid ""
745
  "can be used to override this option for specific users."
746
  msgstr ""
747
 
748
- #: ../admin/config/index.php:196
749
  msgid ""
750
  "List all the users who can edit these options. Please be advised that admins "
751
  "<strong>are not</strong> implicitly allowed, so do not forget to include "
752
  "yourself! Usernames are case sensitive."
753
  msgstr ""
754
 
755
- #: ../admin/config/index.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
756
  msgid "Maintenance"
757
  msgstr ""
758
 
759
- #: ../admin/config/index.php:206 ../admin/view/addons.php:35
760
- #: ../admin/wp-slimstat-admin.php:75
761
  msgid "Add-ons"
762
  msgstr ""
763
 
764
- #: ../admin/config/index.php:220 ../admin/view/index.php:6
765
  msgid ""
766
  "<strong>AdBlock browser extension detected</strong> - If you see this "
767
  "notice, it means that your browser is not loading our stylesheet and/or "
@@ -787,209 +1017,195 @@ msgstr ""
787
  msgid "records deleted from your database."
788
  msgstr ""
789
 
790
- #: ../admin/config/maintenance.php:48
791
  msgid "The geolocation database has been uninstalled from your server."
792
  msgstr ""
793
 
794
- #: ../admin/config/maintenance.php:58
 
 
 
 
 
 
795
  msgid "The geolocation database has been installed on your server."
796
  msgstr ""
797
 
798
- #: ../admin/config/maintenance.php:66
799
  msgid "The Browscap data file has been uninstalled from your server."
800
  msgstr ""
801
 
802
- #: ../admin/config/maintenance.php:69
803
  msgid ""
804
  "There was an error deleting the Browscap data folder on your server. Please "
805
  "check your permissions."
806
  msgstr ""
807
 
808
- #: ../admin/config/maintenance.php:90
809
  msgid "Your new Slimstat settings have been imported and installed."
810
  msgstr ""
811
 
812
- #: ../admin/config/maintenance.php:93
813
  msgid ""
814
  "There was an error decoding your settings string. Please verify that it is a "
815
  "valid serialized string."
816
  msgstr ""
817
 
818
- #: ../admin/config/maintenance.php:111
819
- msgid "Your reports were successfully restored to their default arrangement."
820
- msgstr ""
821
-
822
- #: ../admin/config/maintenance.php:121
823
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
824
  msgstr ""
825
 
826
- #: ../admin/config/maintenance.php:127
827
  msgid "All the archived records were successfully deleted."
828
  msgstr ""
829
 
830
- #: ../admin/config/maintenance.php:135
831
  msgid "All the records were successfully deleted."
832
  msgstr ""
833
 
834
- #: ../admin/config/maintenance.php:161
835
  msgid "Troubleshooting"
836
  msgstr ""
837
 
838
- #: ../admin/config/maintenance.php:164
839
  msgid "Tracker Error"
840
  msgstr ""
841
 
842
- #: ../admin/config/maintenance.php:166
843
  msgid "Reset this error"
844
  msgstr ""
845
 
846
- #: ../admin/config/maintenance.php:166 ../admin/config/maintenance.php:173
847
  msgid "So far so good."
848
  msgstr ""
849
 
850
- #: ../admin/config/maintenance.php:167
851
  msgid ""
852
  "The information here above is useful to troubleshoot issues with the "
853
  "tracker. <strong>Errors</strong> are returned when the tracker could not "
854
  "record a page view for some reason, and are indicative of some kind of "
855
- "malfunction. Please include the message here above when sending a support "
856
- "request."
857
  msgstr ""
858
 
859
- #: ../admin/config/maintenance.php:171
860
  msgid "Tracker Notice"
861
  msgstr ""
862
 
863
- #: ../admin/config/maintenance.php:173
864
  msgid "Reset this notice"
865
  msgstr ""
866
 
867
- #: ../admin/config/maintenance.php:174
868
  msgid ""
869
  "The message here above will indicate if a page view was not recorded because "
870
  "it matched at least one of the conditions you configured in your settings "
871
  "(filters, blackslists, etc)."
872
  msgstr ""
873
 
874
- #: ../admin/config/maintenance.php:180
875
  msgid "Enable SQL Debug"
876
  msgstr ""
877
 
878
- #: ../admin/config/maintenance.php:183
879
  msgid ""
880
  "Display the SQL code used to retrieve the data from the database. Useful to "
881
  "troubleshoot issues with data consistency or missing pageviews."
882
  msgstr ""
883
 
884
- #: ../admin/config/maintenance.php:187
885
  msgid "Disable SQL Debug"
886
  msgstr ""
887
 
888
- #: ../admin/config/maintenance.php:190
889
  msgid "Deactivate the SQL output on top of each report."
890
  msgstr ""
891
 
892
- #: ../admin/config/maintenance.php:195
893
- msgid ""
894
- "Are you sure you want to restore the default arrangement of your reports?"
895
- msgstr ""
896
-
897
- #: ../admin/config/maintenance.php:195
898
- msgid "No Panic Button"
899
- msgstr ""
900
-
901
- #: ../admin/config/maintenance.php:197
902
- msgid ""
903
- "Reset the default arrangement of your reports. Helpful when, for some "
904
- "reason, reports disappear from your panels or something doesn't look right "
905
- "in your views."
906
- msgstr ""
907
-
908
- #: ../admin/config/maintenance.php:201
909
  msgid "Data Maintenance"
910
  msgstr ""
911
 
912
- #: ../admin/config/maintenance.php:204
913
  msgid "Delete pageviews where"
914
  msgstr ""
915
 
916
- #: ../admin/config/maintenance.php:218 ../admin/view/wp-slimstat-db.php:71
917
  msgid "equals"
918
  msgstr ""
919
 
920
- #: ../admin/config/maintenance.php:219 ../admin/view/wp-slimstat-db.php:72
921
  msgid "is not equal to"
922
  msgstr ""
923
 
924
- #: ../admin/config/maintenance.php:220 ../admin/view/wp-slimstat-db.php:73
925
  msgid "contains"
926
  msgstr ""
927
 
928
- #: ../admin/config/maintenance.php:221 ../admin/view/wp-slimstat-db.php:74
929
  msgid "is included in"
930
  msgstr ""
931
 
932
- #: ../admin/config/maintenance.php:222 ../admin/view/wp-slimstat-db.php:75
933
  msgid "does not contain"
934
  msgstr ""
935
 
936
- #: ../admin/config/maintenance.php:223 ../admin/view/wp-slimstat-db.php:76
937
  msgid "starts with"
938
  msgstr ""
939
 
940
- #: ../admin/config/maintenance.php:224 ../admin/view/wp-slimstat-db.php:77
941
  msgid "ends with"
942
  msgstr ""
943
 
944
- #: ../admin/config/maintenance.php:225 ../admin/view/wp-slimstat-db.php:78
945
  msgid "sounds like"
946
  msgstr ""
947
 
948
- #: ../admin/config/maintenance.php:226 ../admin/view/wp-slimstat-db.php:79
949
  msgid "is greater than"
950
  msgstr ""
951
 
952
- #: ../admin/config/maintenance.php:227 ../admin/view/wp-slimstat-db.php:80
953
  msgid "is less than"
954
  msgstr ""
955
 
956
- #: ../admin/config/maintenance.php:228 ../admin/view/wp-slimstat-db.php:82
957
  msgid "matches"
958
  msgstr ""
959
 
960
- #: ../admin/config/maintenance.php:229 ../admin/view/wp-slimstat-db.php:83
961
  msgid "does not match"
962
  msgstr ""
963
 
964
- #: ../admin/config/maintenance.php:230 ../admin/view/wp-slimstat-db.php:84
965
  msgid "is empty"
966
  msgstr ""
967
 
968
- #: ../admin/config/maintenance.php:231 ../admin/view/wp-slimstat-db.php:85
969
  msgid "is not empty"
970
  msgstr ""
971
 
972
- #: ../admin/config/maintenance.php:234 ../admin/view/index.php:31
973
- #: ../admin/view/index.php:114
974
  msgid "Apply"
975
  msgstr ""
976
 
977
- #: ../admin/config/maintenance.php:235
978
  msgid ""
979
  "Are you sure you want to PERMANENTLY delete these records from your database?"
980
  msgstr ""
981
 
982
- #: ../admin/config/maintenance.php:242
983
  msgid ""
984
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
985
  "database?"
986
  msgstr ""
987
 
988
- #: ../admin/config/maintenance.php:242
989
  msgid "Delete All Records"
990
  msgstr ""
991
 
992
- #: ../admin/config/maintenance.php:245
993
  msgid ""
994
  "Erase all the information collected so far by Slimstat, but not the archived "
995
  "records (<code>wp_slim_stats_archive</code>). This operation <strong>does "
@@ -997,90 +1213,94 @@ msgid ""
997
  "your records from the archive table."
998
  msgstr ""
999
 
1000
- #: ../admin/config/maintenance.php:251
1001
  msgid ""
1002
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1003
  "archive?"
1004
  msgstr ""
1005
 
1006
- #: ../admin/config/maintenance.php:251
1007
  msgid "Delete Archive"
1008
  msgstr ""
1009
 
1010
- #: ../admin/config/maintenance.php:254
1011
  msgid "Erase all the archived records. This operation cannot be undone."
1012
  msgstr ""
1013
 
1014
- #: ../admin/config/maintenance.php:260
1015
  msgid "Improve Performance"
1016
  msgstr ""
1017
 
1018
- #: ../admin/config/maintenance.php:264
1019
  msgid ""
1020
  "Please note that you will need about 30% more DB space to store the extra "
1021
  "information required."
1022
  msgstr ""
1023
 
1024
- #: ../admin/config/maintenance.php:268
1025
  msgid "Save DB Space"
1026
  msgstr ""
1027
 
1028
- #: ../admin/config/maintenance.php:271
1029
  msgid ""
1030
  "Please note that by removing table indexes, Slimstat's performance will be "
1031
  "affected."
1032
  msgstr ""
1033
 
1034
- #: ../admin/config/maintenance.php:276
1035
  msgid "External Data Files"
1036
  msgstr ""
1037
 
1038
- #: ../admin/config/maintenance.php:282
1039
  msgid ""
1040
  "Do you want to download and install the geolocation database from MaxMind's "
1041
  "server?"
1042
  msgstr ""
1043
 
1044
- #: ../admin/config/maintenance.php:282
1045
  msgid "Install GeoLite DB"
1046
  msgstr ""
1047
 
1048
- #: ../admin/config/maintenance.php:285
1049
  msgid "Do you want to uninstall the geolocation database?"
1050
  msgstr ""
1051
 
1052
- #: ../admin/config/maintenance.php:285
1053
  msgid "Uninstall GeoLite DB"
1054
  msgstr ""
1055
 
1056
- #: ../admin/config/maintenance.php:289
1057
  msgid ""
1058
- "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1059
- "target='_blank'>MaxMind GeoLite library</a>, which Slimstat uses to "
1060
  "geolocate visitors, is released under the Creative Commons BY-SA 3.0 "
1061
  "license, and cannot be directly bundled with the plugin because of license "
1062
  "incompatibility issues. We are mandated to have the user take an affirmative "
1063
- "action in order to enable this functionality."
 
 
 
 
1064
  msgstr ""
1065
 
1066
- #: ../admin/config/maintenance.php:296
1067
  msgid ""
1068
  "Do you want to download and install the Browscap data file from our server?"
1069
  msgstr ""
1070
 
1071
- #: ../admin/config/maintenance.php:296
1072
  msgid "Install Browscap"
1073
  msgstr ""
1074
 
1075
- #: ../admin/config/maintenance.php:299
1076
  msgid "Do you want to uninstall the Browscap data file?"
1077
  msgstr ""
1078
 
1079
- #: ../admin/config/maintenance.php:299
1080
  msgid "Uninstall Browscap"
1081
  msgstr ""
1082
 
1083
- #: ../admin/config/maintenance.php:303
1084
  msgid ""
1085
  "We are contributing to the <a href='http://browscap.org/' "
1086
  "target='_blank'>Browscap Capabilities Project</a>, which we use to decode "
@@ -1096,46 +1316,46 @@ msgid ""
1096
  "questions."
1097
  msgstr ""
1098
 
1099
- #: ../admin/config/maintenance.php:307
1100
  msgid "Configuration String"
1101
  msgstr ""
1102
 
1103
- #: ../admin/config/maintenance.php:311
1104
  msgid ""
1105
  "Here below you can find the current configuration string for Slimstat. You "
1106
  "can update your settings by pasting a new string inside the text area and "
1107
  "clicking the Import button."
1108
  msgstr ""
1109
 
1110
- #: ../admin/config/maintenance.php:316
1111
  msgid "Import"
1112
  msgstr ""
1113
 
1114
- #: ../admin/config/maintenance.php:317
1115
  msgid "Are you sure you want to OVERWRITE your current settings?"
1116
  msgstr ""
1117
 
1118
- #: ../admin/config/maintenance.php:322
1119
  msgid "Database Information"
1120
  msgstr ""
1121
 
1122
- #: ../admin/config/maintenance.php:325
1123
  msgid "Engine"
1124
  msgstr ""
1125
 
1126
- #: ../admin/config/maintenance.php:329
1127
  msgid "switch to InnoDB"
1128
  msgstr ""
1129
 
1130
- #: ../admin/config/maintenance.php:340
1131
  msgid "records"
1132
  msgstr ""
1133
 
1134
- #: ../admin/config/maintenance.php:347
1135
  msgid "Old Tables"
1136
  msgstr ""
1137
 
1138
- #: ../admin/config/maintenance.php:348
1139
  #, php-format
1140
  msgid ""
1141
  "It looks like your database was upgraded from a version prior to 4.0. Our "
@@ -1203,116 +1423,136 @@ msgid "Installed and Active"
1203
  msgstr ""
1204
 
1205
  #: ../admin/view/index.php:10
1206
- msgid "Filter"
1207
  msgstr ""
1208
 
1209
  #: ../admin/view/index.php:35
1210
  msgid "Load"
1211
  msgstr ""
1212
 
1213
- #: ../admin/view/index.php:55 ../admin/view/wp-slimstat-reports.php:1459
1214
  msgid "Today"
1215
  msgstr ""
1216
 
1217
- #: ../admin/view/index.php:56 ../admin/view/wp-slimstat-reports.php:1462
1218
  msgid "Yesterday"
1219
  msgstr ""
1220
 
1221
- #: ../admin/view/index.php:57
1222
  msgid "Last 7 Days"
1223
  msgstr ""
1224
 
1225
- #: ../admin/view/index.php:58
1226
- msgid "Last 60 Days"
1227
  msgstr ""
1228
 
1229
- #: ../admin/view/index.php:59
1230
  msgid "Last 90 Days"
1231
  msgstr ""
1232
 
1233
- #: ../admin/view/index.php:60
1234
- msgid "This Year So Far"
1235
  msgstr ""
1236
 
1237
- #: ../admin/view/index.php:61
1238
  msgid "Date Range"
1239
  msgstr ""
1240
 
1241
- #: ../admin/view/index.php:65 ../admin/view/wp-slimstat-db.php:94
 
 
 
 
1242
  msgid "Day"
1243
  msgstr ""
1244
 
1245
- #: ../admin/view/index.php:77 ../admin/view/wp-slimstat-db.php:95
1246
  msgid "Month"
1247
  msgstr ""
1248
 
1249
- #: ../admin/view/index.php:88 ../admin/view/wp-slimstat-db.php:96
1250
  msgid "Year"
1251
  msgstr ""
1252
 
1253
- #: ../admin/view/index.php:92 ../admin/view/wp-slimstat-db.php:93
1254
- msgid "Hour"
1255
- msgstr ""
1256
-
1257
- #: ../admin/view/index.php:95
1258
- msgid "Min"
1259
  msgstr ""
1260
 
1261
- #: ../admin/view/index.php:109 ../admin/view/wp-slimstat-db.php:99
1262
- msgid "hours"
 
 
1263
  msgstr ""
1264
 
1265
- #: ../admin/view/index.php:112
1266
- msgid "mins"
1267
  msgstr ""
1268
 
1269
- #: ../admin/view/index.php:123
1270
  msgid "Reset Filters"
1271
  msgstr ""
1272
 
1273
- #: ../admin/view/index.php:142
1274
  #, php-format
1275
  msgid ""
1276
  "<a href='%s' class='noslimstat'>Install MaxMind's GeoLite DB</a> to "
1277
  "determine your visitors' country of origin."
1278
  msgstr ""
1279
 
1280
- #: ../admin/view/index.php:146
1281
  #, php-format
1282
  msgid ""
1283
  "Install the Browscap <a href='%s' class='noslimstat'>User Agent Database</a> "
1284
  "to accurately determine your visitors' browser and operating system."
1285
  msgstr ""
1286
 
1287
- #: ../admin/view/index.php:150
1288
  #, php-format
1289
  msgid ""
1290
- "A caching plugin has been detected on your website. Please <a href='%s' "
1291
  "target='_blank' class='noslimstat'>make sure to configure</a> Slimstat "
1292
  "Analytics accordingly, to get accurate information."
1293
  msgstr ""
1294
 
1295
- #: ../admin/view/layout.php:47
1296
  msgid "Customize and organize your reports"
1297
  msgstr ""
1298
 
1299
- #: ../admin/view/layout.php:48
1300
  msgid ""
1301
  "Drag and drop report placeholders from one container to another, to "
1302
  "customize the information you want to see right away when you open Slimstat. "
1303
  "Place two or more charts on the same view, clone reports or move them to the "
1304
  "Inactive Reports container for improved performance. It is your website, and "
1305
  "you know how metrics should be combined to get a clear picture of the "
1306
- "traffic it generates.<br/><br/><strong>Note</strong>: if a placeholder is "
1307
- "greyed out, it means that the corresponding report is currently hidden "
1308
- "(Screen Options tab)."
 
 
 
 
1309
  msgstr ""
1310
 
1311
  #: ../admin/view/layout.php:64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1312
  msgid "Clone"
1313
  msgstr ""
1314
 
1315
- #: ../admin/view/layout.php:68
1316
  msgid "Delete"
1317
  msgstr ""
1318
 
@@ -1332,147 +1572,159 @@ msgstr ""
1332
  msgid "Syndication Reader"
1333
  msgstr ""
1334
 
1335
- #: ../admin/view/right-now.php:52 ../admin/view/wp-slimstat-reports.php:1060
1336
- #: ../admin/view/wp-slimstat-reports.php:1823
 
 
1337
  msgid "No data to display"
1338
  msgstr ""
1339
 
1340
- #: ../admin/view/right-now.php:73
1341
  msgid "Date and Time"
1342
  msgstr ""
1343
 
1344
  # Unknown
1345
- #: ../admin/view/right-now.php:82 ../admin/view/wp-slimstat-reports.php:1112
1346
- #: ../admin/view/wp-slimstat-reports.php:1866 ../wp-slimstat.php:1292
1347
  msgid "c-"
1348
  msgstr "Unknown"
1349
 
1350
- #: ../admin/view/right-now.php:128 ../admin/view/wp-slimstat-db.php:60
1351
- #: ../admin/wp-slimstat-admin.php:1341 ../admin/wp-slimstat-admin.php:1381
1352
  msgid "Originating IP"
1353
  msgstr ""
1354
 
1355
- #: ../admin/view/right-now.php:169 ../admin/view/wp-slimstat-reports.php:1219
1356
- #: ../admin/view/wp-slimstat-reports.php:1224
1357
- #: ../admin/view/wp-slimstat-reports.php:1229
 
1358
  msgid "Open this URL in a new window"
1359
  msgstr ""
1360
 
1361
- #: ../admin/view/right-now.php:181
1362
  msgid "Local search results page"
1363
  msgstr ""
1364
 
1365
- #: ../admin/view/right-now.php:190 ../admin/view/wp-slimstat-db.php:42
1366
- #: ../admin/view/wp-slimstat-reports.php:246
1367
- #: ../admin/view/wp-slimstat-reports.php:256
1368
- #: ../admin/wp-slimstat-admin.php:1344 ../admin/wp-slimstat-admin.php:1360
1369
  msgid "Search Terms"
1370
  msgstr ""
1371
 
1372
- #: ../admin/view/right-now.php:202
1373
  msgid "Server Latency and Page Speed in milliseconds"
1374
  msgstr ""
1375
 
1376
- #: ../admin/view/right-now.php:202
1377
  msgid "SL"
1378
  msgstr ""
1379
 
1380
- #: ../admin/view/right-now.php:202
1381
  msgid "PS"
1382
  msgstr ""
1383
 
1384
- #: ../admin/view/right-now.php:209
1385
  msgid "Time spent on this page"
1386
  msgstr ""
1387
 
1388
- #: ../admin/view/right-now.php:226
 
 
 
 
1389
  msgid "Open this referrer in a new window"
1390
  msgstr ""
1391
 
1392
- #: ../admin/view/right-now.php:227
1393
  msgid "Content Type"
1394
  msgstr ""
1395
 
1396
- #: ../admin/view/right-now.php:234
1397
  msgid "Open this outbound link in a new window"
1398
  msgstr ""
1399
 
1400
- #: ../admin/view/right-now.php:242
1401
  msgid "Delete this entry from the database"
1402
  msgstr ""
1403
 
1404
- #: ../admin/view/right-now.php:254
1405
  msgid "User Logged In"
1406
  msgstr ""
1407
 
1408
- #: ../admin/view/right-now.php:264
1409
  msgid "User Logged Out"
1410
  msgstr ""
1411
 
1412
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:1357
1413
  msgid "Browser"
1414
  msgstr ""
1415
 
1416
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:1358
1417
  msgid "Country Code"
1418
  msgstr ""
1419
 
1420
- #: ../admin/view/wp-slimstat-db.php:41
1421
  msgid "IP Address"
1422
  msgstr ""
1423
 
1424
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:1361
1425
  msgid "Language Code"
1426
  msgstr ""
1427
 
1428
- #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:106
1429
- #: ../admin/wp-slimstat-admin.php:1362
1430
  msgid "Operating System"
1431
  msgstr ""
1432
 
1433
- #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:107
1434
- #: ../admin/wp-slimstat-admin.php:1363
1435
  msgid "Permalink"
1436
  msgstr ""
1437
 
1438
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/view/wp-slimstat-db.php:108
1439
- #: ../admin/wp-slimstat-admin.php:1364
1440
  msgid "Referer"
1441
  msgstr ""
1442
 
1443
- #: ../admin/view/wp-slimstat-db.php:47
1444
  msgid "Visitor's Username"
1445
  msgstr ""
1446
 
1447
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:1347
1448
  msgid "Outbound Link"
1449
  msgstr ""
1450
 
1451
- #: ../admin/view/wp-slimstat-db.php:49
1452
  msgid "Page Speed"
1453
  msgstr ""
1454
 
1455
- #: ../admin/view/wp-slimstat-db.php:51
1456
  msgid "-- Advanced filters --"
1457
  msgstr ""
1458
 
1459
- #: ../admin/view/wp-slimstat-db.php:52
1460
- #: ../admin/view/wp-slimstat-reports.php:376
1461
  msgid "Browser Capabilities"
1462
  msgstr ""
1463
 
1464
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1376
1465
  msgid "Browser Version"
1466
  msgstr ""
1467
 
1468
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1377
1469
  msgid "Browser Type"
1470
  msgstr ""
1471
 
1472
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:1346
1473
  msgid "User Agent"
1474
  msgstr ""
1475
 
 
 
 
 
 
1476
  #: ../admin/view/wp-slimstat-db.php:56
1477
  msgid "Annotations"
1478
  msgstr ""
@@ -1481,15 +1733,15 @@ msgstr ""
1481
  msgid "Server Latency"
1482
  msgstr ""
1483
 
1484
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1379
1485
  msgid "Post Author"
1486
  msgstr ""
1487
 
1488
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1380
1489
  msgid "Post Category ID"
1490
  msgstr ""
1491
 
1492
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1382
1493
  msgid "Resource Content Type"
1494
  msgstr ""
1495
 
@@ -1509,2118 +1761,2118 @@ msgstr ""
1509
  msgid "Viewport Size"
1510
  msgstr ""
1511
 
1512
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1384
1513
  msgid "Visit ID"
1514
  msgstr ""
1515
 
1516
- #: ../admin/view/wp-slimstat-db.php:81
1517
  msgid "is between (x,y)"
1518
  msgstr ""
1519
 
1520
- #: ../admin/view/wp-slimstat-db.php:92
1521
  msgid "Minute"
1522
  msgstr ""
1523
 
1524
- #: ../admin/view/wp-slimstat-db.php:97
1525
- msgid "+/-"
1526
  msgstr ""
1527
 
1528
- #: ../admin/view/wp-slimstat-db.php:100
1529
  msgid "minutes"
1530
  msgstr ""
1531
 
1532
- #: ../admin/view/wp-slimstat-db.php:101
1533
  msgid "Timestamp"
1534
  msgstr ""
1535
 
1536
- #: ../admin/view/wp-slimstat-db.php:102
1537
  msgid "Exit Timestamp"
1538
  msgstr ""
1539
 
1540
- #: ../admin/view/wp-slimstat-db.php:105
1541
  msgid "Language"
1542
  msgstr ""
1543
 
1544
- #: ../admin/view/wp-slimstat-db.php:109
1545
  msgid "Metric"
1546
  msgstr ""
1547
 
1548
- #: ../admin/view/wp-slimstat-db.php:110
1549
  msgid "Value"
1550
  msgstr ""
1551
 
1552
- #: ../admin/view/wp-slimstat-db.php:111 ../admin/view/wp-slimstat-db.php:112
 
 
 
 
 
 
 
 
1553
  msgid "Notes"
1554
  msgstr ""
1555
 
1556
- #: ../admin/view/wp-slimstat-db.php:115
1557
  msgid "Event ID"
1558
  msgstr ""
1559
 
1560
- #: ../admin/view/wp-slimstat-db.php:116
1561
- #: ../admin/view/wp-slimstat-reports.php:1837
1562
  msgid "Type"
1563
  msgstr ""
1564
 
1565
- #: ../admin/view/wp-slimstat-db.php:117
1566
  msgid "Event Description"
1567
  msgstr ""
1568
 
1569
- #: ../admin/view/wp-slimstat-db.php:118
1570
  msgid "Event Coordinates"
1571
  msgstr ""
1572
 
1573
- #: ../admin/view/wp-slimstat-db.php:120
1574
- msgid "Direction"
1575
- msgstr ""
1576
-
1577
- #: ../admin/view/wp-slimstat-db.php:122
1578
  msgid "Offset"
1579
  msgstr ""
1580
 
1581
- #: ../admin/view/wp-slimstat-reports.php:65
1582
- msgid "Chart controls"
1583
  msgstr ""
1584
 
1585
- #: ../admin/view/wp-slimstat-reports.php:65
1586
- msgid "Use your mouse wheel to zoom in and out"
1587
  msgstr ""
1588
 
1589
- #: ../admin/view/wp-slimstat-reports.php:65
1590
- msgid "While zooming in, drag the chart to move to a different area"
1591
  msgstr ""
1592
 
1593
- #: ../admin/view/wp-slimstat-reports.php:69
1594
- msgid "Visitors Activity"
1595
  msgstr ""
1596
 
1597
- #: ../admin/view/wp-slimstat-reports.php:78
1598
- msgid "Color codes"
1599
  msgstr ""
1600
 
1601
- #: ../admin/view/wp-slimstat-reports.php:78
1602
- msgid "From search result page"
1603
  msgstr ""
1604
 
1605
- #: ../admin/view/wp-slimstat-reports.php:78 ../admin/wp-slimstat-admin.php:1339
1606
- msgid "Known Visitor"
1607
  msgstr ""
1608
 
1609
- #: ../admin/view/wp-slimstat-reports.php:78
1610
- msgid "Known Users"
1611
  msgstr ""
1612
 
1613
- #: ../admin/view/wp-slimstat-reports.php:78
1614
- msgid "Other Humans"
1615
  msgstr ""
1616
 
1617
- #: ../admin/view/wp-slimstat-reports.php:78
1618
- msgid "Bot or Crawler"
1619
  msgstr ""
1620
 
1621
- #: ../admin/view/wp-slimstat-reports.php:82
1622
- #: ../admin/view/wp-slimstat-reports.php:91
1623
- #: ../admin/view/wp-slimstat-reports.php:1437
1624
- #: ../admin/view/wp-slimstat-reports.php:1598
1625
- msgid "Pageviews"
1626
  msgstr ""
1627
 
1628
- #: ../admin/view/wp-slimstat-reports.php:92
1629
- #: ../admin/view/wp-slimstat-reports.php:289
1630
- #: ../admin/view/wp-slimstat-reports.php:530
1631
- #: ../admin/view/wp-slimstat-reports.php:1452
1632
- #: ../admin/view/wp-slimstat-reports.php:1500
1633
- msgid "Unique IPs"
1634
  msgstr ""
1635
 
1636
- #: ../admin/view/wp-slimstat-reports.php:100
1637
- msgid "About Slimstat"
 
 
1638
  msgstr ""
1639
 
1640
- #: ../admin/view/wp-slimstat-reports.php:109
1641
- msgid "Traffic at a Glance"
 
 
1642
  msgstr ""
1643
 
1644
- #: ../admin/view/wp-slimstat-reports.php:119
1645
- msgid "Currently Online"
1646
  msgstr ""
1647
 
1648
- #: ../admin/view/wp-slimstat-reports.php:132
1649
- msgid "Recent Search Terms"
1650
  msgstr ""
1651
 
1652
- #: ../admin/view/wp-slimstat-reports.php:143
1653
- msgid "Keywords used by your visitors to find your website on a search engine."
 
 
1654
  msgstr ""
1655
 
1656
- #: ../admin/view/wp-slimstat-reports.php:146
1657
- msgid "Top Web Pages"
1658
  msgstr ""
1659
 
1660
- #: ../admin/view/wp-slimstat-reports.php:157
1661
  msgid ""
1662
- "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1663
- "site, including posts, products, categories, and so on. You can set the "
1664
- "corresponding filter where Resource Content Type equals cpt:"
1665
- "you_cpt_slug_here to get top web pages for a specific custom post type you "
1666
- "have."
1667
  msgstr ""
1668
 
1669
- #: ../admin/view/wp-slimstat-reports.php:160
1670
- msgid "Top Referring Domains"
 
 
 
1671
  msgstr ""
1672
 
1673
- #: ../admin/view/wp-slimstat-reports.php:174
1674
- msgid "Top Known Visitors"
 
 
1675
  msgstr ""
1676
 
1677
- #: ../admin/view/wp-slimstat-reports.php:185
1678
- msgid "Top Search Terms"
1679
  msgstr ""
1680
 
1681
- #: ../admin/view/wp-slimstat-reports.php:197
1682
- msgid "Top Countries"
1683
  msgstr ""
1684
 
1685
- #: ../admin/view/wp-slimstat-reports.php:206
1686
  msgid ""
1687
- "You can configure Slimstat to ignore a specific Country by setting the "
1688
- "corresponding filter under Settings > Slimstat > Filters."
1689
  msgstr ""
1690
 
1691
- #: ../admin/view/wp-slimstat-reports.php:209
1692
- msgid "Rankings"
1693
  msgstr ""
1694
 
1695
- #: ../admin/view/wp-slimstat-reports.php:216
1696
  msgid ""
1697
- "Slimstat retrieves live information from Alexa, Facebook and Mozscape, to "
1698
- "measures your site's rankings. Values are updated every 12 hours. Please "
1699
- "enter your personal access ID in the settings to access your personalized "
1700
- "Mozscape data."
1701
  msgstr ""
1702
 
1703
- #: ../admin/view/wp-slimstat-reports.php:219
1704
- msgid "Top Language Families"
1705
  msgstr ""
1706
 
1707
- #: ../admin/view/wp-slimstat-reports.php:232
1708
- msgid "Users Currently Online"
 
 
1709
  msgstr ""
1710
 
1711
- #: ../admin/view/wp-slimstat-reports.php:243
1712
- msgid ""
1713
- "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1714
- "Slimstat leverages this information to identify returning visitors. Please "
1715
- "note that visitors also include registered users."
1716
  msgstr ""
1717
 
1718
- #: ../admin/view/wp-slimstat-reports.php:257
1719
- msgid "Unique Terms"
 
 
 
 
1720
  msgstr ""
1721
 
1722
- #: ../admin/view/wp-slimstat-reports.php:265
1723
- msgid "Top Referring URLs"
1724
  msgstr ""
1725
 
1726
- #: ../admin/view/wp-slimstat-reports.php:278
1727
- msgid "Human Visits"
1728
  msgstr ""
1729
 
1730
- #: ../admin/view/wp-slimstat-reports.php:288
1731
- #: ../admin/view/wp-slimstat-reports.php:1496
1732
- msgid "Visits"
1733
  msgstr ""
1734
 
1735
- #: ../admin/view/wp-slimstat-reports.php:297
1736
- msgid "Audience Overview"
 
 
1737
  msgstr ""
1738
 
1739
- #: ../admin/view/wp-slimstat-reports.php:304
 
 
 
 
1740
  msgid ""
1741
- "Where not otherwise specified, the metrics in this report are referred to "
1742
- "human visitors."
1743
  msgstr ""
1744
 
1745
- #: ../admin/view/wp-slimstat-reports.php:307
1746
- msgid "Top Languages"
1747
  msgstr ""
1748
 
1749
- #: ../admin/view/wp-slimstat-reports.php:318
1750
- msgid "Top Browsers"
1751
  msgstr ""
1752
 
1753
- #: ../admin/view/wp-slimstat-reports.php:329
1754
- msgid "Top Service Providers"
1755
  msgstr ""
1756
 
1757
- #: ../admin/view/wp-slimstat-reports.php:338
1758
- #: ../admin/view/wp-slimstat-reports.php:350
1759
- msgid ""
1760
- "Internet Service Provider: a company which provides other companies or "
1761
- "individuals with access to the Internet. Your DSL or cable internet service "
1762
- "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
1763
- "by setting the corresponding filter under Settings > Slimstat > Filters."
1764
  msgstr ""
1765
 
1766
- #: ../admin/view/wp-slimstat-reports.php:341
1767
- msgid "Top Operating Systems"
1768
  msgstr ""
1769
 
1770
- #: ../admin/view/wp-slimstat-reports.php:353
1771
- msgid "Top Screen Resolutions"
1772
  msgstr ""
1773
 
1774
- #: ../admin/view/wp-slimstat-reports.php:365
1775
- msgid "Top Viewport Sizes"
1776
  msgstr ""
1777
 
1778
- #: ../admin/view/wp-slimstat-reports.php:385
1779
- msgid "Visit Duration"
 
 
 
 
 
1780
  msgstr ""
1781
 
1782
- #: ../admin/view/wp-slimstat-reports.php:392
1783
  msgid ""
1784
- "All values represent the percentages of pageviews within the corresponding "
1785
- "time range."
1786
  msgstr ""
1787
 
1788
- #: ../admin/view/wp-slimstat-reports.php:395
1789
- msgid "Recent Countries"
1790
  msgstr ""
1791
 
1792
- #: ../admin/view/wp-slimstat-reports.php:406
1793
- msgid "Recent Viewport Sizes"
1794
  msgstr ""
1795
 
1796
- #: ../admin/view/wp-slimstat-reports.php:417
1797
- msgid "Recent Operating Systems"
 
 
1798
  msgstr ""
1799
 
1800
- #: ../admin/view/wp-slimstat-reports.php:428
1801
- msgid "Recent Browsers"
1802
  msgstr ""
1803
 
1804
- #: ../admin/view/wp-slimstat-reports.php:439
1805
- msgid "Recent Languages"
1806
  msgstr ""
1807
 
1808
- #: ../admin/view/wp-slimstat-reports.php:450
1809
- msgid "Top Browser Families"
1810
  msgstr ""
1811
 
1812
- #: ../admin/view/wp-slimstat-reports.php:459
1813
- msgid ""
1814
- "This report shows you what user agent families (no version considered) are "
1815
- "popular among your visitors."
1816
  msgstr ""
1817
 
1818
- #: ../admin/view/wp-slimstat-reports.php:462
1819
- msgid "Top OS Families"
1820
  msgstr ""
1821
 
1822
- #: ../admin/view/wp-slimstat-reports.php:473
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1823
  msgid ""
1824
- "This report shows you what operating system families (no version considered) "
1825
- "are popular among your visitors."
1826
  msgstr ""
1827
 
1828
- #: ../admin/view/wp-slimstat-reports.php:476
1829
- msgid "Recent Users"
1830
  msgstr ""
1831
 
1832
- #: ../admin/view/wp-slimstat-reports.php:488
1833
- msgid "Top Users"
1834
  msgstr ""
1835
 
1836
- #: ../admin/view/wp-slimstat-reports.php:500
1837
- #: ../admin/view/wp-slimstat-reports.php:509
1838
- msgid "Users"
1839
  msgstr ""
1840
 
1841
- #: ../admin/view/wp-slimstat-reports.php:510
1842
- msgid "Unique Users"
1843
  msgstr ""
1844
 
1845
- #: ../admin/view/wp-slimstat-reports.php:519 ../admin/wp-slimstat-admin.php:57
1846
- msgid "Traffic Sources"
1847
  msgstr ""
1848
 
1849
- #: ../admin/view/wp-slimstat-reports.php:529
1850
- msgid "Domains"
1851
  msgstr ""
1852
 
1853
- #: ../admin/view/wp-slimstat-reports.php:538
1854
- msgid "Traffic Summary"
1855
  msgstr ""
1856
 
1857
- #: ../admin/view/wp-slimstat-reports.php:547
1858
- msgid "Top Referring Search Engines"
 
 
 
1859
  msgstr ""
1860
 
1861
- #: ../admin/view/wp-slimstat-reports.php:576
1862
- msgid "Recent Outbound Links"
1863
  msgstr ""
1864
 
1865
- #: ../admin/view/wp-slimstat-reports.php:588
1866
- msgid "Recent Posts"
1867
  msgstr ""
1868
 
1869
- #: ../admin/view/wp-slimstat-reports.php:616
1870
- msgid "Recent Feeds"
1871
  msgstr ""
1872
 
1873
- #: ../admin/view/wp-slimstat-reports.php:628
1874
- msgid "Recent Pages Not Found"
1875
  msgstr ""
1876
 
1877
- #: ../admin/view/wp-slimstat-reports.php:640
1878
- msgid "Recent Internal Searches"
1879
  msgstr ""
1880
 
1881
- #: ../admin/view/wp-slimstat-reports.php:650
1882
- msgid "Searches performed using WordPress' built-in search functionality."
1883
  msgstr ""
1884
 
1885
- #: ../admin/view/wp-slimstat-reports.php:653
1886
- msgid "Top Categories"
1887
  msgstr ""
1888
 
1889
- #: ../admin/view/wp-slimstat-reports.php:666
1890
- msgid "Top Downloads"
1891
  msgstr ""
1892
 
1893
- #: ../admin/view/wp-slimstat-reports.php:677
1894
- msgid ""
1895
- "You can configure Slimstat to track specific file extensions as downloads."
1896
  msgstr ""
1897
 
1898
- #: ../admin/view/wp-slimstat-reports.php:680
1899
- msgid "Recent Events"
1900
  msgstr ""
1901
 
1902
- #: ../admin/view/wp-slimstat-reports.php:689
1903
- #: ../admin/view/wp-slimstat-reports.php:713
1904
- msgid ""
1905
- "This report lists any <em>event</em> occurred on your website. Please refer "
1906
- "to the FAQ for more information on how to use this functionality."
1907
  msgstr ""
1908
 
1909
- #: ../admin/view/wp-slimstat-reports.php:692
1910
- msgid "Top Posts"
1911
  msgstr ""
1912
 
1913
- #: ../admin/view/wp-slimstat-reports.php:704
1914
- msgid "Top Events"
1915
  msgstr ""
1916
 
1917
- #: ../admin/view/wp-slimstat-reports.php:716
1918
- msgid "Top Internal Searches"
1919
  msgstr ""
1920
 
1921
- #: ../admin/view/wp-slimstat-reports.php:728
1922
- msgid "Recent Categories"
1923
  msgstr ""
1924
 
1925
- #: ../admin/view/wp-slimstat-reports.php:740
1926
- msgid "Top Pages Not Found"
1927
  msgstr ""
1928
 
1929
- #: ../admin/view/wp-slimstat-reports.php:752
1930
- msgid "Top Authors"
 
 
 
 
 
1931
  msgstr ""
1932
 
1933
- #: ../admin/view/wp-slimstat-reports.php:763
1934
- msgid "Top Tags"
1935
  msgstr ""
1936
 
1937
- #: ../admin/view/wp-slimstat-reports.php:775
1938
- msgid "Recent Downloads"
1939
  msgstr ""
1940
 
1941
- #: ../admin/view/wp-slimstat-reports.php:787
1942
- msgid "Top Outbound Links"
1943
  msgstr ""
1944
 
1945
- #: ../admin/view/wp-slimstat-reports.php:799
1946
- msgid "Your Website"
1947
  msgstr ""
1948
 
1949
- #: ../admin/view/wp-slimstat-reports.php:806
1950
  msgid ""
1951
- "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
1952
- "this report is not affected by the filters set here above."
1953
  msgstr ""
1954
 
1955
- #: ../admin/view/wp-slimstat-reports.php:809
1956
- msgid "Top Bounce Pages"
1957
  msgstr ""
1958
 
1959
- #: ../admin/view/wp-slimstat-reports.php:822
1960
- msgid "Top Exit Pages"
 
 
 
 
1961
  msgstr ""
1962
 
1963
- #: ../admin/view/wp-slimstat-reports.php:835
1964
- msgid "Top Entry Pages"
1965
  msgstr ""
1966
 
1967
- #: ../admin/view/wp-slimstat-reports.php:848
1968
- msgid "Pages with Outbound Links"
1969
  msgstr ""
1970
 
1971
- #: ../admin/view/wp-slimstat-reports.php:857
1972
- msgid "Outbound Links"
 
 
 
1973
  msgstr ""
1974
 
1975
- #: ../admin/view/wp-slimstat-reports.php:858
1976
- msgid "Unique Outbound"
1977
  msgstr ""
1978
 
1979
- #: ../admin/view/wp-slimstat-reports.php:867
1980
- msgid "World Map"
1981
  msgstr ""
1982
 
1983
- #: ../admin/view/wp-slimstat-reports.php:958
1984
- msgid "Refresh"
1985
  msgstr ""
1986
 
1987
- #: ../admin/view/wp-slimstat-reports.php:1005
1988
- #, php-format
1989
- msgid "Results %s - %s of %s"
1990
  msgstr ""
1991
 
1992
- #: ../admin/view/wp-slimstat-reports.php:1007
1993
- msgid "Refresh in"
 
 
1994
  msgstr ""
1995
 
1996
- #: ../admin/view/wp-slimstat-reports.php:1106
1997
- msgid "Category ID"
1998
  msgstr ""
1999
 
2000
- #: ../admin/view/wp-slimstat-reports.php:1111
2001
- #: ../admin/view/wp-slimstat-reports.php:1125
2002
- #: ../admin/view/wp-slimstat-reports.php:1130
2003
- msgid "Code"
2004
  msgstr ""
2005
 
2006
- #: ../admin/view/wp-slimstat-reports.php:1126
2007
- #: ../languages/dynamic_strings.php:340 ../wp-slimstat.php:1304
2008
- msgid "l-"
2009
- msgstr "Unknown"
2010
 
2011
- #: ../admin/view/wp-slimstat-reports.php:1143
2012
- msgid "URL"
 
 
 
 
 
2013
  msgstr ""
2014
 
2015
- #: ../admin/view/wp-slimstat-reports.php:1162
2016
- msgid "Referrer"
2017
  msgstr ""
2018
 
2019
- #: ../admin/view/wp-slimstat-reports.php:1404
2020
- msgid "Dataset Size"
2021
  msgstr ""
2022
 
2023
- #: ../admin/view/wp-slimstat-reports.php:1406
2024
- msgid "Total number of records stored in the database."
2025
  msgstr ""
2026
 
2027
- #: ../admin/view/wp-slimstat-reports.php:1408
2028
- msgid "DB Size"
2029
  msgstr ""
2030
 
2031
- #: ../admin/view/wp-slimstat-reports.php:1411
2032
- msgid "Tracking Enabled"
 
 
2033
  msgstr ""
2034
 
2035
- #: ../admin/view/wp-slimstat-reports.php:1414
2036
- msgid "Javascript Mode"
2037
  msgstr ""
2038
 
2039
- #: ../admin/view/wp-slimstat-reports.php:1417
2040
- msgid "Tracking Browser Caps"
2041
  msgstr ""
2042
 
2043
- #: ../admin/view/wp-slimstat-reports.php:1420
2044
- msgid "Auto purge"
2045
  msgstr ""
2046
 
2047
- #: ../admin/view/wp-slimstat-reports.php:1421
2048
- #: ../admin/wp-slimstat-admin.php:1197
2049
- msgid "Off"
2050
  msgstr ""
2051
 
2052
- #: ../admin/view/wp-slimstat-reports.php:1423
2053
- msgid "Oldest pageview"
2054
  msgstr ""
2055
 
2056
- #: ../admin/view/wp-slimstat-reports.php:1424
2057
- msgid "No visits"
2058
  msgstr ""
2059
 
2060
- #: ../admin/view/wp-slimstat-reports.php:1426 ../admin/wp-slimstat-admin.php:63
2061
- msgid "Geolocation"
 
 
2062
  msgstr ""
2063
 
2064
- #: ../admin/view/wp-slimstat-reports.php:1428
2065
- msgid "Date when the MaxMind Geolocation database was last updated."
2066
  msgstr ""
2067
 
2068
- #: ../admin/view/wp-slimstat-reports.php:1439
2069
- #: ../admin/view/wp-slimstat-reports.php:1600
2070
  msgid ""
2071
- "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2072
- "the tracking code is executed."
2073
  msgstr ""
2074
 
2075
- #: ../admin/view/wp-slimstat-reports.php:1441
2076
- msgid "Days in Range"
2077
  msgstr ""
2078
 
2079
- #: ../admin/view/wp-slimstat-reports.php:1444
2080
- msgid "Average Daily Pageviews"
2081
  msgstr ""
2082
 
2083
- #: ../admin/view/wp-slimstat-reports.php:1446
2084
- msgid ""
2085
- "How many pages have been visited on average every day during the current "
2086
- "period."
2087
  msgstr ""
2088
 
2089
- #: ../admin/view/wp-slimstat-reports.php:1448
2090
- msgid "From Search Results"
2091
  msgstr ""
2092
 
2093
- #: ../admin/view/wp-slimstat-reports.php:1450
2094
- msgid ""
2095
- "Visitors who landed on your site after searching for a keyword on Google, "
2096
- "Yahoo, etc."
2097
  msgstr ""
2098
 
2099
- #: ../admin/view/wp-slimstat-reports.php:1454
2100
- msgid ""
2101
- "Used to differentiate between multiple requests to download a file from one "
2102
- "internet address (IP) and requests originating from many distinct addresses"
2103
  msgstr ""
2104
 
2105
- #: ../admin/view/wp-slimstat-reports.php:1456
2106
- msgid "Last 30 minutes"
2107
  msgstr ""
2108
 
2109
- #: ../admin/view/wp-slimstat-reports.php:1498
2110
- msgid ""
2111
- "A visit is a session of at most 30 minutes. Returning visitors are counted "
2112
- "multiple times if they perform multiple visits."
2113
  msgstr ""
2114
 
2115
- #: ../admin/view/wp-slimstat-reports.php:1502
2116
- msgid "It includes only traffic generated by human visitors."
2117
  msgstr ""
2118
 
2119
- #: ../admin/view/wp-slimstat-reports.php:1504
2120
- msgid "Bounce rate"
 
 
 
 
 
 
 
 
2121
  msgstr ""
2122
 
2123
- #: ../admin/view/wp-slimstat-reports.php:1506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2124
  msgid ""
2125
- "Percentage of single-page visits, i.e. visits in which the person left your "
2126
- "site from the entrance page."
2127
  msgstr ""
2128
 
2129
- #: ../admin/view/wp-slimstat-reports.php:1508
2130
- msgid "Known visitors"
2131
  msgstr ""
2132
 
2133
- #: ../admin/view/wp-slimstat-reports.php:1510
2134
- msgid "Visitors who had previously left a comment on your blog."
 
 
 
2135
  msgstr ""
2136
 
2137
- #: ../admin/view/wp-slimstat-reports.php:1512
2138
- msgid "New visitors"
2139
  msgstr ""
2140
 
2141
- #: ../admin/view/wp-slimstat-reports.php:1514
2142
- msgid "Human users who visited your site only once."
2143
  msgstr ""
2144
 
2145
- #: ../admin/view/wp-slimstat-reports.php:1516
2146
- msgid "Bots"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2147
  msgstr ""
2148
 
2149
- #: ../admin/view/wp-slimstat-reports.php:1519
2150
- msgid "Pageviews per visit"
2151
  msgstr ""
2152
 
2153
- #: ../admin/view/wp-slimstat-reports.php:1522
2154
- msgid "Longest visit"
2155
  msgstr ""
2156
 
2157
- #: ../admin/view/wp-slimstat-reports.php:1523
2158
- msgid "hits"
2159
  msgstr ""
2160
 
2161
- #: ../admin/view/wp-slimstat-reports.php:1534
2162
- msgid "0 - 30 seconds"
 
 
2163
  msgstr ""
2164
 
2165
- #: ../admin/view/wp-slimstat-reports.php:1540
2166
- msgid "31 - 60 seconds"
2167
  msgstr ""
2168
 
2169
- #: ../admin/view/wp-slimstat-reports.php:1546
2170
- msgid "1 - 3 minutes"
2171
  msgstr ""
2172
 
2173
- #: ../admin/view/wp-slimstat-reports.php:1552
2174
- msgid "3 - 5 minutes"
2175
  msgstr ""
2176
 
2177
- #: ../admin/view/wp-slimstat-reports.php:1558
2178
- msgid "5 - 7 minutes"
2179
  msgstr ""
2180
 
2181
- #: ../admin/view/wp-slimstat-reports.php:1564
2182
- msgid "7 - 10 minutes"
2183
  msgstr ""
2184
 
2185
- #: ../admin/view/wp-slimstat-reports.php:1570
2186
- msgid "More than 10 minutes"
2187
  msgstr ""
2188
 
2189
- #: ../admin/view/wp-slimstat-reports.php:1582
2190
- msgid "Average visit duration"
2191
  msgstr ""
2192
 
2193
- #: ../admin/view/wp-slimstat-reports.php:1602
2194
- msgid "Unique Referrers"
2195
  msgstr ""
2196
 
2197
- #: ../admin/view/wp-slimstat-reports.php:1604
2198
  msgid ""
2199
- "A referrer (or referring site) is the site that a visitor previously visited "
2200
- "before following a link to your site."
 
2201
  msgstr ""
2202
 
2203
- #: ../admin/view/wp-slimstat-reports.php:1606
2204
- msgid "Direct Pageviews"
2205
  msgstr ""
2206
 
2207
- #: ../admin/view/wp-slimstat-reports.php:1608
2208
- msgid ""
2209
- "Visitors who visited the site by typing the URL directly into their browser. "
2210
- "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2211
- "their bookmarks/favorites, untagged links within emails, or links from "
2212
- "documents that don't include tracking variables."
2213
  msgstr ""
2214
 
2215
- #: ../admin/view/wp-slimstat-reports.php:1610
2216
- msgid "From a search result"
 
2217
  msgstr ""
2218
 
2219
- #: ../admin/view/wp-slimstat-reports.php:1612
2220
- msgid ""
2221
- "Visitors who came to your site via searches on Google or some other search "
2222
- "engine."
2223
  msgstr ""
2224
 
2225
- #: ../admin/view/wp-slimstat-reports.php:1614
2226
- msgid "Unique Landing Pages"
2227
  msgstr ""
2228
 
2229
- #: ../admin/view/wp-slimstat-reports.php:1616
2230
- msgid ""
2231
- "The first page that a user views during a session. This is also known as the "
2232
- "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2233
- "Space,' and they land on your home page, it gets counted (for that visit) as "
2234
- "a landing page."
2235
  msgstr ""
2236
 
2237
- #: ../admin/view/wp-slimstat-reports.php:1618
2238
- msgid "Bounce Pages"
2239
- msgstr ""
 
2240
 
2241
- #: ../admin/view/wp-slimstat-reports.php:1620
2242
- msgid "Number of single page visits to your site over the selected period."
2243
  msgstr ""
2244
 
2245
- #: ../admin/view/wp-slimstat-reports.php:1622
2246
- msgid "New Visitors Rate"
2247
  msgstr ""
2248
 
2249
- #: ../admin/view/wp-slimstat-reports.php:1624
2250
- msgid ""
2251
- "Percentage of single page visits, i.e. visits in which the person left your "
2252
- "site from the entrance page."
2253
  msgstr ""
2254
 
2255
- #: ../admin/view/wp-slimstat-reports.php:1626
2256
- msgid "Currently from search engines"
2257
  msgstr ""
2258
 
2259
- #: ../admin/view/wp-slimstat-reports.php:1628
2260
- msgid ""
2261
- "Visitors who visited the site in the last 5 minutes coming from a search "
2262
- "engine."
2263
  msgstr ""
2264
 
2265
- #: ../admin/view/wp-slimstat-reports.php:1646
2266
  msgid "Backlinks"
2267
  msgstr ""
2268
 
2269
- #: ../admin/view/wp-slimstat-reports.php:1647
2270
  msgid "Number of external equity links to your website."
2271
  msgstr ""
2272
 
2273
- #: ../admin/view/wp-slimstat-reports.php:1651
2274
  msgid "MozRank"
2275
  msgstr ""
2276
 
2277
- #: ../admin/view/wp-slimstat-reports.php:1652
2278
  msgid ""
2279
  "MozRank of the URL, in a normalized 10-point score. MozRank represents a "
2280
  "link popularity score. It reflects the importance of any given web page on "
2281
  "the Internet."
2282
  msgstr ""
2283
 
2284
- #: ../admin/view/wp-slimstat-reports.php:1656
2285
  msgid "Equity Links"
2286
  msgstr ""
2287
 
2288
- #: ../admin/view/wp-slimstat-reports.php:1657
2289
  msgid ""
2290
  "Number of authority-passing links (including followed links and redirects, "
2291
  "internal or external) to your website. Set the permalink filter here above "
2292
  "to get the corresponding metrics in this report."
2293
  msgstr ""
2294
 
2295
- #: ../admin/view/wp-slimstat-reports.php:1661
2296
  msgid "Facebook Shares"
2297
  msgstr ""
2298
 
2299
- #: ../admin/view/wp-slimstat-reports.php:1666
2300
  msgid "Facebook Clicks"
2301
  msgstr ""
2302
 
2303
- #: ../admin/view/wp-slimstat-reports.php:1667
2304
  msgid "How many times links to your website have been clicked on Facebook."
2305
  msgstr ""
2306
 
2307
- #: ../admin/view/wp-slimstat-reports.php:1671
2308
  msgid "Alexa World Rank"
2309
  msgstr ""
2310
 
2311
- #: ../admin/view/wp-slimstat-reports.php:1672
2312
  msgid ""
2313
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2314
  "traffic data."
2315
  msgstr ""
2316
 
2317
- #: ../admin/view/wp-slimstat-reports.php:1676
2318
  msgid "Alexa Country Rank"
2319
  msgstr ""
2320
 
2321
- #: ../admin/view/wp-slimstat-reports.php:1681
2322
  msgid "Alexa Popularity"
2323
  msgstr ""
2324
 
2325
- #: ../admin/view/wp-slimstat-reports.php:1740
2326
  msgid "Alexa Delta"
2327
  msgstr ""
2328
 
2329
- #: ../admin/view/wp-slimstat-reports.php:1774
2330
- msgid "Content Items"
2331
- msgstr ""
2332
-
2333
- #: ../admin/view/wp-slimstat-reports.php:1776
2334
- msgid ""
2335
- "This value includes not only posts, but also custom post types, regardless "
2336
- "of their status"
2337
- msgstr ""
2338
-
2339
- #: ../admin/view/wp-slimstat-reports.php:1778
2340
- msgid "Posts"
2341
- msgstr ""
2342
-
2343
- #: ../admin/view/wp-slimstat-reports.php:1781
2344
- msgid "Pages"
2345
- msgstr ""
2346
-
2347
- #: ../admin/view/wp-slimstat-reports.php:1784
2348
- msgid "Attachments"
2349
- msgstr ""
2350
-
2351
- #: ../admin/view/wp-slimstat-reports.php:1787
2352
- msgid "Revisions"
2353
- msgstr ""
2354
-
2355
- #: ../admin/view/wp-slimstat-reports.php:1790
2356
- msgid "Comments"
2357
- msgstr ""
2358
-
2359
- #: ../admin/view/wp-slimstat-reports.php:1793
2360
- msgid "Avg Comments per Post"
2361
- msgstr ""
2362
-
2363
- #: ../admin/view/wp-slimstat-reports.php:1796
2364
- msgid "Avg Server Latency"
2365
- msgstr ""
2366
-
2367
- #: ../admin/view/wp-slimstat-reports.php:1798
2368
- msgid ""
2369
- "Latency is the amount of time it takes for the host server to receive and "
2370
- "process a request for a page object. The amount of latency depends largely "
2371
- "on how far away the user is from the server."
2372
- msgstr ""
2373
-
2374
- #: ../admin/view/wp-slimstat-reports.php:1841
2375
- msgid "Coordinates"
2376
- msgstr ""
2377
-
2378
- #: ../admin/view/wp-slimstat-reports.php:1841
2379
- msgid "Date"
2380
- msgstr ""
2381
-
2382
  # Unknown
2383
- #: ../admin/view/wp-slimstat-reports.php:1857
2384
  msgid "c-xx"
2385
  msgstr "Unknown"
2386
 
2387
  # Afghanistan
2388
- #: ../admin/view/wp-slimstat-reports.php:1857
2389
  msgid "c-af"
2390
  msgstr "Afghanistan"
2391
 
2392
  # Åland Islands
2393
- #: ../admin/view/wp-slimstat-reports.php:1857
2394
  msgid "c-ax"
2395
  msgstr "Aland Islands"
2396
 
2397
  # Albania
2398
- #: ../admin/view/wp-slimstat-reports.php:1857
2399
  msgid "c-al"
2400
  msgstr "Albania"
2401
 
2402
  # Algeria
2403
- #: ../admin/view/wp-slimstat-reports.php:1857
2404
  msgid "c-dz"
2405
  msgstr "Algeria"
2406
 
2407
  # Andorra
2408
- #: ../admin/view/wp-slimstat-reports.php:1857
2409
  msgid "c-ad"
2410
  msgstr "Andorra"
2411
 
2412
  # Angola
2413
- #: ../admin/view/wp-slimstat-reports.php:1857
2414
  msgid "c-ao"
2415
  msgstr "Angola"
2416
 
2417
  # Anguilla
2418
- #: ../admin/view/wp-slimstat-reports.php:1857
2419
  msgid "c-ai"
2420
  msgstr "Anguilla"
2421
 
2422
  # Antigua and Barbuda
2423
- #: ../admin/view/wp-slimstat-reports.php:1857
2424
  msgid "c-ag"
2425
  msgstr "Antigua and Barbuda"
2426
 
2427
  # Argentina
2428
- #: ../admin/view/wp-slimstat-reports.php:1857
2429
  msgid "c-ar"
2430
  msgstr "Argentina"
2431
 
2432
  # Armenia
2433
- #: ../admin/view/wp-slimstat-reports.php:1857
2434
  msgid "c-am"
2435
  msgstr "Armenia"
2436
 
2437
  # Aruba
2438
- #: ../admin/view/wp-slimstat-reports.php:1857
2439
  msgid "c-aw"
2440
  msgstr "Aruba"
2441
 
2442
  # Australia
2443
- #: ../admin/view/wp-slimstat-reports.php:1857
2444
  msgid "c-au"
2445
  msgstr "Australia"
2446
 
2447
  # Austria
2448
- #: ../admin/view/wp-slimstat-reports.php:1857
2449
  msgid "c-at"
2450
  msgstr "Austria"
2451
 
2452
  # Azerbaijan
2453
- #: ../admin/view/wp-slimstat-reports.php:1857
2454
  msgid "c-az"
2455
  msgstr "Azerbaijan"
2456
 
2457
  # Bahamas
2458
- #: ../admin/view/wp-slimstat-reports.php:1857
2459
  msgid "c-bs"
2460
  msgstr "Bahamas"
2461
 
2462
  # Bahrain
2463
- #: ../admin/view/wp-slimstat-reports.php:1857
2464
  msgid "c-bh"
2465
  msgstr "Bahrain"
2466
 
2467
  # Bangladesh
2468
- #: ../admin/view/wp-slimstat-reports.php:1857
2469
  msgid "c-bd"
2470
  msgstr "Bangladesh"
2471
 
2472
  # Barbados
2473
- #: ../admin/view/wp-slimstat-reports.php:1857
2474
  msgid "c-bb"
2475
  msgstr "Barbados"
2476
 
2477
  # Belarus
2478
- #: ../admin/view/wp-slimstat-reports.php:1857
2479
  msgid "c-by"
2480
  msgstr "Belarus"
2481
 
2482
  # Belgium
2483
- #: ../admin/view/wp-slimstat-reports.php:1857
2484
  msgid "c-be"
2485
  msgstr "Belgium"
2486
 
2487
  # Belize
2488
- #: ../admin/view/wp-slimstat-reports.php:1857
2489
  msgid "c-bz"
2490
  msgstr "Belize"
2491
 
2492
  # Benin
2493
- #: ../admin/view/wp-slimstat-reports.php:1857
2494
  msgid "c-bj"
2495
  msgstr "Benin"
2496
 
2497
  # Bermuda
2498
- #: ../admin/view/wp-slimstat-reports.php:1857
2499
  msgid "c-bm"
2500
  msgstr "Bermuda"
2501
 
2502
  # Bhutan
2503
- #: ../admin/view/wp-slimstat-reports.php:1857
2504
  msgid "c-bt"
2505
  msgstr "Bhutan"
2506
 
2507
  # Bolivia
2508
- #: ../admin/view/wp-slimstat-reports.php:1857
2509
  msgid "c-bo"
2510
  msgstr "Bolivia"
2511
 
2512
  # Bosnia and Herzegovina
2513
- #: ../admin/view/wp-slimstat-reports.php:1857
2514
  msgid "c-ba"
2515
  msgstr "Bosnia and Herzegovina"
2516
 
2517
  # Botswana
2518
- #: ../admin/view/wp-slimstat-reports.php:1857
2519
  msgid "c-bw"
2520
  msgstr "Botswana"
2521
 
2522
  # Brazil
2523
- #: ../admin/view/wp-slimstat-reports.php:1857
2524
  msgid "c-br"
2525
  msgstr "Brazil"
2526
 
2527
  # Brunei Darussalam
2528
- #: ../admin/view/wp-slimstat-reports.php:1857
2529
  msgid "c-bn"
2530
  msgstr "Brunei Darussalam"
2531
 
2532
  # Bulgaria
2533
- #: ../admin/view/wp-slimstat-reports.php:1857
2534
  msgid "c-bg"
2535
  msgstr "Bulgaria"
2536
 
2537
  # Burkina Faso
2538
- #: ../admin/view/wp-slimstat-reports.php:1857
2539
  msgid "c-bf"
2540
  msgstr "Burkina Faso"
2541
 
2542
  # Burundi
2543
- #: ../admin/view/wp-slimstat-reports.php:1857
2544
  msgid "c-bi"
2545
  msgstr "Burundi"
2546
 
2547
  # Cambodia
2548
- #: ../admin/view/wp-slimstat-reports.php:1857
2549
  msgid "c-kh"
2550
  msgstr "Cambodia"
2551
 
2552
  # Cameroon
2553
- #: ../admin/view/wp-slimstat-reports.php:1857
2554
  msgid "c-cm"
2555
  msgstr "Cameroon"
2556
 
2557
  # Canada
2558
- #: ../admin/view/wp-slimstat-reports.php:1857
2559
  msgid "c-ca"
2560
  msgstr "Canada"
2561
 
2562
  # Cape Verde
2563
- #: ../admin/view/wp-slimstat-reports.php:1857
2564
  msgid "c-cv"
2565
  msgstr "Cape Verde"
2566
 
2567
  # Cayman Islands
2568
- #: ../admin/view/wp-slimstat-reports.php:1857
2569
  msgid "c-ky"
2570
  msgstr "Cayman Islands"
2571
 
2572
  # Central African Republic
2573
- #: ../admin/view/wp-slimstat-reports.php:1857
2574
  msgid "c-cf"
2575
  msgstr "Central African Republic"
2576
 
2577
  # Chad
2578
- #: ../admin/view/wp-slimstat-reports.php:1857
2579
  msgid "c-td"
2580
  msgstr "Chad"
2581
 
2582
  # Chile
2583
- #: ../admin/view/wp-slimstat-reports.php:1857
2584
  msgid "c-cl"
2585
  msgstr "Chile"
2586
 
2587
  # China
2588
- #: ../admin/view/wp-slimstat-reports.php:1857
2589
  msgid "c-cn"
2590
  msgstr "China"
2591
 
2592
  # Colombia
2593
- #: ../admin/view/wp-slimstat-reports.php:1857
2594
  msgid "c-co"
2595
  msgstr "Colombia"
2596
 
2597
  # Comoros
2598
- #: ../admin/view/wp-slimstat-reports.php:1857
2599
  msgid "c-km"
2600
  msgstr "Comoros"
2601
 
2602
  # Congo
2603
- #: ../admin/view/wp-slimstat-reports.php:1857
2604
  msgid "c-cg"
2605
  msgstr "Congo"
2606
 
2607
  # The Democratic Republic of the Congo
2608
- #: ../admin/view/wp-slimstat-reports.php:1857
2609
  msgid "c-cd"
2610
  msgstr "The Democratic Republic of the Congo"
2611
 
2612
  # Costa Rica
2613
- #: ../admin/view/wp-slimstat-reports.php:1857
2614
  msgid "c-cr"
2615
  msgstr "Costa Rica"
2616
 
2617
  # Côte d'Ivoire
2618
- #: ../admin/view/wp-slimstat-reports.php:1857
2619
  msgid "c-ci"
2620
  msgstr "Côte d'Ivoire"
2621
 
2622
  # Croatia
2623
- #: ../admin/view/wp-slimstat-reports.php:1857
2624
  msgid "c-hr"
2625
  msgstr "Croatia"
2626
 
2627
  # Cuba
2628
- #: ../admin/view/wp-slimstat-reports.php:1857
2629
  msgid "c-cu"
2630
  msgstr "Cuba"
2631
 
2632
  # Cyprus
2633
- #: ../admin/view/wp-slimstat-reports.php:1857
2634
  msgid "c-cy"
2635
  msgstr "Cyprus"
2636
 
2637
  # Czech Republic
2638
- #: ../admin/view/wp-slimstat-reports.php:1857
2639
  msgid "c-cz"
2640
  msgstr "Czech Republic"
2641
 
2642
  # Denmark
2643
- #: ../admin/view/wp-slimstat-reports.php:1857
2644
  msgid "c-dk"
2645
  msgstr "Denmark"
2646
 
2647
  # Djibouti
2648
- #: ../admin/view/wp-slimstat-reports.php:1857
2649
  msgid "c-dj"
2650
  msgstr "Djibouti"
2651
 
2652
  # Dominica
2653
- #: ../admin/view/wp-slimstat-reports.php:1857
2654
  msgid "c-dm"
2655
  msgstr "Dominica"
2656
 
2657
  # Dominican Republic
2658
- #: ../admin/view/wp-slimstat-reports.php:1857
2659
  msgid "c-do"
2660
  msgstr "Dominican Republic"
2661
 
2662
  # Ecuador
2663
- #: ../admin/view/wp-slimstat-reports.php:1857
2664
  msgid "c-ec"
2665
  msgstr "Ecuador"
2666
 
2667
  # Egypt
2668
- #: ../admin/view/wp-slimstat-reports.php:1857
2669
  msgid "c-eg"
2670
  msgstr "Egypt"
2671
 
2672
  # El Salvador
2673
- #: ../admin/view/wp-slimstat-reports.php:1857
2674
  msgid "c-sv"
2675
  msgstr "El Salvador"
2676
 
2677
  # Equatorial Guinea
2678
- #: ../admin/view/wp-slimstat-reports.php:1857
2679
  msgid "c-gq"
2680
  msgstr "Equatorial Guinea"
2681
 
2682
  # Eritrea
2683
- #: ../admin/view/wp-slimstat-reports.php:1857
2684
  msgid "c-er"
2685
  msgstr "Eritrea"
2686
 
2687
  # Estonia
2688
- #: ../admin/view/wp-slimstat-reports.php:1857
2689
  msgid "c-ee"
2690
  msgstr "Estonia"
2691
 
2692
  # Ethiopia
2693
- #: ../admin/view/wp-slimstat-reports.php:1857
2694
  msgid "c-et"
2695
  msgstr "Ethiopia"
2696
 
2697
  # Faroe Islands
2698
- #: ../admin/view/wp-slimstat-reports.php:1857
2699
  msgid "c-fo"
2700
  msgstr "Faroe Islands"
2701
 
2702
  # Falkland Islands (Malvinas)
2703
- #: ../admin/view/wp-slimstat-reports.php:1857
2704
  msgid "c-fk"
2705
  msgstr "Falkland Islands (Malvinas)"
2706
 
2707
  # Fiji
2708
- #: ../admin/view/wp-slimstat-reports.php:1857
2709
  msgid "c-fj"
2710
  msgstr "Fiji"
2711
 
2712
  # Finland
2713
- #: ../admin/view/wp-slimstat-reports.php:1857
2714
  msgid "c-fi"
2715
  msgstr "Finland"
2716
 
2717
  # France
2718
- #: ../admin/view/wp-slimstat-reports.php:1857
2719
  msgid "c-fr"
2720
  msgstr "France"
2721
 
2722
  # French Guiana
2723
- #: ../admin/view/wp-slimstat-reports.php:1857
2724
  msgid "c-gf"
2725
  msgstr "French Guiana"
2726
 
2727
  # Gabon
2728
- #: ../admin/view/wp-slimstat-reports.php:1857
2729
  msgid "c-ga"
2730
  msgstr "Gabon"
2731
 
2732
  # Gambia
2733
- #: ../admin/view/wp-slimstat-reports.php:1857
2734
  msgid "c-gm"
2735
  msgstr "Gambia"
2736
 
2737
  # Georgia
2738
- #: ../admin/view/wp-slimstat-reports.php:1857
2739
  msgid "c-ge"
2740
  msgstr "Georgia"
2741
 
2742
  # Germany
2743
- #: ../admin/view/wp-slimstat-reports.php:1857
2744
  msgid "c-de"
2745
  msgstr "Germany"
2746
 
2747
  # Ghana
2748
- #: ../admin/view/wp-slimstat-reports.php:1857
2749
  msgid "c-gh"
2750
  msgstr "Ghana"
2751
 
2752
  # Greece
2753
- #: ../admin/view/wp-slimstat-reports.php:1857
2754
  msgid "c-gr"
2755
  msgstr "Greece"
2756
 
2757
  # Greenland
2758
- #: ../admin/view/wp-slimstat-reports.php:1857
2759
  msgid "c-gl"
2760
  msgstr "Greenland"
2761
 
2762
  # Grenada
2763
- #: ../admin/view/wp-slimstat-reports.php:1857
2764
  msgid "c-gd"
2765
  msgstr "Grenada"
2766
 
2767
  # Guadeloupe
2768
- #: ../admin/view/wp-slimstat-reports.php:1857
2769
  msgid "c-gp"
2770
  msgstr "Guadeloupe"
2771
 
2772
  # Guatemala
2773
- #: ../admin/view/wp-slimstat-reports.php:1857
2774
  msgid "c-gt"
2775
  msgstr "Guatemala"
2776
 
2777
  # Guinea
2778
- #: ../admin/view/wp-slimstat-reports.php:1857
2779
  msgid "c-gn"
2780
  msgstr "Guinea"
2781
 
2782
  # Guinea-Bissau
2783
- #: ../admin/view/wp-slimstat-reports.php:1857
2784
  msgid "c-gw"
2785
  msgstr "Guinea-Bissau"
2786
 
2787
  # Guyana
2788
- #: ../admin/view/wp-slimstat-reports.php:1857
2789
  msgid "c-gy"
2790
  msgstr "Guyana"
2791
 
2792
  # Haiti
2793
- #: ../admin/view/wp-slimstat-reports.php:1857
2794
  msgid "c-ht"
2795
  msgstr "Haiti"
2796
 
2797
  # Honduras
2798
- #: ../admin/view/wp-slimstat-reports.php:1857
2799
  msgid "c-hn"
2800
  msgstr "Honduras"
2801
 
2802
  # Hong Kong
2803
- #: ../admin/view/wp-slimstat-reports.php:1857
2804
  msgid "c-hk"
2805
  msgstr "Hong Kong"
2806
 
2807
  # Hungary
2808
- #: ../admin/view/wp-slimstat-reports.php:1857
2809
  msgid "c-hu"
2810
  msgstr "Hungary"
2811
 
2812
  # Iceland
2813
- #: ../admin/view/wp-slimstat-reports.php:1857
2814
  msgid "c-is"
2815
  msgstr "Iceland"
2816
 
2817
  # India
2818
- #: ../admin/view/wp-slimstat-reports.php:1857
2819
  msgid "c-in"
2820
  msgstr "India"
2821
 
2822
  # Indonesia
2823
- #: ../admin/view/wp-slimstat-reports.php:1857
2824
  msgid "c-id"
2825
  msgstr "Indonesia"
2826
 
2827
  # Islamic Republic of Iran
2828
- #: ../admin/view/wp-slimstat-reports.php:1857
2829
  msgid "c-ir"
2830
  msgstr "Islamic Republic of Iran"
2831
 
2832
  # Iraq
2833
- #: ../admin/view/wp-slimstat-reports.php:1857
2834
  msgid "c-iq"
2835
  msgstr "Iraq"
2836
 
2837
  # Ireland
2838
- #: ../admin/view/wp-slimstat-reports.php:1857
2839
  msgid "c-ie"
2840
  msgstr "Ireland"
2841
 
2842
  # Israel
2843
- #: ../admin/view/wp-slimstat-reports.php:1857
2844
  msgid "c-il"
2845
  msgstr "Israel"
2846
 
2847
  # Italy
2848
- #: ../admin/view/wp-slimstat-reports.php:1857
2849
  msgid "c-it"
2850
  msgstr "Italy"
2851
 
2852
  # Jamaica
2853
- #: ../admin/view/wp-slimstat-reports.php:1857
2854
  msgid "c-jm"
2855
  msgstr "Jamaica"
2856
 
2857
  # Japan
2858
- #: ../admin/view/wp-slimstat-reports.php:1857
2859
  msgid "c-jp"
2860
  msgstr "Japan"
2861
 
2862
  # Jordan
2863
- #: ../admin/view/wp-slimstat-reports.php:1857
2864
  msgid "c-jo"
2865
  msgstr "Jordan"
2866
 
2867
  # Kazakhstan
2868
- #: ../admin/view/wp-slimstat-reports.php:1857
2869
  msgid "c-kz"
2870
  msgstr "Kazakhstan"
2871
 
2872
  # Kenya
2873
- #: ../admin/view/wp-slimstat-reports.php:1857
2874
  msgid "c-ke"
2875
  msgstr "Kenya"
2876
 
2877
  # Nauru
2878
- #: ../admin/view/wp-slimstat-reports.php:1857
2879
  msgid "c-nr"
2880
  msgstr "Nauru"
2881
 
2882
  # Democratic People's Republic of Korea
2883
- #: ../admin/view/wp-slimstat-reports.php:1857
2884
  msgid "c-kp"
2885
  msgstr "Democratic People's Republic of Korea"
2886
 
2887
  # Republic of Korea
2888
- #: ../admin/view/wp-slimstat-reports.php:1857
2889
  msgid "c-kr"
2890
  msgstr "Republic of Korea"
2891
 
2892
- #: ../admin/view/wp-slimstat-reports.php:1857
2893
  msgid "c-kv"
2894
  msgstr "Kosovo"
2895
 
2896
  # Kuwait
2897
- #: ../admin/view/wp-slimstat-reports.php:1857
2898
  msgid "c-kw"
2899
  msgstr "Kuwait"
2900
 
2901
  # Kyrgyzstan
2902
- #: ../admin/view/wp-slimstat-reports.php:1857
2903
  msgid "c-kg"
2904
  msgstr "Kyrgyzstan"
2905
 
2906
  # Lao People's Democratic Republic
2907
- #: ../admin/view/wp-slimstat-reports.php:1857
2908
  msgid "c-la"
2909
  msgstr "Lao People's Democratic Republic"
2910
 
2911
  # Latvia
2912
- #: ../admin/view/wp-slimstat-reports.php:1857
2913
  msgid "c-lv"
2914
  msgstr "Latvia"
2915
 
2916
  # Lebanon
2917
- #: ../admin/view/wp-slimstat-reports.php:1857
2918
  msgid "c-lb"
2919
  msgstr "Lebanon"
2920
 
2921
  # Lesotho
2922
- #: ../admin/view/wp-slimstat-reports.php:1857
2923
  msgid "c-ls"
2924
  msgstr "Lesotho"
2925
 
2926
  # Liberia
2927
- #: ../admin/view/wp-slimstat-reports.php:1857
2928
  msgid "c-lr"
2929
  msgstr "Liberia"
2930
 
2931
  # Libyan Arab Jamahiriya
2932
- #: ../admin/view/wp-slimstat-reports.php:1857
2933
  msgid "c-ly"
2934
  msgstr "Libyan Arab Jamahiriya"
2935
 
2936
  # Liechtenstein
2937
- #: ../admin/view/wp-slimstat-reports.php:1857
2938
  msgid "c-li"
2939
  msgstr "Liechtenstein"
2940
 
2941
  # Lithuania
2942
- #: ../admin/view/wp-slimstat-reports.php:1857
2943
  msgid "c-lt"
2944
  msgstr "Lithuania"
2945
 
2946
  # Luxembourg
2947
- #: ../admin/view/wp-slimstat-reports.php:1857
2948
  msgid "c-lu"
2949
  msgstr "Luxembourg"
2950
 
2951
  # The Former Yugoslav Republic of Macedonia
2952
- #: ../admin/view/wp-slimstat-reports.php:1857
2953
  msgid "c-mk"
2954
  msgstr "The Former Yugoslav Republic of Macedonia"
2955
 
2956
  # Madagascar
2957
- #: ../admin/view/wp-slimstat-reports.php:1857
2958
  msgid "c-mg"
2959
  msgstr "Madagascar"
2960
 
2961
  # Malawi
2962
- #: ../admin/view/wp-slimstat-reports.php:1857
2963
  msgid "c-mw"
2964
  msgstr "Malawi"
2965
 
2966
  # Malaysia
2967
- #: ../admin/view/wp-slimstat-reports.php:1857
2968
  msgid "c-my"
2969
  msgstr "Malaysia"
2970
 
2971
  # Mali
2972
- #: ../admin/view/wp-slimstat-reports.php:1857
2973
  msgid "c-ml"
2974
  msgstr "Mali"
2975
 
2976
  # Malta
2977
- #: ../admin/view/wp-slimstat-reports.php:1857
2978
  msgid "c-mt"
2979
  msgstr "Malta"
2980
 
2981
  # Martinique
2982
- #: ../admin/view/wp-slimstat-reports.php:1857
2983
  msgid "c-mq"
2984
  msgstr "Martinique"
2985
 
2986
  # Mauritania
2987
- #: ../admin/view/wp-slimstat-reports.php:1857
2988
  msgid "c-mr"
2989
  msgstr "Mauritania"
2990
 
2991
  # Mauritius
2992
- #: ../admin/view/wp-slimstat-reports.php:1857
2993
  msgid "c-mu"
2994
  msgstr "Mauritius"
2995
 
2996
  # Mexico
2997
- #: ../admin/view/wp-slimstat-reports.php:1857
2998
  msgid "c-mx"
2999
  msgstr "Mexico"
3000
 
3001
  # Moldova
3002
- #: ../admin/view/wp-slimstat-reports.php:1857
3003
  msgid "c-md"
3004
  msgstr "Moldova"
3005
 
3006
  # Mongolia
3007
- #: ../admin/view/wp-slimstat-reports.php:1857
3008
  msgid "c-mn"
3009
  msgstr "Mongolia"
3010
 
3011
  # Montenegro
3012
- #: ../admin/view/wp-slimstat-reports.php:1857
3013
  msgid "c-me"
3014
  msgstr "Montenegro"
3015
 
3016
  # Montserrat
3017
- #: ../admin/view/wp-slimstat-reports.php:1857
3018
  msgid "c-ms"
3019
  msgstr "Montserrat"
3020
 
3021
  # Morocco
3022
- #: ../admin/view/wp-slimstat-reports.php:1857
3023
  msgid "c-ma"
3024
  msgstr "Morocco"
3025
 
3026
  # Mozambique
3027
- #: ../admin/view/wp-slimstat-reports.php:1857
3028
  msgid "c-mz"
3029
  msgstr "Mozambique"
3030
 
3031
  # Myanmar
3032
- #: ../admin/view/wp-slimstat-reports.php:1857
3033
  msgid "c-mm"
3034
  msgstr "Myanmar"
3035
 
3036
  # Namibia
3037
- #: ../admin/view/wp-slimstat-reports.php:1857
3038
  msgid "c-na"
3039
  msgstr "Namibia"
3040
 
3041
  # Nepal
3042
- #: ../admin/view/wp-slimstat-reports.php:1857
3043
  msgid "c-np"
3044
  msgstr "Nepal"
3045
 
3046
  # Netherlands
3047
- #: ../admin/view/wp-slimstat-reports.php:1857
3048
  msgid "c-nl"
3049
  msgstr "Netherlands"
3050
 
3051
  # New Caledonia
3052
- #: ../admin/view/wp-slimstat-reports.php:1857
3053
  msgid "c-nc"
3054
  msgstr "New Caledonia"
3055
 
3056
  # New Zealand
3057
- #: ../admin/view/wp-slimstat-reports.php:1857
3058
  msgid "c-nz"
3059
  msgstr "New Zealand"
3060
 
3061
  # Nicaragua
3062
- #: ../admin/view/wp-slimstat-reports.php:1857
3063
  msgid "c-ni"
3064
  msgstr "Nicaragua"
3065
 
3066
  # Niger
3067
- #: ../admin/view/wp-slimstat-reports.php:1857
3068
  msgid "c-ne"
3069
  msgstr "Niger"
3070
 
3071
  # Nigeria
3072
- #: ../admin/view/wp-slimstat-reports.php:1857
3073
  msgid "c-ng"
3074
  msgstr "Nigeria"
3075
 
3076
  # Norway
3077
- #: ../admin/view/wp-slimstat-reports.php:1857
3078
  msgid "c-no"
3079
  msgstr "Norway"
3080
 
3081
  # Oman
3082
- #: ../admin/view/wp-slimstat-reports.php:1857
3083
  msgid "c-om"
3084
  msgstr "Oman"
3085
 
3086
  # Pakistan
3087
- #: ../admin/view/wp-slimstat-reports.php:1857
3088
  msgid "c-pk"
3089
  msgstr "Pakistan"
3090
 
3091
  # Palau
3092
- #: ../admin/view/wp-slimstat-reports.php:1857
3093
  msgid "c-pw"
3094
  msgstr "Palau"
3095
 
3096
  # Occupied Palestinian Territory
3097
- #: ../admin/view/wp-slimstat-reports.php:1857
3098
  msgid "c-ps"
3099
  msgstr "Occupied Palestinian Territory"
3100
 
3101
  # Panama
3102
- #: ../admin/view/wp-slimstat-reports.php:1857
3103
  msgid "c-pa"
3104
  msgstr "Panama"
3105
 
3106
  # Papua New Guinea
3107
- #: ../admin/view/wp-slimstat-reports.php:1857
3108
  msgid "c-pg"
3109
  msgstr "Papua New Guinea"
3110
 
3111
  # Paraguay
3112
- #: ../admin/view/wp-slimstat-reports.php:1857
3113
  msgid "c-py"
3114
  msgstr "Paraguay"
3115
 
3116
  # Peru
3117
- #: ../admin/view/wp-slimstat-reports.php:1857
3118
  msgid "c-pe"
3119
  msgstr "Peru"
3120
 
3121
  # Philippines
3122
- #: ../admin/view/wp-slimstat-reports.php:1857
3123
  msgid "c-ph"
3124
  msgstr "Philippines"
3125
 
3126
  # Poland
3127
- #: ../admin/view/wp-slimstat-reports.php:1857
3128
  msgid "c-pl"
3129
  msgstr "Poland"
3130
 
3131
  # Portugal
3132
- #: ../admin/view/wp-slimstat-reports.php:1857
3133
  msgid "c-pt"
3134
  msgstr "Portugal"
3135
 
3136
  # Puerto Rico
3137
- #: ../admin/view/wp-slimstat-reports.php:1857
3138
  msgid "c-pr"
3139
  msgstr "Puerto Rico"
3140
 
3141
  # Qatar
3142
- #: ../admin/view/wp-slimstat-reports.php:1857
3143
  msgid "c-qa"
3144
  msgstr "Qatar"
3145
 
3146
  # Réunion
3147
- #: ../admin/view/wp-slimstat-reports.php:1857
3148
  msgid "c-re"
3149
  msgstr "Réunion"
3150
 
3151
  # Romania
3152
- #: ../admin/view/wp-slimstat-reports.php:1857
3153
  msgid "c-ro"
3154
  msgstr "Romania"
3155
 
3156
  # Russian Federation
3157
- #: ../admin/view/wp-slimstat-reports.php:1857
3158
  msgid "c-ru"
3159
  msgstr "Russian Federation"
3160
 
3161
  # Rwanda
3162
- #: ../admin/view/wp-slimstat-reports.php:1857
3163
  msgid "c-rw"
3164
  msgstr "Rwanda"
3165
 
3166
  # Saint Kitts and Nevis
3167
- #: ../admin/view/wp-slimstat-reports.php:1857
3168
  msgid "c-kn"
3169
  msgstr "Saint Kitts and Nevis"
3170
 
3171
  # Saint Lucia
3172
- #: ../admin/view/wp-slimstat-reports.php:1857
3173
  msgid "c-lc"
3174
  msgstr "Saint Lucia"
3175
 
3176
  # Saint Martin
3177
- #: ../admin/view/wp-slimstat-reports.php:1857
3178
  msgid "c-mf"
3179
  msgstr "Saint Martin"
3180
 
3181
  # Saint Vincent and the Grenadines
3182
- #: ../admin/view/wp-slimstat-reports.php:1857
3183
  msgid "c-vc"
3184
  msgstr "Saint Vincent and the Grenadines"
3185
 
3186
  # Samoa
3187
- #: ../admin/view/wp-slimstat-reports.php:1857
3188
  msgid "c-ws"
3189
  msgstr "Samoa"
3190
 
3191
  # Sao Tome and Principe
3192
- #: ../admin/view/wp-slimstat-reports.php:1857
3193
  msgid "c-st"
3194
  msgstr "Sao Tome and Principe"
3195
 
3196
  # Saudi Arabia
3197
- #: ../admin/view/wp-slimstat-reports.php:1857
3198
  msgid "c-sa"
3199
  msgstr "Saudi Arabia"
3200
 
3201
  # Senegal
3202
- #: ../admin/view/wp-slimstat-reports.php:1857
3203
  msgid "c-sn"
3204
  msgstr "Senegal"
3205
 
3206
  # Serbia
3207
- #: ../admin/view/wp-slimstat-reports.php:1857
3208
  msgid "c-rs"
3209
  msgstr "Serbia"
3210
 
3211
  # Sierra Leone
3212
- #: ../admin/view/wp-slimstat-reports.php:1857
3213
  msgid "c-sl"
3214
  msgstr "Sierra Leone"
3215
 
3216
  # Singapore
3217
- #: ../admin/view/wp-slimstat-reports.php:1857
3218
  msgid "c-sg"
3219
  msgstr "Singapore"
3220
 
3221
  # Slovakia
3222
- #: ../admin/view/wp-slimstat-reports.php:1857
3223
  msgid "c-sk"
3224
  msgstr "Slovakia"
3225
 
3226
  # Slovenia
3227
- #: ../admin/view/wp-slimstat-reports.php:1857
3228
  msgid "c-si"
3229
  msgstr "Slovenia"
3230
 
3231
  # Solomon Islands
3232
- #: ../admin/view/wp-slimstat-reports.php:1857
3233
  msgid "c-sb"
3234
  msgstr "Solomon Islands"
3235
 
3236
  # Somalia
3237
- #: ../admin/view/wp-slimstat-reports.php:1857
3238
  msgid "c-so"
3239
  msgstr "Somalia"
3240
 
3241
  # South Africa
3242
- #: ../admin/view/wp-slimstat-reports.php:1857
3243
  msgid "c-za"
3244
  msgstr "South Africa"
3245
 
3246
  # South Georgia and the South Sandwich Islands
3247
- #: ../admin/view/wp-slimstat-reports.php:1857
3248
  msgid "c-gs"
3249
  msgstr "South Georgia and the South Sandwich Islands"
3250
 
3251
  # Spain
3252
- #: ../admin/view/wp-slimstat-reports.php:1857
3253
  msgid "c-es"
3254
  msgstr "Spain"
3255
 
3256
  # Sri Lanka
3257
- #: ../admin/view/wp-slimstat-reports.php:1857
3258
  msgid "c-lk"
3259
  msgstr "Sri Lanka"
3260
 
3261
- #: ../admin/view/wp-slimstat-reports.php:1857
3262
  msgid "c-sc"
3263
  msgstr "Seychelles"
3264
 
3265
  # Sudan
3266
- #: ../admin/view/wp-slimstat-reports.php:1857
3267
  msgid "c-sd"
3268
  msgstr "Sudan"
3269
 
3270
- #: ../admin/view/wp-slimstat-reports.php:1857
3271
  msgid "c-ss"
3272
  msgstr "South Sudan"
3273
 
3274
  # Suriname
3275
- #: ../admin/view/wp-slimstat-reports.php:1857
3276
  msgid "c-sr"
3277
  msgstr "Suriname"
3278
 
3279
  # Svalbard and Jan Mayen
3280
- #: ../admin/view/wp-slimstat-reports.php:1857
3281
  msgid "c-sj"
3282
  msgstr "Svalbard and Jan Mayen"
3283
 
3284
  # Swaziland
3285
- #: ../admin/view/wp-slimstat-reports.php:1857
3286
  msgid "c-sz"
3287
  msgstr "Swaziland"
3288
 
3289
  # Sweden
3290
- #: ../admin/view/wp-slimstat-reports.php:1857
3291
  msgid "c-se"
3292
  msgstr "Sweden"
3293
 
3294
  # Switzerland
3295
- #: ../admin/view/wp-slimstat-reports.php:1857
3296
  msgid "c-ch"
3297
  msgstr "Switzerland"
3298
 
3299
  # Syrian Arab Republic
3300
- #: ../admin/view/wp-slimstat-reports.php:1857
3301
  msgid "c-sy"
3302
  msgstr "Syrian Arab Republic"
3303
 
3304
  # Taiwan, Province of China
3305
- #: ../admin/view/wp-slimstat-reports.php:1857
3306
  msgid "c-tw"
3307
  msgstr "Taiwan"
3308
 
3309
  # Tajikistan
3310
- #: ../admin/view/wp-slimstat-reports.php:1857
3311
  msgid "c-tj"
3312
  msgstr "Tajikistan"
3313
 
3314
  # United Republic of Tanzania
3315
- #: ../admin/view/wp-slimstat-reports.php:1857
3316
  msgid "c-tz"
3317
  msgstr "United Republic of Tanzania"
3318
 
3319
  # Thailand
3320
- #: ../admin/view/wp-slimstat-reports.php:1857
3321
  msgid "c-th"
3322
  msgstr "Thailand"
3323
 
3324
  # Timor-Leste
3325
- #: ../admin/view/wp-slimstat-reports.php:1857
3326
  msgid "c-tl"
3327
  msgstr "Timor-Leste"
3328
 
3329
  # Togo
3330
- #: ../admin/view/wp-slimstat-reports.php:1857
3331
  msgid "c-tg"
3332
  msgstr "Togo"
3333
 
3334
  # Tonga
3335
- #: ../admin/view/wp-slimstat-reports.php:1857
3336
  msgid "c-to"
3337
  msgstr "Tonga"
3338
 
3339
  # Trinidad and Tobago
3340
- #: ../admin/view/wp-slimstat-reports.php:1857
3341
  msgid "c-tt"
3342
  msgstr "Trinidad and Tobago"
3343
 
3344
  # Tunisia
3345
- #: ../admin/view/wp-slimstat-reports.php:1857
3346
  msgid "c-tn"
3347
  msgstr "Tunisia"
3348
 
3349
  # Turkey
3350
- #: ../admin/view/wp-slimstat-reports.php:1857
3351
  msgid "c-tr"
3352
  msgstr "Turkey"
3353
 
3354
  # Turkmenistan
3355
- #: ../admin/view/wp-slimstat-reports.php:1857
3356
  msgid "c-tm"
3357
  msgstr "Turkmenistan"
3358
 
3359
  # Turks and Caicos Islands
3360
- #: ../admin/view/wp-slimstat-reports.php:1857
3361
  msgid "c-tc"
3362
  msgstr "Turks and Caicos Islands"
3363
 
3364
  # Uganda
3365
- #: ../admin/view/wp-slimstat-reports.php:1857
3366
  msgid "c-ug"
3367
  msgstr "Uganda"
3368
 
3369
  # Ukraine
3370
- #: ../admin/view/wp-slimstat-reports.php:1857
3371
  msgid "c-ua"
3372
  msgstr "Ukraine"
3373
 
3374
  # United Arab Emirates
3375
- #: ../admin/view/wp-slimstat-reports.php:1857
3376
  msgid "c-ae"
3377
  msgstr "United Arab Emirates"
3378
 
3379
  # United Kingdom
3380
- #: ../admin/view/wp-slimstat-reports.php:1857
3381
  msgid "c-gb"
3382
  msgstr "United Kingdom"
3383
 
3384
  # United States
3385
- #: ../admin/view/wp-slimstat-reports.php:1857
3386
  msgid "c-us"
3387
  msgstr "United States"
3388
 
3389
  # Uruguay
3390
- #: ../admin/view/wp-slimstat-reports.php:1857
3391
  msgid "c-uy"
3392
  msgstr "Uruguay"
3393
 
3394
  # Uzbekistan
3395
- #: ../admin/view/wp-slimstat-reports.php:1857
3396
  msgid "c-uz"
3397
  msgstr "Uzbekistan"
3398
 
3399
  # Vanuatu
3400
- #: ../admin/view/wp-slimstat-reports.php:1857
3401
  msgid "c-vu"
3402
  msgstr "Vanuatu"
3403
 
3404
  # Venezuela
3405
- #: ../admin/view/wp-slimstat-reports.php:1857
3406
  msgid "c-ve"
3407
  msgstr "Venezuela"
3408
 
3409
  # Viet Nam
3410
- #: ../admin/view/wp-slimstat-reports.php:1857
3411
  msgid "c-vn"
3412
  msgstr "Viet Nam"
3413
 
3414
  # British Virgin Islands
3415
- #: ../admin/view/wp-slimstat-reports.php:1857
3416
  msgid "c-vg"
3417
  msgstr "British Virgin Islands"
3418
 
3419
  # U.S. Virgin Islands
3420
- #: ../admin/view/wp-slimstat-reports.php:1857
3421
  msgid "c-vi"
3422
  msgstr "U.S. Virgin Islands"
3423
 
3424
  # Western Sahara
3425
- #: ../admin/view/wp-slimstat-reports.php:1857
3426
  msgid "c-eh"
3427
  msgstr "Western Sahara"
3428
 
3429
  # Yemen
3430
- #: ../admin/view/wp-slimstat-reports.php:1857
3431
  msgid "c-ye"
3432
  msgstr "Yemen"
3433
 
3434
  # Zambia
3435
- #: ../admin/view/wp-slimstat-reports.php:1857
3436
  msgid "c-zm"
3437
  msgstr "Zambia"
3438
 
3439
  # Zimbabwe
3440
- #: ../admin/view/wp-slimstat-reports.php:1857
3441
  msgid "c-zw"
3442
  msgstr "Zimbabwe"
3443
 
3444
  # Guernsey
3445
- #: ../admin/view/wp-slimstat-reports.php:1857
3446
  msgid "c-gg"
3447
  msgstr "Guernsey"
3448
 
3449
  # Jersey
3450
- #: ../admin/view/wp-slimstat-reports.php:1857
3451
  msgid "c-je"
3452
  msgstr "Jersey"
3453
 
3454
  # Isle of Man
3455
- #: ../admin/view/wp-slimstat-reports.php:1857
3456
  msgid "c-im"
3457
  msgstr "Isle of Man"
3458
 
3459
  # Maldives
3460
- #: ../admin/view/wp-slimstat-reports.php:1857
3461
  msgid "c-mv"
3462
  msgstr "Maldives"
3463
 
3464
- #: ../admin/view/wp-slimstat-reports.php:1858
3465
  msgid "c-eu"
3466
  msgstr "Europe"
3467
 
3468
- #: ../admin/view/wp-slimstat-reports.php:1935
3469
  msgid "src"
3470
  msgstr ""
3471
 
3472
- #: ../admin/view/wp-slimstat-reports.php:1939
3473
  msgid "serp"
3474
  msgstr ""
3475
 
3476
- #: ../admin/view/wp-slimstat-reports.php:1947
3477
  msgid "Go to the referring page"
3478
  msgstr ""
3479
 
3480
- #: ../admin/view/wp-slimstat-reports.php:1969
3481
  msgid "Remove filter for"
3482
  msgstr ""
3483
 
3484
- #: ../admin/view/wp-slimstat-reports.php:1973
3485
  msgid "Save"
3486
  msgstr ""
3487
 
3488
- #: ../admin/view/wp-slimstat-reports.php:1976
3489
- msgid "Reset All"
3490
- msgstr ""
3491
-
3492
- #: ../admin/view/wp-slimstat-reports.php:1980
3493
- msgid "Current filters:"
3494
  msgstr ""
3495
 
3496
- #: ../admin/wp-slimstat-admin.php:39
3497
  msgid "Overview"
3498
  msgstr ""
3499
 
3500
- #: ../admin/wp-slimstat-admin.php:45
3501
  msgid "Audience"
3502
  msgstr ""
3503
 
3504
- #: ../admin/wp-slimstat-admin.php:51
3505
  msgid "Site Analysis"
3506
  msgstr ""
3507
 
3508
- #: ../admin/wp-slimstat-admin.php:69
3509
- msgid "Customize"
3510
- msgstr ""
3511
-
3512
- #: ../admin/wp-slimstat-admin.php:81
3513
  msgid "WordPress Dashboard"
3514
  msgstr ""
3515
 
3516
- #: ../admin/wp-slimstat-admin.php:87
3517
  msgid "Inactive Reports"
3518
  msgstr ""
3519
 
3520
- #: ../admin/wp-slimstat-admin.php:452
3521
- msgid ""
3522
- "Slimstat attempted to upgrade your database structure, but the procedure "
3523
- "might not have been completed (temporary tables were detected in your "
3524
- "database). This might be caused by restrictive user permissions that don't "
3525
- "grant commands like RENAME, ALTER/CHANGE and others. You might need to "
3526
- "manually consolidate your tables. No worries, we wrote a <a href='https://"
3527
- "slimstat.freshdesk.com/support/solutions/articles/12000003148-how-do-i-"
3528
- "update-the-table-structure-if-i-upgraded-from-a-version-prior-to-4-0' "
3529
- "target='_blank'>step by step guide</a> on how to do that. Please feel free "
3530
- "to contact our support team if you have any questions."
3531
- msgstr ""
3532
-
3533
- #: ../admin/wp-slimstat-admin.php:780
3534
- msgid "SlimStat"
3535
  msgstr ""
3536
 
3537
- #: ../admin/wp-slimstat-admin.php:843
3538
- msgid "Slimstat"
 
3539
  msgstr ""
3540
 
3541
- #: ../admin/wp-slimstat-admin.php:933
3542
  msgid "Pageviews in the last "
3543
  msgstr ""
3544
 
3545
- #: ../admin/wp-slimstat-admin.php:936
3546
  msgid "Unique IPs in the last "
3547
  msgstr ""
3548
 
3549
- #: ../admin/wp-slimstat-admin.php:970
3550
  #, php-format
3551
  msgid ""
3552
  " And for keeping an eye on your web traffic with %sSlimStat Analytics%s."
3553
  msgstr ""
3554
 
3555
- #: ../admin/wp-slimstat-admin.php:995
3556
  msgid "Show on screen"
3557
  msgstr ""
3558
 
3559
- #: ../admin/wp-slimstat-admin.php:1104
3560
  msgid "Already saved"
3561
  msgstr ""
3562
 
3563
- #: ../admin/wp-slimstat-admin.php:1112
3564
  msgid "Saved"
3565
  msgstr ""
3566
 
3567
- #: ../admin/wp-slimstat-admin.php:1132
3568
  msgid "Delete this filter"
3569
  msgstr ""
3570
 
3571
- #: ../admin/wp-slimstat-admin.php:1196
3572
  msgid "On"
3573
  msgstr ""
3574
 
3575
- #: ../admin/wp-slimstat-admin.php:1264
3576
  msgid "Save Changes"
3577
  msgstr ""
3578
 
3579
- #: ../admin/wp-slimstat-admin.php:1313
3580
  msgid "There was an error updating the following options:"
3581
  msgstr ""
3582
 
3583
- #: ../admin/wp-slimstat-admin.php:1316
3584
  msgid "Your changes have been saved."
3585
  msgstr ""
3586
 
3587
- #: ../admin/wp-slimstat-admin.php:1334
3588
  msgid "Definitions"
3589
  msgstr ""
3590
 
3591
- #: ../admin/wp-slimstat-admin.php:1337
3592
  msgid "Pageview"
3593
  msgstr ""
3594
 
3595
- #: ../admin/wp-slimstat-admin.php:1337
3596
  msgid ""
3597
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3598
  "with a \"hit\", which refers to a request for any file from a web server. "
3599
  "Slimstat logs a pageview each time the tracking code is executed"
3600
  msgstr ""
3601
 
3602
- #: ../admin/wp-slimstat-admin.php:1338
3603
  msgid "(Human) Visit"
3604
  msgstr ""
3605
 
3606
- #: ../admin/wp-slimstat-admin.php:1338
3607
  msgid ""
3608
  "A period of interaction between a visitor's browser and your website, ending "
3609
  "when the browser is closed or when the user has been inactive on that site "
3610
  "for 30 minutes"
3611
  msgstr ""
3612
 
3613
- #: ../admin/wp-slimstat-admin.php:1339
3614
  msgid ""
3615
  "Any user who has left a comment on your blog, and is thus identified by "
3616
  "Wordpress as a returning visitor"
3617
  msgstr ""
3618
 
3619
- #: ../admin/wp-slimstat-admin.php:1340
3620
  msgid "Unique IP"
3621
  msgstr ""
3622
 
3623
- #: ../admin/wp-slimstat-admin.php:1340
3624
  msgid ""
3625
  "Used to differentiate between multiple requests to download a file from one "
3626
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3628,152 +3880,152 @@ msgid ""
3628
  "from, it is useful, but not perfect"
3629
  msgstr ""
3630
 
3631
- #: ../admin/wp-slimstat-admin.php:1341
3632
  msgid ""
3633
  "the originating IP address of a client connecting to a web server through an "
3634
  "HTTP proxy or load balancer"
3635
  msgstr ""
3636
 
3637
- #: ../admin/wp-slimstat-admin.php:1342
3638
  msgid "Direct Traffic"
3639
  msgstr ""
3640
 
3641
- #: ../admin/wp-slimstat-admin.php:1342
3642
  msgid ""
3643
  "All those people showing up to your Web site by typing in the URL of your "
3644
  "Web site coming or from a bookmark; some people also call this \"default "
3645
  "traffic\" or \"ambient traffic\""
3646
  msgstr ""
3647
 
3648
- #: ../admin/wp-slimstat-admin.php:1343
3649
  msgid "Search Engine"
3650
  msgstr ""
3651
 
3652
- #: ../admin/wp-slimstat-admin.php:1343
3653
  msgid ""
3654
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3655
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3656
  msgstr ""
3657
 
3658
- #: ../admin/wp-slimstat-admin.php:1344 ../admin/wp-slimstat-admin.php:1360
3659
  msgid "Keywords used by your visitors to find your website on a search engine"
3660
  msgstr ""
3661
 
3662
- #: ../admin/wp-slimstat-admin.php:1345
3663
  msgid "SERP"
3664
  msgstr ""
3665
 
3666
- #: ../admin/wp-slimstat-admin.php:1345
3667
  msgid ""
3668
  "Short for search engine results page, the Web page that a search engine "
3669
  "returns with the results of its search. The value shown represents your rank "
3670
  "(or position) within that list of results"
3671
  msgstr ""
3672
 
3673
- #: ../admin/wp-slimstat-admin.php:1346
3674
  msgid ""
3675
  "Any program used for accessing a website; this includes browsers, robots, "
3676
  "spiders and any other program that was used to retrieve information from the "
3677
  "site"
3678
  msgstr ""
3679
 
3680
- #: ../admin/wp-slimstat-admin.php:1347
3681
  msgid ""
3682
  "A link from one domain to another is said to be outbound from its source "
3683
  "anchor and inbound to its target. This report lists all the links to other "
3684
  "websites followed by your visitors."
3685
  msgstr ""
3686
 
3687
- #: ../admin/wp-slimstat-admin.php:1354
3688
  msgid "Basic Filters"
3689
  msgstr ""
3690
 
3691
- #: ../admin/wp-slimstat-admin.php:1357
3692
  msgid "User agent (Firefox, Chrome, ...)"
3693
  msgstr ""
3694
 
3695
- #: ../admin/wp-slimstat-admin.php:1358
3696
  msgid "2-letter code (us, ru, de, it, ...)"
3697
  msgstr ""
3698
 
3699
- #: ../admin/wp-slimstat-admin.php:1359
3700
  msgid "IP"
3701
  msgstr ""
3702
 
3703
- #: ../admin/wp-slimstat-admin.php:1359
3704
  msgid "Visitor's public IP address"
3705
  msgstr ""
3706
 
3707
- #: ../admin/wp-slimstat-admin.php:1361
3708
  msgid ""
3709
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3710
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3711
  "column) for more information"
3712
  msgstr ""
3713
 
3714
- #: ../admin/wp-slimstat-admin.php:1362
3715
  msgid ""
3716
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3717
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3718
  "manual page</a> for more information"
3719
  msgstr ""
3720
 
3721
- #: ../admin/wp-slimstat-admin.php:1363
3722
  msgid "URL accessed on your site"
3723
  msgstr ""
3724
 
3725
- #: ../admin/wp-slimstat-admin.php:1364
3726
  msgid "Complete address of the referrer page"
3727
  msgstr ""
3728
 
3729
- #: ../admin/wp-slimstat-admin.php:1365
3730
  msgid "Visitor's Name"
3731
  msgstr ""
3732
 
3733
- #: ../admin/wp-slimstat-admin.php:1365
3734
  msgid ""
3735
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3736
  "comment"
3737
  msgstr ""
3738
 
3739
- #: ../admin/wp-slimstat-admin.php:1373
3740
  msgid "Advanced Filters"
3741
  msgstr ""
3742
 
3743
- #: ../admin/wp-slimstat-admin.php:1376
3744
  msgid "user agent version (9.0, 11, ...)"
3745
  msgstr ""
3746
 
3747
- #: ../admin/wp-slimstat-admin.php:1377
3748
  msgid ""
3749
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3750
  "all others"
3751
  msgstr ""
3752
 
3753
- #: ../admin/wp-slimstat-admin.php:1378
3754
  msgid "Pageview Attributes"
3755
  msgstr ""
3756
 
3757
- #: ../admin/wp-slimstat-admin.php:1378
3758
  msgid ""
3759
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3760
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
3761
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
3762
  msgstr ""
3763
 
3764
- #: ../admin/wp-slimstat-admin.php:1379
3765
  msgid "author associated to that post/page when the resource was accessed"
3766
  msgstr ""
3767
 
3768
- #: ../admin/wp-slimstat-admin.php:1380
3769
  msgid "ID of the category/term associated to the resource, when available"
3770
  msgstr ""
3771
 
3772
- #: ../admin/wp-slimstat-admin.php:1381
3773
  msgid "visitor's originating IP address, if available"
3774
  msgstr ""
3775
 
3776
- #: ../admin/wp-slimstat-admin.php:1382
3777
  msgid ""
3778
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
3779
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -3782,99 +4034,99 @@ msgid ""
3782
  "information"
3783
  msgstr ""
3784
 
3785
- #: ../admin/wp-slimstat-admin.php:1383
3786
  msgid "Screen Resolution"
3787
  msgstr ""
3788
 
3789
- #: ../admin/wp-slimstat-admin.php:1383
3790
  msgid "viewport width and height (1024x768, 800x600, ...)"
3791
  msgstr ""
3792
 
3793
- #: ../admin/wp-slimstat-admin.php:1384
3794
  msgid ""
3795
  "generally used in conjunction with <em>is not empty</em>, identifies human "
3796
  "visitors"
3797
  msgstr ""
3798
 
3799
- #: ../admin/wp-slimstat-admin.php:1385
3800
  msgid "Date Filters"
3801
  msgstr ""
3802
 
3803
- #: ../admin/wp-slimstat-admin.php:1385
3804
  msgid ""
3805
  "you can specify the timeframe by entering a number in the <em>interval</em> "
3806
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
3807
  "year=blank, interval=-1 will set a year-to-date filter)"
3808
  msgstr ""
3809
 
3810
- #: ../admin/wp-slimstat-admin.php:1386
3811
  msgid "SERP Position"
3812
  msgstr ""
3813
 
3814
- #: ../admin/wp-slimstat-admin.php:1386
3815
  msgid ""
3816
  "set the filter to Referer contains cd=N&, where N is the position you are "
3817
  "looking for"
3818
  msgstr ""
3819
 
3820
- #: ../browscap/browser.php:54
3821
  msgid ""
3822
  "This library requires at least PHP 5.5. Please ask your service provider to "
3823
  "upgrade your server accordingly."
3824
  msgstr ""
3825
 
3826
- #: ../browscap/browser.php:58
3827
  msgid "No updates are performed during AJAX requests."
3828
  msgstr ""
3829
 
3830
- #: ../browscap/browser.php:62
3831
  msgid ""
3832
  "Please set your <code>FS_METHOD</code> variable to \"direct\" in your wp-"
3833
  "config.php file, or contact our support to obtain a copy of our Browscap "
3834
  "Library."
3835
  msgstr ""
3836
 
3837
- #: ../browscap/browser.php:103
3838
  msgid ""
3839
  "The Browscap Library could not be opened on your filesystem. Please check "
3840
  "your server permissions and try again."
3841
  msgstr ""
3842
 
3843
- #: ../browscap/browser.php:119
3844
  msgid ""
3845
  "There was an error checking the remote library version. Please try again "
3846
  "later."
3847
  msgstr ""
3848
 
3849
- #: ../browscap/browser.php:126
3850
  msgid "Your version of the library does not need to be updated."
3851
  msgstr ""
3852
 
3853
- #: ../browscap/browser.php:137
3854
  msgid ""
3855
  "There was an error saving the Browscap data file on your server. Please "
3856
  "check your folder permissions."
3857
  msgstr ""
3858
 
3859
- #: ../browscap/browser.php:144
3860
  msgid ""
3861
  "There was an error downloading the Browscap data file from our server. "
3862
  "Please try again later."
3863
  msgstr ""
3864
 
3865
- #: ../browscap/browser.php:153
3866
  msgid ""
3867
  "Could not initialize the WP Filesystem API. Please check your folder "
3868
  "permissions and PHP configuration."
3869
  msgstr ""
3870
 
3871
- #: ../browscap/browser.php:169
3872
  msgid ""
3873
  "There was an error uncompressing the Browscap data file on your server. "
3874
  "Please check your folder permissions and PHP configuration."
3875
  msgstr ""
3876
 
3877
- #: ../browscap/browser.php:177
3878
  msgid "The Browscap data file has been installed on your server."
3879
  msgstr ""
3880
 
@@ -3987,1556 +4239,1642 @@ msgid "mac68k"
3987
  msgstr "Mac 68k"
3988
 
3989
  #: ../languages/dynamic_strings.php:32
3990
- msgid "macosx"
3991
  msgstr "Mac OS X"
3992
 
3993
  #: ../languages/dynamic_strings.php:33
 
 
 
 
3994
  msgid "macppc"
3995
  msgstr "Mac PowerPC"
3996
 
3997
- #: ../languages/dynamic_strings.php:34
3998
  msgid "mandrake"
3999
  msgstr "Mandrake"
4000
 
4001
- #: ../languages/dynamic_strings.php:35
4002
  msgid "mandriva"
4003
  msgstr "Mandriva"
4004
 
4005
- #: ../languages/dynamic_strings.php:36
4006
  msgid "mepis"
4007
  msgstr "Mepis"
4008
 
4009
  # Spanish; Castilian
4010
- #: ../languages/dynamic_strings.php:37
4011
  msgid "ms-dos"
4012
  msgstr "MS-Dos"
4013
 
4014
- #: ../languages/dynamic_strings.php:38
4015
  msgid "netbsd"
4016
  msgstr "NetBSD"
4017
 
4018
- #: ../languages/dynamic_strings.php:39
4019
  msgid "nintendo"
4020
  msgstr "Nintendo"
4021
 
4022
- #: ../languages/dynamic_strings.php:40
4023
  msgid "openbsd"
4024
  msgstr "OpenBSD"
4025
 
4026
- #: ../languages/dynamic_strings.php:41
4027
  msgid "openvms"
4028
  msgstr "OpenVMS"
4029
 
4030
- #: ../languages/dynamic_strings.php:42
4031
  msgid "os/2"
4032
  msgstr "IBM OS/2"
4033
 
4034
- #: ../languages/dynamic_strings.php:43
4035
  msgid "palm"
4036
  msgstr "Palm"
4037
 
4038
- #: ../languages/dynamic_strings.php:44
4039
  msgid "palmos"
4040
  msgstr "Palm OS"
4041
 
4042
- #: ../languages/dynamic_strings.php:45
4043
  msgid "pclinuxos"
4044
  msgstr "Linux"
4045
 
4046
- #: ../languages/dynamic_strings.php:46
4047
  msgid "playstation"
4048
  msgstr "Playstation"
4049
 
4050
- #: ../languages/dynamic_strings.php:47
4051
  msgid "powertv"
4052
  msgstr "PowerTV"
4053
 
4054
- #: ../languages/dynamic_strings.php:48
4055
  msgid "redhat"
4056
  msgstr "RedHat"
4057
 
4058
- #: ../languages/dynamic_strings.php:49
4059
  msgid "rim os"
4060
  msgstr "BlackBerry OS"
4061
 
4062
- #: ../languages/dynamic_strings.php:50
4063
  msgid "risc os"
4064
  msgstr "Risc OS"
4065
 
4066
- #: ../languages/dynamic_strings.php:51
4067
  msgid "slackware"
4068
  msgstr "Slackware"
4069
 
4070
- #: ../languages/dynamic_strings.php:52
4071
  msgid "solaris"
4072
  msgstr "Solaris"
4073
 
4074
- #: ../languages/dynamic_strings.php:53
4075
  msgid "sunos"
4076
  msgstr "Sun OS"
4077
 
4078
- #: ../languages/dynamic_strings.php:54
4079
  msgid "suse"
4080
  msgstr "SuSE"
4081
 
4082
- #: ../languages/dynamic_strings.php:55
4083
  msgid "symbianos"
4084
  msgstr "Symbian OS"
4085
 
4086
- #: ../languages/dynamic_strings.php:56
4087
  msgid "ubuntu"
4088
  msgstr "Ubuntu"
4089
 
4090
- #: ../languages/dynamic_strings.php:57
4091
  msgid "unix"
4092
  msgstr "Unix"
4093
 
4094
- #: ../languages/dynamic_strings.php:58
4095
  msgid "unknown"
4096
  msgstr "Unknown"
4097
 
4098
- #: ../languages/dynamic_strings.php:59
4099
  msgid "xandros"
4100
  msgstr "Xandros"
4101
 
4102
- #: ../languages/dynamic_strings.php:60
4103
  msgid "wap"
4104
  msgstr "WAP"
4105
 
4106
- #: ../languages/dynamic_strings.php:61
4107
  msgid "webos"
4108
  msgstr "WebOS"
4109
 
4110
- #: ../languages/dynamic_strings.php:62
4111
  msgid "win10"
4112
  msgstr "Windows 10"
4113
 
4114
- #: ../languages/dynamic_strings.php:63
4115
  msgid "win16"
4116
  msgstr "Windows 16-bit"
4117
 
4118
- #: ../languages/dynamic_strings.php:64
4119
  msgid "win2000"
4120
  msgstr "Windows 2000"
4121
 
4122
- #: ../languages/dynamic_strings.php:65
4123
  msgid "win2003"
4124
  msgstr "Windows 2003"
4125
 
4126
- #: ../languages/dynamic_strings.php:66
4127
  msgid "win31"
4128
  msgstr "Windows 3.1"
4129
 
4130
- #: ../languages/dynamic_strings.php:67
4131
  msgid "win32"
4132
  msgstr "Windows 32-bit"
4133
 
4134
- #: ../languages/dynamic_strings.php:68 ../languages/dynamic_strings.php:69
4135
  msgid "win7"
4136
  msgstr "Windows 7"
4137
 
4138
- #: ../languages/dynamic_strings.php:70
4139
  msgid "win8"
4140
  msgstr "Windows 8"
4141
 
4142
- #: ../languages/dynamic_strings.php:71
4143
  msgid "win8.1"
4144
  msgstr "Windows 8.1"
4145
 
4146
- #: ../languages/dynamic_strings.php:72
4147
  msgid "win95"
4148
  msgstr "Windows 95"
4149
 
4150
- #: ../languages/dynamic_strings.php:73
4151
  msgid "win98"
4152
  msgstr "Windows 98"
4153
 
4154
- #: ../languages/dynamic_strings.php:74
4155
  msgid "wince"
4156
  msgstr "Windows CE"
4157
 
4158
- #: ../languages/dynamic_strings.php:75
4159
  msgid "winme"
4160
  msgstr "Windows ME"
4161
 
4162
- #: ../languages/dynamic_strings.php:76
4163
  msgid "winnt"
4164
  msgstr "Windows NT"
4165
 
4166
- #: ../languages/dynamic_strings.php:77
4167
  msgid "winphone7"
4168
  msgstr "Windows Phone"
4169
 
4170
- #: ../languages/dynamic_strings.php:78
4171
  msgid "winphone7.5"
4172
  msgstr "Windows Phone 7.5"
4173
 
4174
- #: ../languages/dynamic_strings.php:79
4175
  msgid "winphone8"
4176
  msgstr "Windows Phone 8"
4177
 
4178
- #: ../languages/dynamic_strings.php:80
4179
  msgid "winphone8.1"
4180
  msgstr "Windows Phone 8.1"
4181
 
4182
- #: ../languages/dynamic_strings.php:81
4183
  msgid "winrt"
4184
  msgstr "Windows RT Platform"
4185
 
4186
- #: ../languages/dynamic_strings.php:82
4187
  msgid "winvista"
4188
  msgstr "Windows Vista"
4189
 
4190
- #: ../languages/dynamic_strings.php:83
4191
  msgid "winxp"
4192
  msgstr "Windows XP"
4193
 
4194
- #: ../languages/dynamic_strings.php:84
4195
  msgid "wyderos"
4196
  msgstr "WyderOS"
4197
 
4198
- #: ../languages/dynamic_strings.php:85
4199
  msgid "zaurus"
4200
  msgstr "Zaurus"
4201
 
4202
- #: ../languages/dynamic_strings.php:88
4203
  msgid "acrobat"
4204
  msgstr "Acrobat Reader"
4205
 
4206
- #: ../languages/dynamic_strings.php:89
4207
  msgid "director"
4208
  msgstr "Macromedia Director"
4209
 
4210
- #: ../languages/dynamic_strings.php:90
4211
  msgid "flash"
4212
  msgstr "Adobe Flash Player"
4213
 
4214
- #: ../languages/dynamic_strings.php:91
4215
  msgid "mediaplayer"
4216
  msgstr "Microsoft Media Player"
4217
 
4218
- #: ../languages/dynamic_strings.php:92
4219
  msgid "quicktime"
4220
  msgstr "QuickTime"
4221
 
4222
- #: ../languages/dynamic_strings.php:93
4223
  msgid "pdfviewer"
4224
  msgstr "PDF Viewer"
4225
 
4226
- #: ../languages/dynamic_strings.php:94
4227
  msgid "real"
4228
  msgstr "Real Player"
4229
 
4230
- #: ../languages/dynamic_strings.php:95
4231
  msgid "silverlight"
4232
  msgstr "Microsoft Silverlight"
4233
 
4234
- #: ../languages/dynamic_strings.php:98
4235
  msgid "p-and"
4236
  msgstr "Android"
4237
 
4238
- #: ../languages/dynamic_strings.php:99
4239
  msgid "p-bla"
4240
  msgstr "BlackBerry"
4241
 
4242
- #: ../languages/dynamic_strings.php:100
4243
  msgid "p-chr"
4244
  msgstr "Chrome OS"
4245
 
4246
- #: ../languages/dynamic_strings.php:101
4247
  msgid "p-fir"
4248
  msgstr "Fire OS"
4249
 
4250
- #: ../languages/dynamic_strings.php:102
4251
  msgid "p-fre"
4252
  msgstr "Linux FreeBSD"
4253
 
4254
- #: ../languages/dynamic_strings.php:103
4255
  msgid "p-ios"
4256
  msgstr "Apple iOS"
4257
 
4258
- #: ../languages/dynamic_strings.php:104
4259
  msgid "p-jav"
4260
  msgstr "Java-based OS"
4261
 
4262
- #: ../languages/dynamic_strings.php:105
4263
  msgid "p-lin"
4264
  msgstr "Linux"
4265
 
4266
- #: ../languages/dynamic_strings.php:106
4267
  msgid "p-mac"
4268
  msgstr "Apple"
4269
 
4270
- #: ../languages/dynamic_strings.php:107
4271
  msgid "p-rim"
4272
  msgstr "Blackberry RIM"
4273
 
4274
- #: ../languages/dynamic_strings.php:108
4275
  msgid "p-sym"
4276
  msgstr "Symbian OS"
4277
 
4278
- #: ../languages/dynamic_strings.php:109
4279
  msgid "p-ubu"
4280
  msgstr "Linux Ubuntu"
4281
 
4282
- #: ../languages/dynamic_strings.php:110
4283
  msgid "p-unk"
4284
  msgstr "Unknown"
4285
 
4286
- #: ../languages/dynamic_strings.php:111
4287
  msgid "p-win"
4288
  msgstr "Microsoft"
4289
 
4290
  # Afrikaans
4291
- #: ../languages/dynamic_strings.php:114
4292
  msgid "l-af"
4293
  msgstr "Afrikaans"
4294
 
4295
  # Afrikaans
4296
- #: ../languages/dynamic_strings.php:115
4297
  msgid "l-af-za"
4298
  msgstr "Afrikaans (South Africa)"
4299
 
4300
  # Arabic
4301
- #: ../languages/dynamic_strings.php:116
4302
  msgid "l-ar"
4303
  msgstr "Arabic"
4304
 
4305
  # Arabic
4306
- #: ../languages/dynamic_strings.php:117
4307
  msgid "l-ar-ae"
4308
  msgstr "Arabic (U.A.E.)"
4309
 
4310
  # Arabic
4311
- #: ../languages/dynamic_strings.php:118
4312
  msgid "l-ar-bh"
4313
  msgstr "Arabic (Bahrain)"
4314
 
4315
  # Arabic
4316
- #: ../languages/dynamic_strings.php:119
4317
  msgid "l-ar-dz"
4318
  msgstr "Arabic (Algeria)"
4319
 
4320
  # Arabic
4321
- #: ../languages/dynamic_strings.php:120
4322
  msgid "l-ar-eg"
4323
  msgstr "Arabic (Egypt)"
4324
 
4325
  # Arabic
4326
- #: ../languages/dynamic_strings.php:121
4327
  msgid "l-ar-iq"
4328
  msgstr "Arabic (Iraq)"
4329
 
4330
  # Arabic
4331
- #: ../languages/dynamic_strings.php:122
4332
  msgid "l-ar-jo"
4333
  msgstr "Arabic (Jordan)"
4334
 
4335
  # Arabic
4336
- #: ../languages/dynamic_strings.php:123
4337
  msgid "l-ar-kw"
4338
  msgstr "Arabic (Kuwait)"
4339
 
4340
  # Arabic
4341
- #: ../languages/dynamic_strings.php:124
4342
  msgid "l-ar-lb"
4343
  msgstr "Arabic (Lebanon)"
4344
 
4345
  # Arabic
4346
- #: ../languages/dynamic_strings.php:125
4347
  msgid "l-ar-ly"
4348
  msgstr "Arabic (Libya)"
4349
 
4350
  # Arabic
4351
- #: ../languages/dynamic_strings.php:126
4352
  msgid "l-ar-ma"
4353
  msgstr "Arabic (Morocco)"
4354
 
4355
  # Arabic
4356
- #: ../languages/dynamic_strings.php:127
4357
  msgid "l-ar-om"
4358
  msgstr "Arabic (Oman)"
4359
 
4360
  # Arabic
4361
- #: ../languages/dynamic_strings.php:128
4362
  msgid "l-ar-qa"
4363
  msgstr "Arabic (Qatar)"
4364
 
4365
  # Arabic
4366
- #: ../languages/dynamic_strings.php:129
4367
  msgid "l-ar-sa"
4368
  msgstr "Arabic (Saudi Arabia)"
4369
 
4370
  # Arabic
4371
- #: ../languages/dynamic_strings.php:130
4372
  msgid "l-ar-sy"
4373
  msgstr "Arabic (Syria)"
4374
 
4375
  # Arabic
4376
- #: ../languages/dynamic_strings.php:131
4377
  msgid "l-ar-tn"
4378
  msgstr "Arabic (Tunisia)"
4379
 
4380
  # Arabic
4381
- #: ../languages/dynamic_strings.php:132
4382
  msgid "l-ar-ye"
4383
  msgstr "Arabic (Yemen)"
4384
 
4385
  # Azerbaijani
4386
- #: ../languages/dynamic_strings.php:133
4387
  msgid "l-az"
4388
  msgstr "Azerbaijani"
4389
 
4390
  # Azerbaijani
4391
- #: ../languages/dynamic_strings.php:134
4392
  msgid "l-az-az"
4393
  msgstr "Azeri (Latin)"
4394
 
4395
  # Belarusian
4396
- #: ../languages/dynamic_strings.php:135
4397
  msgid "l-be"
4398
  msgstr "Belarusian"
4399
 
4400
  # Belarusian
4401
- #: ../languages/dynamic_strings.php:136
4402
  msgid "l-be-by"
4403
  msgstr "Belarusian (Belarus)"
4404
 
4405
  # Bulgarian
4406
- #: ../languages/dynamic_strings.php:137
4407
  msgid "l-bg"
4408
  msgstr "Bulgarian"
4409
 
4410
  # Bulgarian
4411
- #: ../languages/dynamic_strings.php:138
4412
  msgid "l-bg-bg"
4413
  msgstr "Bulgarian (Bulgaria)"
4414
 
4415
  # Bosnian
4416
- #: ../languages/dynamic_strings.php:139
4417
  msgid "l-bs-ba"
4418
  msgstr "Bosnian"
4419
 
4420
  # Catalan; Valencian
4421
- #: ../languages/dynamic_strings.php:140
4422
  msgid "l-ca"
4423
  msgstr "Catalan"
4424
 
4425
  # Catalan; Valencian
4426
- #: ../languages/dynamic_strings.php:141
4427
  msgid "l-ca-es"
4428
  msgstr "Catalan; Valencian"
4429
 
4430
  # Czech
4431
- #: ../languages/dynamic_strings.php:142
4432
  msgid "l-cs"
4433
  msgstr "Czech"
4434
 
4435
  # Czech
4436
- #: ../languages/dynamic_strings.php:143
4437
  msgid "l-cs-cz"
4438
  msgstr "Czech (Czech Republic)"
4439
 
4440
  # Welsh
4441
- #: ../languages/dynamic_strings.php:144
4442
  msgid "l-cy"
4443
  msgstr "Welsh"
4444
 
4445
  # Welsh
4446
- #: ../languages/dynamic_strings.php:145
4447
  msgid "l-cy-gb"
4448
  msgstr "Welsh (UK)"
4449
 
4450
  # Danish
4451
- #: ../languages/dynamic_strings.php:146
4452
  msgid "l-da"
4453
  msgstr "Danish"
4454
 
4455
  # Danish
4456
- #: ../languages/dynamic_strings.php:147
4457
  msgid "l-da-dk"
4458
  msgstr "Danish (Denmark)"
4459
 
4460
  # German
4461
- #: ../languages/dynamic_strings.php:148
4462
  msgid "l-de"
4463
  msgstr "German"
4464
 
4465
  # German
4466
- #: ../languages/dynamic_strings.php:149
4467
  msgid "l-de-at"
4468
  msgstr "German (Austria)"
4469
 
4470
  # German
4471
- #: ../languages/dynamic_strings.php:150
4472
  msgid "l-de-ch"
4473
  msgstr "German (Switzerland)"
4474
 
4475
  # German
4476
- #: ../languages/dynamic_strings.php:151
4477
  msgid "l-de-de"
4478
  msgstr "German (Germany)"
4479
 
4480
  # German
4481
- #: ../languages/dynamic_strings.php:152
4482
  msgid "l-de-li"
4483
  msgstr "German (Liechtenstein)"
4484
 
4485
  # German
4486
- #: ../languages/dynamic_strings.php:153
4487
  msgid "l-de-lu"
4488
  msgstr "German (Luxembourg)"
4489
 
4490
  # Dhivehi; Divehi; Maldivian
4491
- #: ../languages/dynamic_strings.php:154
4492
  msgid "l-dv"
4493
  msgstr "Dhivehi; Divehi; Maldivian"
4494
 
4495
  # Dhivehi; Divehi; Maldivian
4496
- #: ../languages/dynamic_strings.php:155
4497
  msgid "l-dv-mv"
4498
  msgstr "Maldivian"
4499
 
4500
  # Modern Greek (1453-)
4501
- #: ../languages/dynamic_strings.php:156
4502
  msgid "l-el"
4503
  msgstr "Greek"
4504
 
4505
  # Modern Greek (1453-)
4506
- #: ../languages/dynamic_strings.php:157
4507
  msgid "l-el-gr"
4508
  msgstr "Greek (Greece)"
4509
 
4510
  # English
4511
- #: ../languages/dynamic_strings.php:158
4512
  msgid "l-en"
4513
  msgstr "English"
4514
 
4515
  # English
4516
- #: ../languages/dynamic_strings.php:159
4517
  msgid "l-en-au"
4518
  msgstr "English (Australia)"
4519
 
4520
  # English
4521
- #: ../languages/dynamic_strings.php:160
4522
  msgid "l-en-bz"
4523
  msgstr "English (Belize)"
4524
 
4525
  # English
4526
- #: ../languages/dynamic_strings.php:161
4527
  msgid "l-en-ca"
4528
  msgstr "English (Canada)"
4529
 
4530
  # English
4531
- #: ../languages/dynamic_strings.php:162
4532
  msgid "l-en-cb"
4533
  msgstr "English (Caribbean)"
4534
 
4535
  # English
4536
- #: ../languages/dynamic_strings.php:163
4537
  msgid "l-en-gb"
4538
  msgstr "English (Great Britain)"
4539
 
4540
  # English
4541
- #: ../languages/dynamic_strings.php:164
4542
  msgid "l-en-ie"
4543
  msgstr "English (Ireland)"
4544
 
4545
  # English
4546
- #: ../languages/dynamic_strings.php:165
4547
  msgid "l-en-jm"
4548
  msgstr "English (Jamaica)"
4549
 
4550
  # English
4551
- #: ../languages/dynamic_strings.php:166
4552
  msgid "l-en-nz"
4553
  msgstr "English (New Zealand)"
4554
 
4555
  # English
4556
- #: ../languages/dynamic_strings.php:167
4557
  msgid "l-en-ph"
4558
  msgstr "English (Philippines)"
4559
 
4560
  # English
4561
- #: ../languages/dynamic_strings.php:168
4562
  msgid "l-en-tt"
4563
  msgstr "English (Trinidad and Tobago)"
4564
 
4565
  # English
4566
- #: ../languages/dynamic_strings.php:169
4567
  msgid "l-en-us"
4568
  msgstr "English (USA)"
4569
 
4570
  # English
4571
- #: ../languages/dynamic_strings.php:170
4572
  msgid "l-en-za"
4573
  msgstr "English (South Africa)"
4574
 
4575
  # English
4576
- #: ../languages/dynamic_strings.php:171
4577
  msgid "l-en-zw"
4578
  msgstr "English (Zimbabwe)"
4579
 
4580
  # Esperanto
4581
- #: ../languages/dynamic_strings.php:172
4582
  msgid "l-eo"
4583
  msgstr "Esperanto"
4584
 
4585
  # Spanish; Castilian
4586
- #: ../languages/dynamic_strings.php:173
4587
  msgid "l-es"
4588
  msgstr "Spanish"
4589
 
4590
  # Spanish; Castilian
4591
- #: ../languages/dynamic_strings.php:174
4592
  msgid "l-es-ar"
4593
  msgstr "Spanish (Argentina)"
4594
 
4595
  # Spanish; Castilian
4596
- #: ../languages/dynamic_strings.php:175
4597
  msgid "l-es-bo"
4598
  msgstr "Spanish (Bolivia)"
4599
 
4600
  # Spanish; Castilian
4601
- #: ../languages/dynamic_strings.php:176
4602
  msgid "l-es-cl"
4603
  msgstr "Spanish (Chile)"
4604
 
4605
  # Spanish; Castilian
4606
- #: ../languages/dynamic_strings.php:177
4607
  msgid "l-es-co"
4608
  msgstr "Spanish (Colombia)"
4609
 
4610
  # Spanish; Castilian
4611
- #: ../languages/dynamic_strings.php:178
4612
  msgid "l-es-cr"
4613
  msgstr "Spanish (Costa Rica)"
4614
 
4615
  # Spanish; Castilian
4616
- #: ../languages/dynamic_strings.php:179
4617
  msgid "l-es-do"
4618
  msgstr "Spanish (Dominican Republic)"
4619
 
4620
  # Spanish; Castilian
4621
- #: ../languages/dynamic_strings.php:180
4622
  msgid "l-es-ec"
4623
  msgstr "Spanish (Ecuador)"
4624
 
4625
  # Spanish; Castilian
4626
- #: ../languages/dynamic_strings.php:181
4627
  msgid "l-es-es"
4628
  msgstr "Spanish (Spain)"
4629
 
4630
  # Spanish; Castilian
4631
- #: ../languages/dynamic_strings.php:182
4632
  msgid "l-es-gt"
4633
  msgstr "Spanish (Guatemala)"
4634
 
4635
  # Spanish; Castilian
4636
- #: ../languages/dynamic_strings.php:183
4637
  msgid "l-es-hn"
4638
  msgstr "Spanish (Honduras)"
4639
 
4640
  # Spanish; Castilian
4641
- #: ../languages/dynamic_strings.php:184
4642
  msgid "l-es-mx"
4643
  msgstr "Spanish (Mexico)"
4644
 
4645
  # Spanish; Castilian
4646
- #: ../languages/dynamic_strings.php:185
4647
  msgid "l-es-ni"
4648
  msgstr "Spanish (Nicaragua)"
4649
 
4650
  # Spanish; Castilian
4651
- #: ../languages/dynamic_strings.php:186
4652
  msgid "l-es-pa"
4653
  msgstr "Spanish (Panama)"
4654
 
4655
  # Spanish; Castilian
4656
- #: ../languages/dynamic_strings.php:187
4657
  msgid "l-es-pe"
4658
  msgstr "Spanish (Peru)"
4659
 
4660
  # Spanish; Castilian
4661
- #: ../languages/dynamic_strings.php:188
4662
  msgid "l-es-pr"
4663
  msgstr "Spanish (Puerto Rico)"
4664
 
4665
  # Spanish; Castilian
4666
- #: ../languages/dynamic_strings.php:189
4667
  msgid "l-es-py"
4668
  msgstr "Spanish (Paraguay)"
4669
 
4670
  # Spanish; Castilian
4671
- #: ../languages/dynamic_strings.php:190
4672
  msgid "l-es-sv"
4673
  msgstr "Spanish (El Salvador)"
4674
 
4675
  # Spanish; Castilian
4676
- #: ../languages/dynamic_strings.php:191
4677
  msgid "l-es-uy"
4678
  msgstr "Spanish (Uruguay)"
4679
 
4680
  # Spanish; Castilian
4681
- #: ../languages/dynamic_strings.php:192
4682
  msgid "l-es-ve"
4683
  msgstr "Spanish (Venezuela)"
4684
 
4685
  # Estonian
4686
- #: ../languages/dynamic_strings.php:193
4687
  msgid "l-et"
4688
  msgstr "Estonian"
4689
 
4690
  # Estonian
4691
- #: ../languages/dynamic_strings.php:194
4692
  msgid "l-et-ee"
4693
  msgstr "Estonian (Estonia)"
4694
 
4695
  # Basque
4696
- #: ../languages/dynamic_strings.php:195
4697
  msgid "l-eu"
4698
  msgstr "Basque"
4699
 
4700
  # Basque
4701
- #: ../languages/dynamic_strings.php:196
4702
  msgid "l-eu-es"
4703
  msgstr "Basque (Spain)"
4704
 
4705
  # Persian
4706
- #: ../languages/dynamic_strings.php:197
4707
  msgid "l-fa"
4708
  msgstr "Persian"
4709
 
4710
  # Persian
4711
- #: ../languages/dynamic_strings.php:198
4712
  msgid "l-fa-ir"
4713
  msgstr "Persian (Iran)"
4714
 
4715
  # Finnish
4716
- #: ../languages/dynamic_strings.php:199
4717
  msgid "l-fi"
4718
  msgstr "Finnish"
4719
 
4720
  # Finnish
4721
- #: ../languages/dynamic_strings.php:200
4722
  msgid "l-fi-fi"
4723
  msgstr "Finnish (Finland)"
4724
 
4725
  # Faroese
4726
- #: ../languages/dynamic_strings.php:201
4727
  msgid "l-fo"
4728
  msgstr "Faroese"
4729
 
4730
  # Faroese
4731
- #: ../languages/dynamic_strings.php:202
4732
  msgid "l-fo-fo"
4733
  msgstr "Faroese (Faroe Islands)"
4734
 
4735
  # French
4736
- #: ../languages/dynamic_strings.php:203
4737
  msgid "l-fr"
4738
  msgstr "French"
4739
 
4740
  # French
4741
- #: ../languages/dynamic_strings.php:204
4742
  msgid "l-fr-be"
4743
  msgstr "French (Belgium)"
4744
 
4745
  # French
4746
- #: ../languages/dynamic_strings.php:205
4747
  msgid "l-fr-ca"
4748
  msgstr "French (Canada)"
4749
 
4750
  # French
4751
- #: ../languages/dynamic_strings.php:206
4752
  msgid "l-fr-ch"
4753
  msgstr "French (Switzerland)"
4754
 
4755
  # French
4756
- #: ../languages/dynamic_strings.php:207
4757
  msgid "l-fr-fr"
4758
  msgstr "French (France)"
4759
 
4760
  # French
4761
- #: ../languages/dynamic_strings.php:208
4762
  msgid "l-fr-lu"
4763
  msgstr "French (Luxembourg)"
4764
 
4765
  # French
4766
- #: ../languages/dynamic_strings.php:209
4767
  msgid "l-fr-mc"
4768
  msgstr "French (Monaco)"
4769
 
4770
  # Galician
4771
- #: ../languages/dynamic_strings.php:210
4772
  msgid "l-gl"
4773
  msgstr "Galician"
4774
 
4775
  # Spanish; Castilian
4776
- #: ../languages/dynamic_strings.php:211
4777
  msgid "l-gl-es"
4778
  msgstr "Galician (Spain)"
4779
 
4780
  # Gujarati
4781
- #: ../languages/dynamic_strings.php:212
4782
  msgid "l-gu"
4783
  msgstr "Gujarati"
4784
 
4785
  # Gujarati
4786
- #: ../languages/dynamic_strings.php:213
4787
  msgid "l-gu-in"
4788
  msgstr "Gujarati (India)"
4789
 
4790
  # Hebrew
4791
- #: ../languages/dynamic_strings.php:214
4792
  msgid "l-he"
4793
  msgstr "Hebrew"
4794
 
4795
  # Hebrew
4796
- #: ../languages/dynamic_strings.php:215
4797
  msgid "l-he-il"
4798
  msgstr "Hebrew (Israel)"
4799
 
4800
  # Hindi
4801
- #: ../languages/dynamic_strings.php:216
4802
  msgid "l-hi"
4803
  msgstr "Hindi"
4804
 
4805
  # Hindi
4806
- #: ../languages/dynamic_strings.php:217
4807
  msgid "l-hi-in"
4808
  msgstr "Hindi (India)"
4809
 
4810
  # Croatian
4811
- #: ../languages/dynamic_strings.php:218
4812
  msgid "l-hr"
4813
  msgstr "Croatian"
4814
 
4815
  # Croatian
4816
- #: ../languages/dynamic_strings.php:219
4817
  msgid "l-hr-ba"
4818
  msgstr "Croatian (Bosnia)"
4819
 
4820
  # Croatian
4821
- #: ../languages/dynamic_strings.php:220
4822
  msgid "l-hr-hr"
4823
  msgstr "Croatian (Croatia)"
4824
 
4825
  # Hungarian
4826
- #: ../languages/dynamic_strings.php:221
4827
  msgid "l-hu"
4828
  msgstr "Hungarian"
4829
 
4830
  # Hungarian
4831
- #: ../languages/dynamic_strings.php:222
4832
  msgid "l-hu-hu"
4833
  msgstr "Hungarian (Hungary)"
4834
 
4835
  # Armenian
4836
- #: ../languages/dynamic_strings.php:223
4837
  msgid "l-hy"
4838
  msgstr "Armenian"
4839
 
4840
  # Armenian
4841
- #: ../languages/dynamic_strings.php:224
4842
  msgid "l-hy-am"
4843
  msgstr "Armenian (Armenia)"
4844
 
4845
- #: ../languages/dynamic_strings.php:225
4846
  msgid "l-id"
4847
  msgstr "Indonesian"
4848
 
4849
- #: ../languages/dynamic_strings.php:226
4850
  msgid "l-id-id"
4851
  msgstr "Indonesian"
4852
 
4853
  # Icelandic
4854
- #: ../languages/dynamic_strings.php:227
4855
  msgid "l-is"
4856
  msgstr "Icelandic"
4857
 
4858
  # Icelandic
4859
- #: ../languages/dynamic_strings.php:228
4860
  msgid "l-is-is"
4861
  msgstr "Icelandic (Iceland)"
4862
 
4863
  # Italian
4864
- #: ../languages/dynamic_strings.php:229
4865
  msgid "l-it"
4866
  msgstr "Italian"
4867
 
4868
  # Italian
4869
- #: ../languages/dynamic_strings.php:230
4870
  msgid "l-it-ch"
4871
  msgstr "Italian (Switzerland)"
4872
 
4873
  # Italian
4874
- #: ../languages/dynamic_strings.php:231
4875
  msgid "l-it-it"
4876
  msgstr "Italian (Italy)"
4877
 
4878
  # Japanese
4879
- #: ../languages/dynamic_strings.php:232
4880
  msgid "l-ja"
4881
  msgstr "Japanese"
4882
 
4883
  # Japanese
4884
- #: ../languages/dynamic_strings.php:233
4885
  msgid "l-ja-jp"
4886
  msgstr "Japanese (Japan)"
4887
 
4888
  # Georgian
4889
- #: ../languages/dynamic_strings.php:234
4890
  msgid "l-ka"
4891
  msgstr "Georgian"
4892
 
4893
  # Georgian
4894
- #: ../languages/dynamic_strings.php:235
4895
  msgid "l-ka-ge"
4896
  msgstr "Georgian (Georgia)"
4897
 
4898
  # Kazakh
4899
- #: ../languages/dynamic_strings.php:236
4900
  msgid "l-kk"
4901
  msgstr "Kazakh"
4902
 
4903
  # Kazakh
4904
- #: ../languages/dynamic_strings.php:237
4905
  msgid "l-kk-kz"
4906
  msgstr "Kazakh (Kazakhstan)"
4907
 
4908
  # Kannada
4909
- #: ../languages/dynamic_strings.php:238
4910
  msgid "l-kn"
4911
  msgstr "Kannada"
4912
 
4913
  # Kannada
4914
- #: ../languages/dynamic_strings.php:239
4915
  msgid "l-kn-in"
4916
  msgstr "Kannada (India)"
4917
 
4918
  # Korean
4919
- #: ../languages/dynamic_strings.php:240
4920
  msgid "l-ko"
4921
  msgstr "Korean"
4922
 
4923
  # Korean
4924
- #: ../languages/dynamic_strings.php:241
4925
  msgid "l-ko-kr"
4926
  msgstr "Korean (Korea)"
4927
 
4928
  # Korean
4929
- #: ../languages/dynamic_strings.php:242
4930
  msgid "l-kok"
4931
  msgstr "Konkani"
4932
 
4933
  # Korean
4934
- #: ../languages/dynamic_strings.php:243
4935
  msgid "l-kok-in"
4936
  msgstr "Konkani (India)"
4937
 
4938
  # Kirghiz; Kyrgyz
4939
- #: ../languages/dynamic_strings.php:244
4940
  msgid "l-ky"
4941
  msgstr "Kirghiz"
4942
 
4943
  # Kirghiz; Kyrgyz
4944
- #: ../languages/dynamic_strings.php:245
4945
  msgid "l-ky-kg"
4946
  msgstr "Kirghiz (Kazakhstan)"
4947
 
4948
  # Lithuanian
4949
- #: ../languages/dynamic_strings.php:246
4950
  msgid "l-lt"
4951
  msgstr "Lithuanian"
4952
 
4953
  # Lithuanian
4954
- #: ../languages/dynamic_strings.php:247
4955
  msgid "l-lt-lt"
4956
  msgstr "Lithuanian (Lithuania)"
4957
 
4958
  # Latvian
4959
- #: ../languages/dynamic_strings.php:248
4960
  msgid "l-lv"
4961
  msgstr "Latvian"
4962
 
4963
  # Latvian
4964
- #: ../languages/dynamic_strings.php:249
4965
  msgid "l-lv-lv"
4966
  msgstr "Latvian (Latvia)"
4967
 
4968
  # Maori
4969
- #: ../languages/dynamic_strings.php:250
4970
  msgid "l-mi"
4971
  msgstr "Maori"
4972
 
4973
  # Maori
4974
- #: ../languages/dynamic_strings.php:251
4975
  msgid "l-mi-nz"
4976
  msgstr "Maori (New Zealand)"
4977
 
4978
  # Macedonian
4979
- #: ../languages/dynamic_strings.php:252
4980
  msgid "l-mk"
4981
  msgstr "Macedonian"
4982
 
4983
  # Macedonian
4984
- #: ../languages/dynamic_strings.php:253
4985
  msgid "l-mk-ml"
4986
  msgstr "Macedonian (FYROM)"
4987
 
4988
  # Mongolian
4989
- #: ../languages/dynamic_strings.php:254
4990
  msgid "l-mn"
4991
  msgstr "Mongolian"
4992
 
4993
  # Mongolian
4994
- #: ../languages/dynamic_strings.php:255
4995
  msgid "l-mn-mn"
4996
  msgstr "Mongolian (Mongolia)"
4997
 
4998
  # Marathi
4999
- #: ../languages/dynamic_strings.php:256
5000
  msgid "l-mr"
5001
  msgstr "Marathi"
5002
 
5003
  # Marathi
5004
- #: ../languages/dynamic_strings.php:257
5005
  msgid "l-mr-in"
5006
  msgstr "Marathi (India)"
5007
 
5008
  # Malay
5009
- #: ../languages/dynamic_strings.php:258
5010
  msgid "l-ms"
5011
  msgstr "Malay"
5012
 
5013
  # Malay
5014
- #: ../languages/dynamic_strings.php:259
5015
  msgid "l-ms-bn"
5016
  msgstr "Malay (Brunei)"
5017
 
5018
  # Malay
5019
- #: ../languages/dynamic_strings.php:260
5020
  msgid "l-ms-my"
5021
  msgstr "Malay (Malaysia)"
5022
 
5023
  # Maltese
5024
- #: ../languages/dynamic_strings.php:261
5025
  msgid "l-mt"
5026
  msgstr "Maltese"
5027
 
5028
  # Maltese
5029
- #: ../languages/dynamic_strings.php:262
5030
  msgid "l-mt-mt"
5031
  msgstr "Maltese (Malta)"
5032
 
5033
  # Norwegian Bokmål
5034
- #: ../languages/dynamic_strings.php:263
5035
  msgid "l-nb"
5036
  msgstr "Norwegian; Bokmål"
5037
 
5038
  # Norwegian Bokmål
5039
- #: ../languages/dynamic_strings.php:264
5040
  msgid "l-nb-no"
5041
  msgstr "Norwegian (Norway)"
5042
 
5043
  # Dutch; Flemish
5044
- #: ../languages/dynamic_strings.php:265
5045
  msgid "l-nl"
5046
  msgstr "Dutch; Flemish"
5047
 
5048
  # Belarusian
5049
- #: ../languages/dynamic_strings.php:266
5050
  msgid "l-nl-be"
5051
  msgstr "Dutch (Belgium)"
5052
 
5053
  # Dutch; Flemish
5054
- #: ../languages/dynamic_strings.php:267
5055
  msgid "l-nl-nl"
5056
  msgstr "Dutch (The Netherlands)"
5057
 
5058
  # Norwegian Nynorsk
5059
- #: ../languages/dynamic_strings.php:268
5060
  msgid "l-nn-no"
5061
  msgstr "Norwegian; Nynorsk (Norway)"
5062
 
5063
- #: ../languages/dynamic_strings.php:269
5064
  msgid "l-ns"
5065
  msgstr "Northern Sotho"
5066
 
5067
- #: ../languages/dynamic_strings.php:270
5068
  msgid "l-ns-za"
5069
  msgstr "Northern Sotho (South Africa)"
5070
 
5071
  # Panjabi; Punjabi
5072
- #: ../languages/dynamic_strings.php:271
5073
  msgid "l-pa"
5074
  msgstr "Panjabi; Punjabi"
5075
 
5076
  # Panjabi; Punjabi
5077
- #: ../languages/dynamic_strings.php:272
5078
  msgid "l-pa-in"
5079
  msgstr "Panjabi (India)"
5080
 
5081
  # Polish
5082
- #: ../languages/dynamic_strings.php:273
5083
  msgid "l-pl"
5084
  msgstr "Polish"
5085
 
5086
  # Polish
5087
- #: ../languages/dynamic_strings.php:274
5088
  msgid "l-pl-pl"
5089
  msgstr "Polish (Poland)"
5090
 
5091
  # Pushto; Pashto
5092
- #: ../languages/dynamic_strings.php:275
5093
  msgid "l-ps"
5094
  msgstr "Pushto; Pashto"
5095
 
5096
  # Pushto; Pashto
5097
- #: ../languages/dynamic_strings.php:276
5098
  msgid "l-ps-ar"
5099
  msgstr "Pashto (Afghanistan)"
5100
 
5101
  # Portuguese
5102
- #: ../languages/dynamic_strings.php:277
5103
  msgid "l-pt"
5104
  msgstr "Portuguese"
5105
 
5106
  # Portuguese
5107
- #: ../languages/dynamic_strings.php:278
5108
  msgid "l-pt-br"
5109
  msgstr "Portuguese (Brazil)"
5110
 
5111
  # Portuguese
5112
- #: ../languages/dynamic_strings.php:279
5113
  msgid "l-pt-pt"
5114
  msgstr "Portuguese (Portugal)"
5115
 
5116
  # Quechua
5117
- #: ../languages/dynamic_strings.php:280
5118
  msgid "l-qu"
5119
  msgstr "Quechua"
5120
 
5121
  # Quechua
5122
- #: ../languages/dynamic_strings.php:281
5123
  msgid "l-qu-bo"
5124
  msgstr "Quechua (Bolivia)"
5125
 
5126
  # Quechua
5127
- #: ../languages/dynamic_strings.php:282
5128
  msgid "l-qu-ec"
5129
  msgstr "Quechua (Ecuador)"
5130
 
5131
  # Quechua
5132
- #: ../languages/dynamic_strings.php:283
5133
  msgid "l-qu-pe"
5134
  msgstr "Quechua (Peru)"
5135
 
5136
  # Romanian; Moldavian; Moldovan
5137
- #: ../languages/dynamic_strings.php:284
5138
  msgid "l-ro"
5139
  msgstr "Romanian"
5140
 
5141
  # Romanian; Moldavian; Moldovan
5142
- #: ../languages/dynamic_strings.php:285
5143
  msgid "l-ro-ro"
5144
  msgstr "Romanian (Romania)"
5145
 
5146
  # Russian
5147
- #: ../languages/dynamic_strings.php:286
5148
  msgid "l-ru"
5149
  msgstr "Russian"
5150
 
5151
  # Russian
5152
- #: ../languages/dynamic_strings.php:287
5153
  msgid "l-ru-ru"
5154
  msgstr "Russian (Russia)"
5155
 
5156
  # Sanskrit
5157
- #: ../languages/dynamic_strings.php:288
5158
  msgid "l-sa"
5159
  msgstr "Sanskrit"
5160
 
5161
  # Sanskrit (India)
5162
- #: ../languages/dynamic_strings.php:289
5163
  msgid "l-sa-in"
5164
  msgstr "Sanskrit (India)"
5165
 
5166
  # Northern Sami
5167
- #: ../languages/dynamic_strings.php:290
5168
  msgid "l-se"
5169
  msgstr "Northern Sami"
5170
 
5171
  # Northern Sami
5172
- #: ../languages/dynamic_strings.php:291
5173
  msgid "l-se-fi"
5174
  msgstr "Northern Sami (Finland)"
5175
 
5176
  # Northern Sami
5177
- #: ../languages/dynamic_strings.php:292
5178
  msgid "l-se-no"
5179
  msgstr "Northern Sami (Norway)"
5180
 
5181
  # Northern Sami
5182
- #: ../languages/dynamic_strings.php:293
5183
  msgid "l-se-se"
5184
  msgstr "Northern Sami (Sweden)"
5185
 
5186
  # Slovak
5187
- #: ../languages/dynamic_strings.php:294
5188
  msgid "l-sk"
5189
  msgstr "Slovak"
5190
 
5191
  # Slovak
5192
- #: ../languages/dynamic_strings.php:295
5193
  msgid "l-sk-sk"
5194
  msgstr "Slovak (Slovakia)"
5195
 
5196
  # Slovenian
5197
- #: ../languages/dynamic_strings.php:296
5198
  msgid "l-sl"
5199
  msgstr "Slovenian"
5200
 
5201
  # Slovenian
5202
- #: ../languages/dynamic_strings.php:297
5203
  msgid "l-sl-si"
5204
  msgstr "Slovenian (Slovenia)"
5205
 
5206
  # Albanian
5207
- #: ../languages/dynamic_strings.php:298
5208
  msgid "l-sq"
5209
  msgstr "Albanian"
5210
 
5211
  # Albanian
5212
- #: ../languages/dynamic_strings.php:299
5213
  msgid "l-sq-al"
5214
  msgstr "Albanian (Albania)"
5215
 
5216
  # Serbian
5217
- #: ../languages/dynamic_strings.php:300
5218
  msgid "l-sr-ba"
5219
  msgstr "Serbian (Bosnia and Herzegovina)"
5220
 
5221
  # Serbian
5222
- #: ../languages/dynamic_strings.php:301
5223
  msgid "l-sr-sp"
5224
  msgstr "Serbian (Serbia and Montenegro)"
5225
 
5226
  # Swedish
5227
- #: ../languages/dynamic_strings.php:302
5228
  msgid "l-sv"
5229
  msgstr "Swedish"
5230
 
5231
  # Swedish
5232
- #: ../languages/dynamic_strings.php:303
5233
  msgid "l-sv-fi"
5234
  msgstr "Swedish (Finland)"
5235
 
5236
  # Swedish
5237
- #: ../languages/dynamic_strings.php:304
5238
  msgid "l-sv-se"
5239
  msgstr "Swedish (Sweden)"
5240
 
5241
  # Swahili
5242
- #: ../languages/dynamic_strings.php:305
5243
  msgid "l-sw"
5244
  msgstr "Swahili"
5245
 
5246
  # Swahili
5247
- #: ../languages/dynamic_strings.php:306
5248
  msgid "l-sw-ke"
5249
  msgstr "Swahili (Kenya)"
5250
 
5251
  # Tamil
5252
- #: ../languages/dynamic_strings.php:307
5253
  msgid "l-ta"
5254
  msgstr "Tamil"
5255
 
5256
  # Tamil
5257
- #: ../languages/dynamic_strings.php:308
5258
  msgid "l-ta-in"
5259
  msgstr "Tamil (India)"
5260
 
5261
  # Telugu
5262
- #: ../languages/dynamic_strings.php:309
5263
  msgid "l-te"
5264
  msgstr "Telugu"
5265
 
5266
  # Telugu
5267
- #: ../languages/dynamic_strings.php:310
5268
  msgid "l-te-in"
5269
  msgstr "Telugu (India)"
5270
 
5271
  # Thai
5272
- #: ../languages/dynamic_strings.php:311
5273
  msgid "l-th"
5274
  msgstr "Thai"
5275
 
5276
  # Thai
5277
- #: ../languages/dynamic_strings.php:312
5278
  msgid "l-th-th"
5279
  msgstr "Thai (Thailand)"
5280
 
5281
  # Tagalog
5282
- #: ../languages/dynamic_strings.php:313
5283
  msgid "l-tl"
5284
  msgstr "Tagalog"
5285
 
5286
  # Tagalog
5287
- #: ../languages/dynamic_strings.php:314
5288
  msgid "l-tl-ph"
5289
  msgstr "Tagalog (Philippines)"
5290
 
5291
  # Tswana
5292
- #: ../languages/dynamic_strings.php:315
5293
  msgid "l-tn"
5294
  msgstr "Tswana"
5295
 
5296
  # Tswana
5297
- #: ../languages/dynamic_strings.php:316
5298
  msgid "l-tn-za"
5299
  msgstr "Tswana (South Africa)"
5300
 
5301
  # Turkish
5302
- #: ../languages/dynamic_strings.php:317
5303
  msgid "l-tr"
5304
  msgstr "Turkish"
5305
 
5306
  # Turkish
5307
- #: ../languages/dynamic_strings.php:318
5308
  msgid "l-tr-tr"
5309
  msgstr "Turkish (Turkey)"
5310
 
5311
  # Tatar
5312
- #: ../languages/dynamic_strings.php:319
5313
  msgid "l-tt"
5314
  msgstr "Tatar"
5315
 
5316
  # Tatar
5317
- #: ../languages/dynamic_strings.php:320
5318
  msgid "l-tt-ru"
5319
  msgstr "Tatar (Russia)"
5320
 
5321
  # Tsonga
5322
- #: ../languages/dynamic_strings.php:321
5323
  msgid "l-ts"
5324
  msgstr "Tsonga"
5325
 
5326
  # Ukrainian
5327
- #: ../languages/dynamic_strings.php:322
5328
  msgid "l-uk"
5329
  msgstr "Ukrainian"
5330
 
5331
  # Ukrainian
5332
- #: ../languages/dynamic_strings.php:323
5333
  msgid "l-uk-ua"
5334
  msgstr "Ukrainian (Ukraine)"
5335
 
5336
  # Urdu
5337
- #: ../languages/dynamic_strings.php:324
5338
  msgid "l-ur"
5339
  msgstr "Urdu"
5340
 
5341
  # Urdu
5342
- #: ../languages/dynamic_strings.php:325
5343
  msgid "l-ur-pk"
5344
  msgstr "Urdu (Pakistan)"
5345
 
5346
  # Uzbek
5347
- #: ../languages/dynamic_strings.php:326
5348
  msgid "l-uz"
5349
  msgstr "Uzbek"
5350
 
5351
  # Uzbek
5352
- #: ../languages/dynamic_strings.php:327
5353
  msgid "l-uz-uz"
5354
  msgstr "Uzbek (Uzbekistan)"
5355
 
5356
  # Vietnamese
5357
- #: ../languages/dynamic_strings.php:328
5358
  msgid "l-vi"
5359
  msgstr "Vietnamese"
5360
 
5361
  # Vietnamese
5362
- #: ../languages/dynamic_strings.php:329
5363
  msgid "l-vi-vn"
5364
  msgstr "Vietnamese (Viet Nam)"
5365
 
5366
  # Xhosa
5367
- #: ../languages/dynamic_strings.php:330
5368
  msgid "l-xh"
5369
  msgstr "Xhosa"
5370
 
5371
  # Xhosa
5372
- #: ../languages/dynamic_strings.php:331
5373
  msgid "l-xh-za"
5374
  msgstr "Xhosa (South Africa)"
5375
 
5376
  # Chinese
5377
- #: ../languages/dynamic_strings.php:332
5378
  msgid "l-zh"
5379
  msgstr "Chinese"
5380
 
5381
  # Chinese
5382
- #: ../languages/dynamic_strings.php:333
5383
  msgid "l-zh-cn"
5384
  msgstr "Chinese (S)"
5385
 
5386
  # Chinese
5387
- #: ../languages/dynamic_strings.php:334
5388
  msgid "l-zh-hk"
5389
  msgstr "Chinese (Hong Kong)"
5390
 
5391
  # Chinese
5392
- #: ../languages/dynamic_strings.php:335
5393
  msgid "l-zh-mo"
5394
  msgstr "Chinese (Macau)"
5395
 
5396
  # Chinese
5397
- #: ../languages/dynamic_strings.php:336
5398
  msgid "l-zh-sg"
5399
  msgstr "Chinese (Singapore)"
5400
 
5401
  # Chinese
5402
- #: ../languages/dynamic_strings.php:337
5403
  msgid "l-zh-tw"
5404
  msgstr "Chinese (T)"
5405
 
5406
  # Zulu
5407
- #: ../languages/dynamic_strings.php:338
5408
  msgid "l-zu"
5409
  msgstr "Zulu"
5410
 
5411
  # Zulu
5412
- #: ../languages/dynamic_strings.php:339
5413
  msgid "l-zu-za"
5414
  msgstr "Zulu (South Africa)"
5415
 
5416
  # Unknown
5417
- #: ../languages/dynamic_strings.php:341
5418
  msgid "l-empty"
5419
  msgstr "Unknown"
5420
 
5421
  # Unknown
5422
- #: ../languages/dynamic_strings.php:342
5423
  msgid "l-xx"
5424
  msgstr "Unknown"
5425
 
5426
- #: ../languages/dynamic_strings.php:344
5427
  msgid "c-xy"
5428
  msgstr "Local IP"
5429
 
5430
- #: ../wp-slimstat.php:259 ../wp-slimstat.php:562
 
 
 
 
5431
  msgid "Pageview filtered by third-party code"
5432
  msgstr ""
5433
 
5434
- #: ../wp-slimstat.php:268
5435
- msgid "Empty or not supported IP address format (IPv6)"
 
 
 
 
 
 
 
 
 
 
 
 
5436
  msgstr ""
5437
 
5438
- #: ../wp-slimstat.php:285
5439
  #, php-format
5440
  msgid "Malformed referrer URL: %s (IP: %s)"
5441
  msgstr ""
5442
 
5443
- #: ../wp-slimstat.php:286
5444
  #, php-format
5445
  msgid "Malformed referrer URL: %s"
5446
  msgstr ""
5447
 
5448
- #: ../wp-slimstat.php:291
5449
  #, php-format
5450
  msgid "Attempted XSS Injection: %s (IP: %s)"
5451
  msgstr ""
5452
 
5453
- #: ../wp-slimstat.php:292
5454
  #, php-format
5455
  msgid "Attempted XSS Injection: %s"
5456
  msgstr ""
5457
 
5458
- #: ../wp-slimstat.php:317
5459
  #, php-format
5460
  msgid "Referrer %s is blacklisted"
5461
  msgstr ""
5462
 
5463
- #: ../wp-slimstat.php:369
 
 
 
 
 
5464
  msgid "Malformed URL"
5465
  msgstr ""
5466
 
5467
- #: ../wp-slimstat.php:403
5468
  #, php-format
5469
  msgid "Permalink %s is blacklisted"
5470
  msgstr ""
5471
 
5472
- #: ../wp-slimstat.php:414
5473
  #, php-format
5474
  msgid "Logged in user %s not tracked"
5475
  msgstr ""
5476
 
5477
- #: ../wp-slimstat.php:422
5478
  #, php-format
5479
  msgid "User with capability %s not tracked"
5480
  msgstr ""
5481
 
5482
- #: ../wp-slimstat.php:432
5483
  #, php-format
5484
  msgid "User %s is blacklisted"
5485
  msgstr ""
5486
 
5487
- #: ../wp-slimstat.php:453
5488
  #, php-format
5489
  msgid "Spammer %s not tracked"
5490
  msgstr ""
5491
 
5492
- #: ../wp-slimstat.php:482
5493
  #, php-format
5494
  msgid "IP address %s is blacklisted"
5495
  msgstr ""
5496
 
5497
- #: ../wp-slimstat.php:511
 
 
 
 
 
 
5498
  #, php-format
5499
  msgid "Country %s is blacklisted"
5500
  msgstr ""
5501
 
5502
- #: ../wp-slimstat.php:520
5503
  msgid "Prefetch requests are ignored"
5504
  msgstr ""
5505
 
5506
- #: ../wp-slimstat.php:536
5507
  msgid "Bot not tracked"
5508
  msgstr ""
5509
 
5510
- #: ../wp-slimstat.php:545
5511
  #, php-format
5512
  msgid "Browser %s is blacklisted"
5513
  msgstr ""
5514
 
5515
- #: ../wp-slimstat.php:1044
 
 
 
 
 
5516
  msgid "Invalid payload string. Try clearing your WordPress cache."
5517
  msgstr ""
5518
 
5519
- #: ../wp-slimstat.php:1055
5520
  msgid "Invalid data signature. Try clearing your WordPress cache."
5521
  msgstr ""
5522
 
5523
- #: ../wp-slimstat.php:1155
 
 
 
 
 
 
5524
  msgid "There was an error downloading the MaxMind Geolite DB:"
5525
  msgstr ""
5526
 
5527
- #: ../wp-slimstat.php:1163 ../wp-slimstat.php:1172
5528
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5529
  msgstr ""
5530
 
5531
- #: ../wp-slimstat.php:1167
5532
  msgid "Function gzopen not defined. Aborting."
5533
  msgstr ""
5534
 
5535
- #: ../wp-slimstat.php:1177
5536
- msgid "There was an error opening the unzipped MaxMind Geolite DB."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5537
  msgstr ""
5538
 
5539
- #: ../wp-slimstat.php:1648
5540
  msgid "Optional filters"
5541
  msgstr ""
5542
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2019-04-22 13:10-0400\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: camu <support@wp-slimstat.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.2.1\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPathExcluded-0: ../admin/update-checker\n"
18
  "X-Poedit-SearchPathExcluded-1: ../admin/js\n"
19
 
20
+ #: ../admin/config/index.php:22 ../admin/config/index.php:50
21
+ #: ../admin/config/index.php:75
22
  msgid ""
23
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
24
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
28
  msgid "Read access: username not found"
29
  msgstr ""
30
 
31
+ #: ../admin/config/index.php:65
32
  msgid "Config access: username not found"
33
  msgstr ""
34
 
35
+ #: ../admin/config/index.php:84
36
  msgid "Basic"
37
  msgstr ""
38
 
39
+ #: ../admin/config/index.php:86 ../admin/config/index.php:108
40
  msgid "Tracker"
41
  msgstr ""
42
 
43
+ #: ../admin/config/index.php:87
44
  msgid "Enable Tracking"
45
  msgstr ""
46
 
47
+ #: ../admin/config/index.php:87
48
  msgid "Turn the tracker on or off, while keeping the reports accessible."
49
  msgstr ""
50
 
51
+ #: ../admin/config/index.php:88
52
  msgid "Tracking Mode"
53
  msgstr ""
54
 
55
+ #: ../admin/config/index.php:88
56
  msgid ""
57
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
58
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
61
  "spammers, search engines and other crawlers</strong> will not be tracked."
62
  msgstr ""
63
 
64
+ #: ../admin/config/index.php:88
65
  msgid "Client"
66
  msgstr ""
67
 
68
+ #: ../admin/config/index.php:88
69
  msgid "Server"
70
  msgstr ""
71
 
72
+ #: ../admin/config/index.php:89
73
  msgid "Track Client Info"
74
  msgstr ""
75
 
76
+ #: ../admin/config/index.php:89
77
  msgid ""
78
+ "If this option is turned off, the tracker will not be collecting information "
79
+ "such as screen resolution, outbound links, downloads, etc. This option is "
80
+ "ignored if Tracking Mode is set to Client."
 
 
81
  msgstr ""
82
 
83
+ #: ../admin/config/index.php:90
84
  msgid "Track Admin Pages"
85
  msgstr ""
86
 
87
+ #: ../admin/config/index.php:90
88
  msgid "Enable this option to track your users' activity within the admin."
89
  msgstr ""
90
 
91
+ #: ../admin/config/index.php:92
92
  msgid "WordPress Integration"
93
  msgstr ""
94
 
95
+ #: ../admin/config/index.php:93
96
  msgid "Dashboard Widgets"
97
  msgstr ""
98
 
99
+ #: ../admin/config/index.php:93
100
  msgid ""
101
  "Enable this option if you want to add reports to your WordPress Dashboard. "
102
  "Use the Customizer to choose which ones to display."
103
  msgstr ""
104
 
105
+ #: ../admin/config/index.php:94
106
  msgid "Menu Position"
107
  msgstr ""
108
 
109
+ #: ../admin/config/index.php:94
110
  msgid ""
111
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
112
  "admin bar (if visible)."
113
  msgstr ""
114
 
115
+ #: ../admin/config/index.php:94
116
  msgid "Side"
117
  msgstr ""
118
 
119
+ #: ../admin/config/index.php:94
120
  msgid "Bar"
121
  msgstr ""
122
 
123
+ #: ../admin/config/index.php:95
124
+ msgid "Report Interval"
125
  msgstr ""
126
 
127
+ #: ../admin/config/index.php:95
128
  msgid ""
129
+ "Enter the time range, in days, that should be used to count the number of "
130
+ "pageviews on Posts/Pages (see option here below) and for the Default Time "
131
+ "Span option under the Reports tab."
132
  msgstr ""
133
 
134
+ #: ../admin/config/index.php:96
135
+ msgid "Posts and Pages"
136
  msgstr ""
137
 
138
+ #: ../admin/config/index.php:96
139
  msgid ""
140
+ "Add a new column to the Edit Posts/Pages screens, with the number of hits "
141
+ "per post within the timeframe specified here below."
142
  msgstr ""
143
 
144
+ #: ../admin/config/index.php:98
145
  msgid "Report Type"
146
  msgstr ""
147
 
148
+ #: ../admin/config/index.php:98
149
  msgid ""
150
  "Select what kind of information you would like to see displayed on your "
151
  "Posts admin screen. Hits counts all the pageviews regardless of the user, "
152
  "(unique) IPs counts only one hit per IP in the given time range."
153
  msgstr ""
154
 
155
+ #: ../admin/config/index.php:98 ../admin/view/wp-slimstat-db.php:115
156
+ #: ../admin/view/wp-slimstat-db.php:906 ../admin/view/wp-slimstat-db.php:1157
157
+ #: ../admin/view/wp-slimstat-db.php:1163 ../admin/view/wp-slimstat-db.php:1169
158
+ #: ../admin/view/wp-slimstat-db.php:1175 ../admin/view/wp-slimstat-db.php:1181
159
+ #: ../admin/view/wp-slimstat-db.php:1187 ../admin/view/wp-slimstat-db.php:1193
160
+ #: ../admin/view/wp-slimstat-reports.php:1174
161
+ #: ../admin/view/wp-slimstat-reports.php:1178
162
+ #: ../admin/view/wp-slimstat-reports.php:1409
 
 
 
163
  msgid "Hits"
164
  msgstr ""
165
 
166
+ #: ../admin/config/index.php:98
167
  msgid "IPs"
168
  msgstr ""
169
 
170
+ #: ../admin/config/index.php:99
171
  msgid "Hide Add-ons"
172
  msgstr ""
173
 
174
+ #: ../admin/config/index.php:99
175
  msgid ""
176
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
177
  "from the list of plugins in WordPress. Please note that you will still "
178
  "receive updates for hidden add-ons."
179
  msgstr ""
180
 
181
+ #: ../admin/config/index.php:101
182
  msgid "Database"
183
  msgstr ""
184
 
185
+ #: ../admin/config/index.php:102
186
  msgid "Retain data for"
187
  msgstr ""
188
 
189
+ #: ../admin/config/index.php:102
190
  msgid ""
191
  "Clean-up log entries older than the number of days specified here above. "
192
+ "Enter <strong>0</strong> (number zero) if you want to preserve your data in "
193
+ "the main table (neither archive it nor delete it) regardless of its age."
194
  msgstr ""
195
 
196
+ #: ../admin/config/index.php:102
197
  msgid "Next clean-up on"
198
  msgstr ""
199
 
200
+ #: ../admin/config/index.php:102
201
  #, php-format
202
  msgid ""
203
  "Entries logged on or before %s will be archived or deleted according to the "
204
  "option here below."
205
  msgstr ""
206
 
207
+ #: ../admin/config/index.php:102 ../admin/view/wp-slimstat-db.php:102
208
+ #: ../admin/view/wp-slimstat-db.php:691
 
209
  msgid "days"
210
  msgstr ""
211
 
212
+ #: ../admin/config/index.php:103
213
  msgid "Archive records"
214
  msgstr ""
215
 
216
+ #: ../admin/config/index.php:103
217
  msgid ""
218
  "If DB space is not an issue, you can decide to archive older records in "
219
  "another table, instead of deleting them. This way performance is preserved, "
223
  "is uninstalled. Make sure to backup your data before you proceed."
224
  msgstr ""
225
 
226
+ #: ../admin/config/index.php:110
227
+ msgid "Privacy and Data Protection"
228
+ msgstr ""
229
+
230
+ #: ../admin/config/index.php:111
231
+ msgid "Enable Privacy Mode"
232
+ msgstr ""
233
+
234
+ #: ../admin/config/index.php:111
235
+ msgid ""
236
+ "Mask your visitors' IP addresses to comply with European Privacy Laws. This "
237
+ "feature will turn the final part of each IP address into a ZERO. Based on "
238
+ "our understanding of the various privacy guidelines, this is enough to "
239
+ "comply with the existing regulations."
240
+ msgstr ""
241
+
242
+ #: ../admin/config/index.php:112
243
+ msgid "DNT Header"
244
+ msgstr ""
245
+
246
+ #: ../admin/config/index.php:112
247
+ msgid ""
248
+ "The <a href='https://en.wikipedia.org/wiki/Do_Not_Track' target='_blank'>Do "
249
+ "Not Track (DNT)</a> header is the proposed HTTP header field DNT that "
250
+ "requests that a web application disable either its tracking or cross-site "
251
+ "user tracking (the ambiguity remains unresolved) of an individual user. You "
252
+ "can decide to ignore this header and track any pageview regardless of the "
253
+ "headers sent by the browser."
254
+ msgstr ""
255
+
256
+ #: ../admin/config/index.php:113
257
+ msgid "Set Cookie"
258
+ msgstr ""
259
+
260
+ #: ../admin/config/index.php:113
261
+ msgid ""
262
+ "Disable this option if, for legal or security reasons, you do not want "
263
+ "Slimstat to assign a <a href=\"https://en.wikipedia.org/wiki/HTTP_cookie\" "
264
+ "target=\"_blank\">cookie</a> to your visitors. Please note that, by "
265
+ "deactivating this feature, Slimstat will not keep track of returning "
266
+ "visitors and sessions."
267
+ msgstr ""
268
+
269
+ #: ../admin/config/index.php:114
270
+ msgid "Allow Opt-out"
271
+ msgstr ""
272
+
273
+ #: ../admin/config/index.php:114
274
+ msgid ""
275
+ "The European <a href='https://en.wikipedia.org/wiki/"
276
+ "General_Data_Protection_Regulation' target='_blank'>General Data Protection "
277
+ "Regulation (GDPR)</a> requires website owners to provide a way for their "
278
+ "visitors to opt-out of tracking. If enabled, the message here below will be "
279
+ "displayed to all users who don't have the corresponding cookie set. A notice "
280
+ "will be recorded under Settings > Maintenance every time a pageview is "
281
+ "ignored because the corresponding visitor has opted out of tracking."
282
+ msgstr ""
283
+
284
+ #: ../admin/config/index.php:115
285
+ msgid "Opt-out Message"
286
+ msgstr ""
287
+
288
+ #: ../admin/config/index.php:115
289
+ msgid ""
290
+ "In order to provide maximum flexibility to all site owners, we decided to "
291
+ "give you full control over the message and its layout, by allowing you to "
292
+ "specify the exact HTML markup that should be displayed on your website. Feel "
293
+ "free to customize this code to match your website styles and layout. Use the "
294
+ "two placeholders <code>{{accept_url}}</code> and <code>{{deny_url}}</code> "
295
+ "for the corresponding links, with the following meaning: Accept = allow "
296
+ "tracking, Deny = do not allow tracking."
297
+ msgstr ""
298
+
299
+ #: ../admin/config/index.php:116
300
+ msgid "Opt-out Cookies"
301
+ msgstr ""
302
+
303
+ #: ../admin/config/index.php:116
304
+ msgid ""
305
+ "If you're already using another solution to record and track opt-out choices "
306
+ "made by your users, and it sets its own cookie to remember their selection, "
307
+ "you can enter the cookie names and values in this field to let Slimstat "
308
+ "leverage that information as well. Please use the following format: "
309
+ "<code>cookie_name=value</code>, where 'value' is what is used to remember "
310
+ "that the user has chosen to <strong>not</strong> be tracked."
311
+ msgstr ""
312
+
313
+ #: ../admin/config/index.php:117
314
+ msgid "Opt-in Cookies"
315
+ msgstr ""
316
+
317
+ #: ../admin/config/index.php:117
318
+ msgid ""
319
+ "Similarly to the option here above, you can instruct Slimstat to only track "
320
+ "visitors that have provided their consent (opted-in). Please use the "
321
+ "following format: <code>cookie_name=value</code>, where 'value' is what is "
322
+ "used to remember that the user has chosen <strong>to be</strong> tracked."
323
+ msgstr ""
324
+
325
+ #: ../admin/config/index.php:120
326
  msgid "Link Tracking"
327
  msgstr ""
328
 
329
+ #: ../admin/config/index.php:121
330
  msgid "Do Not Track"
331
  msgstr ""
332
 
333
+ #: ../admin/config/index.php:121
334
  msgid ""
335
  "Slimstat will ignore links marked with one of these class names, <em>rel</"
336
  "em> attributes or whose <em>href</em> attribute contains one of these "
339
  "remove it from this list, some features might not work as expected."
340
  msgstr ""
341
 
342
+ #: ../admin/config/index.php:122
343
  msgid "Downloads"
344
  msgstr ""
345
 
346
+ #: ../admin/config/index.php:122
347
  msgid ""
348
  "List all the file extensions that you want to be treated as Downloads. "
349
  "Please note that links pointing to external resources (i.e. PDFs on an "
352
  "below."
353
  msgstr ""
354
 
355
+ #: ../admin/config/index.php:123
356
  msgid "Same-Domain Referrers"
357
  msgstr ""
358
 
359
+ #: ../admin/config/index.php:123
360
  msgid ""
361
  "By default, when the domain of the referrer for a given page view is the "
362
  "same as the current site, that information is not tracked to save space in "
365
  "another, as they are technically \"separate\" websites."
366
  msgstr ""
367
 
368
+ #: ../admin/config/index.php:125
369
  msgid "Advanced Options"
370
  msgstr ""
371
 
372
+ #: ../admin/config/index.php:126
373
+ msgid "Geolocation Precision"
374
  msgstr ""
375
 
376
+ #: ../admin/config/index.php:126
377
+ msgid ""
378
+ "When Slimstat determines your visitors' Country of origin, it uses a third-"
379
+ "party data file <a href='https://dev.maxmind.com/geoip/geoip2/geolite2/' "
380
+ "target='_blank'>provided by MaxMind</a>. They offer two precision levels: "
381
+ "country and city. By default, Slimstat will install the smaller one "
382
+ "(country), and you can decide to use the other one, if you don't mind its 60 "
383
+ "Mb average size. After you change this option, please <strong>go to the "
384
+ "Maintenance tab</strong> and reload (uninstall/install) the MaxMind GeoLite "
385
+ "DB by clicking on the corresponding button."
386
  msgstr ""
387
 
388
+ #: ../admin/config/index.php:126
389
+ msgid "Country"
390
+ msgstr ""
391
+
392
+ #: ../admin/config/index.php:126 ../admin/view/wp-slimstat-db.php:54
393
+ msgid "City"
394
+ msgstr ""
395
+
396
+ #: ../admin/config/index.php:127
397
  msgid "Session Duration"
398
  msgstr ""
399
 
400
+ #: ../admin/config/index.php:127
401
  msgid ""
402
  "How many seconds should a human session last? Google Analytics sets it to "
403
  "1800 seconds."
404
  msgstr ""
405
 
406
+ #: ../admin/config/index.php:127 ../admin/config/index.php:192
407
  msgid "seconds"
408
  msgstr ""
409
 
410
+ #: ../admin/config/index.php:128
411
  msgid "Extend Session"
412
  msgstr ""
413
 
414
+ #: ../admin/config/index.php:128
415
  msgid "Extend the duration of a session each time the user visits a new page."
416
  msgstr ""
417
 
418
+ #: ../admin/config/index.php:129
419
  msgid "Enable CDN"
420
  msgstr ""
421
 
422
+ #: ../admin/config/index.php:129
423
  msgid ""
424
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
425
  "by serving our tracking code from their fast and reliable network (free "
426
  "service)."
427
  msgstr ""
428
 
429
+ #: ../admin/config/index.php:130
430
+ msgid "Relative Ajax"
431
+ msgstr ""
432
+
433
+ #: ../admin/config/index.php:130
434
+ msgid ""
435
+ "If you are experiencing issues related to the header field X-Requested-With "
436
+ "not being allowed by Access-Control-Allow-Headers in preflight response (or "
437
+ "similar), try enabling this option to make that <code>admin-ajax.php</code> "
438
+ "URL relative."
439
+ msgstr ""
440
+
441
+ #: ../admin/config/index.php:132
442
  msgid "External Pages"
443
  msgstr ""
444
 
445
+ #: ../admin/config/index.php:133
446
  msgid ""
447
  "Add the following code to all the non-WP pages you want to track, right "
448
  "before the closing BODY tag. Please make sure to change the protocol of all "
449
  "the URLs to HTTPS, if you external site is served over a secure channel."
450
  msgstr ""
451
 
452
+ #: ../admin/config/index.php:143
453
  msgid "Allow Domains"
454
  msgstr ""
455
 
456
+ #: ../admin/config/index.php:143
457
  msgid ""
458
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
459
  "header is present on the requested resource, when using the external "
464
  "implications of allowing CORS requests."
465
  msgstr ""
466
 
467
+ #: ../admin/config/index.php:148
468
  msgid "Filters"
469
  msgstr ""
470
 
471
+ #: ../admin/config/index.php:150
472
+ msgid "Profiling"
473
  msgstr ""
474
 
475
+ #: ../admin/config/index.php:151
476
+ msgid "Track WP Users"
477
  msgstr ""
478
 
479
+ #: ../admin/config/index.php:151
480
+ msgid "Enable this option to track logged in users."
 
 
 
 
 
 
481
  msgstr ""
482
 
483
+ #: ../admin/config/index.php:152
484
+ msgid "Ignore Spammers"
485
  msgstr ""
486
 
487
+ #: ../admin/config/index.php:152
488
  msgid ""
489
+ "Enable this option if you don't want to track visits from users identified "
490
+ "as spammers by third-party tools like Akismet. Pageviews generated by users "
491
+ "whose comments are later marked as spam, will also be removed from the "
492
+ "database."
 
493
  msgstr ""
494
 
495
+ #: ../admin/config/index.php:153
496
+ msgid "Ignore Bots"
497
  msgstr ""
498
 
499
+ #: ../admin/config/index.php:153
500
  msgid ""
501
+ "Turn on this feature if you want to have the accuracy level of server-side "
502
+ "tracking, but not the inconvenience of getting your database clogged with "
503
+ "pageviews generated by crawlers, spiders, search engine bots, etc. Please "
504
+ "note that in Client mode, bots are ignored regardless of this setting."
505
  msgstr ""
506
 
507
+ #: ../admin/config/index.php:154
508
+ msgid "Ignore Prefetch Requests"
509
  msgstr ""
510
 
511
+ #: ../admin/config/index.php:154
512
+ msgid ""
513
+ "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
514
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
515
+ "target='_blank'>Link Prefetching functionality</a>."
516
  msgstr ""
517
 
518
+ #: ../admin/config/index.php:155
519
+ msgid "User Properties"
 
 
 
 
520
  msgstr ""
521
 
522
+ #: ../admin/config/index.php:156
523
+ msgid "Usernames"
524
  msgstr ""
525
 
526
+ #: ../admin/config/index.php:156
527
  msgid ""
528
+ "List all the usernames you don't want to track. Please be aware that spaces "
529
+ "are <em>not</em> ignored and that usernames are case sensitive. Wildcards: "
530
+ "<code>*</code> matches 'any string, including the empty string', <code>!</"
531
+ "code> matches 'any character'. For example, <code>user*</code> will match "
532
+ "user12 and userfoo, <code>u*100</code> will match user100 and uber100, "
533
+ "<code>user!0</code> will match user10 and user90."
534
  msgstr ""
535
 
536
+ #: ../admin/config/index.php:157
537
+ msgid "IP Addresses"
538
  msgstr ""
539
 
540
+ #: ../admin/config/index.php:157
541
  msgid ""
542
+ "List all the IP addresses you don't want to track. Each subnet <strong>must</"
543
+ "strong> be defined using the <a href='https://www.iplocation.net/subnet-"
544
+ "mask' target='_blank'>CIDR notation</a> (i.e. <em>192.168.0.0/24</em>). This "
545
+ "filter applies both to the public IP and the originating IP, if available. "
546
+ "Using the CIDR notation, you will use octets to determine the subnet, so for "
547
+ "example 54.0.0.0/8 means that the first number is represented by 8 bits, "
548
+ "hence 8 after the slash. Then the second number would be another 8 bits, so "
549
+ "you would write 54.12.0.0/16 (16 = 8 + 8), and you could do the same for the "
550
+ "third number, for example 54.12.34.0/24 (24 = 8 + 8 + 8)."
551
  msgstr ""
552
 
553
+ #: ../admin/config/index.php:158
554
  msgid "Countries"
555
  msgstr ""
556
 
557
+ #: ../admin/config/index.php:158
558
  msgid ""
559
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
560
  "track."
561
  msgstr ""
562
 
563
+ #: ../admin/config/index.php:159
564
  msgid "User Agents"
565
  msgstr ""
566
 
567
+ #: ../admin/config/index.php:159
568
  msgid ""
569
  "Browsers (user agents) you don't want to track. You can specify the "
570
  "browser's version adding a slash after the name (i.e. <em>Firefox/3.6</"
574
  "and IE/8.0. Strings are case-insensitive."
575
  msgstr ""
576
 
577
+ #: ../admin/config/index.php:160
578
+ msgid "Operating Systems"
579
  msgstr ""
580
 
581
+ #: ../admin/config/index.php:160
582
  msgid ""
583
+ "Operating system codes you don't want to track. Please refer to <a "
584
+ "href='https://slimstat.freshdesk.com/solution/articles/12000031504-what-are-"
585
+ "the-operating-system-codes-used-by-slimstat-' target='_blank'>this page</a> "
586
+ "in our knowledge base to learn more about what codes you can use. Usual "
587
+ "rules for using wildcards apply (see fields here above)."
588
  msgstr ""
589
 
590
+ #: ../admin/config/index.php:161
591
+ msgid "Capabilities"
592
  msgstr ""
593
 
594
+ #: ../admin/config/index.php:161
595
+ msgid ""
596
+ "Users having at least one of the <a href='http://codex.wordpress.org/"
597
+ "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
598
+ "will not be tracked. Capabilities are case-insensitive."
599
  msgstr ""
600
 
601
+ #: ../admin/config/index.php:163
602
+ msgid "Page Properties"
603
  msgstr ""
604
 
605
+ #: ../admin/config/index.php:164
606
+ msgid "Permalinks"
607
  msgstr ""
608
 
609
+ #: ../admin/config/index.php:164
610
  msgid ""
611
+ "List all the URLs on your website that you don't want to track. Don't "
612
+ "include the domain name: <em>/about, ?p=1</em>, etc. Wildcards: <code>*</"
613
+ "code> matches 'any string, including the empty string', <code>!</code> "
614
+ "matches 'any character'. For example, <code>/abou*</code> will match /about "
615
+ "and /abound, <code>/abo*t</code> will match /aboundant and /about, <code>/"
616
+ "abo!t</code> will match /about and /abort. Strings are case-insensitive."
617
+ msgstr ""
618
+
619
+ #: ../admin/config/index.php:165
620
+ msgid "Referring Sites"
621
+ msgstr ""
622
+
623
+ #: ../admin/config/index.php:165
624
+ msgid ""
625
+ "Referring URLs that you don't want to track: <code>http://mysite.com*</"
626
+ "code>, <code>*/ignore-me-please</code>, etc. Wildcards: <code>*</code> "
627
+ "matches 'any string, including the empty string', <code>!</code> matches "
628
+ "'any character'. Strings are case-insensitive. Please include either a "
629
+ "wildcard or the protocol you want to filter (http://, https://)."
630
+ msgstr ""
631
+
632
+ #: ../admin/config/index.php:166
633
+ msgid "Content Types"
634
+ msgstr ""
635
+
636
+ #: ../admin/config/index.php:166
637
+ msgid ""
638
+ "Slimstat categorizes pageviews by the associated WordPress content type: "
639
+ "post, page, attachment, tag, 404, taxonomy, author, archive, search, feed, "
640
+ "login and others. You can use this field to avoid tracking pages whose "
641
+ "content type matches the ones you set here below."
642
  msgstr ""
643
 
644
+ #: ../admin/config/index.php:171 ../admin/config/index.php:208
645
  msgid "Reports"
646
  msgstr ""
647
 
648
+ #: ../admin/config/index.php:173
649
+ msgid "Data Formats and Conversion"
650
  msgstr ""
651
 
652
+ #: ../admin/config/index.php:174
653
  msgid "Number Format"
654
  msgstr ""
655
 
656
+ #: ../admin/config/index.php:174
657
  msgid "Choose the number format you want to use for your reports."
658
  msgstr ""
659
 
660
+ #: ../admin/config/index.php:175
661
  msgid "Date Format"
662
  msgstr ""
663
 
664
+ #: ../admin/config/index.php:175
665
  msgid ""
666
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
667
  "Format</a> to use when displaying a pageview's date."
668
  msgstr ""
669
 
670
+ #: ../admin/config/index.php:176
671
  msgid "Time Format"
672
  msgstr ""
673
 
674
+ #: ../admin/config/index.php:176
675
  msgid ""
676
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
677
  "Format</a> to use when displaying a pageview's time."
678
  msgstr ""
679
 
680
+ #: ../admin/config/index.php:177
681
  msgid "Use Display Name"
682
  msgstr ""
683
 
684
+ #: ../admin/config/index.php:177
685
  msgid ""
686
  "By default, users are listed by their usernames. Use this option to "
687
  "visualize their display names instead."
688
  msgstr ""
689
 
690
+ #: ../admin/config/index.php:178
691
  msgid "Use Titles"
692
  msgstr ""
693
 
694
+ #: ../admin/config/index.php:178
695
  msgid ""
696
  "Slimstat converts your permalinks into post, page and category titles. "
697
  "Disable this feature if you need to see the URL in your reports."
698
  msgstr ""
699
 
700
+ #: ../admin/config/index.php:179
701
  msgid "Convert IP Addresses"
702
  msgstr ""
703
 
704
+ #: ../admin/config/index.php:179
705
  msgid "Display provider names instead of IP addresses."
706
  msgstr ""
707
 
708
+ #: ../admin/config/index.php:181
709
  msgid "Functionality"
710
  msgstr ""
711
 
712
+ #: ../admin/config/index.php:182
713
  msgid "Async Mode"
714
  msgstr ""
715
 
716
+ #: ../admin/config/index.php:182
717
  msgid ""
718
  "Activate this feature if your reports take a while to load. It breaks down "
719
  "the load on your server into multiple requests, thus avoiding memory issues "
720
  "and performance problems."
721
  msgstr ""
722
 
723
+ #: ../admin/config/index.php:183
724
+ msgid "Default Time Span"
725
+ msgstr ""
726
+
727
+ #: ../admin/config/index.php:183
728
+ msgid ""
729
+ "Determine what is the default time period for calculating all the data in "
730
+ "each report: current month or past given number of days. The number of days "
731
+ "is defined under Basic > Report Interval. You can always use the time filter "
732
+ "dropdown to customize this value even further."
733
+ msgstr ""
734
+
735
+ #: ../admin/config/index.php:184
736
  msgid "Expand Details"
737
  msgstr ""
738
 
739
+ #: ../admin/config/index.php:184
740
  msgid "Expand each row's details by default, insted of on mousehover."
741
  msgstr ""
742
 
743
+ #: ../admin/config/index.php:185 ../admin/config/index.php:193
744
  msgid "Rows to Display"
745
  msgstr ""
746
 
747
+ #: ../admin/config/index.php:185
748
  msgid "Specify the number of items in each report."
749
  msgstr ""
750
 
751
+ #: ../admin/config/index.php:186 ../admin/view/wp-slimstat-db.php:127
752
  msgid "Max Results"
753
  msgstr ""
754
 
755
+ #: ../admin/config/index.php:186
756
  msgid ""
757
  "Decide how many records should be retrieved from the database in total. "
758
  "Depending on your server configuration, you may want to fine tune this value "
759
  "to avoid exceeding your PHP memory limit."
760
  msgstr ""
761
 
762
+ #: ../admin/config/index.php:187
763
  msgid "IP Lookup"
764
  msgstr ""
765
 
766
+ #: ../admin/config/index.php:187
767
  msgid ""
768
  "Customize the Geolocation service to be used in the reports. Default: "
769
  "<code>http://www.infosniper.net/?ip_address=</code>"
770
  msgstr ""
771
 
772
+ #: ../admin/config/index.php:188
773
  msgid "Mozscape Access ID"
774
  msgstr ""
775
 
776
+ #: ../admin/config/index.php:188
777
  msgid ""
778
  "Get accurate rankings for your website through the free <a href=\"https://"
779
  "moz.com/community/join?redirect=/products/api/keys\" target=\"_blank"
781
  "started. Then enter your personal identification code here."
782
  msgstr ""
783
 
784
+ #: ../admin/config/index.php:189
785
  msgid "Mozscape Secret Key"
786
  msgstr ""
787
 
788
+ #: ../admin/config/index.php:189
789
  msgid ""
790
  "Do not share your secret key with anyone or they will be able to make API "
791
  "requests on your account!"
792
  msgstr ""
793
 
794
+ #: ../admin/config/index.php:191
795
+ msgid "Access Log and World Map"
796
  msgstr ""
797
 
798
+ #: ../admin/config/index.php:192
799
  msgid "Auto Refresh"
800
  msgstr ""
801
 
802
+ #: ../admin/config/index.php:192
803
  msgid ""
804
  "Enable the Live View, which refreshes the Access Log every X seconds. Enter "
805
  "<strong>0</strong> (number zero) to deactivate this feature."
806
  msgstr ""
807
 
808
+ #: ../admin/config/index.php:193
809
  msgid "Specify the number of items in the Access Log."
810
  msgstr ""
811
 
812
+ #: ../admin/config/index.php:194
813
+ msgid "Map Data Points"
814
+ msgstr ""
815
+
816
+ #: ../admin/config/index.php:194
817
+ msgid ""
818
+ "Customize the maximum number of dots displayed on the world map. Please note "
819
+ "that large numbers might increase the amount of time needed to render the "
820
+ "map."
821
+ msgstr ""
822
+
823
+ #: ../admin/config/index.php:196
824
+ msgid "Miscellaneous"
825
+ msgstr ""
826
+
827
+ #: ../admin/config/index.php:197
828
  msgid "Custom CSS"
829
  msgstr ""
830
 
831
+ #: ../admin/config/index.php:197
832
  msgid ""
833
  "Paste here your custom stylesheet to personalize the way your reports look. "
834
  "<a href='https://slimstat.freshdesk.com/support/solutions/"
837
  "a> for more information on how to use this setting."
838
  msgstr ""
839
 
840
+ #: ../admin/config/index.php:198
841
  msgid "Chart Colors"
842
  msgstr ""
843
 
844
+ #: ../admin/config/index.php:198
845
  msgid ""
846
  "Customize the look and feel of your charts by assigning personalized colors "
847
  "to each metric. List 4 hex colors, strictly in the following order: metric 1 "
849
  "example: <code>#ccc, #999, #bbcc44, #21759b</code>."
850
  msgstr ""
851
 
852
+ #: ../admin/config/index.php:199
853
+ msgid "Comparison Chart"
854
+ msgstr ""
855
+
856
+ #: ../admin/config/index.php:199
857
+ msgid ""
858
+ "Disable this option if you find the four line charts confusing, and prefer "
859
+ "seeing only the selected time range."
860
+ msgstr ""
861
+
862
+ #: ../admin/config/index.php:200
863
  msgid "Show User Agent"
864
  msgstr ""
865
 
866
+ #: ../admin/config/index.php:200
867
  msgid ""
868
  "Choose if you want to see the browser name or a complete user agent string "
869
+ "when hovering over each browser icon."
870
  msgstr ""
871
 
872
+ #: ../admin/config/index.php:201
873
  msgid "Enable SOV"
874
  msgstr ""
875
 
876
+ #: ../admin/config/index.php:201
877
  msgid ""
878
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
879
  "the subject, object, and verb of a sentence appear in that order, like in "
880
  "Japanese."
881
  msgstr ""
882
 
883
+ #: ../admin/config/index.php:206
884
  msgid "Access Control"
885
  msgstr ""
886
 
887
+ #: ../admin/config/index.php:209
888
  msgid "Restrict Authors"
889
  msgstr ""
890
 
891
+ #: ../admin/config/index.php:209
892
  msgid ""
893
  "Enable this option if you want your authors to only see stats related to "
894
  "their own content."
895
  msgstr ""
896
 
897
+ #: ../admin/config/index.php:210 ../admin/config/index.php:214
898
+ #: ../admin/config/index.php:218
899
  msgid "Capability"
900
  msgstr ""
901
 
902
+ #: ../admin/config/index.php:210
903
  msgid ""
904
  "Specify the minimum <a href='http://codex.wordpress.org/"
905
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
909
  "In this case, the list has precedence over the capability."
910
  msgstr ""
911
 
912
+ #: ../admin/config/index.php:211 ../admin/config/index.php:215
913
+ #: ../admin/config/index.php:219
914
  msgid "Whitelist"
915
  msgstr ""
916
 
917
+ #: ../admin/config/index.php:211
918
  msgid ""
919
  "List all the users who should have access to the reports. Administrators are "
920
  "implicitly allowed, so you don't need to list them in here. Usernames are "
921
  "case sensitive."
922
  msgstr ""
923
 
924
+ #: ../admin/config/index.php:213
925
+ msgid "Customizer"
926
+ msgstr ""
927
+
928
+ #: ../admin/config/index.php:214
929
+ msgid ""
930
+ "Specify the minimum <a href='http://codex.wordpress.org/"
931
+ "Roles_and_Capabilities' target='_new'>capability</a> needed to be able to "
932
+ "customize the reports layout (default: <code>activate_plugins</code>). If "
933
+ "this field is empty, your users will be permitted to use this features."
934
+ msgstr ""
935
+
936
+ #: ../admin/config/index.php:215
937
+ msgid ""
938
+ "List all the users who should be allowed to customize their report layout. "
939
+ "Administrators are implicitly allowed, so you don't need to list them in "
940
+ "here. Usernames are case sensitive."
941
+ msgstr ""
942
+
943
+ #: ../admin/config/index.php:217 ../admin/config/index.php:245
944
+ #: ../admin/wp-slimstat-admin.php:634 ../admin/wp-slimstat-admin.php:680
945
+ #: ../admin/wp-slimstat-admin.php:683
946
  msgid "Settings"
947
  msgstr ""
948
 
949
+ #: ../admin/config/index.php:218
950
  msgid ""
951
  "Specify the minimum <a href='http://codex.wordpress.org/"
952
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
954
  "can be used to override this option for specific users."
955
  msgstr ""
956
 
957
+ #: ../admin/config/index.php:219
958
  msgid ""
959
  "List all the users who can edit these options. Please be advised that admins "
960
  "<strong>are not</strong> implicitly allowed, so do not forget to include "
961
  "yourself! Usernames are case sensitive."
962
  msgstr ""
963
 
964
+ #: ../admin/config/index.php:221
965
+ msgid "Rest API"
966
+ msgstr ""
967
+
968
+ #: ../admin/config/index.php:222
969
+ msgid "Tokens"
970
+ msgstr ""
971
+
972
+ #: ../admin/config/index.php:222
973
+ msgid ""
974
+ "In order to send requests to <a href='https://slimstat.freshdesk.com/support/"
975
+ "solutions/articles/12000033661-slimstat-rest-api' target='_blank'>the "
976
+ "Slimstat REST API</a>, you will need to pass a valid token to the endpoint "
977
+ "(param ?token=XXX). Using the field here below, you can define as many "
978
+ "tokens as you like, to distribute them to your API users. Please note: treat "
979
+ "these tokens as passwords, as they will grant read access to your reports to "
980
+ "anyone who knows them. Use a service like <a href='https://randomkeygen.com/"
981
+ "#ci_key' target='_blank'>RandomKeyGen.com</a> to generate unique secure "
982
+ "tokens."
983
+ msgstr ""
984
+
985
+ #: ../admin/config/index.php:227
986
  msgid "Maintenance"
987
  msgstr ""
988
 
989
+ #: ../admin/config/index.php:232 ../admin/view/addons.php:35
990
+ #: ../admin/wp-slimstat-admin.php:64
991
  msgid "Add-ons"
992
  msgstr ""
993
 
994
+ #: ../admin/config/index.php:246 ../admin/view/index.php:6
995
  msgid ""
996
  "<strong>AdBlock browser extension detected</strong> - If you see this "
997
  "notice, it means that your browser is not loading our stylesheet and/or "
1017
  msgid "records deleted from your database."
1018
  msgstr ""
1019
 
1020
+ #: ../admin/config/maintenance.php:50 ../admin/config/maintenance.php:57
1021
  msgid "The geolocation database has been uninstalled from your server."
1022
  msgstr ""
1023
 
1024
+ #: ../admin/config/maintenance.php:60
1025
+ msgid ""
1026
+ "The geolocation database could not be removed from your server. Please check "
1027
+ "your folder's permissions and try again."
1028
+ msgstr ""
1029
+
1030
+ #: ../admin/config/maintenance.php:72
1031
  msgid "The geolocation database has been installed on your server."
1032
  msgstr ""
1033
 
1034
+ #: ../admin/config/maintenance.php:80
1035
  msgid "The Browscap data file has been uninstalled from your server."
1036
  msgstr ""
1037
 
1038
+ #: ../admin/config/maintenance.php:83
1039
  msgid ""
1040
  "There was an error deleting the Browscap data folder on your server. Please "
1041
  "check your permissions."
1042
  msgstr ""
1043
 
1044
+ #: ../admin/config/maintenance.php:102
1045
  msgid "Your new Slimstat settings have been imported and installed."
1046
  msgstr ""
1047
 
1048
+ #: ../admin/config/maintenance.php:105
1049
  msgid ""
1050
  "There was an error decoding your settings string. Please verify that it is a "
1051
  "valid serialized string."
1052
  msgstr ""
1053
 
1054
+ #: ../admin/config/maintenance.php:124
 
 
 
 
1055
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1056
  msgstr ""
1057
 
1058
+ #: ../admin/config/maintenance.php:130
1059
  msgid "All the archived records were successfully deleted."
1060
  msgstr ""
1061
 
1062
+ #: ../admin/config/maintenance.php:138
1063
  msgid "All the records were successfully deleted."
1064
  msgstr ""
1065
 
1066
+ #: ../admin/config/maintenance.php:164
1067
  msgid "Troubleshooting"
1068
  msgstr ""
1069
 
1070
+ #: ../admin/config/maintenance.php:167
1071
  msgid "Tracker Error"
1072
  msgstr ""
1073
 
1074
+ #: ../admin/config/maintenance.php:169
1075
  msgid "Reset this error"
1076
  msgstr ""
1077
 
1078
+ #: ../admin/config/maintenance.php:169 ../admin/config/maintenance.php:176
1079
  msgid "So far so good."
1080
  msgstr ""
1081
 
1082
+ #: ../admin/config/maintenance.php:170
1083
  msgid ""
1084
  "The information here above is useful to troubleshoot issues with the "
1085
  "tracker. <strong>Errors</strong> are returned when the tracker could not "
1086
  "record a page view for some reason, and are indicative of some kind of "
1087
+ "malfunction. Please include the message here above when sending a <a href="
1088
+ "\"http://support.wp-slimstat.com\" target=\"_blank\">support request</a>."
1089
  msgstr ""
1090
 
1091
+ #: ../admin/config/maintenance.php:174
1092
  msgid "Tracker Notice"
1093
  msgstr ""
1094
 
1095
+ #: ../admin/config/maintenance.php:176
1096
  msgid "Reset this notice"
1097
  msgstr ""
1098
 
1099
+ #: ../admin/config/maintenance.php:177
1100
  msgid ""
1101
  "The message here above will indicate if a page view was not recorded because "
1102
  "it matched at least one of the conditions you configured in your settings "
1103
  "(filters, blackslists, etc)."
1104
  msgstr ""
1105
 
1106
+ #: ../admin/config/maintenance.php:183
1107
  msgid "Enable SQL Debug"
1108
  msgstr ""
1109
 
1110
+ #: ../admin/config/maintenance.php:186
1111
  msgid ""
1112
  "Display the SQL code used to retrieve the data from the database. Useful to "
1113
  "troubleshoot issues with data consistency or missing pageviews."
1114
  msgstr ""
1115
 
1116
+ #: ../admin/config/maintenance.php:190
1117
  msgid "Disable SQL Debug"
1118
  msgstr ""
1119
 
1120
+ #: ../admin/config/maintenance.php:193
1121
  msgid "Deactivate the SQL output on top of each report."
1122
  msgstr ""
1123
 
1124
+ #: ../admin/config/maintenance.php:198
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1125
  msgid "Data Maintenance"
1126
  msgstr ""
1127
 
1128
+ #: ../admin/config/maintenance.php:201
1129
  msgid "Delete pageviews where"
1130
  msgstr ""
1131
 
1132
+ #: ../admin/config/maintenance.php:215 ../admin/view/wp-slimstat-db.php:76
1133
  msgid "equals"
1134
  msgstr ""
1135
 
1136
+ #: ../admin/config/maintenance.php:216 ../admin/view/wp-slimstat-db.php:77
1137
  msgid "is not equal to"
1138
  msgstr ""
1139
 
1140
+ #: ../admin/config/maintenance.php:217 ../admin/view/wp-slimstat-db.php:78
1141
  msgid "contains"
1142
  msgstr ""
1143
 
1144
+ #: ../admin/config/maintenance.php:218 ../admin/view/wp-slimstat-db.php:79
1145
  msgid "is included in"
1146
  msgstr ""
1147
 
1148
+ #: ../admin/config/maintenance.php:219 ../admin/view/wp-slimstat-db.php:80
1149
  msgid "does not contain"
1150
  msgstr ""
1151
 
1152
+ #: ../admin/config/maintenance.php:220 ../admin/view/wp-slimstat-db.php:81
1153
  msgid "starts with"
1154
  msgstr ""
1155
 
1156
+ #: ../admin/config/maintenance.php:221 ../admin/view/wp-slimstat-db.php:82
1157
  msgid "ends with"
1158
  msgstr ""
1159
 
1160
+ #: ../admin/config/maintenance.php:222 ../admin/view/wp-slimstat-db.php:83
1161
  msgid "sounds like"
1162
  msgstr ""
1163
 
1164
+ #: ../admin/config/maintenance.php:223 ../admin/view/wp-slimstat-db.php:84
1165
  msgid "is greater than"
1166
  msgstr ""
1167
 
1168
+ #: ../admin/config/maintenance.php:224 ../admin/view/wp-slimstat-db.php:85
1169
  msgid "is less than"
1170
  msgstr ""
1171
 
1172
+ #: ../admin/config/maintenance.php:225 ../admin/view/wp-slimstat-db.php:87
1173
  msgid "matches"
1174
  msgstr ""
1175
 
1176
+ #: ../admin/config/maintenance.php:226 ../admin/view/wp-slimstat-db.php:88
1177
  msgid "does not match"
1178
  msgstr ""
1179
 
1180
+ #: ../admin/config/maintenance.php:227 ../admin/view/wp-slimstat-db.php:89
1181
  msgid "is empty"
1182
  msgstr ""
1183
 
1184
+ #: ../admin/config/maintenance.php:228 ../admin/view/wp-slimstat-db.php:90
1185
  msgid "is not empty"
1186
  msgstr ""
1187
 
1188
+ #: ../admin/config/maintenance.php:231 ../admin/view/index.php:31
1189
+ #: ../admin/view/index.php:98
1190
  msgid "Apply"
1191
  msgstr ""
1192
 
1193
+ #: ../admin/config/maintenance.php:232
1194
  msgid ""
1195
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1196
  msgstr ""
1197
 
1198
+ #: ../admin/config/maintenance.php:239
1199
  msgid ""
1200
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1201
  "database?"
1202
  msgstr ""
1203
 
1204
+ #: ../admin/config/maintenance.php:239
1205
  msgid "Delete All Records"
1206
  msgstr ""
1207
 
1208
+ #: ../admin/config/maintenance.php:242
1209
  msgid ""
1210
  "Erase all the information collected so far by Slimstat, but not the archived "
1211
  "records (<code>wp_slim_stats_archive</code>). This operation <strong>does "
1213
  "your records from the archive table."
1214
  msgstr ""
1215
 
1216
+ #: ../admin/config/maintenance.php:248
1217
  msgid ""
1218
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1219
  "archive?"
1220
  msgstr ""
1221
 
1222
+ #: ../admin/config/maintenance.php:248
1223
  msgid "Delete Archive"
1224
  msgstr ""
1225
 
1226
+ #: ../admin/config/maintenance.php:251
1227
  msgid "Erase all the archived records. This operation cannot be undone."
1228
  msgstr ""
1229
 
1230
+ #: ../admin/config/maintenance.php:257
1231
  msgid "Improve Performance"
1232
  msgstr ""
1233
 
1234
+ #: ../admin/config/maintenance.php:261
1235
  msgid ""
1236
  "Please note that you will need about 30% more DB space to store the extra "
1237
  "information required."
1238
  msgstr ""
1239
 
1240
+ #: ../admin/config/maintenance.php:265
1241
  msgid "Save DB Space"
1242
  msgstr ""
1243
 
1244
+ #: ../admin/config/maintenance.php:268
1245
  msgid ""
1246
  "Please note that by removing table indexes, Slimstat's performance will be "
1247
  "affected."
1248
  msgstr ""
1249
 
1250
+ #: ../admin/config/maintenance.php:273
1251
  msgid "External Data Files"
1252
  msgstr ""
1253
 
1254
+ #: ../admin/config/maintenance.php:279
1255
  msgid ""
1256
  "Do you want to download and install the geolocation database from MaxMind's "
1257
  "server?"
1258
  msgstr ""
1259
 
1260
+ #: ../admin/config/maintenance.php:279
1261
  msgid "Install GeoLite DB"
1262
  msgstr ""
1263
 
1264
+ #: ../admin/config/maintenance.php:282
1265
  msgid "Do you want to uninstall the geolocation database?"
1266
  msgstr ""
1267
 
1268
+ #: ../admin/config/maintenance.php:282
1269
  msgid "Uninstall GeoLite DB"
1270
  msgstr ""
1271
 
1272
+ #: ../admin/config/maintenance.php:286
1273
  msgid ""
1274
+ "The <a href='https://dev.maxmind.com/geoip/geoip2/geolite2/' "
1275
+ "target='_blank'>MaxMind GeoLite2 library</a>, which Slimstat uses to "
1276
  "geolocate visitors, is released under the Creative Commons BY-SA 3.0 "
1277
  "license, and cannot be directly bundled with the plugin because of license "
1278
  "incompatibility issues. We are mandated to have the user take an affirmative "
1279
+ "action in order to enable this functionality. If you're experiencing issues, "
1280
+ "please <a href='https://slimstat.freshdesk.com/solution/articles/12000039798-"
1281
+ "how-to-manually-install-the-maxmind-geolocation-data-file-' "
1282
+ "target='_blank'>take a look at our knowledge base</a> to learn how to "
1283
+ "install this file manually."
1284
  msgstr ""
1285
 
1286
+ #: ../admin/config/maintenance.php:293
1287
  msgid ""
1288
  "Do you want to download and install the Browscap data file from our server?"
1289
  msgstr ""
1290
 
1291
+ #: ../admin/config/maintenance.php:293
1292
  msgid "Install Browscap"
1293
  msgstr ""
1294
 
1295
+ #: ../admin/config/maintenance.php:296
1296
  msgid "Do you want to uninstall the Browscap data file?"
1297
  msgstr ""
1298
 
1299
+ #: ../admin/config/maintenance.php:296
1300
  msgid "Uninstall Browscap"
1301
  msgstr ""
1302
 
1303
+ #: ../admin/config/maintenance.php:300
1304
  msgid ""
1305
  "We are contributing to the <a href='http://browscap.org/' "
1306
  "target='_blank'>Browscap Capabilities Project</a>, which we use to decode "
1316
  "questions."
1317
  msgstr ""
1318
 
1319
+ #: ../admin/config/maintenance.php:304
1320
  msgid "Configuration String"
1321
  msgstr ""
1322
 
1323
+ #: ../admin/config/maintenance.php:308
1324
  msgid ""
1325
  "Here below you can find the current configuration string for Slimstat. You "
1326
  "can update your settings by pasting a new string inside the text area and "
1327
  "clicking the Import button."
1328
  msgstr ""
1329
 
1330
+ #: ../admin/config/maintenance.php:313
1331
  msgid "Import"
1332
  msgstr ""
1333
 
1334
+ #: ../admin/config/maintenance.php:314
1335
  msgid "Are you sure you want to OVERWRITE your current settings?"
1336
  msgstr ""
1337
 
1338
+ #: ../admin/config/maintenance.php:319
1339
  msgid "Database Information"
1340
  msgstr ""
1341
 
1342
+ #: ../admin/config/maintenance.php:322
1343
  msgid "Engine"
1344
  msgstr ""
1345
 
1346
+ #: ../admin/config/maintenance.php:326
1347
  msgid "switch to InnoDB"
1348
  msgstr ""
1349
 
1350
+ #: ../admin/config/maintenance.php:337
1351
  msgid "records"
1352
  msgstr ""
1353
 
1354
+ #: ../admin/config/maintenance.php:344
1355
  msgid "Old Tables"
1356
  msgstr ""
1357
 
1358
+ #: ../admin/config/maintenance.php:345
1359
  #, php-format
1360
  msgid ""
1361
  "It looks like your database was upgraded from a version prior to 4.0. Our "
1423
  msgstr ""
1424
 
1425
  #: ../admin/view/index.php:10
1426
+ msgid "Dimension"
1427
  msgstr ""
1428
 
1429
  #: ../admin/view/index.php:35
1430
  msgid "Load"
1431
  msgstr ""
1432
 
1433
+ #: ../admin/view/index.php:61 ../admin/view/wp-slimstat-db.php:888
1434
  msgid "Today"
1435
  msgstr ""
1436
 
1437
+ #: ../admin/view/index.php:62 ../admin/view/wp-slimstat-db.php:891
1438
  msgid "Yesterday"
1439
  msgstr ""
1440
 
1441
+ #: ../admin/view/index.php:63
1442
  msgid "Last 7 Days"
1443
  msgstr ""
1444
 
1445
+ #: ../admin/view/index.php:64
1446
+ msgid "Last 30 Days"
1447
  msgstr ""
1448
 
1449
+ #: ../admin/view/index.php:65
1450
  msgid "Last 90 Days"
1451
  msgstr ""
1452
 
1453
+ #: ../admin/view/index.php:66
1454
+ msgid "Last 365 Days"
1455
  msgstr ""
1456
 
1457
+ #: ../admin/view/index.php:69
1458
  msgid "Date Range"
1459
  msgstr ""
1460
 
1461
+ #: ../admin/view/index.php:72 ../admin/view/wp-slimstat-db.php:98
1462
+ msgid "Hour"
1463
+ msgstr ""
1464
+
1465
+ #: ../admin/view/index.php:75 ../admin/view/wp-slimstat-db.php:99
1466
  msgid "Day"
1467
  msgstr ""
1468
 
1469
+ #: ../admin/view/index.php:79 ../admin/view/wp-slimstat-db.php:100
1470
  msgid "Month"
1471
  msgstr ""
1472
 
1473
+ #: ../admin/view/index.php:87 ../admin/view/wp-slimstat-db.php:101
1474
  msgid "Year"
1475
  msgstr ""
1476
 
1477
+ #: ../admin/view/index.php:93
1478
+ msgid "&plusmn; days"
 
 
 
 
1479
  msgstr ""
1480
 
1481
+ #: ../admin/view/index.php:93
1482
+ msgid ""
1483
+ "To define an interval, enter the number of days (negative to go back in "
1484
+ "time)."
1485
  msgstr ""
1486
 
1487
+ #: ../admin/view/index.php:96
1488
+ msgid "&plusmn; hours"
1489
  msgstr ""
1490
 
1491
+ #: ../admin/view/index.php:107
1492
  msgid "Reset Filters"
1493
  msgstr ""
1494
 
1495
+ #: ../admin/view/index.php:127
1496
  #, php-format
1497
  msgid ""
1498
  "<a href='%s' class='noslimstat'>Install MaxMind's GeoLite DB</a> to "
1499
  "determine your visitors' country of origin."
1500
  msgstr ""
1501
 
1502
+ #: ../admin/view/index.php:131
1503
  #, php-format
1504
  msgid ""
1505
  "Install the Browscap <a href='%s' class='noslimstat'>User Agent Database</a> "
1506
  "to accurately determine your visitors' browser and operating system."
1507
  msgstr ""
1508
 
1509
+ #: ../admin/view/index.php:136
1510
  #, php-format
1511
  msgid ""
1512
+ "A caching plugin might be enabled on your website. Please <a href='%s' "
1513
  "target='_blank' class='noslimstat'>make sure to configure</a> Slimstat "
1514
  "Analytics accordingly, to get accurate information."
1515
  msgstr ""
1516
 
1517
+ #: ../admin/view/layout.php:56
1518
  msgid "Customize and organize your reports"
1519
  msgstr ""
1520
 
1521
+ #: ../admin/view/layout.php:58
1522
  msgid ""
1523
  "Drag and drop report placeholders from one container to another, to "
1524
  "customize the information you want to see right away when you open Slimstat. "
1525
  "Place two or more charts on the same view, clone reports or move them to the "
1526
  "Inactive Reports container for improved performance. It is your website, and "
1527
  "you know how metrics should be combined to get a clear picture of the "
1528
+ "traffic it generates."
1529
+ msgstr ""
1530
+
1531
+ #: ../admin/view/layout.php:61
1532
+ msgid ""
1533
+ "By using the network-wide customizer, all your users will be seeing the same "
1534
+ "layout and will not be able to further customize it."
1535
  msgstr ""
1536
 
1537
  #: ../admin/view/layout.php:64
1538
+ msgid ""
1539
+ "<strong>Note</strong>: if a placeholder is greyed out, it means that the "
1540
+ "corresponding report is currently hidden (Screen Options tab)."
1541
+ msgstr ""
1542
+
1543
+ #: ../admin/view/layout.php:69 ../admin/view/wp-slimstat-reports.php:1780
1544
+ msgid "Reset All"
1545
+ msgstr ""
1546
+
1547
+ #: ../admin/view/layout.php:76
1548
+ msgid "Move to Inactive"
1549
+ msgstr ""
1550
+
1551
+ #: ../admin/view/layout.php:90
1552
  msgid "Clone"
1553
  msgstr ""
1554
 
1555
+ #: ../admin/view/layout.php:94
1556
  msgid "Delete"
1557
  msgstr ""
1558
 
1572
  msgid "Syndication Reader"
1573
  msgstr ""
1574
 
1575
+ #: ../admin/view/right-now.php:71 ../admin/view/wp-slimstat-reports.php:1030
1576
+ #: ../admin/view/wp-slimstat-reports.php:1238
1577
+ #: ../admin/view/wp-slimstat-reports.php:1388
1578
+ #: ../admin/view/wp-slimstat-reports.php:1433
1579
  msgid "No data to display"
1580
  msgstr ""
1581
 
1582
+ #: ../admin/view/right-now.php:112
1583
  msgid "Date and Time"
1584
  msgstr ""
1585
 
1586
  # Unknown
1587
+ #: ../admin/view/right-now.php:123 ../admin/view/wp-slimstat-reports.php:1082
1588
+ #: ../admin/view/wp-slimstat-reports.php:1636 ../wp-slimstat.php:1453
1589
  msgid "c-"
1590
  msgstr "Unknown"
1591
 
1592
+ #: ../admin/view/right-now.php:181 ../admin/view/wp-slimstat-db.php:60
1593
+ #: ../admin/wp-slimstat-admin.php:1139 ../admin/wp-slimstat-admin.php:1179
1594
  msgid "Originating IP"
1595
  msgstr ""
1596
 
1597
+ #: ../admin/view/right-now.php:222 ../admin/view/wp-slimstat-reports.php:1189
1598
+ #: ../admin/view/wp-slimstat-reports.php:1194
1599
+ #: ../admin/view/wp-slimstat-reports.php:1199
1600
+ #: ../admin/view/wp-slimstat-reports.php:1451
1601
  msgid "Open this URL in a new window"
1602
  msgstr ""
1603
 
1604
+ #: ../admin/view/right-now.php:234
1605
  msgid "Local search results page"
1606
  msgstr ""
1607
 
1608
+ #: ../admin/view/right-now.php:243 ../admin/view/wp-slimstat-db.php:40
1609
+ #: ../admin/view/wp-slimstat-reports.php:209
1610
+ #: ../admin/view/wp-slimstat-reports.php:219
1611
+ #: ../admin/wp-slimstat-admin.php:1142 ../admin/wp-slimstat-admin.php:1158
1612
  msgid "Search Terms"
1613
  msgstr ""
1614
 
1615
+ #: ../admin/view/right-now.php:255
1616
  msgid "Server Latency and Page Speed in milliseconds"
1617
  msgstr ""
1618
 
1619
+ #: ../admin/view/right-now.php:255
1620
  msgid "SL"
1621
  msgstr ""
1622
 
1623
+ #: ../admin/view/right-now.php:255
1624
  msgid "PS"
1625
  msgstr ""
1626
 
1627
+ #: ../admin/view/right-now.php:262
1628
  msgid "Time spent on this page"
1629
  msgstr ""
1630
 
1631
+ #: ../admin/view/right-now.php:278
1632
+ msgid "Invalid Referrer"
1633
+ msgstr ""
1634
+
1635
+ #: ../admin/view/right-now.php:279
1636
  msgid "Open this referrer in a new window"
1637
  msgstr ""
1638
 
1639
+ #: ../admin/view/right-now.php:280
1640
  msgid "Content Type"
1641
  msgstr ""
1642
 
1643
+ #: ../admin/view/right-now.php:287
1644
  msgid "Open this outbound link in a new window"
1645
  msgstr ""
1646
 
1647
+ #: ../admin/view/right-now.php:295
1648
  msgid "Delete this entry from the database"
1649
  msgstr ""
1650
 
1651
+ #: ../admin/view/right-now.php:307
1652
  msgid "User Logged In"
1653
  msgstr ""
1654
 
1655
+ #: ../admin/view/right-now.php:317
1656
  msgid "User Logged Out"
1657
  msgstr ""
1658
 
1659
+ #: ../admin/view/wp-slimstat-db.php:37 ../admin/wp-slimstat-admin.php:1155
1660
  msgid "Browser"
1661
  msgstr ""
1662
 
1663
+ #: ../admin/view/wp-slimstat-db.php:38 ../admin/wp-slimstat-admin.php:1156
1664
  msgid "Country Code"
1665
  msgstr ""
1666
 
1667
+ #: ../admin/view/wp-slimstat-db.php:39
1668
  msgid "IP Address"
1669
  msgstr ""
1670
 
1671
+ #: ../admin/view/wp-slimstat-db.php:41 ../admin/wp-slimstat-admin.php:1159
1672
  msgid "Language Code"
1673
  msgstr ""
1674
 
1675
+ #: ../admin/view/wp-slimstat-db.php:42 ../admin/view/wp-slimstat-db.php:110
1676
+ #: ../admin/wp-slimstat-admin.php:1160
1677
  msgid "Operating System"
1678
  msgstr ""
1679
 
1680
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/view/wp-slimstat-db.php:111
1681
+ #: ../admin/wp-slimstat-admin.php:1161
1682
  msgid "Permalink"
1683
  msgstr ""
1684
 
1685
+ #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:112
1686
+ #: ../admin/wp-slimstat-admin.php:1162
1687
  msgid "Referer"
1688
  msgstr ""
1689
 
1690
+ #: ../admin/view/wp-slimstat-db.php:45
1691
  msgid "Visitor's Username"
1692
  msgstr ""
1693
 
1694
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:1145
1695
  msgid "Outbound Link"
1696
  msgstr ""
1697
 
1698
+ #: ../admin/view/wp-slimstat-db.php:47
1699
  msgid "Page Speed"
1700
  msgstr ""
1701
 
1702
+ #: ../admin/view/wp-slimstat-db.php:49
1703
  msgid "-- Advanced filters --"
1704
  msgstr ""
1705
 
1706
+ #: ../admin/view/wp-slimstat-db.php:50
1707
+ #: ../admin/view/wp-slimstat-reports.php:339
1708
  msgid "Browser Capabilities"
1709
  msgstr ""
1710
 
1711
+ #: ../admin/view/wp-slimstat-db.php:51 ../admin/wp-slimstat-admin.php:1174
1712
  msgid "Browser Version"
1713
  msgstr ""
1714
 
1715
+ #: ../admin/view/wp-slimstat-db.php:52 ../admin/wp-slimstat-admin.php:1175
1716
  msgid "Browser Type"
1717
  msgstr ""
1718
 
1719
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1144
1720
  msgid "User Agent"
1721
  msgstr ""
1722
 
1723
+ #: ../admin/view/wp-slimstat-db.php:55
1724
+ #: ../admin/view/wp-slimstat-reports.php:1406
1725
+ msgid "Coordinates"
1726
+ msgstr ""
1727
+
1728
  #: ../admin/view/wp-slimstat-db.php:56
1729
  msgid "Annotations"
1730
  msgstr ""
1733
  msgid "Server Latency"
1734
  msgstr ""
1735
 
1736
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1177
1737
  msgid "Post Author"
1738
  msgstr ""
1739
 
1740
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1178
1741
  msgid "Post Category ID"
1742
  msgstr ""
1743
 
1744
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1180
1745
  msgid "Resource Content Type"
1746
  msgstr ""
1747
 
1761
  msgid "Viewport Size"
1762
  msgstr ""
1763
 
1764
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1182
1765
  msgid "Visit ID"
1766
  msgstr ""
1767
 
1768
+ #: ../admin/view/wp-slimstat-db.php:86
1769
  msgid "is between (x,y)"
1770
  msgstr ""
1771
 
1772
+ #: ../admin/view/wp-slimstat-db.php:97
1773
  msgid "Minute"
1774
  msgstr ""
1775
 
1776
+ #: ../admin/view/wp-slimstat-db.php:103
1777
+ msgid "hours"
1778
  msgstr ""
1779
 
1780
+ #: ../admin/view/wp-slimstat-db.php:104
1781
  msgid "minutes"
1782
  msgstr ""
1783
 
1784
+ #: ../admin/view/wp-slimstat-db.php:105
1785
  msgid "Timestamp"
1786
  msgstr ""
1787
 
1788
+ #: ../admin/view/wp-slimstat-db.php:106
1789
  msgid "Exit Timestamp"
1790
  msgstr ""
1791
 
1792
+ #: ../admin/view/wp-slimstat-db.php:109
1793
  msgid "Language"
1794
  msgstr ""
1795
 
1796
+ #: ../admin/view/wp-slimstat-db.php:113
1797
  msgid "Metric"
1798
  msgstr ""
1799
 
1800
+ #: ../admin/view/wp-slimstat-db.php:114
1801
  msgid "Value"
1802
  msgstr ""
1803
 
1804
+ #: ../admin/view/wp-slimstat-db.php:116
1805
+ msgid "Grouped Value"
1806
+ msgstr ""
1807
+
1808
+ #: ../admin/view/wp-slimstat-db.php:117
1809
+ msgid "Percentage"
1810
+ msgstr ""
1811
+
1812
+ #: ../admin/view/wp-slimstat-db.php:118 ../admin/view/wp-slimstat-db.php:119
1813
  msgid "Notes"
1814
  msgstr ""
1815
 
1816
+ #: ../admin/view/wp-slimstat-db.php:122
1817
  msgid "Event ID"
1818
  msgstr ""
1819
 
1820
+ #: ../admin/view/wp-slimstat-db.php:123
1821
+ #: ../admin/view/wp-slimstat-reports.php:1402
1822
  msgid "Type"
1823
  msgstr ""
1824
 
1825
+ #: ../admin/view/wp-slimstat-db.php:124
1826
  msgid "Event Description"
1827
  msgstr ""
1828
 
1829
+ #: ../admin/view/wp-slimstat-db.php:125
1830
  msgid "Event Coordinates"
1831
  msgstr ""
1832
 
1833
+ #: ../admin/view/wp-slimstat-db.php:128
 
 
 
 
1834
  msgid "Offset"
1835
  msgstr ""
1836
 
1837
+ #: ../admin/view/wp-slimstat-db.php:674
1838
+ msgid "Dataset Size"
1839
  msgstr ""
1840
 
1841
+ #: ../admin/view/wp-slimstat-db.php:676
1842
+ msgid "Total number of records stored in the database."
1843
  msgstr ""
1844
 
1845
+ #: ../admin/view/wp-slimstat-db.php:678
1846
+ msgid "DB Size"
1847
  msgstr ""
1848
 
1849
+ #: ../admin/view/wp-slimstat-db.php:681
1850
+ msgid "Tracking Enabled"
1851
  msgstr ""
1852
 
1853
+ #: ../admin/view/wp-slimstat-db.php:684
1854
+ msgid "Javascript Mode"
1855
  msgstr ""
1856
 
1857
+ #: ../admin/view/wp-slimstat-db.php:687
1858
+ msgid "Tracking Browser Caps"
1859
  msgstr ""
1860
 
1861
+ #: ../admin/view/wp-slimstat-db.php:690
1862
+ msgid "Auto purge"
1863
  msgstr ""
1864
 
1865
+ #: ../admin/view/wp-slimstat-db.php:691 ../admin/wp-slimstat-admin.php:999
1866
+ msgid "Off"
1867
  msgstr ""
1868
 
1869
+ #: ../admin/view/wp-slimstat-db.php:693
1870
+ msgid "Oldest pageview"
1871
  msgstr ""
1872
 
1873
+ #: ../admin/view/wp-slimstat-db.php:694
1874
+ msgid "No visits"
1875
  msgstr ""
1876
 
1877
+ #: ../admin/view/wp-slimstat-db.php:696
1878
+ msgid "Geolocation"
 
 
 
1879
  msgstr ""
1880
 
1881
+ #: ../admin/view/wp-slimstat-db.php:698
1882
+ msgid "Date when the MaxMind Geolocation database was last updated."
 
 
 
 
1883
  msgstr ""
1884
 
1885
+ #: ../admin/view/wp-slimstat-db.php:866 ../admin/view/wp-slimstat-db.php:1114
1886
+ #: ../admin/view/wp-slimstat-reports.php:45
1887
+ #: ../admin/view/wp-slimstat-reports.php:54
1888
+ msgid "Pageviews"
1889
  msgstr ""
1890
 
1891
+ #: ../admin/view/wp-slimstat-db.php:868 ../admin/view/wp-slimstat-db.php:1116
1892
+ msgid ""
1893
+ "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
1894
+ "the tracking code is executed."
1895
  msgstr ""
1896
 
1897
+ #: ../admin/view/wp-slimstat-db.php:870
1898
+ msgid "Days in Range"
1899
  msgstr ""
1900
 
1901
+ #: ../admin/view/wp-slimstat-db.php:873
1902
+ msgid "Average Daily Pageviews"
1903
  msgstr ""
1904
 
1905
+ #: ../admin/view/wp-slimstat-db.php:875
1906
+ msgid ""
1907
+ "How many pages have been visited on average every day during the current "
1908
+ "period."
1909
  msgstr ""
1910
 
1911
+ #: ../admin/view/wp-slimstat-db.php:877
1912
+ msgid "From Search Results"
1913
  msgstr ""
1914
 
1915
+ #: ../admin/view/wp-slimstat-db.php:879
1916
  msgid ""
1917
+ "Visitors who landed on your site after searching for a keyword on Google, "
1918
+ "Yahoo, etc."
 
 
 
1919
  msgstr ""
1920
 
1921
+ #: ../admin/view/wp-slimstat-db.php:881 ../admin/view/wp-slimstat-db.php:1227
1922
+ #: ../admin/view/wp-slimstat-reports.php:55
1923
+ #: ../admin/view/wp-slimstat-reports.php:252
1924
+ #: ../admin/view/wp-slimstat-reports.php:493
1925
+ msgid "Unique IPs"
1926
  msgstr ""
1927
 
1928
+ #: ../admin/view/wp-slimstat-db.php:883
1929
+ msgid ""
1930
+ "Used to differentiate between multiple requests to download a file from one "
1931
+ "internet address (IP) and requests originating from many distinct addresses"
1932
  msgstr ""
1933
 
1934
+ #: ../admin/view/wp-slimstat-db.php:885
1935
+ msgid "Last 30 minutes"
1936
  msgstr ""
1937
 
1938
+ #: ../admin/view/wp-slimstat-db.php:1118
1939
+ msgid "Unique Referrers"
1940
  msgstr ""
1941
 
1942
+ #: ../admin/view/wp-slimstat-db.php:1120
1943
  msgid ""
1944
+ "A referrer (or referring site) is the site that a visitor previously visited "
1945
+ "before following a link to your site."
1946
  msgstr ""
1947
 
1948
+ #: ../admin/view/wp-slimstat-db.php:1122
1949
+ msgid "Direct Pageviews"
1950
  msgstr ""
1951
 
1952
+ #: ../admin/view/wp-slimstat-db.php:1124
1953
  msgid ""
1954
+ "Visitors who visited the site by typing the URL directly into their browser. "
1955
+ "<em>Direct</em> can also refer to the visitors who clicked on the links from "
1956
+ "their bookmarks/favorites, untagged links within emails, or links from "
1957
+ "documents that don't include tracking variables."
1958
  msgstr ""
1959
 
1960
+ #: ../admin/view/wp-slimstat-db.php:1126
1961
+ msgid "From a search result"
1962
  msgstr ""
1963
 
1964
+ #: ../admin/view/wp-slimstat-db.php:1128
1965
+ msgid ""
1966
+ "Visitors who came to your site via searches on Google or some other search "
1967
+ "engine."
1968
  msgstr ""
1969
 
1970
+ #: ../admin/view/wp-slimstat-db.php:1130
1971
+ msgid "Unique Landing Pages"
 
 
 
1972
  msgstr ""
1973
 
1974
+ #: ../admin/view/wp-slimstat-db.php:1132
1975
+ msgid ""
1976
+ "The first page that a user views during a session. This is also known as the "
1977
+ "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
1978
+ "Space,' and they land on your home page, it gets counted (for that visit) as "
1979
+ "a landing page."
1980
  msgstr ""
1981
 
1982
+ #: ../admin/view/wp-slimstat-db.php:1134
1983
+ msgid "Bounce Pages"
1984
  msgstr ""
1985
 
1986
+ #: ../admin/view/wp-slimstat-db.php:1136
1987
+ msgid "Number of single page visits to your site over the selected period."
1988
  msgstr ""
1989
 
1990
+ #: ../admin/view/wp-slimstat-db.php:1138
1991
+ msgid "New Visitors Rate"
 
1992
  msgstr ""
1993
 
1994
+ #: ../admin/view/wp-slimstat-db.php:1140
1995
+ msgid ""
1996
+ "Percentage of single page visits, i.e. visits in which the person left your "
1997
+ "site from the entrance page."
1998
  msgstr ""
1999
 
2000
+ #: ../admin/view/wp-slimstat-db.php:1142
2001
+ msgid "Currently from search engines"
2002
+ msgstr ""
2003
+
2004
+ #: ../admin/view/wp-slimstat-db.php:1144
2005
  msgid ""
2006
+ "Visitors who visited the site in the last 5 minutes coming from a search "
2007
+ "engine."
2008
  msgstr ""
2009
 
2010
+ #: ../admin/view/wp-slimstat-db.php:1155
2011
+ msgid "0 - 30 seconds"
2012
  msgstr ""
2013
 
2014
+ #: ../admin/view/wp-slimstat-db.php:1161
2015
+ msgid "31 - 60 seconds"
2016
  msgstr ""
2017
 
2018
+ #: ../admin/view/wp-slimstat-db.php:1167
2019
+ msgid "1 - 3 minutes"
2020
  msgstr ""
2021
 
2022
+ #: ../admin/view/wp-slimstat-db.php:1173
2023
+ msgid "3 - 5 minutes"
 
 
 
 
 
2024
  msgstr ""
2025
 
2026
+ #: ../admin/view/wp-slimstat-db.php:1179
2027
+ msgid "5 - 7 minutes"
2028
  msgstr ""
2029
 
2030
+ #: ../admin/view/wp-slimstat-db.php:1185
2031
+ msgid "7 - 10 minutes"
2032
  msgstr ""
2033
 
2034
+ #: ../admin/view/wp-slimstat-db.php:1191
2035
+ msgid "More than 10 minutes"
2036
  msgstr ""
2037
 
2038
+ #: ../admin/view/wp-slimstat-db.php:1203
2039
+ msgid "Average visit duration"
2040
+ msgstr ""
2041
+
2042
+ #: ../admin/view/wp-slimstat-db.php:1223
2043
+ #: ../admin/view/wp-slimstat-reports.php:251
2044
+ msgid "Visits"
2045
  msgstr ""
2046
 
2047
+ #: ../admin/view/wp-slimstat-db.php:1225
2048
  msgid ""
2049
+ "A visit is a session of at most 30 minutes. Returning visitors are counted "
2050
+ "multiple times if they perform multiple visits."
2051
  msgstr ""
2052
 
2053
+ #: ../admin/view/wp-slimstat-db.php:1229
2054
+ msgid "It includes only traffic generated by human visitors."
2055
  msgstr ""
2056
 
2057
+ #: ../admin/view/wp-slimstat-db.php:1231
2058
+ msgid "Bounce rate"
2059
  msgstr ""
2060
 
2061
+ #: ../admin/view/wp-slimstat-db.php:1233
2062
+ msgid ""
2063
+ "Percentage of single-page visits, i.e. visits in which the person left your "
2064
+ "site from the entrance page."
2065
  msgstr ""
2066
 
2067
+ #: ../admin/view/wp-slimstat-db.php:1235
2068
+ msgid "Known visitors"
2069
  msgstr ""
2070
 
2071
+ #: ../admin/view/wp-slimstat-db.php:1237
2072
+ msgid "Visitors who had previously left a comment on your blog."
2073
  msgstr ""
2074
 
2075
+ #: ../admin/view/wp-slimstat-db.php:1239
2076
+ msgid "New visitors"
2077
  msgstr ""
2078
 
2079
+ #: ../admin/view/wp-slimstat-db.php:1241
2080
+ msgid "Human users who visited your site only once."
 
 
2081
  msgstr ""
2082
 
2083
+ #: ../admin/view/wp-slimstat-db.php:1243
2084
+ msgid "Bots"
2085
  msgstr ""
2086
 
2087
+ #: ../admin/view/wp-slimstat-db.php:1246
2088
+ msgid "Pageviews per visit"
2089
+ msgstr ""
2090
+
2091
+ #: ../admin/view/wp-slimstat-db.php:1249
2092
+ msgid "Longest visit"
2093
+ msgstr ""
2094
+
2095
+ #: ../admin/view/wp-slimstat-db.php:1250
2096
+ msgid "hits"
2097
+ msgstr ""
2098
+
2099
+ #: ../admin/view/wp-slimstat-db.php:1259
2100
+ msgid "Content Items"
2101
+ msgstr ""
2102
+
2103
+ #: ../admin/view/wp-slimstat-db.php:1261
2104
  msgid ""
2105
+ "This value includes not only posts, but also custom post types, regardless "
2106
+ "of their status"
2107
  msgstr ""
2108
 
2109
+ #: ../admin/view/wp-slimstat-db.php:1263
2110
+ msgid "Posts"
2111
  msgstr ""
2112
 
2113
+ #: ../admin/view/wp-slimstat-db.php:1266
2114
+ msgid "Pages"
2115
  msgstr ""
2116
 
2117
+ #: ../admin/view/wp-slimstat-db.php:1269
2118
+ msgid "Attachments"
 
2119
  msgstr ""
2120
 
2121
+ #: ../admin/view/wp-slimstat-db.php:1272
2122
+ msgid "Revisions"
2123
  msgstr ""
2124
 
2125
+ #: ../admin/view/wp-slimstat-db.php:1275
2126
+ msgid "Comments"
2127
  msgstr ""
2128
 
2129
+ #: ../admin/view/wp-slimstat-db.php:1278
2130
+ msgid "Avg Comments per Post"
2131
  msgstr ""
2132
 
2133
+ #: ../admin/view/wp-slimstat-db.php:1281
2134
+ msgid "Avg Server Latency"
2135
  msgstr ""
2136
 
2137
+ #: ../admin/view/wp-slimstat-db.php:1283
2138
+ msgid ""
2139
+ "Latency is the amount of time it takes for the host server to receive and "
2140
+ "process a request for a page object. The amount of latency depends largely "
2141
+ "on how far away the user is from the server."
2142
  msgstr ""
2143
 
2144
+ #: ../admin/view/wp-slimstat-reports.php:28
2145
+ msgid "Chart controls"
2146
  msgstr ""
2147
 
2148
+ #: ../admin/view/wp-slimstat-reports.php:28
2149
+ msgid "Use your mouse wheel to zoom in and out"
2150
  msgstr ""
2151
 
2152
+ #: ../admin/view/wp-slimstat-reports.php:28
2153
+ msgid "While zooming in, drag the chart to move to a different area"
2154
  msgstr ""
2155
 
2156
+ #: ../admin/view/wp-slimstat-reports.php:32
2157
+ msgid "Visitors Activity"
2158
  msgstr ""
2159
 
2160
+ #: ../admin/view/wp-slimstat-reports.php:41
2161
+ msgid "Color codes"
2162
  msgstr ""
2163
 
2164
+ #: ../admin/view/wp-slimstat-reports.php:41
2165
+ msgid "From search result page"
2166
  msgstr ""
2167
 
2168
+ #: ../admin/view/wp-slimstat-reports.php:41 ../admin/wp-slimstat-admin.php:1137
2169
+ msgid "Known Visitor"
2170
  msgstr ""
2171
 
2172
+ #: ../admin/view/wp-slimstat-reports.php:41
2173
+ msgid "Known Users"
2174
  msgstr ""
2175
 
2176
+ #: ../admin/view/wp-slimstat-reports.php:41
2177
+ msgid "Other Humans"
 
2178
  msgstr ""
2179
 
2180
+ #: ../admin/view/wp-slimstat-reports.php:41
2181
+ msgid "Bot or Crawler"
2182
  msgstr ""
2183
 
2184
+ #: ../admin/view/wp-slimstat-reports.php:63
2185
+ msgid "About Slimstat"
 
 
 
2186
  msgstr ""
2187
 
2188
+ #: ../admin/view/wp-slimstat-reports.php:72
2189
+ msgid "Traffic at a Glance"
2190
  msgstr ""
2191
 
2192
+ #: ../admin/view/wp-slimstat-reports.php:82
2193
+ msgid "Currently Online"
2194
  msgstr ""
2195
 
2196
+ #: ../admin/view/wp-slimstat-reports.php:95
2197
+ msgid "Recent Search Terms"
2198
  msgstr ""
2199
 
2200
+ #: ../admin/view/wp-slimstat-reports.php:106
2201
+ msgid "Keywords used by your visitors to find your website on a search engine."
2202
  msgstr ""
2203
 
2204
+ #: ../admin/view/wp-slimstat-reports.php:109
2205
+ msgid "Top Web Pages"
2206
  msgstr ""
2207
 
2208
+ #: ../admin/view/wp-slimstat-reports.php:120
2209
+ msgid ""
2210
+ "Here a \"page\" is not just a WordPress page type, but any webpage on your "
2211
+ "site, including posts, products, categories, and so on. You can set the "
2212
+ "corresponding filter where Resource Content Type equals cpt:"
2213
+ "you_cpt_slug_here to get top web pages for a specific custom post type you "
2214
+ "have."
2215
  msgstr ""
2216
 
2217
+ #: ../admin/view/wp-slimstat-reports.php:123
2218
+ msgid "Top Referring Domains"
2219
  msgstr ""
2220
 
2221
+ #: ../admin/view/wp-slimstat-reports.php:137
2222
+ msgid "Top Known Visitors"
2223
  msgstr ""
2224
 
2225
+ #: ../admin/view/wp-slimstat-reports.php:148
2226
+ msgid "Top Search Terms"
2227
  msgstr ""
2228
 
2229
+ #: ../admin/view/wp-slimstat-reports.php:160
2230
+ msgid "Top Countries"
2231
  msgstr ""
2232
 
2233
+ #: ../admin/view/wp-slimstat-reports.php:169
2234
  msgid ""
2235
+ "You can configure Slimstat to ignore a specific Country by setting the "
2236
+ "corresponding filter under Settings > Slimstat > Filters."
2237
  msgstr ""
2238
 
2239
+ #: ../admin/view/wp-slimstat-reports.php:172
2240
+ msgid "Rankings"
2241
  msgstr ""
2242
 
2243
+ #: ../admin/view/wp-slimstat-reports.php:179
2244
+ msgid ""
2245
+ "Slimstat retrieves live information from Alexa, Facebook and Mozscape, to "
2246
+ "measures your site's rankings. Values are updated every 12 hours. Please "
2247
+ "enter your personal access ID in the settings to access your personalized "
2248
+ "Mozscape data."
2249
  msgstr ""
2250
 
2251
+ #: ../admin/view/wp-slimstat-reports.php:182
2252
+ msgid "Top Language Families"
2253
  msgstr ""
2254
 
2255
+ #: ../admin/view/wp-slimstat-reports.php:195
2256
+ msgid "Users Currently Online"
2257
  msgstr ""
2258
 
2259
+ #: ../admin/view/wp-slimstat-reports.php:206
2260
+ msgid ""
2261
+ "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2262
+ "Slimstat leverages this information to identify returning visitors. Please "
2263
+ "note that visitors also include registered users."
2264
  msgstr ""
2265
 
2266
+ #: ../admin/view/wp-slimstat-reports.php:220
2267
+ msgid "Unique Terms"
2268
  msgstr ""
2269
 
2270
+ #: ../admin/view/wp-slimstat-reports.php:228
2271
+ msgid "Top Referring URLs"
2272
  msgstr ""
2273
 
2274
+ #: ../admin/view/wp-slimstat-reports.php:241
2275
+ msgid "Human Visits"
2276
  msgstr ""
2277
 
2278
+ #: ../admin/view/wp-slimstat-reports.php:260
2279
+ msgid "Audience Overview"
 
2280
  msgstr ""
2281
 
2282
+ #: ../admin/view/wp-slimstat-reports.php:267
2283
+ msgid ""
2284
+ "Where not otherwise specified, the metrics in this report are referred to "
2285
+ "human visitors."
2286
  msgstr ""
2287
 
2288
+ #: ../admin/view/wp-slimstat-reports.php:270
2289
+ msgid "Top Languages"
2290
  msgstr ""
2291
 
2292
+ #: ../admin/view/wp-slimstat-reports.php:281
2293
+ msgid "Top Browsers"
 
 
2294
  msgstr ""
2295
 
2296
+ #: ../admin/view/wp-slimstat-reports.php:292
2297
+ msgid "Top Service Providers"
2298
+ msgstr ""
 
2299
 
2300
+ #: ../admin/view/wp-slimstat-reports.php:301
2301
+ #: ../admin/view/wp-slimstat-reports.php:313
2302
+ msgid ""
2303
+ "Internet Service Provider: a company which provides other companies or "
2304
+ "individuals with access to the Internet. Your DSL or cable internet service "
2305
+ "is provided to you by your ISP.<br><br>You can ignore specific IP addresses "
2306
+ "by setting the corresponding filter under Settings > Slimstat > Filters."
2307
  msgstr ""
2308
 
2309
+ #: ../admin/view/wp-slimstat-reports.php:304
2310
+ msgid "Top Operating Systems"
2311
  msgstr ""
2312
 
2313
+ #: ../admin/view/wp-slimstat-reports.php:316
2314
+ msgid "Top Screen Resolutions"
2315
  msgstr ""
2316
 
2317
+ #: ../admin/view/wp-slimstat-reports.php:328
2318
+ msgid "Top Viewport Sizes"
2319
  msgstr ""
2320
 
2321
+ #: ../admin/view/wp-slimstat-reports.php:348
2322
+ msgid "Visit Duration"
2323
  msgstr ""
2324
 
2325
+ #: ../admin/view/wp-slimstat-reports.php:355
2326
+ msgid ""
2327
+ "All values represent the percentages of pageviews within the corresponding "
2328
+ "time range."
2329
  msgstr ""
2330
 
2331
+ #: ../admin/view/wp-slimstat-reports.php:358
2332
+ msgid "Recent Countries"
2333
  msgstr ""
2334
 
2335
+ #: ../admin/view/wp-slimstat-reports.php:369
2336
+ msgid "Recent Viewport Sizes"
2337
  msgstr ""
2338
 
2339
+ #: ../admin/view/wp-slimstat-reports.php:380
2340
+ msgid "Recent Operating Systems"
2341
  msgstr ""
2342
 
2343
+ #: ../admin/view/wp-slimstat-reports.php:391
2344
+ msgid "Recent Browsers"
 
2345
  msgstr ""
2346
 
2347
+ #: ../admin/view/wp-slimstat-reports.php:402
2348
+ msgid "Recent Languages"
2349
  msgstr ""
2350
 
2351
+ #: ../admin/view/wp-slimstat-reports.php:413
2352
+ msgid "Top Browser Families"
2353
  msgstr ""
2354
 
2355
+ #: ../admin/view/wp-slimstat-reports.php:422
2356
+ msgid ""
2357
+ "This report shows you what user agent families (no version considered) are "
2358
+ "popular among your visitors."
2359
  msgstr ""
2360
 
2361
+ #: ../admin/view/wp-slimstat-reports.php:425
2362
+ msgid "Top OS Families"
2363
  msgstr ""
2364
 
2365
+ #: ../admin/view/wp-slimstat-reports.php:436
 
2366
  msgid ""
2367
+ "This report shows you what operating system families (no version considered) "
2368
+ "are popular among your visitors."
2369
  msgstr ""
2370
 
2371
+ #: ../admin/view/wp-slimstat-reports.php:439
2372
+ msgid "Recent Users"
2373
  msgstr ""
2374
 
2375
+ #: ../admin/view/wp-slimstat-reports.php:451
2376
+ msgid "Top Users"
2377
  msgstr ""
2378
 
2379
+ #: ../admin/view/wp-slimstat-reports.php:463
2380
+ #: ../admin/view/wp-slimstat-reports.php:472
2381
+ msgid "Users"
 
2382
  msgstr ""
2383
 
2384
+ #: ../admin/view/wp-slimstat-reports.php:473
2385
+ msgid "Unique Users"
2386
  msgstr ""
2387
 
2388
+ #: ../admin/view/wp-slimstat-reports.php:482 ../admin/wp-slimstat-admin.php:58
2389
+ msgid "Traffic Sources"
 
 
2390
  msgstr ""
2391
 
2392
+ #: ../admin/view/wp-slimstat-reports.php:492
2393
+ msgid "Domains"
 
 
2394
  msgstr ""
2395
 
2396
+ #: ../admin/view/wp-slimstat-reports.php:501
2397
+ msgid "Traffic Summary"
2398
  msgstr ""
2399
 
2400
+ #: ../admin/view/wp-slimstat-reports.php:510
2401
+ msgid "Top Referring Search Engines"
 
 
2402
  msgstr ""
2403
 
2404
+ #: ../admin/view/wp-slimstat-reports.php:525
2405
+ msgid "Recent Outbound Links"
2406
  msgstr ""
2407
 
2408
+ #: ../admin/view/wp-slimstat-reports.php:537
2409
+ msgid "Recent Posts"
2410
+ msgstr ""
2411
+
2412
+ #: ../admin/view/wp-slimstat-reports.php:549
2413
+ msgid "Recent Feeds"
2414
+ msgstr ""
2415
+
2416
+ #: ../admin/view/wp-slimstat-reports.php:561
2417
+ msgid "Recent Pages Not Found"
2418
  msgstr ""
2419
 
2420
+ #: ../admin/view/wp-slimstat-reports.php:573
2421
+ msgid "Recent Internal Searches"
2422
+ msgstr ""
2423
+
2424
+ #: ../admin/view/wp-slimstat-reports.php:583
2425
+ msgid "Searches performed using WordPress' built-in search functionality."
2426
+ msgstr ""
2427
+
2428
+ #: ../admin/view/wp-slimstat-reports.php:586
2429
+ msgid "Top Categories"
2430
+ msgstr ""
2431
+
2432
+ #: ../admin/view/wp-slimstat-reports.php:599
2433
+ msgid "Top Downloads"
2434
+ msgstr ""
2435
+
2436
+ #: ../admin/view/wp-slimstat-reports.php:610
2437
  msgid ""
2438
+ "You can configure Slimstat to track specific file extensions as downloads."
 
2439
  msgstr ""
2440
 
2441
+ #: ../admin/view/wp-slimstat-reports.php:613
2442
+ msgid "Recent Events"
2443
  msgstr ""
2444
 
2445
+ #: ../admin/view/wp-slimstat-reports.php:622
2446
+ #: ../admin/view/wp-slimstat-reports.php:646
2447
+ msgid ""
2448
+ "This report lists any <em>event</em> occurred on your website. Please refer "
2449
+ "to the FAQ for more information on how to use this functionality."
2450
  msgstr ""
2451
 
2452
+ #: ../admin/view/wp-slimstat-reports.php:625
2453
+ msgid "Top Posts"
2454
  msgstr ""
2455
 
2456
+ #: ../admin/view/wp-slimstat-reports.php:637
2457
+ msgid "Top Events"
2458
  msgstr ""
2459
 
2460
+ #: ../admin/view/wp-slimstat-reports.php:649
2461
+ msgid "Top Internal Searches"
2462
+ msgstr ""
2463
+
2464
+ #: ../admin/view/wp-slimstat-reports.php:661
2465
+ msgid "Recent Categories"
2466
+ msgstr ""
2467
+
2468
+ #: ../admin/view/wp-slimstat-reports.php:673
2469
+ msgid "Top Pages Not Found"
2470
+ msgstr ""
2471
+
2472
+ #: ../admin/view/wp-slimstat-reports.php:685
2473
+ msgid "Top Authors"
2474
+ msgstr ""
2475
+
2476
+ #: ../admin/view/wp-slimstat-reports.php:696
2477
+ msgid "Top Tags"
2478
  msgstr ""
2479
 
2480
+ #: ../admin/view/wp-slimstat-reports.php:708
2481
+ msgid "Recent Downloads"
2482
  msgstr ""
2483
 
2484
+ #: ../admin/view/wp-slimstat-reports.php:720
2485
+ msgid "Top Outbound Links"
2486
  msgstr ""
2487
 
2488
+ #: ../admin/view/wp-slimstat-reports.php:732
2489
+ msgid "Your Website"
2490
  msgstr ""
2491
 
2492
+ #: ../admin/view/wp-slimstat-reports.php:739
2493
+ msgid ""
2494
+ "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2495
+ "this report is not affected by the filters set here above."
2496
  msgstr ""
2497
 
2498
+ #: ../admin/view/wp-slimstat-reports.php:742
2499
+ msgid "Top Bounce Pages"
2500
  msgstr ""
2501
 
2502
+ #: ../admin/view/wp-slimstat-reports.php:755
2503
+ msgid "Top Exit Pages"
2504
  msgstr ""
2505
 
2506
+ #: ../admin/view/wp-slimstat-reports.php:768
2507
+ msgid "Top Entry Pages"
2508
  msgstr ""
2509
 
2510
+ #: ../admin/view/wp-slimstat-reports.php:781
2511
+ msgid "Pages with Outbound Links"
2512
  msgstr ""
2513
 
2514
+ #: ../admin/view/wp-slimstat-reports.php:790
2515
+ msgid "Outbound Links"
2516
  msgstr ""
2517
 
2518
+ #: ../admin/view/wp-slimstat-reports.php:791
2519
+ msgid "Unique Outbound"
2520
  msgstr ""
2521
 
2522
+ #: ../admin/view/wp-slimstat-reports.php:799
2523
+ msgid "Users by Page"
2524
  msgstr ""
2525
 
2526
+ #: ../admin/view/wp-slimstat-reports.php:810
2527
+ msgid "World Map"
2528
  msgstr ""
2529
 
2530
+ #: ../admin/view/wp-slimstat-reports.php:817
2531
  msgid ""
2532
+ "Dots on the map represent the most recent pageviews geolocated by City. This "
2533
+ "feature is only available by enabling the corresponding precision level in "
2534
+ "the settings."
2535
  msgstr ""
2536
 
2537
+ #: ../admin/view/wp-slimstat-reports.php:823
2538
+ msgid "Top Cities"
2539
  msgstr ""
2540
 
2541
+ #: ../admin/view/wp-slimstat-reports.php:927
2542
+ msgid "Refresh"
 
 
 
 
2543
  msgstr ""
2544
 
2545
+ #: ../admin/view/wp-slimstat-reports.php:974
2546
+ #, php-format
2547
+ msgid "Results %s - %s of %s"
2548
  msgstr ""
2549
 
2550
+ #: ../admin/view/wp-slimstat-reports.php:977
2551
+ msgid "Refresh in"
 
 
2552
  msgstr ""
2553
 
2554
+ #: ../admin/view/wp-slimstat-reports.php:1076
2555
+ msgid "Category ID"
2556
  msgstr ""
2557
 
2558
+ #: ../admin/view/wp-slimstat-reports.php:1081
2559
+ #: ../admin/view/wp-slimstat-reports.php:1095
2560
+ #: ../admin/view/wp-slimstat-reports.php:1100
2561
+ msgid "Code"
 
 
2562
  msgstr ""
2563
 
2564
+ #: ../admin/view/wp-slimstat-reports.php:1096
2565
+ #: ../languages/dynamic_strings.php:341 ../wp-slimstat.php:1476
2566
+ msgid "l-"
2567
+ msgstr "Unknown"
2568
 
2569
+ #: ../admin/view/wp-slimstat-reports.php:1113
2570
+ msgid "URL"
2571
  msgstr ""
2572
 
2573
+ #: ../admin/view/wp-slimstat-reports.php:1132
2574
+ msgid "Referrer"
2575
  msgstr ""
2576
 
2577
+ #: ../admin/view/wp-slimstat-reports.php:1313
2578
+ #: ../admin/view/wp-slimstat-reports.php:1327
2579
+ msgid "(previous)"
 
2580
  msgstr ""
2581
 
2582
+ #: ../admin/view/wp-slimstat-reports.php:1406
2583
+ msgid "Date"
2584
  msgstr ""
2585
 
2586
+ #: ../admin/view/wp-slimstat-reports.php:1458
2587
+ msgid "Filter by element in a group"
 
 
2588
  msgstr ""
2589
 
2590
+ #: ../admin/view/wp-slimstat-reports.php:1483
2591
  msgid "Backlinks"
2592
  msgstr ""
2593
 
2594
+ #: ../admin/view/wp-slimstat-reports.php:1484
2595
  msgid "Number of external equity links to your website."
2596
  msgstr ""
2597
 
2598
+ #: ../admin/view/wp-slimstat-reports.php:1488
2599
  msgid "MozRank"
2600
  msgstr ""
2601
 
2602
+ #: ../admin/view/wp-slimstat-reports.php:1489
2603
  msgid ""
2604
  "MozRank of the URL, in a normalized 10-point score. MozRank represents a "
2605
  "link popularity score. It reflects the importance of any given web page on "
2606
  "the Internet."
2607
  msgstr ""
2608
 
2609
+ #: ../admin/view/wp-slimstat-reports.php:1493
2610
  msgid "Equity Links"
2611
  msgstr ""
2612
 
2613
+ #: ../admin/view/wp-slimstat-reports.php:1494
2614
  msgid ""
2615
  "Number of authority-passing links (including followed links and redirects, "
2616
  "internal or external) to your website. Set the permalink filter here above "
2617
  "to get the corresponding metrics in this report."
2618
  msgstr ""
2619
 
2620
+ #: ../admin/view/wp-slimstat-reports.php:1498
2621
  msgid "Facebook Shares"
2622
  msgstr ""
2623
 
2624
+ #: ../admin/view/wp-slimstat-reports.php:1503
2625
  msgid "Facebook Clicks"
2626
  msgstr ""
2627
 
2628
+ #: ../admin/view/wp-slimstat-reports.php:1504
2629
  msgid "How many times links to your website have been clicked on Facebook."
2630
  msgstr ""
2631
 
2632
+ #: ../admin/view/wp-slimstat-reports.php:1508
2633
  msgid "Alexa World Rank"
2634
  msgstr ""
2635
 
2636
+ #: ../admin/view/wp-slimstat-reports.php:1509
2637
  msgid ""
2638
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2639
  "traffic data."
2640
  msgstr ""
2641
 
2642
+ #: ../admin/view/wp-slimstat-reports.php:1513
2643
  msgid "Alexa Country Rank"
2644
  msgstr ""
2645
 
2646
+ #: ../admin/view/wp-slimstat-reports.php:1518
2647
  msgid "Alexa Popularity"
2648
  msgstr ""
2649
 
2650
+ #: ../admin/view/wp-slimstat-reports.php:1577
2651
  msgid "Alexa Delta"
2652
  msgstr ""
2653
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2654
  # Unknown
2655
+ #: ../admin/view/wp-slimstat-reports.php:1625
2656
  msgid "c-xx"
2657
  msgstr "Unknown"
2658
 
2659
  # Afghanistan
2660
+ #: ../admin/view/wp-slimstat-reports.php:1625
2661
  msgid "c-af"
2662
  msgstr "Afghanistan"
2663
 
2664
  # Åland Islands
2665
+ #: ../admin/view/wp-slimstat-reports.php:1625
2666
  msgid "c-ax"
2667
  msgstr "Aland Islands"
2668
 
2669
  # Albania
2670
+ #: ../admin/view/wp-slimstat-reports.php:1625
2671
  msgid "c-al"
2672
  msgstr "Albania"
2673
 
2674
  # Algeria
2675
+ #: ../admin/view/wp-slimstat-reports.php:1625
2676
  msgid "c-dz"
2677
  msgstr "Algeria"
2678
 
2679
  # Andorra
2680
+ #: ../admin/view/wp-slimstat-reports.php:1625
2681
  msgid "c-ad"
2682
  msgstr "Andorra"
2683
 
2684
  # Angola
2685
+ #: ../admin/view/wp-slimstat-reports.php:1625
2686
  msgid "c-ao"
2687
  msgstr "Angola"
2688
 
2689
  # Anguilla
2690
+ #: ../admin/view/wp-slimstat-reports.php:1625
2691
  msgid "c-ai"
2692
  msgstr "Anguilla"
2693
 
2694
  # Antigua and Barbuda
2695
+ #: ../admin/view/wp-slimstat-reports.php:1625
2696
  msgid "c-ag"
2697
  msgstr "Antigua and Barbuda"
2698
 
2699
  # Argentina
2700
+ #: ../admin/view/wp-slimstat-reports.php:1625
2701
  msgid "c-ar"
2702
  msgstr "Argentina"
2703
 
2704
  # Armenia
2705
+ #: ../admin/view/wp-slimstat-reports.php:1625
2706
  msgid "c-am"
2707
  msgstr "Armenia"
2708
 
2709
  # Aruba
2710
+ #: ../admin/view/wp-slimstat-reports.php:1625
2711
  msgid "c-aw"
2712
  msgstr "Aruba"
2713
 
2714
  # Australia
2715
+ #: ../admin/view/wp-slimstat-reports.php:1625
2716
  msgid "c-au"
2717
  msgstr "Australia"
2718
 
2719
  # Austria
2720
+ #: ../admin/view/wp-slimstat-reports.php:1625
2721
  msgid "c-at"
2722
  msgstr "Austria"
2723
 
2724
  # Azerbaijan
2725
+ #: ../admin/view/wp-slimstat-reports.php:1625
2726
  msgid "c-az"
2727
  msgstr "Azerbaijan"
2728
 
2729
  # Bahamas
2730
+ #: ../admin/view/wp-slimstat-reports.php:1625
2731
  msgid "c-bs"
2732
  msgstr "Bahamas"
2733
 
2734
  # Bahrain
2735
+ #: ../admin/view/wp-slimstat-reports.php:1625
2736
  msgid "c-bh"
2737
  msgstr "Bahrain"
2738
 
2739
  # Bangladesh
2740
+ #: ../admin/view/wp-slimstat-reports.php:1625
2741
  msgid "c-bd"
2742
  msgstr "Bangladesh"
2743
 
2744
  # Barbados
2745
+ #: ../admin/view/wp-slimstat-reports.php:1625
2746
  msgid "c-bb"
2747
  msgstr "Barbados"
2748
 
2749
  # Belarus
2750
+ #: ../admin/view/wp-slimstat-reports.php:1625
2751
  msgid "c-by"
2752
  msgstr "Belarus"
2753
 
2754
  # Belgium
2755
+ #: ../admin/view/wp-slimstat-reports.php:1625
2756
  msgid "c-be"
2757
  msgstr "Belgium"
2758
 
2759
  # Belize
2760
+ #: ../admin/view/wp-slimstat-reports.php:1625
2761
  msgid "c-bz"
2762
  msgstr "Belize"
2763
 
2764
  # Benin
2765
+ #: ../admin/view/wp-slimstat-reports.php:1625
2766
  msgid "c-bj"
2767
  msgstr "Benin"
2768
 
2769
  # Bermuda
2770
+ #: ../admin/view/wp-slimstat-reports.php:1625
2771
  msgid "c-bm"
2772
  msgstr "Bermuda"
2773
 
2774
  # Bhutan
2775
+ #: ../admin/view/wp-slimstat-reports.php:1625
2776
  msgid "c-bt"
2777
  msgstr "Bhutan"
2778
 
2779
  # Bolivia
2780
+ #: ../admin/view/wp-slimstat-reports.php:1625
2781
  msgid "c-bo"
2782
  msgstr "Bolivia"
2783
 
2784
  # Bosnia and Herzegovina
2785
+ #: ../admin/view/wp-slimstat-reports.php:1625
2786
  msgid "c-ba"
2787
  msgstr "Bosnia and Herzegovina"
2788
 
2789
  # Botswana
2790
+ #: ../admin/view/wp-slimstat-reports.php:1625
2791
  msgid "c-bw"
2792
  msgstr "Botswana"
2793
 
2794
  # Brazil
2795
+ #: ../admin/view/wp-slimstat-reports.php:1625
2796
  msgid "c-br"
2797
  msgstr "Brazil"
2798
 
2799
  # Brunei Darussalam
2800
+ #: ../admin/view/wp-slimstat-reports.php:1625
2801
  msgid "c-bn"
2802
  msgstr "Brunei Darussalam"
2803
 
2804
  # Bulgaria
2805
+ #: ../admin/view/wp-slimstat-reports.php:1625
2806
  msgid "c-bg"
2807
  msgstr "Bulgaria"
2808
 
2809
  # Burkina Faso
2810
+ #: ../admin/view/wp-slimstat-reports.php:1625
2811
  msgid "c-bf"
2812
  msgstr "Burkina Faso"
2813
 
2814
  # Burundi
2815
+ #: ../admin/view/wp-slimstat-reports.php:1625
2816
  msgid "c-bi"
2817
  msgstr "Burundi"
2818
 
2819
  # Cambodia
2820
+ #: ../admin/view/wp-slimstat-reports.php:1625
2821
  msgid "c-kh"
2822
  msgstr "Cambodia"
2823
 
2824
  # Cameroon
2825
+ #: ../admin/view/wp-slimstat-reports.php:1625
2826
  msgid "c-cm"
2827
  msgstr "Cameroon"
2828
 
2829
  # Canada
2830
+ #: ../admin/view/wp-slimstat-reports.php:1625
2831
  msgid "c-ca"
2832
  msgstr "Canada"
2833
 
2834
  # Cape Verde
2835
+ #: ../admin/view/wp-slimstat-reports.php:1625
2836
  msgid "c-cv"
2837
  msgstr "Cape Verde"
2838
 
2839
  # Cayman Islands
2840
+ #: ../admin/view/wp-slimstat-reports.php:1625
2841
  msgid "c-ky"
2842
  msgstr "Cayman Islands"
2843
 
2844
  # Central African Republic
2845
+ #: ../admin/view/wp-slimstat-reports.php:1625
2846
  msgid "c-cf"
2847
  msgstr "Central African Republic"
2848
 
2849
  # Chad
2850
+ #: ../admin/view/wp-slimstat-reports.php:1625
2851
  msgid "c-td"
2852
  msgstr "Chad"
2853
 
2854
  # Chile
2855
+ #: ../admin/view/wp-slimstat-reports.php:1625
2856
  msgid "c-cl"
2857
  msgstr "Chile"
2858
 
2859
  # China
2860
+ #: ../admin/view/wp-slimstat-reports.php:1625
2861
  msgid "c-cn"
2862
  msgstr "China"
2863
 
2864
  # Colombia
2865
+ #: ../admin/view/wp-slimstat-reports.php:1625
2866
  msgid "c-co"
2867
  msgstr "Colombia"
2868
 
2869
  # Comoros
2870
+ #: ../admin/view/wp-slimstat-reports.php:1625
2871
  msgid "c-km"
2872
  msgstr "Comoros"
2873
 
2874
  # Congo
2875
+ #: ../admin/view/wp-slimstat-reports.php:1625
2876
  msgid "c-cg"
2877
  msgstr "Congo"
2878
 
2879
  # The Democratic Republic of the Congo
2880
+ #: ../admin/view/wp-slimstat-reports.php:1625
2881
  msgid "c-cd"
2882
  msgstr "The Democratic Republic of the Congo"
2883
 
2884
  # Costa Rica
2885
+ #: ../admin/view/wp-slimstat-reports.php:1625
2886
  msgid "c-cr"
2887
  msgstr "Costa Rica"
2888
 
2889
  # Côte d'Ivoire
2890
+ #: ../admin/view/wp-slimstat-reports.php:1625
2891
  msgid "c-ci"
2892
  msgstr "Côte d'Ivoire"
2893
 
2894
  # Croatia
2895
+ #: ../admin/view/wp-slimstat-reports.php:1625
2896
  msgid "c-hr"
2897
  msgstr "Croatia"
2898
 
2899
  # Cuba
2900
+ #: ../admin/view/wp-slimstat-reports.php:1625
2901
  msgid "c-cu"
2902
  msgstr "Cuba"
2903
 
2904
  # Cyprus
2905
+ #: ../admin/view/wp-slimstat-reports.php:1625
2906
  msgid "c-cy"
2907
  msgstr "Cyprus"
2908
 
2909
  # Czech Republic
2910
+ #: ../admin/view/wp-slimstat-reports.php:1625
2911
  msgid "c-cz"
2912
  msgstr "Czech Republic"
2913
 
2914
  # Denmark
2915
+ #: ../admin/view/wp-slimstat-reports.php:1625
2916
  msgid "c-dk"
2917
  msgstr "Denmark"
2918
 
2919
  # Djibouti
2920
+ #: ../admin/view/wp-slimstat-reports.php:1625
2921
  msgid "c-dj"
2922
  msgstr "Djibouti"
2923
 
2924
  # Dominica
2925
+ #: ../admin/view/wp-slimstat-reports.php:1625
2926
  msgid "c-dm"
2927
  msgstr "Dominica"
2928
 
2929
  # Dominican Republic
2930
+ #: ../admin/view/wp-slimstat-reports.php:1625
2931
  msgid "c-do"
2932
  msgstr "Dominican Republic"
2933
 
2934
  # Ecuador
2935
+ #: ../admin/view/wp-slimstat-reports.php:1625
2936
  msgid "c-ec"
2937
  msgstr "Ecuador"
2938
 
2939
  # Egypt
2940
+ #: ../admin/view/wp-slimstat-reports.php:1625
2941
  msgid "c-eg"
2942
  msgstr "Egypt"
2943
 
2944
  # El Salvador
2945
+ #: ../admin/view/wp-slimstat-reports.php:1625
2946
  msgid "c-sv"
2947
  msgstr "El Salvador"
2948
 
2949
  # Equatorial Guinea
2950
+ #: ../admin/view/wp-slimstat-reports.php:1625
2951
  msgid "c-gq"
2952
  msgstr "Equatorial Guinea"
2953
 
2954
  # Eritrea
2955
+ #: ../admin/view/wp-slimstat-reports.php:1625
2956
  msgid "c-er"
2957
  msgstr "Eritrea"
2958
 
2959
  # Estonia
2960
+ #: ../admin/view/wp-slimstat-reports.php:1625
2961
  msgid "c-ee"
2962
  msgstr "Estonia"
2963
 
2964
  # Ethiopia
2965
+ #: ../admin/view/wp-slimstat-reports.php:1625
2966
  msgid "c-et"
2967
  msgstr "Ethiopia"
2968
 
2969
  # Faroe Islands
2970
+ #: ../admin/view/wp-slimstat-reports.php:1625
2971
  msgid "c-fo"
2972
  msgstr "Faroe Islands"
2973
 
2974
  # Falkland Islands (Malvinas)
2975
+ #: ../admin/view/wp-slimstat-reports.php:1625
2976
  msgid "c-fk"
2977
  msgstr "Falkland Islands (Malvinas)"
2978
 
2979
  # Fiji
2980
+ #: ../admin/view/wp-slimstat-reports.php:1625
2981
  msgid "c-fj"
2982
  msgstr "Fiji"
2983
 
2984
  # Finland
2985
+ #: ../admin/view/wp-slimstat-reports.php:1625
2986
  msgid "c-fi"
2987
  msgstr "Finland"
2988
 
2989
  # France
2990
+ #: ../admin/view/wp-slimstat-reports.php:1625
2991
  msgid "c-fr"
2992
  msgstr "France"
2993
 
2994
  # French Guiana
2995
+ #: ../admin/view/wp-slimstat-reports.php:1625
2996
  msgid "c-gf"
2997
  msgstr "French Guiana"
2998
 
2999
  # Gabon
3000
+ #: ../admin/view/wp-slimstat-reports.php:1625
3001
  msgid "c-ga"
3002
  msgstr "Gabon"
3003
 
3004
  # Gambia
3005
+ #: ../admin/view/wp-slimstat-reports.php:1625
3006
  msgid "c-gm"
3007
  msgstr "Gambia"
3008
 
3009
  # Georgia
3010
+ #: ../admin/view/wp-slimstat-reports.php:1625
3011
  msgid "c-ge"
3012
  msgstr "Georgia"
3013
 
3014
  # Germany
3015
+ #: ../admin/view/wp-slimstat-reports.php:1625
3016
  msgid "c-de"
3017
  msgstr "Germany"
3018
 
3019
  # Ghana
3020
+ #: ../admin/view/wp-slimstat-reports.php:1625
3021
  msgid "c-gh"
3022
  msgstr "Ghana"
3023
 
3024
  # Greece
3025
+ #: ../admin/view/wp-slimstat-reports.php:1625
3026
  msgid "c-gr"
3027
  msgstr "Greece"
3028
 
3029
  # Greenland
3030
+ #: ../admin/view/wp-slimstat-reports.php:1625
3031
  msgid "c-gl"
3032
  msgstr "Greenland"
3033
 
3034
  # Grenada
3035
+ #: ../admin/view/wp-slimstat-reports.php:1625
3036
  msgid "c-gd"
3037
  msgstr "Grenada"
3038
 
3039
  # Guadeloupe
3040
+ #: ../admin/view/wp-slimstat-reports.php:1625
3041
  msgid "c-gp"
3042
  msgstr "Guadeloupe"
3043
 
3044
  # Guatemala
3045
+ #: ../admin/view/wp-slimstat-reports.php:1625
3046
  msgid "c-gt"
3047
  msgstr "Guatemala"
3048
 
3049
  # Guinea
3050
+ #: ../admin/view/wp-slimstat-reports.php:1625
3051
  msgid "c-gn"
3052
  msgstr "Guinea"
3053
 
3054
  # Guinea-Bissau
3055
+ #: ../admin/view/wp-slimstat-reports.php:1625
3056
  msgid "c-gw"
3057
  msgstr "Guinea-Bissau"
3058
 
3059
  # Guyana
3060
+ #: ../admin/view/wp-slimstat-reports.php:1625
3061
  msgid "c-gy"
3062
  msgstr "Guyana"
3063
 
3064
  # Haiti
3065
+ #: ../admin/view/wp-slimstat-reports.php:1625
3066
  msgid "c-ht"
3067
  msgstr "Haiti"
3068
 
3069
  # Honduras
3070
+ #: ../admin/view/wp-slimstat-reports.php:1625
3071
  msgid "c-hn"
3072
  msgstr "Honduras"
3073
 
3074
  # Hong Kong
3075
+ #: ../admin/view/wp-slimstat-reports.php:1625
3076
  msgid "c-hk"
3077
  msgstr "Hong Kong"
3078
 
3079
  # Hungary
3080
+ #: ../admin/view/wp-slimstat-reports.php:1625
3081
  msgid "c-hu"
3082
  msgstr "Hungary"
3083
 
3084
  # Iceland
3085
+ #: ../admin/view/wp-slimstat-reports.php:1625
3086
  msgid "c-is"
3087
  msgstr "Iceland"
3088
 
3089
  # India
3090
+ #: ../admin/view/wp-slimstat-reports.php:1625
3091
  msgid "c-in"
3092
  msgstr "India"
3093
 
3094
  # Indonesia
3095
+ #: ../admin/view/wp-slimstat-reports.php:1625
3096
  msgid "c-id"
3097
  msgstr "Indonesia"
3098
 
3099
  # Islamic Republic of Iran
3100
+ #: ../admin/view/wp-slimstat-reports.php:1625
3101
  msgid "c-ir"
3102
  msgstr "Islamic Republic of Iran"
3103
 
3104
  # Iraq
3105
+ #: ../admin/view/wp-slimstat-reports.php:1625
3106
  msgid "c-iq"
3107
  msgstr "Iraq"
3108
 
3109
  # Ireland
3110
+ #: ../admin/view/wp-slimstat-reports.php:1625
3111
  msgid "c-ie"
3112
  msgstr "Ireland"
3113
 
3114
  # Israel
3115
+ #: ../admin/view/wp-slimstat-reports.php:1625
3116
  msgid "c-il"
3117
  msgstr "Israel"
3118
 
3119
  # Italy
3120
+ #: ../admin/view/wp-slimstat-reports.php:1625
3121
  msgid "c-it"
3122
  msgstr "Italy"
3123
 
3124
  # Jamaica
3125
+ #: ../admin/view/wp-slimstat-reports.php:1625
3126
  msgid "c-jm"
3127
  msgstr "Jamaica"
3128
 
3129
  # Japan
3130
+ #: ../admin/view/wp-slimstat-reports.php:1625
3131
  msgid "c-jp"
3132
  msgstr "Japan"
3133
 
3134
  # Jordan
3135
+ #: ../admin/view/wp-slimstat-reports.php:1625
3136
  msgid "c-jo"
3137
  msgstr "Jordan"
3138
 
3139
  # Kazakhstan
3140
+ #: ../admin/view/wp-slimstat-reports.php:1625
3141
  msgid "c-kz"
3142
  msgstr "Kazakhstan"
3143
 
3144
  # Kenya
3145
+ #: ../admin/view/wp-slimstat-reports.php:1625
3146
  msgid "c-ke"
3147
  msgstr "Kenya"
3148
 
3149
  # Nauru
3150
+ #: ../admin/view/wp-slimstat-reports.php:1625
3151
  msgid "c-nr"
3152
  msgstr "Nauru"
3153
 
3154
  # Democratic People's Republic of Korea
3155
+ #: ../admin/view/wp-slimstat-reports.php:1625
3156
  msgid "c-kp"
3157
  msgstr "Democratic People's Republic of Korea"
3158
 
3159
  # Republic of Korea
3160
+ #: ../admin/view/wp-slimstat-reports.php:1625
3161
  msgid "c-kr"
3162
  msgstr "Republic of Korea"
3163
 
3164
+ #: ../admin/view/wp-slimstat-reports.php:1625
3165
  msgid "c-kv"
3166
  msgstr "Kosovo"
3167
 
3168
  # Kuwait
3169
+ #: ../admin/view/wp-slimstat-reports.php:1625
3170
  msgid "c-kw"
3171
  msgstr "Kuwait"
3172
 
3173
  # Kyrgyzstan
3174
+ #: ../admin/view/wp-slimstat-reports.php:1625
3175
  msgid "c-kg"
3176
  msgstr "Kyrgyzstan"
3177
 
3178
  # Lao People's Democratic Republic
3179
+ #: ../admin/view/wp-slimstat-reports.php:1625
3180
  msgid "c-la"
3181
  msgstr "Lao People's Democratic Republic"
3182
 
3183
  # Latvia
3184
+ #: ../admin/view/wp-slimstat-reports.php:1625
3185
  msgid "c-lv"
3186
  msgstr "Latvia"
3187
 
3188
  # Lebanon
3189
+ #: ../admin/view/wp-slimstat-reports.php:1625
3190
  msgid "c-lb"
3191
  msgstr "Lebanon"
3192
 
3193
  # Lesotho
3194
+ #: ../admin/view/wp-slimstat-reports.php:1625
3195
  msgid "c-ls"
3196
  msgstr "Lesotho"
3197
 
3198
  # Liberia
3199
+ #: ../admin/view/wp-slimstat-reports.php:1625
3200
  msgid "c-lr"
3201
  msgstr "Liberia"
3202
 
3203
  # Libyan Arab Jamahiriya
3204
+ #: ../admin/view/wp-slimstat-reports.php:1625
3205
  msgid "c-ly"
3206
  msgstr "Libyan Arab Jamahiriya"
3207
 
3208
  # Liechtenstein
3209
+ #: ../admin/view/wp-slimstat-reports.php:1625
3210
  msgid "c-li"
3211
  msgstr "Liechtenstein"
3212
 
3213
  # Lithuania
3214
+ #: ../admin/view/wp-slimstat-reports.php:1625
3215
  msgid "c-lt"
3216
  msgstr "Lithuania"
3217
 
3218
  # Luxembourg
3219
+ #: ../admin/view/wp-slimstat-reports.php:1625
3220
  msgid "c-lu"
3221
  msgstr "Luxembourg"
3222
 
3223
  # The Former Yugoslav Republic of Macedonia
3224
+ #: ../admin/view/wp-slimstat-reports.php:1625
3225
  msgid "c-mk"
3226
  msgstr "The Former Yugoslav Republic of Macedonia"
3227
 
3228
  # Madagascar
3229
+ #: ../admin/view/wp-slimstat-reports.php:1625
3230
  msgid "c-mg"
3231
  msgstr "Madagascar"
3232
 
3233
  # Malawi
3234
+ #: ../admin/view/wp-slimstat-reports.php:1625
3235
  msgid "c-mw"
3236
  msgstr "Malawi"
3237
 
3238
  # Malaysia
3239
+ #: ../admin/view/wp-slimstat-reports.php:1625
3240
  msgid "c-my"
3241
  msgstr "Malaysia"
3242
 
3243
  # Mali
3244
+ #: ../admin/view/wp-slimstat-reports.php:1625
3245
  msgid "c-ml"
3246
  msgstr "Mali"
3247
 
3248
  # Malta
3249
+ #: ../admin/view/wp-slimstat-reports.php:1625
3250
  msgid "c-mt"
3251
  msgstr "Malta"
3252
 
3253
  # Martinique
3254
+ #: ../admin/view/wp-slimstat-reports.php:1625
3255
  msgid "c-mq"
3256
  msgstr "Martinique"
3257
 
3258
  # Mauritania
3259
+ #: ../admin/view/wp-slimstat-reports.php:1625
3260
  msgid "c-mr"
3261
  msgstr "Mauritania"
3262
 
3263
  # Mauritius
3264
+ #: ../admin/view/wp-slimstat-reports.php:1625
3265
  msgid "c-mu"
3266
  msgstr "Mauritius"
3267
 
3268
  # Mexico
3269
+ #: ../admin/view/wp-slimstat-reports.php:1625
3270
  msgid "c-mx"
3271
  msgstr "Mexico"
3272
 
3273
  # Moldova
3274
+ #: ../admin/view/wp-slimstat-reports.php:1625
3275
  msgid "c-md"
3276
  msgstr "Moldova"
3277
 
3278
  # Mongolia
3279
+ #: ../admin/view/wp-slimstat-reports.php:1625
3280
  msgid "c-mn"
3281
  msgstr "Mongolia"
3282
 
3283
  # Montenegro
3284
+ #: ../admin/view/wp-slimstat-reports.php:1625
3285
  msgid "c-me"
3286
  msgstr "Montenegro"
3287
 
3288
  # Montserrat
3289
+ #: ../admin/view/wp-slimstat-reports.php:1625
3290
  msgid "c-ms"
3291
  msgstr "Montserrat"
3292
 
3293
  # Morocco
3294
+ #: ../admin/view/wp-slimstat-reports.php:1625
3295
  msgid "c-ma"
3296
  msgstr "Morocco"
3297
 
3298
  # Mozambique
3299
+ #: ../admin/view/wp-slimstat-reports.php:1625
3300
  msgid "c-mz"
3301
  msgstr "Mozambique"
3302
 
3303
  # Myanmar
3304
+ #: ../admin/view/wp-slimstat-reports.php:1625
3305
  msgid "c-mm"
3306
  msgstr "Myanmar"
3307
 
3308
  # Namibia
3309
+ #: ../admin/view/wp-slimstat-reports.php:1625
3310
  msgid "c-na"
3311
  msgstr "Namibia"
3312
 
3313
  # Nepal
3314
+ #: ../admin/view/wp-slimstat-reports.php:1625
3315
  msgid "c-np"
3316
  msgstr "Nepal"
3317
 
3318
  # Netherlands
3319
+ #: ../admin/view/wp-slimstat-reports.php:1625
3320
  msgid "c-nl"
3321
  msgstr "Netherlands"
3322
 
3323
  # New Caledonia
3324
+ #: ../admin/view/wp-slimstat-reports.php:1625
3325
  msgid "c-nc"
3326
  msgstr "New Caledonia"
3327
 
3328
  # New Zealand
3329
+ #: ../admin/view/wp-slimstat-reports.php:1625
3330
  msgid "c-nz"
3331
  msgstr "New Zealand"
3332
 
3333
  # Nicaragua
3334
+ #: ../admin/view/wp-slimstat-reports.php:1625
3335
  msgid "c-ni"
3336
  msgstr "Nicaragua"
3337
 
3338
  # Niger
3339
+ #: ../admin/view/wp-slimstat-reports.php:1625
3340
  msgid "c-ne"
3341
  msgstr "Niger"
3342
 
3343
  # Nigeria
3344
+ #: ../admin/view/wp-slimstat-reports.php:1625
3345
  msgid "c-ng"
3346
  msgstr "Nigeria"
3347
 
3348
  # Norway
3349
+ #: ../admin/view/wp-slimstat-reports.php:1625
3350
  msgid "c-no"
3351
  msgstr "Norway"
3352
 
3353
  # Oman
3354
+ #: ../admin/view/wp-slimstat-reports.php:1625
3355
  msgid "c-om"
3356
  msgstr "Oman"
3357
 
3358
  # Pakistan
3359
+ #: ../admin/view/wp-slimstat-reports.php:1625
3360
  msgid "c-pk"
3361
  msgstr "Pakistan"
3362
 
3363
  # Palau
3364
+ #: ../admin/view/wp-slimstat-reports.php:1625
3365
  msgid "c-pw"
3366
  msgstr "Palau"
3367
 
3368
  # Occupied Palestinian Territory
3369
+ #: ../admin/view/wp-slimstat-reports.php:1625
3370
  msgid "c-ps"
3371
  msgstr "Occupied Palestinian Territory"
3372
 
3373
  # Panama
3374
+ #: ../admin/view/wp-slimstat-reports.php:1625
3375
  msgid "c-pa"
3376
  msgstr "Panama"
3377
 
3378
  # Papua New Guinea
3379
+ #: ../admin/view/wp-slimstat-reports.php:1625
3380
  msgid "c-pg"
3381
  msgstr "Papua New Guinea"
3382
 
3383
  # Paraguay
3384
+ #: ../admin/view/wp-slimstat-reports.php:1625
3385
  msgid "c-py"
3386
  msgstr "Paraguay"
3387
 
3388
  # Peru
3389
+ #: ../admin/view/wp-slimstat-reports.php:1625
3390
  msgid "c-pe"
3391
  msgstr "Peru"
3392
 
3393
  # Philippines
3394
+ #: ../admin/view/wp-slimstat-reports.php:1625
3395
  msgid "c-ph"
3396
  msgstr "Philippines"
3397
 
3398
  # Poland
3399
+ #: ../admin/view/wp-slimstat-reports.php:1625
3400
  msgid "c-pl"
3401
  msgstr "Poland"
3402
 
3403
  # Portugal
3404
+ #: ../admin/view/wp-slimstat-reports.php:1625
3405
  msgid "c-pt"
3406
  msgstr "Portugal"
3407
 
3408
  # Puerto Rico
3409
+ #: ../admin/view/wp-slimstat-reports.php:1625
3410
  msgid "c-pr"
3411
  msgstr "Puerto Rico"
3412
 
3413
  # Qatar
3414
+ #: ../admin/view/wp-slimstat-reports.php:1625
3415
  msgid "c-qa"
3416
  msgstr "Qatar"
3417
 
3418
  # Réunion
3419
+ #: ../admin/view/wp-slimstat-reports.php:1625
3420
  msgid "c-re"
3421
  msgstr "Réunion"
3422
 
3423
  # Romania
3424
+ #: ../admin/view/wp-slimstat-reports.php:1625
3425
  msgid "c-ro"
3426
  msgstr "Romania"
3427
 
3428
  # Russian Federation
3429
+ #: ../admin/view/wp-slimstat-reports.php:1625
3430
  msgid "c-ru"
3431
  msgstr "Russian Federation"
3432
 
3433
  # Rwanda
3434
+ #: ../admin/view/wp-slimstat-reports.php:1625
3435
  msgid "c-rw"
3436
  msgstr "Rwanda"
3437
 
3438
  # Saint Kitts and Nevis
3439
+ #: ../admin/view/wp-slimstat-reports.php:1625
3440
  msgid "c-kn"
3441
  msgstr "Saint Kitts and Nevis"
3442
 
3443
  # Saint Lucia
3444
+ #: ../admin/view/wp-slimstat-reports.php:1625
3445
  msgid "c-lc"
3446
  msgstr "Saint Lucia"
3447
 
3448
  # Saint Martin
3449
+ #: ../admin/view/wp-slimstat-reports.php:1625
3450
  msgid "c-mf"
3451
  msgstr "Saint Martin"
3452
 
3453
  # Saint Vincent and the Grenadines
3454
+ #: ../admin/view/wp-slimstat-reports.php:1625
3455
  msgid "c-vc"
3456
  msgstr "Saint Vincent and the Grenadines"
3457
 
3458
  # Samoa
3459
+ #: ../admin/view/wp-slimstat-reports.php:1625
3460
  msgid "c-ws"
3461
  msgstr "Samoa"
3462
 
3463
  # Sao Tome and Principe
3464
+ #: ../admin/view/wp-slimstat-reports.php:1625
3465
  msgid "c-st"
3466
  msgstr "Sao Tome and Principe"
3467
 
3468
  # Saudi Arabia
3469
+ #: ../admin/view/wp-slimstat-reports.php:1625
3470
  msgid "c-sa"
3471
  msgstr "Saudi Arabia"
3472
 
3473
  # Senegal
3474
+ #: ../admin/view/wp-slimstat-reports.php:1625
3475
  msgid "c-sn"
3476
  msgstr "Senegal"
3477
 
3478
  # Serbia
3479
+ #: ../admin/view/wp-slimstat-reports.php:1625
3480
  msgid "c-rs"
3481
  msgstr "Serbia"
3482
 
3483
  # Sierra Leone
3484
+ #: ../admin/view/wp-slimstat-reports.php:1625
3485
  msgid "c-sl"
3486
  msgstr "Sierra Leone"
3487
 
3488
  # Singapore
3489
+ #: ../admin/view/wp-slimstat-reports.php:1625
3490
  msgid "c-sg"
3491
  msgstr "Singapore"
3492
 
3493
  # Slovakia
3494
+ #: ../admin/view/wp-slimstat-reports.php:1625
3495
  msgid "c-sk"
3496
  msgstr "Slovakia"
3497
 
3498
  # Slovenia
3499
+ #: ../admin/view/wp-slimstat-reports.php:1625
3500
  msgid "c-si"
3501
  msgstr "Slovenia"
3502
 
3503
  # Solomon Islands
3504
+ #: ../admin/view/wp-slimstat-reports.php:1625
3505
  msgid "c-sb"
3506
  msgstr "Solomon Islands"
3507
 
3508
  # Somalia
3509
+ #: ../admin/view/wp-slimstat-reports.php:1625
3510
  msgid "c-so"
3511
  msgstr "Somalia"
3512
 
3513
  # South Africa
3514
+ #: ../admin/view/wp-slimstat-reports.php:1625
3515
  msgid "c-za"
3516
  msgstr "South Africa"
3517
 
3518
  # South Georgia and the South Sandwich Islands
3519
+ #: ../admin/view/wp-slimstat-reports.php:1625
3520
  msgid "c-gs"
3521
  msgstr "South Georgia and the South Sandwich Islands"
3522
 
3523
  # Spain
3524
+ #: ../admin/view/wp-slimstat-reports.php:1625
3525
  msgid "c-es"
3526
  msgstr "Spain"
3527
 
3528
  # Sri Lanka
3529
+ #: ../admin/view/wp-slimstat-reports.php:1625
3530
  msgid "c-lk"
3531
  msgstr "Sri Lanka"
3532
 
3533
+ #: ../admin/view/wp-slimstat-reports.php:1625
3534
  msgid "c-sc"
3535
  msgstr "Seychelles"
3536
 
3537
  # Sudan
3538
+ #: ../admin/view/wp-slimstat-reports.php:1625
3539
  msgid "c-sd"
3540
  msgstr "Sudan"
3541
 
3542
+ #: ../admin/view/wp-slimstat-reports.php:1625
3543
  msgid "c-ss"
3544
  msgstr "South Sudan"
3545
 
3546
  # Suriname
3547
+ #: ../admin/view/wp-slimstat-reports.php:1625
3548
  msgid "c-sr"
3549
  msgstr "Suriname"
3550
 
3551
  # Svalbard and Jan Mayen
3552
+ #: ../admin/view/wp-slimstat-reports.php:1625
3553
  msgid "c-sj"
3554
  msgstr "Svalbard and Jan Mayen"
3555
 
3556
  # Swaziland
3557
+ #: ../admin/view/wp-slimstat-reports.php:1625
3558
  msgid "c-sz"
3559
  msgstr "Swaziland"
3560
 
3561
  # Sweden
3562
+ #: ../admin/view/wp-slimstat-reports.php:1625
3563
  msgid "c-se"
3564
  msgstr "Sweden"
3565
 
3566
  # Switzerland
3567
+ #: ../admin/view/wp-slimstat-reports.php:1625
3568
  msgid "c-ch"
3569
  msgstr "Switzerland"
3570
 
3571
  # Syrian Arab Republic
3572
+ #: ../admin/view/wp-slimstat-reports.php:1625
3573
  msgid "c-sy"
3574
  msgstr "Syrian Arab Republic"
3575
 
3576
  # Taiwan, Province of China
3577
+ #: ../admin/view/wp-slimstat-reports.php:1625
3578
  msgid "c-tw"
3579
  msgstr "Taiwan"
3580
 
3581
  # Tajikistan
3582
+ #: ../admin/view/wp-slimstat-reports.php:1625
3583
  msgid "c-tj"
3584
  msgstr "Tajikistan"
3585
 
3586
  # United Republic of Tanzania
3587
+ #: ../admin/view/wp-slimstat-reports.php:1625
3588
  msgid "c-tz"
3589
  msgstr "United Republic of Tanzania"
3590
 
3591
  # Thailand
3592
+ #: ../admin/view/wp-slimstat-reports.php:1625
3593
  msgid "c-th"
3594
  msgstr "Thailand"
3595
 
3596
  # Timor-Leste
3597
+ #: ../admin/view/wp-slimstat-reports.php:1625
3598
  msgid "c-tl"
3599
  msgstr "Timor-Leste"
3600
 
3601
  # Togo
3602
+ #: ../admin/view/wp-slimstat-reports.php:1625
3603
  msgid "c-tg"
3604
  msgstr "Togo"
3605
 
3606
  # Tonga
3607
+ #: ../admin/view/wp-slimstat-reports.php:1625
3608
  msgid "c-to"
3609
  msgstr "Tonga"
3610
 
3611
  # Trinidad and Tobago
3612
+ #: ../admin/view/wp-slimstat-reports.php:1625
3613
  msgid "c-tt"
3614
  msgstr "Trinidad and Tobago"
3615
 
3616
  # Tunisia
3617
+ #: ../admin/view/wp-slimstat-reports.php:1625
3618
  msgid "c-tn"
3619
  msgstr "Tunisia"
3620
 
3621
  # Turkey
3622
+ #: ../admin/view/wp-slimstat-reports.php:1625
3623
  msgid "c-tr"
3624
  msgstr "Turkey"
3625
 
3626
  # Turkmenistan
3627
+ #: ../admin/view/wp-slimstat-reports.php:1625
3628
  msgid "c-tm"
3629
  msgstr "Turkmenistan"
3630
 
3631
  # Turks and Caicos Islands
3632
+ #: ../admin/view/wp-slimstat-reports.php:1625
3633
  msgid "c-tc"
3634
  msgstr "Turks and Caicos Islands"
3635
 
3636
  # Uganda
3637
+ #: ../admin/view/wp-slimstat-reports.php:1625
3638
  msgid "c-ug"
3639
  msgstr "Uganda"
3640
 
3641
  # Ukraine
3642
+ #: ../admin/view/wp-slimstat-reports.php:1625
3643
  msgid "c-ua"
3644
  msgstr "Ukraine"
3645
 
3646
  # United Arab Emirates
3647
+ #: ../admin/view/wp-slimstat-reports.php:1625
3648
  msgid "c-ae"
3649
  msgstr "United Arab Emirates"
3650
 
3651
  # United Kingdom
3652
+ #: ../admin/view/wp-slimstat-reports.php:1625
3653
  msgid "c-gb"
3654
  msgstr "United Kingdom"
3655
 
3656
  # United States
3657
+ #: ../admin/view/wp-slimstat-reports.php:1625
3658
  msgid "c-us"
3659
  msgstr "United States"
3660
 
3661
  # Uruguay
3662
+ #: ../admin/view/wp-slimstat-reports.php:1625
3663
  msgid "c-uy"
3664
  msgstr "Uruguay"
3665
 
3666
  # Uzbekistan
3667
+ #: ../admin/view/wp-slimstat-reports.php:1625
3668
  msgid "c-uz"
3669
  msgstr "Uzbekistan"
3670
 
3671
  # Vanuatu
3672
+ #: ../admin/view/wp-slimstat-reports.php:1625
3673
  msgid "c-vu"
3674
  msgstr "Vanuatu"
3675
 
3676
  # Venezuela
3677
+ #: ../admin/view/wp-slimstat-reports.php:1625
3678
  msgid "c-ve"
3679
  msgstr "Venezuela"
3680
 
3681
  # Viet Nam
3682
+ #: ../admin/view/wp-slimstat-reports.php:1625
3683
  msgid "c-vn"
3684
  msgstr "Viet Nam"
3685
 
3686
  # British Virgin Islands
3687
+ #: ../admin/view/wp-slimstat-reports.php:1625
3688
  msgid "c-vg"
3689
  msgstr "British Virgin Islands"
3690
 
3691
  # U.S. Virgin Islands
3692
+ #: ../admin/view/wp-slimstat-reports.php:1625
3693
  msgid "c-vi"
3694
  msgstr "U.S. Virgin Islands"
3695
 
3696
  # Western Sahara
3697
+ #: ../admin/view/wp-slimstat-reports.php:1625
3698
  msgid "c-eh"
3699
  msgstr "Western Sahara"
3700
 
3701
  # Yemen
3702
+ #: ../admin/view/wp-slimstat-reports.php:1625
3703
  msgid "c-ye"
3704
  msgstr "Yemen"
3705
 
3706
  # Zambia
3707
+ #: ../admin/view/wp-slimstat-reports.php:1625
3708
  msgid "c-zm"
3709
  msgstr "Zambia"
3710
 
3711
  # Zimbabwe
3712
+ #: ../admin/view/wp-slimstat-reports.php:1625
3713
  msgid "c-zw"
3714
  msgstr "Zimbabwe"
3715
 
3716
  # Guernsey
3717
+ #: ../admin/view/wp-slimstat-reports.php:1625
3718
  msgid "c-gg"
3719
  msgstr "Guernsey"
3720
 
3721
  # Jersey
3722
+ #: ../admin/view/wp-slimstat-reports.php:1625
3723
  msgid "c-je"
3724
  msgstr "Jersey"
3725
 
3726
  # Isle of Man
3727
+ #: ../admin/view/wp-slimstat-reports.php:1625
3728
  msgid "c-im"
3729
  msgstr "Isle of Man"
3730
 
3731
  # Maldives
3732
+ #: ../admin/view/wp-slimstat-reports.php:1625
3733
  msgid "c-mv"
3734
  msgstr "Maldives"
3735
 
3736
+ #: ../admin/view/wp-slimstat-reports.php:1626
3737
  msgid "c-eu"
3738
  msgstr "Europe"
3739
 
3740
+ #: ../admin/view/wp-slimstat-reports.php:1740
3741
  msgid "src"
3742
  msgstr ""
3743
 
3744
+ #: ../admin/view/wp-slimstat-reports.php:1744
3745
  msgid "serp"
3746
  msgstr ""
3747
 
3748
+ #: ../admin/view/wp-slimstat-reports.php:1752
3749
  msgid "Go to the referring page"
3750
  msgstr ""
3751
 
3752
+ #: ../admin/view/wp-slimstat-reports.php:1771
3753
  msgid "Remove filter for"
3754
  msgstr ""
3755
 
3756
+ #: ../admin/view/wp-slimstat-reports.php:1776
3757
  msgid "Save"
3758
  msgstr ""
3759
 
3760
+ #: ../admin/wp-slimstat-admin.php:34
3761
+ msgid "Access Log"
 
 
 
 
3762
  msgstr ""
3763
 
3764
+ #: ../admin/wp-slimstat-admin.php:40
3765
  msgid "Overview"
3766
  msgstr ""
3767
 
3768
+ #: ../admin/wp-slimstat-admin.php:46
3769
  msgid "Audience"
3770
  msgstr ""
3771
 
3772
+ #: ../admin/wp-slimstat-admin.php:52
3773
  msgid "Site Analysis"
3774
  msgstr ""
3775
 
3776
+ #: ../admin/wp-slimstat-admin.php:70
 
 
 
 
3777
  msgid "WordPress Dashboard"
3778
  msgstr ""
3779
 
3780
+ #: ../admin/wp-slimstat-admin.php:76
3781
  msgid "Inactive Reports"
3782
  msgstr ""
3783
 
3784
+ #: ../admin/wp-slimstat-admin.php:537 ../admin/wp-slimstat-admin.php:605
3785
+ msgid "Slimstat"
 
 
 
 
 
 
 
 
 
 
 
 
 
3786
  msgstr ""
3787
 
3788
+ #: ../admin/wp-slimstat-admin.php:625 ../admin/wp-slimstat-admin.php:653
3789
+ #: ../admin/wp-slimstat-admin.php:656
3790
+ msgid "Customize"
3791
  msgstr ""
3792
 
3793
+ #: ../admin/wp-slimstat-admin.php:735
3794
  msgid "Pageviews in the last "
3795
  msgstr ""
3796
 
3797
+ #: ../admin/wp-slimstat-admin.php:738
3798
  msgid "Unique IPs in the last "
3799
  msgstr ""
3800
 
3801
+ #: ../admin/wp-slimstat-admin.php:772
3802
  #, php-format
3803
  msgid ""
3804
  " And for keeping an eye on your web traffic with %sSlimStat Analytics%s."
3805
  msgstr ""
3806
 
3807
+ #: ../admin/wp-slimstat-admin.php:797
3808
  msgid "Show on screen"
3809
  msgstr ""
3810
 
3811
+ #: ../admin/wp-slimstat-admin.php:905
3812
  msgid "Already saved"
3813
  msgstr ""
3814
 
3815
+ #: ../admin/wp-slimstat-admin.php:913
3816
  msgid "Saved"
3817
  msgstr ""
3818
 
3819
+ #: ../admin/wp-slimstat-admin.php:933
3820
  msgid "Delete this filter"
3821
  msgstr ""
3822
 
3823
+ #: ../admin/wp-slimstat-admin.php:998
3824
  msgid "On"
3825
  msgstr ""
3826
 
3827
+ #: ../admin/wp-slimstat-admin.php:1067
3828
  msgid "Save Changes"
3829
  msgstr ""
3830
 
3831
+ #: ../admin/wp-slimstat-admin.php:1111
3832
  msgid "There was an error updating the following options:"
3833
  msgstr ""
3834
 
3835
+ #: ../admin/wp-slimstat-admin.php:1114
3836
  msgid "Your changes have been saved."
3837
  msgstr ""
3838
 
3839
+ #: ../admin/wp-slimstat-admin.php:1132
3840
  msgid "Definitions"
3841
  msgstr ""
3842
 
3843
+ #: ../admin/wp-slimstat-admin.php:1135
3844
  msgid "Pageview"
3845
  msgstr ""
3846
 
3847
+ #: ../admin/wp-slimstat-admin.php:1135
3848
  msgid ""
3849
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3850
  "with a \"hit\", which refers to a request for any file from a web server. "
3851
  "Slimstat logs a pageview each time the tracking code is executed"
3852
  msgstr ""
3853
 
3854
+ #: ../admin/wp-slimstat-admin.php:1136
3855
  msgid "(Human) Visit"
3856
  msgstr ""
3857
 
3858
+ #: ../admin/wp-slimstat-admin.php:1136
3859
  msgid ""
3860
  "A period of interaction between a visitor's browser and your website, ending "
3861
  "when the browser is closed or when the user has been inactive on that site "
3862
  "for 30 minutes"
3863
  msgstr ""
3864
 
3865
+ #: ../admin/wp-slimstat-admin.php:1137
3866
  msgid ""
3867
  "Any user who has left a comment on your blog, and is thus identified by "
3868
  "Wordpress as a returning visitor"
3869
  msgstr ""
3870
 
3871
+ #: ../admin/wp-slimstat-admin.php:1138
3872
  msgid "Unique IP"
3873
  msgstr ""
3874
 
3875
+ #: ../admin/wp-slimstat-admin.php:1138
3876
  msgid ""
3877
  "Used to differentiate between multiple requests to download a file from one "
3878
  "internet address (IP) and requests originating from many distinct addresses; "
3880
  "from, it is useful, but not perfect"
3881
  msgstr ""
3882
 
3883
+ #: ../admin/wp-slimstat-admin.php:1139
3884
  msgid ""
3885
  "the originating IP address of a client connecting to a web server through an "
3886
  "HTTP proxy or load balancer"
3887
  msgstr ""
3888
 
3889
+ #: ../admin/wp-slimstat-admin.php:1140
3890
  msgid "Direct Traffic"
3891
  msgstr ""
3892
 
3893
+ #: ../admin/wp-slimstat-admin.php:1140
3894
  msgid ""
3895
  "All those people showing up to your Web site by typing in the URL of your "
3896
  "Web site coming or from a bookmark; some people also call this \"default "
3897
  "traffic\" or \"ambient traffic\""
3898
  msgstr ""
3899
 
3900
+ #: ../admin/wp-slimstat-admin.php:1141
3901
  msgid "Search Engine"
3902
  msgstr ""
3903
 
3904
+ #: ../admin/wp-slimstat-admin.php:1141
3905
  msgid ""
3906
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3907
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3908
  msgstr ""
3909
 
3910
+ #: ../admin/wp-slimstat-admin.php:1142 ../admin/wp-slimstat-admin.php:1158
3911
  msgid "Keywords used by your visitors to find your website on a search engine"
3912
  msgstr ""
3913
 
3914
+ #: ../admin/wp-slimstat-admin.php:1143
3915
  msgid "SERP"
3916
  msgstr ""
3917
 
3918
+ #: ../admin/wp-slimstat-admin.php:1143
3919
  msgid ""
3920
  "Short for search engine results page, the Web page that a search engine "
3921
  "returns with the results of its search. The value shown represents your rank "
3922
  "(or position) within that list of results"
3923
  msgstr ""
3924
 
3925
+ #: ../admin/wp-slimstat-admin.php:1144
3926
  msgid ""
3927
  "Any program used for accessing a website; this includes browsers, robots, "
3928
  "spiders and any other program that was used to retrieve information from the "
3929
  "site"
3930
  msgstr ""
3931
 
3932
+ #: ../admin/wp-slimstat-admin.php:1145
3933
  msgid ""
3934
  "A link from one domain to another is said to be outbound from its source "
3935
  "anchor and inbound to its target. This report lists all the links to other "
3936
  "websites followed by your visitors."
3937
  msgstr ""
3938
 
3939
+ #: ../admin/wp-slimstat-admin.php:1152
3940
  msgid "Basic Filters"
3941
  msgstr ""
3942
 
3943
+ #: ../admin/wp-slimstat-admin.php:1155
3944
  msgid "User agent (Firefox, Chrome, ...)"
3945
  msgstr ""
3946
 
3947
+ #: ../admin/wp-slimstat-admin.php:1156
3948
  msgid "2-letter code (us, ru, de, it, ...)"
3949
  msgstr ""
3950
 
3951
+ #: ../admin/wp-slimstat-admin.php:1157
3952
  msgid "IP"
3953
  msgstr ""
3954
 
3955
+ #: ../admin/wp-slimstat-admin.php:1157
3956
  msgid "Visitor's public IP address"
3957
  msgstr ""
3958
 
3959
+ #: ../admin/wp-slimstat-admin.php:1159
3960
  msgid ""
3961
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3962
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3963
  "column) for more information"
3964
  msgstr ""
3965
 
3966
+ #: ../admin/wp-slimstat-admin.php:1160
3967
  msgid ""
3968
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3969
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3970
  "manual page</a> for more information"
3971
  msgstr ""
3972
 
3973
+ #: ../admin/wp-slimstat-admin.php:1161
3974
  msgid "URL accessed on your site"
3975
  msgstr ""
3976
 
3977
+ #: ../admin/wp-slimstat-admin.php:1162
3978
  msgid "Complete address of the referrer page"
3979
  msgstr ""
3980
 
3981
+ #: ../admin/wp-slimstat-admin.php:1163
3982
  msgid "Visitor's Name"
3983
  msgstr ""
3984
 
3985
+ #: ../admin/wp-slimstat-admin.php:1163
3986
  msgid ""
3987
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3988
  "comment"
3989
  msgstr ""
3990
 
3991
+ #: ../admin/wp-slimstat-admin.php:1171
3992
  msgid "Advanced Filters"
3993
  msgstr ""
3994
 
3995
+ #: ../admin/wp-slimstat-admin.php:1174
3996
  msgid "user agent version (9.0, 11, ...)"
3997
  msgstr ""
3998
 
3999
+ #: ../admin/wp-slimstat-admin.php:1175
4000
  msgid ""
4001
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
4002
  "all others"
4003
  msgstr ""
4004
 
4005
+ #: ../admin/wp-slimstat-admin.php:1176
4006
  msgid "Pageview Attributes"
4007
  msgstr ""
4008
 
4009
+ #: ../admin/wp-slimstat-admin.php:1176
4010
  msgid ""
4011
  "this field is set to <em>[pre]</em> if the resource has been accessed "
4012
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
4013
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
4014
  msgstr ""
4015
 
4016
+ #: ../admin/wp-slimstat-admin.php:1177
4017
  msgid "author associated to that post/page when the resource was accessed"
4018
  msgstr ""
4019
 
4020
+ #: ../admin/wp-slimstat-admin.php:1178
4021
  msgid "ID of the category/term associated to the resource, when available"
4022
  msgstr ""
4023
 
4024
+ #: ../admin/wp-slimstat-admin.php:1179
4025
  msgid "visitor's originating IP address, if available"
4026
  msgstr ""
4027
 
4028
+ #: ../admin/wp-slimstat-admin.php:1180
4029
  msgid ""
4030
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
4031
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
4034
  "information"
4035
  msgstr ""
4036
 
4037
+ #: ../admin/wp-slimstat-admin.php:1181
4038
  msgid "Screen Resolution"
4039
  msgstr ""
4040
 
4041
+ #: ../admin/wp-slimstat-admin.php:1181
4042
  msgid "viewport width and height (1024x768, 800x600, ...)"
4043
  msgstr ""
4044
 
4045
+ #: ../admin/wp-slimstat-admin.php:1182
4046
  msgid ""
4047
  "generally used in conjunction with <em>is not empty</em>, identifies human "
4048
  "visitors"
4049
  msgstr ""
4050
 
4051
+ #: ../admin/wp-slimstat-admin.php:1183
4052
  msgid "Date Filters"
4053
  msgstr ""
4054
 
4055
+ #: ../admin/wp-slimstat-admin.php:1183
4056
  msgid ""
4057
  "you can specify the timeframe by entering a number in the <em>interval</em> "
4058
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
4059
  "year=blank, interval=-1 will set a year-to-date filter)"
4060
  msgstr ""
4061
 
4062
+ #: ../admin/wp-slimstat-admin.php:1184
4063
  msgid "SERP Position"
4064
  msgstr ""
4065
 
4066
+ #: ../admin/wp-slimstat-admin.php:1184
4067
  msgid ""
4068
  "set the filter to Referer contains cd=N&, where N is the position you are "
4069
  "looking for"
4070
  msgstr ""
4071
 
4072
+ #: ../browscap/browser.php:51
4073
  msgid ""
4074
  "This library requires at least PHP 5.5. Please ask your service provider to "
4075
  "upgrade your server accordingly."
4076
  msgstr ""
4077
 
4078
+ #: ../browscap/browser.php:55
4079
  msgid "No updates are performed during AJAX requests."
4080
  msgstr ""
4081
 
4082
+ #: ../browscap/browser.php:59
4083
  msgid ""
4084
  "Please set your <code>FS_METHOD</code> variable to \"direct\" in your wp-"
4085
  "config.php file, or contact our support to obtain a copy of our Browscap "
4086
  "Library."
4087
  msgstr ""
4088
 
4089
+ #: ../browscap/browser.php:100
4090
  msgid ""
4091
  "The Browscap Library could not be opened on your filesystem. Please check "
4092
  "your server permissions and try again."
4093
  msgstr ""
4094
 
4095
+ #: ../browscap/browser.php:116
4096
  msgid ""
4097
  "There was an error checking the remote library version. Please try again "
4098
  "later."
4099
  msgstr ""
4100
 
4101
+ #: ../browscap/browser.php:123
4102
  msgid "Your version of the library does not need to be updated."
4103
  msgstr ""
4104
 
4105
+ #: ../browscap/browser.php:134
4106
  msgid ""
4107
  "There was an error saving the Browscap data file on your server. Please "
4108
  "check your folder permissions."
4109
  msgstr ""
4110
 
4111
+ #: ../browscap/browser.php:141
4112
  msgid ""
4113
  "There was an error downloading the Browscap data file from our server. "
4114
  "Please try again later."
4115
  msgstr ""
4116
 
4117
+ #: ../browscap/browser.php:150
4118
  msgid ""
4119
  "Could not initialize the WP Filesystem API. Please check your folder "
4120
  "permissions and PHP configuration."
4121
  msgstr ""
4122
 
4123
+ #: ../browscap/browser.php:166
4124
  msgid ""
4125
  "There was an error uncompressing the Browscap data file on your server. "
4126
  "Please check your folder permissions and PHP configuration."
4127
  msgstr ""
4128
 
4129
+ #: ../browscap/browser.php:174
4130
  msgid "The Browscap data file has been installed on your server."
4131
  msgstr ""
4132
 
4239
  msgstr "Mac 68k"
4240
 
4241
  #: ../languages/dynamic_strings.php:32
4242
+ msgid "macos"
4243
  msgstr "Mac OS X"
4244
 
4245
  #: ../languages/dynamic_strings.php:33
4246
+ msgid "macosx"
4247
+ msgstr "Mac OS X"
4248
+
4249
+ #: ../languages/dynamic_strings.php:34
4250
  msgid "macppc"
4251
  msgstr "Mac PowerPC"
4252
 
4253
+ #: ../languages/dynamic_strings.php:35
4254
  msgid "mandrake"
4255
  msgstr "Mandrake"
4256
 
4257
+ #: ../languages/dynamic_strings.php:36
4258
  msgid "mandriva"
4259
  msgstr "Mandriva"
4260
 
4261
+ #: ../languages/dynamic_strings.php:37
4262
  msgid "mepis"
4263
  msgstr "Mepis"
4264
 
4265
  # Spanish; Castilian
4266
+ #: ../languages/dynamic_strings.php:38
4267
  msgid "ms-dos"
4268
  msgstr "MS-Dos"
4269
 
4270
+ #: ../languages/dynamic_strings.php:39
4271
  msgid "netbsd"
4272
  msgstr "NetBSD"
4273
 
4274
+ #: ../languages/dynamic_strings.php:40
4275
  msgid "nintendo"
4276
  msgstr "Nintendo"
4277
 
4278
+ #: ../languages/dynamic_strings.php:41
4279
  msgid "openbsd"
4280
  msgstr "OpenBSD"
4281
 
4282
+ #: ../languages/dynamic_strings.php:42
4283
  msgid "openvms"
4284
  msgstr "OpenVMS"
4285
 
4286
+ #: ../languages/dynamic_strings.php:43
4287
  msgid "os/2"
4288
  msgstr "IBM OS/2"
4289
 
4290
+ #: ../languages/dynamic_strings.php:44
4291
  msgid "palm"
4292
  msgstr "Palm"
4293
 
4294
+ #: ../languages/dynamic_strings.php:45
4295
  msgid "palmos"
4296
  msgstr "Palm OS"
4297
 
4298
+ #: ../languages/dynamic_strings.php:46
4299
  msgid "pclinuxos"
4300
  msgstr "Linux"
4301
 
4302
+ #: ../languages/dynamic_strings.php:47
4303
  msgid "playstation"
4304
  msgstr "Playstation"
4305
 
4306
+ #: ../languages/dynamic_strings.php:48
4307
  msgid "powertv"
4308
  msgstr "PowerTV"
4309
 
4310
+ #: ../languages/dynamic_strings.php:49
4311
  msgid "redhat"
4312
  msgstr "RedHat"
4313
 
4314
+ #: ../languages/dynamic_strings.php:50
4315
  msgid "rim os"
4316
  msgstr "BlackBerry OS"
4317
 
4318
+ #: ../languages/dynamic_strings.php:51
4319
  msgid "risc os"
4320
  msgstr "Risc OS"
4321
 
4322
+ #: ../languages/dynamic_strings.php:52
4323
  msgid "slackware"
4324
  msgstr "Slackware"
4325
 
4326
+ #: ../languages/dynamic_strings.php:53
4327
  msgid "solaris"
4328
  msgstr "Solaris"
4329
 
4330
+ #: ../languages/dynamic_strings.php:54
4331
  msgid "sunos"
4332
  msgstr "Sun OS"
4333
 
4334
+ #: ../languages/dynamic_strings.php:55
4335
  msgid "suse"
4336
  msgstr "SuSE"
4337
 
4338
+ #: ../languages/dynamic_strings.php:56
4339
  msgid "symbianos"
4340
  msgstr "Symbian OS"
4341
 
4342
+ #: ../languages/dynamic_strings.php:57
4343
  msgid "ubuntu"
4344
  msgstr "Ubuntu"
4345
 
4346
+ #: ../languages/dynamic_strings.php:58
4347
  msgid "unix"
4348
  msgstr "Unix"
4349
 
4350
+ #: ../languages/dynamic_strings.php:59
4351
  msgid "unknown"
4352
  msgstr "Unknown"
4353
 
4354
+ #: ../languages/dynamic_strings.php:60
4355
  msgid "xandros"
4356
  msgstr "Xandros"
4357
 
4358
+ #: ../languages/dynamic_strings.php:61
4359
  msgid "wap"
4360
  msgstr "WAP"
4361
 
4362
+ #: ../languages/dynamic_strings.php:62
4363
  msgid "webos"
4364
  msgstr "WebOS"
4365
 
4366
+ #: ../languages/dynamic_strings.php:63
4367
  msgid "win10"
4368
  msgstr "Windows 10"
4369
 
4370
+ #: ../languages/dynamic_strings.php:64
4371
  msgid "win16"
4372
  msgstr "Windows 16-bit"
4373
 
4374
+ #: ../languages/dynamic_strings.php:65
4375
  msgid "win2000"
4376
  msgstr "Windows 2000"
4377
 
4378
+ #: ../languages/dynamic_strings.php:66
4379
  msgid "win2003"
4380
  msgstr "Windows 2003"
4381
 
4382
+ #: ../languages/dynamic_strings.php:67
4383
  msgid "win31"
4384
  msgstr "Windows 3.1"
4385
 
4386
+ #: ../languages/dynamic_strings.php:68
4387
  msgid "win32"
4388
  msgstr "Windows 32-bit"
4389
 
4390
+ #: ../languages/dynamic_strings.php:69 ../languages/dynamic_strings.php:70
4391
  msgid "win7"
4392
  msgstr "Windows 7"
4393
 
4394
+ #: ../languages/dynamic_strings.php:71
4395
  msgid "win8"
4396
  msgstr "Windows 8"
4397
 
4398
+ #: ../languages/dynamic_strings.php:72
4399
  msgid "win8.1"
4400
  msgstr "Windows 8.1"
4401
 
4402
+ #: ../languages/dynamic_strings.php:73
4403
  msgid "win95"
4404
  msgstr "Windows 95"
4405
 
4406
+ #: ../languages/dynamic_strings.php:74
4407
  msgid "win98"
4408
  msgstr "Windows 98"
4409
 
4410
+ #: ../languages/dynamic_strings.php:75
4411
  msgid "wince"
4412
  msgstr "Windows CE"
4413
 
4414
+ #: ../languages/dynamic_strings.php:76
4415
  msgid "winme"
4416
  msgstr "Windows ME"
4417
 
4418
+ #: ../languages/dynamic_strings.php:77
4419
  msgid "winnt"
4420
  msgstr "Windows NT"
4421
 
4422
+ #: ../languages/dynamic_strings.php:78
4423
  msgid "winphone7"
4424
  msgstr "Windows Phone"
4425
 
4426
+ #: ../languages/dynamic_strings.php:79
4427
  msgid "winphone7.5"
4428
  msgstr "Windows Phone 7.5"
4429
 
4430
+ #: ../languages/dynamic_strings.php:80
4431
  msgid "winphone8"
4432
  msgstr "Windows Phone 8"
4433
 
4434
+ #: ../languages/dynamic_strings.php:81
4435
  msgid "winphone8.1"
4436
  msgstr "Windows Phone 8.1"
4437
 
4438
+ #: ../languages/dynamic_strings.php:82
4439
  msgid "winrt"
4440
  msgstr "Windows RT Platform"
4441
 
4442
+ #: ../languages/dynamic_strings.php:83
4443
  msgid "winvista"
4444
  msgstr "Windows Vista"
4445
 
4446
+ #: ../languages/dynamic_strings.php:84
4447
  msgid "winxp"
4448
  msgstr "Windows XP"
4449
 
4450
+ #: ../languages/dynamic_strings.php:85
4451
  msgid "wyderos"
4452
  msgstr "WyderOS"
4453
 
4454
+ #: ../languages/dynamic_strings.php:86
4455
  msgid "zaurus"
4456
  msgstr "Zaurus"
4457
 
4458
+ #: ../languages/dynamic_strings.php:89
4459
  msgid "acrobat"
4460
  msgstr "Acrobat Reader"
4461
 
4462
+ #: ../languages/dynamic_strings.php:90
4463
  msgid "director"
4464
  msgstr "Macromedia Director"
4465
 
4466
+ #: ../languages/dynamic_strings.php:91
4467
  msgid "flash"
4468
  msgstr "Adobe Flash Player"
4469
 
4470
+ #: ../languages/dynamic_strings.php:92
4471
  msgid "mediaplayer"
4472
  msgstr "Microsoft Media Player"
4473
 
4474
+ #: ../languages/dynamic_strings.php:93
4475
  msgid "quicktime"
4476
  msgstr "QuickTime"
4477
 
4478
+ #: ../languages/dynamic_strings.php:94
4479
  msgid "pdfviewer"
4480
  msgstr "PDF Viewer"
4481
 
4482
+ #: ../languages/dynamic_strings.php:95
4483
  msgid "real"
4484
  msgstr "Real Player"
4485
 
4486
+ #: ../languages/dynamic_strings.php:96
4487
  msgid "silverlight"
4488
  msgstr "Microsoft Silverlight"
4489
 
4490
+ #: ../languages/dynamic_strings.php:99
4491
  msgid "p-and"
4492
  msgstr "Android"
4493
 
4494
+ #: ../languages/dynamic_strings.php:100
4495
  msgid "p-bla"
4496
  msgstr "BlackBerry"
4497
 
4498
+ #: ../languages/dynamic_strings.php:101
4499
  msgid "p-chr"
4500
  msgstr "Chrome OS"
4501
 
4502
+ #: ../languages/dynamic_strings.php:102
4503
  msgid "p-fir"
4504
  msgstr "Fire OS"
4505
 
4506
+ #: ../languages/dynamic_strings.php:103
4507
  msgid "p-fre"
4508
  msgstr "Linux FreeBSD"
4509
 
4510
+ #: ../languages/dynamic_strings.php:104
4511
  msgid "p-ios"
4512
  msgstr "Apple iOS"
4513
 
4514
+ #: ../languages/dynamic_strings.php:105
4515
  msgid "p-jav"
4516
  msgstr "Java-based OS"
4517
 
4518
+ #: ../languages/dynamic_strings.php:106
4519
  msgid "p-lin"
4520
  msgstr "Linux"
4521
 
4522
+ #: ../languages/dynamic_strings.php:107
4523
  msgid "p-mac"
4524
  msgstr "Apple"
4525
 
4526
+ #: ../languages/dynamic_strings.php:108
4527
  msgid "p-rim"
4528
  msgstr "Blackberry RIM"
4529
 
4530
+ #: ../languages/dynamic_strings.php:109
4531
  msgid "p-sym"
4532
  msgstr "Symbian OS"
4533
 
4534
+ #: ../languages/dynamic_strings.php:110
4535
  msgid "p-ubu"
4536
  msgstr "Linux Ubuntu"
4537
 
4538
+ #: ../languages/dynamic_strings.php:111
4539
  msgid "p-unk"
4540
  msgstr "Unknown"
4541
 
4542
+ #: ../languages/dynamic_strings.php:112
4543
  msgid "p-win"
4544
  msgstr "Microsoft"
4545
 
4546
  # Afrikaans
4547
+ #: ../languages/dynamic_strings.php:115
4548
  msgid "l-af"
4549
  msgstr "Afrikaans"
4550
 
4551
  # Afrikaans
4552
+ #: ../languages/dynamic_strings.php:116
4553
  msgid "l-af-za"
4554
  msgstr "Afrikaans (South Africa)"
4555
 
4556
  # Arabic
4557
+ #: ../languages/dynamic_strings.php:117
4558
  msgid "l-ar"
4559
  msgstr "Arabic"
4560
 
4561
  # Arabic
4562
+ #: ../languages/dynamic_strings.php:118
4563
  msgid "l-ar-ae"
4564
  msgstr "Arabic (U.A.E.)"
4565
 
4566
  # Arabic
4567
+ #: ../languages/dynamic_strings.php:119
4568
  msgid "l-ar-bh"
4569
  msgstr "Arabic (Bahrain)"
4570
 
4571
  # Arabic
4572
+ #: ../languages/dynamic_strings.php:120
4573
  msgid "l-ar-dz"
4574
  msgstr "Arabic (Algeria)"
4575
 
4576
  # Arabic
4577
+ #: ../languages/dynamic_strings.php:121
4578
  msgid "l-ar-eg"
4579
  msgstr "Arabic (Egypt)"
4580
 
4581
  # Arabic
4582
+ #: ../languages/dynamic_strings.php:122
4583
  msgid "l-ar-iq"
4584
  msgstr "Arabic (Iraq)"
4585
 
4586
  # Arabic
4587
+ #: ../languages/dynamic_strings.php:123
4588
  msgid "l-ar-jo"
4589
  msgstr "Arabic (Jordan)"
4590
 
4591
  # Arabic
4592
+ #: ../languages/dynamic_strings.php:124
4593
  msgid "l-ar-kw"
4594
  msgstr "Arabic (Kuwait)"
4595
 
4596
  # Arabic
4597
+ #: ../languages/dynamic_strings.php:125
4598
  msgid "l-ar-lb"
4599
  msgstr "Arabic (Lebanon)"
4600
 
4601
  # Arabic
4602
+ #: ../languages/dynamic_strings.php:126
4603
  msgid "l-ar-ly"
4604
  msgstr "Arabic (Libya)"
4605
 
4606
  # Arabic
4607
+ #: ../languages/dynamic_strings.php:127
4608
  msgid "l-ar-ma"
4609
  msgstr "Arabic (Morocco)"
4610
 
4611
  # Arabic
4612
+ #: ../languages/dynamic_strings.php:128
4613
  msgid "l-ar-om"
4614
  msgstr "Arabic (Oman)"
4615
 
4616
  # Arabic
4617
+ #: ../languages/dynamic_strings.php:129
4618
  msgid "l-ar-qa"
4619
  msgstr "Arabic (Qatar)"
4620
 
4621
  # Arabic
4622
+ #: ../languages/dynamic_strings.php:130
4623
  msgid "l-ar-sa"
4624
  msgstr "Arabic (Saudi Arabia)"
4625
 
4626
  # Arabic
4627
+ #: ../languages/dynamic_strings.php:131
4628
  msgid "l-ar-sy"
4629
  msgstr "Arabic (Syria)"
4630
 
4631
  # Arabic
4632
+ #: ../languages/dynamic_strings.php:132
4633
  msgid "l-ar-tn"
4634
  msgstr "Arabic (Tunisia)"
4635
 
4636
  # Arabic
4637
+ #: ../languages/dynamic_strings.php:133
4638
  msgid "l-ar-ye"
4639
  msgstr "Arabic (Yemen)"
4640
 
4641
  # Azerbaijani
4642
+ #: ../languages/dynamic_strings.php:134
4643
  msgid "l-az"
4644
  msgstr "Azerbaijani"
4645
 
4646
  # Azerbaijani
4647
+ #: ../languages/dynamic_strings.php:135
4648
  msgid "l-az-az"
4649
  msgstr "Azeri (Latin)"
4650
 
4651
  # Belarusian
4652
+ #: ../languages/dynamic_strings.php:136
4653
  msgid "l-be"
4654
  msgstr "Belarusian"
4655
 
4656
  # Belarusian
4657
+ #: ../languages/dynamic_strings.php:137
4658
  msgid "l-be-by"
4659
  msgstr "Belarusian (Belarus)"
4660
 
4661
  # Bulgarian
4662
+ #: ../languages/dynamic_strings.php:138
4663
  msgid "l-bg"
4664
  msgstr "Bulgarian"
4665
 
4666
  # Bulgarian
4667
+ #: ../languages/dynamic_strings.php:139
4668
  msgid "l-bg-bg"
4669
  msgstr "Bulgarian (Bulgaria)"
4670
 
4671
  # Bosnian
4672
+ #: ../languages/dynamic_strings.php:140
4673
  msgid "l-bs-ba"
4674
  msgstr "Bosnian"
4675
 
4676
  # Catalan; Valencian
4677
+ #: ../languages/dynamic_strings.php:141
4678
  msgid "l-ca"
4679
  msgstr "Catalan"
4680
 
4681
  # Catalan; Valencian
4682
+ #: ../languages/dynamic_strings.php:142
4683
  msgid "l-ca-es"
4684
  msgstr "Catalan; Valencian"
4685
 
4686
  # Czech
4687
+ #: ../languages/dynamic_strings.php:143
4688
  msgid "l-cs"
4689
  msgstr "Czech"
4690
 
4691
  # Czech
4692
+ #: ../languages/dynamic_strings.php:144
4693
  msgid "l-cs-cz"
4694
  msgstr "Czech (Czech Republic)"
4695
 
4696
  # Welsh
4697
+ #: ../languages/dynamic_strings.php:145
4698
  msgid "l-cy"
4699
  msgstr "Welsh"
4700
 
4701
  # Welsh
4702
+ #: ../languages/dynamic_strings.php:146
4703
  msgid "l-cy-gb"
4704
  msgstr "Welsh (UK)"
4705
 
4706
  # Danish
4707
+ #: ../languages/dynamic_strings.php:147
4708
  msgid "l-da"
4709
  msgstr "Danish"
4710
 
4711
  # Danish
4712
+ #: ../languages/dynamic_strings.php:148
4713
  msgid "l-da-dk"
4714
  msgstr "Danish (Denmark)"
4715
 
4716
  # German
4717
+ #: ../languages/dynamic_strings.php:149
4718
  msgid "l-de"
4719
  msgstr "German"
4720
 
4721
  # German
4722
+ #: ../languages/dynamic_strings.php:150
4723
  msgid "l-de-at"
4724
  msgstr "German (Austria)"
4725
 
4726
  # German
4727
+ #: ../languages/dynamic_strings.php:151
4728
  msgid "l-de-ch"
4729
  msgstr "German (Switzerland)"
4730
 
4731
  # German
4732
+ #: ../languages/dynamic_strings.php:152
4733
  msgid "l-de-de"
4734
  msgstr "German (Germany)"
4735
 
4736
  # German
4737
+ #: ../languages/dynamic_strings.php:153
4738
  msgid "l-de-li"
4739
  msgstr "German (Liechtenstein)"
4740
 
4741
  # German
4742
+ #: ../languages/dynamic_strings.php:154
4743
  msgid "l-de-lu"
4744
  msgstr "German (Luxembourg)"
4745
 
4746
  # Dhivehi; Divehi; Maldivian
4747
+ #: ../languages/dynamic_strings.php:155
4748
  msgid "l-dv"
4749
  msgstr "Dhivehi; Divehi; Maldivian"
4750
 
4751
  # Dhivehi; Divehi; Maldivian
4752
+ #: ../languages/dynamic_strings.php:156
4753
  msgid "l-dv-mv"
4754
  msgstr "Maldivian"
4755
 
4756
  # Modern Greek (1453-)
4757
+ #: ../languages/dynamic_strings.php:157
4758
  msgid "l-el"
4759
  msgstr "Greek"
4760
 
4761
  # Modern Greek (1453-)
4762
+ #: ../languages/dynamic_strings.php:158
4763
  msgid "l-el-gr"
4764
  msgstr "Greek (Greece)"
4765
 
4766
  # English
4767
+ #: ../languages/dynamic_strings.php:159
4768
  msgid "l-en"
4769
  msgstr "English"
4770
 
4771
  # English
4772
+ #: ../languages/dynamic_strings.php:160
4773
  msgid "l-en-au"
4774
  msgstr "English (Australia)"
4775
 
4776
  # English
4777
+ #: ../languages/dynamic_strings.php:161
4778
  msgid "l-en-bz"
4779
  msgstr "English (Belize)"
4780
 
4781
  # English
4782
+ #: ../languages/dynamic_strings.php:162
4783
  msgid "l-en-ca"
4784
  msgstr "English (Canada)"
4785
 
4786
  # English
4787
+ #: ../languages/dynamic_strings.php:163
4788
  msgid "l-en-cb"
4789
  msgstr "English (Caribbean)"
4790
 
4791
  # English
4792
+ #: ../languages/dynamic_strings.php:164
4793
  msgid "l-en-gb"
4794
  msgstr "English (Great Britain)"
4795
 
4796
  # English
4797
+ #: ../languages/dynamic_strings.php:165
4798
  msgid "l-en-ie"
4799
  msgstr "English (Ireland)"
4800
 
4801
  # English
4802
+ #: ../languages/dynamic_strings.php:166
4803
  msgid "l-en-jm"
4804
  msgstr "English (Jamaica)"
4805
 
4806
  # English
4807
+ #: ../languages/dynamic_strings.php:167
4808
  msgid "l-en-nz"
4809
  msgstr "English (New Zealand)"
4810
 
4811
  # English
4812
+ #: ../languages/dynamic_strings.php:168
4813
  msgid "l-en-ph"
4814
  msgstr "English (Philippines)"
4815
 
4816
  # English
4817
+ #: ../languages/dynamic_strings.php:169
4818
  msgid "l-en-tt"
4819
  msgstr "English (Trinidad and Tobago)"
4820
 
4821
  # English
4822
+ #: ../languages/dynamic_strings.php:170
4823
  msgid "l-en-us"
4824
  msgstr "English (USA)"
4825
 
4826
  # English
4827
+ #: ../languages/dynamic_strings.php:171
4828
  msgid "l-en-za"
4829
  msgstr "English (South Africa)"
4830
 
4831
  # English
4832
+ #: ../languages/dynamic_strings.php:172
4833
  msgid "l-en-zw"
4834
  msgstr "English (Zimbabwe)"
4835
 
4836
  # Esperanto
4837
+ #: ../languages/dynamic_strings.php:173
4838
  msgid "l-eo"
4839
  msgstr "Esperanto"
4840
 
4841
  # Spanish; Castilian
4842
+ #: ../languages/dynamic_strings.php:174
4843
  msgid "l-es"
4844
  msgstr "Spanish"
4845
 
4846
  # Spanish; Castilian
4847
+ #: ../languages/dynamic_strings.php:175
4848
  msgid "l-es-ar"
4849
  msgstr "Spanish (Argentina)"
4850
 
4851
  # Spanish; Castilian
4852
+ #: ../languages/dynamic_strings.php:176
4853
  msgid "l-es-bo"
4854
  msgstr "Spanish (Bolivia)"
4855
 
4856
  # Spanish; Castilian
4857
+ #: ../languages/dynamic_strings.php:177
4858
  msgid "l-es-cl"
4859
  msgstr "Spanish (Chile)"
4860
 
4861
  # Spanish; Castilian
4862
+ #: ../languages/dynamic_strings.php:178
4863
  msgid "l-es-co"
4864
  msgstr "Spanish (Colombia)"
4865
 
4866
  # Spanish; Castilian
4867
+ #: ../languages/dynamic_strings.php:179
4868
  msgid "l-es-cr"
4869
  msgstr "Spanish (Costa Rica)"
4870
 
4871
  # Spanish; Castilian
4872
+ #: ../languages/dynamic_strings.php:180
4873
  msgid "l-es-do"
4874
  msgstr "Spanish (Dominican Republic)"
4875
 
4876
  # Spanish; Castilian
4877
+ #: ../languages/dynamic_strings.php:181
4878
  msgid "l-es-ec"
4879
  msgstr "Spanish (Ecuador)"
4880
 
4881
  # Spanish; Castilian
4882
+ #: ../languages/dynamic_strings.php:182
4883
  msgid "l-es-es"
4884
  msgstr "Spanish (Spain)"
4885
 
4886
  # Spanish; Castilian
4887
+ #: ../languages/dynamic_strings.php:183
4888
  msgid "l-es-gt"
4889
  msgstr "Spanish (Guatemala)"
4890
 
4891
  # Spanish; Castilian
4892
+ #: ../languages/dynamic_strings.php:184
4893
  msgid "l-es-hn"
4894
  msgstr "Spanish (Honduras)"
4895
 
4896
  # Spanish; Castilian
4897
+ #: ../languages/dynamic_strings.php:185
4898
  msgid "l-es-mx"
4899
  msgstr "Spanish (Mexico)"
4900
 
4901
  # Spanish; Castilian
4902
+ #: ../languages/dynamic_strings.php:186
4903
  msgid "l-es-ni"
4904
  msgstr "Spanish (Nicaragua)"
4905
 
4906
  # Spanish; Castilian
4907
+ #: ../languages/dynamic_strings.php:187
4908
  msgid "l-es-pa"
4909
  msgstr "Spanish (Panama)"
4910
 
4911
  # Spanish; Castilian
4912
+ #: ../languages/dynamic_strings.php:188
4913
  msgid "l-es-pe"
4914
  msgstr "Spanish (Peru)"
4915
 
4916
  # Spanish; Castilian
4917
+ #: ../languages/dynamic_strings.php:189
4918
  msgid "l-es-pr"
4919
  msgstr "Spanish (Puerto Rico)"
4920
 
4921
  # Spanish; Castilian
4922
+ #: ../languages/dynamic_strings.php:190
4923
  msgid "l-es-py"
4924
  msgstr "Spanish (Paraguay)"
4925
 
4926
  # Spanish; Castilian
4927
+ #: ../languages/dynamic_strings.php:191
4928
  msgid "l-es-sv"
4929
  msgstr "Spanish (El Salvador)"
4930
 
4931
  # Spanish; Castilian
4932
+ #: ../languages/dynamic_strings.php:192
4933
  msgid "l-es-uy"
4934
  msgstr "Spanish (Uruguay)"
4935
 
4936
  # Spanish; Castilian
4937
+ #: ../languages/dynamic_strings.php:193
4938
  msgid "l-es-ve"
4939
  msgstr "Spanish (Venezuela)"
4940
 
4941
  # Estonian
4942
+ #: ../languages/dynamic_strings.php:194
4943
  msgid "l-et"
4944
  msgstr "Estonian"
4945
 
4946
  # Estonian
4947
+ #: ../languages/dynamic_strings.php:195
4948
  msgid "l-et-ee"
4949
  msgstr "Estonian (Estonia)"
4950
 
4951
  # Basque
4952
+ #: ../languages/dynamic_strings.php:196
4953
  msgid "l-eu"
4954
  msgstr "Basque"
4955
 
4956
  # Basque
4957
+ #: ../languages/dynamic_strings.php:197
4958
  msgid "l-eu-es"
4959
  msgstr "Basque (Spain)"
4960
 
4961
  # Persian
4962
+ #: ../languages/dynamic_strings.php:198
4963
  msgid "l-fa"
4964
  msgstr "Persian"
4965
 
4966
  # Persian
4967
+ #: ../languages/dynamic_strings.php:199
4968
  msgid "l-fa-ir"
4969
  msgstr "Persian (Iran)"
4970
 
4971
  # Finnish
4972
+ #: ../languages/dynamic_strings.php:200
4973
  msgid "l-fi"
4974
  msgstr "Finnish"
4975
 
4976
  # Finnish
4977
+ #: ../languages/dynamic_strings.php:201
4978
  msgid "l-fi-fi"
4979
  msgstr "Finnish (Finland)"
4980
 
4981
  # Faroese
4982
+ #: ../languages/dynamic_strings.php:202
4983
  msgid "l-fo"
4984
  msgstr "Faroese"
4985
 
4986
  # Faroese
4987
+ #: ../languages/dynamic_strings.php:203
4988
  msgid "l-fo-fo"
4989
  msgstr "Faroese (Faroe Islands)"
4990
 
4991
  # French
4992
+ #: ../languages/dynamic_strings.php:204
4993
  msgid "l-fr"
4994
  msgstr "French"
4995
 
4996
  # French
4997
+ #: ../languages/dynamic_strings.php:205
4998
  msgid "l-fr-be"
4999
  msgstr "French (Belgium)"
5000
 
5001
  # French
5002
+ #: ../languages/dynamic_strings.php:206
5003
  msgid "l-fr-ca"
5004
  msgstr "French (Canada)"
5005
 
5006
  # French
5007
+ #: ../languages/dynamic_strings.php:207
5008
  msgid "l-fr-ch"
5009
  msgstr "French (Switzerland)"
5010
 
5011
  # French
5012
+ #: ../languages/dynamic_strings.php:208
5013
  msgid "l-fr-fr"
5014
  msgstr "French (France)"
5015
 
5016
  # French
5017
+ #: ../languages/dynamic_strings.php:209
5018
  msgid "l-fr-lu"
5019
  msgstr "French (Luxembourg)"
5020
 
5021
  # French
5022
+ #: ../languages/dynamic_strings.php:210
5023
  msgid "l-fr-mc"
5024
  msgstr "French (Monaco)"
5025
 
5026
  # Galician
5027
+ #: ../languages/dynamic_strings.php:211
5028
  msgid "l-gl"
5029
  msgstr "Galician"
5030
 
5031
  # Spanish; Castilian
5032
+ #: ../languages/dynamic_strings.php:212
5033
  msgid "l-gl-es"
5034
  msgstr "Galician (Spain)"
5035
 
5036
  # Gujarati
5037
+ #: ../languages/dynamic_strings.php:213
5038
  msgid "l-gu"
5039
  msgstr "Gujarati"
5040
 
5041
  # Gujarati
5042
+ #: ../languages/dynamic_strings.php:214
5043
  msgid "l-gu-in"
5044
  msgstr "Gujarati (India)"
5045
 
5046
  # Hebrew
5047
+ #: ../languages/dynamic_strings.php:215
5048
  msgid "l-he"
5049
  msgstr "Hebrew"
5050
 
5051
  # Hebrew
5052
+ #: ../languages/dynamic_strings.php:216
5053
  msgid "l-he-il"
5054
  msgstr "Hebrew (Israel)"
5055
 
5056
  # Hindi
5057
+ #: ../languages/dynamic_strings.php:217
5058
  msgid "l-hi"
5059
  msgstr "Hindi"
5060
 
5061
  # Hindi
5062
+ #: ../languages/dynamic_strings.php:218
5063
  msgid "l-hi-in"
5064
  msgstr "Hindi (India)"
5065
 
5066
  # Croatian
5067
+ #: ../languages/dynamic_strings.php:219
5068
  msgid "l-hr"
5069
  msgstr "Croatian"
5070
 
5071
  # Croatian
5072
+ #: ../languages/dynamic_strings.php:220
5073
  msgid "l-hr-ba"
5074
  msgstr "Croatian (Bosnia)"
5075
 
5076
  # Croatian
5077
+ #: ../languages/dynamic_strings.php:221
5078
  msgid "l-hr-hr"
5079
  msgstr "Croatian (Croatia)"
5080
 
5081
  # Hungarian
5082
+ #: ../languages/dynamic_strings.php:222
5083
  msgid "l-hu"
5084
  msgstr "Hungarian"
5085
 
5086
  # Hungarian
5087
+ #: ../languages/dynamic_strings.php:223
5088
  msgid "l-hu-hu"
5089
  msgstr "Hungarian (Hungary)"
5090
 
5091
  # Armenian
5092
+ #: ../languages/dynamic_strings.php:224
5093
  msgid "l-hy"
5094
  msgstr "Armenian"
5095
 
5096
  # Armenian
5097
+ #: ../languages/dynamic_strings.php:225
5098
  msgid "l-hy-am"
5099
  msgstr "Armenian (Armenia)"
5100
 
5101
+ #: ../languages/dynamic_strings.php:226
5102
  msgid "l-id"
5103
  msgstr "Indonesian"
5104
 
5105
+ #: ../languages/dynamic_strings.php:227
5106
  msgid "l-id-id"
5107
  msgstr "Indonesian"
5108
 
5109
  # Icelandic
5110
+ #: ../languages/dynamic_strings.php:228
5111
  msgid "l-is"
5112
  msgstr "Icelandic"
5113
 
5114
  # Icelandic
5115
+ #: ../languages/dynamic_strings.php:229
5116
  msgid "l-is-is"
5117
  msgstr "Icelandic (Iceland)"
5118
 
5119
  # Italian
5120
+ #: ../languages/dynamic_strings.php:230
5121
  msgid "l-it"
5122
  msgstr "Italian"
5123
 
5124
  # Italian
5125
+ #: ../languages/dynamic_strings.php:231
5126
  msgid "l-it-ch"
5127
  msgstr "Italian (Switzerland)"
5128
 
5129
  # Italian
5130
+ #: ../languages/dynamic_strings.php:232
5131
  msgid "l-it-it"
5132
  msgstr "Italian (Italy)"
5133
 
5134
  # Japanese
5135
+ #: ../languages/dynamic_strings.php:233
5136
  msgid "l-ja"
5137
  msgstr "Japanese"
5138
 
5139
  # Japanese
5140
+ #: ../languages/dynamic_strings.php:234
5141
  msgid "l-ja-jp"
5142
  msgstr "Japanese (Japan)"
5143
 
5144
  # Georgian
5145
+ #: ../languages/dynamic_strings.php:235
5146
  msgid "l-ka"
5147
  msgstr "Georgian"
5148
 
5149
  # Georgian
5150
+ #: ../languages/dynamic_strings.php:236
5151
  msgid "l-ka-ge"
5152
  msgstr "Georgian (Georgia)"
5153
 
5154
  # Kazakh
5155
+ #: ../languages/dynamic_strings.php:237
5156
  msgid "l-kk"
5157
  msgstr "Kazakh"
5158
 
5159
  # Kazakh
5160
+ #: ../languages/dynamic_strings.php:238
5161
  msgid "l-kk-kz"
5162
  msgstr "Kazakh (Kazakhstan)"
5163
 
5164
  # Kannada
5165
+ #: ../languages/dynamic_strings.php:239
5166
  msgid "l-kn"
5167
  msgstr "Kannada"
5168
 
5169
  # Kannada
5170
+ #: ../languages/dynamic_strings.php:240
5171
  msgid "l-kn-in"
5172
  msgstr "Kannada (India)"
5173
 
5174
  # Korean
5175
+ #: ../languages/dynamic_strings.php:241
5176
  msgid "l-ko"
5177
  msgstr "Korean"
5178
 
5179
  # Korean
5180
+ #: ../languages/dynamic_strings.php:242
5181
  msgid "l-ko-kr"
5182
  msgstr "Korean (Korea)"
5183
 
5184
  # Korean
5185
+ #: ../languages/dynamic_strings.php:243
5186
  msgid "l-kok"
5187
  msgstr "Konkani"
5188
 
5189
  # Korean
5190
+ #: ../languages/dynamic_strings.php:244
5191
  msgid "l-kok-in"
5192
  msgstr "Konkani (India)"
5193
 
5194
  # Kirghiz; Kyrgyz
5195
+ #: ../languages/dynamic_strings.php:245
5196
  msgid "l-ky"
5197
  msgstr "Kirghiz"
5198
 
5199
  # Kirghiz; Kyrgyz
5200
+ #: ../languages/dynamic_strings.php:246
5201
  msgid "l-ky-kg"
5202
  msgstr "Kirghiz (Kazakhstan)"
5203
 
5204
  # Lithuanian
5205
+ #: ../languages/dynamic_strings.php:247
5206
  msgid "l-lt"
5207
  msgstr "Lithuanian"
5208
 
5209
  # Lithuanian
5210
+ #: ../languages/dynamic_strings.php:248
5211
  msgid "l-lt-lt"
5212
  msgstr "Lithuanian (Lithuania)"
5213
 
5214
  # Latvian
5215
+ #: ../languages/dynamic_strings.php:249
5216
  msgid "l-lv"
5217
  msgstr "Latvian"
5218
 
5219
  # Latvian
5220
+ #: ../languages/dynamic_strings.php:250
5221
  msgid "l-lv-lv"
5222
  msgstr "Latvian (Latvia)"
5223
 
5224
  # Maori
5225
+ #: ../languages/dynamic_strings.php:251
5226
  msgid "l-mi"
5227
  msgstr "Maori"
5228
 
5229
  # Maori
5230
+ #: ../languages/dynamic_strings.php:252
5231
  msgid "l-mi-nz"
5232
  msgstr "Maori (New Zealand)"
5233
 
5234
  # Macedonian
5235
+ #: ../languages/dynamic_strings.php:253
5236
  msgid "l-mk"
5237
  msgstr "Macedonian"
5238
 
5239
  # Macedonian
5240
+ #: ../languages/dynamic_strings.php:254
5241
  msgid "l-mk-ml"
5242
  msgstr "Macedonian (FYROM)"
5243
 
5244
  # Mongolian
5245
+ #: ../languages/dynamic_strings.php:255
5246
  msgid "l-mn"
5247
  msgstr "Mongolian"
5248
 
5249
  # Mongolian
5250
+ #: ../languages/dynamic_strings.php:256
5251
  msgid "l-mn-mn"
5252
  msgstr "Mongolian (Mongolia)"
5253
 
5254
  # Marathi
5255
+ #: ../languages/dynamic_strings.php:257
5256
  msgid "l-mr"
5257
  msgstr "Marathi"
5258
 
5259
  # Marathi
5260
+ #: ../languages/dynamic_strings.php:258
5261
  msgid "l-mr-in"
5262
  msgstr "Marathi (India)"
5263
 
5264
  # Malay
5265
+ #: ../languages/dynamic_strings.php:259
5266
  msgid "l-ms"
5267
  msgstr "Malay"
5268
 
5269
  # Malay
5270
+ #: ../languages/dynamic_strings.php:260
5271
  msgid "l-ms-bn"
5272
  msgstr "Malay (Brunei)"
5273
 
5274
  # Malay
5275
+ #: ../languages/dynamic_strings.php:261
5276
  msgid "l-ms-my"
5277
  msgstr "Malay (Malaysia)"
5278
 
5279
  # Maltese
5280
+ #: ../languages/dynamic_strings.php:262
5281
  msgid "l-mt"
5282
  msgstr "Maltese"
5283
 
5284
  # Maltese
5285
+ #: ../languages/dynamic_strings.php:263
5286
  msgid "l-mt-mt"
5287
  msgstr "Maltese (Malta)"
5288
 
5289
  # Norwegian Bokmål
5290
+ #: ../languages/dynamic_strings.php:264
5291
  msgid "l-nb"
5292
  msgstr "Norwegian; Bokmål"
5293
 
5294
  # Norwegian Bokmål
5295
+ #: ../languages/dynamic_strings.php:265
5296
  msgid "l-nb-no"
5297
  msgstr "Norwegian (Norway)"
5298
 
5299
  # Dutch; Flemish
5300
+ #: ../languages/dynamic_strings.php:266
5301
  msgid "l-nl"
5302
  msgstr "Dutch; Flemish"
5303
 
5304
  # Belarusian
5305
+ #: ../languages/dynamic_strings.php:267
5306
  msgid "l-nl-be"
5307
  msgstr "Dutch (Belgium)"
5308
 
5309
  # Dutch; Flemish
5310
+ #: ../languages/dynamic_strings.php:268
5311
  msgid "l-nl-nl"
5312
  msgstr "Dutch (The Netherlands)"
5313
 
5314
  # Norwegian Nynorsk
5315
+ #: ../languages/dynamic_strings.php:269
5316
  msgid "l-nn-no"
5317
  msgstr "Norwegian; Nynorsk (Norway)"
5318
 
5319
+ #: ../languages/dynamic_strings.php:270
5320
  msgid "l-ns"
5321
  msgstr "Northern Sotho"
5322
 
5323
+ #: ../languages/dynamic_strings.php:271
5324
  msgid "l-ns-za"
5325
  msgstr "Northern Sotho (South Africa)"
5326
 
5327
  # Panjabi; Punjabi
5328
+ #: ../languages/dynamic_strings.php:272
5329
  msgid "l-pa"
5330
  msgstr "Panjabi; Punjabi"
5331
 
5332
  # Panjabi; Punjabi
5333
+ #: ../languages/dynamic_strings.php:273
5334
  msgid "l-pa-in"
5335
  msgstr "Panjabi (India)"
5336
 
5337
  # Polish
5338
+ #: ../languages/dynamic_strings.php:274
5339
  msgid "l-pl"
5340
  msgstr "Polish"
5341
 
5342
  # Polish
5343
+ #: ../languages/dynamic_strings.php:275
5344
  msgid "l-pl-pl"
5345
  msgstr "Polish (Poland)"
5346
 
5347
  # Pushto; Pashto
5348
+ #: ../languages/dynamic_strings.php:276
5349
  msgid "l-ps"
5350
  msgstr "Pushto; Pashto"
5351
 
5352
  # Pushto; Pashto
5353
+ #: ../languages/dynamic_strings.php:277
5354
  msgid "l-ps-ar"
5355
  msgstr "Pashto (Afghanistan)"
5356
 
5357
  # Portuguese
5358
+ #: ../languages/dynamic_strings.php:278
5359
  msgid "l-pt"
5360
  msgstr "Portuguese"
5361
 
5362
  # Portuguese
5363
+ #: ../languages/dynamic_strings.php:279
5364
  msgid "l-pt-br"
5365
  msgstr "Portuguese (Brazil)"
5366
 
5367
  # Portuguese
5368
+ #: ../languages/dynamic_strings.php:280
5369
  msgid "l-pt-pt"
5370
  msgstr "Portuguese (Portugal)"
5371
 
5372
  # Quechua
5373
+ #: ../languages/dynamic_strings.php:281
5374
  msgid "l-qu"
5375
  msgstr "Quechua"
5376
 
5377
  # Quechua
5378
+ #: ../languages/dynamic_strings.php:282
5379
  msgid "l-qu-bo"
5380
  msgstr "Quechua (Bolivia)"
5381
 
5382
  # Quechua
5383
+ #: ../languages/dynamic_strings.php:283
5384
  msgid "l-qu-ec"
5385
  msgstr "Quechua (Ecuador)"
5386
 
5387
  # Quechua
5388
+ #: ../languages/dynamic_strings.php:284
5389
  msgid "l-qu-pe"
5390
  msgstr "Quechua (Peru)"
5391
 
5392
  # Romanian; Moldavian; Moldovan
5393
+ #: ../languages/dynamic_strings.php:285
5394
  msgid "l-ro"
5395
  msgstr "Romanian"
5396
 
5397
  # Romanian; Moldavian; Moldovan
5398
+ #: ../languages/dynamic_strings.php:286
5399
  msgid "l-ro-ro"
5400
  msgstr "Romanian (Romania)"
5401
 
5402
  # Russian
5403
+ #: ../languages/dynamic_strings.php:287
5404
  msgid "l-ru"
5405
  msgstr "Russian"
5406
 
5407
  # Russian
5408
+ #: ../languages/dynamic_strings.php:288
5409
  msgid "l-ru-ru"
5410
  msgstr "Russian (Russia)"
5411
 
5412
  # Sanskrit
5413
+ #: ../languages/dynamic_strings.php:289
5414
  msgid "l-sa"
5415
  msgstr "Sanskrit"
5416
 
5417
  # Sanskrit (India)
5418
+ #: ../languages/dynamic_strings.php:290
5419
  msgid "l-sa-in"
5420
  msgstr "Sanskrit (India)"
5421
 
5422
  # Northern Sami
5423
+ #: ../languages/dynamic_strings.php:291
5424
  msgid "l-se"
5425
  msgstr "Northern Sami"
5426
 
5427
  # Northern Sami
5428
+ #: ../languages/dynamic_strings.php:292
5429
  msgid "l-se-fi"
5430
  msgstr "Northern Sami (Finland)"
5431
 
5432
  # Northern Sami
5433
+ #: ../languages/dynamic_strings.php:293
5434
  msgid "l-se-no"
5435
  msgstr "Northern Sami (Norway)"
5436
 
5437
  # Northern Sami
5438
+ #: ../languages/dynamic_strings.php:294
5439
  msgid "l-se-se"
5440
  msgstr "Northern Sami (Sweden)"
5441
 
5442
  # Slovak
5443
+ #: ../languages/dynamic_strings.php:295
5444
  msgid "l-sk"
5445
  msgstr "Slovak"
5446
 
5447
  # Slovak
5448
+ #: ../languages/dynamic_strings.php:296
5449
  msgid "l-sk-sk"
5450
  msgstr "Slovak (Slovakia)"
5451
 
5452
  # Slovenian
5453
+ #: ../languages/dynamic_strings.php:297
5454
  msgid "l-sl"
5455
  msgstr "Slovenian"
5456
 
5457
  # Slovenian
5458
+ #: ../languages/dynamic_strings.php:298
5459
  msgid "l-sl-si"
5460
  msgstr "Slovenian (Slovenia)"
5461
 
5462
  # Albanian
5463
+ #: ../languages/dynamic_strings.php:299
5464
  msgid "l-sq"
5465
  msgstr "Albanian"
5466
 
5467
  # Albanian
5468
+ #: ../languages/dynamic_strings.php:300
5469
  msgid "l-sq-al"
5470
  msgstr "Albanian (Albania)"
5471
 
5472
  # Serbian
5473
+ #: ../languages/dynamic_strings.php:301
5474
  msgid "l-sr-ba"
5475
  msgstr "Serbian (Bosnia and Herzegovina)"
5476
 
5477
  # Serbian
5478
+ #: ../languages/dynamic_strings.php:302
5479
  msgid "l-sr-sp"
5480
  msgstr "Serbian (Serbia and Montenegro)"
5481
 
5482
  # Swedish
5483
+ #: ../languages/dynamic_strings.php:303
5484
  msgid "l-sv"
5485
  msgstr "Swedish"
5486
 
5487
  # Swedish
5488
+ #: ../languages/dynamic_strings.php:304
5489
  msgid "l-sv-fi"
5490
  msgstr "Swedish (Finland)"
5491
 
5492
  # Swedish
5493
+ #: ../languages/dynamic_strings.php:305
5494
  msgid "l-sv-se"
5495
  msgstr "Swedish (Sweden)"
5496
 
5497
  # Swahili
5498
+ #: ../languages/dynamic_strings.php:306
5499
  msgid "l-sw"
5500
  msgstr "Swahili"
5501
 
5502
  # Swahili
5503
+ #: ../languages/dynamic_strings.php:307
5504
  msgid "l-sw-ke"
5505
  msgstr "Swahili (Kenya)"
5506
 
5507
  # Tamil
5508
+ #: ../languages/dynamic_strings.php:308
5509
  msgid "l-ta"
5510
  msgstr "Tamil"
5511
 
5512
  # Tamil
5513
+ #: ../languages/dynamic_strings.php:309
5514
  msgid "l-ta-in"
5515
  msgstr "Tamil (India)"
5516
 
5517
  # Telugu
5518
+ #: ../languages/dynamic_strings.php:310
5519
  msgid "l-te"
5520
  msgstr "Telugu"
5521
 
5522
  # Telugu
5523
+ #: ../languages/dynamic_strings.php:311
5524
  msgid "l-te-in"
5525
  msgstr "Telugu (India)"
5526
 
5527
  # Thai
5528
+ #: ../languages/dynamic_strings.php:312
5529
  msgid "l-th"
5530
  msgstr "Thai"
5531
 
5532
  # Thai
5533
+ #: ../languages/dynamic_strings.php:313
5534
  msgid "l-th-th"
5535
  msgstr "Thai (Thailand)"
5536
 
5537
  # Tagalog
5538
+ #: ../languages/dynamic_strings.php:314
5539
  msgid "l-tl"
5540
  msgstr "Tagalog"
5541
 
5542
  # Tagalog
5543
+ #: ../languages/dynamic_strings.php:315
5544
  msgid "l-tl-ph"
5545
  msgstr "Tagalog (Philippines)"
5546
 
5547
  # Tswana
5548
+ #: ../languages/dynamic_strings.php:316
5549
  msgid "l-tn"
5550
  msgstr "Tswana"
5551
 
5552
  # Tswana
5553
+ #: ../languages/dynamic_strings.php:317
5554
  msgid "l-tn-za"
5555
  msgstr "Tswana (South Africa)"
5556
 
5557
  # Turkish
5558
+ #: ../languages/dynamic_strings.php:318
5559
  msgid "l-tr"
5560
  msgstr "Turkish"
5561
 
5562
  # Turkish
5563
+ #: ../languages/dynamic_strings.php:319
5564
  msgid "l-tr-tr"
5565
  msgstr "Turkish (Turkey)"
5566
 
5567
  # Tatar
5568
+ #: ../languages/dynamic_strings.php:320
5569
  msgid "l-tt"
5570
  msgstr "Tatar"
5571
 
5572
  # Tatar
5573
+ #: ../languages/dynamic_strings.php:321
5574
  msgid "l-tt-ru"
5575
  msgstr "Tatar (Russia)"
5576
 
5577
  # Tsonga
5578
+ #: ../languages/dynamic_strings.php:322
5579
  msgid "l-ts"
5580
  msgstr "Tsonga"
5581
 
5582
  # Ukrainian
5583
+ #: ../languages/dynamic_strings.php:323
5584
  msgid "l-uk"
5585
  msgstr "Ukrainian"
5586
 
5587
  # Ukrainian
5588
+ #: ../languages/dynamic_strings.php:324
5589
  msgid "l-uk-ua"
5590
  msgstr "Ukrainian (Ukraine)"
5591
 
5592
  # Urdu
5593
+ #: ../languages/dynamic_strings.php:325
5594
  msgid "l-ur"
5595
  msgstr "Urdu"
5596
 
5597
  # Urdu
5598
+ #: ../languages/dynamic_strings.php:326
5599
  msgid "l-ur-pk"
5600
  msgstr "Urdu (Pakistan)"
5601
 
5602
  # Uzbek
5603
+ #: ../languages/dynamic_strings.php:327
5604
  msgid "l-uz"
5605
  msgstr "Uzbek"
5606
 
5607
  # Uzbek
5608
+ #: ../languages/dynamic_strings.php:328
5609
  msgid "l-uz-uz"
5610
  msgstr "Uzbek (Uzbekistan)"
5611
 
5612
  # Vietnamese
5613
+ #: ../languages/dynamic_strings.php:329
5614
  msgid "l-vi"
5615
  msgstr "Vietnamese"
5616
 
5617
  # Vietnamese
5618
+ #: ../languages/dynamic_strings.php:330
5619
  msgid "l-vi-vn"
5620
  msgstr "Vietnamese (Viet Nam)"
5621
 
5622
  # Xhosa
5623
+ #: ../languages/dynamic_strings.php:331
5624
  msgid "l-xh"
5625
  msgstr "Xhosa"
5626
 
5627
  # Xhosa
5628
+ #: ../languages/dynamic_strings.php:332
5629
  msgid "l-xh-za"
5630
  msgstr "Xhosa (South Africa)"
5631
 
5632
  # Chinese
5633
+ #: ../languages/dynamic_strings.php:333
5634
  msgid "l-zh"
5635
  msgstr "Chinese"
5636
 
5637
  # Chinese
5638
+ #: ../languages/dynamic_strings.php:334
5639
  msgid "l-zh-cn"
5640
  msgstr "Chinese (S)"
5641
 
5642
  # Chinese
5643
+ #: ../languages/dynamic_strings.php:335
5644
  msgid "l-zh-hk"
5645
  msgstr "Chinese (Hong Kong)"
5646
 
5647
  # Chinese
5648
+ #: ../languages/dynamic_strings.php:336
5649
  msgid "l-zh-mo"
5650
  msgstr "Chinese (Macau)"
5651
 
5652
  # Chinese
5653
+ #: ../languages/dynamic_strings.php:337
5654
  msgid "l-zh-sg"
5655
  msgstr "Chinese (Singapore)"
5656
 
5657
  # Chinese
5658
+ #: ../languages/dynamic_strings.php:338
5659
  msgid "l-zh-tw"
5660
  msgstr "Chinese (T)"
5661
 
5662
  # Zulu
5663
+ #: ../languages/dynamic_strings.php:339
5664
  msgid "l-zu"
5665
  msgstr "Zulu"
5666
 
5667
  # Zulu
5668
+ #: ../languages/dynamic_strings.php:340
5669
  msgid "l-zu-za"
5670
  msgstr "Zulu (South Africa)"
5671
 
5672
  # Unknown
5673
+ #: ../languages/dynamic_strings.php:342
5674
  msgid "l-empty"
5675
  msgstr "Unknown"
5676
 
5677
  # Unknown
5678
+ #: ../languages/dynamic_strings.php:343
5679
  msgid "l-xx"
5680
  msgstr "Unknown"
5681
 
5682
+ #: ../languages/dynamic_strings.php:345
5683
  msgid "c-xy"
5684
  msgstr "Local IP"
5685
 
5686
+ #: ../wp-slimstat.php:139 ../wp-slimstat.php:255
5687
+ msgid "Tracker is turned off, but client-side tracking code is still running."
5688
+ msgstr ""
5689
+
5690
+ #: ../wp-slimstat.php:270 ../wp-slimstat.php:698
5691
  msgid "Pageview filtered by third-party code"
5692
  msgstr ""
5693
 
5694
+ #: ../wp-slimstat.php:277
5695
+ msgid "Browser sent DNT header request"
5696
+ msgstr ""
5697
+
5698
+ #: ../wp-slimstat.php:300
5699
+ msgid "Visitor has opted out of tracking"
5700
+ msgstr ""
5701
+
5702
+ #: ../wp-slimstat.php:327
5703
+ msgid "Visitor has not opted in to be tracked"
5704
+ msgstr ""
5705
+
5706
+ #: ../wp-slimstat.php:337
5707
+ msgid "Empty or not supported IP address format"
5708
  msgstr ""
5709
 
5710
+ #: ../wp-slimstat.php:354
5711
  #, php-format
5712
  msgid "Malformed referrer URL: %s (IP: %s)"
5713
  msgstr ""
5714
 
5715
+ #: ../wp-slimstat.php:355
5716
  #, php-format
5717
  msgid "Malformed referrer URL: %s"
5718
  msgstr ""
5719
 
5720
+ #: ../wp-slimstat.php:360
5721
  #, php-format
5722
  msgid "Attempted XSS Injection: %s (IP: %s)"
5723
  msgstr ""
5724
 
5725
+ #: ../wp-slimstat.php:361
5726
  #, php-format
5727
  msgid "Attempted XSS Injection: %s"
5728
  msgstr ""
5729
 
5730
+ #: ../wp-slimstat.php:385
5731
  #, php-format
5732
  msgid "Referrer %s is blacklisted"
5733
  msgstr ""
5734
 
5735
+ #: ../wp-slimstat.php:402
5736
+ #, php-format
5737
+ msgid "Content Type %s is blacklisted"
5738
+ msgstr ""
5739
+
5740
+ #: ../wp-slimstat.php:452
5741
  msgid "Malformed URL"
5742
  msgstr ""
5743
 
5744
+ #: ../wp-slimstat.php:485
5745
  #, php-format
5746
  msgid "Permalink %s is blacklisted"
5747
  msgstr ""
5748
 
5749
+ #: ../wp-slimstat.php:498
5750
  #, php-format
5751
  msgid "Logged in user %s not tracked"
5752
  msgstr ""
5753
 
5754
+ #: ../wp-slimstat.php:506
5755
  #, php-format
5756
  msgid "User with capability %s not tracked"
5757
  msgstr ""
5758
 
5759
+ #: ../wp-slimstat.php:515
5760
  #, php-format
5761
  msgid "User %s is blacklisted"
5762
  msgstr ""
5763
 
5764
+ #: ../wp-slimstat.php:539
5765
  #, php-format
5766
  msgid "Spammer %s not tracked"
5767
  msgstr ""
5768
 
5769
+ #: ../wp-slimstat.php:568
5770
  #, php-format
5771
  msgid "IP address %s is blacklisted"
5772
  msgstr ""
5773
 
5774
+ #: ../wp-slimstat.php:585
5775
+ msgid ""
5776
+ "Your MaxMind data file is invalid. Please uninstall it using the button in "
5777
+ "Settings > Maintenance."
5778
+ msgstr ""
5779
+
5780
+ #: ../wp-slimstat.php:627
5781
  #, php-format
5782
  msgid "Country %s is blacklisted"
5783
  msgstr ""
5784
 
5785
+ #: ../wp-slimstat.php:636
5786
  msgid "Prefetch requests are ignored"
5787
  msgstr ""
5788
 
5789
+ #: ../wp-slimstat.php:652
5790
  msgid "Bot not tracked"
5791
  msgstr ""
5792
 
5793
+ #: ../wp-slimstat.php:660
5794
  #, php-format
5795
  msgid "Browser %s is blacklisted"
5796
  msgstr ""
5797
 
5798
+ #: ../wp-slimstat.php:672
5799
+ #, php-format
5800
+ msgid "Operating System %s is blacklisted"
5801
+ msgstr ""
5802
+
5803
+ #: ../wp-slimstat.php:1114
5804
  msgid "Invalid payload string. Try clearing your WordPress cache."
5805
  msgstr ""
5806
 
5807
+ #: ../wp-slimstat.php:1125
5808
  msgid "Invalid data signature. Try clearing your WordPress cache."
5809
  msgstr ""
5810
 
5811
+ #: ../wp-slimstat.php:1257
5812
+ msgid ""
5813
+ "The geolocation database cannot be updated. Please check your server's file "
5814
+ "permissions and try again."
5815
+ msgstr ""
5816
+
5817
+ #: ../wp-slimstat.php:1270
5818
  msgid "There was an error downloading the MaxMind Geolite DB:"
5819
  msgstr ""
5820
 
5821
+ #: ../wp-slimstat.php:1278 ../wp-slimstat.php:1287
5822
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5823
  msgstr ""
5824
 
5825
+ #: ../wp-slimstat.php:1282
5826
  msgid "Function gzopen not defined. Aborting."
5827
  msgstr ""
5828
 
5829
+ #: ../wp-slimstat.php:1292
5830
+ msgid "There was an error opening the MaxMind Geolite DB."
5831
+ msgstr ""
5832
+
5833
+ #: ../wp-slimstat.php:1305
5834
+ msgid "There was an error creating the MaxMind Geolite DB."
5835
+ msgstr ""
5836
+
5837
+ #: ../wp-slimstat.php:1320
5838
+ msgid "Invalid URL Provided."
5839
+ msgstr ""
5840
+
5841
+ #: ../wp-slimstat.php:1327
5842
+ msgid "Could not create Temporary file."
5843
+ msgstr ""
5844
+
5845
+ #: ../wp-slimstat.php:1385
5846
+ msgid "Undefined report ID"
5847
+ msgstr ""
5848
+
5849
+ #: ../wp-slimstat.php:1582
5850
+ msgid ""
5851
+ "You will need to specify a valid token to be able to query the data. Tokens "
5852
+ "are defined in Slimstat > Settings > Access Control."
5853
+ msgstr ""
5854
+
5855
+ #: ../wp-slimstat.php:1586
5856
+ msgid ""
5857
+ "This parameter specifies the type of QUERY for the dimension. Valid values "
5858
+ "are: count, count-all, recent, recent-all, top and top-all."
5859
+ msgstr ""
5860
+
5861
+ #: ../wp-slimstat.php:1591
5862
+ msgid ""
5863
+ "This parameter indicates what dimension to return: * (all data), ip, "
5864
+ "resource, browser, operating system, etc. You can only specify one dimension "
5865
+ "at a time."
5866
+ msgstr ""
5867
+
5868
+ #: ../wp-slimstat.php:1596
5869
+ msgid ""
5870
+ "This parameter is used to filter a given dimension (resources, browsers, "
5871
+ "operating systems, etc) so that it satisfies certain conditions (i.e.: "
5872
+ "browser contains Chrome). Please make sure to urlencode this value, and to "
5873
+ "use the usual filter format: browser contains Chrome&&&referer contains slim "
5874
+ "(encoded: browser%20contains%20Chrome%26%26%26referer%20contains%20slim)"
5875
  msgstr ""
5876
 
5877
+ #: ../wp-slimstat.php:2024
5878
  msgid "Optional filters"
5879
  msgstr ""
5880
 
languages/wp-slimstat.pot CHANGED
@@ -1,7 +1,8 @@
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2016-07-17 13:47-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
7
  "Language-Team: camu <info@duechiacchiere.it>\n"
@@ -9,49 +10,49 @@ msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.11\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-Bookmarks: 332,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
  "X-Poedit-SearchPathExcluded-0: ../admin/js\n"
18
 
19
- #: ../admin/config/index.php:32 ../admin/config/index.php:57
20
- #: ../admin/config/index.php:82
21
  msgid ""
22
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
23
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
24
  msgstr ""
25
 
26
- #: ../admin/config/index.php:47
27
  msgid "Read access: username not found"
28
  msgstr ""
29
 
30
- #: ../admin/config/index.php:72
31
  msgid "Config access: username not found"
32
  msgstr ""
33
 
34
- #: ../admin/config/index.php:91
35
  msgid "Basic"
36
  msgstr ""
37
 
38
- #: ../admin/config/index.php:93 ../admin/config/index.php:114
39
  msgid "Tracker"
40
  msgstr ""
41
 
42
- #: ../admin/config/index.php:94
43
  msgid "Enable Tracking"
44
  msgstr ""
45
 
46
- #: ../admin/config/index.php:94
47
  msgid "Turn the tracker on or off, while keeping the reports accessible."
48
  msgstr ""
49
 
50
- #: ../admin/config/index.php:95
51
  msgid "Tracking Mode"
52
  msgstr ""
53
 
54
- #: ../admin/config/index.php:95
55
  msgid ""
56
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
57
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
@@ -60,163 +61,159 @@ msgid ""
60
  "spammers, search engines and other crawlers</strong> will not be tracked."
61
  msgstr ""
62
 
63
- #: ../admin/config/index.php:95
64
  msgid "Client"
65
  msgstr ""
66
 
67
- #: ../admin/config/index.php:95
68
  msgid "Server"
69
  msgstr ""
70
 
71
- #: ../admin/config/index.php:96
72
  msgid "Track Client Info"
73
  msgstr ""
74
 
75
- #: ../admin/config/index.php:96
76
  msgid ""
77
- "If this option is disabled, Slimstat will not add the Javascript tracking "
78
- "code to your pages, if tracking mode is set to Server. Please note: if "
79
- "enabled, this will prevent the tracker from collecting information such as "
80
- "screen resolution, outbound links, downloads, etc. This option is ignored if "
81
- "Tracking Mode is set to Client."
82
  msgstr ""
83
 
84
- #: ../admin/config/index.php:97
85
  msgid "Track Admin Pages"
86
  msgstr ""
87
 
88
- #: ../admin/config/index.php:97
89
  msgid "Enable this option to track your users' activity within the admin."
90
  msgstr ""
91
 
92
- #: ../admin/config/index.php:99
93
  msgid "WordPress Integration"
94
  msgstr ""
95
 
96
- #: ../admin/config/index.php:100
97
  msgid "Dashboard Widgets"
98
  msgstr ""
99
 
100
- #: ../admin/config/index.php:100
101
  msgid ""
102
  "Enable this option if you want to add reports to your WordPress Dashboard. "
103
  "Use the Customizer to choose which ones to display."
104
  msgstr ""
105
 
106
- #: ../admin/config/index.php:101
107
  msgid "Menu Position"
108
  msgstr ""
109
 
110
- #: ../admin/config/index.php:101
111
  msgid ""
112
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
113
  "admin bar (if visible)."
114
  msgstr ""
115
 
116
- #: ../admin/config/index.php:101
117
  msgid "Side"
118
  msgstr ""
119
 
120
- #: ../admin/config/index.php:101
121
  msgid "Bar"
122
  msgstr ""
123
 
124
- #: ../admin/config/index.php:102
125
- msgid "Posts and Pages"
126
  msgstr ""
127
 
128
- #: ../admin/config/index.php:102
129
  msgid ""
130
- "Add a new column to the Edit Posts/Pages screens, with the number of hits "
131
- "per post within the timeframe specified here below."
 
132
  msgstr ""
133
 
134
- #: ../admin/config/index.php:103
135
- msgid "Report Interval"
136
  msgstr ""
137
 
138
- #: ../admin/config/index.php:103
139
  msgid ""
140
- "Enter the time range, in days, that should be used to calculate the value "
141
- "here above."
142
  msgstr ""
143
 
144
- #: ../admin/config/index.php:104
145
  msgid "Report Type"
146
  msgstr ""
147
 
148
- #: ../admin/config/index.php:104
149
  msgid ""
150
  "Select what kind of information you would like to see displayed on your "
151
  "Posts admin screen. Hits counts all the pageviews regardless of the user, "
152
  "(unique) IPs counts only one hit per IP in the given time range."
153
  msgstr ""
154
 
155
- #: ../admin/config/index.php:104 ../admin/view/wp-slimstat-reports.php:1176
156
- #: ../admin/view/wp-slimstat-reports.php:1408
157
- #: ../admin/view/wp-slimstat-reports.php:1464
158
- #: ../admin/view/wp-slimstat-reports.php:1470
159
- #: ../admin/view/wp-slimstat-reports.php:1476
160
- #: ../admin/view/wp-slimstat-reports.php:1482
161
- #: ../admin/view/wp-slimstat-reports.php:1488
162
- #: ../admin/view/wp-slimstat-reports.php:1494
163
- #: ../admin/view/wp-slimstat-reports.php:1500
164
- #: ../admin/view/wp-slimstat-reports.php:1772
165
  msgid "Hits"
166
  msgstr ""
167
 
168
- #: ../admin/config/index.php:104
169
  msgid "IPs"
170
  msgstr ""
171
 
172
- #: ../admin/config/index.php:105
173
  msgid "Hide Add-ons"
174
  msgstr ""
175
 
176
- #: ../admin/config/index.php:105
177
  msgid ""
178
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
179
  "from the list of plugins in WordPress. Please note that you will still "
180
  "receive updates for hidden add-ons."
181
  msgstr ""
182
 
183
- #: ../admin/config/index.php:107
184
  msgid "Database"
185
  msgstr ""
186
 
187
- #: ../admin/config/index.php:108
188
  msgid "Retain data for"
189
  msgstr ""
190
 
191
- #: ../admin/config/index.php:108
192
  msgid ""
193
  "Clean-up log entries older than the number of days specified here above. "
194
- "Enter <strong>0</strong> (number zero) if you want to preserve your data "
195
- "regardless of its age."
196
  msgstr ""
197
 
198
- #: ../admin/config/index.php:108
199
  msgid "Next clean-up on"
200
  msgstr ""
201
 
202
- #: ../admin/config/index.php:108
203
  #, php-format
204
  msgid ""
205
  "Entries logged on or before %s will be archived or deleted according to the "
206
  "option here below."
207
  msgstr ""
208
 
209
- #: ../admin/config/index.php:108 ../admin/view/index.php:89
210
- #: ../admin/view/wp-slimstat-db.php:98
211
- #: ../admin/view/wp-slimstat-reports.php:1352
212
  msgid "days"
213
  msgstr ""
214
 
215
- #: ../admin/config/index.php:109
216
  msgid "Archive records"
217
  msgstr ""
218
 
219
- #: ../admin/config/index.php:109
220
  msgid ""
221
  "If DB space is not an issue, you can decide to archive older records in "
222
  "another table, instead of deleting them. This way performance is preserved, "
@@ -226,59 +223,107 @@ msgid ""
226
  "is uninstalled. Make sure to backup your data before you proceed."
227
  msgstr ""
228
 
229
- #: ../admin/config/index.php:116
230
- msgid "Link Tracking"
231
  msgstr ""
232
 
233
- #: ../admin/config/index.php:117
234
- msgid "Track Outbound Clicks"
235
  msgstr ""
236
 
237
- #: ../admin/config/index.php:117
238
  msgid ""
239
- "Track when your visitors click on link to external websites. This option "
240
- "required Spy Mode to be enabled."
 
 
241
  msgstr ""
242
 
243
- #: ../admin/config/index.php:118
244
- msgid "Track Internal Clicks"
245
  msgstr ""
246
 
247
- #: ../admin/config/index.php:118
248
  msgid ""
249
- "Collect mouse coordinates and other information for clicks on internal "
250
- "links. Recommended if you're using our heatmap add-on. By default, this "
251
- "information is only collected for external links."
 
 
 
252
  msgstr ""
253
 
254
- #: ../admin/config/index.php:119
255
- msgid "Async Tracker"
256
  msgstr ""
257
 
258
- #: ../admin/config/index.php:119
259
  msgid ""
260
- "When the tracker is configured to record clicks on internal and / or "
261
- "outbound links, it needs to send this information back to the server "
262
- "<strong>before</strong> loading the actual page. This can result in a "
263
- "noticeable delay when someone clicks on one of your links, if your server "
264
- "takes a while to acknowledge the receipt of that information. You can set "
265
- "this option to instruct the tracker not to wait for the server, and load the "
266
- "target URL right away. This will remove the delay, but it might result in a "
267
- "less accurate logging of events. You can check your server latency under "
268
- "Site Analysis > Your Website. Values under 1000 milliseconds might allow you "
269
- "to use async mode."
270
  msgstr ""
271
 
272
- #: ../admin/config/index.php:120
273
- msgid "No Callback"
274
  msgstr ""
275
 
276
- #: ../admin/config/index.php:120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
277
  msgid ""
278
- "Track the event but do not invoke the callback function on links marked with "
279
- "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
280
- "attribute contains one of these strings. Useful to prevent conflicts with "
281
- "lightbox and similar libraries."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
282
  msgstr ""
283
 
284
  #: ../admin/config/index.php:121
@@ -287,101 +332,128 @@ msgstr ""
287
 
288
  #: ../admin/config/index.php:121
289
  msgid ""
290
- "The tracker will ignore links marked with one of these class names, <em>rel</"
291
  "em> attributes or whose <em>href</em> attribute contains one of these "
292
- "strings."
 
 
293
  msgstr ""
294
 
295
- #: ../admin/config/index.php:124
296
- msgid "Advanced Options"
297
  msgstr ""
298
 
299
- #: ../admin/config/index.php:125
300
- msgid "Session Duration"
 
 
 
 
 
301
  msgstr ""
302
 
303
- #: ../admin/config/index.php:125
 
 
 
 
304
  msgid ""
305
- "How many seconds should a human session last? Google Analytics sets it to "
306
- "1800 seconds."
 
 
 
307
  msgstr ""
308
 
309
- #: ../admin/config/index.php:125 ../admin/config/index.php:193
310
- msgid "seconds"
311
  msgstr ""
312
 
313
  #: ../admin/config/index.php:126
314
- msgid "Extend Session"
315
  msgstr ""
316
 
317
  #: ../admin/config/index.php:126
318
- msgid "Extend the duration of a session each time the user visits a new page."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
319
  msgstr ""
320
 
321
  #: ../admin/config/index.php:127
322
- msgid "User Agent Accuracy"
323
  msgstr ""
324
 
325
  #: ../admin/config/index.php:127
326
  msgid ""
327
- "Slimstat implements a heuristic function to determine the user's browser and "
328
- "operating system from his user agent string. This approach requires very "
329
- "little memory, but for uncommon user agent strings it might be less "
330
- "accurate, and produce a unreliable match. That's why we also include an "
331
- "alternative method which relies on Browscap, a third-party database "
332
- "containing even the most obscure user agent strings. You decide which one "
333
- "should be used first: the other one will only be invoked if the one you "
334
- "chose did not produce a match."
335
  msgstr ""
336
 
337
- #: ../admin/config/index.php:127
338
- msgid "High"
339
  msgstr ""
340
 
341
- #: ../admin/config/index.php:127
342
- msgid "Normal"
343
  msgstr ""
344
 
345
  #: ../admin/config/index.php:128
 
 
 
 
346
  msgid "Enable CDN"
347
  msgstr ""
348
 
349
- #: ../admin/config/index.php:128
350
  msgid ""
351
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
352
  "by serving our tracking code from their fast and reliable network (free "
353
  "service)."
354
  msgstr ""
355
 
356
- #: ../admin/config/index.php:129
357
- msgid "Extensions to Track"
358
  msgstr ""
359
 
360
- #: ../admin/config/index.php:129
361
  msgid ""
362
- "List all the file extensions that you want to be treated as Downloads. "
363
- "Please note that links pointing to external resources (i.e. PDFs on a "
364
- "different website) are considered Downloads and not Outbound Links (and "
365
- "tracked as such), if their extension matches one of the ones listed here "
366
- "below."
367
  msgstr ""
368
 
369
- #: ../admin/config/index.php:131
370
  msgid "External Pages"
371
  msgstr ""
372
 
373
- #: ../admin/config/index.php:132
374
  msgid ""
375
  "Add the following code to all the non-WP pages you want to track, right "
376
  "before the closing BODY tag. Please make sure to change the protocol of all "
377
  "the URLs to HTTPS, if you external site is served over a secure channel."
378
  msgstr ""
379
 
380
- #: ../admin/config/index.php:142
381
  msgid "Allow Domains"
382
  msgstr ""
383
 
384
- #: ../admin/config/index.php:142
385
  msgid ""
386
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
387
  "header is present on the requested resource, when using the external "
@@ -392,149 +464,163 @@ msgid ""
392
  "implications of allowing CORS requests."
393
  msgstr ""
394
 
395
- #: ../admin/config/index.php:143 ../admin/config/index.php:165
396
- #: ../admin/config/index.php:196
397
- msgid "Miscellaneous"
398
- msgstr ""
399
-
400
- #: ../admin/config/index.php:144
401
- msgid "Enable UAN"
402
  msgstr ""
403
 
404
- #: ../admin/config/index.php:144
405
- msgid ""
406
- "Send anonymous data about user agents to our server for analysis. This "
407
- "allows us to contribute to the <a href='http://browscap.org/' "
408
- "target='_blank'>BrowsCap opensource project</a>, and improve the accuracy of "
409
- "Slimstat's browser detection functionality. It also enables our transparent "
410
- "ads network. No worries, your site will not be affected in any way."
411
  msgstr ""
412
 
413
- #: ../admin/config/index.php:149
414
- msgid "Filters"
415
  msgstr ""
416
 
417
  #: ../admin/config/index.php:151
418
- msgid "Do not track settings"
419
  msgstr ""
420
 
421
  #: ../admin/config/index.php:152
422
- msgid "Track Registered Users"
423
  msgstr ""
424
 
425
  #: ../admin/config/index.php:152
426
- msgid "Enable this option to track logged in users."
 
 
 
 
427
  msgstr ""
428
 
429
  #: ../admin/config/index.php:153
430
- msgid "Blacklist by Username"
431
  msgstr ""
432
 
433
  #: ../admin/config/index.php:153
434
  msgid ""
435
- "List all the usernames you don't want to track. Please be aware that spaces "
436
- "are <em>not</em> ignored and that usernames are case sensitive. Wildcards: "
437
- "<code>*</code> matches 'any string, including the empty string', <code>!</"
438
- "code> matches 'any character'. For example, <code>user*</code> will match "
439
- "user12 and userfoo, <code>u*100</code> will match user100 and uber100, "
440
- "<code>user!0</code> will match user10 and user90."
441
  msgstr ""
442
 
443
  #: ../admin/config/index.php:154
444
- msgid "Blacklist by IP Address"
445
  msgstr ""
446
 
447
  #: ../admin/config/index.php:154
448
  msgid ""
449
- "List all the IP addresses you don't want to track. Each network "
450
- "<strong>must</strong> be defined using the <a href='http://en.wikipedia.org/"
451
- "wiki/Classless_Inter-Domain_Routing' target='_blank'>CIDR notation</a> (i.e. "
452
- "<em>192.168.0.0/24</em>). This filter applies both to the public IP and the "
453
- "originating IP, if available."
454
  msgstr ""
455
 
456
  #: ../admin/config/index.php:155
457
- msgid "Blacklist by Capability"
458
  msgstr ""
459
 
460
- #: ../admin/config/index.php:155
 
 
 
 
461
  msgid ""
462
- "Users having at least one of the <a href='http://codex.wordpress.org/"
463
- "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
464
- "will not be tracked. Capabilities are case-insensitive."
 
 
 
465
  msgstr ""
466
 
467
  #: ../admin/config/index.php:157
468
- msgid "Profiling"
 
 
 
 
 
 
 
 
 
 
 
 
 
469
  msgstr ""
470
 
471
  #: ../admin/config/index.php:158
472
- msgid "Ignore Spammers"
473
  msgstr ""
474
 
475
  #: ../admin/config/index.php:158
476
  msgid ""
477
- "Enable this option if you don't want to track visits from users identified "
478
- "as spammers by third-party tools like Akismet. Pageviews generated by users "
479
- "whose comments are later marked as spam, will also be removed from the "
480
- "database."
481
  msgstr ""
482
 
483
  #: ../admin/config/index.php:159
484
- msgid "Ignore Bots"
485
  msgstr ""
486
 
487
  #: ../admin/config/index.php:159
488
  msgid ""
489
- "Turn on this feature if you want to have the accuracy level of server-side "
490
- "tracking, but not the inconvenience of getting your database clogged with "
491
- "pageviews generated by crawlers, spiders, search engine bots, etc. Please "
492
- "note that in Client mode, bots are ignored regardless of this setting."
 
 
493
  msgstr ""
494
 
495
  #: ../admin/config/index.php:160
496
- msgid "Permalinks"
497
  msgstr ""
498
 
499
  #: ../admin/config/index.php:160
500
  msgid ""
501
- "List all the URLs on your website that you don't want to track. Don't "
502
- "include the domain name: <em>/about, ?p=1</em>, etc. Wildcards: <code>*</"
503
- "code> matches 'any string, including the empty string', <code>!</code> "
504
- "matches 'any character'. For example, <code>/abou*</code> will match /about "
505
- "and /abound, <code>/abo*t</code> will match /aboundant and /about, <code>/"
506
- "abo!t</code> will match /about and /abort. Strings are case-insensitive."
507
  msgstr ""
508
 
509
  #: ../admin/config/index.php:161
510
- msgid "Countries"
511
  msgstr ""
512
 
513
  #: ../admin/config/index.php:161
514
  msgid ""
515
- "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
516
- "track."
 
517
  msgstr ""
518
 
519
- #: ../admin/config/index.php:162
520
- msgid "User Agents"
 
 
 
 
521
  msgstr ""
522
 
523
- #: ../admin/config/index.php:162
524
  msgid ""
525
- "Browsers (user agents) you don't want to track. You can specify the "
526
- "browser's version adding a slash after the name (i.e. <em>Firefox/3.6</"
527
- "em>). Wildcards: <code>*</code> matches 'any string, including the empty "
528
- "string', <code>!</code> matches 'any character'. For example, <code>Chr*</"
529
- "code> will match Chrome and Chromium, <code>IE/!.0</code> will match IE/7.0 "
530
- "and IE/8.0. Strings are case-insensitive."
531
  msgstr ""
532
 
533
- #: ../admin/config/index.php:163
534
  msgid "Referring Sites"
535
  msgstr ""
536
 
537
- #: ../admin/config/index.php:163
538
  msgid ""
539
  "Referring URLs that you don't want to track: <code>http://mysite.com*</"
540
  "code>, <code>*/ignore-me-please</code>, etc. Wildcards: <code>*</code> "
@@ -544,153 +630,150 @@ msgid ""
544
  msgstr ""
545
 
546
  #: ../admin/config/index.php:166
547
- msgid "Enable Privacy Mode"
548
  msgstr ""
549
 
550
  #: ../admin/config/index.php:166
551
- msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
552
- msgstr ""
553
-
554
- #: ../admin/config/index.php:167
555
- msgid "Ignore Prefetch Requests"
556
- msgstr ""
557
-
558
- #: ../admin/config/index.php:167
559
  msgid ""
560
- "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
561
- "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
562
- "target='_blank'>Link Prefetching functionality</a>."
 
563
  msgstr ""
564
 
565
- #: ../admin/config/index.php:172 ../admin/config/index.php:207
566
  msgid "Reports"
567
  msgstr ""
568
 
569
- #: ../admin/config/index.php:174
570
- msgid "Formats and Conversions"
571
  msgstr ""
572
 
573
- #: ../admin/config/index.php:175
574
  msgid "Number Format"
575
  msgstr ""
576
 
577
- #: ../admin/config/index.php:175
578
  msgid "Choose the number format you want to use for your reports."
579
  msgstr ""
580
 
581
- #: ../admin/config/index.php:176
582
  msgid "Date Format"
583
  msgstr ""
584
 
585
- #: ../admin/config/index.php:176
586
  msgid ""
587
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
588
  "Format</a> to use when displaying a pageview's date."
589
  msgstr ""
590
 
591
- #: ../admin/config/index.php:177
592
  msgid "Time Format"
593
  msgstr ""
594
 
595
- #: ../admin/config/index.php:177
596
  msgid ""
597
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
598
  "Format</a> to use when displaying a pageview's time."
599
  msgstr ""
600
 
601
- #: ../admin/config/index.php:178
602
  msgid "Use Display Name"
603
  msgstr ""
604
 
605
- #: ../admin/config/index.php:178
606
  msgid ""
607
  "By default, users are listed by their usernames. Use this option to "
608
  "visualize their display names instead."
609
  msgstr ""
610
 
611
- #: ../admin/config/index.php:179
612
  msgid "Use Titles"
613
  msgstr ""
614
 
615
- #: ../admin/config/index.php:179
616
  msgid ""
617
  "Slimstat converts your permalinks into post, page and category titles. "
618
  "Disable this feature if you need to see the URL in your reports."
619
  msgstr ""
620
 
621
- #: ../admin/config/index.php:180
622
  msgid "Convert IP Addresses"
623
  msgstr ""
624
 
625
- #: ../admin/config/index.php:180
626
  msgid "Display provider names instead of IP addresses."
627
  msgstr ""
628
 
629
- #: ../admin/config/index.php:182
630
  msgid "Functionality"
631
  msgstr ""
632
 
633
- #: ../admin/config/index.php:183
634
  msgid "Async Mode"
635
  msgstr ""
636
 
637
- #: ../admin/config/index.php:183
638
  msgid ""
639
  "Activate this feature if your reports take a while to load. It breaks down "
640
  "the load on your server into multiple requests, thus avoiding memory issues "
641
  "and performance problems."
642
  msgstr ""
643
 
644
- #: ../admin/config/index.php:184
645
- msgid "SlimScroll"
646
  msgstr ""
647
 
648
- #: ../admin/config/index.php:184
649
  msgid ""
650
- "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
651
- "scrollbar."
 
 
652
  msgstr ""
653
 
654
- #: ../admin/config/index.php:185
655
  msgid "Expand Details"
656
  msgstr ""
657
 
658
- #: ../admin/config/index.php:185
659
  msgid "Expand each row's details by default, insted of on mousehover."
660
  msgstr ""
661
 
662
- #: ../admin/config/index.php:186 ../admin/config/index.php:194
663
  msgid "Rows to Display"
664
  msgstr ""
665
 
666
- #: ../admin/config/index.php:186
667
  msgid "Specify the number of items in each report."
668
  msgstr ""
669
 
670
- #: ../admin/config/index.php:187 ../admin/view/wp-slimstat-db.php:121
671
  msgid "Max Results"
672
  msgstr ""
673
 
674
- #: ../admin/config/index.php:187
675
  msgid ""
676
  "Decide how many records should be retrieved from the database in total. "
677
  "Depending on your server configuration, you may want to fine tune this value "
678
  "to avoid exceeding your PHP memory limit."
679
  msgstr ""
680
 
681
- #: ../admin/config/index.php:188
682
  msgid "IP Lookup"
683
  msgstr ""
684
 
685
- #: ../admin/config/index.php:188
686
- msgid "Customize the Geolocation service to be used in the reports."
 
 
687
  msgstr ""
688
 
689
- #: ../admin/config/index.php:189
690
  msgid "Mozscape Access ID"
691
  msgstr ""
692
 
693
- #: ../admin/config/index.php:189
694
  msgid ""
695
  "Get accurate rankings for your website through the free <a href=\"https://"
696
  "moz.com/community/join?redirect=/products/api/keys\" target=\"_blank"
@@ -698,32 +781,47 @@ msgid ""
698
  "started. Then enter your personal identification code here."
699
  msgstr ""
700
 
701
- #: ../admin/config/index.php:190
702
  msgid "Mozscape Secret Key"
703
  msgstr ""
704
 
705
- #: ../admin/config/index.php:190
706
  msgid ""
707
  "Do not share your secret key with anyone or they will be able to make API "
708
  "requests on your account!"
709
  msgstr ""
710
 
 
 
 
 
711
  #: ../admin/config/index.php:192
712
- msgid "Activity Log"
713
  msgstr ""
714
 
715
- #: ../admin/config/index.php:193
716
- msgid "Live Stream"
 
 
717
  msgstr ""
718
 
719
  #: ../admin/config/index.php:193
720
- msgid ""
721
- "Enable the Live view, which refreshes the Activity Log every X seconds. "
722
- "Enter <strong>0</strong> (number zero) to deactivate this feature."
 
 
723
  msgstr ""
724
 
725
  #: ../admin/config/index.php:194
726
- msgid "Specify the number of items in the Activity Log."
 
 
 
 
 
 
 
727
  msgstr ""
728
 
729
  #: ../admin/config/index.php:197
@@ -752,45 +850,56 @@ msgid ""
752
  msgstr ""
753
 
754
  #: ../admin/config/index.php:199
755
- msgid "Show User Agent"
756
  msgstr ""
757
 
758
  #: ../admin/config/index.php:199
759
  msgid ""
760
- "Choose if you want to see the browser name or a complete user agent string "
761
- "when hovering on browser icons."
762
  msgstr ""
763
 
764
  #: ../admin/config/index.php:200
765
- msgid "Enable SOV"
766
  msgstr ""
767
 
768
  #: ../admin/config/index.php:200
769
  msgid ""
 
 
 
 
 
 
 
 
 
 
770
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
771
  "the subject, object, and verb of a sentence appear in that order, like in "
772
  "Japanese."
773
  msgstr ""
774
 
775
- #: ../admin/config/index.php:205
776
  msgid "Access Control"
777
  msgstr ""
778
 
779
- #: ../admin/config/index.php:208
780
  msgid "Restrict Authors"
781
  msgstr ""
782
 
783
- #: ../admin/config/index.php:208
784
  msgid ""
785
  "Enable this option if you want your authors to only see stats related to "
786
  "their own content."
787
  msgstr ""
788
 
789
- #: ../admin/config/index.php:209 ../admin/config/index.php:213
 
790
  msgid "Capability"
791
  msgstr ""
792
 
793
- #: ../admin/config/index.php:209
794
  msgid ""
795
  "Specify the minimum <a href='http://codex.wordpress.org/"
796
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
@@ -800,24 +909,44 @@ msgid ""
800
  "In this case, the list has precedence over the capability."
801
  msgstr ""
802
 
803
- #: ../admin/config/index.php:210 ../admin/config/index.php:214
 
804
  msgid "Whitelist"
805
  msgstr ""
806
 
807
- #: ../admin/config/index.php:210
808
  msgid ""
809
  "List all the users who should have access to the reports. Administrators are "
810
  "implicitly allowed, so you don't need to list them in here. Usernames are "
811
  "case sensitive."
812
  msgstr ""
813
 
814
- #: ../admin/config/index.php:212 ../admin/config/index.php:237
815
- #: ../admin/wp-slimstat-admin.php:894 ../admin/wp-slimstat-admin.php:912
816
- #: ../admin/wp-slimstat-admin.php:915
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
817
  msgid "Settings"
818
  msgstr ""
819
 
820
- #: ../admin/config/index.php:213
821
  msgid ""
822
  "Specify the minimum <a href='http://codex.wordpress.org/"
823
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -825,22 +954,55 @@ msgid ""
825
  "can be used to override this option for specific users."
826
  msgstr ""
827
 
828
- #: ../admin/config/index.php:214
829
  msgid ""
830
  "List all the users who can edit these options. Please be advised that admins "
831
  "<strong>are not</strong> implicitly allowed, so do not forget to include "
832
  "yourself! Usernames are case sensitive."
833
  msgstr ""
834
 
835
- #: ../admin/config/index.php:219
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
836
  msgid "Maintenance"
837
  msgstr ""
838
 
839
- #: ../admin/config/index.php:224 ../admin/view/addons.php:35
840
- #: ../admin/wp-slimstat-admin.php:124
841
  msgid "Add-ons"
842
  msgstr ""
843
 
 
 
 
 
 
 
 
 
 
 
 
 
844
  #: ../admin/config/maintenance.php:16
845
  msgid ""
846
  "Congratulations! Slimstat Analytics is now optimized for <a href=\"http://"
@@ -855,176 +1017,195 @@ msgstr ""
855
  msgid "records deleted from your database."
856
  msgstr ""
857
 
858
- #: ../admin/config/maintenance.php:48
859
  msgid "The geolocation database has been uninstalled from your server."
860
  msgstr ""
861
 
862
- #: ../admin/config/maintenance.php:58
 
 
 
 
 
 
863
  msgid "The geolocation database has been installed on your server."
864
  msgstr ""
865
 
866
- #: ../admin/config/maintenance.php:82
867
- msgid "Your reports were successfully restored to their default arrangement."
 
 
 
 
 
 
 
 
 
 
868
  msgstr ""
869
 
870
- #: ../admin/config/maintenance.php:92
 
 
 
 
 
 
871
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
872
  msgstr ""
873
 
874
- #: ../admin/config/maintenance.php:98
875
  msgid "All the archived records were successfully deleted."
876
  msgstr ""
877
 
878
- #: ../admin/config/maintenance.php:106
879
  msgid "All the records were successfully deleted."
880
  msgstr ""
881
 
882
- #: ../admin/config/maintenance.php:132
883
  msgid "Troubleshooting"
884
  msgstr ""
885
 
886
- #: ../admin/config/maintenance.php:135
887
- msgid "Tracker Status"
888
  msgstr ""
889
 
890
- #: ../admin/config/maintenance.php:137
891
- msgid "Reset the tracker status"
892
  msgstr ""
893
 
894
- #: ../admin/config/maintenance.php:137
895
  msgid "So far so good."
896
  msgstr ""
897
 
898
- #: ../admin/config/maintenance.php:138
899
  msgid ""
900
  "The information here above is useful to troubleshoot issues with the "
901
- "tracker. It includes both <strong>errors</strong>, which are returned when "
902
- "the tracker could not record a pageview and are indicative of some kind of "
903
- "malfunction, and <strong>notices</strong>, which explain the reason why the "
904
- "most recent pageview was not recorded, based on your settings (filters, "
905
- "blackslists, etc). Please include the message here above when sending a "
906
- "support request."
907
  msgstr ""
908
 
909
- #: ../admin/config/maintenance.php:144
910
- msgid "Enable SQL Debug"
911
  msgstr ""
912
 
913
- #: ../admin/config/maintenance.php:147
914
- msgid ""
915
- "Display the SQL code used to retrieve the data from the database. Useful to "
916
- "troubleshoot issues with data consistency or missing pageviews."
917
  msgstr ""
918
 
919
- #: ../admin/config/maintenance.php:151
920
- msgid "Disable SQL Debug"
 
 
 
921
  msgstr ""
922
 
923
- #: ../admin/config/maintenance.php:154
924
- msgid "Deactivate the SQL output on top of each report."
925
  msgstr ""
926
 
927
- #: ../admin/config/maintenance.php:159
928
  msgid ""
929
- "Are you sure you want to restore the default arrangement of your reports?"
 
930
  msgstr ""
931
 
932
- #: ../admin/config/maintenance.php:159
933
- msgid "No Panic Button"
934
  msgstr ""
935
 
936
- #: ../admin/config/maintenance.php:161
937
- msgid ""
938
- "Reset the default arrangement of your reports. Helpful when, for some "
939
- "reason, reports disappear from your panels or something doesn't look right "
940
- "in your views."
941
  msgstr ""
942
 
943
- #: ../admin/config/maintenance.php:165
944
  msgid "Data Maintenance"
945
  msgstr ""
946
 
947
- #: ../admin/config/maintenance.php:168
948
  msgid "Delete pageviews where"
949
  msgstr ""
950
 
951
- #: ../admin/config/maintenance.php:182 ../admin/view/wp-slimstat-db.php:71
952
  msgid "equals"
953
  msgstr ""
954
 
955
- #: ../admin/config/maintenance.php:183 ../admin/view/wp-slimstat-db.php:72
956
  msgid "is not equal to"
957
  msgstr ""
958
 
959
- #: ../admin/config/maintenance.php:184 ../admin/view/wp-slimstat-db.php:73
960
  msgid "contains"
961
  msgstr ""
962
 
963
- #: ../admin/config/maintenance.php:185 ../admin/view/wp-slimstat-db.php:74
964
  msgid "is included in"
965
  msgstr ""
966
 
967
- #: ../admin/config/maintenance.php:186 ../admin/view/wp-slimstat-db.php:75
968
  msgid "does not contain"
969
  msgstr ""
970
 
971
- #: ../admin/config/maintenance.php:187 ../admin/view/wp-slimstat-db.php:76
972
  msgid "starts with"
973
  msgstr ""
974
 
975
- #: ../admin/config/maintenance.php:188 ../admin/view/wp-slimstat-db.php:77
976
  msgid "ends with"
977
  msgstr ""
978
 
979
- #: ../admin/config/maintenance.php:189 ../admin/view/wp-slimstat-db.php:78
980
  msgid "sounds like"
981
  msgstr ""
982
 
983
- #: ../admin/config/maintenance.php:190 ../admin/view/wp-slimstat-db.php:79
984
  msgid "is greater than"
985
  msgstr ""
986
 
987
- #: ../admin/config/maintenance.php:191 ../admin/view/wp-slimstat-db.php:80
988
  msgid "is less than"
989
  msgstr ""
990
 
991
- #: ../admin/config/maintenance.php:192 ../admin/view/wp-slimstat-db.php:82
992
  msgid "matches"
993
  msgstr ""
994
 
995
- #: ../admin/config/maintenance.php:193 ../admin/view/wp-slimstat-db.php:83
996
  msgid "does not match"
997
  msgstr ""
998
 
999
- #: ../admin/config/maintenance.php:194 ../admin/view/wp-slimstat-db.php:84
1000
  msgid "is empty"
1001
  msgstr ""
1002
 
1003
- #: ../admin/config/maintenance.php:195 ../admin/view/wp-slimstat-db.php:85
1004
  msgid "is not empty"
1005
  msgstr ""
1006
 
1007
- #: ../admin/config/maintenance.php:198 ../admin/view/index.php:29
1008
- #: ../admin/view/index.php:92
1009
  msgid "Apply"
1010
  msgstr ""
1011
 
1012
- #: ../admin/config/maintenance.php:199
1013
  msgid ""
1014
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1015
  msgstr ""
1016
 
1017
- #: ../admin/config/maintenance.php:206
1018
  msgid ""
1019
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1020
  "database?"
1021
  msgstr ""
1022
 
1023
- #: ../admin/config/maintenance.php:206
1024
  msgid "Delete All Records"
1025
  msgstr ""
1026
 
1027
- #: ../admin/config/maintenance.php:209
1028
  msgid ""
1029
  "Erase all the information collected so far by Slimstat, but not the archived "
1030
  "records (<code>wp_slim_stats_archive</code>). This operation <strong>does "
@@ -1032,112 +1213,149 @@ msgid ""
1032
  "your records from the archive table."
1033
  msgstr ""
1034
 
1035
- #: ../admin/config/maintenance.php:215
1036
  msgid ""
1037
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1038
  "archive?"
1039
  msgstr ""
1040
 
1041
- #: ../admin/config/maintenance.php:215
1042
  msgid "Delete Archive"
1043
  msgstr ""
1044
 
1045
- #: ../admin/config/maintenance.php:218
1046
  msgid "Erase all the archived records. This operation cannot be undone."
1047
  msgstr ""
1048
 
1049
- #: ../admin/config/maintenance.php:224
1050
  msgid "Improve Performance"
1051
  msgstr ""
1052
 
1053
- #: ../admin/config/maintenance.php:228
1054
  msgid ""
1055
  "Please note that you will need about 30% more DB space to store the extra "
1056
  "information required."
1057
  msgstr ""
1058
 
1059
- #: ../admin/config/maintenance.php:232
1060
  msgid "Save DB Space"
1061
  msgstr ""
1062
 
1063
- #: ../admin/config/maintenance.php:235
1064
  msgid ""
1065
  "Please note that by removing table indexes, Slimstat's performance will be "
1066
  "affected."
1067
  msgstr ""
1068
 
1069
- #: ../admin/config/maintenance.php:240
1070
- msgid "MaxMind IP to Country"
1071
  msgstr ""
1072
 
1073
- #: ../admin/config/maintenance.php:246
1074
  msgid ""
1075
  "Do you want to download and install the geolocation database from MaxMind's "
1076
  "server?"
1077
  msgstr ""
1078
 
1079
- #: ../admin/config/maintenance.php:246
1080
  msgid "Install GeoLite DB"
1081
  msgstr ""
1082
 
1083
- #: ../admin/config/maintenance.php:249
1084
  msgid "Do you want to uninstall the geolocation database?"
1085
  msgstr ""
1086
 
1087
- #: ../admin/config/maintenance.php:249
1088
  msgid "Uninstall GeoLite DB"
1089
  msgstr ""
1090
 
1091
- #: ../admin/config/maintenance.php:253
1092
  msgid ""
1093
- "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1094
- "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1095
- "released under the Creative Commons BY-SA 3.0 license, and cannot be "
1096
- "directly bundled with the plugin because of license incompatibility issues. "
1097
- "We are mandated to have the user take an affirmative action in order to "
1098
- "enable this functionality."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1099
  msgstr ""
1100
 
1101
- #: ../admin/config/maintenance.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1102
  msgid "Configuration String"
1103
  msgstr ""
1104
 
1105
- #: ../admin/config/maintenance.php:262
1106
  msgid ""
1107
  "Here below you can find the current configuration string for Slimstat. You "
1108
  "can update your settings by pasting a new string inside the text area and "
1109
  "clicking the Import button."
1110
  msgstr ""
1111
 
1112
- #: ../admin/config/maintenance.php:267
1113
  msgid "Import"
1114
  msgstr ""
1115
 
1116
- #: ../admin/config/maintenance.php:268
1117
  msgid "Are you sure you want to OVERWRITE your current settings?"
1118
  msgstr ""
1119
 
1120
- #: ../admin/config/maintenance.php:273
1121
  msgid "Database Information"
1122
  msgstr ""
1123
 
1124
- #: ../admin/config/maintenance.php:276
1125
  msgid "Engine"
1126
  msgstr ""
1127
 
1128
- #: ../admin/config/maintenance.php:280
1129
  msgid "switch to InnoDB"
1130
  msgstr ""
1131
 
1132
- #: ../admin/config/maintenance.php:291
1133
  msgid "records"
1134
  msgstr ""
1135
 
1136
- #: ../admin/config/maintenance.php:298
1137
  msgid "Old Tables"
1138
  msgstr ""
1139
 
1140
- #: ../admin/config/maintenance.php:299
1141
  #, php-format
1142
  msgid ""
1143
  "It looks like your database was upgraded from a version prior to 4.0. Our "
@@ -1150,27 +1368,28 @@ msgid ""
1150
  "%s. When in doubt, do not hesitate to contact us for help."
1151
  msgstr ""
1152
 
1153
- #: ../admin/update-checker/github-checker.php:120
1154
- msgid "There is no changelog available."
1155
- msgstr ""
1156
-
1157
- #: ../admin/update-checker/plugin-update-checker.php:637
1158
  msgid "Check for updates"
1159
  msgstr ""
1160
 
1161
- #: ../admin/update-checker/plugin-update-checker.php:681
1162
- msgid "This plugin is up to date."
1163
  msgstr ""
1164
 
1165
- #: ../admin/update-checker/plugin-update-checker.php:683
1166
- msgid "A new version of this plugin is available."
 
1167
  msgstr ""
1168
 
1169
- #: ../admin/update-checker/plugin-update-checker.php:685
1170
  #, php-format
1171
  msgid "Unknown update checker status \"%s\""
1172
  msgstr ""
1173
 
 
 
 
 
1174
  #: ../admin/view/addons.php:19
1175
  #, php-format
1176
  msgid ""
@@ -1197,8 +1416,8 @@ msgstr ""
1197
  #: ../admin/view/addons.php:40
1198
  #, php-format
1199
  msgid ""
1200
- "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true"
1201
- "\">click here</a> to clear the cache."
1202
  msgstr ""
1203
 
1204
  #: ../admin/view/addons.php:54
@@ -1225,110 +1444,137 @@ msgstr ""
1225
  msgid "Installed and Active"
1226
  msgstr ""
1227
 
1228
- #: ../admin/view/index.php:8
1229
- msgid "Filter"
1230
  msgstr ""
1231
 
1232
- #: ../admin/view/index.php:33
1233
  msgid "Load"
1234
  msgstr ""
1235
 
1236
- #: ../admin/view/index.php:53 ../admin/view/wp-slimstat-reports.php:1390
1237
  msgid "Today"
1238
  msgstr ""
1239
 
1240
- #: ../admin/view/index.php:54 ../admin/view/wp-slimstat-reports.php:1393
1241
  msgid "Yesterday"
1242
  msgstr ""
1243
 
1244
- #: ../admin/view/index.php:55
1245
  msgid "Last 7 Days"
1246
  msgstr ""
1247
 
1248
- #: ../admin/view/index.php:56
1249
- msgid "Last 60 Days"
1250
  msgstr ""
1251
 
1252
- #: ../admin/view/index.php:57
1253
  msgid "Last 90 Days"
1254
  msgstr ""
1255
 
1256
- #: ../admin/view/index.php:58
1257
- msgid "This Year So Far"
1258
  msgstr ""
1259
 
1260
- #: ../admin/view/index.php:59
1261
  msgid "Date Range"
1262
  msgstr ""
1263
 
1264
- #: ../admin/view/index.php:61 ../admin/view/wp-slimstat-db.php:94
 
 
 
 
1265
  msgid "Day"
1266
  msgstr ""
1267
 
1268
- #: ../admin/view/index.php:71 ../admin/view/wp-slimstat-db.php:95
1269
  msgid "Month"
1270
  msgstr ""
1271
 
1272
- #: ../admin/view/index.php:80 ../admin/view/wp-slimstat-db.php:96
1273
  msgid "Year"
1274
  msgstr ""
1275
 
1276
- #: ../admin/view/index.php:81 ../admin/view/wp-slimstat-db.php:93
1277
- msgid "Hour"
1278
  msgstr ""
1279
 
1280
- #: ../admin/view/index.php:82
1281
- msgid "Min"
 
 
1282
  msgstr ""
1283
 
1284
- #: ../admin/view/index.php:90 ../admin/view/wp-slimstat-db.php:99
1285
- msgid "hours"
1286
  msgstr ""
1287
 
1288
- #: ../admin/view/index.php:91
1289
- msgid "mins"
1290
  msgstr ""
1291
 
1292
- #: ../admin/view/index.php:100
1293
- msgid "Reset Filters"
 
 
 
1294
  msgstr ""
1295
 
1296
- #: ../admin/view/index.php:119
1297
  #, php-format
1298
  msgid ""
1299
- "Install MaxMind's <a href='%s'>GeoLite DB</a> to determine your visitors' "
1300
- "country of origin."
1301
  msgstr ""
1302
 
1303
- #: ../admin/view/index.php:123
1304
  #, php-format
1305
  msgid ""
1306
- "A caching plugin has been detected on your website. Please <a href='%s' "
1307
- "target='_blank'>make sure to configure</a> Slimstat Analytics accordingly, "
1308
- "to get accurate information."
1309
  msgstr ""
1310
 
1311
- #: ../admin/view/layout.php:47
1312
  msgid "Customize and organize your reports"
1313
  msgstr ""
1314
 
1315
- #: ../admin/view/layout.php:48
1316
  msgid ""
1317
  "Drag and drop report placeholders from one container to another, to "
1318
  "customize the information you want to see right away when you open Slimstat. "
1319
  "Place two or more charts on the same view, clone reports or move them to the "
1320
  "Inactive Reports container for improved performance. It is your website, and "
1321
  "you know how metrics should be combined to get a clear picture of the "
1322
- "traffic it generates.<br/><br/><strong>Note</strong>: if a placeholder is "
1323
- "greyed out, it means that the corresponding report is currently hidden "
1324
- "(Screen Options tab)."
 
 
 
 
1325
  msgstr ""
1326
 
1327
  #: ../admin/view/layout.php:64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1328
  msgid "Clone"
1329
  msgstr ""
1330
 
1331
- #: ../admin/view/layout.php:68
1332
  msgid "Delete"
1333
  msgstr ""
1334
 
@@ -1348,147 +1594,158 @@ msgstr ""
1348
  msgid "Syndication Reader"
1349
  msgstr ""
1350
 
1351
- #: ../admin/view/right-now.php:41 ../admin/view/wp-slimstat-reports.php:1036
1352
- #: ../admin/view/wp-slimstat-reports.php:1751
 
 
1353
  msgid "No data to display"
1354
  msgstr ""
1355
 
1356
- #: ../admin/view/right-now.php:62
1357
  msgid "Date and Time"
1358
  msgstr ""
1359
 
1360
- # Unknown
1361
- #: ../admin/view/right-now.php:71 ../admin/view/wp-slimstat-reports.php:1088
1362
- #: ../admin/view/wp-slimstat-reports.php:1794 ../wp-slimstat.php:1236
1363
  msgid "c-"
1364
- msgstr "Unknown"
1365
 
1366
- #: ../admin/view/right-now.php:123 ../admin/view/wp-slimstat-db.php:60
1367
- #: ../admin/wp-slimstat-admin.php:1370 ../admin/wp-slimstat-admin.php:1410
1368
  msgid "Originating IP"
1369
  msgstr ""
1370
 
1371
- #: ../admin/view/right-now.php:157 ../admin/view/wp-slimstat-reports.php:1187
1372
- #: ../admin/view/wp-slimstat-reports.php:1192
1373
- #: ../admin/view/wp-slimstat-reports.php:1197
 
1374
  msgid "Open this URL in a new window"
1375
  msgstr ""
1376
 
1377
- #: ../admin/view/right-now.php:160
1378
  msgid "Local search results page"
1379
  msgstr ""
1380
 
1381
- #: ../admin/view/right-now.php:166 ../admin/view/wp-slimstat-db.php:42
1382
- #: ../admin/view/wp-slimstat-reports.php:242
1383
- #: ../admin/view/wp-slimstat-reports.php:252
1384
- #: ../admin/wp-slimstat-admin.php:1373 ../admin/wp-slimstat-admin.php:1389
1385
  msgid "Search Terms"
1386
  msgstr ""
1387
 
1388
- #: ../admin/view/right-now.php:175
1389
  msgid "Server Latency and Page Speed in milliseconds"
1390
  msgstr ""
1391
 
1392
- #: ../admin/view/right-now.php:175
1393
  msgid "SL"
1394
  msgstr ""
1395
 
1396
- #: ../admin/view/right-now.php:175
1397
  msgid "PS"
1398
  msgstr ""
1399
 
1400
- #: ../admin/view/right-now.php:182
1401
  msgid "Time spent on this page"
1402
  msgstr ""
1403
 
1404
- #: ../admin/view/right-now.php:192
 
 
 
 
1405
  msgid "Open this referrer in a new window"
1406
  msgstr ""
1407
 
1408
- #: ../admin/view/right-now.php:193
1409
  msgid "Content Type"
1410
  msgstr ""
1411
 
1412
- #: ../admin/view/right-now.php:200
1413
  msgid "Open this outbound link in a new window"
1414
  msgstr ""
1415
 
1416
- #: ../admin/view/right-now.php:208
1417
- msgid "Delete this pageview"
1418
  msgstr ""
1419
 
1420
- #: ../admin/view/right-now.php:219
1421
  msgid "User Logged In"
1422
  msgstr ""
1423
 
1424
- #: ../admin/view/right-now.php:229
1425
  msgid "User Logged Out"
1426
  msgstr ""
1427
 
1428
- #: ../admin/view/wp-slimstat-db.php:39 ../admin/wp-slimstat-admin.php:1386
1429
  msgid "Browser"
1430
  msgstr ""
1431
 
1432
- #: ../admin/view/wp-slimstat-db.php:40 ../admin/wp-slimstat-admin.php:1387
1433
  msgid "Country Code"
1434
  msgstr ""
1435
 
1436
- #: ../admin/view/wp-slimstat-db.php:41
1437
  msgid "IP Address"
1438
  msgstr ""
1439
 
1440
- #: ../admin/view/wp-slimstat-db.php:43 ../admin/wp-slimstat-admin.php:1390
1441
  msgid "Language Code"
1442
  msgstr ""
1443
 
1444
- #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:106
1445
- #: ../admin/wp-slimstat-admin.php:1391
1446
  msgid "Operating System"
1447
  msgstr ""
1448
 
1449
- #: ../admin/view/wp-slimstat-db.php:45 ../admin/view/wp-slimstat-db.php:107
1450
- #: ../admin/wp-slimstat-admin.php:1392
1451
  msgid "Permalink"
1452
  msgstr ""
1453
 
1454
- #: ../admin/view/wp-slimstat-db.php:46 ../admin/view/wp-slimstat-db.php:108
1455
- #: ../admin/wp-slimstat-admin.php:1393
1456
  msgid "Referer"
1457
  msgstr ""
1458
 
1459
- #: ../admin/view/wp-slimstat-db.php:47
1460
  msgid "Visitor's Username"
1461
  msgstr ""
1462
 
1463
- #: ../admin/view/wp-slimstat-db.php:48 ../admin/wp-slimstat-admin.php:1376
1464
  msgid "Outbound Link"
1465
  msgstr ""
1466
 
1467
- #: ../admin/view/wp-slimstat-db.php:49
1468
  msgid "Page Speed"
1469
  msgstr ""
1470
 
1471
- #: ../admin/view/wp-slimstat-db.php:51
1472
  msgid "-- Advanced filters --"
1473
  msgstr ""
1474
 
1475
- #: ../admin/view/wp-slimstat-db.php:52
1476
- #: ../admin/view/wp-slimstat-reports.php:372
1477
  msgid "Browser Capabilities"
1478
  msgstr ""
1479
 
1480
- #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1405
1481
  msgid "Browser Version"
1482
  msgstr ""
1483
 
1484
- #: ../admin/view/wp-slimstat-db.php:54 ../admin/wp-slimstat-admin.php:1406
1485
  msgid "Browser Type"
1486
  msgstr ""
1487
 
1488
- #: ../admin/view/wp-slimstat-db.php:55 ../admin/wp-slimstat-admin.php:1375
1489
  msgid "User Agent"
1490
  msgstr ""
1491
 
 
 
 
 
 
1492
  #: ../admin/view/wp-slimstat-db.php:56
1493
  msgid "Annotations"
1494
  msgstr ""
@@ -1497,15 +1754,15 @@ msgstr ""
1497
  msgid "Server Latency"
1498
  msgstr ""
1499
 
1500
- #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1408
1501
  msgid "Post Author"
1502
  msgstr ""
1503
 
1504
- #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1409
1505
  msgid "Post Category ID"
1506
  msgstr ""
1507
 
1508
- #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1411
1509
  msgid "Resource Content Type"
1510
  msgstr ""
1511
 
@@ -1525,254 +1782,544 @@ msgstr ""
1525
  msgid "Viewport Size"
1526
  msgstr ""
1527
 
1528
- #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1413
1529
  msgid "Visit ID"
1530
  msgstr ""
1531
 
1532
- #: ../admin/view/wp-slimstat-db.php:81
1533
  msgid "is between (x,y)"
1534
  msgstr ""
1535
 
1536
- #: ../admin/view/wp-slimstat-db.php:92
1537
  msgid "Minute"
1538
  msgstr ""
1539
 
1540
- #: ../admin/view/wp-slimstat-db.php:97
1541
- msgid "+/-"
1542
  msgstr ""
1543
 
1544
- #: ../admin/view/wp-slimstat-db.php:100
1545
  msgid "minutes"
1546
  msgstr ""
1547
 
1548
- #: ../admin/view/wp-slimstat-db.php:101
1549
  msgid "Timestamp"
1550
  msgstr ""
1551
 
1552
- #: ../admin/view/wp-slimstat-db.php:102
1553
  msgid "Exit Timestamp"
1554
  msgstr ""
1555
 
1556
- #: ../admin/view/wp-slimstat-db.php:105
1557
  msgid "Language"
1558
  msgstr ""
1559
 
1560
- #: ../admin/view/wp-slimstat-db.php:109
1561
  msgid "Metric"
1562
  msgstr ""
1563
 
1564
- #: ../admin/view/wp-slimstat-db.php:110
1565
  msgid "Value"
1566
  msgstr ""
1567
 
1568
- #: ../admin/view/wp-slimstat-db.php:111 ../admin/view/wp-slimstat-db.php:112
 
 
 
 
 
 
 
 
1569
  msgid "Notes"
1570
  msgstr ""
1571
 
1572
- #: ../admin/view/wp-slimstat-db.php:115
1573
  msgid "Event ID"
1574
  msgstr ""
1575
 
1576
- #: ../admin/view/wp-slimstat-db.php:116
1577
- #: ../admin/view/wp-slimstat-reports.php:1765
1578
  msgid "Type"
1579
  msgstr ""
1580
 
1581
- #: ../admin/view/wp-slimstat-db.php:117
1582
  msgid "Event Description"
1583
  msgstr ""
1584
 
1585
- #: ../admin/view/wp-slimstat-db.php:118
1586
  msgid "Event Coordinates"
1587
  msgstr ""
1588
 
1589
- #: ../admin/view/wp-slimstat-db.php:120
1590
- msgid "Direction"
1591
- msgstr ""
1592
-
1593
- #: ../admin/view/wp-slimstat-db.php:122
1594
  msgid "Offset"
1595
  msgstr ""
1596
 
1597
- #: ../admin/view/wp-slimstat-reports.php:65
1598
- msgid "Chart controls"
1599
  msgstr ""
1600
 
1601
- #: ../admin/view/wp-slimstat-reports.php:65
1602
- msgid "Use your mouse wheel to zoom in and out"
1603
  msgstr ""
1604
 
1605
- #: ../admin/view/wp-slimstat-reports.php:65
1606
- msgid "While zooming in, drag the chart to move to a different area"
1607
  msgstr ""
1608
 
1609
- #: ../admin/view/wp-slimstat-reports.php:68
1610
- msgid "Visitors Activity"
1611
  msgstr ""
1612
 
1613
- #: ../admin/view/wp-slimstat-reports.php:77
1614
- msgid "Color codes"
1615
  msgstr ""
1616
 
1617
- #: ../admin/view/wp-slimstat-reports.php:77
1618
- msgid "From search result page"
1619
  msgstr ""
1620
 
1621
- #: ../admin/view/wp-slimstat-reports.php:77
1622
- #: ../admin/wp-slimstat-admin.php:1368
1623
- msgid "Known Visitor"
1624
  msgstr ""
1625
 
1626
- #: ../admin/view/wp-slimstat-reports.php:77
1627
- msgid "Known Users"
1628
  msgstr ""
1629
 
1630
- #: ../admin/view/wp-slimstat-reports.php:77
1631
- msgid "Other Humans"
1632
  msgstr ""
1633
 
1634
- #: ../admin/view/wp-slimstat-reports.php:77
1635
- msgid "Bot or Crawler"
1636
  msgstr ""
1637
 
1638
- #: ../admin/view/wp-slimstat-reports.php:81
1639
- #: ../admin/view/wp-slimstat-reports.php:90
1640
- #: ../admin/view/wp-slimstat-reports.php:1368
1641
- #: ../admin/view/wp-slimstat-reports.php:1526
1642
- msgid "Pageviews"
1643
  msgstr ""
1644
 
1645
- #: ../admin/view/wp-slimstat-reports.php:91
1646
- #: ../admin/view/wp-slimstat-reports.php:285
1647
- #: ../admin/view/wp-slimstat-reports.php:526
1648
- #: ../admin/view/wp-slimstat-reports.php:1383
1649
- #: ../admin/view/wp-slimstat-reports.php:1428
1650
- msgid "Unique IPs"
1651
  msgstr ""
1652
 
1653
- #: ../admin/view/wp-slimstat-reports.php:99
1654
- msgid "About Slimstat"
 
 
1655
  msgstr ""
1656
 
1657
- #: ../admin/view/wp-slimstat-reports.php:108
1658
- msgid "Traffic at a Glance"
 
 
1659
  msgstr ""
1660
 
1661
- #: ../admin/view/wp-slimstat-reports.php:118
1662
- msgid "Currently Online"
1663
  msgstr ""
1664
 
1665
- #: ../admin/view/wp-slimstat-reports.php:131
1666
- msgid "Recent Search Terms"
1667
  msgstr ""
1668
 
1669
- #: ../admin/view/wp-slimstat-reports.php:142
1670
- msgid "Keywords used by your visitors to find your website on a search engine."
 
 
1671
  msgstr ""
1672
 
1673
- #: ../admin/view/wp-slimstat-reports.php:145
1674
- msgid "Top Web Pages"
1675
  msgstr ""
1676
 
1677
- #: ../admin/view/wp-slimstat-reports.php:156
1678
  msgid ""
1679
- "Here a \"page\" is not just a WordPress page type, but any webpage on your "
1680
- "site, including posts, products, categories, and so on. You can set the "
1681
- "corresponding filter where Resource Content Type equals cpt:"
1682
- "you_cpt_slug_here to get top web pages for a specific custom post type you "
1683
- "have."
1684
  msgstr ""
1685
 
1686
- #: ../admin/view/wp-slimstat-reports.php:159
1687
- msgid "Top Referring Domains"
 
 
 
1688
  msgstr ""
1689
 
1690
- #: ../admin/view/wp-slimstat-reports.php:173
1691
- msgid "Top Known Visitors"
 
 
1692
  msgstr ""
1693
 
1694
- #: ../admin/view/wp-slimstat-reports.php:184
1695
- msgid "Top Search Terms"
1696
  msgstr ""
1697
 
1698
- #: ../admin/view/wp-slimstat-reports.php:196
1699
- msgid "Top Countries"
1700
  msgstr ""
1701
 
1702
- #: ../admin/view/wp-slimstat-reports.php:205
1703
  msgid ""
1704
- "You can configure Slimstat to ignore a specific Country by setting the "
1705
- "corresponding filter under Settings > Slimstat > Filters."
1706
  msgstr ""
1707
 
1708
- #: ../admin/view/wp-slimstat-reports.php:208
1709
- msgid "Rankings"
1710
  msgstr ""
1711
 
1712
- #: ../admin/view/wp-slimstat-reports.php:212
1713
  msgid ""
1714
- "Slimstat retrieves live information from Alexa, Facebook and Mozscape, to "
1715
- "measures your site's rankings. Values are updated every 12 hours. Please "
1716
- "enter your personal access ID in the settings to access your personalized "
1717
- "Mozscape data."
1718
  msgstr ""
1719
 
1720
- #: ../admin/view/wp-slimstat-reports.php:215
1721
- msgid "Top Language Families"
1722
  msgstr ""
1723
 
1724
- #: ../admin/view/wp-slimstat-reports.php:228
1725
- msgid "Users Currently Online"
1726
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1727
 
1728
- #: ../admin/view/wp-slimstat-reports.php:239
 
 
 
 
1729
  msgid ""
1730
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
1731
  "Slimstat leverages this information to identify returning visitors. Please "
1732
  "note that visitors also include registered users."
1733
  msgstr ""
1734
 
1735
- #: ../admin/view/wp-slimstat-reports.php:253
1736
  msgid "Unique Terms"
1737
  msgstr ""
1738
 
1739
- #: ../admin/view/wp-slimstat-reports.php:261
1740
  msgid "Top Referring URLs"
1741
  msgstr ""
1742
 
1743
- #: ../admin/view/wp-slimstat-reports.php:274
1744
  msgid "Human Visits"
1745
  msgstr ""
1746
 
1747
- #: ../admin/view/wp-slimstat-reports.php:284
1748
- #: ../admin/view/wp-slimstat-reports.php:1424
1749
- msgid "Visits"
1750
- msgstr ""
1751
-
1752
- #: ../admin/view/wp-slimstat-reports.php:293
1753
  msgid "Audience Overview"
1754
  msgstr ""
1755
 
1756
- #: ../admin/view/wp-slimstat-reports.php:300
1757
  msgid ""
1758
  "Where not otherwise specified, the metrics in this report are referred to "
1759
  "human visitors."
1760
  msgstr ""
1761
 
1762
- #: ../admin/view/wp-slimstat-reports.php:303
1763
  msgid "Top Languages"
1764
  msgstr ""
1765
 
1766
- #: ../admin/view/wp-slimstat-reports.php:314
1767
  msgid "Top Browsers"
1768
  msgstr ""
1769
 
1770
- #: ../admin/view/wp-slimstat-reports.php:325
1771
  msgid "Top Service Providers"
1772
  msgstr ""
1773
 
1774
- #: ../admin/view/wp-slimstat-reports.php:334
1775
- #: ../admin/view/wp-slimstat-reports.php:346
1776
  msgid ""
1777
  "Internet Service Provider: a company which provides other companies or "
1778
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -1780,253 +2327,267 @@ msgid ""
1780
  "by setting the corresponding filter under Settings > Slimstat > Filters."
1781
  msgstr ""
1782
 
1783
- #: ../admin/view/wp-slimstat-reports.php:337
1784
  msgid "Top Operating Systems"
1785
  msgstr ""
1786
 
1787
- #: ../admin/view/wp-slimstat-reports.php:349
1788
  msgid "Top Screen Resolutions"
1789
  msgstr ""
1790
 
1791
- #: ../admin/view/wp-slimstat-reports.php:361
1792
  msgid "Top Viewport Sizes"
1793
  msgstr ""
1794
 
1795
- #: ../admin/view/wp-slimstat-reports.php:381
1796
  msgid "Visit Duration"
1797
  msgstr ""
1798
 
1799
- #: ../admin/view/wp-slimstat-reports.php:388
1800
  msgid ""
1801
  "All values represent the percentages of pageviews within the corresponding "
1802
  "time range."
1803
  msgstr ""
1804
 
1805
- #: ../admin/view/wp-slimstat-reports.php:391
1806
  msgid "Recent Countries"
1807
  msgstr ""
1808
 
1809
- #: ../admin/view/wp-slimstat-reports.php:402
1810
  msgid "Recent Viewport Sizes"
1811
  msgstr ""
1812
 
1813
- #: ../admin/view/wp-slimstat-reports.php:413
1814
  msgid "Recent Operating Systems"
1815
  msgstr ""
1816
 
1817
- #: ../admin/view/wp-slimstat-reports.php:424
1818
  msgid "Recent Browsers"
1819
  msgstr ""
1820
 
1821
- #: ../admin/view/wp-slimstat-reports.php:435
1822
  msgid "Recent Languages"
1823
  msgstr ""
1824
 
1825
- #: ../admin/view/wp-slimstat-reports.php:446
1826
  msgid "Top Browser Families"
1827
  msgstr ""
1828
 
1829
- #: ../admin/view/wp-slimstat-reports.php:455
1830
  msgid ""
1831
  "This report shows you what user agent families (no version considered) are "
1832
  "popular among your visitors."
1833
  msgstr ""
1834
 
1835
- #: ../admin/view/wp-slimstat-reports.php:458
1836
  msgid "Top OS Families"
1837
  msgstr ""
1838
 
1839
- #: ../admin/view/wp-slimstat-reports.php:469
1840
  msgid ""
1841
  "This report shows you what operating system families (no version considered) "
1842
  "are popular among your visitors."
1843
  msgstr ""
1844
 
1845
- #: ../admin/view/wp-slimstat-reports.php:472
1846
  msgid "Recent Users"
1847
  msgstr ""
1848
 
1849
- #: ../admin/view/wp-slimstat-reports.php:484
1850
  msgid "Top Users"
1851
  msgstr ""
1852
 
1853
- #: ../admin/view/wp-slimstat-reports.php:496
1854
- #: ../admin/view/wp-slimstat-reports.php:505
1855
  msgid "Users"
1856
  msgstr ""
1857
 
1858
- #: ../admin/view/wp-slimstat-reports.php:506
1859
  msgid "Unique Users"
1860
  msgstr ""
1861
 
1862
- #: ../admin/view/wp-slimstat-reports.php:515
1863
- #: ../admin/wp-slimstat-admin.php:106
1864
  msgid "Traffic Sources"
1865
  msgstr ""
1866
 
1867
- #: ../admin/view/wp-slimstat-reports.php:525
1868
  msgid "Domains"
1869
  msgstr ""
1870
 
1871
- #: ../admin/view/wp-slimstat-reports.php:534
1872
  msgid "Traffic Summary"
1873
  msgstr ""
1874
 
1875
- #: ../admin/view/wp-slimstat-reports.php:543
1876
  msgid "Top Referring Search Engines"
1877
  msgstr ""
1878
 
1879
- #: ../admin/view/wp-slimstat-reports.php:572
1880
  msgid "Recent Outbound Links"
1881
  msgstr ""
1882
 
1883
- #: ../admin/view/wp-slimstat-reports.php:584
1884
  msgid "Recent Posts"
1885
  msgstr ""
1886
 
1887
- #: ../admin/view/wp-slimstat-reports.php:612
1888
  msgid "Recent Feeds"
1889
  msgstr ""
1890
 
1891
- #: ../admin/view/wp-slimstat-reports.php:624
1892
  msgid "Recent Pages Not Found"
1893
  msgstr ""
1894
 
1895
- #: ../admin/view/wp-slimstat-reports.php:636
1896
  msgid "Recent Internal Searches"
1897
  msgstr ""
1898
 
1899
- #: ../admin/view/wp-slimstat-reports.php:646
1900
  msgid "Searches performed using WordPress' built-in search functionality."
1901
  msgstr ""
1902
 
1903
- #: ../admin/view/wp-slimstat-reports.php:649
1904
  msgid "Top Categories"
1905
  msgstr ""
1906
 
1907
- #: ../admin/view/wp-slimstat-reports.php:662
1908
  msgid "Top Downloads"
1909
  msgstr ""
1910
 
1911
- #: ../admin/view/wp-slimstat-reports.php:673
1912
  msgid ""
1913
  "You can configure Slimstat to track specific file extensions as downloads."
1914
  msgstr ""
1915
 
1916
- #: ../admin/view/wp-slimstat-reports.php:676
1917
  msgid "Recent Events"
1918
  msgstr ""
1919
 
1920
- #: ../admin/view/wp-slimstat-reports.php:685
1921
- #: ../admin/view/wp-slimstat-reports.php:709
1922
  msgid ""
1923
  "This report lists any <em>event</em> occurred on your website. Please refer "
1924
  "to the FAQ for more information on how to use this functionality."
1925
  msgstr ""
1926
 
1927
- #: ../admin/view/wp-slimstat-reports.php:688
1928
  msgid "Top Posts"
1929
  msgstr ""
1930
 
1931
- #: ../admin/view/wp-slimstat-reports.php:700
1932
  msgid "Top Events"
1933
  msgstr ""
1934
 
1935
- #: ../admin/view/wp-slimstat-reports.php:712
1936
  msgid "Top Internal Searches"
1937
  msgstr ""
1938
 
1939
- #: ../admin/view/wp-slimstat-reports.php:724
1940
  msgid "Recent Categories"
1941
  msgstr ""
1942
 
1943
- #: ../admin/view/wp-slimstat-reports.php:736
1944
  msgid "Top Pages Not Found"
1945
  msgstr ""
1946
 
1947
- #: ../admin/view/wp-slimstat-reports.php:748
1948
  msgid "Top Authors"
1949
  msgstr ""
1950
 
1951
- #: ../admin/view/wp-slimstat-reports.php:759
1952
  msgid "Top Tags"
1953
  msgstr ""
1954
 
1955
- #: ../admin/view/wp-slimstat-reports.php:771
1956
  msgid "Recent Downloads"
1957
  msgstr ""
1958
 
1959
- #: ../admin/view/wp-slimstat-reports.php:783
1960
  msgid "Top Outbound Links"
1961
  msgstr ""
1962
 
1963
- #: ../admin/view/wp-slimstat-reports.php:795
1964
  msgid "Your Website"
1965
  msgstr ""
1966
 
1967
- #: ../admin/view/wp-slimstat-reports.php:802
1968
  msgid ""
1969
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
1970
  "this report is not affected by the filters set here above."
1971
  msgstr ""
1972
 
1973
- #: ../admin/view/wp-slimstat-reports.php:805
1974
  msgid "Top Bounce Pages"
1975
  msgstr ""
1976
 
1977
- #: ../admin/view/wp-slimstat-reports.php:818
1978
  msgid "Top Exit Pages"
1979
  msgstr ""
1980
 
1981
- #: ../admin/view/wp-slimstat-reports.php:831
1982
  msgid "Top Entry Pages"
1983
  msgstr ""
1984
 
1985
- #: ../admin/view/wp-slimstat-reports.php:844
1986
  msgid "Pages with Outbound Links"
1987
  msgstr ""
1988
 
1989
- #: ../admin/view/wp-slimstat-reports.php:853
1990
  msgid "Outbound Links"
1991
  msgstr ""
1992
 
1993
- #: ../admin/view/wp-slimstat-reports.php:854
1994
  msgid "Unique Outbound"
1995
  msgstr ""
1996
 
1997
- #: ../admin/view/wp-slimstat-reports.php:863
 
 
 
 
1998
  msgid "World Map"
1999
  msgstr ""
2000
 
2001
- #: ../admin/view/wp-slimstat-reports.php:944
 
 
 
 
 
 
 
 
 
 
 
2002
  msgid "Refresh"
2003
  msgstr ""
2004
 
2005
- #: ../admin/view/wp-slimstat-reports.php:981
2006
  #, php-format
2007
  msgid "Results %s - %s of %s"
2008
  msgstr ""
2009
 
2010
- #: ../admin/view/wp-slimstat-reports.php:983
2011
  msgid "Refresh in"
2012
  msgstr ""
2013
 
2014
- #: ../admin/view/wp-slimstat-reports.php:1082
2015
  msgid "Category ID"
2016
  msgstr ""
2017
 
2018
- #: ../admin/view/wp-slimstat-reports.php:1087
2019
- #: ../admin/view/wp-slimstat-reports.php:1101
2020
- #: ../admin/view/wp-slimstat-reports.php:1106
2021
  msgid "Code"
2022
  msgstr ""
2023
 
2024
- #: ../admin/view/wp-slimstat-reports.php:1102
2025
- #: ../languages/dynamic_strings.php:339 ../wp-slimstat.php:1248
2026
  msgid "l-"
2027
- msgstr "Unknown"
2028
 
2029
- #: ../admin/view/wp-slimstat-reports.php:1119
2030
  msgid "URL"
2031
  msgstr ""
2032
 
@@ -2034,1616 +2595,1091 @@ msgstr ""
2034
  msgid "Referrer"
2035
  msgstr ""
2036
 
2037
- #: ../admin/view/wp-slimstat-reports.php:1335
2038
- msgid "Dataset Size"
 
2039
  msgstr ""
2040
 
2041
- #: ../admin/view/wp-slimstat-reports.php:1337
2042
- msgid "Total number of records stored in the database."
2043
  msgstr ""
2044
 
2045
- #: ../admin/view/wp-slimstat-reports.php:1339
2046
- msgid "DB Size"
2047
  msgstr ""
2048
 
2049
- #: ../admin/view/wp-slimstat-reports.php:1342
2050
- msgid "Tracking Enabled"
2051
  msgstr ""
2052
 
2053
- #: ../admin/view/wp-slimstat-reports.php:1345
2054
- msgid "Javascript Mode"
2055
  msgstr ""
2056
 
2057
- #: ../admin/view/wp-slimstat-reports.php:1348
2058
- msgid "Tracking Browser Caps"
2059
  msgstr ""
2060
 
2061
- #: ../admin/view/wp-slimstat-reports.php:1351
2062
- msgid "Auto purge"
 
 
 
2063
  msgstr ""
2064
 
2065
- #: ../admin/view/wp-slimstat-reports.php:1352
2066
- #: ../admin/wp-slimstat-admin.php:1234
2067
- msgid "Off"
2068
  msgstr ""
2069
 
2070
- #: ../admin/view/wp-slimstat-reports.php:1354
2071
- msgid "Oldest pageview"
 
 
 
2072
  msgstr ""
2073
 
2074
- #: ../admin/view/wp-slimstat-reports.php:1355
2075
- msgid "No visits"
2076
  msgstr ""
2077
 
2078
- #: ../admin/view/wp-slimstat-reports.php:1357
2079
- #: ../admin/wp-slimstat-admin.php:112
2080
- msgid "Geolocation"
2081
  msgstr ""
2082
 
2083
- #: ../admin/view/wp-slimstat-reports.php:1359
2084
- msgid "Date when the MaxMind Geolocation database was last updated."
2085
  msgstr ""
2086
 
2087
- #: ../admin/view/wp-slimstat-reports.php:1370
2088
- #: ../admin/view/wp-slimstat-reports.php:1528
2089
- msgid ""
2090
- "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
2091
- "the tracking code is executed."
2092
  msgstr ""
2093
 
2094
- #: ../admin/view/wp-slimstat-reports.php:1372
2095
- msgid "Days in Range"
 
 
2096
  msgstr ""
2097
 
2098
- #: ../admin/view/wp-slimstat-reports.php:1375
2099
- msgid "Average Daily Pageviews"
2100
  msgstr ""
2101
 
2102
- #: ../admin/view/wp-slimstat-reports.php:1377
2103
- msgid ""
2104
- "How many pages have been visited on average every day during the current "
2105
- "period."
2106
  msgstr ""
2107
 
2108
- #: ../admin/view/wp-slimstat-reports.php:1379
2109
- msgid "From Search Results"
2110
  msgstr ""
2111
 
2112
- #: ../admin/view/wp-slimstat-reports.php:1381
2113
- msgid ""
2114
- "Visitors who landed on your site after searching for a keyword on Google, "
2115
- "Yahoo, etc."
2116
  msgstr ""
2117
 
2118
- #: ../admin/view/wp-slimstat-reports.php:1385
2119
- msgid ""
2120
- "Used to differentiate between multiple requests to download a file from one "
2121
- "internet address (IP) and requests originating from many distinct addresses"
2122
  msgstr ""
2123
 
2124
- #: ../admin/view/wp-slimstat-reports.php:1387
2125
- msgid "Last 30 minutes"
2126
  msgstr ""
2127
 
2128
- #: ../admin/view/wp-slimstat-reports.php:1426
2129
- msgid ""
2130
- "A visit is a session of at most 30 minutes. Returning visitors are counted "
2131
- "multiple times if they perform multiple visits."
2132
  msgstr ""
2133
 
2134
- #: ../admin/view/wp-slimstat-reports.php:1430
2135
- msgid "It includes only traffic generated by human visitors."
2136
  msgstr ""
2137
 
2138
- #: ../admin/view/wp-slimstat-reports.php:1432
2139
- msgid "Bounce rate"
2140
  msgstr ""
2141
 
2142
- #: ../admin/view/wp-slimstat-reports.php:1434
2143
- msgid ""
2144
- "Percentage of single-page visits, i.e. visits in which the person left your "
2145
- "site from the entrance page."
2146
  msgstr ""
2147
 
2148
- #: ../admin/view/wp-slimstat-reports.php:1436
2149
- msgid "Known visitors"
2150
  msgstr ""
2151
 
2152
- #: ../admin/view/wp-slimstat-reports.php:1438
2153
- msgid "Visitors who had previously left a comment on your blog."
2154
  msgstr ""
2155
 
2156
- #: ../admin/view/wp-slimstat-reports.php:1440
2157
- msgid "New visitors"
2158
  msgstr ""
2159
 
2160
- #: ../admin/view/wp-slimstat-reports.php:1442
2161
- msgid "Human users who visited your site only once."
2162
  msgstr ""
2163
 
2164
- #: ../admin/view/wp-slimstat-reports.php:1444
2165
- msgid "Bots"
2166
  msgstr ""
2167
 
2168
- #: ../admin/view/wp-slimstat-reports.php:1447
2169
- msgid "Pageviews per visit"
2170
  msgstr ""
2171
 
2172
- #: ../admin/view/wp-slimstat-reports.php:1450
2173
- msgid "Longest visit"
2174
  msgstr ""
2175
 
2176
- #: ../admin/view/wp-slimstat-reports.php:1451
2177
- msgid "hits"
2178
  msgstr ""
2179
 
2180
- #: ../admin/view/wp-slimstat-reports.php:1462
2181
- msgid "0 - 30 seconds"
2182
  msgstr ""
2183
 
2184
- #: ../admin/view/wp-slimstat-reports.php:1468
2185
- msgid "31 - 60 seconds"
2186
  msgstr ""
2187
 
2188
- #: ../admin/view/wp-slimstat-reports.php:1474
2189
- msgid "1 - 3 minutes"
2190
  msgstr ""
2191
 
2192
- #: ../admin/view/wp-slimstat-reports.php:1480
2193
- msgid "3 - 5 minutes"
2194
  msgstr ""
2195
 
2196
- #: ../admin/view/wp-slimstat-reports.php:1486
2197
- msgid "5 - 7 minutes"
2198
  msgstr ""
2199
 
2200
- #: ../admin/view/wp-slimstat-reports.php:1492
2201
- msgid "7 - 10 minutes"
2202
  msgstr ""
2203
 
2204
- #: ../admin/view/wp-slimstat-reports.php:1498
2205
- msgid "More than 10 minutes"
2206
  msgstr ""
2207
 
2208
- #: ../admin/view/wp-slimstat-reports.php:1510
2209
- msgid "Average visit duration"
2210
  msgstr ""
2211
 
2212
- #: ../admin/view/wp-slimstat-reports.php:1530
2213
- msgid "Unique Referrers"
2214
  msgstr ""
2215
 
2216
- #: ../admin/view/wp-slimstat-reports.php:1532
2217
- msgid ""
2218
- "A referrer (or referring site) is the site that a visitor previously visited "
2219
- "before following a link to your site."
2220
  msgstr ""
2221
 
2222
- #: ../admin/view/wp-slimstat-reports.php:1534
2223
- msgid "Direct Pageviews"
2224
  msgstr ""
2225
 
2226
- #: ../admin/view/wp-slimstat-reports.php:1536
2227
- msgid ""
2228
- "Visitors who visited the site by typing the URL directly into their browser. "
2229
- "<em>Direct</em> can also refer to the visitors who clicked on the links from "
2230
- "their bookmarks/favorites, untagged links within emails, or links from "
2231
- "documents that don't include tracking variables."
2232
  msgstr ""
2233
 
2234
- #: ../admin/view/wp-slimstat-reports.php:1538
2235
- msgid "From a search result"
2236
  msgstr ""
2237
 
2238
- #: ../admin/view/wp-slimstat-reports.php:1540
2239
- msgid ""
2240
- "Visitors who came to your site via searches on Google or some other search "
2241
- "engine."
2242
  msgstr ""
2243
 
2244
- #: ../admin/view/wp-slimstat-reports.php:1542
2245
- msgid "Unique Landing Pages"
2246
  msgstr ""
2247
 
2248
- #: ../admin/view/wp-slimstat-reports.php:1544
2249
- msgid ""
2250
- "The first page that a user views during a session. This is also known as the "
2251
- "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
2252
- "Space,' and they land on your home page, it gets counted (for that visit) as "
2253
- "a landing page."
2254
  msgstr ""
2255
 
2256
- #: ../admin/view/wp-slimstat-reports.php:1546
2257
- msgid "Bounce Pages"
2258
  msgstr ""
2259
 
2260
- #: ../admin/view/wp-slimstat-reports.php:1548
2261
- msgid "Number of single page visits to your site over the selected period."
2262
  msgstr ""
2263
 
2264
- #: ../admin/view/wp-slimstat-reports.php:1550
2265
- msgid "New Visitors Rate"
2266
  msgstr ""
2267
 
2268
- #: ../admin/view/wp-slimstat-reports.php:1552
2269
- msgid ""
2270
- "Percentage of single page visits, i.e. visits in which the person left your "
2271
- "site from the entrance page."
2272
  msgstr ""
2273
 
2274
- #: ../admin/view/wp-slimstat-reports.php:1554
2275
- msgid "Currently from search engines"
2276
  msgstr ""
2277
 
2278
- #: ../admin/view/wp-slimstat-reports.php:1556
2279
- msgid ""
2280
- "Visitors who visited the site in the last 5 minutes coming from a search "
2281
- "engine."
2282
  msgstr ""
2283
 
2284
- #: ../admin/view/wp-slimstat-reports.php:1574
2285
- msgid "Backlinks"
2286
  msgstr ""
2287
 
2288
- #: ../admin/view/wp-slimstat-reports.php:1575
2289
- msgid "Number of external equity links to your website."
2290
  msgstr ""
2291
 
2292
- #: ../admin/view/wp-slimstat-reports.php:1579
2293
- msgid "MozRank"
2294
  msgstr ""
2295
 
2296
- #: ../admin/view/wp-slimstat-reports.php:1580
2297
- msgid ""
2298
- "MozRank of the URL, in a normalized 10-point score. MozRank represents a "
2299
- "link popularity score. It reflects the importance of any given web page on "
2300
- "the Internet."
2301
  msgstr ""
2302
 
2303
- #: ../admin/view/wp-slimstat-reports.php:1584
2304
- msgid "Equity Links"
2305
  msgstr ""
2306
 
2307
- #: ../admin/view/wp-slimstat-reports.php:1585
2308
- msgid ""
2309
- "Number of authority-passing links (including followed links and redirects, "
2310
- "internal or external) to your website. Set the permalink filter here above "
2311
- "to get the corresponding metrics in this report."
2312
  msgstr ""
2313
 
2314
- #: ../admin/view/wp-slimstat-reports.php:1589
2315
- msgid "Facebook Shares"
2316
  msgstr ""
2317
 
2318
- #: ../admin/view/wp-slimstat-reports.php:1594
2319
- msgid "Facebook Clicks"
2320
  msgstr ""
2321
 
2322
- #: ../admin/view/wp-slimstat-reports.php:1595
2323
- msgid "How many times links to your website have been clicked on Facebook."
2324
  msgstr ""
2325
 
2326
- #: ../admin/view/wp-slimstat-reports.php:1599
2327
- msgid "Alexa World Rank"
2328
  msgstr ""
2329
 
2330
- #: ../admin/view/wp-slimstat-reports.php:1600
2331
- msgid ""
2332
- "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2333
- "traffic data."
2334
  msgstr ""
2335
 
2336
- #: ../admin/view/wp-slimstat-reports.php:1604
2337
- msgid "Alexa Country Rank"
2338
  msgstr ""
2339
 
2340
- #: ../admin/view/wp-slimstat-reports.php:1609
2341
- msgid "Alexa Popularity"
2342
  msgstr ""
2343
 
2344
- #: ../admin/view/wp-slimstat-reports.php:1668
2345
- msgid "Alexa Delta"
2346
  msgstr ""
2347
 
2348
- #: ../admin/view/wp-slimstat-reports.php:1702
2349
- msgid "Content Items"
2350
  msgstr ""
2351
 
2352
- #: ../admin/view/wp-slimstat-reports.php:1704
2353
- msgid ""
2354
- "This value includes not only posts, but also custom post types, regardless "
2355
- "of their status"
2356
  msgstr ""
2357
 
2358
- #: ../admin/view/wp-slimstat-reports.php:1706
2359
- msgid "Posts"
2360
  msgstr ""
2361
 
2362
- #: ../admin/view/wp-slimstat-reports.php:1709
2363
- msgid "Pages"
2364
  msgstr ""
2365
 
2366
- #: ../admin/view/wp-slimstat-reports.php:1712
2367
- msgid "Attachments"
2368
  msgstr ""
2369
 
2370
- #: ../admin/view/wp-slimstat-reports.php:1715
2371
- msgid "Revisions"
2372
  msgstr ""
2373
 
2374
- #: ../admin/view/wp-slimstat-reports.php:1718
2375
- msgid "Comments"
2376
  msgstr ""
2377
 
2378
- #: ../admin/view/wp-slimstat-reports.php:1721
2379
- msgid "Avg Comments per Post"
2380
  msgstr ""
2381
 
2382
- #: ../admin/view/wp-slimstat-reports.php:1724
2383
- msgid "Avg Server Latency"
2384
  msgstr ""
2385
 
2386
- #: ../admin/view/wp-slimstat-reports.php:1726
2387
- msgid ""
2388
- "Latency is the amount of time it takes for the host server to receive and "
2389
- "process a request for a page object. The amount of latency depends largely "
2390
- "on how far away the user is from the server."
2391
  msgstr ""
2392
 
2393
- #: ../admin/view/wp-slimstat-reports.php:1769
2394
- msgid "Coordinates"
2395
  msgstr ""
2396
 
2397
- #: ../admin/view/wp-slimstat-reports.php:1769
2398
- msgid "Date"
2399
  msgstr ""
2400
 
2401
- # Unknown
2402
- #: ../admin/view/wp-slimstat-reports.php:1785
2403
- msgid "c-xx"
2404
- msgstr "Unknown"
2405
 
2406
- # Afghanistan
2407
- #: ../admin/view/wp-slimstat-reports.php:1785
2408
- msgid "c-af"
2409
- msgstr "Afghanistan"
2410
 
2411
- # Åland Islands
2412
- #: ../admin/view/wp-slimstat-reports.php:1785
2413
- msgid "c-ax"
2414
- msgstr "Aland Islands"
2415
 
2416
- # Albania
2417
- #: ../admin/view/wp-slimstat-reports.php:1785
2418
- msgid "c-al"
2419
- msgstr "Albania"
2420
 
2421
- # Algeria
2422
- #: ../admin/view/wp-slimstat-reports.php:1785
2423
- msgid "c-dz"
2424
- msgstr "Algeria"
2425
 
2426
- # Andorra
2427
- #: ../admin/view/wp-slimstat-reports.php:1785
2428
- msgid "c-ad"
2429
- msgstr "Andorra"
2430
 
2431
- # Angola
2432
- #: ../admin/view/wp-slimstat-reports.php:1785
2433
- msgid "c-ao"
2434
- msgstr "Angola"
2435
 
2436
- # Anguilla
2437
- #: ../admin/view/wp-slimstat-reports.php:1785
2438
- msgid "c-ai"
2439
- msgstr "Anguilla"
2440
 
2441
- # Antigua and Barbuda
2442
- #: ../admin/view/wp-slimstat-reports.php:1785
2443
- msgid "c-ag"
2444
- msgstr "Antigua and Barbuda"
2445
 
2446
- # Argentina
2447
- #: ../admin/view/wp-slimstat-reports.php:1785
2448
- msgid "c-ar"
2449
- msgstr "Argentina"
2450
 
2451
- # Armenia
2452
- #: ../admin/view/wp-slimstat-reports.php:1785
2453
- msgid "c-am"
2454
- msgstr "Armenia"
2455
 
2456
- # Aruba
2457
- #: ../admin/view/wp-slimstat-reports.php:1785
2458
- msgid "c-aw"
2459
- msgstr "Aruba"
2460
 
2461
- # Australia
2462
- #: ../admin/view/wp-slimstat-reports.php:1785
2463
- msgid "c-au"
2464
- msgstr "Australia"
2465
 
2466
- # Austria
2467
- #: ../admin/view/wp-slimstat-reports.php:1785
2468
- msgid "c-at"
2469
- msgstr "Austria"
2470
 
2471
- # Azerbaijan
2472
- #: ../admin/view/wp-slimstat-reports.php:1785
2473
- msgid "c-az"
2474
- msgstr "Azerbaijan"
2475
-
2476
- # Bahamas
2477
- #: ../admin/view/wp-slimstat-reports.php:1785
2478
- msgid "c-bs"
2479
- msgstr "Bahamas"
2480
-
2481
- # Bahrain
2482
- #: ../admin/view/wp-slimstat-reports.php:1785
2483
- msgid "c-bh"
2484
- msgstr "Bahrain"
2485
-
2486
- # Bangladesh
2487
- #: ../admin/view/wp-slimstat-reports.php:1785
2488
- msgid "c-bd"
2489
- msgstr "Bangladesh"
2490
-
2491
- # Barbados
2492
- #: ../admin/view/wp-slimstat-reports.php:1785
2493
- msgid "c-bb"
2494
- msgstr "Barbados"
2495
-
2496
- # Belarus
2497
- #: ../admin/view/wp-slimstat-reports.php:1785
2498
- msgid "c-by"
2499
- msgstr "Belarus"
2500
-
2501
- # Belgium
2502
- #: ../admin/view/wp-slimstat-reports.php:1785
2503
- msgid "c-be"
2504
- msgstr "Belgium"
2505
-
2506
- # Belize
2507
- #: ../admin/view/wp-slimstat-reports.php:1785
2508
- msgid "c-bz"
2509
- msgstr "Belize"
2510
-
2511
- # Benin
2512
- #: ../admin/view/wp-slimstat-reports.php:1785
2513
- msgid "c-bj"
2514
- msgstr "Benin"
2515
-
2516
- # Bermuda
2517
- #: ../admin/view/wp-slimstat-reports.php:1785
2518
- msgid "c-bm"
2519
- msgstr "Bermuda"
2520
-
2521
- # Bhutan
2522
- #: ../admin/view/wp-slimstat-reports.php:1785
2523
- msgid "c-bt"
2524
- msgstr "Bhutan"
2525
-
2526
- # Bolivia
2527
- #: ../admin/view/wp-slimstat-reports.php:1785
2528
- msgid "c-bo"
2529
- msgstr "Bolivia"
2530
-
2531
- # Bosnia and Herzegovina
2532
- #: ../admin/view/wp-slimstat-reports.php:1785
2533
- msgid "c-ba"
2534
- msgstr "Bosnia and Herzegovina"
2535
-
2536
- # Botswana
2537
- #: ../admin/view/wp-slimstat-reports.php:1785
2538
- msgid "c-bw"
2539
- msgstr "Botswana"
2540
-
2541
- # Brazil
2542
- #: ../admin/view/wp-slimstat-reports.php:1785
2543
- msgid "c-br"
2544
- msgstr "Brazil"
2545
-
2546
- # Brunei Darussalam
2547
- #: ../admin/view/wp-slimstat-reports.php:1785
2548
- msgid "c-bn"
2549
- msgstr "Brunei Darussalam"
2550
-
2551
- # Bulgaria
2552
- #: ../admin/view/wp-slimstat-reports.php:1785
2553
- msgid "c-bg"
2554
- msgstr "Bulgaria"
2555
-
2556
- # Burkina Faso
2557
- #: ../admin/view/wp-slimstat-reports.php:1785
2558
- msgid "c-bf"
2559
- msgstr "Burkina Faso"
2560
-
2561
- # Burundi
2562
- #: ../admin/view/wp-slimstat-reports.php:1785
2563
- msgid "c-bi"
2564
- msgstr "Burundi"
2565
-
2566
- # Cambodia
2567
- #: ../admin/view/wp-slimstat-reports.php:1785
2568
- msgid "c-kh"
2569
- msgstr "Cambodia"
2570
-
2571
- # Cameroon
2572
- #: ../admin/view/wp-slimstat-reports.php:1785
2573
- msgid "c-cm"
2574
- msgstr "Cameroon"
2575
-
2576
- # Canada
2577
- #: ../admin/view/wp-slimstat-reports.php:1785
2578
- msgid "c-ca"
2579
- msgstr "Canada"
2580
-
2581
- # Cape Verde
2582
- #: ../admin/view/wp-slimstat-reports.php:1785
2583
- msgid "c-cv"
2584
- msgstr "Cape Verde"
2585
-
2586
- # Cayman Islands
2587
- #: ../admin/view/wp-slimstat-reports.php:1785
2588
- msgid "c-ky"
2589
- msgstr "Cayman Islands"
2590
-
2591
- # Central African Republic
2592
- #: ../admin/view/wp-slimstat-reports.php:1785
2593
- msgid "c-cf"
2594
- msgstr "Central African Republic"
2595
-
2596
- # Chad
2597
- #: ../admin/view/wp-slimstat-reports.php:1785
2598
- msgid "c-td"
2599
- msgstr "Chad"
2600
-
2601
- # Chile
2602
- #: ../admin/view/wp-slimstat-reports.php:1785
2603
- msgid "c-cl"
2604
- msgstr "Chile"
2605
-
2606
- # China
2607
- #: ../admin/view/wp-slimstat-reports.php:1785
2608
- msgid "c-cn"
2609
- msgstr "China"
2610
-
2611
- # Colombia
2612
- #: ../admin/view/wp-slimstat-reports.php:1785
2613
- msgid "c-co"
2614
- msgstr "Colombia"
2615
-
2616
- # Comoros
2617
- #: ../admin/view/wp-slimstat-reports.php:1785
2618
- msgid "c-km"
2619
- msgstr "Comoros"
2620
-
2621
- # Congo
2622
- #: ../admin/view/wp-slimstat-reports.php:1785
2623
- msgid "c-cg"
2624
- msgstr "Congo"
2625
-
2626
- # The Democratic Republic of the Congo
2627
- #: ../admin/view/wp-slimstat-reports.php:1785
2628
- msgid "c-cd"
2629
- msgstr "The Democratic Republic of the Congo"
2630
-
2631
- # Costa Rica
2632
- #: ../admin/view/wp-slimstat-reports.php:1785
2633
- msgid "c-cr"
2634
- msgstr "Costa Rica"
2635
-
2636
- # Côte d'Ivoire
2637
- #: ../admin/view/wp-slimstat-reports.php:1785
2638
- msgid "c-ci"
2639
- msgstr "Côte d'Ivoire"
2640
-
2641
- # Croatia
2642
- #: ../admin/view/wp-slimstat-reports.php:1785
2643
- msgid "c-hr"
2644
- msgstr "Croatia"
2645
-
2646
- # Cuba
2647
- #: ../admin/view/wp-slimstat-reports.php:1785
2648
- msgid "c-cu"
2649
- msgstr "Cuba"
2650
-
2651
- # Cyprus
2652
- #: ../admin/view/wp-slimstat-reports.php:1785
2653
- msgid "c-cy"
2654
- msgstr "Cyprus"
2655
-
2656
- # Czech Republic
2657
- #: ../admin/view/wp-slimstat-reports.php:1785
2658
- msgid "c-cz"
2659
- msgstr "Czech Republic"
2660
-
2661
- # Denmark
2662
- #: ../admin/view/wp-slimstat-reports.php:1785
2663
- msgid "c-dk"
2664
- msgstr "Denmark"
2665
-
2666
- # Djibouti
2667
- #: ../admin/view/wp-slimstat-reports.php:1785
2668
- msgid "c-dj"
2669
- msgstr "Djibouti"
2670
-
2671
- # Dominica
2672
- #: ../admin/view/wp-slimstat-reports.php:1785
2673
- msgid "c-dm"
2674
- msgstr "Dominica"
2675
-
2676
- # Dominican Republic
2677
- #: ../admin/view/wp-slimstat-reports.php:1785
2678
- msgid "c-do"
2679
- msgstr "Dominican Republic"
2680
-
2681
- # Ecuador
2682
- #: ../admin/view/wp-slimstat-reports.php:1785
2683
- msgid "c-ec"
2684
- msgstr "Ecuador"
2685
-
2686
- # Egypt
2687
- #: ../admin/view/wp-slimstat-reports.php:1785
2688
- msgid "c-eg"
2689
- msgstr "Egypt"
2690
-
2691
- # El Salvador
2692
- #: ../admin/view/wp-slimstat-reports.php:1785
2693
- msgid "c-sv"
2694
- msgstr "El Salvador"
2695
-
2696
- # Equatorial Guinea
2697
- #: ../admin/view/wp-slimstat-reports.php:1785
2698
- msgid "c-gq"
2699
- msgstr "Equatorial Guinea"
2700
-
2701
- # Eritrea
2702
- #: ../admin/view/wp-slimstat-reports.php:1785
2703
- msgid "c-er"
2704
- msgstr "Eritrea"
2705
-
2706
- # Estonia
2707
- #: ../admin/view/wp-slimstat-reports.php:1785
2708
- msgid "c-ee"
2709
- msgstr "Estonia"
2710
-
2711
- # Ethiopia
2712
- #: ../admin/view/wp-slimstat-reports.php:1785
2713
- msgid "c-et"
2714
- msgstr "Ethiopia"
2715
-
2716
- # Faroe Islands
2717
- #: ../admin/view/wp-slimstat-reports.php:1785
2718
- msgid "c-fo"
2719
- msgstr "Faroe Islands"
2720
-
2721
- # Falkland Islands (Malvinas)
2722
- #: ../admin/view/wp-slimstat-reports.php:1785
2723
- msgid "c-fk"
2724
- msgstr "Falkland Islands (Malvinas)"
2725
-
2726
- # Fiji
2727
- #: ../admin/view/wp-slimstat-reports.php:1785
2728
- msgid "c-fj"
2729
- msgstr "Fiji"
2730
-
2731
- # Finland
2732
- #: ../admin/view/wp-slimstat-reports.php:1785
2733
- msgid "c-fi"
2734
- msgstr "Finland"
2735
-
2736
- # France
2737
- #: ../admin/view/wp-slimstat-reports.php:1785
2738
- msgid "c-fr"
2739
- msgstr "France"
2740
-
2741
- # French Guiana
2742
- #: ../admin/view/wp-slimstat-reports.php:1785
2743
- msgid "c-gf"
2744
- msgstr "French Guiana"
2745
-
2746
- # Gabon
2747
- #: ../admin/view/wp-slimstat-reports.php:1785
2748
- msgid "c-ga"
2749
- msgstr "Gabon"
2750
-
2751
- # Gambia
2752
- #: ../admin/view/wp-slimstat-reports.php:1785
2753
- msgid "c-gm"
2754
- msgstr "Gambia"
2755
-
2756
- # Georgia
2757
- #: ../admin/view/wp-slimstat-reports.php:1785
2758
- msgid "c-ge"
2759
- msgstr "Georgia"
2760
-
2761
- # Germany
2762
- #: ../admin/view/wp-slimstat-reports.php:1785
2763
- msgid "c-de"
2764
- msgstr "Germany"
2765
-
2766
- # Ghana
2767
- #: ../admin/view/wp-slimstat-reports.php:1785
2768
- msgid "c-gh"
2769
- msgstr "Ghana"
2770
-
2771
- # Greece
2772
- #: ../admin/view/wp-slimstat-reports.php:1785
2773
- msgid "c-gr"
2774
- msgstr "Greece"
2775
-
2776
- # Greenland
2777
- #: ../admin/view/wp-slimstat-reports.php:1785
2778
- msgid "c-gl"
2779
- msgstr "Greenland"
2780
-
2781
- # Grenada
2782
- #: ../admin/view/wp-slimstat-reports.php:1785
2783
- msgid "c-gd"
2784
- msgstr "Grenada"
2785
-
2786
- # Guadeloupe
2787
- #: ../admin/view/wp-slimstat-reports.php:1785
2788
  msgid "c-gp"
2789
- msgstr "Guadeloupe"
2790
 
2791
- # Guatemala
2792
- #: ../admin/view/wp-slimstat-reports.php:1785
2793
  msgid "c-gt"
2794
- msgstr "Guatemala"
2795
 
2796
- # Guinea
2797
- #: ../admin/view/wp-slimstat-reports.php:1785
2798
  msgid "c-gn"
2799
- msgstr "Guinea"
2800
 
2801
- # Guinea-Bissau
2802
- #: ../admin/view/wp-slimstat-reports.php:1785
2803
  msgid "c-gw"
2804
- msgstr "Guinea-Bissau"
2805
 
2806
- # Guyana
2807
- #: ../admin/view/wp-slimstat-reports.php:1785
2808
  msgid "c-gy"
2809
- msgstr "Guyana"
2810
 
2811
- # Haiti
2812
- #: ../admin/view/wp-slimstat-reports.php:1785
2813
  msgid "c-ht"
2814
- msgstr "Haiti"
2815
 
2816
- # Honduras
2817
- #: ../admin/view/wp-slimstat-reports.php:1785
2818
  msgid "c-hn"
2819
- msgstr "Honduras"
2820
 
2821
- # Hong Kong
2822
- #: ../admin/view/wp-slimstat-reports.php:1785
2823
  msgid "c-hk"
2824
- msgstr "Hong Kong"
2825
 
2826
- # Hungary
2827
- #: ../admin/view/wp-slimstat-reports.php:1785
2828
  msgid "c-hu"
2829
- msgstr "Hungary"
2830
 
2831
- # Iceland
2832
- #: ../admin/view/wp-slimstat-reports.php:1785
2833
  msgid "c-is"
2834
- msgstr "Iceland"
2835
 
2836
- # India
2837
- #: ../admin/view/wp-slimstat-reports.php:1785
2838
  msgid "c-in"
2839
- msgstr "India"
2840
 
2841
- # Indonesia
2842
- #: ../admin/view/wp-slimstat-reports.php:1785
2843
  msgid "c-id"
2844
- msgstr "Indonesia"
2845
 
2846
- # Islamic Republic of Iran
2847
- #: ../admin/view/wp-slimstat-reports.php:1785
2848
  msgid "c-ir"
2849
- msgstr "Islamic Republic of Iran"
2850
 
2851
- # Iraq
2852
- #: ../admin/view/wp-slimstat-reports.php:1785
2853
  msgid "c-iq"
2854
- msgstr "Iraq"
2855
 
2856
- # Ireland
2857
- #: ../admin/view/wp-slimstat-reports.php:1785
2858
  msgid "c-ie"
2859
- msgstr "Ireland"
2860
 
2861
- # Israel
2862
- #: ../admin/view/wp-slimstat-reports.php:1785
2863
  msgid "c-il"
2864
- msgstr "Israel"
2865
 
2866
- # Italy
2867
- #: ../admin/view/wp-slimstat-reports.php:1785
2868
  msgid "c-it"
2869
- msgstr "Italy"
2870
 
2871
- # Jamaica
2872
- #: ../admin/view/wp-slimstat-reports.php:1785
2873
  msgid "c-jm"
2874
- msgstr "Jamaica"
2875
 
2876
- # Japan
2877
- #: ../admin/view/wp-slimstat-reports.php:1785
2878
  msgid "c-jp"
2879
- msgstr "Japan"
2880
 
2881
- # Jordan
2882
- #: ../admin/view/wp-slimstat-reports.php:1785
2883
  msgid "c-jo"
2884
- msgstr "Jordan"
2885
 
2886
- # Kazakhstan
2887
- #: ../admin/view/wp-slimstat-reports.php:1785
2888
  msgid "c-kz"
2889
- msgstr "Kazakhstan"
2890
 
2891
- # Kenya
2892
- #: ../admin/view/wp-slimstat-reports.php:1785
2893
  msgid "c-ke"
2894
- msgstr "Kenya"
2895
 
2896
- # Nauru
2897
- #: ../admin/view/wp-slimstat-reports.php:1785
2898
  msgid "c-nr"
2899
- msgstr "Nauru"
2900
 
2901
- # Democratic People's Republic of Korea
2902
- #: ../admin/view/wp-slimstat-reports.php:1785
2903
  msgid "c-kp"
2904
- msgstr "Democratic People's Republic of Korea"
2905
 
2906
- # Republic of Korea
2907
- #: ../admin/view/wp-slimstat-reports.php:1785
2908
  msgid "c-kr"
2909
- msgstr "Republic of Korea"
2910
 
2911
- #: ../admin/view/wp-slimstat-reports.php:1785
2912
  msgid "c-kv"
2913
- msgstr "Kosovo"
2914
 
2915
- # Kuwait
2916
- #: ../admin/view/wp-slimstat-reports.php:1785
2917
  msgid "c-kw"
2918
- msgstr "Kuwait"
2919
 
2920
- # Kyrgyzstan
2921
- #: ../admin/view/wp-slimstat-reports.php:1785
2922
  msgid "c-kg"
2923
- msgstr "Kyrgyzstan"
2924
 
2925
- # Lao People's Democratic Republic
2926
- #: ../admin/view/wp-slimstat-reports.php:1785
2927
  msgid "c-la"
2928
- msgstr "Lao People's Democratic Republic"
2929
 
2930
- # Latvia
2931
- #: ../admin/view/wp-slimstat-reports.php:1785
2932
  msgid "c-lv"
2933
- msgstr "Latvia"
2934
 
2935
- # Lebanon
2936
- #: ../admin/view/wp-slimstat-reports.php:1785
2937
  msgid "c-lb"
2938
- msgstr "Lebanon"
2939
 
2940
- # Lesotho
2941
- #: ../admin/view/wp-slimstat-reports.php:1785
2942
  msgid "c-ls"
2943
- msgstr "Lesotho"
2944
 
2945
- # Liberia
2946
- #: ../admin/view/wp-slimstat-reports.php:1785
2947
  msgid "c-lr"
2948
- msgstr "Liberia"
2949
 
2950
- # Libyan Arab Jamahiriya
2951
- #: ../admin/view/wp-slimstat-reports.php:1785
2952
  msgid "c-ly"
2953
- msgstr "Libyan Arab Jamahiriya"
2954
 
2955
- # Liechtenstein
2956
- #: ../admin/view/wp-slimstat-reports.php:1785
2957
  msgid "c-li"
2958
- msgstr "Liechtenstein"
2959
 
2960
- # Lithuania
2961
- #: ../admin/view/wp-slimstat-reports.php:1785
2962
  msgid "c-lt"
2963
- msgstr "Lithuania"
2964
 
2965
- # Luxembourg
2966
- #: ../admin/view/wp-slimstat-reports.php:1785
2967
  msgid "c-lu"
2968
- msgstr "Luxembourg"
2969
 
2970
- # The Former Yugoslav Republic of Macedonia
2971
- #: ../admin/view/wp-slimstat-reports.php:1785
2972
  msgid "c-mk"
2973
- msgstr "The Former Yugoslav Republic of Macedonia"
2974
 
2975
- # Madagascar
2976
- #: ../admin/view/wp-slimstat-reports.php:1785
2977
  msgid "c-mg"
2978
- msgstr "Madagascar"
2979
 
2980
- # Malawi
2981
- #: ../admin/view/wp-slimstat-reports.php:1785
2982
  msgid "c-mw"
2983
- msgstr "Malawi"
2984
 
2985
- # Malaysia
2986
- #: ../admin/view/wp-slimstat-reports.php:1785
2987
  msgid "c-my"
2988
- msgstr "Malaysia"
2989
 
2990
- # Mali
2991
- #: ../admin/view/wp-slimstat-reports.php:1785
2992
  msgid "c-ml"
2993
- msgstr "Mali"
2994
 
2995
- # Malta
2996
- #: ../admin/view/wp-slimstat-reports.php:1785
2997
  msgid "c-mt"
2998
- msgstr "Malta"
2999
 
3000
- # Martinique
3001
- #: ../admin/view/wp-slimstat-reports.php:1785
3002
  msgid "c-mq"
3003
- msgstr "Martinique"
3004
 
3005
- # Mauritania
3006
- #: ../admin/view/wp-slimstat-reports.php:1785
3007
  msgid "c-mr"
3008
- msgstr "Mauritania"
3009
 
3010
- # Mauritius
3011
- #: ../admin/view/wp-slimstat-reports.php:1785
3012
  msgid "c-mu"
3013
- msgstr "Mauritius"
3014
 
3015
- # Mexico
3016
- #: ../admin/view/wp-slimstat-reports.php:1785
3017
  msgid "c-mx"
3018
- msgstr "Mexico"
3019
 
3020
- # Moldova
3021
- #: ../admin/view/wp-slimstat-reports.php:1785
3022
  msgid "c-md"
3023
- msgstr "Moldova"
3024
 
3025
- # Mongolia
3026
- #: ../admin/view/wp-slimstat-reports.php:1785
3027
  msgid "c-mn"
3028
- msgstr "Mongolia"
3029
 
3030
- # Montenegro
3031
- #: ../admin/view/wp-slimstat-reports.php:1785
3032
  msgid "c-me"
3033
- msgstr "Montenegro"
3034
 
3035
- # Montserrat
3036
- #: ../admin/view/wp-slimstat-reports.php:1785
3037
  msgid "c-ms"
3038
- msgstr "Montserrat"
3039
 
3040
- # Morocco
3041
- #: ../admin/view/wp-slimstat-reports.php:1785
3042
  msgid "c-ma"
3043
- msgstr "Morocco"
3044
 
3045
- # Mozambique
3046
- #: ../admin/view/wp-slimstat-reports.php:1785
3047
  msgid "c-mz"
3048
- msgstr "Mozambique"
3049
 
3050
- # Myanmar
3051
- #: ../admin/view/wp-slimstat-reports.php:1785
3052
  msgid "c-mm"
3053
- msgstr "Myanmar"
3054
 
3055
- # Namibia
3056
- #: ../admin/view/wp-slimstat-reports.php:1785
3057
  msgid "c-na"
3058
- msgstr "Namibia"
3059
 
3060
- # Nepal
3061
- #: ../admin/view/wp-slimstat-reports.php:1785
3062
  msgid "c-np"
3063
- msgstr "Nepal"
3064
 
3065
- # Netherlands
3066
- #: ../admin/view/wp-slimstat-reports.php:1785
3067
  msgid "c-nl"
3068
- msgstr "Netherlands"
3069
 
3070
- # New Caledonia
3071
- #: ../admin/view/wp-slimstat-reports.php:1785
3072
  msgid "c-nc"
3073
- msgstr "New Caledonia"
3074
 
3075
- # New Zealand
3076
- #: ../admin/view/wp-slimstat-reports.php:1785
3077
  msgid "c-nz"
3078
- msgstr "New Zealand"
3079
 
3080
- # Nicaragua
3081
- #: ../admin/view/wp-slimstat-reports.php:1785
3082
  msgid "c-ni"
3083
- msgstr "Nicaragua"
3084
 
3085
- # Niger
3086
- #: ../admin/view/wp-slimstat-reports.php:1785
3087
  msgid "c-ne"
3088
- msgstr "Niger"
3089
 
3090
- # Nigeria
3091
- #: ../admin/view/wp-slimstat-reports.php:1785
3092
  msgid "c-ng"
3093
- msgstr "Nigeria"
3094
 
3095
- # Norway
3096
- #: ../admin/view/wp-slimstat-reports.php:1785
3097
  msgid "c-no"
3098
- msgstr "Norway"
3099
 
3100
- # Oman
3101
- #: ../admin/view/wp-slimstat-reports.php:1785
3102
  msgid "c-om"
3103
- msgstr "Oman"
3104
 
3105
- # Pakistan
3106
- #: ../admin/view/wp-slimstat-reports.php:1785
3107
  msgid "c-pk"
3108
- msgstr "Pakistan"
3109
 
3110
- # Palau
3111
- #: ../admin/view/wp-slimstat-reports.php:1785
3112
  msgid "c-pw"
3113
- msgstr "Palau"
3114
 
3115
- # Occupied Palestinian Territory
3116
- #: ../admin/view/wp-slimstat-reports.php:1785
3117
  msgid "c-ps"
3118
- msgstr "Occupied Palestinian Territory"
3119
 
3120
- # Panama
3121
- #: ../admin/view/wp-slimstat-reports.php:1785
3122
  msgid "c-pa"
3123
- msgstr "Panama"
3124
 
3125
- # Papua New Guinea
3126
- #: ../admin/view/wp-slimstat-reports.php:1785
3127
  msgid "c-pg"
3128
- msgstr "Papua New Guinea"
3129
 
3130
- # Paraguay
3131
- #: ../admin/view/wp-slimstat-reports.php:1785
3132
  msgid "c-py"
3133
- msgstr "Paraguay"
3134
 
3135
- # Peru
3136
- #: ../admin/view/wp-slimstat-reports.php:1785
3137
  msgid "c-pe"
3138
- msgstr "Peru"
3139
 
3140
- # Philippines
3141
- #: ../admin/view/wp-slimstat-reports.php:1785
3142
  msgid "c-ph"
3143
- msgstr "Philippines"
3144
 
3145
- # Poland
3146
- #: ../admin/view/wp-slimstat-reports.php:1785
3147
  msgid "c-pl"
3148
- msgstr "Poland"
3149
 
3150
- # Portugal
3151
- #: ../admin/view/wp-slimstat-reports.php:1785
3152
  msgid "c-pt"
3153
- msgstr "Portugal"
3154
 
3155
- # Puerto Rico
3156
- #: ../admin/view/wp-slimstat-reports.php:1785
3157
  msgid "c-pr"
3158
- msgstr "Puerto Rico"
3159
 
3160
- # Qatar
3161
- #: ../admin/view/wp-slimstat-reports.php:1785
3162
  msgid "c-qa"
3163
- msgstr "Qatar"
3164
 
3165
- # Réunion
3166
- #: ../admin/view/wp-slimstat-reports.php:1785
3167
  msgid "c-re"
3168
- msgstr "Réunion"
3169
 
3170
- # Romania
3171
- #: ../admin/view/wp-slimstat-reports.php:1785
3172
  msgid "c-ro"
3173
- msgstr "Romania"
3174
 
3175
- # Russian Federation
3176
- #: ../admin/view/wp-slimstat-reports.php:1785
3177
  msgid "c-ru"
3178
- msgstr "Russian Federation"
3179
 
3180
- # Rwanda
3181
- #: ../admin/view/wp-slimstat-reports.php:1785
3182
  msgid "c-rw"
3183
- msgstr "Rwanda"
3184
 
3185
- # Saint Kitts and Nevis
3186
- #: ../admin/view/wp-slimstat-reports.php:1785
3187
  msgid "c-kn"
3188
- msgstr "Saint Kitts and Nevis"
3189
 
3190
- # Saint Lucia
3191
- #: ../admin/view/wp-slimstat-reports.php:1785
3192
  msgid "c-lc"
3193
- msgstr "Saint Lucia"
3194
 
3195
- # Saint Martin
3196
- #: ../admin/view/wp-slimstat-reports.php:1785
3197
  msgid "c-mf"
3198
- msgstr "Saint Martin"
3199
 
3200
- # Saint Vincent and the Grenadines
3201
- #: ../admin/view/wp-slimstat-reports.php:1785
3202
  msgid "c-vc"
3203
- msgstr "Saint Vincent and the Grenadines"
3204
 
3205
- # Samoa
3206
- #: ../admin/view/wp-slimstat-reports.php:1785
3207
  msgid "c-ws"
3208
- msgstr "Samoa"
3209
 
3210
- # Sao Tome and Principe
3211
- #: ../admin/view/wp-slimstat-reports.php:1785
3212
  msgid "c-st"
3213
- msgstr "Sao Tome and Principe"
3214
 
3215
- # Saudi Arabia
3216
- #: ../admin/view/wp-slimstat-reports.php:1785
3217
  msgid "c-sa"
3218
- msgstr "Saudi Arabia"
3219
 
3220
- # Senegal
3221
- #: ../admin/view/wp-slimstat-reports.php:1785
3222
  msgid "c-sn"
3223
- msgstr "Senegal"
3224
 
3225
- # Serbia
3226
- #: ../admin/view/wp-slimstat-reports.php:1785
3227
  msgid "c-rs"
3228
- msgstr "Serbia"
3229
 
3230
- # Sierra Leone
3231
- #: ../admin/view/wp-slimstat-reports.php:1785
3232
  msgid "c-sl"
3233
- msgstr "Sierra Leone"
3234
 
3235
- # Singapore
3236
- #: ../admin/view/wp-slimstat-reports.php:1785
3237
  msgid "c-sg"
3238
- msgstr "Singapore"
3239
 
3240
- # Slovakia
3241
- #: ../admin/view/wp-slimstat-reports.php:1785
3242
  msgid "c-sk"
3243
- msgstr "Slovakia"
3244
 
3245
- # Slovenia
3246
- #: ../admin/view/wp-slimstat-reports.php:1785
3247
  msgid "c-si"
3248
- msgstr "Slovenia"
3249
 
3250
- # Solomon Islands
3251
- #: ../admin/view/wp-slimstat-reports.php:1785
3252
  msgid "c-sb"
3253
- msgstr "Solomon Islands"
3254
 
3255
- # Somalia
3256
- #: ../admin/view/wp-slimstat-reports.php:1785
3257
  msgid "c-so"
3258
- msgstr "Somalia"
3259
 
3260
- # South Africa
3261
- #: ../admin/view/wp-slimstat-reports.php:1785
3262
  msgid "c-za"
3263
- msgstr "South Africa"
3264
 
3265
- # South Georgia and the South Sandwich Islands
3266
- #: ../admin/view/wp-slimstat-reports.php:1785
3267
  msgid "c-gs"
3268
- msgstr "South Georgia and the South Sandwich Islands"
3269
 
3270
- # Spain
3271
- #: ../admin/view/wp-slimstat-reports.php:1785
3272
  msgid "c-es"
3273
- msgstr "Spain"
3274
 
3275
- # Sri Lanka
3276
- #: ../admin/view/wp-slimstat-reports.php:1785
3277
  msgid "c-lk"
3278
- msgstr "Sri Lanka"
3279
 
3280
- #: ../admin/view/wp-slimstat-reports.php:1785
3281
  msgid "c-sc"
3282
- msgstr "Seychelles"
3283
 
3284
- # Sudan
3285
- #: ../admin/view/wp-slimstat-reports.php:1785
3286
  msgid "c-sd"
3287
- msgstr "Sudan"
3288
 
3289
- #: ../admin/view/wp-slimstat-reports.php:1785
3290
  msgid "c-ss"
3291
- msgstr "South Sudan"
3292
 
3293
- # Suriname
3294
- #: ../admin/view/wp-slimstat-reports.php:1785
3295
  msgid "c-sr"
3296
- msgstr "Suriname"
3297
 
3298
- # Svalbard and Jan Mayen
3299
- #: ../admin/view/wp-slimstat-reports.php:1785
3300
  msgid "c-sj"
3301
- msgstr "Svalbard and Jan Mayen"
3302
 
3303
- # Swaziland
3304
- #: ../admin/view/wp-slimstat-reports.php:1785
3305
  msgid "c-sz"
3306
- msgstr "Swaziland"
3307
 
3308
- # Sweden
3309
- #: ../admin/view/wp-slimstat-reports.php:1785
3310
  msgid "c-se"
3311
- msgstr "Sweden"
3312
 
3313
- # Switzerland
3314
- #: ../admin/view/wp-slimstat-reports.php:1785
3315
  msgid "c-ch"
3316
- msgstr "Switzerland"
3317
 
3318
- # Syrian Arab Republic
3319
- #: ../admin/view/wp-slimstat-reports.php:1785
3320
  msgid "c-sy"
3321
- msgstr "Syrian Arab Republic"
3322
 
3323
- # Taiwan, Province of China
3324
- #: ../admin/view/wp-slimstat-reports.php:1785
3325
  msgid "c-tw"
3326
- msgstr "Taiwan"
3327
 
3328
- # Tajikistan
3329
- #: ../admin/view/wp-slimstat-reports.php:1785
3330
  msgid "c-tj"
3331
- msgstr "Tajikistan"
3332
 
3333
- # United Republic of Tanzania
3334
- #: ../admin/view/wp-slimstat-reports.php:1785
3335
  msgid "c-tz"
3336
- msgstr "United Republic of Tanzania"
3337
 
3338
- # Thailand
3339
- #: ../admin/view/wp-slimstat-reports.php:1785
3340
  msgid "c-th"
3341
- msgstr "Thailand"
3342
 
3343
- # Timor-Leste
3344
- #: ../admin/view/wp-slimstat-reports.php:1785
3345
  msgid "c-tl"
3346
- msgstr "Timor-Leste"
3347
 
3348
- # Togo
3349
- #: ../admin/view/wp-slimstat-reports.php:1785
3350
  msgid "c-tg"
3351
- msgstr "Togo"
3352
 
3353
- # Tonga
3354
- #: ../admin/view/wp-slimstat-reports.php:1785
3355
  msgid "c-to"
3356
- msgstr "Tonga"
3357
 
3358
- # Trinidad and Tobago
3359
- #: ../admin/view/wp-slimstat-reports.php:1785
3360
  msgid "c-tt"
3361
- msgstr "Trinidad and Tobago"
3362
 
3363
- # Tunisia
3364
- #: ../admin/view/wp-slimstat-reports.php:1785
3365
  msgid "c-tn"
3366
- msgstr "Tunisia"
3367
 
3368
- # Turkey
3369
- #: ../admin/view/wp-slimstat-reports.php:1785
3370
  msgid "c-tr"
3371
- msgstr "Turkey"
3372
 
3373
- # Turkmenistan
3374
- #: ../admin/view/wp-slimstat-reports.php:1785
3375
  msgid "c-tm"
3376
- msgstr "Turkmenistan"
3377
 
3378
- # Turks and Caicos Islands
3379
- #: ../admin/view/wp-slimstat-reports.php:1785
3380
  msgid "c-tc"
3381
- msgstr "Turks and Caicos Islands"
3382
 
3383
- # Uganda
3384
- #: ../admin/view/wp-slimstat-reports.php:1785
3385
  msgid "c-ug"
3386
- msgstr "Uganda"
3387
 
3388
- # Ukraine
3389
- #: ../admin/view/wp-slimstat-reports.php:1785
3390
  msgid "c-ua"
3391
- msgstr "Ukraine"
3392
 
3393
- # United Arab Emirates
3394
- #: ../admin/view/wp-slimstat-reports.php:1785
3395
  msgid "c-ae"
3396
- msgstr "United Arab Emirates"
3397
 
3398
- # United Kingdom
3399
- #: ../admin/view/wp-slimstat-reports.php:1785
3400
  msgid "c-gb"
3401
- msgstr "United Kingdom"
3402
 
3403
- # United States
3404
- #: ../admin/view/wp-slimstat-reports.php:1785
3405
  msgid "c-us"
3406
- msgstr "United States"
3407
 
3408
- # Uruguay
3409
- #: ../admin/view/wp-slimstat-reports.php:1785
3410
  msgid "c-uy"
3411
- msgstr "Uruguay"
3412
 
3413
- # Uzbekistan
3414
- #: ../admin/view/wp-slimstat-reports.php:1785
3415
  msgid "c-uz"
3416
- msgstr "Uzbekistan"
3417
 
3418
- # Vanuatu
3419
- #: ../admin/view/wp-slimstat-reports.php:1785
3420
  msgid "c-vu"
3421
- msgstr "Vanuatu"
3422
 
3423
- # Venezuela
3424
- #: ../admin/view/wp-slimstat-reports.php:1785
3425
  msgid "c-ve"
3426
- msgstr "Venezuela"
3427
 
3428
- # Viet Nam
3429
- #: ../admin/view/wp-slimstat-reports.php:1785
3430
  msgid "c-vn"
3431
- msgstr "Viet Nam"
3432
 
3433
- # British Virgin Islands
3434
- #: ../admin/view/wp-slimstat-reports.php:1785
3435
  msgid "c-vg"
3436
- msgstr "British Virgin Islands"
3437
 
3438
- # U.S. Virgin Islands
3439
- #: ../admin/view/wp-slimstat-reports.php:1785
3440
  msgid "c-vi"
3441
- msgstr "U.S. Virgin Islands"
3442
 
3443
- # Western Sahara
3444
- #: ../admin/view/wp-slimstat-reports.php:1785
3445
  msgid "c-eh"
3446
- msgstr "Western Sahara"
3447
 
3448
- # Yemen
3449
- #: ../admin/view/wp-slimstat-reports.php:1785
3450
  msgid "c-ye"
3451
- msgstr "Yemen"
3452
 
3453
- # Zambia
3454
- #: ../admin/view/wp-slimstat-reports.php:1785
3455
  msgid "c-zm"
3456
- msgstr "Zambia"
3457
 
3458
- # Zimbabwe
3459
- #: ../admin/view/wp-slimstat-reports.php:1785
3460
  msgid "c-zw"
3461
- msgstr "Zimbabwe"
3462
 
3463
- # Guernsey
3464
- #: ../admin/view/wp-slimstat-reports.php:1785
3465
  msgid "c-gg"
3466
- msgstr "Guernsey"
3467
 
3468
- # Jersey
3469
- #: ../admin/view/wp-slimstat-reports.php:1785
3470
  msgid "c-je"
3471
- msgstr "Jersey"
3472
 
3473
- # Isle of Man
3474
- #: ../admin/view/wp-slimstat-reports.php:1785
3475
  msgid "c-im"
3476
- msgstr "Isle of Man"
3477
 
3478
- # Maldives
3479
- #: ../admin/view/wp-slimstat-reports.php:1785
3480
  msgid "c-mv"
3481
- msgstr "Maldives"
3482
 
3483
- #: ../admin/view/wp-slimstat-reports.php:1786
3484
  msgid "c-eu"
3485
- msgstr "Europe"
3486
 
3487
- #: ../admin/view/wp-slimstat-reports.php:1863
3488
  msgid "src"
3489
  msgstr ""
3490
 
3491
- #: ../admin/view/wp-slimstat-reports.php:1867
3492
  msgid "serp"
3493
  msgstr ""
3494
 
3495
- #: ../admin/view/wp-slimstat-reports.php:1875
3496
  msgid "Go to the referring page"
3497
  msgstr ""
3498
 
3499
- #: ../admin/view/wp-slimstat-reports.php:1897
3500
  msgid "Remove filter for"
3501
  msgstr ""
3502
 
3503
- #: ../admin/view/wp-slimstat-reports.php:1901
3504
  msgid "Save"
3505
  msgstr ""
3506
 
3507
- #: ../admin/view/wp-slimstat-reports.php:1904
3508
- msgid "Reset All"
3509
- msgstr ""
3510
-
3511
- #: ../admin/view/wp-slimstat-reports.php:1908
3512
- msgid "Current filters:"
3513
- msgstr ""
3514
-
3515
- #: ../admin/wp-slimstat-admin.php:82
3516
  msgid "Access Log"
3517
  msgstr ""
3518
 
3519
- #: ../admin/wp-slimstat-admin.php:88
3520
  msgid "Overview"
3521
  msgstr ""
3522
 
3523
- #: ../admin/wp-slimstat-admin.php:94
3524
  msgid "Audience"
3525
  msgstr ""
3526
 
3527
- #: ../admin/wp-slimstat-admin.php:100
3528
  msgid "Site Analysis"
3529
  msgstr ""
3530
 
3531
- #: ../admin/wp-slimstat-admin.php:118
3532
- msgid "Customize"
3533
- msgstr ""
3534
-
3535
- #: ../admin/wp-slimstat-admin.php:130
3536
  msgid "WordPress Dashboard"
3537
  msgstr ""
3538
 
3539
- #: ../admin/wp-slimstat-admin.php:136
3540
  msgid "Inactive Reports"
3541
  msgstr ""
3542
 
3543
- #: ../admin/wp-slimstat-admin.php:502
3544
- msgid ""
3545
- "Slimstat attempted to upgrade your database structure, but the procedure "
3546
- "might not have been completed (temporary tables were detected in your "
3547
- "database). This might be caused by restrictive user permissions that don't "
3548
- "grant commands like RENAME, ALTER/CHANGE and others. You might need to "
3549
- "manually consolidate your tables. No worries, we wrote a <a href='https://"
3550
- "slimstat.freshdesk.com/support/solutions/articles/12000003148-how-do-i-"
3551
- "update-the-table-structure-if-i-upgraded-from-a-version-prior-to-4-0' "
3552
- "target='_blank'>step by step guide</a> on how to do that. Please feel free "
3553
- "to contact our support team if you have any questions."
3554
- msgstr ""
3555
-
3556
- #: ../admin/wp-slimstat-admin.php:820
3557
- msgid "SlimStat"
3558
  msgstr ""
3559
 
3560
- #: ../admin/wp-slimstat-admin.php:878
3561
- msgid "Slimstat"
 
3562
  msgstr ""
3563
 
3564
- #: ../admin/wp-slimstat-admin.php:968
3565
  msgid "Pageviews in the last "
3566
  msgstr ""
3567
 
3568
- #: ../admin/wp-slimstat-admin.php:971
3569
  msgid "Unique IPs in the last "
3570
  msgstr ""
3571
 
3572
- #: ../admin/wp-slimstat-admin.php:1005
3573
  #, php-format
3574
  msgid ""
3575
  " And for keeping an eye on your web traffic with %sSlimStat Analytics%s."
3576
  msgstr ""
3577
 
3578
- #: ../admin/wp-slimstat-admin.php:1030
3579
  msgid "Show on screen"
3580
  msgstr ""
3581
 
3582
- #: ../admin/wp-slimstat-admin.php:1123
3583
  msgid "Already saved"
3584
  msgstr ""
3585
 
3586
- #: ../admin/wp-slimstat-admin.php:1131
3587
  msgid "Saved"
3588
  msgstr ""
3589
 
3590
- #: ../admin/wp-slimstat-admin.php:1151
3591
  msgid "Delete this filter"
3592
  msgstr ""
3593
 
3594
- #: ../admin/wp-slimstat-admin.php:1233
3595
  msgid "On"
3596
  msgstr ""
3597
 
3598
- #: ../admin/wp-slimstat-admin.php:1299
3599
  msgid "Save Changes"
3600
  msgstr ""
3601
 
3602
- #: ../admin/wp-slimstat-admin.php:1342
3603
  msgid "There was an error updating the following options:"
3604
  msgstr ""
3605
 
3606
- #: ../admin/wp-slimstat-admin.php:1345
3607
  msgid "Your changes have been saved."
3608
  msgstr ""
3609
 
3610
- #: ../admin/wp-slimstat-admin.php:1363
3611
  msgid "Definitions"
3612
  msgstr ""
3613
 
3614
- #: ../admin/wp-slimstat-admin.php:1366
3615
  msgid "Pageview"
3616
  msgstr ""
3617
 
3618
- #: ../admin/wp-slimstat-admin.php:1366
3619
  msgid ""
3620
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3621
  "with a \"hit\", which refers to a request for any file from a web server. "
3622
  "Slimstat logs a pageview each time the tracking code is executed"
3623
  msgstr ""
3624
 
3625
- #: ../admin/wp-slimstat-admin.php:1367
3626
  msgid "(Human) Visit"
3627
  msgstr ""
3628
 
3629
- #: ../admin/wp-slimstat-admin.php:1367
3630
  msgid ""
3631
  "A period of interaction between a visitor's browser and your website, ending "
3632
  "when the browser is closed or when the user has been inactive on that site "
3633
  "for 30 minutes"
3634
  msgstr ""
3635
 
3636
- #: ../admin/wp-slimstat-admin.php:1368
3637
  msgid ""
3638
  "Any user who has left a comment on your blog, and is thus identified by "
3639
  "Wordpress as a returning visitor"
3640
  msgstr ""
3641
 
3642
- #: ../admin/wp-slimstat-admin.php:1369
3643
  msgid "Unique IP"
3644
  msgstr ""
3645
 
3646
- #: ../admin/wp-slimstat-admin.php:1369
3647
  msgid ""
3648
  "Used to differentiate between multiple requests to download a file from one "
3649
  "internet address (IP) and requests originating from many distinct addresses; "
@@ -3651,152 +3687,152 @@ msgid ""
3651
  "from, it is useful, but not perfect"
3652
  msgstr ""
3653
 
3654
- #: ../admin/wp-slimstat-admin.php:1370
3655
  msgid ""
3656
  "the originating IP address of a client connecting to a web server through an "
3657
  "HTTP proxy or load balancer"
3658
  msgstr ""
3659
 
3660
- #: ../admin/wp-slimstat-admin.php:1371
3661
  msgid "Direct Traffic"
3662
  msgstr ""
3663
 
3664
- #: ../admin/wp-slimstat-admin.php:1371
3665
  msgid ""
3666
  "All those people showing up to your Web site by typing in the URL of your "
3667
  "Web site coming or from a bookmark; some people also call this \"default "
3668
  "traffic\" or \"ambient traffic\""
3669
  msgstr ""
3670
 
3671
- #: ../admin/wp-slimstat-admin.php:1372
3672
  msgid "Search Engine"
3673
  msgstr ""
3674
 
3675
- #: ../admin/wp-slimstat-admin.php:1372
3676
  msgid ""
3677
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3678
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3679
  msgstr ""
3680
 
3681
- #: ../admin/wp-slimstat-admin.php:1373 ../admin/wp-slimstat-admin.php:1389
3682
  msgid "Keywords used by your visitors to find your website on a search engine"
3683
  msgstr ""
3684
 
3685
- #: ../admin/wp-slimstat-admin.php:1374
3686
  msgid "SERP"
3687
  msgstr ""
3688
 
3689
- #: ../admin/wp-slimstat-admin.php:1374
3690
  msgid ""
3691
  "Short for search engine results page, the Web page that a search engine "
3692
  "returns with the results of its search. The value shown represents your rank "
3693
  "(or position) within that list of results"
3694
  msgstr ""
3695
 
3696
- #: ../admin/wp-slimstat-admin.php:1375
3697
  msgid ""
3698
  "Any program used for accessing a website; this includes browsers, robots, "
3699
  "spiders and any other program that was used to retrieve information from the "
3700
  "site"
3701
  msgstr ""
3702
 
3703
- #: ../admin/wp-slimstat-admin.php:1376
3704
  msgid ""
3705
  "A link from one domain to another is said to be outbound from its source "
3706
  "anchor and inbound to its target. This report lists all the links to other "
3707
  "websites followed by your visitors."
3708
  msgstr ""
3709
 
3710
- #: ../admin/wp-slimstat-admin.php:1383
3711
  msgid "Basic Filters"
3712
  msgstr ""
3713
 
3714
- #: ../admin/wp-slimstat-admin.php:1386
3715
  msgid "User agent (Firefox, Chrome, ...)"
3716
  msgstr ""
3717
 
3718
- #: ../admin/wp-slimstat-admin.php:1387
3719
  msgid "2-letter code (us, ru, de, it, ...)"
3720
  msgstr ""
3721
 
3722
- #: ../admin/wp-slimstat-admin.php:1388
3723
  msgid "IP"
3724
  msgstr ""
3725
 
3726
- #: ../admin/wp-slimstat-admin.php:1388
3727
  msgid "Visitor's public IP address"
3728
  msgstr ""
3729
 
3730
- #: ../admin/wp-slimstat-admin.php:1390
3731
  msgid ""
3732
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3733
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3734
  "column) for more information"
3735
  msgstr ""
3736
 
3737
- #: ../admin/wp-slimstat-admin.php:1391
3738
  msgid ""
3739
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3740
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3741
  "manual page</a> for more information"
3742
  msgstr ""
3743
 
3744
- #: ../admin/wp-slimstat-admin.php:1392
3745
  msgid "URL accessed on your site"
3746
  msgstr ""
3747
 
3748
- #: ../admin/wp-slimstat-admin.php:1393
3749
  msgid "Complete address of the referrer page"
3750
  msgstr ""
3751
 
3752
- #: ../admin/wp-slimstat-admin.php:1394
3753
  msgid "Visitor's Name"
3754
  msgstr ""
3755
 
3756
- #: ../admin/wp-slimstat-admin.php:1394
3757
  msgid ""
3758
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3759
  "comment"
3760
  msgstr ""
3761
 
3762
- #: ../admin/wp-slimstat-admin.php:1402
3763
  msgid "Advanced Filters"
3764
  msgstr ""
3765
 
3766
- #: ../admin/wp-slimstat-admin.php:1405
3767
  msgid "user agent version (9.0, 11, ...)"
3768
  msgstr ""
3769
 
3770
- #: ../admin/wp-slimstat-admin.php:1406
3771
  msgid ""
3772
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3773
  "all others"
3774
  msgstr ""
3775
 
3776
- #: ../admin/wp-slimstat-admin.php:1407
3777
  msgid "Pageview Attributes"
3778
  msgstr ""
3779
 
3780
- #: ../admin/wp-slimstat-admin.php:1407
3781
  msgid ""
3782
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3783
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
3784
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
3785
  msgstr ""
3786
 
3787
- #: ../admin/wp-slimstat-admin.php:1408
3788
  msgid "author associated to that post/page when the resource was accessed"
3789
  msgstr ""
3790
 
3791
- #: ../admin/wp-slimstat-admin.php:1409
3792
  msgid "ID of the category/term associated to the resource, when available"
3793
  msgstr ""
3794
 
3795
- #: ../admin/wp-slimstat-admin.php:1410
3796
  msgid "visitor's originating IP address, if available"
3797
  msgstr ""
3798
 
3799
- #: ../admin/wp-slimstat-admin.php:1411
3800
  msgid ""
3801
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
3802
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
@@ -3805,1676 +3841,1623 @@ msgid ""
3805
  "information"
3806
  msgstr ""
3807
 
3808
- #: ../admin/wp-slimstat-admin.php:1412
3809
  msgid "Screen Resolution"
3810
  msgstr ""
3811
 
3812
- #: ../admin/wp-slimstat-admin.php:1412
3813
  msgid "viewport width and height (1024x768, 800x600, ...)"
3814
  msgstr ""
3815
 
3816
- #: ../admin/wp-slimstat-admin.php:1413
3817
  msgid ""
3818
  "generally used in conjunction with <em>is not empty</em>, identifies human "
3819
  "visitors"
3820
  msgstr ""
3821
 
3822
- #: ../admin/wp-slimstat-admin.php:1414
3823
  msgid "Date Filters"
3824
  msgstr ""
3825
 
3826
- #: ../admin/wp-slimstat-admin.php:1414
3827
  msgid ""
3828
  "you can specify the timeframe by entering a number in the <em>interval</em> "
3829
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
3830
  "year=blank, interval=-1 will set a year-to-date filter)"
3831
  msgstr ""
3832
 
3833
- #: ../admin/wp-slimstat-admin.php:1415
3834
  msgid "SERP Position"
3835
  msgstr ""
3836
 
3837
- #: ../admin/wp-slimstat-admin.php:1415
3838
  msgid ""
3839
  "set the filter to Referer contains cd=N&, where N is the position you are "
3840
  "looking for"
3841
  msgstr ""
3842
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3843
  #: ../languages/dynamic_strings.php:3
3844
  msgid "xx"
3845
- msgstr "Unknown"
3846
 
3847
  #: ../languages/dynamic_strings.php:6
3848
  msgid "aix"
3849
- msgstr "IBM AIX"
3850
 
3851
  #: ../languages/dynamic_strings.php:7
3852
  msgid "amiga"
3853
- msgstr "Amiga"
3854
 
3855
  #: ../languages/dynamic_strings.php:8
3856
  msgid "android"
3857
- msgstr "Android"
3858
 
3859
  #: ../languages/dynamic_strings.php:9
3860
  msgid "beos"
3861
- msgstr "BeOS"
3862
 
3863
  #: ../languages/dynamic_strings.php:10
3864
  msgid "blackberry os"
3865
- msgstr "BlackBerry OS"
3866
 
3867
  #: ../languages/dynamic_strings.php:11
3868
  msgid "centos"
3869
- msgstr "CentOS"
3870
 
3871
  #: ../languages/dynamic_strings.php:12
3872
  msgid "chromeos"
3873
- msgstr "ChromeOS"
3874
 
3875
  #: ../languages/dynamic_strings.php:13
3876
  msgid "commodore64"
3877
- msgstr "Commodore 64"
3878
 
3879
  #: ../languages/dynamic_strings.php:14
3880
  msgid "cygwin"
3881
- msgstr "Cygwin"
3882
 
3883
  #: ../languages/dynamic_strings.php:15
3884
  msgid "debian"
3885
- msgstr "Debian"
3886
 
3887
  #: ../languages/dynamic_strings.php:16
3888
  msgid "digital unix"
3889
- msgstr "Digital Unix"
3890
 
3891
  #: ../languages/dynamic_strings.php:17
3892
  msgid "fedora"
3893
- msgstr "Fedora Linux"
3894
 
3895
  #: ../languages/dynamic_strings.php:18
3896
  msgid "firefoxos"
3897
- msgstr "Firefox OS"
3898
 
3899
  #: ../languages/dynamic_strings.php:19
3900
  msgid "freebsd"
3901
- msgstr "FreeBSD"
3902
 
3903
  #: ../languages/dynamic_strings.php:20
3904
  msgid "gentoo"
3905
- msgstr "Gentoo"
3906
 
3907
  #: ../languages/dynamic_strings.php:21
3908
  msgid "hp-ux"
3909
- msgstr "HP-UX"
3910
 
3911
  #: ../languages/dynamic_strings.php:22
3912
  msgid "ios"
3913
- msgstr "iPhone OS X"
3914
 
3915
  #: ../languages/dynamic_strings.php:23
3916
  msgid "iphone os"
3917
- msgstr "iPhone OS X"
3918
 
3919
  #: ../languages/dynamic_strings.php:24
3920
  msgid "iphone osx"
3921
- msgstr "iPhone OS X"
3922
 
3923
  #: ../languages/dynamic_strings.php:25
3924
  msgid "irix"
3925
- msgstr "IRIX"
3926
 
3927
  #: ../languages/dynamic_strings.php:26
3928
  msgid "java"
3929
- msgstr "Java"
3930
 
3931
  #: ../languages/dynamic_strings.php:27
3932
  msgid "kanotix"
3933
- msgstr "Kanotix"
3934
 
3935
  #: ../languages/dynamic_strings.php:28
3936
  msgid "knoppix"
3937
- msgstr "Knoppix"
3938
 
3939
  #: ../languages/dynamic_strings.php:29
3940
  msgid "linux"
3941
- msgstr "Linux"
3942
 
3943
  #: ../languages/dynamic_strings.php:30
3944
  msgid "mac"
3945
- msgstr "Mac"
3946
 
3947
  #: ../languages/dynamic_strings.php:31
3948
  msgid "mac68k"
3949
- msgstr "Mac 68k"
3950
 
3951
  #: ../languages/dynamic_strings.php:32
3952
- msgid "macosx"
3953
- msgstr "Mac OS X"
3954
 
3955
  #: ../languages/dynamic_strings.php:33
3956
- msgid "macppc"
3957
- msgstr "Mac PowerPC"
3958
 
3959
  #: ../languages/dynamic_strings.php:34
3960
- msgid "mandrake"
3961
- msgstr "Mandrake"
3962
 
3963
  #: ../languages/dynamic_strings.php:35
3964
- msgid "mandriva"
3965
- msgstr "Mandriva"
3966
 
3967
  #: ../languages/dynamic_strings.php:36
3968
- msgid "mepis"
3969
- msgstr "Mepis"
3970
 
3971
- # Spanish; Castilian
3972
  #: ../languages/dynamic_strings.php:37
3973
- msgid "ms-dos"
3974
- msgstr "MS-Dos"
3975
 
3976
  #: ../languages/dynamic_strings.php:38
3977
- msgid "netbsd"
3978
- msgstr "NetBSD"
3979
 
3980
  #: ../languages/dynamic_strings.php:39
3981
- msgid "nintendo"
3982
- msgstr "Nintendo"
3983
 
3984
  #: ../languages/dynamic_strings.php:40
3985
- msgid "openbsd"
3986
- msgstr "OpenBSD"
3987
 
3988
  #: ../languages/dynamic_strings.php:41
3989
- msgid "openvms"
3990
- msgstr "OpenVMS"
3991
 
3992
  #: ../languages/dynamic_strings.php:42
3993
- msgid "os/2"
3994
- msgstr "IBM OS/2"
3995
 
3996
  #: ../languages/dynamic_strings.php:43
3997
- msgid "palm"
3998
- msgstr "Palm"
3999
 
4000
  #: ../languages/dynamic_strings.php:44
4001
- msgid "palmos"
4002
- msgstr "Palm OS"
4003
 
4004
  #: ../languages/dynamic_strings.php:45
4005
- msgid "pclinuxos"
4006
- msgstr "Linux"
4007
 
4008
  #: ../languages/dynamic_strings.php:46
4009
- msgid "playstation"
4010
- msgstr "Playstation"
4011
 
4012
  #: ../languages/dynamic_strings.php:47
4013
- msgid "powertv"
4014
- msgstr "PowerTV"
4015
 
4016
  #: ../languages/dynamic_strings.php:48
4017
- msgid "redhat"
4018
- msgstr "RedHat"
4019
 
4020
  #: ../languages/dynamic_strings.php:49
4021
- msgid "rim os"
4022
- msgstr "Blackberry RIM"
4023
 
4024
  #: ../languages/dynamic_strings.php:50
4025
- msgid "risc os"
4026
- msgstr "Risc OS"
4027
 
4028
  #: ../languages/dynamic_strings.php:51
4029
- msgid "slackware"
4030
- msgstr "Slackware"
4031
 
4032
  #: ../languages/dynamic_strings.php:52
4033
- msgid "solaris"
4034
- msgstr "Solaris"
4035
 
4036
  #: ../languages/dynamic_strings.php:53
4037
- msgid "sunos"
4038
- msgstr "Sun OS"
4039
 
4040
  #: ../languages/dynamic_strings.php:54
4041
- msgid "suse"
4042
- msgstr "SuSE"
4043
 
4044
  #: ../languages/dynamic_strings.php:55
4045
- msgid "symbianos"
4046
- msgstr "Symbian OS"
4047
 
4048
  #: ../languages/dynamic_strings.php:56
4049
- msgid "ubuntu"
4050
- msgstr "Ubuntu"
4051
 
4052
  #: ../languages/dynamic_strings.php:57
4053
- msgid "unix"
4054
- msgstr "Unix"
4055
 
4056
  #: ../languages/dynamic_strings.php:58
4057
- msgid "unknown"
4058
- msgstr "Unknown"
4059
 
4060
  #: ../languages/dynamic_strings.php:59
4061
- msgid "xandros"
4062
- msgstr "Xandros"
4063
 
4064
  #: ../languages/dynamic_strings.php:60
4065
- msgid "wap"
4066
- msgstr "WAP"
4067
 
4068
  #: ../languages/dynamic_strings.php:61
4069
- msgid "webos"
4070
- msgstr "WebOS"
4071
 
4072
  #: ../languages/dynamic_strings.php:62
4073
- msgid "win10"
4074
- msgstr "Windows 10"
4075
 
4076
  #: ../languages/dynamic_strings.php:63
4077
- msgid "win16"
4078
- msgstr "Windows 16-bit"
4079
 
4080
  #: ../languages/dynamic_strings.php:64
4081
- msgid "win2000"
4082
- msgstr "Windows 2000"
4083
 
4084
  #: ../languages/dynamic_strings.php:65
4085
- msgid "win2003"
4086
- msgstr "Windows 2003"
4087
 
4088
  #: ../languages/dynamic_strings.php:66
4089
- msgid "win31"
4090
- msgstr "Windows 3.1"
4091
 
4092
  #: ../languages/dynamic_strings.php:67
 
 
 
 
4093
  msgid "win32"
4094
- msgstr "Windows 32-bit"
4095
 
4096
- #: ../languages/dynamic_strings.php:68 ../languages/dynamic_strings.php:69
4097
  msgid "win7"
4098
- msgstr "Windows 7"
4099
 
4100
- #: ../languages/dynamic_strings.php:70
4101
  msgid "win8"
4102
- msgstr "Windows 8"
4103
 
4104
- #: ../languages/dynamic_strings.php:71
4105
  msgid "win8.1"
4106
- msgstr "Windows 8.1"
4107
 
4108
- #: ../languages/dynamic_strings.php:72
4109
  msgid "win95"
4110
- msgstr "Windows 95"
4111
 
4112
- #: ../languages/dynamic_strings.php:73
4113
  msgid "win98"
4114
- msgstr "Windows 98"
4115
 
4116
- #: ../languages/dynamic_strings.php:74
4117
  msgid "wince"
4118
- msgstr "Windows CE"
4119
 
4120
- #: ../languages/dynamic_strings.php:75
4121
  msgid "winme"
4122
- msgstr "Windows ME"
4123
 
4124
- #: ../languages/dynamic_strings.php:76
4125
  msgid "winnt"
4126
- msgstr "Windows NT"
4127
 
4128
- #: ../languages/dynamic_strings.php:77
4129
  msgid "winphone7"
4130
- msgstr "Windows Phone"
4131
 
4132
- #: ../languages/dynamic_strings.php:78
4133
  msgid "winphone7.5"
4134
- msgstr "Windows Phone 7.5"
4135
 
4136
- #: ../languages/dynamic_strings.php:79
4137
  msgid "winphone8"
4138
- msgstr "Windows Phone 8"
4139
 
4140
- #: ../languages/dynamic_strings.php:80
4141
  msgid "winphone8.1"
4142
- msgstr "Windows Phone 8.1"
4143
 
4144
- #: ../languages/dynamic_strings.php:81
4145
  msgid "winrt"
4146
- msgstr "Windows RT Platform"
4147
 
4148
- #: ../languages/dynamic_strings.php:82
4149
  msgid "winvista"
4150
- msgstr "Windows Vista"
4151
 
4152
- #: ../languages/dynamic_strings.php:83
4153
  msgid "winxp"
4154
- msgstr "Windows XP"
4155
 
4156
- #: ../languages/dynamic_strings.php:84
4157
  msgid "wyderos"
4158
- msgstr "WyderOS"
4159
 
4160
- #: ../languages/dynamic_strings.php:85
4161
  msgid "zaurus"
4162
- msgstr "Zaurus"
4163
-
4164
- #: ../languages/dynamic_strings.php:88
4165
- msgid "acrobat"
4166
- msgstr "Acrobat Reader"
4167
 
4168
  #: ../languages/dynamic_strings.php:89
4169
- msgid "director"
4170
- msgstr "Macromedia Director"
4171
 
4172
  #: ../languages/dynamic_strings.php:90
4173
- msgid "flash"
4174
- msgstr "Adobe Flash Player"
4175
 
4176
  #: ../languages/dynamic_strings.php:91
4177
- msgid "mediaplayer"
4178
- msgstr "Microsoft Media Player"
4179
 
4180
  #: ../languages/dynamic_strings.php:92
4181
- msgid "quicktime"
4182
- msgstr "QuickTime"
4183
 
4184
  #: ../languages/dynamic_strings.php:93
4185
- msgid "real"
4186
- msgstr "Real Player"
4187
 
4188
  #: ../languages/dynamic_strings.php:94
4189
- msgid "silverlight"
4190
- msgstr "Microsoft Silverlight"
4191
 
4192
- #: ../languages/dynamic_strings.php:97
 
 
 
 
 
 
 
 
4193
  msgid "p-and"
4194
- msgstr "Android"
4195
 
4196
- #: ../languages/dynamic_strings.php:98
4197
  msgid "p-bla"
4198
- msgstr "BlackBerry"
4199
 
4200
- #: ../languages/dynamic_strings.php:99
4201
  msgid "p-chr"
4202
- msgstr "Chrome OS"
4203
 
4204
- #: ../languages/dynamic_strings.php:100
4205
  msgid "p-fir"
4206
- msgstr "Firefox OS"
4207
 
4208
- #: ../languages/dynamic_strings.php:101
4209
  msgid "p-fre"
4210
- msgstr "Linux FreeBSD"
4211
 
4212
- #: ../languages/dynamic_strings.php:102
4213
  msgid "p-ios"
4214
- msgstr "Apple iOS"
4215
 
4216
- #: ../languages/dynamic_strings.php:103
4217
  msgid "p-jav"
4218
- msgstr "Java-based OS"
4219
 
4220
- #: ../languages/dynamic_strings.php:104
4221
  msgid "p-lin"
4222
- msgstr "Linux"
4223
 
4224
- #: ../languages/dynamic_strings.php:105
4225
  msgid "p-mac"
4226
- msgstr "Apple"
4227
 
4228
- #: ../languages/dynamic_strings.php:106
4229
  msgid "p-rim"
4230
- msgstr "BlackberryOS"
4231
 
4232
- #: ../languages/dynamic_strings.php:107
4233
  msgid "p-sym"
4234
- msgstr "Symbian OS"
4235
 
4236
- #: ../languages/dynamic_strings.php:108
4237
  msgid "p-ubu"
4238
- msgstr "Ubuntu"
4239
 
4240
- #: ../languages/dynamic_strings.php:109
4241
  msgid "p-unk"
4242
- msgstr "Unknown"
4243
 
4244
- #: ../languages/dynamic_strings.php:110
4245
  msgid "p-win"
4246
- msgstr "Microsoft"
4247
 
4248
- # Afrikaans
4249
- #: ../languages/dynamic_strings.php:113
4250
  msgid "l-af"
4251
- msgstr "Afrikaans"
4252
 
4253
- # Afrikaans
4254
- #: ../languages/dynamic_strings.php:114
4255
  msgid "l-af-za"
4256
- msgstr "Afrikaans (South Africa)"
4257
 
4258
- # Arabic
4259
- #: ../languages/dynamic_strings.php:115
4260
  msgid "l-ar"
4261
- msgstr "Arabic"
4262
 
4263
- # Arabic
4264
- #: ../languages/dynamic_strings.php:116
4265
  msgid "l-ar-ae"
4266
- msgstr "Arabic (U.A.E.)"
4267
 
4268
- # Arabic
4269
- #: ../languages/dynamic_strings.php:117
4270
  msgid "l-ar-bh"
4271
- msgstr "Arabic (Bahrain)"
4272
 
4273
- # Arabic
4274
- #: ../languages/dynamic_strings.php:118
4275
  msgid "l-ar-dz"
4276
- msgstr "Arabic (Algeria)"
4277
 
4278
- # Arabic
4279
- #: ../languages/dynamic_strings.php:119
4280
  msgid "l-ar-eg"
4281
- msgstr "Arabic (Egypt)"
4282
 
4283
- # Arabic
4284
- #: ../languages/dynamic_strings.php:120
4285
  msgid "l-ar-iq"
4286
- msgstr "Arabic (Iraq)"
4287
 
4288
- # Arabic
4289
- #: ../languages/dynamic_strings.php:121
4290
  msgid "l-ar-jo"
4291
- msgstr "Arabic (Jordan)"
4292
 
4293
- # Arabic
4294
- #: ../languages/dynamic_strings.php:122
4295
  msgid "l-ar-kw"
4296
- msgstr "Arabic (Kuwait)"
4297
 
4298
- # Arabic
4299
- #: ../languages/dynamic_strings.php:123
4300
  msgid "l-ar-lb"
4301
- msgstr "Arabic (Lebanon)"
4302
 
4303
- # Arabic
4304
- #: ../languages/dynamic_strings.php:124
4305
  msgid "l-ar-ly"
4306
- msgstr "Arabic (Libya)"
4307
 
4308
- # Arabic
4309
- #: ../languages/dynamic_strings.php:125
4310
  msgid "l-ar-ma"
4311
- msgstr "Arabic (Morocco)"
4312
 
4313
- # Arabic
4314
- #: ../languages/dynamic_strings.php:126
4315
  msgid "l-ar-om"
4316
- msgstr "Arabic (Oman)"
4317
 
4318
- # Arabic
4319
- #: ../languages/dynamic_strings.php:127
4320
  msgid "l-ar-qa"
4321
- msgstr "Arabic (Qatar)"
4322
 
4323
- # Arabic
4324
- #: ../languages/dynamic_strings.php:128
4325
  msgid "l-ar-sa"
4326
- msgstr "Arabic (Saudi Arabia)"
4327
 
4328
- # Arabic
4329
- #: ../languages/dynamic_strings.php:129
4330
  msgid "l-ar-sy"
4331
- msgstr "Arabic (Syria)"
4332
 
4333
- # Arabic
4334
- #: ../languages/dynamic_strings.php:130
4335
  msgid "l-ar-tn"
4336
- msgstr "Arabic (Tunisia)"
4337
 
4338
- # Arabic
4339
- #: ../languages/dynamic_strings.php:131
4340
  msgid "l-ar-ye"
4341
- msgstr "Arabic (Yemen)"
4342
 
4343
- # Azerbaijani
4344
- #: ../languages/dynamic_strings.php:132
4345
  msgid "l-az"
4346
- msgstr "Azerbaijani"
4347
 
4348
- # Azerbaijani
4349
- #: ../languages/dynamic_strings.php:133
4350
  msgid "l-az-az"
4351
- msgstr "Azeri (Latin)"
4352
 
4353
- # Belarusian
4354
- #: ../languages/dynamic_strings.php:134
4355
  msgid "l-be"
4356
- msgstr "Belarusian"
4357
 
4358
- # Belarusian
4359
- #: ../languages/dynamic_strings.php:135
4360
  msgid "l-be-by"
4361
- msgstr "Belarusian (Belarus)"
4362
 
4363
- # Bulgarian
4364
- #: ../languages/dynamic_strings.php:136
4365
  msgid "l-bg"
4366
- msgstr "Bulgarian"
4367
 
4368
- # Bulgarian
4369
- #: ../languages/dynamic_strings.php:137
4370
  msgid "l-bg-bg"
4371
- msgstr "Bulgarian (Bulgaria)"
4372
 
4373
- # Bosnian
4374
- #: ../languages/dynamic_strings.php:138
4375
  msgid "l-bs-ba"
4376
- msgstr "Bosnian"
4377
 
4378
- # Catalan; Valencian
4379
- #: ../languages/dynamic_strings.php:139
4380
  msgid "l-ca"
4381
- msgstr "Catalan"
4382
 
4383
- # Catalan; Valencian
4384
- #: ../languages/dynamic_strings.php:140
4385
  msgid "l-ca-es"
4386
- msgstr "Catalan; Valencian"
4387
 
4388
- # Czech
4389
- #: ../languages/dynamic_strings.php:141
4390
  msgid "l-cs"
4391
- msgstr "Czech"
4392
 
4393
- # Czech
4394
- #: ../languages/dynamic_strings.php:142
4395
  msgid "l-cs-cz"
4396
- msgstr "Czech (Czech Republic)"
4397
 
4398
- # Welsh
4399
- #: ../languages/dynamic_strings.php:143
4400
  msgid "l-cy"
4401
- msgstr "Welsh"
4402
 
4403
- # Welsh
4404
- #: ../languages/dynamic_strings.php:144
4405
  msgid "l-cy-gb"
4406
- msgstr "Welsh (UK)"
4407
 
4408
- # Danish
4409
- #: ../languages/dynamic_strings.php:145
4410
  msgid "l-da"
4411
- msgstr "Danish"
4412
 
4413
- # Danish
4414
- #: ../languages/dynamic_strings.php:146
4415
  msgid "l-da-dk"
4416
- msgstr "Danish (Denmark)"
4417
 
4418
- # German
4419
- #: ../languages/dynamic_strings.php:147
4420
  msgid "l-de"
4421
- msgstr "German"
4422
 
4423
- # German
4424
- #: ../languages/dynamic_strings.php:148
4425
  msgid "l-de-at"
4426
- msgstr "German (Austria)"
4427
 
4428
- # German
4429
- #: ../languages/dynamic_strings.php:149
4430
  msgid "l-de-ch"
4431
- msgstr "German (Switzerland)"
4432
 
4433
- # German
4434
- #: ../languages/dynamic_strings.php:150
4435
  msgid "l-de-de"
4436
- msgstr "German (Germany)"
4437
 
4438
- # German
4439
- #: ../languages/dynamic_strings.php:151
4440
  msgid "l-de-li"
4441
- msgstr "German (Liechtenstein)"
4442
 
4443
- # German
4444
- #: ../languages/dynamic_strings.php:152
4445
  msgid "l-de-lu"
4446
- msgstr "German (Luxembourg)"
4447
 
4448
- # Dhivehi; Divehi; Maldivian
4449
- #: ../languages/dynamic_strings.php:153
4450
  msgid "l-dv"
4451
- msgstr "Dhivehi; Divehi; Maldivian"
4452
 
4453
- # Dhivehi; Divehi; Maldivian
4454
- #: ../languages/dynamic_strings.php:154
4455
  msgid "l-dv-mv"
4456
- msgstr "Maldivian"
4457
 
4458
- # Modern Greek (1453-)
4459
- #: ../languages/dynamic_strings.php:155
4460
  msgid "l-el"
4461
- msgstr "Greek"
4462
 
4463
- # Modern Greek (1453-)
4464
- #: ../languages/dynamic_strings.php:156
4465
  msgid "l-el-gr"
4466
- msgstr "Greek (Greece)"
4467
 
4468
- # English
4469
- #: ../languages/dynamic_strings.php:157
4470
  msgid "l-en"
4471
- msgstr "English"
4472
 
4473
- # English
4474
- #: ../languages/dynamic_strings.php:158
4475
  msgid "l-en-au"
4476
- msgstr "English (Australia)"
4477
 
4478
- # English
4479
- #: ../languages/dynamic_strings.php:159
4480
  msgid "l-en-bz"
4481
- msgstr "English (Belize)"
4482
 
4483
- # English
4484
- #: ../languages/dynamic_strings.php:160
4485
  msgid "l-en-ca"
4486
- msgstr "English (Canada)"
4487
 
4488
- # English
4489
- #: ../languages/dynamic_strings.php:161
4490
  msgid "l-en-cb"
4491
- msgstr "English (Caribbean)"
4492
 
4493
- # English
4494
- #: ../languages/dynamic_strings.php:162
4495
  msgid "l-en-gb"
4496
- msgstr "English (Great Britain)"
4497
 
4498
- # English
4499
- #: ../languages/dynamic_strings.php:163
4500
  msgid "l-en-ie"
4501
- msgstr "English (Ireland)"
4502
 
4503
- # English
4504
- #: ../languages/dynamic_strings.php:164
4505
  msgid "l-en-jm"
4506
- msgstr "English (Jamaica)"
4507
 
4508
- # English
4509
- #: ../languages/dynamic_strings.php:165
4510
  msgid "l-en-nz"
4511
- msgstr "English (New Zealand)"
4512
 
4513
- # English
4514
- #: ../languages/dynamic_strings.php:166
4515
  msgid "l-en-ph"
4516
- msgstr "English (Philippines)"
4517
 
4518
- # English
4519
- #: ../languages/dynamic_strings.php:167
4520
  msgid "l-en-tt"
4521
- msgstr "English (Trinidad and Tobago)"
4522
 
4523
- # English
4524
- #: ../languages/dynamic_strings.php:168
4525
  msgid "l-en-us"
4526
- msgstr "English (USA)"
4527
 
4528
- # English
4529
- #: ../languages/dynamic_strings.php:169
4530
  msgid "l-en-za"
4531
- msgstr "English (South Africa)"
4532
 
4533
- # English
4534
- #: ../languages/dynamic_strings.php:170
4535
  msgid "l-en-zw"
4536
- msgstr "English (Zimbabwe)"
4537
 
4538
- # Esperanto
4539
- #: ../languages/dynamic_strings.php:171
4540
  msgid "l-eo"
4541
- msgstr "Esperanto"
4542
 
4543
- # Spanish; Castilian
4544
- #: ../languages/dynamic_strings.php:172
4545
  msgid "l-es"
4546
- msgstr "Spanish"
4547
 
4548
- # Spanish; Castilian
4549
- #: ../languages/dynamic_strings.php:173
4550
  msgid "l-es-ar"
4551
- msgstr "Spanish (Argentina)"
4552
 
4553
- # Spanish; Castilian
4554
- #: ../languages/dynamic_strings.php:174
4555
  msgid "l-es-bo"
4556
- msgstr "Spanish (Bolivia)"
4557
 
4558
- # Spanish; Castilian
4559
- #: ../languages/dynamic_strings.php:175
4560
  msgid "l-es-cl"
4561
- msgstr "Spanish (Chile)"
4562
 
4563
- # Spanish; Castilian
4564
- #: ../languages/dynamic_strings.php:176
4565
  msgid "l-es-co"
4566
- msgstr "Spanish (Colombia)"
4567
 
4568
- # Spanish; Castilian
4569
- #: ../languages/dynamic_strings.php:177
4570
  msgid "l-es-cr"
4571
- msgstr "Spanish (Costa Rica)"
4572
 
4573
- # Spanish; Castilian
4574
- #: ../languages/dynamic_strings.php:178
4575
  msgid "l-es-do"
4576
- msgstr "Spanish (Dominican Republic)"
4577
 
4578
- # Spanish; Castilian
4579
- #: ../languages/dynamic_strings.php:179
4580
  msgid "l-es-ec"
4581
- msgstr "Spanish (Ecuador)"
4582
 
4583
- # Spanish; Castilian
4584
- #: ../languages/dynamic_strings.php:180
4585
  msgid "l-es-es"
4586
- msgstr "Spanish (Spain)"
4587
 
4588
- # Spanish; Castilian
4589
- #: ../languages/dynamic_strings.php:181
4590
  msgid "l-es-gt"
4591
- msgstr "Spanish (Guatemala)"
4592
 
4593
- # Spanish; Castilian
4594
- #: ../languages/dynamic_strings.php:182
4595
  msgid "l-es-hn"
4596
- msgstr "Spanish (Honduras)"
4597
 
4598
- # Spanish; Castilian
4599
- #: ../languages/dynamic_strings.php:183
4600
  msgid "l-es-mx"
4601
- msgstr "Spanish (Mexico)"
4602
 
4603
- # Spanish; Castilian
4604
- #: ../languages/dynamic_strings.php:184
4605
  msgid "l-es-ni"
4606
- msgstr "Spanish (Nicaragua)"
4607
 
4608
- # Spanish; Castilian
4609
- #: ../languages/dynamic_strings.php:185
4610
  msgid "l-es-pa"
4611
- msgstr "Spanish (Panama)"
4612
 
4613
- # Spanish; Castilian
4614
- #: ../languages/dynamic_strings.php:186
4615
  msgid "l-es-pe"
4616
- msgstr "Spanish (Peru)"
4617
 
4618
- # Spanish; Castilian
4619
- #: ../languages/dynamic_strings.php:187
4620
  msgid "l-es-pr"
4621
- msgstr "Spanish (Puerto Rico)"
4622
 
4623
- # Spanish; Castilian
4624
- #: ../languages/dynamic_strings.php:188
4625
  msgid "l-es-py"
4626
- msgstr "Spanish (Paraguay)"
4627
 
4628
- # Spanish; Castilian
4629
- #: ../languages/dynamic_strings.php:189
4630
  msgid "l-es-sv"
4631
- msgstr "Spanish (El Salvador)"
4632
 
4633
- # Spanish; Castilian
4634
- #: ../languages/dynamic_strings.php:190
4635
  msgid "l-es-uy"
4636
- msgstr "Spanish (Uruguay)"
4637
 
4638
- # Spanish; Castilian
4639
- #: ../languages/dynamic_strings.php:191
4640
  msgid "l-es-ve"
4641
- msgstr "Spanish (Venezuela)"
4642
 
4643
- # Estonian
4644
- #: ../languages/dynamic_strings.php:192
4645
  msgid "l-et"
4646
- msgstr "Estonian"
4647
 
4648
- # Estonian
4649
- #: ../languages/dynamic_strings.php:193
4650
  msgid "l-et-ee"
4651
- msgstr "Estonian (Estonia)"
4652
 
4653
- # Basque
4654
- #: ../languages/dynamic_strings.php:194
4655
  msgid "l-eu"
4656
- msgstr "Basque"
4657
 
4658
- # Basque
4659
- #: ../languages/dynamic_strings.php:195
4660
  msgid "l-eu-es"
4661
- msgstr "Basque (Spain)"
4662
 
4663
- # Persian
4664
- #: ../languages/dynamic_strings.php:196
4665
  msgid "l-fa"
4666
- msgstr "Persian"
4667
 
4668
- # Persian
4669
- #: ../languages/dynamic_strings.php:197
4670
  msgid "l-fa-ir"
4671
- msgstr "Persian (Iran)"
4672
 
4673
- # Finnish
4674
- #: ../languages/dynamic_strings.php:198
4675
  msgid "l-fi"
4676
- msgstr "Finnish"
4677
 
4678
- # Finnish
4679
- #: ../languages/dynamic_strings.php:199
4680
  msgid "l-fi-fi"
4681
- msgstr "Finnish (Finland)"
4682
 
4683
- # Faroese
4684
- #: ../languages/dynamic_strings.php:200
4685
  msgid "l-fo"
4686
- msgstr "Faroese"
4687
 
4688
- # Faroese
4689
- #: ../languages/dynamic_strings.php:201
4690
  msgid "l-fo-fo"
4691
- msgstr "Faroese (Faroe Islands)"
4692
 
4693
- # French
4694
- #: ../languages/dynamic_strings.php:202
4695
  msgid "l-fr"
4696
- msgstr "French"
4697
 
4698
- # French
4699
- #: ../languages/dynamic_strings.php:203
4700
  msgid "l-fr-be"
4701
- msgstr "French (Belgium)"
4702
 
4703
- # French
4704
- #: ../languages/dynamic_strings.php:204
4705
  msgid "l-fr-ca"
4706
- msgstr "French (Canada)"
4707
 
4708
- # French
4709
- #: ../languages/dynamic_strings.php:205
4710
  msgid "l-fr-ch"
4711
- msgstr "French (Switzerland)"
4712
 
4713
- # French
4714
- #: ../languages/dynamic_strings.php:206
4715
  msgid "l-fr-fr"
4716
- msgstr "French (France)"
4717
 
4718
- # French
4719
- #: ../languages/dynamic_strings.php:207
4720
  msgid "l-fr-lu"
4721
- msgstr "French (Luxembourg)"
4722
 
4723
- # French
4724
- #: ../languages/dynamic_strings.php:208
4725
  msgid "l-fr-mc"
4726
- msgstr "French (Monaco)"
4727
 
4728
- # Galician
4729
- #: ../languages/dynamic_strings.php:209
4730
  msgid "l-gl"
4731
- msgstr "Galician"
4732
 
4733
- # Spanish; Castilian
4734
- #: ../languages/dynamic_strings.php:210
4735
  msgid "l-gl-es"
4736
- msgstr "Galician (Spain)"
4737
 
4738
- # Gujarati
4739
- #: ../languages/dynamic_strings.php:211
4740
  msgid "l-gu"
4741
- msgstr "Gujarati"
4742
 
4743
- # Gujarati
4744
- #: ../languages/dynamic_strings.php:212
4745
  msgid "l-gu-in"
4746
- msgstr "Gujarati (India)"
4747
 
4748
- # Hebrew
4749
- #: ../languages/dynamic_strings.php:213
4750
  msgid "l-he"
4751
- msgstr "Hebrew"
4752
 
4753
- # Hebrew
4754
- #: ../languages/dynamic_strings.php:214
4755
  msgid "l-he-il"
4756
- msgstr "Hebrew (Israel)"
4757
 
4758
- # Hindi
4759
- #: ../languages/dynamic_strings.php:215
4760
  msgid "l-hi"
4761
- msgstr "Hindi"
4762
 
4763
- # Hindi
4764
- #: ../languages/dynamic_strings.php:216
4765
  msgid "l-hi-in"
4766
- msgstr "Hindi (India)"
4767
 
4768
- # Croatian
4769
- #: ../languages/dynamic_strings.php:217
4770
  msgid "l-hr"
4771
- msgstr "Croatian"
4772
 
4773
- # Croatian
4774
- #: ../languages/dynamic_strings.php:218
4775
  msgid "l-hr-ba"
4776
- msgstr "Croatian (Bosnia)"
4777
 
4778
- # Croatian
4779
- #: ../languages/dynamic_strings.php:219
4780
  msgid "l-hr-hr"
4781
- msgstr "Croatian (Croatia)"
4782
 
4783
- # Hungarian
4784
- #: ../languages/dynamic_strings.php:220
4785
  msgid "l-hu"
4786
- msgstr "Hungarian"
4787
 
4788
- # Hungarian
4789
- #: ../languages/dynamic_strings.php:221
4790
  msgid "l-hu-hu"
4791
- msgstr "Hungarian (Hungary)"
4792
 
4793
- # Armenian
4794
- #: ../languages/dynamic_strings.php:222
4795
  msgid "l-hy"
4796
- msgstr "Armenian"
4797
 
4798
- # Armenian
4799
- #: ../languages/dynamic_strings.php:223
4800
  msgid "l-hy-am"
4801
- msgstr "Armenian (Armenia)"
4802
 
4803
- #: ../languages/dynamic_strings.php:224
4804
  msgid "l-id"
4805
- msgstr "Indonesian"
4806
 
4807
- #: ../languages/dynamic_strings.php:225
4808
  msgid "l-id-id"
4809
- msgstr "Indonesian (Indonesia)"
4810
 
4811
- # Icelandic
4812
- #: ../languages/dynamic_strings.php:226
4813
  msgid "l-is"
4814
- msgstr "Icelandic"
4815
 
4816
- # Icelandic
4817
- #: ../languages/dynamic_strings.php:227
4818
  msgid "l-is-is"
4819
- msgstr "Icelandic (Iceland)"
4820
 
4821
- # Italian
4822
- #: ../languages/dynamic_strings.php:228
4823
  msgid "l-it"
4824
- msgstr "Italian"
4825
 
4826
- # Italian
4827
- #: ../languages/dynamic_strings.php:229
4828
  msgid "l-it-ch"
4829
- msgstr "Italian (Switzerland)"
4830
 
4831
- # Italian
4832
- #: ../languages/dynamic_strings.php:230
4833
  msgid "l-it-it"
4834
- msgstr "Italian (Italy)"
4835
 
4836
- # Japanese
4837
- #: ../languages/dynamic_strings.php:231
4838
  msgid "l-ja"
4839
- msgstr "Japanese"
4840
 
4841
- # Japanese
4842
- #: ../languages/dynamic_strings.php:232
4843
  msgid "l-ja-jp"
4844
- msgstr "Japanese (Japan)"
4845
 
4846
- # Georgian
4847
- #: ../languages/dynamic_strings.php:233
4848
  msgid "l-ka"
4849
- msgstr "Georgian"
4850
 
4851
- # Georgian
4852
- #: ../languages/dynamic_strings.php:234
4853
  msgid "l-ka-ge"
4854
- msgstr "Georgian (Georgia)"
4855
 
4856
- # Kazakh
4857
- #: ../languages/dynamic_strings.php:235
4858
  msgid "l-kk"
4859
- msgstr "Kazakh"
4860
 
4861
- # Kazakh
4862
- #: ../languages/dynamic_strings.php:236
4863
  msgid "l-kk-kz"
4864
- msgstr "Kazakh (Kazakhstan)"
4865
 
4866
- # Kannada
4867
- #: ../languages/dynamic_strings.php:237
4868
  msgid "l-kn"
4869
- msgstr "Kannada"
4870
 
4871
- # Kannada
4872
- #: ../languages/dynamic_strings.php:238
4873
  msgid "l-kn-in"
4874
- msgstr "Kannada (India)"
4875
 
4876
- # Korean
4877
- #: ../languages/dynamic_strings.php:239
4878
  msgid "l-ko"
4879
- msgstr "Korean"
4880
 
4881
- # Korean
4882
- #: ../languages/dynamic_strings.php:240
4883
  msgid "l-ko-kr"
4884
- msgstr "Korean (Korea)"
4885
 
4886
- # Korean
4887
- #: ../languages/dynamic_strings.php:241
4888
  msgid "l-kok"
4889
- msgstr "Konkani"
4890
 
4891
- # Korean
4892
- #: ../languages/dynamic_strings.php:242
4893
  msgid "l-kok-in"
4894
- msgstr "Konkani (India)"
4895
 
4896
- # Kirghiz; Kyrgyz
4897
- #: ../languages/dynamic_strings.php:243
4898
  msgid "l-ky"
4899
- msgstr "Kirghiz"
4900
 
4901
- # Kirghiz; Kyrgyz
4902
- #: ../languages/dynamic_strings.php:244
4903
  msgid "l-ky-kg"
4904
- msgstr "Kirghiz (Kazakhstan)"
4905
 
4906
- # Lithuanian
4907
- #: ../languages/dynamic_strings.php:245
4908
  msgid "l-lt"
4909
- msgstr "Lithuanian"
4910
 
4911
- # Lithuanian
4912
- #: ../languages/dynamic_strings.php:246
4913
  msgid "l-lt-lt"
4914
- msgstr "Lithuanian (Lithuania)"
4915
 
4916
- # Latvian
4917
- #: ../languages/dynamic_strings.php:247
4918
  msgid "l-lv"
4919
- msgstr "Latvian"
4920
 
4921
- # Latvian
4922
- #: ../languages/dynamic_strings.php:248
4923
  msgid "l-lv-lv"
4924
- msgstr "Latvian (Latvia)"
4925
 
4926
- # Maori
4927
- #: ../languages/dynamic_strings.php:249
4928
  msgid "l-mi"
4929
- msgstr "Maori"
4930
 
4931
- # Maori
4932
- #: ../languages/dynamic_strings.php:250
4933
  msgid "l-mi-nz"
4934
- msgstr "Maori (New Zealand)"
4935
 
4936
- # Macedonian
4937
- #: ../languages/dynamic_strings.php:251
4938
  msgid "l-mk"
4939
- msgstr "Macedonian"
4940
 
4941
- # Macedonian
4942
- #: ../languages/dynamic_strings.php:252
4943
  msgid "l-mk-ml"
4944
- msgstr "Macedonian (FYROM)"
4945
 
4946
- # Mongolian
4947
- #: ../languages/dynamic_strings.php:253
4948
  msgid "l-mn"
4949
- msgstr "Mongolian"
4950
 
4951
- # Mongolian
4952
- #: ../languages/dynamic_strings.php:254
4953
  msgid "l-mn-mn"
4954
- msgstr "Mongolian (Mongolia)"
4955
 
4956
- # Marathi
4957
- #: ../languages/dynamic_strings.php:255
4958
  msgid "l-mr"
4959
- msgstr "Marathi"
4960
 
4961
- # Marathi
4962
- #: ../languages/dynamic_strings.php:256
4963
  msgid "l-mr-in"
4964
- msgstr "Marathi (India)"
4965
 
4966
- # Malay
4967
- #: ../languages/dynamic_strings.php:257
4968
  msgid "l-ms"
4969
- msgstr "Malay"
4970
 
4971
- # Malay
4972
- #: ../languages/dynamic_strings.php:258
4973
  msgid "l-ms-bn"
4974
- msgstr "Malay (Brunei)"
4975
 
4976
- # Malay
4977
- #: ../languages/dynamic_strings.php:259
4978
  msgid "l-ms-my"
4979
- msgstr "Malay (Malaysia)"
4980
 
4981
- # Maltese
4982
- #: ../languages/dynamic_strings.php:260
4983
  msgid "l-mt"
4984
- msgstr "Maltese"
4985
 
4986
- # Maltese
4987
- #: ../languages/dynamic_strings.php:261
4988
  msgid "l-mt-mt"
4989
- msgstr "Maltese (Malta)"
4990
 
4991
- # Norwegian Bokmål
4992
- #: ../languages/dynamic_strings.php:262
4993
  msgid "l-nb"
4994
- msgstr "Norwegian; Bokmål"
4995
 
4996
- # Norwegian Bokmål
4997
- #: ../languages/dynamic_strings.php:263
4998
  msgid "l-nb-no"
4999
- msgstr "Norwegian (Norway)"
5000
 
5001
- # Dutch; Flemish
5002
- #: ../languages/dynamic_strings.php:264
5003
  msgid "l-nl"
5004
- msgstr "Dutch; Flemish"
5005
 
5006
- # Belarusian
5007
- #: ../languages/dynamic_strings.php:265
5008
  msgid "l-nl-be"
5009
- msgstr "Dutch (Belgium)"
5010
 
5011
- # Dutch; Flemish
5012
- #: ../languages/dynamic_strings.php:266
5013
  msgid "l-nl-nl"
5014
- msgstr "Dutch (The Netherlands)"
5015
 
5016
- # Norwegian Nynorsk
5017
- #: ../languages/dynamic_strings.php:267
5018
  msgid "l-nn-no"
5019
- msgstr "Norwegian; Nynorsk (Norway)"
5020
 
5021
- #: ../languages/dynamic_strings.php:268
5022
  msgid "l-ns"
5023
- msgstr "Northern Sotho"
5024
 
5025
- #: ../languages/dynamic_strings.php:269
5026
  msgid "l-ns-za"
5027
- msgstr "Northern Sotho (South Africa)"
5028
 
5029
- # Panjabi; Punjabi
5030
- #: ../languages/dynamic_strings.php:270
5031
  msgid "l-pa"
5032
- msgstr "Panjabi; Punjabi"
5033
 
5034
- # Panjabi; Punjabi
5035
- #: ../languages/dynamic_strings.php:271
5036
  msgid "l-pa-in"
5037
- msgstr "Panjabi (India)"
5038
 
5039
- # Polish
5040
- #: ../languages/dynamic_strings.php:272
5041
  msgid "l-pl"
5042
- msgstr "Polish"
5043
 
5044
- # Polish
5045
- #: ../languages/dynamic_strings.php:273
5046
  msgid "l-pl-pl"
5047
- msgstr "Polish (Poland)"
5048
 
5049
- # Pushto; Pashto
5050
- #: ../languages/dynamic_strings.php:274
5051
  msgid "l-ps"
5052
- msgstr "Pushto; Pashto"
5053
 
5054
- # Pushto; Pashto
5055
- #: ../languages/dynamic_strings.php:275
5056
  msgid "l-ps-ar"
5057
- msgstr "Pashto (Afghanistan)"
5058
 
5059
- # Portuguese
5060
- #: ../languages/dynamic_strings.php:276
5061
  msgid "l-pt"
5062
- msgstr "Portuguese"
5063
 
5064
- # Portuguese
5065
- #: ../languages/dynamic_strings.php:277
5066
  msgid "l-pt-br"
5067
- msgstr "Portuguese (Brazil)"
5068
 
5069
- # Portuguese
5070
- #: ../languages/dynamic_strings.php:278
5071
  msgid "l-pt-pt"
5072
- msgstr "Portuguese (Portugal)"
5073
 
5074
- # Quechua
5075
- #: ../languages/dynamic_strings.php:279
5076
  msgid "l-qu"
5077
- msgstr "Quechua"
5078
 
5079
- # Quechua
5080
- #: ../languages/dynamic_strings.php:280
5081
  msgid "l-qu-bo"
5082
- msgstr "Quechua (Bolivia)"
5083
 
5084
- # Quechua
5085
- #: ../languages/dynamic_strings.php:281
5086
  msgid "l-qu-ec"
5087
- msgstr "Quechua (Ecuador)"
5088
 
5089
- # Quechua
5090
- #: ../languages/dynamic_strings.php:282
5091
  msgid "l-qu-pe"
5092
- msgstr "Quechua (Peru)"
5093
 
5094
- # Romanian; Moldavian; Moldovan
5095
- #: ../languages/dynamic_strings.php:283
5096
  msgid "l-ro"
5097
- msgstr "Romanian"
5098
 
5099
- # Romanian; Moldavian; Moldovan
5100
- #: ../languages/dynamic_strings.php:284
5101
  msgid "l-ro-ro"
5102
- msgstr "Romanian (Romania)"
5103
 
5104
- # Russian
5105
- #: ../languages/dynamic_strings.php:285
5106
  msgid "l-ru"
5107
- msgstr "Russian"
5108
 
5109
- # Russian
5110
- #: ../languages/dynamic_strings.php:286
5111
  msgid "l-ru-ru"
5112
- msgstr "Russian (Russia)"
5113
 
5114
- #: ../languages/dynamic_strings.php:287
5115
  msgid "l-sa"
5116
- msgstr "Sanskrit"
5117
 
5118
- #: ../languages/dynamic_strings.php:288
5119
  msgid "l-sa-in"
5120
- msgstr "Sanskrit (India)"
5121
 
5122
- # Northern Sami
5123
- #: ../languages/dynamic_strings.php:289
5124
  msgid "l-se"
5125
- msgstr "Northern Sami"
5126
 
5127
- # Northern Sami
5128
- #: ../languages/dynamic_strings.php:290
5129
  msgid "l-se-fi"
5130
- msgstr "Northern Sami (Finland)"
5131
 
5132
- # Northern Sami
5133
- #: ../languages/dynamic_strings.php:291
5134
  msgid "l-se-no"
5135
- msgstr "Northern Sami (Norway)"
5136
 
5137
- # Northern Sami
5138
- #: ../languages/dynamic_strings.php:292
5139
  msgid "l-se-se"
5140
- msgstr "Northern Sami (Sweden)"
5141
 
5142
- # Slovak
5143
- #: ../languages/dynamic_strings.php:293
5144
  msgid "l-sk"
5145
- msgstr "Slovak"
5146
 
5147
- # Slovak
5148
- #: ../languages/dynamic_strings.php:294
5149
  msgid "l-sk-sk"
5150
- msgstr "Slovak (Slovakia)"
5151
 
5152
- # Slovenian
5153
- #: ../languages/dynamic_strings.php:295
5154
  msgid "l-sl"
5155
- msgstr "Slovenian"
5156
 
5157
- # Slovenian
5158
- #: ../languages/dynamic_strings.php:296
5159
  msgid "l-sl-si"
5160
- msgstr "Slovenian (Slovenia)"
5161
 
5162
- # Albanian
5163
- #: ../languages/dynamic_strings.php:297
5164
  msgid "l-sq"
5165
- msgstr "Albanian"
5166
 
5167
- # Albanian
5168
- #: ../languages/dynamic_strings.php:298
5169
  msgid "l-sq-al"
5170
- msgstr "Albanian (Albania)"
5171
 
5172
- # Serbian
5173
- #: ../languages/dynamic_strings.php:299
5174
  msgid "l-sr-ba"
5175
- msgstr "Serbian (Bosnia and Herzegovina)"
5176
 
5177
- # Serbian
5178
- #: ../languages/dynamic_strings.php:300
5179
  msgid "l-sr-sp"
5180
- msgstr "Serbian (Serbia and Montenegro)"
5181
 
5182
- # Swedish
5183
- #: ../languages/dynamic_strings.php:301
5184
  msgid "l-sv"
5185
- msgstr "Swedish"
5186
 
5187
- # Swedish
5188
- #: ../languages/dynamic_strings.php:302
5189
  msgid "l-sv-fi"
5190
- msgstr "Swedish (Finland)"
5191
 
5192
- # Swedish
5193
- #: ../languages/dynamic_strings.php:303
5194
  msgid "l-sv-se"
5195
- msgstr "Swedish (Sweden)"
5196
 
5197
- # Swahili
5198
- #: ../languages/dynamic_strings.php:304
5199
  msgid "l-sw"
5200
- msgstr "Swahili"
5201
 
5202
- # Swahili
5203
- #: ../languages/dynamic_strings.php:305
5204
  msgid "l-sw-ke"
5205
- msgstr "Swahili (Kenya)"
5206
 
5207
- # Tamil
5208
- #: ../languages/dynamic_strings.php:306
5209
  msgid "l-ta"
5210
- msgstr "Tamil"
5211
 
5212
- # Tamil
5213
- #: ../languages/dynamic_strings.php:307
5214
  msgid "l-ta-in"
5215
- msgstr "Tamil (India)"
5216
 
5217
- # Telugu
5218
- #: ../languages/dynamic_strings.php:308
5219
  msgid "l-te"
5220
- msgstr "Telugu"
5221
 
5222
- # Telugu
5223
- #: ../languages/dynamic_strings.php:309
5224
  msgid "l-te-in"
5225
- msgstr "Telugu (India)"
5226
 
5227
- # Thai
5228
- #: ../languages/dynamic_strings.php:310
5229
  msgid "l-th"
5230
- msgstr "Thai"
5231
 
5232
- # Thai
5233
- #: ../languages/dynamic_strings.php:311
5234
  msgid "l-th-th"
5235
- msgstr "Thai (Thailand)"
5236
 
5237
- # Tagalog
5238
- #: ../languages/dynamic_strings.php:312
5239
  msgid "l-tl"
5240
- msgstr "Tagalog"
5241
 
5242
- # Tagalog
5243
- #: ../languages/dynamic_strings.php:313
5244
  msgid "l-tl-ph"
5245
- msgstr "Tagalog (Philippines)"
5246
 
5247
- # Tswana
5248
- #: ../languages/dynamic_strings.php:314
5249
  msgid "l-tn"
5250
- msgstr "Tswana"
5251
 
5252
- # Tswana
5253
- #: ../languages/dynamic_strings.php:315
5254
  msgid "l-tn-za"
5255
- msgstr "Tswana (South Africa)"
5256
 
5257
- # Turkish
5258
- #: ../languages/dynamic_strings.php:316
5259
  msgid "l-tr"
5260
- msgstr "Turkish"
5261
 
5262
- # Turkish
5263
- #: ../languages/dynamic_strings.php:317
5264
  msgid "l-tr-tr"
5265
- msgstr "Turkish (Turkey)"
5266
 
5267
- # Tatar
5268
- #: ../languages/dynamic_strings.php:318
5269
  msgid "l-tt"
5270
- msgstr "Tatar"
5271
 
5272
- # Tatar
5273
- #: ../languages/dynamic_strings.php:319
5274
  msgid "l-tt-ru"
5275
- msgstr "Tatar (Russia)"
5276
 
5277
- # Tsonga
5278
- #: ../languages/dynamic_strings.php:320
5279
  msgid "l-ts"
5280
- msgstr "Tsonga"
5281
 
5282
- # Ukrainian
5283
- #: ../languages/dynamic_strings.php:321
5284
  msgid "l-uk"
5285
- msgstr "Ukrainian"
5286
 
5287
- # Ukrainian
5288
- #: ../languages/dynamic_strings.php:322
5289
  msgid "l-uk-ua"
5290
- msgstr "Ukrainian (Ukraine)"
5291
 
5292
- # Urdu
5293
- #: ../languages/dynamic_strings.php:323
5294
  msgid "l-ur"
5295
- msgstr "Urdu"
5296
 
5297
- # Urdu
5298
- #: ../languages/dynamic_strings.php:324
5299
  msgid "l-ur-pk"
5300
- msgstr "Urdu (Pakistan)"
5301
 
5302
- # Uzbek
5303
- #: ../languages/dynamic_strings.php:325
5304
  msgid "l-uz"
5305
- msgstr "Uzbek"
5306
 
5307
- # Uzbek
5308
- #: ../languages/dynamic_strings.php:326
5309
  msgid "l-uz-uz"
5310
- msgstr "Uzbek (Uzbekistan)"
5311
 
5312
- # Vietnamese
5313
- #: ../languages/dynamic_strings.php:327
5314
  msgid "l-vi"
5315
- msgstr "Vietnamese"
5316
 
5317
- # Vietnamese
5318
- #: ../languages/dynamic_strings.php:328
5319
  msgid "l-vi-vn"
5320
- msgstr "Vietnamese (Viet Nam)"
5321
 
5322
- # Xhosa
5323
- #: ../languages/dynamic_strings.php:329
5324
  msgid "l-xh"
5325
- msgstr "Xhosa"
5326
 
5327
- # Xhosa
5328
- #: ../languages/dynamic_strings.php:330
5329
  msgid "l-xh-za"
5330
- msgstr "Xhosa (South Africa)"
5331
 
5332
- # Chinese
5333
- #: ../languages/dynamic_strings.php:331
5334
  msgid "l-zh"
5335
- msgstr "Chinese"
5336
 
5337
- # Chinese
5338
- #: ../languages/dynamic_strings.php:332
5339
  msgid "l-zh-cn"
5340
- msgstr "Chinese (S)"
5341
 
5342
- # Chinese
5343
- #: ../languages/dynamic_strings.php:333
5344
  msgid "l-zh-hk"
5345
- msgstr "Chinese (Hong Kong)"
5346
 
5347
- # Chinese
5348
- #: ../languages/dynamic_strings.php:334
5349
  msgid "l-zh-mo"
5350
- msgstr "Chinese (Macau)"
5351
 
5352
- # Chinese
5353
- #: ../languages/dynamic_strings.php:335
5354
  msgid "l-zh-sg"
5355
- msgstr "Chinese (Singapore)"
5356
 
5357
- # Chinese
5358
- #: ../languages/dynamic_strings.php:336
5359
  msgid "l-zh-tw"
5360
- msgstr "Chinese (T)"
5361
 
5362
- # Zulu
5363
- #: ../languages/dynamic_strings.php:337
5364
  msgid "l-zu"
5365
- msgstr "Zulu"
5366
 
5367
- # Zulu
5368
- #: ../languages/dynamic_strings.php:338
5369
  msgid "l-zu-za"
5370
- msgstr "Zulu (South Africa)"
5371
 
5372
- # Unknown
5373
- #: ../languages/dynamic_strings.php:340
5374
  msgid "l-empty"
5375
- msgstr "Unknown"
5376
 
5377
- # Unknown
5378
- #: ../languages/dynamic_strings.php:341
5379
  msgid "l-xx"
5380
- msgstr "Unknown"
5381
 
5382
- #: ../languages/dynamic_strings.php:343
5383
  msgid "c-xy"
5384
- msgstr "Local IP"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5385
 
5386
- #: ../wp-slimstat.php:250 ../wp-slimstat.php:535
5387
- msgid "Notice: Pageview filtered by third-party code"
 
 
 
 
 
 
5388
  msgstr ""
5389
 
5390
- #: ../wp-slimstat.php:267
5391
  #, php-format
5392
- msgid "Error: Malformed URL %s"
5393
  msgstr ""
5394
 
5395
- #: ../wp-slimstat.php:291
5396
  #, php-format
5397
- msgid "Notice: Referrer %s is blacklisted"
5398
  msgstr ""
5399
 
5400
- #: ../wp-slimstat.php:367
5401
  #, php-format
5402
- msgid "Notice: Permalink %s is blacklisted"
5403
  msgstr ""
5404
 
5405
- #: ../wp-slimstat.php:378
5406
- msgid "Error: Empty or not supported IP address format (IPv6)"
5407
  msgstr ""
5408
 
5409
- #: ../wp-slimstat.php:387
5410
  #, php-format
5411
- msgid "Notice: Logged in user %s not tracked"
5412
  msgstr ""
5413
 
5414
- #: ../wp-slimstat.php:395
5415
  #, php-format
5416
- msgid "Notice: User with capability %s not tracked"
5417
  msgstr ""
5418
 
5419
- #: ../wp-slimstat.php:405
5420
  #, php-format
5421
- msgid "Notice: User %s is blacklisted"
5422
  msgstr ""
5423
 
5424
- #: ../wp-slimstat.php:426
5425
  #, php-format
5426
- msgid "Notice: Spammer %s not tracked"
5427
  msgstr ""
5428
 
5429
- #: ../wp-slimstat.php:455
5430
  #, php-format
5431
- msgid "Notice: IP address %s is blacklisted"
5432
  msgstr ""
5433
 
5434
- #: ../wp-slimstat.php:484
5435
  #, php-format
5436
- msgid "Notice: Country %s is blacklisted"
5437
  msgstr ""
5438
 
5439
- #: ../wp-slimstat.php:493
5440
- msgid "Notice: Prefetch requests are ignored"
 
 
 
 
 
 
 
5441
  msgstr ""
5442
 
5443
- #: ../wp-slimstat.php:509
5444
- msgid "Notice: Bot not tracked"
5445
  msgstr ""
5446
 
5447
- #: ../wp-slimstat.php:518
 
 
 
 
5448
  #, php-format
5449
- msgid "Notice: Browser %s is blacklisted"
5450
  msgstr ""
5451
 
5452
- #: ../wp-slimstat.php:553
5453
- msgid "Error:"
 
5454
  msgstr ""
5455
 
5456
- #: ../wp-slimstat.php:1012
5457
  msgid "Invalid payload string. Try clearing your WordPress cache."
5458
  msgstr ""
5459
 
5460
- #: ../wp-slimstat.php:1022
5461
  msgid "Invalid data signature. Try clearing your WordPress cache."
5462
  msgstr ""
5463
 
5464
- #: ../wp-slimstat.php:1116
 
 
 
 
 
 
5465
  msgid "There was an error downloading the MaxMind Geolite DB:"
5466
  msgstr ""
5467
 
5468
- #: ../wp-slimstat.php:1124 ../wp-slimstat.php:1133
5469
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5470
  msgstr ""
5471
 
5472
- #: ../wp-slimstat.php:1128
5473
  msgid "Function gzopen not defined. Aborting."
5474
  msgstr ""
5475
 
5476
- #: ../wp-slimstat.php:1138
5477
- msgid "There was an error opening the unzipped MaxMind Geolite DB."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5478
  msgstr ""
5479
 
5480
  #, fuzzy
1
+ #, fuzzy
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WP SlimStat\n"
5
+ "POT-Creation-Date: 2019-04-22 13:10-0400\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: WP Slimstat <support@wp-slimstat.com>\n"
8
  "Language-Team: camu <info@duechiacchiere.it>\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.2.1\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: .\n"
16
  "X-Poedit-Bookmarks: 332,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
  "X-Poedit-SearchPathExcluded-0: ../admin/js\n"
19
 
20
+ #: ../admin/config/index.php:22 ../admin/config/index.php:50
21
+ #: ../admin/config/index.php:75
22
  msgid ""
23
  "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
24
  "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
25
  msgstr ""
26
 
27
+ #: ../admin/config/index.php:37
28
  msgid "Read access: username not found"
29
  msgstr ""
30
 
31
+ #: ../admin/config/index.php:65
32
  msgid "Config access: username not found"
33
  msgstr ""
34
 
35
+ #: ../admin/config/index.php:84
36
  msgid "Basic"
37
  msgstr ""
38
 
39
+ #: ../admin/config/index.php:86 ../admin/config/index.php:108
40
  msgid "Tracker"
41
  msgstr ""
42
 
43
+ #: ../admin/config/index.php:87
44
  msgid "Enable Tracking"
45
  msgstr ""
46
 
47
+ #: ../admin/config/index.php:87
48
  msgid "Turn the tracker on or off, while keeping the reports accessible."
49
  msgstr ""
50
 
51
+ #: ../admin/config/index.php:88
52
  msgid "Tracking Mode"
53
  msgstr ""
54
 
55
+ #: ../admin/config/index.php:88
56
  msgid ""
57
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
58
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
61
  "spammers, search engines and other crawlers</strong> will not be tracked."
62
  msgstr ""
63
 
64
+ #: ../admin/config/index.php:88
65
  msgid "Client"
66
  msgstr ""
67
 
68
+ #: ../admin/config/index.php:88
69
  msgid "Server"
70
  msgstr ""
71
 
72
+ #: ../admin/config/index.php:89
73
  msgid "Track Client Info"
74
  msgstr ""
75
 
76
+ #: ../admin/config/index.php:89
77
  msgid ""
78
+ "If this option is turned off, the tracker will not be collecting information "
79
+ "such as screen resolution, outbound links, downloads, etc. This option is "
80
+ "ignored if Tracking Mode is set to Client."
 
 
81
  msgstr ""
82
 
83
+ #: ../admin/config/index.php:90
84
  msgid "Track Admin Pages"
85
  msgstr ""
86
 
87
+ #: ../admin/config/index.php:90
88
  msgid "Enable this option to track your users' activity within the admin."
89
  msgstr ""
90
 
91
+ #: ../admin/config/index.php:92
92
  msgid "WordPress Integration"
93
  msgstr ""
94
 
95
+ #: ../admin/config/index.php:93
96
  msgid "Dashboard Widgets"
97
  msgstr ""
98
 
99
+ #: ../admin/config/index.php:93
100
  msgid ""
101
  "Enable this option if you want to add reports to your WordPress Dashboard. "
102
  "Use the Customizer to choose which ones to display."
103
  msgstr ""
104
 
105
+ #: ../admin/config/index.php:94
106
  msgid "Menu Position"
107
  msgstr ""
108
 
109
+ #: ../admin/config/index.php:94
110
  msgid ""
111
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
112
  "admin bar (if visible)."
113
  msgstr ""
114
 
115
+ #: ../admin/config/index.php:94
116
  msgid "Side"
117
  msgstr ""
118
 
119
+ #: ../admin/config/index.php:94
120
  msgid "Bar"
121
  msgstr ""
122
 
123
+ #: ../admin/config/index.php:95
124
+ msgid "Report Interval"
125
  msgstr ""
126
 
127
+ #: ../admin/config/index.php:95
128
  msgid ""
129
+ "Enter the time range, in days, that should be used to count the number of "
130
+ "pageviews on Posts/Pages (see option here below) and for the Default Time "
131
+ "Span option under the Reports tab."
132
  msgstr ""
133
 
134
+ #: ../admin/config/index.php:96
135
+ msgid "Posts and Pages"
136
  msgstr ""
137
 
138
+ #: ../admin/config/index.php:96
139
  msgid ""
140
+ "Add a new column to the Edit Posts/Pages screens, with the number of hits "
141
+ "per post within the timeframe specified here below."
142
  msgstr ""
143
 
144
+ #: ../admin/config/index.php:98
145
  msgid "Report Type"
146
  msgstr ""
147
 
148
+ #: ../admin/config/index.php:98
149
  msgid ""
150
  "Select what kind of information you would like to see displayed on your "
151
  "Posts admin screen. Hits counts all the pageviews regardless of the user, "
152
  "(unique) IPs counts only one hit per IP in the given time range."
153
  msgstr ""
154
 
155
+ #: ../admin/config/index.php:98 ../admin/view/wp-slimstat-db.php:115
156
+ #: ../admin/view/wp-slimstat-db.php:906 ../admin/view/wp-slimstat-db.php:1157
157
+ #: ../admin/view/wp-slimstat-db.php:1163 ../admin/view/wp-slimstat-db.php:1169
158
+ #: ../admin/view/wp-slimstat-db.php:1175 ../admin/view/wp-slimstat-db.php:1181
159
+ #: ../admin/view/wp-slimstat-db.php:1187 ../admin/view/wp-slimstat-db.php:1193
160
+ #: ../admin/view/wp-slimstat-reports.php:1174
161
+ #: ../admin/view/wp-slimstat-reports.php:1178
162
+ #: ../admin/view/wp-slimstat-reports.php:1409
 
 
163
  msgid "Hits"
164
  msgstr ""
165
 
166
+ #: ../admin/config/index.php:98
167
  msgid "IPs"
168
  msgstr ""
169
 
170
+ #: ../admin/config/index.php:99
171
  msgid "Hide Add-ons"
172
  msgstr ""
173
 
174
+ #: ../admin/config/index.php:99
175
  msgid ""
176
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
177
  "from the list of plugins in WordPress. Please note that you will still "
178
  "receive updates for hidden add-ons."
179
  msgstr ""
180
 
181
+ #: ../admin/config/index.php:101
182
  msgid "Database"
183
  msgstr ""
184
 
185
+ #: ../admin/config/index.php:102
186
  msgid "Retain data for"
187
  msgstr ""
188
 
189
+ #: ../admin/config/index.php:102
190
  msgid ""
191
  "Clean-up log entries older than the number of days specified here above. "
192
+ "Enter <strong>0</strong> (number zero) if you want to preserve your data in "
193
+ "the main table (neither archive it nor delete it) regardless of its age."
194
  msgstr ""
195
 
196
+ #: ../admin/config/index.php:102
197
  msgid "Next clean-up on"
198
  msgstr ""
199
 
200
+ #: ../admin/config/index.php:102
201
  #, php-format
202
  msgid ""
203
  "Entries logged on or before %s will be archived or deleted according to the "
204
  "option here below."
205
  msgstr ""
206
 
207
+ #: ../admin/config/index.php:102 ../admin/view/wp-slimstat-db.php:102
208
+ #: ../admin/view/wp-slimstat-db.php:691
 
209
  msgid "days"
210
  msgstr ""
211
 
212
+ #: ../admin/config/index.php:103
213
  msgid "Archive records"
214
  msgstr ""
215
 
216
+ #: ../admin/config/index.php:103
217
  msgid ""
218
  "If DB space is not an issue, you can decide to archive older records in "
219
  "another table, instead of deleting them. This way performance is preserved, "
223
  "is uninstalled. Make sure to backup your data before you proceed."
224
  msgstr ""
225
 
226
+ #: ../admin/config/index.php:110
227
+ msgid "Privacy and Data Protection"
228
  msgstr ""
229
 
230
+ #: ../admin/config/index.php:111
231
+ msgid "Enable Privacy Mode"
232
  msgstr ""
233
 
234
+ #: ../admin/config/index.php:111
235
  msgid ""
236
+ "Mask your visitors' IP addresses to comply with European Privacy Laws. This "
237
+ "feature will turn the final part of each IP address into a ZERO. Based on "
238
+ "our understanding of the various privacy guidelines, this is enough to "
239
+ "comply with the existing regulations."
240
  msgstr ""
241
 
242
+ #: ../admin/config/index.php:112
243
+ msgid "DNT Header"
244
  msgstr ""
245
 
246
+ #: ../admin/config/index.php:112
247
  msgid ""
248
+ "The <a href='https://en.wikipedia.org/wiki/Do_Not_Track' target='_blank'>Do "
249
+ "Not Track (DNT)</a> header is the proposed HTTP header field DNT that "
250
+ "requests that a web application disable either its tracking or cross-site "
251
+ "user tracking (the ambiguity remains unresolved) of an individual user. You "
252
+ "can decide to ignore this header and track any pageview regardless of the "
253
+ "headers sent by the browser."
254
  msgstr ""
255
 
256
+ #: ../admin/config/index.php:113
257
+ msgid "Set Cookie"
258
  msgstr ""
259
 
260
+ #: ../admin/config/index.php:113
261
  msgid ""
262
+ "Disable this option if, for legal or security reasons, you do not want "
263
+ "Slimstat to assign a <a href=\"https://en.wikipedia.org/wiki/HTTP_cookie\" "
264
+ "target=\"_blank\">cookie</a> to your visitors. Please note that, by "
265
+ "deactivating this feature, Slimstat will not keep track of returning "
266
+ "visitors and sessions."
 
 
 
 
 
267
  msgstr ""
268
 
269
+ #: ../admin/config/index.php:114
270
+ msgid "Allow Opt-out"
271
  msgstr ""
272
 
273
+ #: ../admin/config/index.php:114
274
+ msgid ""
275
+ "The European <a href='https://en.wikipedia.org/wiki/"
276
+ "General_Data_Protection_Regulation' target='_blank'>General Data Protection "
277
+ "Regulation (GDPR)</a> requires website owners to provide a way for their "
278
+ "visitors to opt-out of tracking. If enabled, the message here below will be "
279
+ "displayed to all users who don't have the corresponding cookie set. A notice "
280
+ "will be recorded under Settings > Maintenance every time a pageview is "
281
+ "ignored because the corresponding visitor has opted out of tracking."
282
+ msgstr ""
283
+
284
+ #: ../admin/config/index.php:115
285
+ msgid "Opt-out Message"
286
+ msgstr ""
287
+
288
+ #: ../admin/config/index.php:115
289
+ msgid ""
290
+ "In order to provide maximum flexibility to all site owners, we decided to "
291
+ "give you full control over the message and its layout, by allowing you to "
292
+ "specify the exact HTML markup that should be displayed on your website. Feel "
293
+ "free to customize this code to match your website styles and layout. Use the "
294
+ "two placeholders <code>{{accept_url}}</code> and <code>{{deny_url}}</code> "
295
+ "for the corresponding links, with the following meaning: Accept = allow "
296
+ "tracking, Deny = do not allow tracking."
297
+ msgstr ""
298
+
299
+ #: ../admin/config/index.php:116
300
+ msgid "Opt-out Cookies"
301
+ msgstr ""
302
+
303
+ #: ../admin/config/index.php:116
304
  msgid ""
305
+ "If you're already using another solution to record and track opt-out choices "
306
+ "made by your users, and it sets its own cookie to remember their selection, "
307
+ "you can enter the cookie names and values in this field to let Slimstat "
308
+ "leverage that information as well. Please use the following format: "
309
+ "<code>cookie_name=value</code>, where 'value' is what is used to remember "
310
+ "that the user has chosen to <strong>not</strong> be tracked."
311
+ msgstr ""
312
+
313
+ #: ../admin/config/index.php:117
314
+ msgid "Opt-in Cookies"
315
+ msgstr ""
316
+
317
+ #: ../admin/config/index.php:117
318
+ msgid ""
319
+ "Similarly to the option here above, you can instruct Slimstat to only track "
320
+ "visitors that have provided their consent (opted-in). Please use the "
321
+ "following format: <code>cookie_name=value</code>, where 'value' is what is "
322
+ "used to remember that the user has chosen <strong>to be</strong> tracked."
323
+ msgstr ""
324
+
325
+ #: ../admin/config/index.php:120
326
+ msgid "Link Tracking"
327
  msgstr ""
328
 
329
  #: ../admin/config/index.php:121
332
 
333
  #: ../admin/config/index.php:121
334
  msgid ""
335
+ "Slimstat will ignore links marked with one of these class names, <em>rel</"
336
  "em> attributes or whose <em>href</em> attribute contains one of these "
337
+ "strings. Please keep in mind that the class <code>noslimstat</code> is also "
338
+ "used to avoid tracking interactive links throughout the reports. If you "
339
+ "remove it from this list, some features might not work as expected."
340
  msgstr ""
341
 
342
+ #: ../admin/config/index.php:122
343
+ msgid "Downloads"
344
  msgstr ""
345
 
346
+ #: ../admin/config/index.php:122
347
+ msgid ""
348
+ "List all the file extensions that you want to be treated as Downloads. "
349
+ "Please note that links pointing to external resources (i.e. PDFs on an "
350
+ "external website) are considered Downloads and not Outbound Links (and "
351
+ "tracked as such), if their extension matches one of the ones listed here "
352
+ "below."
353
  msgstr ""
354
 
355
+ #: ../admin/config/index.php:123
356
+ msgid "Same-Domain Referrers"
357
+ msgstr ""
358
+
359
+ #: ../admin/config/index.php:123
360
  msgid ""
361
+ "By default, when the domain of the referrer for a given page view is the "
362
+ "same as the current site, that information is not tracked to save space in "
363
+ "the database. However, if you are running a multisite network with "
364
+ "subfolders, you might need to track same-domain referrers from one site to "
365
+ "another, as they are technically \"separate\" websites."
366
  msgstr ""
367
 
368
+ #: ../admin/config/index.php:125
369
+ msgid "Advanced Options"
370
  msgstr ""
371
 
372
  #: ../admin/config/index.php:126
373
+ msgid "Geolocation Precision"
374
  msgstr ""
375
 
376
  #: ../admin/config/index.php:126
377
+ msgid ""
378
+ "When Slimstat determines your visitors' Country of origin, it uses a third-"
379
+ "party data file <a href='https://dev.maxmind.com/geoip/geoip2/geolite2/' "
380
+ "target='_blank'>provided by MaxMind</a>. They offer two precision levels: "
381
+ "country and city. By default, Slimstat will install the smaller one "
382
+ "(country), and you can decide to use the other one, if you don't mind its 60 "
383
+ "Mb average size. After you change this option, please <strong>go to the "
384
+ "Maintenance tab</strong> and reload (uninstall/install) the MaxMind GeoLite "
385
+ "DB by clicking on the corresponding button."
386
+ msgstr ""
387
+
388
+ #: ../admin/config/index.php:126
389
+ msgid "Country"
390
+ msgstr ""
391
+
392
+ #: ../admin/config/index.php:126 ../admin/view/wp-slimstat-db.php:54
393
+ msgid "City"
394
  msgstr ""
395
 
396
  #: ../admin/config/index.php:127
397
+ msgid "Session Duration"
398
  msgstr ""
399
 
400
  #: ../admin/config/index.php:127
401
  msgid ""
402
+ "How many seconds should a human session last? Google Analytics sets it to "
403
+ "1800 seconds."
 
 
 
 
 
 
404
  msgstr ""
405
 
406
+ #: ../admin/config/index.php:127 ../admin/config/index.php:192
407
+ msgid "seconds"
408
  msgstr ""
409
 
410
+ #: ../admin/config/index.php:128
411
+ msgid "Extend Session"
412
  msgstr ""
413
 
414
  #: ../admin/config/index.php:128
415
+ msgid "Extend the duration of a session each time the user visits a new page."
416
+ msgstr ""
417
+
418
+ #: ../admin/config/index.php:129
419
  msgid "Enable CDN"
420
  msgstr ""
421
 
422
+ #: ../admin/config/index.php:129
423
  msgid ""
424
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
425
  "by serving our tracking code from their fast and reliable network (free "
426
  "service)."
427
  msgstr ""
428
 
429
+ #: ../admin/config/index.php:130
430
+ msgid "Relative Ajax"
431
  msgstr ""
432
 
433
+ #: ../admin/config/index.php:130
434
  msgid ""
435
+ "If you are experiencing issues related to the header field X-Requested-With "
436
+ "not being allowed by Access-Control-Allow-Headers in preflight response (or "
437
+ "similar), try enabling this option to make that <code>admin-ajax.php</code> "
438
+ "URL relative."
 
439
  msgstr ""
440
 
441
+ #: ../admin/config/index.php:132
442
  msgid "External Pages"
443
  msgstr ""
444
 
445
+ #: ../admin/config/index.php:133
446
  msgid ""
447
  "Add the following code to all the non-WP pages you want to track, right "
448
  "before the closing BODY tag. Please make sure to change the protocol of all "
449
  "the URLs to HTTPS, if you external site is served over a secure channel."
450
  msgstr ""
451
 
452
+ #: ../admin/config/index.php:143
453
  msgid "Allow Domains"
454
  msgstr ""
455
 
456
+ #: ../admin/config/index.php:143
457
  msgid ""
458
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
459
  "header is present on the requested resource, when using the external "
464
  "implications of allowing CORS requests."
465
  msgstr ""
466
 
467
+ #: ../admin/config/index.php:148
468
+ msgid "Filters"
 
 
 
 
 
469
  msgstr ""
470
 
471
+ #: ../admin/config/index.php:150
472
+ msgid "Profiling"
 
 
 
 
 
473
  msgstr ""
474
 
475
+ #: ../admin/config/index.php:151
476
+ msgid "Track WP Users"
477
  msgstr ""
478
 
479
  #: ../admin/config/index.php:151
480
+ msgid "Enable this option to track logged in users."
481
  msgstr ""
482
 
483
  #: ../admin/config/index.php:152
484
+ msgid "Ignore Spammers"
485
  msgstr ""
486
 
487
  #: ../admin/config/index.php:152
488
+ msgid ""
489
+ "Enable this option if you don't want to track visits from users identified "
490
+ "as spammers by third-party tools like Akismet. Pageviews generated by users "
491
+ "whose comments are later marked as spam, will also be removed from the "
492
+ "database."
493
  msgstr ""
494
 
495
  #: ../admin/config/index.php:153
496
+ msgid "Ignore Bots"
497
  msgstr ""
498
 
499
  #: ../admin/config/index.php:153
500
  msgid ""
501
+ "Turn on this feature if you want to have the accuracy level of server-side "
502
+ "tracking, but not the inconvenience of getting your database clogged with "
503
+ "pageviews generated by crawlers, spiders, search engine bots, etc. Please "
504
+ "note that in Client mode, bots are ignored regardless of this setting."
 
 
505
  msgstr ""
506
 
507
  #: ../admin/config/index.php:154
508
+ msgid "Ignore Prefetch Requests"
509
  msgstr ""
510
 
511
  #: ../admin/config/index.php:154
512
  msgid ""
513
+ "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
514
+ "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
515
+ "target='_blank'>Link Prefetching functionality</a>."
 
 
516
  msgstr ""
517
 
518
  #: ../admin/config/index.php:155
519
+ msgid "User Properties"
520
  msgstr ""
521
 
522
+ #: ../admin/config/index.php:156
523
+ msgid "Usernames"
524
+ msgstr ""
525
+
526
+ #: ../admin/config/index.php:156
527
  msgid ""
528
+ "List all the usernames you don't want to track. Please be aware that spaces "
529
+ "are <em>not</em> ignored and that usernames are case sensitive. Wildcards: "
530
+ "<code>*</code> matches 'any string, including the empty string', <code>!</"
531
+ "code> matches 'any character'. For example, <code>user*</code> will match "
532
+ "user12 and userfoo, <code>u*100</code> will match user100 and uber100, "
533
+ "<code>user!0</code> will match user10 and user90."
534
  msgstr ""
535
 
536
  #: ../admin/config/index.php:157
537
+ msgid "IP Addresses"
538
+ msgstr ""
539
+
540
+ #: ../admin/config/index.php:157
541
+ msgid ""
542
+ "List all the IP addresses you don't want to track. Each subnet <strong>must</"
543
+ "strong> be defined using the <a href='https://www.iplocation.net/subnet-"
544
+ "mask' target='_blank'>CIDR notation</a> (i.e. <em>192.168.0.0/24</em>). This "
545
+ "filter applies both to the public IP and the originating IP, if available. "
546
+ "Using the CIDR notation, you will use octets to determine the subnet, so for "
547
+ "example 54.0.0.0/8 means that the first number is represented by 8 bits, "
548
+ "hence 8 after the slash. Then the second number would be another 8 bits, so "
549
+ "you would write 54.12.0.0/16 (16 = 8 + 8), and you could do the same for the "
550
+ "third number, for example 54.12.34.0/24 (24 = 8 + 8 + 8)."
551
  msgstr ""
552
 
553
  #: ../admin/config/index.php:158
554
+ msgid "Countries"
555
  msgstr ""
556
 
557
  #: ../admin/config/index.php:158
558
  msgid ""
559
+ "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
560
+ "track."
 
 
561
  msgstr ""
562
 
563
  #: ../admin/config/index.php:159
564
+ msgid "User Agents"
565
  msgstr ""
566
 
567
  #: ../admin/config/index.php:159
568
  msgid ""
569
+ "Browsers (user agents) you don't want to track. You can specify the "
570
+ "browser's version adding a slash after the name (i.e. <em>Firefox/3.6</"
571
+ "em>). Wildcards: <code>*</code> matches 'any string, including the empty "
572
+ "string', <code>!</code> matches 'any character'. For example, <code>Chr*</"
573
+ "code> will match Chrome and Chromium, <code>IE/!.0</code> will match IE/7.0 "
574
+ "and IE/8.0. Strings are case-insensitive."
575
  msgstr ""
576
 
577
  #: ../admin/config/index.php:160
578
+ msgid "Operating Systems"
579
  msgstr ""
580
 
581
  #: ../admin/config/index.php:160
582
  msgid ""
583
+ "Operating system codes you don't want to track. Please refer to <a "
584
+ "href='https://slimstat.freshdesk.com/solution/articles/12000031504-what-are-"
585
+ "the-operating-system-codes-used-by-slimstat-' target='_blank'>this page</a> "
586
+ "in our knowledge base to learn more about what codes you can use. Usual "
587
+ "rules for using wildcards apply (see fields here above)."
 
588
  msgstr ""
589
 
590
  #: ../admin/config/index.php:161
591
+ msgid "Capabilities"
592
  msgstr ""
593
 
594
  #: ../admin/config/index.php:161
595
  msgid ""
596
+ "Users having at least one of the <a href='http://codex.wordpress.org/"
597
+ "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
598
+ "will not be tracked. Capabilities are case-insensitive."
599
  msgstr ""
600
 
601
+ #: ../admin/config/index.php:163
602
+ msgid "Page Properties"
603
+ msgstr ""
604
+
605
+ #: ../admin/config/index.php:164
606
+ msgid "Permalinks"
607
  msgstr ""
608
 
609
+ #: ../admin/config/index.php:164
610
  msgid ""
611
+ "List all the URLs on your website that you don't want to track. Don't "
612
+ "include the domain name: <em>/about, ?p=1</em>, etc. Wildcards: <code>*</"
613
+ "code> matches 'any string, including the empty string', <code>!</code> "
614
+ "matches 'any character'. For example, <code>/abou*</code> will match /about "
615
+ "and /abound, <code>/abo*t</code> will match /aboundant and /about, <code>/"
616
+ "abo!t</code> will match /about and /abort. Strings are case-insensitive."
617
  msgstr ""
618
 
619
+ #: ../admin/config/index.php:165
620
  msgid "Referring Sites"
621
  msgstr ""
622
 
623
+ #: ../admin/config/index.php:165
624
  msgid ""
625
  "Referring URLs that you don't want to track: <code>http://mysite.com*</"
626
  "code>, <code>*/ignore-me-please</code>, etc. Wildcards: <code>*</code> "
630
  msgstr ""
631
 
632
  #: ../admin/config/index.php:166
633
+ msgid "Content Types"
634
  msgstr ""
635
 
636
  #: ../admin/config/index.php:166
 
 
 
 
 
 
 
 
637
  msgid ""
638
+ "Slimstat categorizes pageviews by the associated WordPress content type: "
639
+ "post, page, attachment, tag, 404, taxonomy, author, archive, search, feed, "
640
+ "login and others. You can use this field to avoid tracking pages whose "
641
+ "content type matches the ones you set here below."
642
  msgstr ""
643
 
644
+ #: ../admin/config/index.php:171 ../admin/config/index.php:208
645
  msgid "Reports"
646
  msgstr ""
647
 
648
+ #: ../admin/config/index.php:173
649
+ msgid "Data Formats and Conversion"
650
  msgstr ""
651
 
652
+ #: ../admin/config/index.php:174
653
  msgid "Number Format"
654
  msgstr ""
655
 
656
+ #: ../admin/config/index.php:174
657
  msgid "Choose the number format you want to use for your reports."
658
  msgstr ""
659
 
660
+ #: ../admin/config/index.php:175
661
  msgid "Date Format"
662
  msgstr ""
663
 
664
+ #: ../admin/config/index.php:175
665
  msgid ""
666
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
667
  "Format</a> to use when displaying a pageview's date."
668
  msgstr ""
669
 
670
+ #: ../admin/config/index.php:176
671
  msgid "Time Format"
672
  msgstr ""
673
 
674
+ #: ../admin/config/index.php:176
675
  msgid ""
676
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
677
  "Format</a> to use when displaying a pageview's time."
678
  msgstr ""
679
 
680
+ #: ../admin/config/index.php:177
681
  msgid "Use Display Name"
682
  msgstr ""
683
 
684
+ #: ../admin/config/index.php:177
685
  msgid ""
686
  "By default, users are listed by their usernames. Use this option to "
687
  "visualize their display names instead."
688
  msgstr ""
689
 
690
+ #: ../admin/config/index.php:178
691
  msgid "Use Titles"
692
  msgstr ""
693
 
694
+ #: ../admin/config/index.php:178
695
  msgid ""
696
  "Slimstat converts your permalinks into post, page and category titles. "
697
  "Disable this feature if you need to see the URL in your reports."
698
  msgstr ""
699
 
700
+ #: ../admin/config/index.php:179
701
  msgid "Convert IP Addresses"
702
  msgstr ""
703
 
704
+ #: ../admin/config/index.php:179
705
  msgid "Display provider names instead of IP addresses."
706
  msgstr ""
707
 
708
+ #: ../admin/config/index.php:181
709
  msgid "Functionality"
710
  msgstr ""
711
 
712
+ #: ../admin/config/index.php:182
713
  msgid "Async Mode"
714
  msgstr ""
715
 
716
+ #: ../admin/config/index.php:182
717
  msgid ""
718
  "Activate this feature if your reports take a while to load. It breaks down "
719
  "the load on your server into multiple requests, thus avoiding memory issues "
720
  "and performance problems."
721
  msgstr ""
722
 
723
+ #: ../admin/config/index.php:183
724
+ msgid "Default Time Span"
725
  msgstr ""
726
 
727
+ #: ../admin/config/index.php:183
728
  msgid ""
729
+ "Determine what is the default time period for calculating all the data in "
730
+ "each report: current month or past given number of days. The number of days "
731
+ "is defined under Basic > Report Interval. You can always use the time filter "
732
+ "dropdown to customize this value even further."
733
  msgstr ""
734
 
735
+ #: ../admin/config/index.php:184
736
  msgid "Expand Details"
737
  msgstr ""
738
 
739
+ #: ../admin/config/index.php:184
740
  msgid "Expand each row's details by default, insted of on mousehover."
741
  msgstr ""
742
 
743
+ #: ../admin/config/index.php:185 ../admin/config/index.php:193
744
  msgid "Rows to Display"
745
  msgstr ""
746
 
747
+ #: ../admin/config/index.php:185
748
  msgid "Specify the number of items in each report."
749
  msgstr ""
750
 
751
+ #: ../admin/config/index.php:186 ../admin/view/wp-slimstat-db.php:127
752
  msgid "Max Results"
753
  msgstr ""
754
 
755
+ #: ../admin/config/index.php:186
756
  msgid ""
757
  "Decide how many records should be retrieved from the database in total. "
758
  "Depending on your server configuration, you may want to fine tune this value "
759
  "to avoid exceeding your PHP memory limit."
760
  msgstr ""
761
 
762
+ #: ../admin/config/index.php:187
763
  msgid "IP Lookup"
764
  msgstr ""
765
 
766
+ #: ../admin/config/index.php:187
767
+ msgid ""
768
+ "Customize the Geolocation service to be used in the reports. Default: "
769
+ "<code>http://www.infosniper.net/?ip_address=</code>"
770
  msgstr ""
771
 
772
+ #: ../admin/config/index.php:188
773
  msgid "Mozscape Access ID"
774
  msgstr ""
775
 
776
+ #: ../admin/config/index.php:188
777
  msgid ""
778
  "Get accurate rankings for your website through the free <a href=\"https://"
779
  "moz.com/community/join?redirect=/products/api/keys\" target=\"_blank"
781
  "started. Then enter your personal identification code here."
782
  msgstr ""
783
 
784
+ #: ../admin/config/index.php:189
785
  msgid "Mozscape Secret Key"
786
  msgstr ""
787
 
788
+ #: ../admin/config/index.php:189
789
  msgid ""
790
  "Do not share your secret key with anyone or they will be able to make API "
791
  "requests on your account!"
792
  msgstr ""
793
 
794
+ #: ../admin/config/index.php:191
795
+ msgid "Access Log and World Map"
796
+ msgstr ""
797
+
798
  #: ../admin/config/index.php:192
799
+ msgid "Auto Refresh"
800
  msgstr ""
801
 
802
+ #: ../admin/config/index.php:192
803
+ msgid ""
804
+ "Enable the Live View, which refreshes the Access Log every X seconds. Enter "
805
+ "<strong>0</strong> (number zero) to deactivate this feature."
806
  msgstr ""
807
 
808
  #: ../admin/config/index.php:193
809
+ msgid "Specify the number of items in the Access Log."
810
+ msgstr ""
811
+
812
+ #: ../admin/config/index.php:194
813
+ msgid "Map Data Points"
814
  msgstr ""
815
 
816
  #: ../admin/config/index.php:194
817
+ msgid ""
818
+ "Customize the maximum number of dots displayed on the world map. Please note "
819
+ "that large numbers might increase the amount of time needed to render the "
820
+ "map."
821
+ msgstr ""
822
+
823
+ #: ../admin/config/index.php:196
824
+ msgid "Miscellaneous"
825
  msgstr ""
826
 
827
  #: ../admin/config/index.php:197
850
  msgstr ""
851
 
852
  #: ../admin/config/index.php:199
853
+ msgid "Comparison Chart"
854
  msgstr ""
855
 
856
  #: ../admin/config/index.php:199
857
  msgid ""
858
+ "Disable this option if you find the four line charts confusing, and prefer "
859
+ "seeing only the selected time range."
860
  msgstr ""
861
 
862
  #: ../admin/config/index.php:200
863
+ msgid "Show User Agent"
864
  msgstr ""
865
 
866
  #: ../admin/config/index.php:200
867
  msgid ""
868
+ "Choose if you want to see the browser name or a complete user agent string "
869
+ "when hovering over each browser icon."
870
+ msgstr ""
871
+
872
+ #: ../admin/config/index.php:201
873
+ msgid "Enable SOV"
874
+ msgstr ""
875
+
876
+ #: ../admin/config/index.php:201
877
+ msgid ""
878
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
879
  "the subject, object, and verb of a sentence appear in that order, like in "
880
  "Japanese."
881
  msgstr ""
882
 
883
+ #: ../admin/config/index.php:206
884
  msgid "Access Control"
885
  msgstr ""
886
 
887
+ #: ../admin/config/index.php:209
888
  msgid "Restrict Authors"
889
  msgstr ""
890
 
891
+ #: ../admin/config/index.php:209
892
  msgid ""
893
  "Enable this option if you want your authors to only see stats related to "
894
  "their own content."
895
  msgstr ""
896
 
897
+ #: ../admin/config/index.php:210 ../admin/config/index.php:214
898
+ #: ../admin/config/index.php:218
899
  msgid "Capability"
900
  msgstr ""
901
 
902
+ #: ../admin/config/index.php:210
903
  msgid ""
904
  "Specify the minimum <a href='http://codex.wordpress.org/"
905
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
909
  "In this case, the list has precedence over the capability."
910
  msgstr ""
911
 
912
+ #: ../admin/config/index.php:211 ../admin/config/index.php:215
913
+ #: ../admin/config/index.php:219
914
  msgid "Whitelist"
915
  msgstr ""
916
 
917
+ #: ../admin/config/index.php:211
918
  msgid ""
919
  "List all the users who should have access to the reports. Administrators are "
920
  "implicitly allowed, so you don't need to list them in here. Usernames are "
921
  "case sensitive."
922
  msgstr ""
923
 
924
+ #: ../admin/config/index.php:213
925
+ msgid "Customizer"
926
+ msgstr ""
927
+
928
+ #: ../admin/config/index.php:214
929
+ msgid ""
930
+ "Specify the minimum <a href='http://codex.wordpress.org/"
931
+ "Roles_and_Capabilities' target='_new'>capability</a> needed to be able to "
932
+ "customize the reports layout (default: <code>activate_plugins</code>). If "
933
+ "this field is empty, your users will be permitted to use this features."
934
+ msgstr ""
935
+
936
+ #: ../admin/config/index.php:215
937
+ msgid ""
938
+ "List all the users who should be allowed to customize their report layout. "
939
+ "Administrators are implicitly allowed, so you don't need to list them in "
940
+ "here. Usernames are case sensitive."
941
+ msgstr ""
942
+
943
+ #: ../admin/config/index.php:217 ../admin/config/index.php:245
944
+ #: ../admin/wp-slimstat-admin.php:634 ../admin/wp-slimstat-admin.php:680
945
+ #: ../admin/wp-slimstat-admin.php:683
946
  msgid "Settings"
947
  msgstr ""
948
 
949
+ #: ../admin/config/index.php:218
950
  msgid ""
951
  "Specify the minimum <a href='http://codex.wordpress.org/"
952
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
954
  "can be used to override this option for specific users."
955
  msgstr ""
956
 
957
+ #: ../admin/config/index.php:219
958
  msgid ""
959
  "List all the users who can edit these options. Please be advised that admins "
960
  "<strong>are not</strong> implicitly allowed, so do not forget to include "
961
  "yourself! Usernames are case sensitive."
962
  msgstr ""
963
 
964
+ #: ../admin/config/index.php:221
965
+ msgid "Rest API"
966
+ msgstr ""
967
+
968
+ #: ../admin/config/index.php:222
969
+ msgid "Tokens"
970
+ msgstr ""
971
+
972
+ #: ../admin/config/index.php:222
973
+ msgid ""
974
+ "In order to send requests to <a href='https://slimstat.freshdesk.com/support/"
975
+ "solutions/articles/12000033661-slimstat-rest-api' target='_blank'>the "
976
+ "Slimstat REST API</a>, you will need to pass a valid token to the endpoint "
977
+ "(param ?token=XXX). Using the field here below, you can define as many "
978
+ "tokens as you like, to distribute them to your API users. Please note: treat "
979
+ "these tokens as passwords, as they will grant read access to your reports to "
980
+ "anyone who knows them. Use a service like <a href='https://randomkeygen.com/"
981
+ "#ci_key' target='_blank'>RandomKeyGen.com</a> to generate unique secure "
982
+ "tokens."
983
+ msgstr ""
984
+
985
+ #: ../admin/config/index.php:227
986
  msgid "Maintenance"
987
  msgstr ""
988
 
989
+ #: ../admin/config/index.php:232 ../admin/view/addons.php:35
990
+ #: ../admin/wp-slimstat-admin.php:64
991
  msgid "Add-ons"
992
  msgstr ""
993
 
994
+ #: ../admin/config/index.php:246 ../admin/view/index.php:6
995
+ msgid ""
996
+ "<strong>AdBlock browser extension detected</strong> - If you see this "
997
+ "notice, it means that your browser is not loading our stylesheet and/or "
998
+ "Javascript files correctly. This could be caused by an overzealous ad "
999
+ "blocker feature enabled in your browser (AdBlock Plus and friends). <a href="
1000
+ "\"https://slimstat.freshdesk.com/support/solutions/articles/12000000414-the-"
1001
+ "reports-are-not-being-rendered-correctly-or-buttons-do-not-work\" target="
1002
+ "\"_blank\">Please make sure to add an exception</a> to your configuration "
1003
+ "and allow the browser to load these assets."
1004
+ msgstr ""
1005
+
1006
  #: ../admin/config/maintenance.php:16
1007
  msgid ""
1008
  "Congratulations! Slimstat Analytics is now optimized for <a href=\"http://"
1017
  msgid "records deleted from your database."
1018
  msgstr ""
1019
 
1020
+ #: ../admin/config/maintenance.php:50 ../admin/config/maintenance.php:57
1021
  msgid "The geolocation database has been uninstalled from your server."
1022
  msgstr ""
1023
 
1024
+ #: ../admin/config/maintenance.php:60
1025
+ msgid ""
1026
+ "The geolocation database could not be removed from your server. Please check "
1027
+ "your folder's permissions and try again."
1028
+ msgstr ""
1029
+
1030
+ #: ../admin/config/maintenance.php:72
1031
  msgid "The geolocation database has been installed on your server."
1032
  msgstr ""
1033
 
1034
+ #: ../admin/config/maintenance.php:80
1035
+ msgid "The Browscap data file has been uninstalled from your server."
1036
+ msgstr ""
1037
+
1038
+ #: ../admin/config/maintenance.php:83
1039
+ msgid ""
1040
+ "There was an error deleting the Browscap data folder on your server. Please "
1041
+ "check your permissions."
1042
+ msgstr ""
1043
+
1044
+ #: ../admin/config/maintenance.php:102
1045
+ msgid "Your new Slimstat settings have been imported and installed."
1046
  msgstr ""
1047
 
1048
+ #: ../admin/config/maintenance.php:105
1049
+ msgid ""
1050
+ "There was an error decoding your settings string. Please verify that it is a "
1051
+ "valid serialized string."
1052
+ msgstr ""
1053
+
1054
+ #: ../admin/config/maintenance.php:124
1055
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
1056
  msgstr ""
1057
 
1058
+ #: ../admin/config/maintenance.php:130
1059
  msgid "All the archived records were successfully deleted."
1060
  msgstr ""
1061
 
1062
+ #: ../admin/config/maintenance.php:138
1063
  msgid "All the records were successfully deleted."
1064
  msgstr ""
1065
 
1066
+ #: ../admin/config/maintenance.php:164
1067
  msgid "Troubleshooting"
1068
  msgstr ""
1069
 
1070
+ #: ../admin/config/maintenance.php:167
1071
+ msgid "Tracker Error"
1072
  msgstr ""
1073
 
1074
+ #: ../admin/config/maintenance.php:169
1075
+ msgid "Reset this error"
1076
  msgstr ""
1077
 
1078
+ #: ../admin/config/maintenance.php:169 ../admin/config/maintenance.php:176
1079
  msgid "So far so good."
1080
  msgstr ""
1081
 
1082
+ #: ../admin/config/maintenance.php:170
1083
  msgid ""
1084
  "The information here above is useful to troubleshoot issues with the "
1085
+ "tracker. <strong>Errors</strong> are returned when the tracker could not "
1086
+ "record a page view for some reason, and are indicative of some kind of "
1087
+ "malfunction. Please include the message here above when sending a <a href="
1088
+ "\"http://support.wp-slimstat.com\" target=\"_blank\">support request</a>."
 
 
1089
  msgstr ""
1090
 
1091
+ #: ../admin/config/maintenance.php:174
1092
+ msgid "Tracker Notice"
1093
  msgstr ""
1094
 
1095
+ #: ../admin/config/maintenance.php:176
1096
+ msgid "Reset this notice"
 
 
1097
  msgstr ""
1098
 
1099
+ #: ../admin/config/maintenance.php:177
1100
+ msgid ""
1101
+ "The message here above will indicate if a page view was not recorded because "
1102
+ "it matched at least one of the conditions you configured in your settings "
1103
+ "(filters, blackslists, etc)."
1104
  msgstr ""
1105
 
1106
+ #: ../admin/config/maintenance.php:183
1107
+ msgid "Enable SQL Debug"
1108
  msgstr ""
1109
 
1110
+ #: ../admin/config/maintenance.php:186
1111
  msgid ""
1112
+ "Display the SQL code used to retrieve the data from the database. Useful to "
1113
+ "troubleshoot issues with data consistency or missing pageviews."
1114
  msgstr ""
1115
 
1116
+ #: ../admin/config/maintenance.php:190
1117
+ msgid "Disable SQL Debug"
1118
  msgstr ""
1119
 
1120
+ #: ../admin/config/maintenance.php:193
1121
+ msgid "Deactivate the SQL output on top of each report."
 
 
 
1122
  msgstr ""
1123
 
1124
+ #: ../admin/config/maintenance.php:198
1125
  msgid "Data Maintenance"
1126
  msgstr ""
1127
 
1128
+ #: ../admin/config/maintenance.php:201
1129
  msgid "Delete pageviews where"
1130
  msgstr ""
1131
 
1132
+ #: ../admin/config/maintenance.php:215 ../admin/view/wp-slimstat-db.php:76
1133
  msgid "equals"
1134
  msgstr ""
1135
 
1136
+ #: ../admin/config/maintenance.php:216 ../admin/view/wp-slimstat-db.php:77
1137
  msgid "is not equal to"
1138
  msgstr ""
1139
 
1140
+ #: ../admin/config/maintenance.php:217 ../admin/view/wp-slimstat-db.php:78
1141
  msgid "contains"
1142
  msgstr ""
1143
 
1144
+ #: ../admin/config/maintenance.php:218 ../admin/view/wp-slimstat-db.php:79
1145
  msgid "is included in"
1146
  msgstr ""
1147
 
1148
+ #: ../admin/config/maintenance.php:219 ../admin/view/wp-slimstat-db.php:80
1149
  msgid "does not contain"
1150
  msgstr ""
1151
 
1152
+ #: ../admin/config/maintenance.php:220 ../admin/view/wp-slimstat-db.php:81
1153
  msgid "starts with"
1154
  msgstr ""
1155
 
1156
+ #: ../admin/config/maintenance.php:221 ../admin/view/wp-slimstat-db.php:82
1157
  msgid "ends with"
1158
  msgstr ""
1159
 
1160
+ #: ../admin/config/maintenance.php:222 ../admin/view/wp-slimstat-db.php:83
1161
  msgid "sounds like"
1162
  msgstr ""
1163
 
1164
+ #: ../admin/config/maintenance.php:223 ../admin/view/wp-slimstat-db.php:84
1165
  msgid "is greater than"
1166
  msgstr ""
1167
 
1168
+ #: ../admin/config/maintenance.php:224 ../admin/view/wp-slimstat-db.php:85
1169
  msgid "is less than"
1170
  msgstr ""
1171
 
1172
+ #: ../admin/config/maintenance.php:225 ../admin/view/wp-slimstat-db.php:87
1173
  msgid "matches"
1174
  msgstr ""
1175
 
1176
+ #: ../admin/config/maintenance.php:226 ../admin/view/wp-slimstat-db.php:88
1177
  msgid "does not match"
1178
  msgstr ""
1179
 
1180
+ #: ../admin/config/maintenance.php:227 ../admin/view/wp-slimstat-db.php:89
1181
  msgid "is empty"
1182
  msgstr ""
1183
 
1184
+ #: ../admin/config/maintenance.php:228 ../admin/view/wp-slimstat-db.php:90
1185
  msgid "is not empty"
1186
  msgstr ""
1187
 
1188
+ #: ../admin/config/maintenance.php:231 ../admin/view/index.php:31
1189
+ #: ../admin/view/index.php:98
1190
  msgid "Apply"
1191
  msgstr ""
1192
 
1193
+ #: ../admin/config/maintenance.php:232
1194
  msgid ""
1195
  "Are you sure you want to PERMANENTLY delete these records from your database?"
1196
  msgstr ""
1197
 
1198
+ #: ../admin/config/maintenance.php:239
1199
  msgid ""
1200
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1201
  "database?"
1202
  msgstr ""
1203
 
1204
+ #: ../admin/config/maintenance.php:239
1205
  msgid "Delete All Records"
1206
  msgstr ""
1207
 
1208
+ #: ../admin/config/maintenance.php:242
1209
  msgid ""
1210
  "Erase all the information collected so far by Slimstat, but not the archived "
1211
  "records (<code>wp_slim_stats_archive</code>). This operation <strong>does "
1213
  "your records from the archive table."
1214
  msgstr ""
1215
 
1216
+ #: ../admin/config/maintenance.php:248
1217
  msgid ""
1218
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1219
  "archive?"
1220
  msgstr ""
1221
 
1222
+ #: ../admin/config/maintenance.php:248
1223
  msgid "Delete Archive"
1224
  msgstr ""
1225
 
1226
+ #: ../admin/config/maintenance.php:251
1227
  msgid "Erase all the archived records. This operation cannot be undone."
1228
  msgstr ""
1229
 
1230
+ #: ../admin/config/maintenance.php:257
1231
  msgid "Improve Performance"
1232
  msgstr ""
1233
 
1234
+ #: ../admin/config/maintenance.php:261
1235
  msgid ""
1236
  "Please note that you will need about 30% more DB space to store the extra "
1237
  "information required."
1238
  msgstr ""
1239
 
1240
+ #: ../admin/config/maintenance.php:265
1241
  msgid "Save DB Space"
1242
  msgstr ""
1243
 
1244
+ #: ../admin/config/maintenance.php:268
1245
  msgid ""
1246
  "Please note that by removing table indexes, Slimstat's performance will be "
1247
  "affected."
1248
  msgstr ""
1249
 
1250
+ #: ../admin/config/maintenance.php:273
1251
+ msgid "External Data Files"
1252
  msgstr ""
1253
 
1254
+ #: ../admin/config/maintenance.php:279
1255
  msgid ""
1256
  "Do you want to download and install the geolocation database from MaxMind's "
1257
  "server?"
1258
  msgstr ""
1259
 
1260
+ #: ../admin/config/maintenance.php:279
1261
  msgid "Install GeoLite DB"
1262
  msgstr ""
1263
 
1264
+ #: ../admin/config/maintenance.php:282
1265
  msgid "Do you want to uninstall the geolocation database?"
1266
  msgstr ""
1267
 
1268
+ #: ../admin/config/maintenance.php:282
1269
  msgid "Uninstall GeoLite DB"
1270
  msgstr ""
1271
 
1272
+ #: ../admin/config/maintenance.php:286
1273
  msgid ""
1274
+ "The <a href='https://dev.maxmind.com/geoip/geoip2/geolite2/' "
1275
+ "target='_blank'>MaxMind GeoLite2 library</a>, which Slimstat uses to "
1276
+ "geolocate visitors, is released under the Creative Commons BY-SA 3.0 "
1277
+ "license, and cannot be directly bundled with the plugin because of license "
1278
+ "incompatibility issues. We are mandated to have the user take an affirmative "
1279
+ "action in order to enable this functionality. If you're experiencing issues, "
1280
+ "please <a href='https://slimstat.freshdesk.com/solution/articles/12000039798-"
1281
+ "how-to-manually-install-the-maxmind-geolocation-data-file-' "
1282
+ "target='_blank'>take a look at our knowledge base</a> to learn how to "
1283
+ "install this file manually."
1284
+ msgstr ""
1285
+
1286
+ #: ../admin/config/maintenance.php:293
1287
+ msgid ""
1288
+ "Do you want to download and install the Browscap data file from our server?"
1289
+ msgstr ""
1290
+
1291
+ #: ../admin/config/maintenance.php:293
1292
+ msgid "Install Browscap"
1293
+ msgstr ""
1294
+
1295
+ #: ../admin/config/maintenance.php:296
1296
+ msgid "Do you want to uninstall the Browscap data file?"
1297
+ msgstr ""
1298
+
1299
+ #: ../admin/config/maintenance.php:296
1300
+ msgid "Uninstall Browscap"
1301
  msgstr ""
1302
 
1303
+ #: ../admin/config/maintenance.php:300
1304
+ msgid ""
1305
+ "We are contributing to the <a href='http://browscap.org/' "
1306
+ "target='_blank'>Browscap Capabilities Project</a>, which we use to decode "
1307
+ "your visitors' user agent string into browser name and operating system. We "
1308
+ "use an optimized version of their data structure, for improved performance. "
1309
+ "After you enable this feature, Slimstat will use this data file instead of "
1310
+ "the built-in heuristic function, to accurately determine your visitors' "
1311
+ "browser information. It will also automatically check for updates and "
1312
+ "download the latest version for you. Please feel free to <a href='http://s3."
1313
+ "amazonaws.com/browscap/terms-conditions.html' target='_blank'>review our "
1314
+ "terms and conditions</a>, and do not hesitate to <a href='http://support.wp-"
1315
+ "slimstat.com' target='_blank'>contact our support team</a> if you have any "
1316
+ "questions."
1317
+ msgstr ""
1318
+
1319
+ #: ../admin/config/maintenance.php:304
1320
  msgid "Configuration String"
1321
  msgstr ""
1322
 
1323
+ #: ../admin/config/maintenance.php:308
1324
  msgid ""
1325
  "Here below you can find the current configuration string for Slimstat. You "
1326
  "can update your settings by pasting a new string inside the text area and "
1327
  "clicking the Import button."
1328
  msgstr ""
1329
 
1330
+ #: ../admin/config/maintenance.php:313
1331
  msgid "Import"
1332
  msgstr ""
1333
 
1334
+ #: ../admin/config/maintenance.php:314
1335
  msgid "Are you sure you want to OVERWRITE your current settings?"
1336
  msgstr ""
1337
 
1338
+ #: ../admin/config/maintenance.php:319
1339
  msgid "Database Information"
1340
  msgstr ""
1341
 
1342
+ #: ../admin/config/maintenance.php:322
1343
  msgid "Engine"
1344
  msgstr ""
1345
 
1346
+ #: ../admin/config/maintenance.php:326
1347
  msgid "switch to InnoDB"
1348
  msgstr ""
1349
 
1350
+ #: ../admin/config/maintenance.php:337
1351
  msgid "records"
1352
  msgstr ""
1353
 
1354
+ #: ../admin/config/maintenance.php:344
1355
  msgid "Old Tables"
1356
  msgstr ""
1357
 
1358
+ #: ../admin/config/maintenance.php:345
1359
  #, php-format
1360
  msgid ""
1361
  "It looks like your database was upgraded from a version prior to 4.0. Our "
1368
  "%s. When in doubt, do not hesitate to contact us for help."
1369
  msgstr ""
1370
 
1371
+ #: ../admin/update-checker/Puc/v4p4/Plugin/UpdateChecker.php:395
 
 
 
 
1372
  msgid "Check for updates"
1373
  msgstr ""
1374
 
1375
+ #: ../admin/update-checker/Puc/v4p4/Plugin/UpdateChecker.php:432
1376
+ msgid "View details"
1377
  msgstr ""
1378
 
1379
+ #: ../admin/update-checker/Puc/v4p4/Plugin/UpdateChecker.php:455
1380
+ #, php-format
1381
+ msgid "More information about %s"
1382
  msgstr ""
1383
 
1384
+ #: ../admin/update-checker/Puc/v4p4/Plugin/UpdateChecker.php:558
1385
  #, php-format
1386
  msgid "Unknown update checker status \"%s\""
1387
  msgstr ""
1388
 
1389
+ #: ../admin/update-checker/Puc/v4p4/Vcs/PluginUpdateChecker.php:98
1390
+ msgid "There is no changelog available."
1391
+ msgstr ""
1392
+
1393
  #: ../admin/view/addons.php:19
1394
  #, php-format
1395
  msgid ""
1416
  #: ../admin/view/addons.php:40
1417
  #, php-format
1418
  msgid ""
1419
+ "This list is refreshed once daily: <a href=\"%s&amp;force_refresh=true\" "
1420
+ "class=\"noslimstat\">click here</a> to clear the cache."
1421
  msgstr ""
1422
 
1423
  #: ../admin/view/addons.php:54
1444
  msgid "Installed and Active"
1445
  msgstr ""
1446
 
1447
+ #: ../admin/view/index.php:10
1448
+ msgid "Dimension"
1449
  msgstr ""
1450
 
1451
+ #: ../admin/view/index.php:35
1452
  msgid "Load"
1453
  msgstr ""
1454
 
1455
+ #: ../admin/view/index.php:61 ../admin/view/wp-slimstat-db.php:888
1456
  msgid "Today"
1457
  msgstr ""
1458
 
1459
+ #: ../admin/view/index.php:62 ../admin/view/wp-slimstat-db.php:891
1460
  msgid "Yesterday"
1461
  msgstr ""
1462
 
1463
+ #: ../admin/view/index.php:63
1464
  msgid "Last 7 Days"
1465
  msgstr ""
1466
 
1467
+ #: ../admin/view/index.php:64
1468
+ msgid "Last 30 Days"
1469
  msgstr ""
1470
 
1471
+ #: ../admin/view/index.php:65
1472
  msgid "Last 90 Days"
1473
  msgstr ""
1474
 
1475
+ #: ../admin/view/index.php:66
1476
+ msgid "Last 365 Days"
1477
  msgstr ""
1478
 
1479
+ #: ../admin/view/index.php:69
1480
  msgid "Date Range"
1481
  msgstr ""
1482
 
1483
+ #: ../admin/view/index.php:72 ../admin/view/wp-slimstat-db.php:98
1484
+ msgid "Hour"
1485
+ msgstr ""
1486
+
1487
+ #: ../admin/view/index.php:75 ../admin/view/wp-slimstat-db.php:99
1488
  msgid "Day"
1489
  msgstr ""
1490
 
1491
+ #: ../admin/view/index.php:79 ../admin/view/wp-slimstat-db.php:100
1492
  msgid "Month"
1493
  msgstr ""
1494
 
1495
+ #: ../admin/view/index.php:87 ../admin/view/wp-slimstat-db.php:101
1496
  msgid "Year"
1497
  msgstr ""
1498
 
1499
+ #: ../admin/view/index.php:93
1500
+ msgid "&plusmn; days"
1501
  msgstr ""
1502
 
1503
+ #: ../admin/view/index.php:93
1504
+ msgid ""
1505
+ "To define an interval, enter the number of days (negative to go back in "
1506
+ "time)."
1507
  msgstr ""
1508
 
1509
+ #: ../admin/view/index.php:96
1510
+ msgid "&plusmn; hours"
1511
  msgstr ""
1512
 
1513
+ #: ../admin/view/index.php:107
1514
+ msgid "Reset Filters"
1515
  msgstr ""
1516
 
1517
+ #: ../admin/view/index.php:127
1518
+ #, php-format
1519
+ msgid ""
1520
+ "<a href='%s' class='noslimstat'>Install MaxMind's GeoLite DB</a> to "
1521
+ "determine your visitors' country of origin."
1522
  msgstr ""
1523
 
1524
+ #: ../admin/view/index.php:131
1525
  #, php-format
1526
  msgid ""
1527
+ "Install the Browscap <a href='%s' class='noslimstat'>User Agent Database</a> "
1528
+ "to accurately determine your visitors' browser and operating system."
1529
  msgstr ""
1530
 
1531
+ #: ../admin/view/index.php:136
1532
  #, php-format
1533
  msgid ""
1534
+ "A caching plugin might be enabled on your website. Please <a href='%s' "
1535
+ "target='_blank' class='noslimstat'>make sure to configure</a> Slimstat "
1536
+ "Analytics accordingly, to get accurate information."
1537
  msgstr ""
1538
 
1539
+ #: ../admin/view/layout.php:56
1540
  msgid "Customize and organize your reports"
1541
  msgstr ""
1542
 
1543
+ #: ../admin/view/layout.php:58
1544
  msgid ""
1545
  "Drag and drop report placeholders from one container to another, to "
1546
  "customize the information you want to see right away when you open Slimstat. "
1547
  "Place two or more charts on the same view, clone reports or move them to the "
1548
  "Inactive Reports container for improved performance. It is your website, and "
1549
  "you know how metrics should be combined to get a clear picture of the "
1550
+ "traffic it generates."
1551
+ msgstr ""
1552
+
1553
+ #: ../admin/view/layout.php:61
1554
+ msgid ""
1555
+ "By using the network-wide customizer, all your users will be seeing the same "
1556
+ "layout and will not be able to further customize it."
1557
  msgstr ""
1558
 
1559
  #: ../admin/view/layout.php:64
1560
+ msgid ""
1561
+ "<strong>Note</strong>: if a placeholder is greyed out, it means that the "
1562
+ "corresponding report is currently hidden (Screen Options tab)."
1563
+ msgstr ""
1564
+
1565
+ #: ../admin/view/layout.php:69 ../admin/view/wp-slimstat-reports.php:1780
1566
+ msgid "Reset All"
1567
+ msgstr ""
1568
+
1569
+ #: ../admin/view/layout.php:76
1570
+ msgid "Move to Inactive"
1571
+ msgstr ""
1572
+
1573
+ #: ../admin/view/layout.php:90
1574
  msgid "Clone"
1575
  msgstr ""
1576
 
1577
+ #: ../admin/view/layout.php:94
1578
  msgid "Delete"
1579
  msgstr ""
1580
 
1594
  msgid "Syndication Reader"
1595
  msgstr ""
1596
 
1597
+ #: ../admin/view/right-now.php:71 ../admin/view/wp-slimstat-reports.php:1030
1598
+ #: ../admin/view/wp-slimstat-reports.php:1238
1599
+ #: ../admin/view/wp-slimstat-reports.php:1388
1600
+ #: ../admin/view/wp-slimstat-reports.php:1433
1601
  msgid "No data to display"
1602
  msgstr ""
1603
 
1604
+ #: ../admin/view/right-now.php:112
1605
  msgid "Date and Time"
1606
  msgstr ""
1607
 
1608
+ #: ../admin/view/right-now.php:123 ../admin/view/wp-slimstat-reports.php:1082
1609
+ #: ../admin/view/wp-slimstat-reports.php:1636 ../wp-slimstat.php:1453
 
1610
  msgid "c-"
1611
+ msgstr ""
1612
 
1613
+ #: ../admin/view/right-now.php:181 ../admin/view/wp-slimstat-db.php:60
1614
+ #: ../admin/wp-slimstat-admin.php:1139 ../admin/wp-slimstat-admin.php:1179
1615
  msgid "Originating IP"
1616
  msgstr ""
1617
 
1618
+ #: ../admin/view/right-now.php:222 ../admin/view/wp-slimstat-reports.php:1189
1619
+ #: ../admin/view/wp-slimstat-reports.php:1194
1620
+ #: ../admin/view/wp-slimstat-reports.php:1199
1621
+ #: ../admin/view/wp-slimstat-reports.php:1451
1622
  msgid "Open this URL in a new window"
1623
  msgstr ""
1624
 
1625
+ #: ../admin/view/right-now.php:234
1626
  msgid "Local search results page"
1627
  msgstr ""
1628
 
1629
+ #: ../admin/view/right-now.php:243 ../admin/view/wp-slimstat-db.php:40
1630
+ #: ../admin/view/wp-slimstat-reports.php:209
1631
+ #: ../admin/view/wp-slimstat-reports.php:219
1632
+ #: ../admin/wp-slimstat-admin.php:1142 ../admin/wp-slimstat-admin.php:1158
1633
  msgid "Search Terms"
1634
  msgstr ""
1635
 
1636
+ #: ../admin/view/right-now.php:255
1637
  msgid "Server Latency and Page Speed in milliseconds"
1638
  msgstr ""
1639
 
1640
+ #: ../admin/view/right-now.php:255
1641
  msgid "SL"
1642
  msgstr ""
1643
 
1644
+ #: ../admin/view/right-now.php:255
1645
  msgid "PS"
1646
  msgstr ""
1647
 
1648
+ #: ../admin/view/right-now.php:262
1649
  msgid "Time spent on this page"
1650
  msgstr ""
1651
 
1652
+ #: ../admin/view/right-now.php:278
1653
+ msgid "Invalid Referrer"
1654
+ msgstr ""
1655
+
1656
+ #: ../admin/view/right-now.php:279
1657
  msgid "Open this referrer in a new window"
1658
  msgstr ""
1659
 
1660
+ #: ../admin/view/right-now.php:280
1661
  msgid "Content Type"
1662
  msgstr ""
1663
 
1664
+ #: ../admin/view/right-now.php:287
1665
  msgid "Open this outbound link in a new window"
1666
  msgstr ""
1667
 
1668
+ #: ../admin/view/right-now.php:295
1669
+ msgid "Delete this entry from the database"
1670
  msgstr ""
1671
 
1672
+ #: ../admin/view/right-now.php:307
1673
  msgid "User Logged In"
1674
  msgstr ""
1675
 
1676
+ #: ../admin/view/right-now.php:317
1677
  msgid "User Logged Out"
1678
  msgstr ""
1679
 
1680
+ #: ../admin/view/wp-slimstat-db.php:37 ../admin/wp-slimstat-admin.php:1155
1681
  msgid "Browser"
1682
  msgstr ""
1683
 
1684
+ #: ../admin/view/wp-slimstat-db.php:38 ../admin/wp-slimstat-admin.php:1156
1685
  msgid "Country Code"
1686
  msgstr ""
1687
 
1688
+ #: ../admin/view/wp-slimstat-db.php:39
1689
  msgid "IP Address"
1690
  msgstr ""
1691
 
1692
+ #: ../admin/view/wp-slimstat-db.php:41 ../admin/wp-slimstat-admin.php:1159
1693
  msgid "Language Code"
1694
  msgstr ""
1695
 
1696
+ #: ../admin/view/wp-slimstat-db.php:42 ../admin/view/wp-slimstat-db.php:110
1697
+ #: ../admin/wp-slimstat-admin.php:1160
1698
  msgid "Operating System"
1699
  msgstr ""
1700
 
1701
+ #: ../admin/view/wp-slimstat-db.php:43 ../admin/view/wp-slimstat-db.php:111
1702
+ #: ../admin/wp-slimstat-admin.php:1161
1703
  msgid "Permalink"
1704
  msgstr ""
1705
 
1706
+ #: ../admin/view/wp-slimstat-db.php:44 ../admin/view/wp-slimstat-db.php:112
1707
+ #: ../admin/wp-slimstat-admin.php:1162
1708
  msgid "Referer"
1709
  msgstr ""
1710
 
1711
+ #: ../admin/view/wp-slimstat-db.php:45
1712
  msgid "Visitor's Username"
1713
  msgstr ""
1714
 
1715
+ #: ../admin/view/wp-slimstat-db.php:46 ../admin/wp-slimstat-admin.php:1145
1716
  msgid "Outbound Link"
1717
  msgstr ""
1718
 
1719
+ #: ../admin/view/wp-slimstat-db.php:47
1720
  msgid "Page Speed"
1721
  msgstr ""
1722
 
1723
+ #: ../admin/view/wp-slimstat-db.php:49
1724
  msgid "-- Advanced filters --"
1725
  msgstr ""
1726
 
1727
+ #: ../admin/view/wp-slimstat-db.php:50
1728
+ #: ../admin/view/wp-slimstat-reports.php:339
1729
  msgid "Browser Capabilities"
1730
  msgstr ""
1731
 
1732
+ #: ../admin/view/wp-slimstat-db.php:51 ../admin/wp-slimstat-admin.php:1174
1733
  msgid "Browser Version"
1734
  msgstr ""
1735
 
1736
+ #: ../admin/view/wp-slimstat-db.php:52 ../admin/wp-slimstat-admin.php:1175
1737
  msgid "Browser Type"
1738
  msgstr ""
1739
 
1740
+ #: ../admin/view/wp-slimstat-db.php:53 ../admin/wp-slimstat-admin.php:1144
1741
  msgid "User Agent"
1742
  msgstr ""
1743
 
1744
+ #: ../admin/view/wp-slimstat-db.php:55
1745
+ #: ../admin/view/wp-slimstat-reports.php:1406
1746
+ msgid "Coordinates"
1747
+ msgstr ""
1748
+
1749
  #: ../admin/view/wp-slimstat-db.php:56
1750
  msgid "Annotations"
1751
  msgstr ""
1754
  msgid "Server Latency"
1755
  msgstr ""
1756
 
1757
+ #: ../admin/view/wp-slimstat-db.php:58 ../admin/wp-slimstat-admin.php:1177
1758
  msgid "Post Author"
1759
  msgstr ""
1760
 
1761
+ #: ../admin/view/wp-slimstat-db.php:59 ../admin/wp-slimstat-admin.php:1178
1762
  msgid "Post Category ID"
1763
  msgstr ""
1764
 
1765
+ #: ../admin/view/wp-slimstat-db.php:61 ../admin/wp-slimstat-admin.php:1180
1766
  msgid "Resource Content Type"
1767
  msgstr ""
1768
 
1782
  msgid "Viewport Size"
1783
  msgstr ""
1784
 
1785
+ #: ../admin/view/wp-slimstat-db.php:66 ../admin/wp-slimstat-admin.php:1182
1786
  msgid "Visit ID"
1787
  msgstr ""
1788
 
1789
+ #: ../admin/view/wp-slimstat-db.php:86
1790
  msgid "is between (x,y)"
1791
  msgstr ""
1792
 
1793
+ #: ../admin/view/wp-slimstat-db.php:97
1794
  msgid "Minute"
1795
  msgstr ""
1796
 
1797
+ #: ../admin/view/wp-slimstat-db.php:103
1798
+ msgid "hours"
1799
  msgstr ""
1800
 
1801
+ #: ../admin/view/wp-slimstat-db.php:104
1802
  msgid "minutes"
1803
  msgstr ""
1804
 
1805
+ #: ../admin/view/wp-slimstat-db.php:105
1806
  msgid "Timestamp"
1807
  msgstr ""
1808
 
1809
+ #: ../admin/view/wp-slimstat-db.php:106
1810
  msgid "Exit Timestamp"
1811
  msgstr ""
1812
 
1813
+ #: ../admin/view/wp-slimstat-db.php:109
1814
  msgid "Language"
1815
  msgstr ""
1816
 
1817
+ #: ../admin/view/wp-slimstat-db.php:113
1818
  msgid "Metric"
1819
  msgstr ""
1820
 
1821
+ #: ../admin/view/wp-slimstat-db.php:114
1822
  msgid "Value"
1823
  msgstr ""
1824
 
1825
+ #: ../admin/view/wp-slimstat-db.php:116
1826
+ msgid "Grouped Value"
1827
+ msgstr ""
1828
+
1829
+ #: ../admin/view/wp-slimstat-db.php:117
1830
+ msgid "Percentage"
1831
+ msgstr ""
1832
+
1833
+ #: ../admin/view/wp-slimstat-db.php:118 ../admin/view/wp-slimstat-db.php:119
1834
  msgid "Notes"
1835
  msgstr ""
1836
 
1837
+ #: ../admin/view/wp-slimstat-db.php:122
1838
  msgid "Event ID"
1839
  msgstr ""
1840
 
1841
+ #: ../admin/view/wp-slimstat-db.php:123
1842
+ #: ../admin/view/wp-slimstat-reports.php:1402
1843
  msgid "Type"
1844
  msgstr ""
1845
 
1846
+ #: ../admin/view/wp-slimstat-db.php:124
1847
  msgid "Event Description"
1848
  msgstr ""
1849
 
1850
+ #: ../admin/view/wp-slimstat-db.php:125
1851
  msgid "Event Coordinates"
1852
  msgstr ""
1853
 
1854
+ #: ../admin/view/wp-slimstat-db.php:128
 
 
 
 
1855
  msgid "Offset"
1856
  msgstr ""
1857
 
1858
+ #: ../admin/view/wp-slimstat-db.php:674
1859
+ msgid "Dataset Size"
1860
  msgstr ""
1861
 
1862
+ #: ../admin/view/wp-slimstat-db.php:676
1863
+ msgid "Total number of records stored in the database."
1864
  msgstr ""
1865
 
1866
+ #: ../admin/view/wp-slimstat-db.php:678
1867
+ msgid "DB Size"
1868
  msgstr ""
1869
 
1870
+ #: ../admin/view/wp-slimstat-db.php:681
1871
+ msgid "Tracking Enabled"
1872
  msgstr ""
1873
 
1874
+ #: ../admin/view/wp-slimstat-db.php:684
1875
+ msgid "Javascript Mode"
1876
  msgstr ""
1877
 
1878
+ #: ../admin/view/wp-slimstat-db.php:687
1879
+ msgid "Tracking Browser Caps"
1880
  msgstr ""
1881
 
1882
+ #: ../admin/view/wp-slimstat-db.php:690
1883
+ msgid "Auto purge"
 
1884
  msgstr ""
1885
 
1886
+ #: ../admin/view/wp-slimstat-db.php:691 ../admin/wp-slimstat-admin.php:999
1887
+ msgid "Off"
1888
  msgstr ""
1889
 
1890
+ #: ../admin/view/wp-slimstat-db.php:693
1891
+ msgid "Oldest pageview"
1892
  msgstr ""
1893
 
1894
+ #: ../admin/view/wp-slimstat-db.php:694
1895
+ msgid "No visits"
1896
  msgstr ""
1897
 
1898
+ #: ../admin/view/wp-slimstat-db.php:696
1899
+ msgid "Geolocation"
 
 
 
1900
  msgstr ""
1901
 
1902
+ #: ../admin/view/wp-slimstat-db.php:698
1903
+ msgid "Date when the MaxMind Geolocation database was last updated."
 
 
 
 
1904
  msgstr ""
1905
 
1906
+ #: ../admin/view/wp-slimstat-db.php:866 ../admin/view/wp-slimstat-db.php:1114
1907
+ #: ../admin/view/wp-slimstat-reports.php:45
1908
+ #: ../admin/view/wp-slimstat-reports.php:54
1909
+ msgid "Pageviews"
1910
  msgstr ""
1911
 
1912
+ #: ../admin/view/wp-slimstat-db.php:868 ../admin/view/wp-slimstat-db.php:1116
1913
+ msgid ""
1914
+ "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
1915
+ "the tracking code is executed."
1916
  msgstr ""
1917
 
1918
+ #: ../admin/view/wp-slimstat-db.php:870
1919
+ msgid "Days in Range"
1920
  msgstr ""
1921
 
1922
+ #: ../admin/view/wp-slimstat-db.php:873
1923
+ msgid "Average Daily Pageviews"
1924
  msgstr ""
1925
 
1926
+ #: ../admin/view/wp-slimstat-db.php:875
1927
+ msgid ""
1928
+ "How many pages have been visited on average every day during the current "
1929
+ "period."
1930
  msgstr ""
1931
 
1932
+ #: ../admin/view/wp-slimstat-db.php:877
1933
+ msgid "From Search Results"
1934
  msgstr ""
1935
 
1936
+ #: ../admin/view/wp-slimstat-db.php:879
1937
  msgid ""
1938
+ "Visitors who landed on your site after searching for a keyword on Google, "
1939
+ "Yahoo, etc."
 
 
 
1940
  msgstr ""
1941
 
1942
+ #: ../admin/view/wp-slimstat-db.php:881 ../admin/view/wp-slimstat-db.php:1227
1943
+ #: ../admin/view/wp-slimstat-reports.php:55
1944
+ #: ../admin/view/wp-slimstat-reports.php:252
1945
+ #: ../admin/view/wp-slimstat-reports.php:493
1946
+ msgid "Unique IPs"
1947
  msgstr ""
1948
 
1949
+ #: ../admin/view/wp-slimstat-db.php:883
1950
+ msgid ""
1951
+ "Used to differentiate between multiple requests to download a file from one "
1952
+ "internet address (IP) and requests originating from many distinct addresses"
1953
  msgstr ""
1954
 
1955
+ #: ../admin/view/wp-slimstat-db.php:885
1956
+ msgid "Last 30 minutes"
1957
  msgstr ""
1958
 
1959
+ #: ../admin/view/wp-slimstat-db.php:1118
1960
+ msgid "Unique Referrers"
1961
  msgstr ""
1962
 
1963
+ #: ../admin/view/wp-slimstat-db.php:1120
1964
  msgid ""
1965
+ "A referrer (or referring site) is the site that a visitor previously visited "
1966
+ "before following a link to your site."
1967
  msgstr ""
1968
 
1969
+ #: ../admin/view/wp-slimstat-db.php:1122
1970
+ msgid "Direct Pageviews"
1971
  msgstr ""
1972
 
1973
+ #: ../admin/view/wp-slimstat-db.php:1124
1974
  msgid ""
1975
+ "Visitors who visited the site by typing the URL directly into their browser. "
1976
+ "<em>Direct</em> can also refer to the visitors who clicked on the links from "
1977
+ "their bookmarks/favorites, untagged links within emails, or links from "
1978
+ "documents that don't include tracking variables."
1979
  msgstr ""
1980
 
1981
+ #: ../admin/view/wp-slimstat-db.php:1126
1982
+ msgid "From a search result"
1983
  msgstr ""
1984
 
1985
+ #: ../admin/view/wp-slimstat-db.php:1128
1986
+ msgid ""
1987
+ "Visitors who came to your site via searches on Google or some other search "
1988
+ "engine."
1989
+ msgstr ""
1990
+
1991
+ #: ../admin/view/wp-slimstat-db.php:1130
1992
+ msgid "Unique Landing Pages"
1993
+ msgstr ""
1994
+
1995
+ #: ../admin/view/wp-slimstat-db.php:1132
1996
+ msgid ""
1997
+ "The first page that a user views during a session. This is also known as the "
1998
+ "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
1999
+ "Space,' and they land on your home page, it gets counted (for that visit) as "
2000
+ "a landing page."
2001
+ msgstr ""
2002
+
2003
+ #: ../admin/view/wp-slimstat-db.php:1134
2004
+ msgid "Bounce Pages"
2005
+ msgstr ""
2006
+
2007
+ #: ../admin/view/wp-slimstat-db.php:1136
2008
+ msgid "Number of single page visits to your site over the selected period."
2009
+ msgstr ""
2010
+
2011
+ #: ../admin/view/wp-slimstat-db.php:1138
2012
+ msgid "New Visitors Rate"
2013
+ msgstr ""
2014
+
2015
+ #: ../admin/view/wp-slimstat-db.php:1140
2016
+ msgid ""
2017
+ "Percentage of single page visits, i.e. visits in which the person left your "
2018
+ "site from the entrance page."
2019
+ msgstr ""
2020
+
2021
+ #: ../admin/view/wp-slimstat-db.php:1142
2022
+ msgid "Currently from search engines"
2023
+ msgstr ""
2024
+
2025
+ #: ../admin/view/wp-slimstat-db.php:1144
2026
+ msgid ""
2027
+ "Visitors who visited the site in the last 5 minutes coming from a search "
2028
+ "engine."
2029
+ msgstr ""
2030
+
2031
+ #: ../admin/view/wp-slimstat-db.php:1155
2032
+ msgid "0 - 30 seconds"
2033
+ msgstr ""
2034
+
2035
+ #: ../admin/view/wp-slimstat-db.php:1161
2036
+ msgid "31 - 60 seconds"
2037
+ msgstr ""
2038
+
2039
+ #: ../admin/view/wp-slimstat-db.php:1167
2040
+ msgid "1 - 3 minutes"
2041
+ msgstr ""
2042
+
2043
+ #: ../admin/view/wp-slimstat-db.php:1173
2044
+ msgid "3 - 5 minutes"
2045
+ msgstr ""
2046
+
2047
+ #: ../admin/view/wp-slimstat-db.php:1179
2048
+ msgid "5 - 7 minutes"
2049
+ msgstr ""
2050
+
2051
+ #: ../admin/view/wp-slimstat-db.php:1185
2052
+ msgid "7 - 10 minutes"
2053
+ msgstr ""
2054
+
2055
+ #: ../admin/view/wp-slimstat-db.php:1191
2056
+ msgid "More than 10 minutes"
2057
+ msgstr ""
2058
+
2059
+ #: ../admin/view/wp-slimstat-db.php:1203
2060
+ msgid "Average visit duration"
2061
+ msgstr ""
2062
+
2063
+ #: ../admin/view/wp-slimstat-db.php:1223
2064
+ #: ../admin/view/wp-slimstat-reports.php:251
2065
+ msgid "Visits"
2066
+ msgstr ""
2067
+
2068
+ #: ../admin/view/wp-slimstat-db.php:1225
2069
+ msgid ""
2070
+ "A visit is a session of at most 30 minutes. Returning visitors are counted "
2071
+ "multiple times if they perform multiple visits."
2072
+ msgstr ""
2073
+
2074
+ #: ../admin/view/wp-slimstat-db.php:1229
2075
+ msgid "It includes only traffic generated by human visitors."
2076
+ msgstr ""
2077
+
2078
+ #: ../admin/view/wp-slimstat-db.php:1231
2079
+ msgid "Bounce rate"
2080
+ msgstr ""
2081
+
2082
+ #: ../admin/view/wp-slimstat-db.php:1233
2083
+ msgid ""
2084
+ "Percentage of single-page visits, i.e. visits in which the person left your "
2085
+ "site from the entrance page."
2086
+ msgstr ""
2087
+
2088
+ #: ../admin/view/wp-slimstat-db.php:1235
2089
+ msgid "Known visitors"
2090
+ msgstr ""
2091
+
2092
+ #: ../admin/view/wp-slimstat-db.php:1237
2093
+ msgid "Visitors who had previously left a comment on your blog."
2094
+ msgstr ""
2095
+
2096
+ #: ../admin/view/wp-slimstat-db.php:1239
2097
+ msgid "New visitors"
2098
+ msgstr ""
2099
+
2100
+ #: ../admin/view/wp-slimstat-db.php:1241
2101
+ msgid "Human users who visited your site only once."
2102
+ msgstr ""
2103
+
2104
+ #: ../admin/view/wp-slimstat-db.php:1243
2105
+ msgid "Bots"
2106
+ msgstr ""
2107
+
2108
+ #: ../admin/view/wp-slimstat-db.php:1246
2109
+ msgid "Pageviews per visit"
2110
+ msgstr ""
2111
+
2112
+ #: ../admin/view/wp-slimstat-db.php:1249
2113
+ msgid "Longest visit"
2114
+ msgstr ""
2115
+
2116
+ #: ../admin/view/wp-slimstat-db.php:1250
2117
+ msgid "hits"
2118
+ msgstr ""
2119
+
2120
+ #: ../admin/view/wp-slimstat-db.php:1259
2121
+ msgid "Content Items"
2122
+ msgstr ""
2123
+
2124
+ #: ../admin/view/wp-slimstat-db.php:1261
2125
+ msgid ""
2126
+ "This value includes not only posts, but also custom post types, regardless "
2127
+ "of their status"
2128
+ msgstr ""
2129
+
2130
+ #: ../admin/view/wp-slimstat-db.php:1263
2131
+ msgid "Posts"
2132
+ msgstr ""
2133
+
2134
+ #: ../admin/view/wp-slimstat-db.php:1266
2135
+ msgid "Pages"
2136
+ msgstr ""
2137
+
2138
+ #: ../admin/view/wp-slimstat-db.php:1269
2139
+ msgid "Attachments"
2140
+ msgstr ""
2141
+
2142
+ #: ../admin/view/wp-slimstat-db.php:1272
2143
+ msgid "Revisions"
2144
+ msgstr ""
2145
+
2146
+ #: ../admin/view/wp-slimstat-db.php:1275
2147
+ msgid "Comments"
2148
+ msgstr ""
2149
+
2150
+ #: ../admin/view/wp-slimstat-db.php:1278
2151
+ msgid "Avg Comments per Post"
2152
+ msgstr ""
2153
+
2154
+ #: ../admin/view/wp-slimstat-db.php:1281
2155
+ msgid "Avg Server Latency"
2156
+ msgstr ""
2157
+
2158
+ #: ../admin/view/wp-slimstat-db.php:1283
2159
+ msgid ""
2160
+ "Latency is the amount of time it takes for the host server to receive and "
2161
+ "process a request for a page object. The amount of latency depends largely "
2162
+ "on how far away the user is from the server."
2163
+ msgstr ""
2164
+
2165
+ #: ../admin/view/wp-slimstat-reports.php:28
2166
+ msgid "Chart controls"
2167
+ msgstr ""
2168
+
2169
+ #: ../admin/view/wp-slimstat-reports.php:28
2170
+ msgid "Use your mouse wheel to zoom in and out"
2171
+ msgstr ""
2172
+
2173
+ #: ../admin/view/wp-slimstat-reports.php:28
2174
+ msgid "While zooming in, drag the chart to move to a different area"
2175
+ msgstr ""
2176
+
2177
+ #: ../admin/view/wp-slimstat-reports.php:32
2178
+ msgid "Visitors Activity"
2179
+ msgstr ""
2180
+
2181
+ #: ../admin/view/wp-slimstat-reports.php:41
2182
+ msgid "Color codes"
2183
+ msgstr ""
2184
+
2185
+ #: ../admin/view/wp-slimstat-reports.php:41
2186
+ msgid "From search result page"
2187
+ msgstr ""
2188
+
2189
+ #: ../admin/view/wp-slimstat-reports.php:41 ../admin/wp-slimstat-admin.php:1137
2190
+ msgid "Known Visitor"
2191
+ msgstr ""
2192
+
2193
+ #: ../admin/view/wp-slimstat-reports.php:41
2194
+ msgid "Known Users"
2195
+ msgstr ""
2196
+
2197
+ #: ../admin/view/wp-slimstat-reports.php:41
2198
+ msgid "Other Humans"
2199
+ msgstr ""
2200
+
2201
+ #: ../admin/view/wp-slimstat-reports.php:41
2202
+ msgid "Bot or Crawler"
2203
+ msgstr ""
2204
+
2205
+ #: ../admin/view/wp-slimstat-reports.php:63
2206
+ msgid "About Slimstat"
2207
+ msgstr ""
2208
+
2209
+ #: ../admin/view/wp-slimstat-reports.php:72
2210
+ msgid "Traffic at a Glance"
2211
+ msgstr ""
2212
+
2213
+ #: ../admin/view/wp-slimstat-reports.php:82
2214
+ msgid "Currently Online"
2215
+ msgstr ""
2216
+
2217
+ #: ../admin/view/wp-slimstat-reports.php:95
2218
+ msgid "Recent Search Terms"
2219
+ msgstr ""
2220
+
2221
+ #: ../admin/view/wp-slimstat-reports.php:106
2222
+ msgid "Keywords used by your visitors to find your website on a search engine."
2223
+ msgstr ""
2224
+
2225
+ #: ../admin/view/wp-slimstat-reports.php:109
2226
+ msgid "Top Web Pages"
2227
+ msgstr ""
2228
+
2229
+ #: ../admin/view/wp-slimstat-reports.php:120
2230
+ msgid ""
2231
+ "Here a \"page\" is not just a WordPress page type, but any webpage on your "
2232
+ "site, including posts, products, categories, and so on. You can set the "
2233
+ "corresponding filter where Resource Content Type equals cpt:"
2234
+ "you_cpt_slug_here to get top web pages for a specific custom post type you "
2235
+ "have."
2236
+ msgstr ""
2237
+
2238
+ #: ../admin/view/wp-slimstat-reports.php:123
2239
+ msgid "Top Referring Domains"
2240
+ msgstr ""
2241
+
2242
+ #: ../admin/view/wp-slimstat-reports.php:137
2243
+ msgid "Top Known Visitors"
2244
+ msgstr ""
2245
+
2246
+ #: ../admin/view/wp-slimstat-reports.php:148
2247
+ msgid "Top Search Terms"
2248
+ msgstr ""
2249
+
2250
+ #: ../admin/view/wp-slimstat-reports.php:160
2251
+ msgid "Top Countries"
2252
+ msgstr ""
2253
+
2254
+ #: ../admin/view/wp-slimstat-reports.php:169
2255
+ msgid ""
2256
+ "You can configure Slimstat to ignore a specific Country by setting the "
2257
+ "corresponding filter under Settings > Slimstat > Filters."
2258
+ msgstr ""
2259
+
2260
+ #: ../admin/view/wp-slimstat-reports.php:172
2261
+ msgid "Rankings"
2262
+ msgstr ""
2263
+
2264
+ #: ../admin/view/wp-slimstat-reports.php:179
2265
+ msgid ""
2266
+ "Slimstat retrieves live information from Alexa, Facebook and Mozscape, to "
2267
+ "measures your site's rankings. Values are updated every 12 hours. Please "
2268
+ "enter your personal access ID in the settings to access your personalized "
2269
+ "Mozscape data."
2270
+ msgstr ""
2271
+
2272
+ #: ../admin/view/wp-slimstat-reports.php:182
2273
+ msgid "Top Language Families"
2274
+ msgstr ""
2275
 
2276
+ #: ../admin/view/wp-slimstat-reports.php:195
2277
+ msgid "Users Currently Online"
2278
+ msgstr ""
2279
+
2280
+ #: ../admin/view/wp-slimstat-reports.php:206
2281
  msgid ""
2282
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2283
  "Slimstat leverages this information to identify returning visitors. Please "
2284
  "note that visitors also include registered users."
2285
  msgstr ""
2286
 
2287
+ #: ../admin/view/wp-slimstat-reports.php:220
2288
  msgid "Unique Terms"
2289
  msgstr ""
2290
 
2291
+ #: ../admin/view/wp-slimstat-reports.php:228
2292
  msgid "Top Referring URLs"
2293
  msgstr ""
2294
 
2295
+ #: ../admin/view/wp-slimstat-reports.php:241
2296
  msgid "Human Visits"
2297
  msgstr ""
2298
 
2299
+ #: ../admin/view/wp-slimstat-reports.php:260
 
 
 
 
 
2300
  msgid "Audience Overview"
2301
  msgstr ""
2302
 
2303
+ #: ../admin/view/wp-slimstat-reports.php:267
2304
  msgid ""
2305
  "Where not otherwise specified, the metrics in this report are referred to "
2306
  "human visitors."
2307
  msgstr ""
2308
 
2309
+ #: ../admin/view/wp-slimstat-reports.php:270
2310
  msgid "Top Languages"
2311
  msgstr ""
2312
 
2313
+ #: ../admin/view/wp-slimstat-reports.php:281
2314
  msgid "Top Browsers"
2315
  msgstr ""
2316
 
2317
+ #: ../admin/view/wp-slimstat-reports.php:292
2318
  msgid "Top Service Providers"
2319
  msgstr ""
2320
 
2321
+ #: ../admin/view/wp-slimstat-reports.php:301
2322
+ #: ../admin/view/wp-slimstat-reports.php:313
2323
  msgid ""
2324
  "Internet Service Provider: a company which provides other companies or "
2325
  "individuals with access to the Internet. Your DSL or cable internet service "
2327
  "by setting the corresponding filter under Settings > Slimstat > Filters."
2328
  msgstr ""
2329
 
2330
+ #: ../admin/view/wp-slimstat-reports.php:304
2331
  msgid "Top Operating Systems"
2332
  msgstr ""
2333
 
2334
+ #: ../admin/view/wp-slimstat-reports.php:316
2335
  msgid "Top Screen Resolutions"
2336
  msgstr ""
2337
 
2338
+ #: ../admin/view/wp-slimstat-reports.php:328
2339
  msgid "Top Viewport Sizes"
2340
  msgstr ""
2341
 
2342
+ #: ../admin/view/wp-slimstat-reports.php:348
2343
  msgid "Visit Duration"
2344
  msgstr ""
2345
 
2346
+ #: ../admin/view/wp-slimstat-reports.php:355
2347
  msgid ""
2348
  "All values represent the percentages of pageviews within the corresponding "
2349
  "time range."
2350
  msgstr ""
2351
 
2352
+ #: ../admin/view/wp-slimstat-reports.php:358
2353
  msgid "Recent Countries"
2354
  msgstr ""
2355
 
2356
+ #: ../admin/view/wp-slimstat-reports.php:369
2357
  msgid "Recent Viewport Sizes"
2358
  msgstr ""
2359
 
2360
+ #: ../admin/view/wp-slimstat-reports.php:380
2361
  msgid "Recent Operating Systems"
2362
  msgstr ""
2363
 
2364
+ #: ../admin/view/wp-slimstat-reports.php:391
2365
  msgid "Recent Browsers"
2366
  msgstr ""
2367
 
2368
+ #: ../admin/view/wp-slimstat-reports.php:402
2369
  msgid "Recent Languages"
2370
  msgstr ""
2371
 
2372
+ #: ../admin/view/wp-slimstat-reports.php:413
2373
  msgid "Top Browser Families"
2374
  msgstr ""
2375
 
2376
+ #: ../admin/view/wp-slimstat-reports.php:422
2377
  msgid ""
2378
  "This report shows you what user agent families (no version considered) are "
2379
  "popular among your visitors."
2380
  msgstr ""
2381
 
2382
+ #: ../admin/view/wp-slimstat-reports.php:425
2383
  msgid "Top OS Families"
2384
  msgstr ""
2385
 
2386
+ #: ../admin/view/wp-slimstat-reports.php:436
2387
  msgid ""
2388
  "This report shows you what operating system families (no version considered) "
2389
  "are popular among your visitors."
2390
  msgstr ""
2391
 
2392
+ #: ../admin/view/wp-slimstat-reports.php:439
2393
  msgid "Recent Users"
2394
  msgstr ""
2395
 
2396
+ #: ../admin/view/wp-slimstat-reports.php:451
2397
  msgid "Top Users"
2398
  msgstr ""
2399
 
2400
+ #: ../admin/view/wp-slimstat-reports.php:463
2401
+ #: ../admin/view/wp-slimstat-reports.php:472
2402
  msgid "Users"
2403
  msgstr ""
2404
 
2405
+ #: ../admin/view/wp-slimstat-reports.php:473
2406
  msgid "Unique Users"
2407
  msgstr ""
2408
 
2409
+ #: ../admin/view/wp-slimstat-reports.php:482 ../admin/wp-slimstat-admin.php:58
 
2410
  msgid "Traffic Sources"
2411
  msgstr ""
2412
 
2413
+ #: ../admin/view/wp-slimstat-reports.php:492
2414
  msgid "Domains"
2415
  msgstr ""
2416
 
2417
+ #: ../admin/view/wp-slimstat-reports.php:501
2418
  msgid "Traffic Summary"
2419
  msgstr ""
2420
 
2421
+ #: ../admin/view/wp-slimstat-reports.php:510
2422
  msgid "Top Referring Search Engines"
2423
  msgstr ""
2424
 
2425
+ #: ../admin/view/wp-slimstat-reports.php:525
2426
  msgid "Recent Outbound Links"
2427
  msgstr ""
2428
 
2429
+ #: ../admin/view/wp-slimstat-reports.php:537
2430
  msgid "Recent Posts"
2431
  msgstr ""
2432
 
2433
+ #: ../admin/view/wp-slimstat-reports.php:549
2434
  msgid "Recent Feeds"
2435
  msgstr ""
2436
 
2437
+ #: ../admin/view/wp-slimstat-reports.php:561
2438
  msgid "Recent Pages Not Found"
2439
  msgstr ""
2440
 
2441
+ #: ../admin/view/wp-slimstat-reports.php:573
2442
  msgid "Recent Internal Searches"
2443
  msgstr ""
2444
 
2445
+ #: ../admin/view/wp-slimstat-reports.php:583
2446
  msgid "Searches performed using WordPress' built-in search functionality."
2447
  msgstr ""
2448
 
2449
+ #: ../admin/view/wp-slimstat-reports.php:586
2450
  msgid "Top Categories"
2451
  msgstr ""
2452
 
2453
+ #: ../admin/view/wp-slimstat-reports.php:599
2454
  msgid "Top Downloads"
2455
  msgstr ""
2456
 
2457
+ #: ../admin/view/wp-slimstat-reports.php:610
2458
  msgid ""
2459
  "You can configure Slimstat to track specific file extensions as downloads."
2460
  msgstr ""
2461
 
2462
+ #: ../admin/view/wp-slimstat-reports.php:613
2463
  msgid "Recent Events"
2464
  msgstr ""
2465
 
2466
+ #: ../admin/view/wp-slimstat-reports.php:622
2467
+ #: ../admin/view/wp-slimstat-reports.php:646
2468
  msgid ""
2469
  "This report lists any <em>event</em> occurred on your website. Please refer "
2470
  "to the FAQ for more information on how to use this functionality."
2471
  msgstr ""
2472
 
2473
+ #: ../admin/view/wp-slimstat-reports.php:625
2474
  msgid "Top Posts"
2475
  msgstr ""
2476
 
2477
+ #: ../admin/view/wp-slimstat-reports.php:637
2478
  msgid "Top Events"
2479
  msgstr ""
2480
 
2481
+ #: ../admin/view/wp-slimstat-reports.php:649
2482
  msgid "Top Internal Searches"
2483
  msgstr ""
2484
 
2485
+ #: ../admin/view/wp-slimstat-reports.php:661
2486
  msgid "Recent Categories"
2487
  msgstr ""
2488
 
2489
+ #: ../admin/view/wp-slimstat-reports.php:673
2490
  msgid "Top Pages Not Found"
2491
  msgstr ""
2492
 
2493
+ #: ../admin/view/wp-slimstat-reports.php:685
2494
  msgid "Top Authors"
2495
  msgstr ""
2496
 
2497
+ #: ../admin/view/wp-slimstat-reports.php:696
2498
  msgid "Top Tags"
2499
  msgstr ""
2500
 
2501
+ #: ../admin/view/wp-slimstat-reports.php:708
2502
  msgid "Recent Downloads"
2503
  msgstr ""
2504
 
2505
+ #: ../admin/view/wp-slimstat-reports.php:720
2506
  msgid "Top Outbound Links"
2507
  msgstr ""
2508
 
2509
+ #: ../admin/view/wp-slimstat-reports.php:732
2510
  msgid "Your Website"
2511
  msgstr ""
2512
 
2513
+ #: ../admin/view/wp-slimstat-reports.php:739
2514
  msgid ""
2515
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
2516
  "this report is not affected by the filters set here above."
2517
  msgstr ""
2518
 
2519
+ #: ../admin/view/wp-slimstat-reports.php:742
2520
  msgid "Top Bounce Pages"
2521
  msgstr ""
2522
 
2523
+ #: ../admin/view/wp-slimstat-reports.php:755
2524
  msgid "Top Exit Pages"
2525
  msgstr ""
2526
 
2527
+ #: ../admin/view/wp-slimstat-reports.php:768
2528
  msgid "Top Entry Pages"
2529
  msgstr ""
2530
 
2531
+ #: ../admin/view/wp-slimstat-reports.php:781
2532
  msgid "Pages with Outbound Links"
2533
  msgstr ""
2534
 
2535
+ #: ../admin/view/wp-slimstat-reports.php:790
2536
  msgid "Outbound Links"
2537
  msgstr ""
2538
 
2539
+ #: ../admin/view/wp-slimstat-reports.php:791
2540
  msgid "Unique Outbound"
2541
  msgstr ""
2542
 
2543
+ #: ../admin/view/wp-slimstat-reports.php:799
2544
+ msgid "Users by Page"
2545
+ msgstr ""
2546
+
2547
+ #: ../admin/view/wp-slimstat-reports.php:810
2548
  msgid "World Map"
2549
  msgstr ""
2550
 
2551
+ #: ../admin/view/wp-slimstat-reports.php:817
2552
+ msgid ""
2553
+ "Dots on the map represent the most recent pageviews geolocated by City. This "
2554
+ "feature is only available by enabling the corresponding precision level in "
2555
+ "the settings."
2556
+ msgstr ""
2557
+
2558
+ #: ../admin/view/wp-slimstat-reports.php:823
2559
+ msgid "Top Cities"
2560
+ msgstr ""
2561
+
2562
+ #: ../admin/view/wp-slimstat-reports.php:927
2563
  msgid "Refresh"
2564
  msgstr ""
2565
 
2566
+ #: ../admin/view/wp-slimstat-reports.php:974
2567
  #, php-format
2568
  msgid "Results %s - %s of %s"
2569
  msgstr ""
2570
 
2571
+ #: ../admin/view/wp-slimstat-reports.php:977
2572
  msgid "Refresh in"
2573
  msgstr ""
2574
 
2575
+ #: ../admin/view/wp-slimstat-reports.php:1076
2576
  msgid "Category ID"
2577
  msgstr ""
2578
 
2579
+ #: ../admin/view/wp-slimstat-reports.php:1081
2580
+ #: ../admin/view/wp-slimstat-reports.php:1095
2581
+ #: ../admin/view/wp-slimstat-reports.php:1100
2582
  msgid "Code"
2583
  msgstr ""
2584
 
2585
+ #: ../admin/view/wp-slimstat-reports.php:1096
2586
+ #: ../languages/dynamic_strings.php:341 ../wp-slimstat.php:1476
2587
  msgid "l-"
2588
+ msgstr ""
2589
 
2590
+ #: ../admin/view/wp-slimstat-reports.php:1113
2591
  msgid "URL"
2592
  msgstr ""
2593
 
2595
  msgid "Referrer"
2596
  msgstr ""
2597
 
2598
+ #: ../admin/view/wp-slimstat-reports.php:1313
2599
+ #: ../admin/view/wp-slimstat-reports.php:1327
2600
+ msgid "(previous)"
2601
  msgstr ""
2602
 
2603
+ #: ../admin/view/wp-slimstat-reports.php:1406
2604
+ msgid "Date"
2605
  msgstr ""
2606
 
2607
+ #: ../admin/view/wp-slimstat-reports.php:1458
2608
+ msgid "Filter by element in a group"
2609
  msgstr ""
2610
 
2611
+ #: ../admin/view/wp-slimstat-reports.php:1483
2612
+ msgid "Backlinks"
2613
  msgstr ""
2614
 
2615
+ #: ../admin/view/wp-slimstat-reports.php:1484
2616
+ msgid "Number of external equity links to your website."
2617
  msgstr ""
2618
 
2619
+ #: ../admin/view/wp-slimstat-reports.php:1488
2620
+ msgid "MozRank"
2621
  msgstr ""
2622
 
2623
+ #: ../admin/view/wp-slimstat-reports.php:1489
2624
+ msgid ""
2625
+ "MozRank of the URL, in a normalized 10-point score. MozRank represents a "
2626
+ "link popularity score. It reflects the importance of any given web page on "
2627
+ "the Internet."
2628
  msgstr ""
2629
 
2630
+ #: ../admin/view/wp-slimstat-reports.php:1493
2631
+ msgid "Equity Links"
 
2632
  msgstr ""
2633
 
2634
+ #: ../admin/view/wp-slimstat-reports.php:1494
2635
+ msgid ""
2636
+ "Number of authority-passing links (including followed links and redirects, "
2637
+ "internal or external) to your website. Set the permalink filter here above "
2638
+ "to get the corresponding metrics in this report."
2639
  msgstr ""
2640
 
2641
+ #: ../admin/view/wp-slimstat-reports.php:1498
2642
+ msgid "Facebook Shares"
2643
  msgstr ""
2644
 
2645
+ #: ../admin/view/wp-slimstat-reports.php:1503
2646
+ msgid "Facebook Clicks"
 
2647
  msgstr ""
2648
 
2649
+ #: ../admin/view/wp-slimstat-reports.php:1504
2650
+ msgid "How many times links to your website have been clicked on Facebook."
2651
  msgstr ""
2652
 
2653
+ #: ../admin/view/wp-slimstat-reports.php:1508
2654
+ msgid "Alexa World Rank"
 
 
 
2655
  msgstr ""
2656
 
2657
+ #: ../admin/view/wp-slimstat-reports.php:1509
2658
+ msgid ""
2659
+ "Alexa is a subsidiary company of Amazon.com which provides commercial web "
2660
+ "traffic data."
2661
  msgstr ""
2662
 
2663
+ #: ../admin/view/wp-slimstat-reports.php:1513
2664
+ msgid "Alexa Country Rank"
2665
  msgstr ""
2666
 
2667
+ #: ../admin/view/wp-slimstat-reports.php:1518
2668
+ msgid "Alexa Popularity"
 
 
2669
  msgstr ""
2670
 
2671
+ #: ../admin/view/wp-slimstat-reports.php:1577
2672
+ msgid "Alexa Delta"
2673
  msgstr ""
2674
 
2675
+ #: ../admin/view/wp-slimstat-reports.php:1625
2676
+ msgid "c-xx"
 
 
2677
  msgstr ""
2678
 
2679
+ #: ../admin/view/wp-slimstat-reports.php:1625
2680
+ msgid "c-af"
 
 
2681
  msgstr ""
2682
 
2683
+ #: ../admin/view/wp-slimstat-reports.php:1625
2684
+ msgid "c-ax"
2685
  msgstr ""
2686
 
2687
+ #: ../admin/view/wp-slimstat-reports.php:1625
2688
+ msgid "c-al"
 
 
2689
  msgstr ""
2690
 
2691
+ #: ../admin/view/wp-slimstat-reports.php:1625
2692
+ msgid "c-dz"
2693
  msgstr ""
2694
 
2695
+ #: ../admin/view/wp-slimstat-reports.php:1625
2696
+ msgid "c-ad"
2697
  msgstr ""
2698
 
2699
+ #: ../admin/view/wp-slimstat-reports.php:1625
2700
+ msgid "c-ao"
 
 
2701
  msgstr ""
2702
 
2703
+ #: ../admin/view/wp-slimstat-reports.php:1625
2704
+ msgid "c-ai"
2705
  msgstr ""
2706
 
2707
+ #: ../admin/view/wp-slimstat-reports.php:1625
2708
+ msgid "c-ag"
2709
  msgstr ""
2710
 
2711
+ #: ../admin/view/wp-slimstat-reports.php:1625
2712
+ msgid "c-ar"
2713
  msgstr ""
2714
 
2715
+ #: ../admin/view/wp-slimstat-reports.php:1625
2716
+ msgid "c-am"
2717
  msgstr ""
2718
 
2719
+ #: ../admin/view/wp-slimstat-reports.php:1625
2720
+ msgid "c-aw"
2721
  msgstr ""
2722
 
2723
+ #: ../admin/view/wp-slimstat-reports.php:1625
2724
+ msgid "c-au"
2725
  msgstr ""
2726
 
2727
+ #: ../admin/view/wp-slimstat-reports.php:1625
2728
+ msgid "c-at"
2729
  msgstr ""
2730
 
2731
+ #: ../admin/view/wp-slimstat-reports.php:1625
2732
+ msgid "c-az"
2733
  msgstr ""
2734
 
2735
+ #: ../admin/view/wp-slimstat-reports.php:1625
2736
+ msgid "c-bs"
2737
  msgstr ""
2738
 
2739
+ #: ../admin/view/wp-slimstat-reports.php:1625
2740
+ msgid "c-bh"
2741
  msgstr ""
2742
 
2743
+ #: ../admin/view/wp-slimstat-reports.php:1625
2744
+ msgid "c-bd"
2745
  msgstr ""
2746
 
2747
+ #: ../admin/view/wp-slimstat-reports.php:1625
2748
+ msgid "c-bb"
2749
  msgstr ""
2750
 
2751
+ #: ../admin/view/wp-slimstat-reports.php:1625
2752
+ msgid "c-by"
2753
  msgstr ""
2754
 
2755
+ #: ../admin/view/wp-slimstat-reports.php:1625
2756
+ msgid "c-be"
2757
  msgstr ""
2758
 
2759
+ #: ../admin/view/wp-slimstat-reports.php:1625
2760
+ msgid "c-bz"
2761
  msgstr ""
2762
 
2763
+ #: ../admin/view/wp-slimstat-reports.php:1625
2764
+ msgid "c-bj"
2765
  msgstr ""
2766
 
2767
+ #: ../admin/view/wp-slimstat-reports.php:1625
2768
+ msgid "c-bm"
2769
  msgstr ""
2770
 
2771
+ #: ../admin/view/wp-slimstat-reports.php:1625
2772
+ msgid "c-bt"
 
 
2773
  msgstr ""
2774
 
2775
+ #: ../admin/view/wp-slimstat-reports.php:1625
2776
+ msgid "c-bo"
2777
  msgstr ""
2778
 
2779
+ #: ../admin/view/wp-slimstat-reports.php:1625
2780
+ msgid "c-ba"
 
 
 
 
2781
  msgstr ""
2782
 
2783
+ #: ../admin/view/wp-slimstat-reports.php:1625
2784
+ msgid "c-bw"
2785
  msgstr ""
2786
 
2787
+ #: ../admin/view/wp-slimstat-reports.php:1625
2788
+ msgid "c-br"
 
 
2789
  msgstr ""
2790
 
2791
+ #: ../admin/view/wp-slimstat-reports.php:1625
2792
+ msgid "c-bn"
2793
  msgstr ""
2794
 
2795
+ #: ../admin/view/wp-slimstat-reports.php:1625
2796
+ msgid "c-bg"
 
 
 
 
2797
  msgstr ""
2798
 
2799
+ #: ../admin/view/wp-slimstat-reports.php:1625
2800
+ msgid "c-bf"
2801
  msgstr ""
2802
 
2803
+ #: ../admin/view/wp-slimstat-reports.php:1625
2804
+ msgid "c-bi"
2805
  msgstr ""
2806
 
2807
+ #: ../admin/view/wp-slimstat-reports.php:1625
2808
+ msgid "c-kh"
2809
  msgstr ""
2810
 
2811
+ #: ../admin/view/wp-slimstat-reports.php:1625
2812
+ msgid "c-cm"
 
 
2813
  msgstr ""
2814
 
2815
+ #: ../admin/view/wp-slimstat-reports.php:1625
2816
+ msgid "c-ca"
2817
  msgstr ""
2818
 
2819
+ #: ../admin/view/wp-slimstat-reports.php:1625
2820
+ msgid "c-cv"
 
 
2821
  msgstr ""
2822
 
2823
+ #: ../admin/view/wp-slimstat-reports.php:1625
2824
+ msgid "c-ky"
2825
  msgstr ""
2826
 
2827
+ #: ../admin/view/wp-slimstat-reports.php:1625
2828
+ msgid "c-cf"
2829
  msgstr ""
2830
 
2831
+ #: ../admin/view/wp-slimstat-reports.php:1625
2832
+ msgid "c-td"
2833
  msgstr ""
2834
 
2835
+ #: ../admin/view/wp-slimstat-reports.php:1625
2836
+ msgid "c-cl"
 
 
 
2837
  msgstr ""
2838
 
2839
+ #: ../admin/view/wp-slimstat-reports.php:1625
2840
+ msgid "c-cn"
2841
  msgstr ""
2842
 
2843
+ #: ../admin/view/wp-slimstat-reports.php:1625
2844
+ msgid "c-co"
 
 
 
2845
  msgstr ""
2846
 
2847
+ #: ../admin/view/wp-slimstat-reports.php:1625
2848
+ msgid "c-km"
2849
  msgstr ""
2850
 
2851
+ #: ../admin/view/wp-slimstat-reports.php:1625
2852
+ msgid "c-cg"
2853
  msgstr ""
2854
 
2855
+ #: ../admin/view/wp-slimstat-reports.php:1625
2856
+ msgid "c-cd"
2857
  msgstr ""
2858
 
2859
+ #: ../admin/view/wp-slimstat-reports.php:1625
2860
+ msgid "c-cr"
2861
  msgstr ""
2862
 
2863
+ #: ../admin/view/wp-slimstat-reports.php:1625
2864
+ msgid "c-ci"
 
 
2865
  msgstr ""
2866
 
2867
+ #: ../admin/view/wp-slimstat-reports.php:1625
2868
+ msgid "c-hr"
2869
  msgstr ""
2870
 
2871
+ #: ../admin/view/wp-slimstat-reports.php:1625
2872
+ msgid "c-cu"
2873
  msgstr ""
2874
 
2875
+ #: ../admin/view/wp-slimstat-reports.php:1625
2876
+ msgid "c-cy"
2877
  msgstr ""
2878
 
2879
+ #: ../admin/view/wp-slimstat-reports.php:1625
2880
+ msgid "c-cz"
2881
  msgstr ""
2882
 
2883
+ #: ../admin/view/wp-slimstat-reports.php:1625
2884
+ msgid "c-dk"
 
 
2885
  msgstr ""
2886
 
2887
+ #: ../admin/view/wp-slimstat-reports.php:1625
2888
+ msgid "c-dj"
2889
  msgstr ""
2890
 
2891
+ #: ../admin/view/wp-slimstat-reports.php:1625
2892
+ msgid "c-dm"
2893
  msgstr ""
2894
 
2895
+ #: ../admin/view/wp-slimstat-reports.php:1625
2896
+ msgid "c-do"
2897
  msgstr ""
2898
 
2899
+ #: ../admin/view/wp-slimstat-reports.php:1625
2900
+ msgid "c-ec"
2901
  msgstr ""
2902
 
2903
+ #: ../admin/view/wp-slimstat-reports.php:1625
2904
+ msgid "c-eg"
2905
  msgstr ""
2906
 
2907
+ #: ../admin/view/wp-slimstat-reports.php:1625
2908
+ msgid "c-sv"
2909
  msgstr ""
2910
 
2911
+ #: ../admin/view/wp-slimstat-reports.php:1625
2912
+ msgid "c-gq"
2913
  msgstr ""
2914
 
2915
+ #: ../admin/view/wp-slimstat-reports.php:1625
2916
+ msgid "c-er"
 
 
 
2917
  msgstr ""
2918
 
2919
+ #: ../admin/view/wp-slimstat-reports.php:1625
2920
+ msgid "c-ee"
2921
  msgstr ""
2922
 
2923
+ #: ../admin/view/wp-slimstat-reports.php:1625
2924
+ msgid "c-et"
2925
  msgstr ""
2926
 
2927
+ #: ../admin/view/wp-slimstat-reports.php:1625
2928
+ msgid "c-fo"
2929
+ msgstr ""
 
2930
 
2931
+ #: ../admin/view/wp-slimstat-reports.php:1625
2932
+ msgid "c-fk"
2933
+ msgstr ""
 
2934
 
2935
+ #: ../admin/view/wp-slimstat-reports.php:1625
2936
+ msgid "c-fj"
2937
+ msgstr ""
 
2938
 
2939
+ #: ../admin/view/wp-slimstat-reports.php:1625
2940
+ msgid "c-fi"
2941
+ msgstr ""
 
2942
 
2943
+ #: ../admin/view/wp-slimstat-reports.php:1625
2944
+ msgid "c-fr"
2945
+ msgstr ""
 
2946
 
2947
+ #: ../admin/view/wp-slimstat-reports.php:1625
2948
+ msgid "c-gf"
2949
+ msgstr ""
 
2950
 
2951
+ #: ../admin/view/wp-slimstat-reports.php:1625
2952
+ msgid "c-ga"
2953
+ msgstr ""
 
2954
 
2955
+ #: ../admin/view/wp-slimstat-reports.php:1625
2956
+ msgid "c-gm"
2957
+ msgstr ""
 
2958
 
2959
+ #: ../admin/view/wp-slimstat-reports.php:1625
2960
+ msgid "c-ge"
2961
+ msgstr ""
 
2962
 
2963
+ #: ../admin/view/wp-slimstat-reports.php:1625
2964
+ msgid "c-de"
2965
+ msgstr ""
 
2966
 
2967
+ #: ../admin/view/wp-slimstat-reports.php:1625
2968
+ msgid "c-gh"
2969
+ msgstr ""
 
2970
 
2971
+ #: ../admin/view/wp-slimstat-reports.php:1625
2972
+ msgid "c-gr"
2973
+ msgstr ""
 
2974
 
2975
+ #: ../admin/view/wp-slimstat-reports.php:1625
2976
+ msgid "c-gl"
2977
+ msgstr ""
 
2978
 
2979
+ #: ../admin/view/wp-slimstat-reports.php:1625
2980
+ msgid "c-gd"
2981
+ msgstr ""
 
2982
 
2983
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2984
  msgid "c-gp"
2985
+ msgstr ""
2986
 
2987
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
2988
  msgid "c-gt"
2989
+ msgstr ""
2990
 
2991
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
2992
  msgid "c-gn"
2993
+ msgstr ""
2994
 
2995
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
2996
  msgid "c-gw"
2997
+ msgstr ""
2998
 
2999
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3000
  msgid "c-gy"
3001
+ msgstr ""
3002
 
3003
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3004
  msgid "c-ht"
3005
+ msgstr ""
3006
 
3007
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3008
  msgid "c-hn"
3009
+ msgstr ""
3010
 
3011
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3012
  msgid "c-hk"
3013
+ msgstr ""
3014
 
3015
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3016
  msgid "c-hu"
3017
+ msgstr ""
3018
 
3019
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3020
  msgid "c-is"
3021
+ msgstr ""
3022
 
3023
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3024
  msgid "c-in"
3025
+ msgstr ""
3026
 
3027
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3028
  msgid "c-id"
3029
+ msgstr ""
3030
 
3031
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3032
  msgid "c-ir"
3033
+ msgstr ""
3034
 
3035
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3036
  msgid "c-iq"
3037
+ msgstr ""
3038
 
3039
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3040
  msgid "c-ie"
3041
+ msgstr ""
3042
 
3043
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3044
  msgid "c-il"
3045
+ msgstr ""
3046
 
3047
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3048
  msgid "c-it"
3049
+ msgstr ""
3050
 
3051
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3052
  msgid "c-jm"
3053
+ msgstr ""
3054
 
3055
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3056
  msgid "c-jp"
3057
+ msgstr ""
3058
 
3059
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3060
  msgid "c-jo"
3061
+ msgstr ""
3062
 
3063
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3064
  msgid "c-kz"
3065
+ msgstr ""
3066
 
3067
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3068
  msgid "c-ke"
3069
+ msgstr ""
3070
 
3071
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3072
  msgid "c-nr"
3073
+ msgstr ""
3074
 
3075
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3076
  msgid "c-kp"
3077
+ msgstr ""
3078
 
3079
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3080
  msgid "c-kr"
3081
+ msgstr ""
3082
 
3083
+ #: ../admin/view/wp-slimstat-reports.php:1625
3084
  msgid "c-kv"
3085
+ msgstr ""
3086
 
3087
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3088
  msgid "c-kw"
3089
+ msgstr ""
3090
 
3091
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3092
  msgid "c-kg"
3093
+ msgstr ""
3094
 
3095
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3096
  msgid "c-la"
3097
+ msgstr ""
3098
 
3099
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3100
  msgid "c-lv"
3101
+ msgstr ""
3102
 
3103
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3104
  msgid "c-lb"
3105
+ msgstr ""
3106
 
3107
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3108
  msgid "c-ls"
3109
+ msgstr ""
3110
 
3111
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3112
  msgid "c-lr"
3113
+ msgstr ""
3114
 
3115
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3116
  msgid "c-ly"
3117
+ msgstr ""
3118
 
3119
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3120
  msgid "c-li"
3121
+ msgstr ""
3122
 
3123
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3124
  msgid "c-lt"
3125
+ msgstr ""
3126
 
3127
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3128
  msgid "c-lu"
3129
+ msgstr ""
3130
 
3131
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3132
  msgid "c-mk"
3133
+ msgstr ""
3134
 
3135
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3136
  msgid "c-mg"
3137
+ msgstr ""
3138
 
3139
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3140
  msgid "c-mw"
3141
+ msgstr ""
3142
 
3143
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3144
  msgid "c-my"
3145
+ msgstr ""
3146
 
3147
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3148
  msgid "c-ml"
3149
+ msgstr ""
3150
 
3151
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3152
  msgid "c-mt"
3153
+ msgstr ""
3154
 
3155
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3156
  msgid "c-mq"
3157
+ msgstr ""
3158
 
3159
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3160
  msgid "c-mr"
3161
+ msgstr ""
3162
 
3163
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3164
  msgid "c-mu"
3165
+ msgstr ""
3166
 
3167
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3168
  msgid "c-mx"
3169
+ msgstr ""
3170
 
3171
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3172
  msgid "c-md"
3173
+ msgstr ""
3174
 
3175
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3176
  msgid "c-mn"
3177
+ msgstr ""
3178
 
3179
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3180
  msgid "c-me"
3181
+ msgstr ""
3182
 
3183
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3184
  msgid "c-ms"
3185
+ msgstr ""
3186
 
3187
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3188
  msgid "c-ma"
3189
+ msgstr ""
3190
 
3191
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3192
  msgid "c-mz"
3193
+ msgstr ""
3194
 
3195
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3196
  msgid "c-mm"
3197
+ msgstr ""
3198
 
3199
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3200
  msgid "c-na"
3201
+ msgstr ""
3202
 
3203
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3204
  msgid "c-np"
3205
+ msgstr ""
3206
 
3207
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3208
  msgid "c-nl"
3209
+ msgstr ""
3210
 
3211
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3212
  msgid "c-nc"
3213
+ msgstr ""
3214
 
3215
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3216
  msgid "c-nz"
3217
+ msgstr ""
3218
 
3219
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3220
  msgid "c-ni"
3221
+ msgstr ""
3222
 
3223
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3224
  msgid "c-ne"
3225
+ msgstr ""
3226
 
3227
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3228
  msgid "c-ng"
3229
+ msgstr ""
3230
 
3231
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3232
  msgid "c-no"
3233
+ msgstr ""
3234
 
3235
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3236
  msgid "c-om"
3237
+ msgstr ""
3238
 
3239
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3240
  msgid "c-pk"
3241
+ msgstr ""
3242
 
3243
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3244
  msgid "c-pw"
3245
+ msgstr ""
3246
 
3247
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3248
  msgid "c-ps"
3249
+ msgstr ""
3250
 
3251
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3252
  msgid "c-pa"
3253
+ msgstr ""
3254
 
3255
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3256
  msgid "c-pg"
3257
+ msgstr ""
3258
 
3259
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3260
  msgid "c-py"
3261
+ msgstr ""
3262
 
3263
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3264
  msgid "c-pe"
3265
+ msgstr ""
3266
 
3267
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3268
  msgid "c-ph"
3269
+ msgstr ""
3270
 
3271
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3272
  msgid "c-pl"
3273
+ msgstr ""
3274
 
3275
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3276
  msgid "c-pt"
3277
+ msgstr ""
3278
 
3279
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3280
  msgid "c-pr"
3281
+ msgstr ""
3282
 
3283
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3284
  msgid "c-qa"
3285
+ msgstr ""
3286
 
3287
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3288
  msgid "c-re"
3289
+ msgstr ""
3290
 
3291
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3292
  msgid "c-ro"
3293
+ msgstr ""
3294
 
3295
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3296
  msgid "c-ru"
3297
+ msgstr ""
3298
 
3299
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3300
  msgid "c-rw"
3301
+ msgstr ""
3302
 
3303
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3304
  msgid "c-kn"
3305
+ msgstr ""
3306
 
3307
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3308
  msgid "c-lc"
3309
+ msgstr ""
3310
 
3311
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3312
  msgid "c-mf"
3313
+ msgstr ""
3314
 
3315
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3316
  msgid "c-vc"
3317
+ msgstr ""
3318
 
3319
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3320
  msgid "c-ws"
3321
+ msgstr ""
3322
 
3323
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3324
  msgid "c-st"
3325
+ msgstr ""
3326
 
3327
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3328
  msgid "c-sa"
3329
+ msgstr ""
3330
 
3331
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3332
  msgid "c-sn"
3333
+ msgstr ""
3334
 
3335
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3336
  msgid "c-rs"
3337
+ msgstr ""
3338
 
3339
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3340
  msgid "c-sl"
3341
+ msgstr ""
3342
 
3343
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3344
  msgid "c-sg"
3345
+ msgstr ""
3346
 
3347
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3348
  msgid "c-sk"
3349
+ msgstr ""
3350
 
3351
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3352
  msgid "c-si"
3353
+ msgstr ""
3354
 
3355
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3356
  msgid "c-sb"
3357
+ msgstr ""
3358
 
3359
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3360
  msgid "c-so"
3361
+ msgstr ""
3362
 
3363
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3364
  msgid "c-za"
3365
+ msgstr ""
3366
 
3367
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3368
  msgid "c-gs"
3369
+ msgstr ""
3370
 
3371
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3372
  msgid "c-es"
3373
+ msgstr ""
3374
 
3375
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3376
  msgid "c-lk"
3377
+ msgstr ""
3378
 
3379
+ #: ../admin/view/wp-slimstat-reports.php:1625
3380
  msgid "c-sc"
3381
+ msgstr ""
3382
 
3383
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3384
  msgid "c-sd"
3385
+ msgstr ""
3386
 
3387
+ #: ../admin/view/wp-slimstat-reports.php:1625
3388
  msgid "c-ss"
3389
+ msgstr ""
3390
 
3391
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3392
  msgid "c-sr"
3393
+ msgstr ""
3394
 
3395
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3396
  msgid "c-sj"
3397
+ msgstr ""
3398
 
3399
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3400
  msgid "c-sz"
3401
+ msgstr ""
3402
 
3403
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3404
  msgid "c-se"
3405
+ msgstr ""
3406
 
3407
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3408
  msgid "c-ch"
3409
+ msgstr ""
3410
 
3411
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3412
  msgid "c-sy"
3413
+ msgstr ""
3414
 
3415
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3416
  msgid "c-tw"
3417
+ msgstr ""
3418
 
3419
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3420
  msgid "c-tj"
3421
+ msgstr ""
3422
 
3423
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3424
  msgid "c-tz"
3425
+ msgstr ""
3426
 
3427
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3428
  msgid "c-th"
3429
+ msgstr ""
3430
 
3431
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3432
  msgid "c-tl"
3433
+ msgstr ""
3434
 
3435
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3436
  msgid "c-tg"
3437
+ msgstr ""
3438
 
3439
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3440
  msgid "c-to"
3441
+ msgstr ""
3442
 
3443
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3444
  msgid "c-tt"
3445
+ msgstr ""
3446
 
3447
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3448
  msgid "c-tn"
3449
+ msgstr ""
3450
 
3451
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3452
  msgid "c-tr"
3453
+ msgstr ""
3454
 
3455
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3456
  msgid "c-tm"
3457
+ msgstr ""
3458
 
3459
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3460
  msgid "c-tc"
3461
+ msgstr ""
3462
 
3463
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3464
  msgid "c-ug"
3465
+ msgstr ""
3466
 
3467
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3468
  msgid "c-ua"
3469
+ msgstr ""
3470
 
3471
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3472
  msgid "c-ae"
3473
+ msgstr ""
3474
 
3475
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3476
  msgid "c-gb"
3477
+ msgstr ""
3478
 
3479
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3480
  msgid "c-us"
3481
+ msgstr ""
3482
 
3483
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3484
  msgid "c-uy"
3485
+ msgstr ""
3486
 
3487
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3488
  msgid "c-uz"
3489
+ msgstr ""
3490
 
3491
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3492
  msgid "c-vu"
3493
+ msgstr ""
3494
 
3495
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3496
  msgid "c-ve"
3497
+ msgstr ""
3498
 
3499
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3500
  msgid "c-vn"
3501
+ msgstr ""
3502
 
3503
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3504
  msgid "c-vg"
3505
+ msgstr ""
3506
 
3507
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3508
  msgid "c-vi"
3509
+ msgstr ""
3510
 
3511
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3512
  msgid "c-eh"
3513
+ msgstr ""
3514
 
3515
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3516
  msgid "c-ye"
3517
+ msgstr ""
3518
 
3519
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3520
  msgid "c-zm"
3521
+ msgstr ""
3522
 
3523
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3524
  msgid "c-zw"
3525
+ msgstr ""
3526
 
3527
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3528
  msgid "c-gg"
3529
+ msgstr ""
3530
 
3531
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3532
  msgid "c-je"
3533
+ msgstr ""
3534
 
3535
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3536
  msgid "c-im"
3537
+ msgstr ""
3538
 
3539
+ #: ../admin/view/wp-slimstat-reports.php:1625
 
3540
  msgid "c-mv"
3541
+ msgstr ""
3542
 
3543
+ #: ../admin/view/wp-slimstat-reports.php:1626
3544
  msgid "c-eu"
3545
+ msgstr ""
3546
 
3547
+ #: ../admin/view/wp-slimstat-reports.php:1740
3548
  msgid "src"
3549
  msgstr ""
3550
 
3551
+ #: ../admin/view/wp-slimstat-reports.php:1744
3552
  msgid "serp"
3553
  msgstr ""
3554
 
3555
+ #: ../admin/view/wp-slimstat-reports.php:1752
3556
  msgid "Go to the referring page"
3557
  msgstr ""
3558
 
3559
+ #: ../admin/view/wp-slimstat-reports.php:1771
3560
  msgid "Remove filter for"
3561
  msgstr ""
3562
 
3563
+ #: ../admin/view/wp-slimstat-reports.php:1776
3564
  msgid "Save"
3565
  msgstr ""
3566
 
3567
+ #: ../admin/wp-slimstat-admin.php:34
 
 
 
 
 
 
 
 
3568
  msgid "Access Log"
3569
  msgstr ""
3570
 
3571
+ #: ../admin/wp-slimstat-admin.php:40
3572
  msgid "Overview"
3573
  msgstr ""
3574
 
3575
+ #: ../admin/wp-slimstat-admin.php:46
3576
  msgid "Audience"
3577
  msgstr ""
3578
 
3579
+ #: ../admin/wp-slimstat-admin.php:52
3580
  msgid "Site Analysis"
3581
  msgstr ""
3582
 
3583
+ #: ../admin/wp-slimstat-admin.php:70
 
 
 
 
3584
  msgid "WordPress Dashboard"
3585
  msgstr ""
3586
 
3587
+ #: ../admin/wp-slimstat-admin.php:76
3588
  msgid "Inactive Reports"
3589
  msgstr ""
3590
 
3591
+ #: ../admin/wp-slimstat-admin.php:537 ../admin/wp-slimstat-admin.php:605
3592
+ msgid "Slimstat"
 
 
 
 
 
 
 
 
 
 
 
 
 
3593
  msgstr ""
3594
 
3595
+ #: ../admin/wp-slimstat-admin.php:625 ../admin/wp-slimstat-admin.php:653
3596
+ #: ../admin/wp-slimstat-admin.php:656
3597
+ msgid "Customize"
3598
  msgstr ""
3599
 
3600
+ #: ../admin/wp-slimstat-admin.php:735
3601
  msgid "Pageviews in the last "
3602
  msgstr ""
3603
 
3604
+ #: ../admin/wp-slimstat-admin.php:738
3605
  msgid "Unique IPs in the last "
3606
  msgstr ""
3607
 
3608
+ #: ../admin/wp-slimstat-admin.php:772
3609
  #, php-format
3610
  msgid ""
3611
  " And for keeping an eye on your web traffic with %sSlimStat Analytics%s."
3612
  msgstr ""
3613
 
3614
+ #: ../admin/wp-slimstat-admin.php:797
3615
  msgid "Show on screen"
3616
  msgstr ""
3617
 
3618
+ #: ../admin/wp-slimstat-admin.php:905
3619
  msgid "Already saved"
3620
  msgstr ""
3621
 
3622
+ #: ../admin/wp-slimstat-admin.php:913
3623
  msgid "Saved"
3624
  msgstr ""
3625
 
3626
+ #: ../admin/wp-slimstat-admin.php:933
3627
  msgid "Delete this filter"
3628
  msgstr ""
3629
 
3630
+ #: ../admin/wp-slimstat-admin.php:998
3631
  msgid "On"
3632
  msgstr ""
3633
 
3634
+ #: ../admin/wp-slimstat-admin.php:1067
3635
  msgid "Save Changes"
3636
  msgstr ""
3637
 
3638
+ #: ../admin/wp-slimstat-admin.php:1111
3639
  msgid "There was an error updating the following options:"
3640
  msgstr ""
3641
 
3642
+ #: ../admin/wp-slimstat-admin.php:1114
3643
  msgid "Your changes have been saved."
3644
  msgstr ""
3645
 
3646
+ #: ../admin/wp-slimstat-admin.php:1132
3647
  msgid "Definitions"
3648
  msgstr ""
3649
 
3650
+ #: ../admin/wp-slimstat-admin.php:1135
3651
  msgid "Pageview"
3652
  msgstr ""
3653
 
3654
+ #: ../admin/wp-slimstat-admin.php:1135
3655
  msgid ""
3656
  "A request to load a single HTML file (\"page\"). This should be contrasted "
3657
  "with a \"hit\", which refers to a request for any file from a web server. "
3658
  "Slimstat logs a pageview each time the tracking code is executed"
3659
  msgstr ""
3660
 
3661
+ #: ../admin/wp-slimstat-admin.php:1136
3662
  msgid "(Human) Visit"
3663
  msgstr ""
3664
 
3665
+ #: ../admin/wp-slimstat-admin.php:1136
3666
  msgid ""
3667
  "A period of interaction between a visitor's browser and your website, ending "
3668
  "when the browser is closed or when the user has been inactive on that site "
3669
  "for 30 minutes"
3670
  msgstr ""
3671
 
3672
+ #: ../admin/wp-slimstat-admin.php:1137
3673
  msgid ""
3674
  "Any user who has left a comment on your blog, and is thus identified by "
3675
  "Wordpress as a returning visitor"
3676
  msgstr ""
3677
 
3678
+ #: ../admin/wp-slimstat-admin.php:1138
3679
  msgid "Unique IP"
3680
  msgstr ""
3681
 
3682
+ #: ../admin/wp-slimstat-admin.php:1138
3683
  msgid ""
3684
  "Used to differentiate between multiple requests to download a file from one "
3685
  "internet address (IP) and requests originating from many distinct addresses; "
3687
  "from, it is useful, but not perfect"
3688
  msgstr ""
3689
 
3690
+ #: ../admin/wp-slimstat-admin.php:1139
3691
  msgid ""
3692
  "the originating IP address of a client connecting to a web server through an "
3693
  "HTTP proxy or load balancer"
3694
  msgstr ""
3695
 
3696
+ #: ../admin/wp-slimstat-admin.php:1140
3697
  msgid "Direct Traffic"
3698
  msgstr ""
3699
 
3700
+ #: ../admin/wp-slimstat-admin.php:1140
3701
  msgid ""
3702
  "All those people showing up to your Web site by typing in the URL of your "
3703
  "Web site coming or from a bookmark; some people also call this \"default "
3704
  "traffic\" or \"ambient traffic\""
3705
  msgstr ""
3706
 
3707
+ #: ../admin/wp-slimstat-admin.php:1141
3708
  msgid "Search Engine"
3709
  msgstr ""
3710
 
3711
+ #: ../admin/wp-slimstat-admin.php:1141
3712
  msgid ""
3713
  "Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
3714
  "as well as your paid (PPC/SEM) traffic, so be aware of that"
3715
  msgstr ""
3716
 
3717
+ #: ../admin/wp-slimstat-admin.php:1142 ../admin/wp-slimstat-admin.php:1158
3718
  msgid "Keywords used by your visitors to find your website on a search engine"
3719
  msgstr ""
3720
 
3721
+ #: ../admin/wp-slimstat-admin.php:1143
3722
  msgid "SERP"
3723
  msgstr ""
3724
 
3725
+ #: ../admin/wp-slimstat-admin.php:1143
3726
  msgid ""
3727
  "Short for search engine results page, the Web page that a search engine "
3728
  "returns with the results of its search. The value shown represents your rank "
3729
  "(or position) within that list of results"
3730
  msgstr ""
3731
 
3732
+ #: ../admin/wp-slimstat-admin.php:1144
3733
  msgid ""
3734
  "Any program used for accessing a website; this includes browsers, robots, "
3735
  "spiders and any other program that was used to retrieve information from the "
3736
  "site"
3737
  msgstr ""
3738
 
3739
+ #: ../admin/wp-slimstat-admin.php:1145
3740
  msgid ""
3741
  "A link from one domain to another is said to be outbound from its source "
3742
  "anchor and inbound to its target. This report lists all the links to other "
3743
  "websites followed by your visitors."
3744
  msgstr ""
3745
 
3746
+ #: ../admin/wp-slimstat-admin.php:1152
3747
  msgid "Basic Filters"
3748
  msgstr ""
3749
 
3750
+ #: ../admin/wp-slimstat-admin.php:1155
3751
  msgid "User agent (Firefox, Chrome, ...)"
3752
  msgstr ""
3753
 
3754
+ #: ../admin/wp-slimstat-admin.php:1156
3755
  msgid "2-letter code (us, ru, de, it, ...)"
3756
  msgstr ""
3757
 
3758
+ #: ../admin/wp-slimstat-admin.php:1157
3759
  msgid "IP"
3760
  msgstr ""
3761
 
3762
+ #: ../admin/wp-slimstat-admin.php:1157
3763
  msgid "Visitor's public IP address"
3764
  msgstr ""
3765
 
3766
+ #: ../admin/wp-slimstat-admin.php:1159
3767
  msgid ""
3768
  "Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
3769
  "en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
3770
  "column) for more information"
3771
  msgstr ""
3772
 
3773
+ #: ../admin/wp-slimstat-admin.php:1160
3774
  msgid ""
3775
  "Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
3776
  "\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
3777
  "manual page</a> for more information"
3778
  msgstr ""
3779
 
3780
+ #: ../admin/wp-slimstat-admin.php:1161
3781
  msgid "URL accessed on your site"
3782
  msgstr ""
3783
 
3784
+ #: ../admin/wp-slimstat-admin.php:1162
3785
  msgid "Complete address of the referrer page"
3786
  msgstr ""
3787
 
3788
+ #: ../admin/wp-slimstat-admin.php:1163
3789
  msgid "Visitor's Name"
3790
  msgstr ""
3791
 
3792
+ #: ../admin/wp-slimstat-admin.php:1163
3793
  msgid ""
3794
  "Visitors' names according to the cookie set by Wordpress after they leave a "
3795
  "comment"
3796
  msgstr ""
3797
 
3798
+ #: ../admin/wp-slimstat-admin.php:1171
3799
  msgid "Advanced Filters"
3800
  msgstr ""
3801
 
3802
+ #: ../admin/wp-slimstat-admin.php:1174
3803
  msgid "user agent version (9.0, 11, ...)"
3804
  msgstr ""
3805
 
3806
+ #: ../admin/wp-slimstat-admin.php:1175
3807
  msgid ""
3808
  "1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
3809
  "all others"
3810
  msgstr ""
3811
 
3812
+ #: ../admin/wp-slimstat-admin.php:1176
3813
  msgid "Pageview Attributes"
3814
  msgstr ""
3815
 
3816
+ #: ../admin/wp-slimstat-admin.php:1176
3817
  msgid ""
3818
  "this field is set to <em>[pre]</em> if the resource has been accessed "
3819
  "through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
3820
  "Link_prefetching_FAQ\">Link Prefetching</a> or similar techniques"
3821
  msgstr ""
3822
 
3823
+ #: ../admin/wp-slimstat-admin.php:1177
3824
  msgid "author associated to that post/page when the resource was accessed"
3825
  msgstr ""
3826
 
3827
+ #: ../admin/wp-slimstat-admin.php:1178
3828
  msgid "ID of the category/term associated to the resource, when available"
3829
  msgstr ""
3830
 
3831
+ #: ../admin/wp-slimstat-admin.php:1179
3832
  msgid "visitor's originating IP address, if available"
3833
  msgstr ""
3834
 
3835
+ #: ../admin/wp-slimstat-admin.php:1180
3836
  msgid ""
3837
  "post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
3838
  "post_type_archive, tag, taxonomy, category, date, author, archive, search, "
3841
  "information"
3842
  msgstr ""
3843
 
3844
+ #: ../admin/wp-slimstat-admin.php:1181
3845
  msgid "Screen Resolution"
3846
  msgstr ""
3847
 
3848
+ #: ../admin/wp-slimstat-admin.php:1181
3849
  msgid "viewport width and height (1024x768, 800x600, ...)"
3850
  msgstr ""
3851
 
3852
+ #: ../admin/wp-slimstat-admin.php:1182
3853
  msgid ""
3854
  "generally used in conjunction with <em>is not empty</em>, identifies human "
3855
  "visitors"
3856
  msgstr ""
3857
 
3858
+ #: ../admin/wp-slimstat-admin.php:1183
3859
  msgid "Date Filters"
3860
  msgstr ""
3861
 
3862
+ #: ../admin/wp-slimstat-admin.php:1183
3863
  msgid ""
3864
  "you can specify the timeframe by entering a number in the <em>interval</em> "
3865
  "field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
3866
  "year=blank, interval=-1 will set a year-to-date filter)"
3867
  msgstr ""
3868
 
3869
+ #: ../admin/wp-slimstat-admin.php:1184
3870
  msgid "SERP Position"
3871
  msgstr ""
3872
 
3873
+ #: ../admin/wp-slimstat-admin.php:1184
3874
  msgid ""
3875
  "set the filter to Referer contains cd=N&, where N is the position you are "
3876
  "looking for"
3877
  msgstr ""
3878
 
3879
+ #: ../browscap/browser.php:51
3880
+ msgid ""
3881
+ "This library requires at least PHP 5.5. Please ask your service provider to "
3882
+ "upgrade your server accordingly."
3883
+ msgstr ""
3884
+
3885
+ #: ../browscap/browser.php:55
3886
+ msgid "No updates are performed during AJAX requests."
3887
+ msgstr ""
3888
+
3889
+ #: ../browscap/browser.php:59
3890
+ msgid ""
3891
+ "Please set your <code>FS_METHOD</code> variable to \"direct\" in your wp-"
3892
+ "config.php file, or contact our support to obtain a copy of our Browscap "
3893
+ "Library."
3894
+ msgstr ""
3895
+
3896
+ #: ../browscap/browser.php:100
3897
+ msgid ""
3898
+ "The Browscap Library could not be opened on your filesystem. Please check "
3899
+ "your server permissions and try again."
3900
+ msgstr ""
3901
+
3902
+ #: ../browscap/browser.php:116
3903
+ msgid ""
3904
+ "There was an error checking the remote library version. Please try again "
3905
+ "later."
3906
+ msgstr ""
3907
+
3908
+ #: ../browscap/browser.php:123
3909
+ msgid "Your version of the library does not need to be updated."
3910
+ msgstr ""
3911
+
3912
+ #: ../browscap/browser.php:134
3913
+ msgid ""
3914
+ "There was an error saving the Browscap data file on your server. Please "
3915
+ "check your folder permissions."
3916
+ msgstr ""
3917
+
3918
+ #: ../browscap/browser.php:141
3919
+ msgid ""
3920
+ "There was an error downloading the Browscap data file from our server. "
3921
+ "Please try again later."
3922
+ msgstr ""
3923
+
3924
+ #: ../browscap/browser.php:150
3925
+ msgid ""
3926
+ "Could not initialize the WP Filesystem API. Please check your folder "
3927
+ "permissions and PHP configuration."
3928
+ msgstr ""
3929
+
3930
+ #: ../browscap/browser.php:166
3931
+ msgid ""
3932
+ "There was an error uncompressing the Browscap data file on your server. "
3933
+ "Please check your folder permissions and PHP configuration."
3934
+ msgstr ""
3935
+
3936
+ #: ../browscap/browser.php:174
3937
+ msgid "The Browscap data file has been installed on your server."
3938
+ msgstr ""
3939
+
3940
  #: ../languages/dynamic_strings.php:3
3941
  msgid "xx"
3942
+ msgstr ""
3943
 
3944
  #: ../languages/dynamic_strings.php:6
3945
  msgid "aix"
3946
+ msgstr ""
3947
 
3948
  #: ../languages/dynamic_strings.php:7
3949
  msgid "amiga"
3950
+ msgstr ""
3951
 
3952
  #: ../languages/dynamic_strings.php:8
3953
  msgid "android"
3954
+ msgstr ""
3955
 
3956
  #: ../languages/dynamic_strings.php:9
3957
  msgid "beos"
3958
+ msgstr ""
3959
 
3960
  #: ../languages/dynamic_strings.php:10
3961
  msgid "blackberry os"
3962
+ msgstr ""
3963
 
3964
  #: ../languages/dynamic_strings.php:11
3965
  msgid "centos"
3966
+ msgstr ""
3967
 
3968
  #: ../languages/dynamic_strings.php:12
3969
  msgid "chromeos"
3970
+ msgstr ""
3971
 
3972
  #: ../languages/dynamic_strings.php:13
3973
  msgid "commodore64"
3974
+ msgstr ""
3975
 
3976
  #: ../languages/dynamic_strings.php:14
3977
  msgid "cygwin"
3978
+ msgstr ""
3979
 
3980
  #: ../languages/dynamic_strings.php:15
3981
  msgid "debian"
3982
+ msgstr ""
3983
 
3984
  #: ../languages/dynamic_strings.php:16
3985
  msgid "digital unix"
3986
+ msgstr ""
3987
 
3988
  #: ../languages/dynamic_strings.php:17
3989
  msgid "fedora"
3990
+ msgstr ""
3991
 
3992
  #: ../languages/dynamic_strings.php:18
3993
  msgid "firefoxos"
3994
+ msgstr ""
3995
 
3996
  #: ../languages/dynamic_strings.php:19
3997
  msgid "freebsd"
3998
+ msgstr ""
3999
 
4000
  #: ../languages/dynamic_strings.php:20
4001
  msgid "gentoo"
4002
+ msgstr ""
4003
 
4004
  #: ../languages/dynamic_strings.php:21
4005
  msgid "hp-ux"
4006
+ msgstr ""
4007
 
4008
  #: ../languages/dynamic_strings.php:22
4009
  msgid "ios"
4010
+ msgstr ""
4011
 
4012
  #: ../languages/dynamic_strings.php:23
4013
  msgid "iphone os"
4014
+ msgstr ""
4015
 
4016
  #: ../languages/dynamic_strings.php:24
4017
  msgid "iphone osx"
4018
+ msgstr ""
4019
 
4020
  #: ../languages/dynamic_strings.php:25
4021
  msgid "irix"
4022
+ msgstr ""
4023
 
4024
  #: ../languages/dynamic_strings.php:26
4025
  msgid "java"
4026
+ msgstr ""
4027
 
4028
  #: ../languages/dynamic_strings.php:27
4029
  msgid "kanotix"
4030
+ msgstr ""
4031
 
4032
  #: ../languages/dynamic_strings.php:28
4033
  msgid "knoppix"
4034
+ msgstr ""
4035
 
4036
  #: ../languages/dynamic_strings.php:29
4037
  msgid "linux"
4038
+ msgstr ""
4039
 
4040
  #: ../languages/dynamic_strings.php:30
4041
  msgid "mac"
4042
+ msgstr ""
4043
 
4044
  #: ../languages/dynamic_strings.php:31
4045
  msgid "mac68k"
4046
+ msgstr ""
4047
 
4048
  #: ../languages/dynamic_strings.php:32
4049
+ msgid "macos"
4050
+ msgstr ""
4051
 
4052
  #: ../languages/dynamic_strings.php:33
4053
+ msgid "macosx"
4054
+ msgstr ""
4055
 
4056
  #: ../languages/dynamic_strings.php:34
4057
+ msgid "macppc"
4058
+ msgstr ""
4059
 
4060
  #: ../languages/dynamic_strings.php:35
4061
+ msgid "mandrake"
4062
+ msgstr ""
4063
 
4064
  #: ../languages/dynamic_strings.php:36
4065
+ msgid "mandriva"
4066
+ msgstr ""
4067
 
 
4068
  #: ../languages/dynamic_strings.php:37
4069
+ msgid "mepis"
4070
+ msgstr ""
4071
 
4072
  #: ../languages/dynamic_strings.php:38
4073
+ msgid "ms-dos"
4074
+ msgstr ""
4075
 
4076
  #: ../languages/dynamic_strings.php:39
4077
+ msgid "netbsd"
4078
+ msgstr ""
4079
 
4080
  #: ../languages/dynamic_strings.php:40
4081
+ msgid "nintendo"
4082
+ msgstr ""
4083
 
4084
  #: ../languages/dynamic_strings.php:41
4085
+ msgid "openbsd"
4086
+ msgstr ""
4087
 
4088
  #: ../languages/dynamic_strings.php:42
4089
+ msgid "openvms"
4090
+ msgstr ""
4091
 
4092
  #: ../languages/dynamic_strings.php:43
4093
+ msgid "os/2"
4094
+ msgstr ""
4095
 
4096
  #: ../languages/dynamic_strings.php:44
4097
+ msgid "palm"
4098
+ msgstr ""
4099
 
4100
  #: ../languages/dynamic_strings.php:45
4101
+ msgid "palmos"
4102
+ msgstr ""
4103
 
4104
  #: ../languages/dynamic_strings.php:46
4105
+ msgid "pclinuxos"
4106
+ msgstr ""
4107
 
4108
  #: ../languages/dynamic_strings.php:47
4109
+ msgid "playstation"
4110
+ msgstr ""
4111
 
4112
  #: ../languages/dynamic_strings.php:48
4113
+ msgid "powertv"
4114
+ msgstr ""
4115
 
4116
  #: ../languages/dynamic_strings.php:49
4117
+ msgid "redhat"
4118
+ msgstr ""
4119
 
4120
  #: ../languages/dynamic_strings.php:50
4121
+ msgid "rim os"
4122
+ msgstr ""
4123
 
4124
  #: ../languages/dynamic_strings.php:51
4125
+ msgid "risc os"
4126
+ msgstr ""
4127
 
4128
  #: ../languages/dynamic_strings.php:52
4129
+ msgid "slackware"
4130
+ msgstr ""
4131
 
4132
  #: ../languages/dynamic_strings.php:53
4133
+ msgid "solaris"
4134
+ msgstr ""
4135
 
4136
  #: ../languages/dynamic_strings.php:54
4137
+ msgid "sunos"
4138
+ msgstr ""
4139
 
4140
  #: ../languages/dynamic_strings.php:55
4141
+ msgid "suse"
4142
+ msgstr ""
4143
 
4144
  #: ../languages/dynamic_strings.php:56
4145
+ msgid "symbianos"
4146
+ msgstr ""
4147
 
4148
  #: ../languages/dynamic_strings.php:57
4149
+ msgid "ubuntu"
4150
+ msgstr ""
4151
 
4152
  #: ../languages/dynamic_strings.php:58
4153
+ msgid "unix"
4154
+ msgstr ""
4155
 
4156
  #: ../languages/dynamic_strings.php:59
4157
+ msgid "unknown"
4158
+ msgstr ""
4159
 
4160
  #: ../languages/dynamic_strings.php:60
4161
+ msgid "xandros"
4162
+ msgstr ""
4163
 
4164
  #: ../languages/dynamic_strings.php:61
4165
+ msgid "wap"
4166
+ msgstr ""
4167
 
4168
  #: ../languages/dynamic_strings.php:62
4169
+ msgid "webos"
4170
+ msgstr ""
4171
 
4172
  #: ../languages/dynamic_strings.php:63
4173
+ msgid "win10"
4174
+ msgstr ""
4175
 
4176
  #: ../languages/dynamic_strings.php:64
4177
+ msgid "win16"
4178
+ msgstr ""
4179
 
4180
  #: ../languages/dynamic_strings.php:65
4181
+ msgid "win2000"
4182
+ msgstr ""
4183
 
4184
  #: ../languages/dynamic_strings.php:66
4185
+ msgid "win2003"
4186
+ msgstr ""
4187
 
4188
  #: ../languages/dynamic_strings.php:67
4189
+ msgid "win31"
4190
+ msgstr ""
4191
+
4192
+ #: ../languages/dynamic_strings.php:68
4193
  msgid "win32"
4194
+ msgstr ""
4195
 
4196
+ #: ../languages/dynamic_strings.php:69 ../languages/dynamic_strings.php:70
4197
  msgid "win7"
4198
+ msgstr ""
4199
 
4200
+ #: ../languages/dynamic_strings.php:71
4201
  msgid "win8"
4202
+ msgstr ""
4203
 
4204
+ #: ../languages/dynamic_strings.php:72
4205
  msgid "win8.1"
4206
+ msgstr ""
4207
 
4208
+ #: ../languages/dynamic_strings.php:73
4209
  msgid "win95"
4210
+ msgstr ""
4211
 
4212
+ #: ../languages/dynamic_strings.php:74
4213
  msgid "win98"
4214
+ msgstr ""
4215
 
4216
+ #: ../languages/dynamic_strings.php:75
4217
  msgid "wince"
4218
+ msgstr ""
4219
 
4220
+ #: ../languages/dynamic_strings.php:76
4221
  msgid "winme"
4222
+ msgstr ""
4223
 
4224
+ #: ../languages/dynamic_strings.php:77
4225
  msgid "winnt"
4226
+ msgstr ""
4227
 
4228
+ #: ../languages/dynamic_strings.php:78
4229
  msgid "winphone7"
4230
+ msgstr ""
4231
 
4232
+ #: ../languages/dynamic_strings.php:79
4233
  msgid "winphone7.5"
4234
+ msgstr ""
4235
 
4236
+ #: ../languages/dynamic_strings.php:80
4237
  msgid "winphone8"
4238
+ msgstr ""
4239
 
4240
+ #: ../languages/dynamic_strings.php:81
4241
  msgid "winphone8.1"
4242
+ msgstr ""
4243
 
4244
+ #: ../languages/dynamic_strings.php:82
4245
  msgid "winrt"
4246
+ msgstr ""
4247
 
4248
+ #: ../languages/dynamic_strings.php:83
4249
  msgid "winvista"
4250
+ msgstr ""
4251
 
4252
+ #: ../languages/dynamic_strings.php:84
4253
  msgid "winxp"
4254
+ msgstr ""
4255
 
4256
+ #: ../languages/dynamic_strings.php:85
4257
  msgid "wyderos"
4258
+ msgstr ""
4259
 
4260
+ #: ../languages/dynamic_strings.php:86
4261
  msgid "zaurus"
4262
+ msgstr ""
 
 
 
 
4263
 
4264
  #: ../languages/dynamic_strings.php:89
4265
+ msgid "acrobat"
4266
+ msgstr ""
4267
 
4268
  #: ../languages/dynamic_strings.php:90
4269
+ msgid "director"
4270
+ msgstr ""
4271
 
4272
  #: ../languages/dynamic_strings.php:91
4273
+ msgid "flash"
4274
+ msgstr ""
4275
 
4276
  #: ../languages/dynamic_strings.php:92
4277
+ msgid "mediaplayer"
4278
+ msgstr ""
4279
 
4280
  #: ../languages/dynamic_strings.php:93
4281
+ msgid "quicktime"
4282
+ msgstr ""
4283
 
4284
  #: ../languages/dynamic_strings.php:94
4285
+ msgid "pdfviewer"
4286
+ msgstr ""
4287
 
4288
+ #: ../languages/dynamic_strings.php:95
4289
+ msgid "real"
4290
+ msgstr ""
4291
+
4292
+ #: ../languages/dynamic_strings.php:96
4293
+ msgid "silverlight"
4294
+ msgstr ""
4295
+
4296
+ #: ../languages/dynamic_strings.php:99
4297
  msgid "p-and"
4298
+ msgstr ""
4299
 
4300
+ #: ../languages/dynamic_strings.php:100
4301
  msgid "p-bla"
4302
+ msgstr ""
4303
 
4304
+ #: ../languages/dynamic_strings.php:101
4305
  msgid "p-chr"
4306
+ msgstr ""
4307
 
4308
+ #: ../languages/dynamic_strings.php:102
4309
  msgid "p-fir"
4310
+ msgstr ""
4311
 
4312
+ #: ../languages/dynamic_strings.php:103
4313
  msgid "p-fre"
4314
+ msgstr ""
4315
 
4316
+ #: ../languages/dynamic_strings.php:104
4317
  msgid "p-ios"
4318
+ msgstr ""
4319
 
4320
+ #: ../languages/dynamic_strings.php:105
4321
  msgid "p-jav"
4322
+ msgstr ""
4323
 
4324
+ #: ../languages/dynamic_strings.php:106
4325
  msgid "p-lin"
4326
+ msgstr ""
4327
 
4328
+ #: ../languages/dynamic_strings.php:107
4329
  msgid "p-mac"
4330
+ msgstr ""
4331
 
4332
+ #: ../languages/dynamic_strings.php:108
4333
  msgid "p-rim"
4334
+ msgstr ""
4335
 
4336
+ #: ../languages/dynamic_strings.php:109
4337
  msgid "p-sym"
4338
+ msgstr ""
4339
 
4340
+ #: ../languages/dynamic_strings.php:110
4341
  msgid "p-ubu"
4342
+ msgstr ""
4343
 
4344
+ #: ../languages/dynamic_strings.php:111
4345
  msgid "p-unk"
4346
+ msgstr ""
4347
 
4348
+ #: ../languages/dynamic_strings.php:112
4349
  msgid "p-win"
4350
+ msgstr ""
4351
 
4352
+ #: ../languages/dynamic_strings.php:115
 
4353
  msgid "l-af"
4354
+ msgstr ""
4355
 
4356
+ #: ../languages/dynamic_strings.php:116
 
4357
  msgid "l-af-za"
4358
+ msgstr ""
4359
 
4360
+ #: ../languages/dynamic_strings.php:117
 
4361
  msgid "l-ar"
4362
+ msgstr ""
4363
 
4364
+ #: ../languages/dynamic_strings.php:118
 
4365
  msgid "l-ar-ae"
4366
+ msgstr ""
4367
 
4368
+ #: ../languages/dynamic_strings.php:119
 
4369
  msgid "l-ar-bh"
4370
+ msgstr ""
4371
 
4372
+ #: ../languages/dynamic_strings.php:120
 
4373
  msgid "l-ar-dz"
4374
+ msgstr ""
4375
 
4376
+ #: ../languages/dynamic_strings.php:121
 
4377
  msgid "l-ar-eg"
4378
+ msgstr ""
4379
 
4380
+ #: ../languages/dynamic_strings.php:122
 
4381
  msgid "l-ar-iq"
4382
+ msgstr ""
4383
 
4384
+ #: ../languages/dynamic_strings.php:123
 
4385
  msgid "l-ar-jo"
4386
+ msgstr ""
4387
 
4388
+ #: ../languages/dynamic_strings.php:124
 
4389
  msgid "l-ar-kw"
4390
+ msgstr ""
4391
 
4392
+ #: ../languages/dynamic_strings.php:125
 
4393
  msgid "l-ar-lb"
4394
+ msgstr ""
4395
 
4396
+ #: ../languages/dynamic_strings.php:126
 
4397
  msgid "l-ar-ly"
4398
+ msgstr ""
4399
 
4400
+ #: ../languages/dynamic_strings.php:127
 
4401
  msgid "l-ar-ma"
4402
+ msgstr ""
4403
 
4404
+ #: ../languages/dynamic_strings.php:128
 
4405
  msgid "l-ar-om"
4406
+ msgstr ""
4407
 
4408
+ #: ../languages/dynamic_strings.php:129
 
4409
  msgid "l-ar-qa"
4410
+ msgstr ""
4411
 
4412
+ #: ../languages/dynamic_strings.php:130
 
4413
  msgid "l-ar-sa"
4414
+ msgstr ""
4415
 
4416
+ #: ../languages/dynamic_strings.php:131
 
4417
  msgid "l-ar-sy"
4418
+ msgstr ""
4419
 
4420
+ #: ../languages/dynamic_strings.php:132
 
4421
  msgid "l-ar-tn"
4422
+ msgstr ""
4423
 
4424
+ #: ../languages/dynamic_strings.php:133
 
4425
  msgid "l-ar-ye"
4426
+ msgstr ""
4427
 
4428
+ #: ../languages/dynamic_strings.php:134
 
4429
  msgid "l-az"
4430
+ msgstr ""
4431
 
4432
+ #: ../languages/dynamic_strings.php:135
 
4433
  msgid "l-az-az"
4434
+ msgstr ""
4435
 
4436
+ #: ../languages/dynamic_strings.php:136
 
4437
  msgid "l-be"
4438
+ msgstr ""
4439
 
4440
+ #: ../languages/dynamic_strings.php:137
 
4441
  msgid "l-be-by"
4442
+ msgstr ""
4443
 
4444
+ #: ../languages/dynamic_strings.php:138
 
4445
  msgid "l-bg"
4446
+ msgstr ""
4447
 
4448
+ #: ../languages/dynamic_strings.php:139
 
4449
  msgid "l-bg-bg"
4450
+ msgstr ""
4451
 
4452
+ #: ../languages/dynamic_strings.php:140
 
4453
  msgid "l-bs-ba"
4454
+ msgstr ""
4455
 
4456
+ #: ../languages/dynamic_strings.php:141
 
4457
  msgid "l-ca"
4458
+ msgstr ""
4459
 
4460
+ #: ../languages/dynamic_strings.php:142
 
4461
  msgid "l-ca-es"
4462
+ msgstr ""
4463
 
4464
+ #: ../languages/dynamic_strings.php:143
 
4465
  msgid "l-cs"
4466
+ msgstr ""
4467
 
4468
+ #: ../languages/dynamic_strings.php:144
 
4469
  msgid "l-cs-cz"
4470
+ msgstr ""
4471
 
4472
+ #: ../languages/dynamic_strings.php:145
 
4473
  msgid "l-cy"
4474
+ msgstr ""
4475
 
4476
+ #: ../languages/dynamic_strings.php:146
 
4477
  msgid "l-cy-gb"
4478
+ msgstr ""
4479
 
4480
+ #: ../languages/dynamic_strings.php:147
 
4481
  msgid "l-da"
4482
+ msgstr ""
4483
 
4484
+ #: ../languages/dynamic_strings.php:148
 
4485
  msgid "l-da-dk"
4486
+ msgstr ""
4487
 
4488
+ #: ../languages/dynamic_strings.php:149
 
4489
  msgid "l-de"
4490
+ msgstr ""
4491
 
4492
+ #: ../languages/dynamic_strings.php:150
 
4493
  msgid "l-de-at"
4494
+ msgstr ""
4495
 
4496
+ #: ../languages/dynamic_strings.php:151
 
4497
  msgid "l-de-ch"
4498
+ msgstr ""
4499
 
4500
+ #: ../languages/dynamic_strings.php:152
 
4501
  msgid "l-de-de"
4502
+ msgstr ""
4503
 
4504
+ #: ../languages/dynamic_strings.php:153
 
4505
  msgid "l-de-li"
4506
+ msgstr ""
4507
 
4508
+ #: ../languages/dynamic_strings.php:154
 
4509
  msgid "l-de-lu"
4510
+ msgstr ""
4511
 
4512
+ #: ../languages/dynamic_strings.php:155
 
4513
  msgid "l-dv"
4514
+ msgstr ""
4515
 
4516
+ #: ../languages/dynamic_strings.php:156
 
4517
  msgid "l-dv-mv"
4518
+ msgstr ""
4519
 
4520
+ #: ../languages/dynamic_strings.php:157
 
4521
  msgid "l-el"
4522
+ msgstr ""
4523
 
4524
+ #: ../languages/dynamic_strings.php:158
 
4525
  msgid "l-el-gr"
4526
+ msgstr ""
4527
 
4528
+ #: ../languages/dynamic_strings.php:159
 
4529
  msgid "l-en"
4530
+ msgstr ""
4531
 
4532
+ #: ../languages/dynamic_strings.php:160
 
4533
  msgid "l-en-au"
4534
+ msgstr ""
4535
 
4536
+ #: ../languages/dynamic_strings.php:161
 
4537
  msgid "l-en-bz"
4538
+ msgstr ""
4539
 
4540
+ #: ../languages/dynamic_strings.php:162
 
4541
  msgid "l-en-ca"
4542
+ msgstr ""
4543
 
4544
+ #: ../languages/dynamic_strings.php:163
 
4545
  msgid "l-en-cb"
4546
+ msgstr ""
4547
 
4548
+ #: ../languages/dynamic_strings.php:164
 
4549
  msgid "l-en-gb"
4550
+ msgstr ""
4551
 
4552
+ #: ../languages/dynamic_strings.php:165
 
4553
  msgid "l-en-ie"
4554
+ msgstr ""
4555
 
4556
+ #: ../languages/dynamic_strings.php:166
 
4557
  msgid "l-en-jm"
4558
+ msgstr ""
4559
 
4560
+ #: ../languages/dynamic_strings.php:167
 
4561
  msgid "l-en-nz"
4562
+ msgstr ""
4563
 
4564
+ #: ../languages/dynamic_strings.php:168
 
4565
  msgid "l-en-ph"
4566
+ msgstr ""
4567
 
4568
+ #: ../languages/dynamic_strings.php:169
 
4569
  msgid "l-en-tt"
4570
+ msgstr ""
4571
 
4572
+ #: ../languages/dynamic_strings.php:170
 
4573
  msgid "l-en-us"
4574
+ msgstr ""
4575
 
4576
+ #: ../languages/dynamic_strings.php:171
 
4577
  msgid "l-en-za"
4578
+ msgstr ""
4579
 
4580
+ #: ../languages/dynamic_strings.php:172
 
4581
  msgid "l-en-zw"
4582
+ msgstr ""
4583
 
4584
+ #: ../languages/dynamic_strings.php:173
 
4585
  msgid "l-eo"
4586
+ msgstr ""
4587
 
4588
+ #: ../languages/dynamic_strings.php:174
 
4589
  msgid "l-es"
4590
+ msgstr ""
4591
 
4592
+ #: ../languages/dynamic_strings.php:175
 
4593
  msgid "l-es-ar"
4594
+ msgstr ""
4595
 
4596
+ #: ../languages/dynamic_strings.php:176
 
4597
  msgid "l-es-bo"
4598
+ msgstr ""
4599
 
4600
+ #: ../languages/dynamic_strings.php:177
 
4601
  msgid "l-es-cl"
4602
+ msgstr ""
4603
 
4604
+ #: ../languages/dynamic_strings.php:178
 
4605
  msgid "l-es-co"
4606
+ msgstr ""
4607
 
4608
+ #: ../languages/dynamic_strings.php:179
 
4609
  msgid "l-es-cr"
4610
+ msgstr ""
4611
 
4612
+ #: ../languages/dynamic_strings.php:180
 
4613
  msgid "l-es-do"
4614
+ msgstr ""
4615
 
4616
+ #: ../languages/dynamic_strings.php:181
 
4617
  msgid "l-es-ec"
4618
+ msgstr ""
4619
 
4620
+ #: ../languages/dynamic_strings.php:182
 
4621
  msgid "l-es-es"
4622
+ msgstr ""
4623
 
4624
+ #: ../languages/dynamic_strings.php:183
 
4625
  msgid "l-es-gt"
4626
+ msgstr ""
4627
 
4628
+ #: ../languages/dynamic_strings.php:184
 
4629
  msgid "l-es-hn"
4630
+ msgstr ""
4631
 
4632
+ #: ../languages/dynamic_strings.php:185
 
4633
  msgid "l-es-mx"
4634
+ msgstr ""
4635
 
4636
+ #: ../languages/dynamic_strings.php:186
 
4637
  msgid "l-es-ni"
4638
+ msgstr ""
4639
 
4640
+ #: ../languages/dynamic_strings.php:187
 
4641
  msgid "l-es-pa"
4642
+ msgstr ""
4643
 
4644
+ #: ../languages/dynamic_strings.php:188
 
4645
  msgid "l-es-pe"
4646
+ msgstr ""
4647
 
4648
+ #: ../languages/dynamic_strings.php:189
 
4649
  msgid "l-es-pr"
4650
+ msgstr ""
4651
 
4652
+ #: ../languages/dynamic_strings.php:190
 
4653
  msgid "l-es-py"
4654
+ msgstr ""
4655
 
4656
+ #: ../languages/dynamic_strings.php:191
 
4657
  msgid "l-es-sv"
4658
+ msgstr ""
4659
 
4660
+ #: ../languages/dynamic_strings.php:192
 
4661
  msgid "l-es-uy"
4662
+ msgstr ""
4663
 
4664
+ #: ../languages/dynamic_strings.php:193
 
4665
  msgid "l-es-ve"
4666
+ msgstr ""
4667
 
4668
+ #: ../languages/dynamic_strings.php:194
 
4669
  msgid "l-et"
4670
+ msgstr ""
4671
 
4672
+ #: ../languages/dynamic_strings.php:195
 
4673
  msgid "l-et-ee"
4674
+ msgstr ""
4675
 
4676
+ #: ../languages/dynamic_strings.php:196
 
4677
  msgid "l-eu"
4678
+ msgstr ""
4679
 
4680
+ #: ../languages/dynamic_strings.php:197
 
4681
  msgid "l-eu-es"
4682
+ msgstr ""
4683
 
4684
+ #: ../languages/dynamic_strings.php:198
 
4685
  msgid "l-fa"
4686
+ msgstr ""
4687
 
4688
+ #: ../languages/dynamic_strings.php:199
 
4689
  msgid "l-fa-ir"
4690
+ msgstr ""
4691
 
4692
+ #: ../languages/dynamic_strings.php:200
 
4693
  msgid "l-fi"
4694
+ msgstr ""
4695
 
4696
+ #: ../languages/dynamic_strings.php:201
 
4697
  msgid "l-fi-fi"
4698
+ msgstr ""
4699
 
4700
+ #: ../languages/dynamic_strings.php:202
 
4701
  msgid "l-fo"
4702
+ msgstr ""
4703
 
4704
+ #: ../languages/dynamic_strings.php:203
 
4705
  msgid "l-fo-fo"
4706
+ msgstr ""
4707
 
4708
+ #: ../languages/dynamic_strings.php:204
 
4709
  msgid "l-fr"
4710
+ msgstr ""
4711
 
4712
+ #: ../languages/dynamic_strings.php:205
 
4713
  msgid "l-fr-be"
4714
+ msgstr ""
4715
 
4716
+ #: ../languages/dynamic_strings.php:206
 
4717
  msgid "l-fr-ca"
4718
+ msgstr ""
4719
 
4720
+ #: ../languages/dynamic_strings.php:207
 
4721
  msgid "l-fr-ch"
4722
+ msgstr ""
4723
 
4724
+ #: ../languages/dynamic_strings.php:208
 
4725
  msgid "l-fr-fr"
4726
+ msgstr ""
4727
 
4728
+ #: ../languages/dynamic_strings.php:209
 
4729
  msgid "l-fr-lu"
4730
+ msgstr ""
4731
 
4732
+ #: ../languages/dynamic_strings.php:210
 
4733
  msgid "l-fr-mc"
4734
+ msgstr ""
4735
 
4736
+ #: ../languages/dynamic_strings.php:211
 
4737
  msgid "l-gl"
4738
+ msgstr ""
4739
 
4740
+ #: ../languages/dynamic_strings.php:212
 
4741
  msgid "l-gl-es"
4742
+ msgstr ""
4743
 
4744
+ #: ../languages/dynamic_strings.php:213
 
4745
  msgid "l-gu"
4746
+ msgstr ""
4747
 
4748
+ #: ../languages/dynamic_strings.php:214
 
4749
  msgid "l-gu-in"
4750
+ msgstr ""
4751
 
4752
+ #: ../languages/dynamic_strings.php:215
 
4753
  msgid "l-he"
4754
+ msgstr ""
4755
 
4756
+ #: ../languages/dynamic_strings.php:216
 
4757
  msgid "l-he-il"
4758
+ msgstr ""
4759
 
4760
+ #: ../languages/dynamic_strings.php:217
 
4761
  msgid "l-hi"
4762
+ msgstr ""
4763
 
4764
+ #: ../languages/dynamic_strings.php:218
 
4765
  msgid "l-hi-in"
4766
+ msgstr ""
4767
 
4768
+ #: ../languages/dynamic_strings.php:219
 
4769
  msgid "l-hr"
4770
+ msgstr ""
4771
 
4772
+ #: ../languages/dynamic_strings.php:220
 
4773
  msgid "l-hr-ba"
4774
+ msgstr ""
4775
 
4776
+ #: ../languages/dynamic_strings.php:221
 
4777
  msgid "l-hr-hr"
4778
+ msgstr ""
4779
 
4780
+ #: ../languages/dynamic_strings.php:222
 
4781
  msgid "l-hu"
4782
+ msgstr ""
4783
 
4784
+ #: ../languages/dynamic_strings.php:223
 
4785
  msgid "l-hu-hu"
4786
+ msgstr ""
4787
 
4788
+ #: ../languages/dynamic_strings.php:224
 
4789
  msgid "l-hy"
4790
+ msgstr ""
4791
 
4792
+ #: ../languages/dynamic_strings.php:225
 
4793
  msgid "l-hy-am"
4794
+ msgstr ""
4795
 
4796
+ #: ../languages/dynamic_strings.php:226
4797
  msgid "l-id"
4798
+ msgstr ""
4799
 
4800
+ #: ../languages/dynamic_strings.php:227
4801
  msgid "l-id-id"
4802
+ msgstr ""
4803
 
4804
+ #: ../languages/dynamic_strings.php:228
 
4805
  msgid "l-is"
4806
+ msgstr ""
4807
 
4808
+ #: ../languages/dynamic_strings.php:229
 
4809
  msgid "l-is-is"
4810
+ msgstr ""
4811
 
4812
+ #: ../languages/dynamic_strings.php:230
 
4813
  msgid "l-it"
4814
+ msgstr ""
4815
 
4816
+ #: ../languages/dynamic_strings.php:231
 
4817
  msgid "l-it-ch"
4818
+ msgstr ""
4819
 
4820
+ #: ../languages/dynamic_strings.php:232
 
4821
  msgid "l-it-it"
4822
+ msgstr ""
4823
 
4824
+ #: ../languages/dynamic_strings.php:233
 
4825
  msgid "l-ja"
4826
+ msgstr ""
4827
 
4828
+ #: ../languages/dynamic_strings.php:234
 
4829
  msgid "l-ja-jp"
4830
+ msgstr ""
4831
 
4832
+ #: ../languages/dynamic_strings.php:235
 
4833
  msgid "l-ka"
4834
+ msgstr ""
4835
 
4836
+ #: ../languages/dynamic_strings.php:236
 
4837
  msgid "l-ka-ge"
4838
+ msgstr ""
4839
 
4840
+ #: ../languages/dynamic_strings.php:237
 
4841
  msgid "l-kk"
4842
+ msgstr ""
4843
 
4844
+ #: ../languages/dynamic_strings.php:238
 
4845
  msgid "l-kk-kz"
4846
+ msgstr ""
4847
 
4848
+ #: ../languages/dynamic_strings.php:239
 
4849
  msgid "l-kn"
4850
+ msgstr ""
4851
 
4852
+ #: ../languages/dynamic_strings.php:240
 
4853
  msgid "l-kn-in"
4854
+ msgstr ""
4855
 
4856
+ #: ../languages/dynamic_strings.php:241
 
4857
  msgid "l-ko"
4858
+ msgstr ""
4859
 
4860
+ #: ../languages/dynamic_strings.php:242
 
4861
  msgid "l-ko-kr"
4862
+ msgstr ""
4863
 
4864
+ #: ../languages/dynamic_strings.php:243
 
4865
  msgid "l-kok"
4866
+ msgstr ""
4867
 
4868
+ #: ../languages/dynamic_strings.php:244
 
4869
  msgid "l-kok-in"
4870
+ msgstr ""
4871
 
4872
+ #: ../languages/dynamic_strings.php:245
 
4873
  msgid "l-ky"
4874
+ msgstr ""
4875
 
4876
+ #: ../languages/dynamic_strings.php:246
 
4877
  msgid "l-ky-kg"
4878
+ msgstr ""
4879
 
4880
+ #: ../languages/dynamic_strings.php:247
 
4881
  msgid "l-lt"
4882
+ msgstr ""
4883
 
4884
+ #: ../languages/dynamic_strings.php:248
 
4885
  msgid "l-lt-lt"
4886
+ msgstr ""
4887
 
4888
+ #: ../languages/dynamic_strings.php:249
 
4889
  msgid "l-lv"
4890
+ msgstr ""
4891
 
4892
+ #: ../languages/dynamic_strings.php:250
 
4893
  msgid "l-lv-lv"
4894
+ msgstr ""
4895
 
4896
+ #: ../languages/dynamic_strings.php:251
 
4897
  msgid "l-mi"
4898
+ msgstr ""
4899
 
4900
+ #: ../languages/dynamic_strings.php:252
 
4901
  msgid "l-mi-nz"
4902
+ msgstr ""
4903
 
4904
+ #: ../languages/dynamic_strings.php:253
 
4905
  msgid "l-mk"
4906
+ msgstr ""
4907
 
4908
+ #: ../languages/dynamic_strings.php:254
 
4909
  msgid "l-mk-ml"
4910
+ msgstr ""
4911
 
4912
+ #: ../languages/dynamic_strings.php:255
 
4913
  msgid "l-mn"
4914
+ msgstr ""
4915
 
4916
+ #: ../languages/dynamic_strings.php:256
 
4917
  msgid "l-mn-mn"
4918
+ msgstr ""
4919
 
4920
+ #: ../languages/dynamic_strings.php:257
 
4921
  msgid "l-mr"
4922
+ msgstr ""
4923
 
4924
+ #: ../languages/dynamic_strings.php:258
 
4925
  msgid "l-mr-in"
4926
+ msgstr ""
4927
 
4928
+ #: ../languages/dynamic_strings.php:259
 
4929
  msgid "l-ms"
4930
+ msgstr ""
4931
 
4932
+ #: ../languages/dynamic_strings.php:260
 
4933
  msgid "l-ms-bn"
4934
+ msgstr ""
4935
 
4936
+ #: ../languages/dynamic_strings.php:261
 
4937
  msgid "l-ms-my"
4938
+ msgstr ""
4939
 
4940
+ #: ../languages/dynamic_strings.php:262
 
4941
  msgid "l-mt"
4942
+ msgstr ""
4943
 
4944
+ #: ../languages/dynamic_strings.php:263
 
4945
  msgid "l-mt-mt"
4946
+ msgstr ""
4947
 
4948
+ #: ../languages/dynamic_strings.php:264
 
4949
  msgid "l-nb"
4950
+ msgstr ""
4951
 
4952
+ #: ../languages/dynamic_strings.php:265
 
4953
  msgid "l-nb-no"
4954
+ msgstr ""
4955
 
4956
+ #: ../languages/dynamic_strings.php:266
 
4957
  msgid "l-nl"
4958
+ msgstr ""
4959
 
4960
+ #: ../languages/dynamic_strings.php:267
 
4961
  msgid "l-nl-be"
4962
+ msgstr ""
4963
 
4964
+ #: ../languages/dynamic_strings.php:268
 
4965
  msgid "l-nl-nl"
4966
+ msgstr ""
4967
 
4968
+ #: ../languages/dynamic_strings.php:269
 
4969
  msgid "l-nn-no"
4970
+ msgstr ""
4971
 
4972
+ #: ../languages/dynamic_strings.php:270
4973
  msgid "l-ns"
4974
+ msgstr ""
4975
 
4976
+ #: ../languages/dynamic_strings.php:271
4977
  msgid "l-ns-za"
4978
+ msgstr ""
4979
 
4980
+ #: ../languages/dynamic_strings.php:272
 
4981
  msgid "l-pa"
4982
+ msgstr ""
4983
 
4984
+ #: ../languages/dynamic_strings.php:273
 
4985
  msgid "l-pa-in"
4986
+ msgstr ""
4987
 
4988
+ #: ../languages/dynamic_strings.php:274
 
4989
  msgid "l-pl"
4990
+ msgstr ""
4991
 
4992
+ #: ../languages/dynamic_strings.php:275
 
4993
  msgid "l-pl-pl"
4994
+ msgstr ""
4995
 
4996
+ #: ../languages/dynamic_strings.php:276
 
4997
  msgid "l-ps"
4998
+ msgstr ""
4999
 
5000
+ #: ../languages/dynamic_strings.php:277
 
5001
  msgid "l-ps-ar"
5002
+ msgstr ""
5003
 
5004
+ #: ../languages/dynamic_strings.php:278
 
5005
  msgid "l-pt"
5006
+ msgstr ""
5007
 
5008
+ #: ../languages/dynamic_strings.php:279
 
5009
  msgid "l-pt-br"
5010
+ msgstr ""
5011
 
5012
+ #: ../languages/dynamic_strings.php:280
 
5013
  msgid "l-pt-pt"
5014
+ msgstr ""
5015
 
5016
+ #: ../languages/dynamic_strings.php:281
 
5017
  msgid "l-qu"
5018
+ msgstr ""
5019
 
5020
+ #: ../languages/dynamic_strings.php:282
 
5021
  msgid "l-qu-bo"
5022
+ msgstr ""
5023
 
5024
+ #: ../languages/dynamic_strings.php:283
 
5025
  msgid "l-qu-ec"
5026
+ msgstr ""
5027
 
5028
+ #: ../languages/dynamic_strings.php:284
 
5029
  msgid "l-qu-pe"
5030
+ msgstr ""
5031
 
5032
+ #: ../languages/dynamic_strings.php:285
 
5033
  msgid "l-ro"
5034
+ msgstr ""
5035
 
5036
+ #: ../languages/dynamic_strings.php:286
 
5037
  msgid "l-ro-ro"
5038
+ msgstr ""
5039
 
5040
+ #: ../languages/dynamic_strings.php:287
 
5041
  msgid "l-ru"
5042
+ msgstr ""
5043
 
5044
+ #: ../languages/dynamic_strings.php:288
 
5045
  msgid "l-ru-ru"
5046
+ msgstr ""
5047
 
5048
+ #: ../languages/dynamic_strings.php:289
5049
  msgid "l-sa"
5050
+ msgstr ""
5051
 
5052
+ #: ../languages/dynamic_strings.php:290
5053
  msgid "l-sa-in"
5054
+ msgstr ""
5055
 
5056
+ #: ../languages/dynamic_strings.php:291
 
5057
  msgid "l-se"
5058
+ msgstr ""
5059
 
5060
+ #: ../languages/dynamic_strings.php:292
 
5061
  msgid "l-se-fi"
5062
+ msgstr ""
5063
 
5064
+ #: ../languages/dynamic_strings.php:293
 
5065
  msgid "l-se-no"
5066
+ msgstr ""
5067
 
5068
+ #: ../languages/dynamic_strings.php:294
 
5069
  msgid "l-se-se"
5070
+ msgstr ""
5071
 
5072
+ #: ../languages/dynamic_strings.php:295
 
5073
  msgid "l-sk"
5074
+ msgstr ""
5075
 
5076
+ #: ../languages/dynamic_strings.php:296
 
5077
  msgid "l-sk-sk"
5078
+ msgstr ""
5079
 
5080
+ #: ../languages/dynamic_strings.php:297
 
5081
  msgid "l-sl"
5082
+ msgstr ""
5083
 
5084
+ #: ../languages/dynamic_strings.php:298
 
5085
  msgid "l-sl-si"
5086
+ msgstr ""
5087
 
5088
+ #: ../languages/dynamic_strings.php:299
 
5089
  msgid "l-sq"
5090
+ msgstr ""
5091
 
5092
+ #: ../languages/dynamic_strings.php:300
 
5093
  msgid "l-sq-al"
5094
+ msgstr ""
5095
 
5096
+ #: ../languages/dynamic_strings.php:301
 
5097
  msgid "l-sr-ba"
5098
+ msgstr ""
5099
 
5100
+ #: ../languages/dynamic_strings.php:302
 
5101
  msgid "l-sr-sp"
5102
+ msgstr ""
5103
 
5104
+ #: ../languages/dynamic_strings.php:303
 
5105
  msgid "l-sv"
5106
+ msgstr ""
5107
 
5108
+ #: ../languages/dynamic_strings.php:304
 
5109
  msgid "l-sv-fi"
5110
+ msgstr ""
5111
 
5112
+ #: ../languages/dynamic_strings.php:305
 
5113
  msgid "l-sv-se"
5114
+ msgstr ""
5115
 
5116
+ #: ../languages/dynamic_strings.php:306
 
5117
  msgid "l-sw"
5118
+ msgstr ""
5119
 
5120
+ #: ../languages/dynamic_strings.php:307
 
5121
  msgid "l-sw-ke"
5122
+ msgstr ""
5123
 
5124
+ #: ../languages/dynamic_strings.php:308
 
5125
  msgid "l-ta"
5126
+ msgstr ""
5127
 
5128
+ #: ../languages/dynamic_strings.php:309
 
5129
  msgid "l-ta-in"
5130
+ msgstr ""
5131
 
5132
+ #: ../languages/dynamic_strings.php:310
 
5133
  msgid "l-te"
5134
+ msgstr ""
5135
 
5136
+ #: ../languages/dynamic_strings.php:311
 
5137
  msgid "l-te-in"
5138
+ msgstr ""
5139
 
5140
+ #: ../languages/dynamic_strings.php:312
 
5141
  msgid "l-th"
5142
+ msgstr ""
5143
 
5144
+ #: ../languages/dynamic_strings.php:313
 
5145
  msgid "l-th-th"
5146
+ msgstr ""
5147
 
5148
+ #: ../languages/dynamic_strings.php:314
 
5149
  msgid "l-tl"
5150
+ msgstr ""
5151
 
5152
+ #: ../languages/dynamic_strings.php:315
 
5153
  msgid "l-tl-ph"
5154
+ msgstr ""
5155
 
5156
+ #: ../languages/dynamic_strings.php:316
 
5157
  msgid "l-tn"
5158
+ msgstr ""
5159
 
5160
+ #: ../languages/dynamic_strings.php:317
 
5161
  msgid "l-tn-za"
5162
+ msgstr ""
5163
 
5164
+ #: ../languages/dynamic_strings.php:318
 
5165
  msgid "l-tr"
5166
+ msgstr ""
5167
 
5168
+ #: ../languages/dynamic_strings.php:319
 
5169
  msgid "l-tr-tr"
5170
+ msgstr ""
5171
 
5172
+ #: ../languages/dynamic_strings.php:320
 
5173
  msgid "l-tt"
5174
+ msgstr ""
5175
 
5176
+ #: ../languages/dynamic_strings.php:321
 
5177
  msgid "l-tt-ru"
5178
+ msgstr ""
5179
 
5180
+ #: ../languages/dynamic_strings.php:322
 
5181
  msgid "l-ts"
5182
+ msgstr ""
5183
 
5184
+ #: ../languages/dynamic_strings.php:323
 
5185
  msgid "l-uk"
5186
+ msgstr ""
5187
 
5188
+ #: ../languages/dynamic_strings.php:324
 
5189
  msgid "l-uk-ua"
5190
+ msgstr ""
5191
 
5192
+ #: ../languages/dynamic_strings.php:325
 
5193
  msgid "l-ur"
5194
+ msgstr ""
5195
 
5196
+ #: ../languages/dynamic_strings.php:326
 
5197
  msgid "l-ur-pk"
5198
+ msgstr ""
5199
 
5200
+ #: ../languages/dynamic_strings.php:327
 
5201
  msgid "l-uz"
5202
+ msgstr ""
5203
 
5204
+ #: ../languages/dynamic_strings.php:328
 
5205
  msgid "l-uz-uz"
5206
+ msgstr ""
5207
 
5208
+ #: ../languages/dynamic_strings.php:329
 
5209
  msgid "l-vi"
5210
+ msgstr ""
5211
 
5212
+ #: ../languages/dynamic_strings.php:330
 
5213
  msgid "l-vi-vn"
5214
+ msgstr ""
5215
 
5216
+ #: ../languages/dynamic_strings.php:331
 
5217
  msgid "l-xh"
5218
+ msgstr ""
5219
 
5220
+ #: ../languages/dynamic_strings.php:332
 
5221
  msgid "l-xh-za"
5222
+ msgstr ""
5223
 
5224
+ #: ../languages/dynamic_strings.php:333
 
5225
  msgid "l-zh"
5226
+ msgstr ""
5227
 
5228
+ #: ../languages/dynamic_strings.php:334
 
5229
  msgid "l-zh-cn"
5230
+ msgstr ""
5231
 
5232
+ #: ../languages/dynamic_strings.php:335
 
5233
  msgid "l-zh-hk"
5234
+ msgstr ""
5235
 
5236
+ #: ../languages/dynamic_strings.php:336
 
5237
  msgid "l-zh-mo"
5238
+ msgstr ""
5239
 
5240
+ #: ../languages/dynamic_strings.php:337
 
5241
  msgid "l-zh-sg"
5242
+ msgstr ""
5243
 
5244
+ #: ../languages/dynamic_strings.php:338
 
5245
  msgid "l-zh-tw"
5246
+ msgstr ""
5247
 
5248
+ #: ../languages/dynamic_strings.php:339
 
5249
  msgid "l-zu"
5250
+ msgstr ""
5251
 
5252
+ #: ../languages/dynamic_strings.php:340
 
5253
  msgid "l-zu-za"
5254
+ msgstr ""
5255
 
5256
+ #: ../languages/dynamic_strings.php:342
 
5257
  msgid "l-empty"
5258
+ msgstr ""
5259
 
5260
+ #: ../languages/dynamic_strings.php:343
 
5261
  msgid "l-xx"
5262
+ msgstr ""
5263
 
5264
+ #: ../languages/dynamic_strings.php:345
5265
  msgid "c-xy"
5266
+ msgstr ""
5267
+
5268
+ #: ../wp-slimstat.php:139 ../wp-slimstat.php:255
5269
+ msgid "Tracker is turned off, but client-side tracking code is still running."
5270
+ msgstr ""
5271
+
5272
+ #: ../wp-slimstat.php:270 ../wp-slimstat.php:698
5273
+ msgid "Pageview filtered by third-party code"
5274
+ msgstr ""
5275
+
5276
+ #: ../wp-slimstat.php:277
5277
+ msgid "Browser sent DNT header request"
5278
+ msgstr ""
5279
+
5280
+ #: ../wp-slimstat.php:300
5281
+ msgid "Visitor has opted out of tracking"
5282
+ msgstr ""
5283
+
5284
+ #: ../wp-slimstat.php:327
5285
+ msgid "Visitor has not opted in to be tracked"
5286
+ msgstr ""
5287
+
5288
+ #: ../wp-slimstat.php:337
5289
+ msgid "Empty or not supported IP address format"
5290
+ msgstr ""
5291
+
5292
+ #: ../wp-slimstat.php:354
5293
+ #, php-format
5294
+ msgid "Malformed referrer URL: %s (IP: %s)"
5295
+ msgstr ""
5296
 
5297
+ #: ../wp-slimstat.php:355
5298
+ #, php-format
5299
+ msgid "Malformed referrer URL: %s"
5300
+ msgstr ""
5301
+
5302
+ #: ../wp-slimstat.php:360
5303
+ #, php-format
5304
+ msgid "Attempted XSS Injection: %s (IP: %s)"
5305
  msgstr ""
5306
 
5307
+ #: ../wp-slimstat.php:361
5308
  #, php-format
5309
+ msgid "Attempted XSS Injection: %s"
5310
  msgstr ""
5311
 
5312
+ #: ../wp-slimstat.php:385
5313
  #, php-format
5314
+ msgid "Referrer %s is blacklisted"
5315
  msgstr ""
5316
 
5317
+ #: ../wp-slimstat.php:402
5318
  #, php-format
5319
+ msgid "Content Type %s is blacklisted"
5320
  msgstr ""
5321
 
5322
+ #: ../wp-slimstat.php:452
5323
+ msgid "Malformed URL"
5324
  msgstr ""
5325
 
5326
+ #: ../wp-slimstat.php:485
5327
  #, php-format
5328
+ msgid "Permalink %s is blacklisted"
5329
  msgstr ""
5330
 
5331
+ #: ../wp-slimstat.php:498
5332
  #, php-format
5333
+ msgid "Logged in user %s not tracked"
5334
  msgstr ""
5335
 
5336
+ #: ../wp-slimstat.php:506
5337
  #, php-format
5338
+ msgid "User with capability %s not tracked"
5339
  msgstr ""
5340
 
5341
+ #: ../wp-slimstat.php:515
5342
  #, php-format
5343
+ msgid "User %s is blacklisted"
5344
  msgstr ""
5345
 
5346
+ #: ../wp-slimstat.php:539
5347
  #, php-format
5348
+ msgid "Spammer %s not tracked"
5349
  msgstr ""
5350
 
5351
+ #: ../wp-slimstat.php:568
5352
  #, php-format
5353
+ msgid "IP address %s is blacklisted"
5354
  msgstr ""
5355
 
5356
+ #: ../wp-slimstat.php:585
5357
+ msgid ""
5358
+ "Your MaxMind data file is invalid. Please uninstall it using the button in "
5359
+ "Settings > Maintenance."
5360
+ msgstr ""
5361
+
5362
+ #: ../wp-slimstat.php:627
5363
+ #, php-format
5364
+ msgid "Country %s is blacklisted"
5365
  msgstr ""
5366
 
5367
+ #: ../wp-slimstat.php:636
5368
+ msgid "Prefetch requests are ignored"
5369
  msgstr ""
5370
 
5371
+ #: ../wp-slimstat.php:652
5372
+ msgid "Bot not tracked"
5373
+ msgstr ""
5374
+
5375
+ #: ../wp-slimstat.php:660
5376
  #, php-format
5377
+ msgid "Browser %s is blacklisted"
5378
  msgstr ""
5379
 
5380
+ #: ../wp-slimstat.php:672
5381
+ #, php-format
5382
+ msgid "Operating System %s is blacklisted"
5383
  msgstr ""
5384
 
5385
+ #: ../wp-slimstat.php:1114
5386
  msgid "Invalid payload string. Try clearing your WordPress cache."
5387
  msgstr ""
5388
 
5389
+ #: ../wp-slimstat.php:1125
5390
  msgid "Invalid data signature. Try clearing your WordPress cache."
5391
  msgstr ""
5392
 
5393
+ #: ../wp-slimstat.php:1257
5394
+ msgid ""
5395
+ "The geolocation database cannot be updated. Please check your server's file "
5396
+ "permissions and try again."
5397
+ msgstr ""
5398
+
5399
+ #: ../wp-slimstat.php:1270
5400
  msgid "There was an error downloading the MaxMind Geolite DB:"
5401
  msgstr ""
5402
 
5403
+ #: ../wp-slimstat.php:1278 ../wp-slimstat.php:1287
5404
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5405
  msgstr ""
5406
 
5407
+ #: ../wp-slimstat.php:1282
5408
  msgid "Function gzopen not defined. Aborting."
5409
  msgstr ""
5410
 
5411
+ #: ../wp-slimstat.php:1292
5412
+ msgid "There was an error opening the MaxMind Geolite DB."
5413
+ msgstr ""
5414
+
5415
+ #: ../wp-slimstat.php:1305
5416
+ msgid "There was an error creating the MaxMind Geolite DB."
5417
+ msgstr ""
5418
+
5419
+ #: ../wp-slimstat.php:1320
5420
+ msgid "Invalid URL Provided."
5421
+ msgstr ""
5422
+
5423
+ #: ../wp-slimstat.php:1327
5424
+ msgid "Could not create Temporary file."
5425
+ msgstr ""
5426
+
5427
+ #: ../wp-slimstat.php:1385
5428
+ msgid "Undefined report ID"
5429
+ msgstr ""
5430
+
5431
+ #: ../wp-slimstat.php:1582
5432
+ msgid ""
5433
+ "You will need to specify a valid token to be able to query the data. Tokens "
5434
+ "are defined in Slimstat > Settings > Access Control."
5435
+ msgstr ""
5436
+
5437
+ #: ../wp-slimstat.php:1586
5438
+ msgid ""
5439
+ "This parameter specifies the type of QUERY for the dimension. Valid values "
5440
+ "are: count, count-all, recent, recent-all, top and top-all."
5441
+ msgstr ""
5442
+
5443
+ #: ../wp-slimstat.php:1591
5444
+ msgid ""
5445
+ "This parameter indicates what dimension to return: * (all data), ip, "
5446
+ "resource, browser, operating system, etc. You can only specify one dimension "
5447
+ "at a time."
5448
+ msgstr ""
5449
+
5450
+ #: ../wp-slimstat.php:1596
5451
+ msgid ""
5452
+ "This parameter is used to filter a given dimension (resources, browsers, "
5453
+ "operating systems, etc) so that it satisfies certain conditions (i.e.: "
5454
+ "browser contains Chrome). Please make sure to urlencode this value, and to "
5455
+ "use the usual filter format: browser contains Chrome&&&referer contains slim "
5456
+ "(encoded: browser%20contains%20Chrome%26%26%26referer%20contains%20slim)"
5457
+ msgstr ""
5458
+
5459
+ #: ../wp-slimstat.php:2024
5460
+ msgid "Optional filters"
5461
  msgstr ""
5462
 
5463
  #, fuzzy
readme.txt CHANGED
@@ -5,8 +5,8 @@ Tags: analytics, statistics, counter, tracking, reports, wassup, geolocation, on
5
  Text Domain: wp-slimstat
6
  Requires at least: 3.8
7
  Requires PHP: 5.2
8
- Tested up to: 4.9
9
- Stable tag: 4.7.8.3
10
 
11
  == Description ==
12
  The leading web analytics plugin for WordPress. Track returning customers and registered users, monitor Javascript events, detect intrusions, analyze email campaigns. Thousands of WordPress sites are already using it.
@@ -28,9 +28,6 @@ The leading web analytics plugin for WordPress. Track returning customers and re
28
  = Premium Add-ons =
29
  Visit [our website](http://www.wp-slimstat.com/addons/) for a list of available extensions.
30
 
31
- = Social Media =
32
- [Like Us](https://www.facebook.com/slimstatistics/) on Facebook and [follow us](https://twitter.com/wp_stats) on Twitter to get the latest news and updates about our plugin.
33
-
34
  = Contribute =
35
  Slimstat Analytics is an open source project, dependent in large parts on community support. You can fork our [Github repository](https://github.com/slimstat/wp-slimstat) and submit code enhancements, bugfixes or provide localization files to let our plugin speak even more languages. [This page](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BNJR5EZNY3W38)
36
  is for those who would like to donate money - be it once, be it regularly, be it a small or a big amount. Everything is set up for an easy donation process.
@@ -50,7 +47,7 @@ Slimstat is available in multiple languages: English, Belarusian (UStarCash), Ch
50
  * WordPress 3.8+
51
  * PHP 5.2+ (or 5.5+ if you use the Browscap data file)
52
  * MySQL 5.0.3+
53
- * At least 20 MB of free web space
54
  * At least 5 MB of free DB space
55
  * At least 32 Mb of free PHP memory for the tracker (peak memory usage)
56
  * IE9+ or any browser supporting HTML5, to access the reports
@@ -78,6 +75,10 @@ Our knowledge base is available on our [support center](http://docs.wp-slimstat.
78
  5. **Responsive layout** - Keep an eye on your reports on the go
79
 
80
  == Changelog ==
 
 
 
 
81
  = 4.7.8.3 =
82
  * [Fix] The opt-out message was being displayed even if the corresponding setting was turned off. Apologies for the inconvenience.
83
 
5
  Text Domain: wp-slimstat
6
  Requires at least: 3.8
7
  Requires PHP: 5.2
8
+ Tested up to: 5.1
9
+ Stable tag: 4.7.9
10
 
11
  == Description ==
12
  The leading web analytics plugin for WordPress. Track returning customers and registered users, monitor Javascript events, detect intrusions, analyze email campaigns. Thousands of WordPress sites are already using it.
28
  = Premium Add-ons =
29
  Visit [our website](http://www.wp-slimstat.com/addons/) for a list of available extensions.
30
 
 
 
 
31
  = Contribute =
32
  Slimstat Analytics is an open source project, dependent in large parts on community support. You can fork our [Github repository](https://github.com/slimstat/wp-slimstat) and submit code enhancements, bugfixes or provide localization files to let our plugin speak even more languages. [This page](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BNJR5EZNY3W38)
33
  is for those who would like to donate money - be it once, be it regularly, be it a small or a big amount. Everything is set up for an easy donation process.
47
  * WordPress 3.8+
48
  * PHP 5.2+ (or 5.5+ if you use the Browscap data file)
49
  * MySQL 5.0.3+
50
+ * At least 40 MB of free web space
51
  * At least 5 MB of free DB space
52
  * At least 32 Mb of free PHP memory for the tracker (peak memory usage)
53
  * IE9+ or any browser supporting HTML5, to access the reports
75
  5. **Responsive layout** - Keep an eye on your reports on the go
76
 
77
  == Changelog ==
78
+ = 4.7.9 =
79
+ * [Note] Jason is back! Apologies for the radio silence in the last few months, due to personal reasons. Please know that this plugin is still very much alive and kicking. I'm working on cleaning up my development environment, updating the Git repository and streamlining coding workflows. I'm catching up on past and new feature requests and pending bugfixes. As always, thank you for your continued support.
80
+ * [Update] Our optimized fork of the Browscap Library is now available as a public Github repository. Slimstat will now check for updates on Github directly, which streamlines our deployment workflow. Feel free to contact us if you experience any issues with the new data file.
81
+
82
  = 4.7.8.3 =
83
  * [Fix] The opt-out message was being displayed even if the corresponding setting was turned off. Apologies for the inconvenience.
84
 
wp-slimstat.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Slimstat Analytics
4
  Plugin URI: http://wordpress.org/plugins/wp-slimstat/
5
  Description: The leading web analytics plugin for WordPress
6
- Version: 4.7.8.3
7
  Author: Jason Crouse
8
  Author URI: http://www.wp-slimstat.com/
9
  Text Domain: wp-slimstat
@@ -15,7 +15,7 @@ if ( !empty( wp_slimstat::$settings ) ) {
15
  }
16
 
17
  class wp_slimstat {
18
- public static $version = '4.7.8.3';
19
  public static $settings = array();
20
 
21
  public static $wpdb = '';
3
  Plugin Name: Slimstat Analytics
4
  Plugin URI: http://wordpress.org/plugins/wp-slimstat/
5
  Description: The leading web analytics plugin for WordPress
6
+ Version: 4.7.9
7
  Author: Jason Crouse
8
  Author URI: http://www.wp-slimstat.com/
9
  Text Domain: wp-slimstat
15
  }
16
 
17
  class wp_slimstat {
18
+ public static $version = '4.7.9';
19
  public static $settings = array();
20
 
21
  public static $wpdb = '';