Slimstat Analytics - Version 4.1.5.2

Version Description

  • [Note] We are still getting support requests from users having issues with Slimstat because of the GeoLite add-on that was distributed a few months ago. If you are still using this separate add-on, we'd like to remind you that Slimstat 4 introduced a new more intuitive way of managing the MaxMind Geolocation database bundled with our software. Actually, the free Geolite plugin is not compatible with the latest version of Slimstat, because of the IPv6 support we introduced a few weeks ago. We recommend that you uninstall the add-on from your systems, thus improving the overall performance of your website. As usual, do not hesitate to contact us if you have any questions.
  • [Update] Restored Activity Log report in the WordPress Dashboard.
  • [Fix] The Add-ons tab under settings was visible even if no add-ons were installed (thank you, greg57 and others).
  • [Fix] Typo in our German localization (thank you, Marc-Oliver).
  • [Fix] Adding users to the corresponding blacklist was not working if the table wp_users had certain collations (thank you, Romain Petges).
  • [Fix] Non-standard quotes and other characters (hyphens, etc) were getting munged because of a security feature being overzealous (thank you, Victor).
  • [Fix] SQL Debug Mode is now correctly displayed in the WP Dashboard reports.
  • [Fix] More PHP warnings (debug mode) removed.
  • [Fix] Added missing localization strings for certain operating systems (thank you, Romain Petges).
Download this release

Release Info

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

Code changes from version 4.1.5.1 to 4.1.5.2

admin/config/index.php CHANGED
@@ -38,7 +38,7 @@ if (!empty($_POST['options']['ignore_users'])){
38
  $post_data = trim($_POST['options']['ignore_users']);
39
 
40
  if (is_array($user_array) && !empty($post_data)){
41
- $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s COLLATE utf8_bin'));
42
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
43
  wp_slimstat::$options['ignore_users'] = $_POST['options']['ignore_users'];
44
 
@@ -74,7 +74,7 @@ if (!empty($_POST['options']['can_view'])){
74
  $user_array = wp_slimstat::string_to_array($_POST['options']['can_view']);
75
 
76
  if (is_array($user_array) && !empty($post_data)){
77
- $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s COLLATE utf8_bin'));
78
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
79
  wp_slimstat::$options['can_view'] = $_POST['options']['can_view'];
80
  }
@@ -99,7 +99,7 @@ if (!empty($_POST['options']['can_admin'])){
99
  $user_array = wp_slimstat::string_to_array($_POST['options']['can_admin']);
100
 
101
  if (is_array($user_array) && !empty($post_data)){
102
- $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s COLLATE utf8_bin'));
103
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
104
  wp_slimstat::$options['can_admin'] = $_POST['options']['can_admin'];
105
  }
@@ -259,7 +259,9 @@ $options = apply_filters( 'slimstat_options_on_page', $options );
259
 
260
  $tabs_html = '';
261
  foreach ( $options as $a_tab_id => $a_tab_info ) {
262
- $tabs_html .= "<li class='nav-tab nav-tab".(($current_tab == $a_tab_id)?'-active':'-inactive')."'><a href='".wp_slimstat_admin::$config_url.$a_tab_id."'>{$a_tab_info[ 'title' ]}</a></li>";
 
 
263
  }
264
 
265
  echo '<div class="wrap slimstat"><h2>'.__('Settings','wp-slimstat').'</h2><ul class="nav-tabs">'.$tabs_html.'</ul>';
38
  $post_data = trim($_POST['options']['ignore_users']);
39
 
40
  if (is_array($user_array) && !empty($post_data)){
41
+ $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s'));
42
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
43
  wp_slimstat::$options['ignore_users'] = $_POST['options']['ignore_users'];
44
 
74
  $user_array = wp_slimstat::string_to_array($_POST['options']['can_view']);
75
 
76
  if (is_array($user_array) && !empty($post_data)){
77
+ $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s'));
78
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
79
  wp_slimstat::$options['can_view'] = $_POST['options']['can_view'];
80
  }
99
  $user_array = wp_slimstat::string_to_array($_POST['options']['can_admin']);
100
 
101
  if (is_array($user_array) && !empty($post_data)){
102
+ $sql_user_placeholders = implode(', ', array_fill(0, count($user_array), '%s'));
103
  if ($GLOBALS['wpdb']->get_var($GLOBALS['wpdb']->prepare("SELECT COUNT(*) FROM {$GLOBALS['wpdb']->users} WHERE user_login IN ($sql_user_placeholders)", $user_array)) == count($user_array)){
104
  wp_slimstat::$options['can_admin'] = $_POST['options']['can_admin'];
105
  }
259
 
260
  $tabs_html = '';
261
  foreach ( $options as $a_tab_id => $a_tab_info ) {
262
+ if ( !empty( $a_tab_info[ 'rows' ] ) || !empty( $a_tab_info[ 'include' ] ) ) {
263
+ $tabs_html .= "<li class='nav-tab nav-tab".(($current_tab == $a_tab_id)?'-active':'-inactive')."'><a href='".wp_slimstat_admin::$config_url.$a_tab_id."'>{$a_tab_info[ 'title' ]}</a></li>";
264
+ }
265
  }
266
 
267
  echo '<div class="wrap slimstat"><h2>'.__('Settings','wp-slimstat').'</h2><ul class="nav-tabs">'.$tabs_html.'</ul>';
admin/css/slimstat.css CHANGED
@@ -284,10 +284,7 @@
284
  }
285
 
286
  /* Single Report: Debug Message */
287
- .debug {
288
- display: none;
289
- }
290
- .slimstat .debug{
291
  background-color: #000;
292
  color: #fff;
293
  display: block;
284
  }
285
 
286
  /* Single Report: Debug Message */
287
+ [id^=slim_] .debug{
 
 
 
288
  background-color: #000;
289
  color: #fff;
290
  display: block;
admin/js/slimstat.admin.js CHANGED
@@ -398,7 +398,7 @@ jQuery(function(){
398
  // Hide Admin Notice
399
  jQuery(document).on('click', '#slimstat-hide-admin-notice', function(e){
400
  e.preventDefault();
401
- jQuery(this).parents('.updated.slimstat-notice').slideUp(1000);
402
  data = {action: 'slimstat_hide_admin_notice', security: jQuery('#meta-box-order-nonce').val()};
403
  jQuery.ajax({
404
  url: ajaxurl,
398
  // Hide Admin Notice
399
  jQuery(document).on('click', '#slimstat-hide-admin-notice', function(e){
400
  e.preventDefault();
401
+ jQuery(this).parents('.slimstat-notice').slideUp(1000);
402
  data = {action: 'slimstat_hide_admin_notice', security: jQuery('#meta-box-order-nonce').val()};
403
  jQuery.ajax({
404
  url: ajaxurl,
admin/lang/dynamic_strings.php CHANGED
@@ -1,58 +1,79 @@
1
  <?php
2
  $dynamic_strings = array(
3
  __('xx','wp-slimstat'),
4
- __('unknown','wp-slimstat'), // Unknown
5
- __('win8.1','wp-slimstat'), // Windows 8.1
6
- __('win8','wp-slimstat'), // Windows 8
7
- __('win7','wp-slimstat'), // Windows 7
8
- __('winvista','wp-slimstat'), // Windows Vista
9
- __('win2003','wp-slimstat'), // Windows 2003
10
- __('winxp','wp-slimstat'), // Windows XP
11
- __('winnt','wp-slimstat'), // Windows NT
12
- __('win2000','wp-slimstat'), // Windows 2000
13
- __('winme','wp-slimstat'), // Windows ME
14
- __('win98','wp-slimstat'), // Windows 98
15
- __('win95','wp-slimstat'), // Windows 95
16
- __('win31','wp-slimstat'), // Windows 3.1
17
- __('win32','wp-slimstat'), // Windows 32-bit
18
- __('win16','wp-slimstat'), // Windows 16-bit
19
- __('mac68k','wp-slimstat'), // Mac 68k
20
- __('macosx','wp-slimstat'), // Mac OS X
21
- __('macppc','wp-slimstat'), // Mac PowerPC
22
- __('mac','wp-slimstat'), // Mac
23
- __('os/2','wp-slimstat'), // IBM OS/2
24
- __('sunos','wp-slimstat'), // Sun OS
25
- __('solaris','wp-slimstat'), // Solaris
26
- __('unix','wp-slimstat'), // Unix
27
- __('irix','wp-slimstat'), // IRIX
28
- __('hp-ux','wp-slimstat'), // HP-UX
29
  __('aix','wp-slimstat'), // IBM AIX
 
 
30
  __('beos','wp-slimstat'), // BeOS
 
 
31
  __('cygwin','wp-slimstat'), // Cygwin
 
32
  __('digital unix','wp-slimstat'), // Digital Unix
33
- __('risc os','wp-slimstat'), // Risc OS
34
- __('openvms','wp-slimstat'), // OpenVMS
35
- __('linux','wp-slimstat'), // Linux
36
  __('freebsd','wp-slimstat'), // FreeBSD
37
- __('openbsd','wp-slimstat'), // OpenBSD
38
- __('netbsd','wp-slimstat'), // NetBSD
39
- __('debian','wp-slimstat'), // Debian
40
- __('amiga','wp-slimstat'), // Amiga
41
- __('android','wp-slimstat'), // Android
42
- __('wyderos','wp-slimstat'), // WyderOS
43
- __('iphone osx','wp-slimstat'), // iPhone OS X
44
  __('ios','wp-slimstat'), // iPhone OS X
 
 
 
 
 
 
 
 
 
 
 
 
45
  __('palm','wp-slimstat'), // Palm
 
 
 
 
 
 
 
 
 
46
  __('wap','wp-slimstat'), // WAP
47
- __('java','wp-slimstat'), // Java
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  __('winphone7','wp-slimstat'), // Windows Phone
49
  __('winphone7.5','wp-slimstat'), // Windows Phone
50
  __('winphone8','wp-slimstat'), // Windows Phone
51
  __('winphone8.1','wp-slimstat'), // Windows Phone
52
- __('wince','wp-slimstat'), // Windows CE
53
- __('symbianos','wp-slimstat'), // Symbian OS
54
- __('blackberry os','wp-slimstat'), // BlackBerry OS
55
- __('webos','wp-slimstat'), // WebOS
 
 
 
 
 
 
 
 
 
 
56
  __('p-and','wp-slimstat'), // Android
57
  __('p-bla','wp-slimstat'), // BlackBerry
58
  __('p-chr','wp-slimstat'), // Chrome OS
@@ -67,14 +88,8 @@ __('p-sym','wp-slimstat'), // Symbian OS
67
  __('p-ubu','wp-slimstat'), // Linux
68
  __('p-unk','wp-slimstat'), // Unknown
69
  __('p-win','wp-slimstat'), // Microsoft
70
- __('powertv','wp-slimstat'), // PowerTV
71
- __('acrobat','wp-slimstat'), // Acrobat Reader
72
- __('director','wp-slimstat'), // Macromedia Director
73
- __('flash','wp-slimstat'), // Adobe Flash Player
74
- __('mediaplayer','wp-slimstat'), // Microsoft Media Player
75
- __('quicktime','wp-slimstat'), // QuickTime
76
- __('real','wp-slimstat'), // Real Player
77
- __('silverlight','wp-slimstat'), // Microsoft Silverlight
78
  __('l-af','wp-slimstat'), // Afrikaans
79
  __('l-af-za','wp-slimstat'), // Afrikaans (South Africa)
80
  __('l-ar','wp-slimstat'), // Arabic
@@ -304,5 +319,6 @@ __('l-zu-za','wp-slimstat'), // Zulu (South Africa)
304
  __('l-','wp-slimstat'), // Unknown
305
  __('l-empty','wp-slimstat'), // Unknown
306
  __('l-xx','wp-slimstat'), // Unknown
 
307
  __('c-xy','wp-slimstat') // Local IP Address
308
  );
1
  <?php
2
  $dynamic_strings = array(
3
  __('xx','wp-slimstat'),
4
+
5
+ // Operating Systems
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  __('aix','wp-slimstat'), // IBM AIX
7
+ __('amiga','wp-slimstat'), // Amiga
8
+ __('android','wp-slimstat'), // Android
9
  __('beos','wp-slimstat'), // BeOS
10
+ __('blackberry os','wp-slimstat'), // BlackBerry OS
11
+ __('chromeos','wp-slimstat'), // Windows 16-bit
12
  __('cygwin','wp-slimstat'), // Cygwin
13
+ __('debian','wp-slimstat'), // Debian
14
  __('digital unix','wp-slimstat'), // Digital Unix
15
+ __('firefoxos','wp-slimstat'), // Windows 16-bit
 
 
16
  __('freebsd','wp-slimstat'), // FreeBSD
17
+ __('hp-ux','wp-slimstat'), // HP-UX
 
 
 
 
 
 
18
  __('ios','wp-slimstat'), // iPhone OS X
19
+ __('iphone osx','wp-slimstat'), // iPhone OS X
20
+ __('irix','wp-slimstat'), // IRIX
21
+ __('java','wp-slimstat'), // Java
22
+ __('linux','wp-slimstat'), // Linux
23
+ __('mac','wp-slimstat'), // Mac
24
+ __('mac68k','wp-slimstat'), // Mac 68k
25
+ __('macosx','wp-slimstat'), // Mac OS X
26
+ __('macppc','wp-slimstat'), // Mac PowerPC
27
+ __('netbsd','wp-slimstat'), // NetBSD
28
+ __('openbsd','wp-slimstat'), // OpenBSD
29
+ __('openvms','wp-slimstat'), // OpenVMS
30
+ __('os/2','wp-slimstat'), // IBM OS/2
31
  __('palm','wp-slimstat'), // Palm
32
+ __('powertv','wp-slimstat'), // PowerTV
33
+ __('rim os','wp-slimstat'), // Blackberry
34
+ __('risc os','wp-slimstat'), // Risc OS
35
+ __('solaris','wp-slimstat'), // Solaris
36
+ __('sunos','wp-slimstat'), // Sun OS
37
+ __('symbianos','wp-slimstat'), // Symbian OS
38
+ __('ubuntu','wp-slimstat'), // Java
39
+ __('unix','wp-slimstat'), // Unix
40
+ __('unknown','wp-slimstat'), // Unknown
41
  __('wap','wp-slimstat'), // WAP
42
+ __('webos','wp-slimstat'), // WebOS
43
+ __('win10','wp-slimstat'), // Windows 10
44
+ __('win16','wp-slimstat'), // Windows 16-bit
45
+ __('win2000','wp-slimstat'), // Windows 2000
46
+ __('win2003','wp-slimstat'), // Windows 2003
47
+ __('win31','wp-slimstat'), // Windows 3.1
48
+ __('win32','wp-slimstat'), // Windows 32-bit
49
+ __('win7','wp-slimstat'), // Windows 7
50
+ __('win7','wp-slimstat'), // Windows 7
51
+ __('win8','wp-slimstat'), // Windows 8
52
+ __('win8.1','wp-slimstat'), // Windows 8.1
53
+ __('win95','wp-slimstat'), // Windows 95
54
+ __('win98','wp-slimstat'), // Windows 98
55
+ __('wince','wp-slimstat'), // Windows CE
56
+ __('windows phone','wp-slimstat'), // Windows 16-bit
57
+ __('winme','wp-slimstat'), // Windows ME
58
+ __('winnt','wp-slimstat'), // Windows NT
59
  __('winphone7','wp-slimstat'), // Windows Phone
60
  __('winphone7.5','wp-slimstat'), // Windows Phone
61
  __('winphone8','wp-slimstat'), // Windows Phone
62
  __('winphone8.1','wp-slimstat'), // Windows Phone
63
+ __('winvista','wp-slimstat'), // Windows Vista
64
+ __('winxp','wp-slimstat'), // Windows XP
65
+ __('wyderos','wp-slimstat'), // WyderOS
66
+
67
+ // Browser Extensions
68
+ __('acrobat','wp-slimstat'), // Acrobat Reader
69
+ __('director','wp-slimstat'), // Macromedia Director
70
+ __('flash','wp-slimstat'), // Adobe Flash Player
71
+ __('mediaplayer','wp-slimstat'), // Microsoft Media Player
72
+ __('quicktime','wp-slimstat'), // QuickTime
73
+ __('real','wp-slimstat'), // Real Player
74
+ __('silverlight','wp-slimstat'), // Microsoft Silverlight
75
+
76
+ // Operating System Families
77
  __('p-and','wp-slimstat'), // Android
78
  __('p-bla','wp-slimstat'), // BlackBerry
79
  __('p-chr','wp-slimstat'), // Chrome OS
88
  __('p-ubu','wp-slimstat'), // Linux
89
  __('p-unk','wp-slimstat'), // Unknown
90
  __('p-win','wp-slimstat'), // Microsoft
91
+
92
+ // Languages
 
 
 
 
 
 
93
  __('l-af','wp-slimstat'), // Afrikaans
94
  __('l-af-za','wp-slimstat'), // Afrikaans (South Africa)
95
  __('l-ar','wp-slimstat'), // Arabic
319
  __('l-','wp-slimstat'), // Unknown
320
  __('l-empty','wp-slimstat'), // Unknown
321
  __('l-xx','wp-slimstat'), // Unknown
322
+
323
  __('c-xy','wp-slimstat') // Local IP Address
324
  );
admin/lang/wp-slimstat-de_DE.mo CHANGED
Binary file
admin/lang/wp-slimstat-de_DE.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-06-15 22:59-0500\n"
6
- "PO-Revision-Date: 2015-06-15 22:59-0500\n"
7
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: TechnoViel <klaus@technoviel.de>\n"
9
  "Language: de_DE\n"
@@ -117,7 +117,7 @@ msgstr ""
117
 
118
  #: ../../admin/config/index.php:21 ../../admin/config/index.php:23
119
  msgid "On"
120
- msgstr "am"
121
 
122
  #: ../../admin/config/index.php:21 ../../admin/config/index.php:23
123
  msgid "Off"
3
  "Project-Id-Version: WP SlimStat\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2015-06-15 22:59-0500\n"
6
+ "PO-Revision-Date: 2015-07-08 21:43-0500\n"
7
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
8
  "Language-Team: TechnoViel <klaus@technoviel.de>\n"
9
  "Language: de_DE\n"
117
 
118
  #: ../../admin/config/index.php:21 ../../admin/config/index.php:23
119
  msgid "On"
120
+ msgstr "An"
121
 
122
  #: ../../admin/config/index.php:21 ../../admin/config/index.php:23
123
  msgid "Off"
admin/lang/wp-slimstat-en_US.mo CHANGED
Binary file
admin/lang/wp-slimstat-en_US.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
- "POT-Creation-Date: 2015-06-15 23:00-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
7
  "Language-Team: camu <info@duechiacchiere.it>\n"
@@ -27,9 +27,9 @@ msgid ""
27
  "again later."
28
  msgstr ""
29
 
30
- #: ../../admin/config/addons.php:32 ../../admin/config/index.php:9
31
  #: ../../admin/wp-slimstat-admin.php:642 ../../admin/wp-slimstat-admin.php:657
32
- #: ../../wp-slimstat.php:1734
33
  msgid "Add-ons"
34
  msgstr ""
35
 
@@ -58,78 +58,76 @@ msgstr ""
58
  msgid "Description"
59
  msgstr ""
60
 
61
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:18
62
- msgid "General"
63
- msgstr ""
64
-
65
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:49
66
- #: ../../admin/config/index.php:147
67
- msgid "Reports"
68
  msgstr ""
69
 
70
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:74
71
- msgid "Filters"
 
 
72
  msgstr ""
73
 
74
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:145
75
- msgid "Permissions"
76
  msgstr ""
77
 
78
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:222
79
- msgid "Advanced"
 
 
 
80
  msgstr ""
81
 
82
- #: ../../admin/config/index.php:9 ../../admin/config/index.php:253
83
- msgid "Maintenance"
84
  msgstr ""
85
 
86
- #: ../../admin/config/index.php:14 ../../admin/config/index.php:152
87
- #: ../../admin/wp-slimstat-admin.php:683 ../../admin/wp-slimstat-admin.php:685
88
- #: ../../wp-slimstat.php:1737
89
- msgid "Settings"
90
  msgstr ""
91
 
92
- #: ../../admin/config/index.php:20 ../../admin/config/index.php:227
93
  msgid "Tracker"
94
  msgstr ""
95
 
96
- #: ../../admin/config/index.php:21
97
  msgid "Tracking"
98
  msgstr ""
99
 
100
- #: ../../admin/config/index.php:21
101
  msgid "Turn the tracker on or off, but keep the reports accessible."
102
  msgstr ""
103
 
104
- #: ../../admin/config/index.php:21 ../../admin/config/index.php:23
105
  msgid "On"
106
  msgstr ""
107
 
108
- #: ../../admin/config/index.php:21 ../../admin/config/index.php:23
109
  msgid "Off"
110
  msgstr ""
111
 
112
- #: ../../admin/config/index.php:22
113
  msgid "Admin Pages"
114
  msgstr ""
115
 
116
- #: ../../admin/config/index.php:22
117
  msgid "Enable this option to track your users' activity within the admin."
118
  msgstr ""
119
 
120
- #: ../../admin/config/index.php:22
121
  msgid "Track"
122
  msgstr ""
123
 
124
- #: ../../admin/config/index.php:22
125
  msgid "Do not track"
126
  msgstr ""
127
 
128
- #: ../../admin/config/index.php:23
129
  msgid "Stealth Mode"
130
  msgstr ""
131
 
132
- #: ../../admin/config/index.php:23
133
  msgid ""
134
  "Collect information about screen resolutions, outbound links, downloads, "
135
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
@@ -137,11 +135,11 @@ msgid ""
137
  "option will remove the tracking code from your pages' source code."
138
  msgstr ""
139
 
140
- #: ../../admin/config/index.php:24
141
  msgid "Tracking Mode"
142
  msgstr ""
143
 
144
- #: ../../admin/config/index.php:24
145
  msgid ""
146
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
147
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
@@ -150,141 +148,142 @@ msgid ""
150
  "spammers, search engines and other crawlers</strong> will not be tracked."
151
  msgstr ""
152
 
153
- #: ../../admin/config/index.php:24
154
  msgid "Client"
155
  msgstr ""
156
 
157
- #: ../../admin/config/index.php:24
158
  msgid "Server"
159
  msgstr ""
160
 
161
- #: ../../admin/config/index.php:26
162
  msgid "WordPress Integration"
163
  msgstr ""
164
 
165
- #: ../../admin/config/index.php:27
166
  msgid "Menu Position"
167
  msgstr ""
168
 
169
- #: ../../admin/config/index.php:27
170
  msgid ""
171
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
172
  "admin bar (if visible)."
173
  msgstr ""
174
 
175
- #: ../../admin/config/index.php:27
176
  msgid "Side Menu"
177
  msgstr ""
178
 
179
- #: ../../admin/config/index.php:27
180
  msgid "Admin Bar"
181
  msgstr ""
182
 
183
- #: ../../admin/config/index.php:28
184
  msgid "Posts and Pages"
185
  msgstr ""
186
 
187
- #: ../../admin/config/index.php:28
188
  msgid ""
189
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
190
  "per post in the last 365 days."
191
  msgstr ""
192
 
193
- #: ../../admin/config/index.php:29
194
  msgid "Dashboard Widgets"
195
  msgstr ""
196
 
197
- #: ../../admin/config/index.php:29
198
  msgid ""
199
  "Choose if you want to have the most important reports on your WordPress "
200
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
201
  msgstr ""
202
 
203
- #: ../../admin/config/index.php:30
204
  msgid "Report Interval"
205
  msgstr ""
206
 
207
- #: ../../admin/config/index.php:30
208
  msgid ""
209
  "Enter the time range, in days, that should be used to calculate the value "
210
  "here above."
211
  msgstr ""
212
 
213
- #: ../../admin/config/index.php:31
214
  msgid "Report Type"
215
  msgstr ""
216
 
217
- #: ../../admin/config/index.php:31
218
  msgid ""
219
  "Select what kind of information you would like to see displayed on the Posts "
220
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
221
  "IPs consider only one hit per user in the given time range."
222
  msgstr ""
223
 
224
- #: ../../admin/config/index.php:31 ../../admin/view/wp-slimstat-reports.php:90
225
- #: ../../admin/view/wp-slimstat-reports.php:1052
226
- #: ../../admin/view/wp-slimstat-reports.php:1196
227
- #: ../../admin/view/wp-slimstat-reports.php:1321
 
228
  msgid "Pageviews"
229
  msgstr ""
230
 
231
- #: ../../admin/config/index.php:31
232
- #: ../../admin/view/wp-slimstat-reports.php:1052
233
- #: ../../admin/view/wp-slimstat-reports.php:1057
234
- #: ../../admin/view/wp-slimstat-reports.php:1062
235
- #: ../../admin/view/wp-slimstat-reports.php:1203
236
- #: ../../admin/view/wp-slimstat-reports.php:1240
237
  msgid "Unique IPs"
238
  msgstr ""
239
 
240
- #: ../../admin/config/index.php:32
241
  msgid "Hide Add-ons"
242
  msgstr ""
243
 
244
- #: ../../admin/config/index.php:32
245
  msgid ""
246
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
247
  "from the list of plugins in WordPress. Please note that you will still "
248
  "receive updates for hidden add-ons."
249
  msgstr ""
250
 
251
- #: ../../admin/config/index.php:34
252
  msgid "Database"
253
  msgstr ""
254
 
255
- #: ../../admin/config/index.php:35
256
  msgid "Retain data for"
257
  msgstr ""
258
 
259
- #: ../../admin/config/index.php:35
260
  msgid ""
261
  "Clean-up log entries older than the number of days specified here above. "
262
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
263
  "regardless of its age."
264
  msgstr ""
265
 
266
- #: ../../admin/config/index.php:35
267
  msgid "Next clean-up on"
268
  msgstr ""
269
 
270
- #: ../../admin/config/index.php:35
271
  #, php-format
272
  msgid ""
273
  "Entries logged on or before %s will be archived or deleted according to the "
274
  "option here below."
275
  msgstr ""
276
 
277
- #: ../../admin/config/index.php:35 ../../admin/view/index.php:102
278
- #: ../../admin/view/wp-slimstat-db.php:74
279
- #: ../../admin/view/wp-slimstat-reports.php:1183
280
  msgid "days"
281
  msgstr ""
282
 
283
- #: ../../admin/config/index.php:36
284
  msgid "Delete records"
285
  msgstr ""
286
 
287
- #: ../../admin/config/index.php:36
288
  msgid ""
289
  "If DB space is not an issue, you can decide to archive older records in "
290
  "another table, instead of deleting them. This way performance is preserved, "
@@ -294,172 +293,194 @@ msgid ""
294
  "is uninstalled. Make sure to backup your data before you proceed."
295
  msgstr ""
296
 
297
- #: ../../admin/config/index.php:51
 
 
 
 
298
  msgid "Formats and Conversions"
299
  msgstr ""
300
 
301
- #: ../../admin/config/index.php:52
302
  msgid "Number Format"
303
  msgstr ""
304
 
305
- #: ../../admin/config/index.php:52
306
  msgid "Choose the number format you want to use for your reports."
307
  msgstr ""
308
 
309
- #: ../../admin/config/index.php:53
310
  msgid "Date Format"
311
  msgstr ""
312
 
313
- #: ../../admin/config/index.php:53
314
  msgid ""
315
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
316
  "Format</a> to use when displaying a pageview's date."
317
  msgstr ""
318
 
319
- #: ../../admin/config/index.php:54
320
  msgid "Time Format"
321
  msgstr ""
322
 
323
- #: ../../admin/config/index.php:54
324
  msgid ""
325
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
326
  "Format</a> to use when displaying a pageview's time."
327
  msgstr ""
328
 
329
- #: ../../admin/config/index.php:55
330
  msgid "Use Display Name"
331
  msgstr ""
332
 
333
- #: ../../admin/config/index.php:55
334
  msgid ""
335
  "By default, users are listed by their usernames. Use this option to "
336
  "visualize their display names instead."
337
  msgstr ""
338
 
339
- #: ../../admin/config/index.php:56
340
  msgid "Use Titles"
341
  msgstr ""
342
 
343
- #: ../../admin/config/index.php:56
344
  msgid ""
345
  "Slimstat converts your permalinks into post, page and category titles. "
346
  "Disable this feature if you need to see the URL in your reports."
347
  msgstr ""
348
 
349
- #: ../../admin/config/index.php:57
350
  msgid "Convert IP Addresses"
351
  msgstr ""
352
 
353
- #: ../../admin/config/index.php:57
354
  msgid "Display provider names instead of IP addresses."
355
  msgstr ""
356
 
357
- #: ../../admin/config/index.php:59
358
  msgid "Functionality"
359
  msgstr ""
360
 
361
- #: ../../admin/config/index.php:60
362
  msgid "SlimScroll"
363
  msgstr ""
364
 
365
- #: ../../admin/config/index.php:60
366
  msgid ""
367
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
368
  "scrollbar."
369
  msgstr ""
370
 
371
- #: ../../admin/config/index.php:61
372
  msgid "Expand Details"
373
  msgstr ""
374
 
375
- #: ../../admin/config/index.php:61
376
  msgid "Expand each row's details by default, insted of on mousehover."
377
  msgstr ""
378
 
379
- #: ../../admin/config/index.php:62 ../../admin/config/index.php:66
380
  msgid "Rows to Display"
381
  msgstr ""
382
 
383
- #: ../../admin/config/index.php:62
384
  msgid "Specify the number of items in each report."
385
  msgstr ""
386
 
387
- #: ../../admin/config/index.php:64
388
  msgid "Activity Log"
389
  msgstr ""
390
 
391
- #: ../../admin/config/index.php:65
392
  msgid "Live Stream"
393
  msgstr ""
394
 
395
- #: ../../admin/config/index.php:65
396
  msgid ""
397
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
398
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
399
  msgstr ""
400
 
401
- #: ../../admin/config/index.php:65 ../../admin/config/index.php:229
402
  msgid "seconds"
403
  msgstr ""
404
 
405
- #: ../../admin/config/index.php:66
406
  msgid "Specify the number of items in the Activity Log."
407
  msgstr ""
408
 
409
- #: ../../admin/config/index.php:69 ../../admin/config/index.php:96
410
- #: ../../admin/config/index.php:246 ../../admin/config/maintenance.php:360
411
  msgid "Miscellaneous"
412
  msgstr ""
413
 
414
- #: ../../admin/config/index.php:70
415
  msgid "Show User Agent"
416
  msgstr ""
417
 
418
- #: ../../admin/config/index.php:70
419
  msgid ""
420
  "Choose if you want to see the browser name or a complete user agent string "
421
  "when hovering on browser icons."
422
  msgstr ""
423
 
424
- #: ../../admin/config/index.php:71
425
  msgid "Enable SOV"
426
  msgstr ""
427
 
428
- #: ../../admin/config/index.php:71
429
  msgid ""
430
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
431
  "the subject, object, and verb of a sentence appear in that order, like in "
432
  "Japanese."
433
  msgstr ""
434
 
435
- #: ../../admin/config/index.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
436
  msgid "Visitors and Known Users"
437
  msgstr ""
438
 
439
- #: ../../admin/config/index.php:77
440
  msgid "Track Registered Users"
441
  msgstr ""
442
 
443
- #: ../../admin/config/index.php:77
444
  msgid "Enable this option to track logged in users."
445
  msgstr ""
446
 
447
- #: ../../admin/config/index.php:78
448
  msgid "Blacklist by Username"
449
  msgstr ""
450
 
451
- #: ../../admin/config/index.php:78
452
  msgid ""
453
  "List all the usernames you don't want to track, separated by commas. Please "
454
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
455
  "sensitive."
456
  msgstr ""
457
 
458
- #: ../../admin/config/index.php:79
459
  msgid "Blacklist by IP Address"
460
  msgstr ""
461
 
462
- #: ../../admin/config/index.php:79
463
  msgid ""
464
  "List all the IP addresses you don't want to track, separated by commas. Each "
465
  "network <strong>must</strong> be defined using the <a href='http://en."
@@ -468,26 +489,26 @@ msgid ""
468
  "public IP and the originating IP, if available."
469
  msgstr ""
470
 
471
- #: ../../admin/config/index.php:80
472
  msgid "Blacklist by Capability"
473
  msgstr ""
474
 
475
- #: ../../admin/config/index.php:80
476
  msgid ""
477
  "Users having at least one of the <a href='http://codex.wordpress.org/"
478
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
479
  "will not be tracked. Capabilities are case-insensitive."
480
  msgstr ""
481
 
482
- #: ../../admin/config/index.php:82
483
  msgid "Profiling"
484
  msgstr ""
485
 
486
- #: ../../admin/config/index.php:83
487
  msgid "Ignore Spammers"
488
  msgstr ""
489
 
490
- #: ../../admin/config/index.php:83
491
  msgid ""
492
  "Enable this option if you don't want to track visits from users identified "
493
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
@@ -495,11 +516,11 @@ msgid ""
495
  "database."
496
  msgstr ""
497
 
498
- #: ../../admin/config/index.php:84
499
  msgid "Ignore Bots"
500
  msgstr ""
501
 
502
- #: ../../admin/config/index.php:84
503
  msgid ""
504
  "Turn on this feature if you want to have the accuracy level of server-side "
505
  "tracking, but not the inconvenience of getting your database clogged with "
@@ -507,11 +528,11 @@ msgid ""
507
  "note that in Client mode, bots are ignored regardless of this setting."
508
  msgstr ""
509
 
510
- #: ../../admin/config/index.php:85
511
  msgid "Permalinks"
512
  msgstr ""
513
 
514
- #: ../../admin/config/index.php:85
515
  msgid ""
516
  "List all the URLs on your website that you don't want to track, separated by "
517
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
@@ -522,21 +543,21 @@ msgid ""
522
  "case-insensitive."
523
  msgstr ""
524
 
525
- #: ../../admin/config/index.php:86
526
  msgid "Countries"
527
  msgstr ""
528
 
529
- #: ../../admin/config/index.php:86
530
  msgid ""
531
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
532
  "track, separated by commas."
533
  msgstr ""
534
 
535
- #: ../../admin/config/index.php:87
536
  msgid "User Agents"
537
  msgstr ""
538
 
539
- #: ../../admin/config/index.php:87
540
  msgid ""
541
  "Browsers (user agents) you don't want to track, separated by commas. You can "
542
  "specify the browser's version adding a slash after the name (i.e. "
@@ -546,11 +567,11 @@ msgid ""
546
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
547
  msgstr ""
548
 
549
- #: ../../admin/config/index.php:88
550
  msgid "Referring Sites"
551
  msgstr ""
552
 
553
- #: ../../admin/config/index.php:88
554
  msgid ""
555
  "Referring URLs that you don't want to track, separated by commas: "
556
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
@@ -560,36 +581,36 @@ msgid ""
560
  "https://)."
561
  msgstr ""
562
 
563
- #: ../../admin/config/index.php:90
564
  msgid "Internal and Outbound Links"
565
  msgstr ""
566
 
567
- #: ../../admin/config/index.php:91
568
  msgid "Track Outbound Clicks"
569
  msgstr ""
570
 
571
- #: ../../admin/config/index.php:91
572
  msgid ""
573
  "Track when your visitors click on link to external websites. This option "
574
  "required Spy Mode to be enabled."
575
  msgstr ""
576
 
577
- #: ../../admin/config/index.php:92
578
  msgid "Track Coordinates"
579
  msgstr ""
580
 
581
- #: ../../admin/config/index.php:92
582
  msgid ""
583
  "Collect mouse coordinates and other information for clicks on internal "
584
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
585
  "this information is only collected for external links."
586
  msgstr ""
587
 
588
- #: ../../admin/config/index.php:93
589
  msgid "No Callback"
590
  msgstr ""
591
 
592
- #: ../../admin/config/index.php:93
593
  msgid ""
594
  "Track the event but do not invoke the callback function on links marked with "
595
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
@@ -597,61 +618,55 @@ msgid ""
597
  "prevent conflicts with lightbox and similar libraries."
598
  msgstr ""
599
 
600
- #: ../../admin/config/index.php:94
601
  msgid "Do Not Track"
602
  msgstr ""
603
 
604
- #: ../../admin/config/index.php:94
605
  msgid ""
606
  "Do not track links marked with one of these class names, <em>rel</em> "
607
  "attributes or whose <em>href</em> attribute contains one of these strings "
608
  "(separated by comma)."
609
  msgstr ""
610
 
611
- #: ../../admin/config/index.php:97
612
  msgid "Enable Privacy Mode"
613
  msgstr ""
614
 
615
- #: ../../admin/config/index.php:97
616
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
617
  msgstr ""
618
 
619
- #: ../../admin/config/index.php:98
620
  msgid "Ignore Prefetch Requests"
621
  msgstr ""
622
 
623
- #: ../../admin/config/index.php:98
624
  msgid ""
625
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
626
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
627
  "target='_blank'>Link Prefetching functionality</a>."
628
  msgstr ""
629
 
630
- #: ../../admin/config/index.php:114
631
- msgid "Ignore users (username not found)"
632
- msgstr ""
633
-
634
- #: ../../admin/config/index.php:137
635
- msgid ""
636
- "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
637
- "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
638
  msgstr ""
639
 
640
- #: ../../admin/config/index.php:148
641
  msgid "Restrict Authors"
642
  msgstr ""
643
 
644
- #: ../../admin/config/index.php:148
645
  msgid ""
646
  "Enable this option if you want your authors to only see stats related to "
647
  "their own content."
648
  msgstr ""
649
 
650
- #: ../../admin/config/index.php:149 ../../admin/config/index.php:153
651
  msgid "Capability"
652
  msgstr ""
653
 
654
- #: ../../admin/config/index.php:149
655
  msgid ""
656
  "Specify the minimum <a href='http://codex.wordpress.org/"
657
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
@@ -661,18 +676,24 @@ msgid ""
661
  "In this case, the list has precedence over the capability."
662
  msgstr ""
663
 
664
- #: ../../admin/config/index.php:150 ../../admin/config/index.php:154
665
  msgid "Whitelist"
666
  msgstr ""
667
 
668
- #: ../../admin/config/index.php:150
669
  msgid ""
670
  "List all the users who should have access to the reports, separated by "
671
  "commas. Administrators are implicitly allowed, so you don't need to list "
672
  "them in here. Usernames are case sensitive."
673
  msgstr ""
674
 
675
- #: ../../admin/config/index.php:153
 
 
 
 
 
 
676
  msgid ""
677
  "Specify the minimum <a href='http://codex.wordpress.org/"
678
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
@@ -680,72 +701,61 @@ msgid ""
680
  "can be used to override this option for specific users."
681
  msgstr ""
682
 
683
- #: ../../admin/config/index.php:154
684
  msgid ""
685
  "List all the users who can edit these options, separated by commas. Please "
686
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
687
  "not forget to include yourself! Usernames are case sensitive."
688
  msgstr ""
689
 
690
- #: ../../admin/config/index.php:170
691
- msgid "Read access: username not found"
692
- msgstr ""
693
-
694
- #: ../../admin/config/index.php:183 ../../admin/config/index.php:214
695
- msgid ""
696
- "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
697
- "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
698
- "information"
699
- msgstr ""
700
-
701
- #: ../../admin/config/index.php:201
702
- msgid "Config access: username not found"
703
  msgstr ""
704
 
705
- #: ../../admin/config/index.php:228
706
  msgid "Detect Smoothing"
707
  msgstr ""
708
 
709
- #: ../../admin/config/index.php:228
710
  msgid ""
711
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
712
- "This option required Spy Mode to be enabled."
713
  msgstr ""
714
 
715
- #: ../../admin/config/index.php:229
716
  msgid "Session Duration"
717
  msgstr ""
718
 
719
- #: ../../admin/config/index.php:229
720
  msgid ""
721
  "How many seconds should a human session last? Google Analytics sets it to "
722
  "1800 seconds."
723
  msgstr ""
724
 
725
- #: ../../admin/config/index.php:230
726
  msgid "Extend Session"
727
  msgstr ""
728
 
729
- #: ../../admin/config/index.php:230
730
  msgid "Extend the duration of a session each time the user visits a new page."
731
  msgstr ""
732
 
733
- #: ../../admin/config/index.php:231
734
  msgid "Enable CDN"
735
  msgstr ""
736
 
737
- #: ../../admin/config/index.php:231
738
  msgid ""
739
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
740
  "by serving our tracking code from their fast and reliable network (free "
741
  "service)."
742
  msgstr ""
743
 
744
- #: ../../admin/config/index.php:232
745
  msgid "Extensions to Track"
746
  msgstr ""
747
 
748
- #: ../../admin/config/index.php:232
749
  msgid ""
750
  "List all the file extensions that you want to be treated as Downloads. "
751
  "Please note that links pointing to external resources (i.e. PDFs on a "
@@ -754,21 +764,21 @@ msgid ""
754
  "below."
755
  msgstr ""
756
 
757
- #: ../../admin/config/index.php:234
758
  msgid "External Pages"
759
  msgstr ""
760
 
761
- #: ../../admin/config/index.php:235
762
  msgid ""
763
  "Add the following code to all the non-WP pages you want to track, right "
764
  "before the closing BODY tag"
765
  msgstr ""
766
 
767
- #: ../../admin/config/index.php:245
768
  msgid "Allow External Domains"
769
  msgstr ""
770
 
771
- #: ../../admin/config/index.php:245
772
  msgid ""
773
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
774
  "header is present on the requested resource, when using the external "
@@ -779,27 +789,27 @@ msgid ""
779
  "security implications of allowing CORS requests."
780
  msgstr ""
781
 
782
- #: ../../admin/config/index.php:247
783
  msgid "Debug Mode"
784
  msgstr ""
785
 
786
- #: ../../admin/config/index.php:247
787
  msgid "Display the SQL queries used to retrieve the data."
788
  msgstr ""
789
 
790
- #: ../../admin/config/index.php:248
791
  msgid "IP Lookup"
792
  msgstr ""
793
 
794
- #: ../../admin/config/index.php:248
795
  msgid "Customize the Geolocation service to be used in the reports."
796
  msgstr ""
797
 
798
- #: ../../admin/config/index.php:249
799
  msgid "Custom CSS"
800
  msgstr ""
801
 
802
- #: ../../admin/config/index.php:249
803
  msgid ""
804
  "Paste here your custom stylesheet to personalize the way your reports look. "
805
  "<a href='https://slimstat.freshdesk.com/support/solutions/"
@@ -808,11 +818,11 @@ msgid ""
808
  "a> for more information on how to use this setting."
809
  msgstr ""
810
 
811
- #: ../../admin/config/index.php:250
812
  msgid "Enable UAN"
813
  msgstr ""
814
 
815
- #: ../../admin/config/index.php:250
816
  msgid ""
817
  "Send anonymous data about user agents to our server for analysis. This "
818
  "allows us to contribute to the <a href='http://browscap.org/' "
@@ -821,6 +831,10 @@ msgid ""
821
  "ads network. No worries, your site will not be affected in any way."
822
  msgstr ""
823
 
 
 
 
 
824
  #: ../../admin/config/maintenance.php:16
825
  msgid ""
826
  "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
@@ -831,19 +845,19 @@ msgstr ""
831
  msgid "Indexing has been disabled. Enjoy the extra database space!"
832
  msgstr ""
833
 
834
- #: ../../admin/config/maintenance.php:34
835
  msgid "records deleted from your database."
836
  msgstr ""
837
 
838
- #: ../../admin/config/maintenance.php:39
839
  msgid "The geolocation database has been uninstalled from your server."
840
  msgstr ""
841
 
842
- #: ../../admin/config/maintenance.php:49
843
  msgid "The geolocation database has been installed on your server."
844
  msgstr ""
845
 
846
- #: ../../admin/config/maintenance.php:157
847
  msgid ""
848
  "Your data was successfully imported. You may now drop the old tables: "
849
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
@@ -852,1712 +866,1739 @@ msgid ""
852
  "delete the old tables."
853
  msgstr ""
854
 
855
- #: ../../admin/config/maintenance.php:164
856
  msgid "Your reports were successfully restored to their default arrangement."
857
  msgstr ""
858
 
859
- #: ../../admin/config/maintenance.php:174
860
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
861
  msgstr ""
862
 
863
- #: ../../admin/config/maintenance.php:180
864
  msgid "All the archived records were successfully deleted."
865
  msgstr ""
866
 
867
- #: ../../admin/config/maintenance.php:188
868
  msgid "All the records were successfully deleted."
869
  msgstr ""
870
 
871
- #: ../../admin/config/maintenance.php:210
872
- msgid "MaxMind IP to Country"
873
  msgstr ""
874
 
875
- #: ../../admin/config/maintenance.php:216
876
- msgid ""
877
- "Do you want to download and install the geolocation database from MaxMind's "
878
- "server?"
879
  msgstr ""
880
 
881
  #: ../../admin/config/maintenance.php:216
882
- msgid "Install GeoLite DB"
883
- msgstr ""
884
-
885
- #: ../../admin/config/maintenance.php:219
886
- msgid "Do you want to uninstall the geolocation database?"
887
  msgstr ""
888
 
889
- #: ../../admin/config/maintenance.php:219
890
- msgid "Uninstall GeoLite DB"
891
  msgstr ""
892
 
893
- #: ../../admin/config/maintenance.php:223
894
  msgid ""
895
- "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
896
- "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
897
- "released under the Creative Commons BY-SA 3.0 license, and cannot be "
898
- "directly bundled with the plugin because of license incompatibility issues. "
899
- "We are mandated to have the user take an affirmative action in order to "
900
- "enable this functionality."
901
  msgstr ""
902
 
903
- #: ../../admin/config/maintenance.php:228
904
- msgid "Database Information"
905
  msgstr ""
906
 
907
- #: ../../admin/config/maintenance.php:231
908
- msgid "Engine"
 
909
  msgstr ""
910
 
911
- #: ../../admin/config/maintenance.php:235
912
- msgid "switch to InnoDB"
913
  msgstr ""
914
 
915
- #: ../../admin/config/maintenance.php:246
916
- #: ../../admin/view/wp-slimstat-reports.php:1178
917
- msgid "records"
 
 
918
  msgstr ""
919
 
920
- #: ../../admin/config/maintenance.php:251
921
  msgid "Data Maintenance"
922
  msgstr ""
923
 
924
- #: ../../admin/config/maintenance.php:254
925
  msgid "Delete pageviews where"
926
  msgstr ""
927
 
928
- #: ../../admin/config/maintenance.php:268 ../../admin/view/index.php:16
929
  msgid "equals"
930
  msgstr ""
931
 
932
- #: ../../admin/config/maintenance.php:269 ../../admin/view/index.php:17
933
  msgid "is not equal to"
934
  msgstr ""
935
 
936
- #: ../../admin/config/maintenance.php:270 ../../admin/view/index.php:18
937
  msgid "contains"
938
  msgstr ""
939
 
940
- #: ../../admin/config/maintenance.php:271 ../../admin/view/index.php:19
941
  msgid "is included in"
942
  msgstr ""
943
 
944
- #: ../../admin/config/maintenance.php:272 ../../admin/view/index.php:20
945
  msgid "does not contain"
946
  msgstr ""
947
 
948
- #: ../../admin/config/maintenance.php:273 ../../admin/view/index.php:21
949
  msgid "starts with"
950
  msgstr ""
951
 
952
- #: ../../admin/config/maintenance.php:274 ../../admin/view/index.php:22
953
  msgid "ends with"
954
  msgstr ""
955
 
956
- #: ../../admin/config/maintenance.php:275 ../../admin/view/index.php:23
957
  msgid "sounds like"
958
  msgstr ""
959
 
960
- #: ../../admin/config/maintenance.php:276 ../../admin/view/index.php:24
961
  msgid "is greater than"
962
  msgstr ""
963
 
964
- #: ../../admin/config/maintenance.php:277 ../../admin/view/index.php:25
965
  msgid "is less than"
966
  msgstr ""
967
 
968
- #: ../../admin/config/maintenance.php:278 ../../admin/view/index.php:27
969
  msgid "matches"
970
  msgstr ""
971
 
972
- #: ../../admin/config/maintenance.php:279 ../../admin/view/index.php:28
973
  msgid "does not match"
974
  msgstr ""
975
 
976
- #: ../../admin/config/maintenance.php:280 ../../admin/view/index.php:29
977
  msgid "is empty"
978
  msgstr ""
979
 
980
- #: ../../admin/config/maintenance.php:281 ../../admin/view/index.php:30
981
  msgid "is not empty"
982
  msgstr ""
983
 
984
- #: ../../admin/config/maintenance.php:284 ../../admin/view/index.php:42
985
  #: ../../admin/view/index.php:105
986
  msgid "Apply"
987
  msgstr ""
988
 
989
- #: ../../admin/config/maintenance.php:285
990
  msgid ""
991
  "Are you sure you want to PERMANENTLY delete these records from your database?"
992
  msgstr ""
993
 
994
- #: ../../admin/config/maintenance.php:292
995
  msgid ""
996
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
997
  "database?"
998
  msgstr ""
999
 
1000
- #: ../../admin/config/maintenance.php:292
1001
  msgid "Delete All Records"
1002
  msgstr ""
1003
 
1004
- #: ../../admin/config/maintenance.php:295
1005
  msgid ""
1006
  "Erase all the information collected so far by Slimstat, including the "
1007
  "archive. This operation <strong>does not</strong> reset your settings."
1008
  msgstr ""
1009
 
1010
- #: ../../admin/config/maintenance.php:301
1011
  msgid ""
1012
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1013
  "archive?"
1014
  msgstr ""
1015
 
1016
- #: ../../admin/config/maintenance.php:301
1017
  msgid "Delete Archive"
1018
  msgstr ""
1019
 
1020
- #: ../../admin/config/maintenance.php:304
1021
  msgid "Erase all the archived records. This operation cannot be undone."
1022
  msgstr ""
1023
 
1024
- #: ../../admin/config/maintenance.php:310
1025
  msgid "Improve Performance"
1026
  msgstr ""
1027
 
1028
- #: ../../admin/config/maintenance.php:314
1029
  msgid ""
1030
  "Please note that you will need about 30% more DB space to store the extra "
1031
  "information required."
1032
  msgstr ""
1033
 
1034
- #: ../../admin/config/maintenance.php:318
1035
  msgid "Save DB Space"
1036
  msgstr ""
1037
 
1038
- #: ../../admin/config/maintenance.php:321
1039
  msgid ""
1040
  "Please note that by removing table indexes, Slimstat's performance will be "
1041
  "affected."
1042
  msgstr ""
1043
 
1044
- #: ../../admin/config/maintenance.php:328
1045
  msgid ""
1046
  "Hold on tight, we are about to import all your old data. Are you sure you "
1047
  "want to proceed?"
1048
  msgstr ""
1049
 
1050
- #: ../../admin/config/maintenance.php:328
1051
  msgid "Import old data"
1052
  msgstr ""
1053
 
1054
- #: ../../admin/config/maintenance.php:331
1055
  msgid ""
1056
  "Import all the records from the old table structure. No data will be deleted "
1057
  "from your database."
1058
  msgstr ""
1059
 
1060
- #: ../../admin/config/maintenance.php:335
1061
- msgid "Import and Export"
1062
  msgstr ""
1063
 
1064
- #: ../../admin/config/maintenance.php:339
1065
  msgid ""
1066
- "Here below you can find the current configuration string for Slimstat. You "
1067
- "can update your settings by pasting a new string inside the text area and "
1068
- "clicking the Import button."
1069
  msgstr ""
1070
 
1071
- #: ../../admin/config/maintenance.php:344
1072
- msgid "Import"
1073
  msgstr ""
1074
 
1075
- #: ../../admin/config/maintenance.php:345
1076
- msgid "Are you sure you want to OVERWRITE your current settings?"
1077
  msgstr ""
1078
 
1079
- #: ../../admin/config/maintenance.php:350
1080
- msgid "Debugging"
1081
  msgstr ""
1082
 
1083
- #: ../../admin/config/maintenance.php:353
1084
- msgid "Tracker Error Code"
 
 
 
 
 
 
1085
  msgstr ""
1086
 
1087
- #: ../../admin/config/maintenance.php:355
1088
- msgid "recorded on"
1089
  msgstr ""
1090
 
1091
- #: ../../admin/config/maintenance.php:355
1092
- msgid "No Errors so far"
 
 
 
1093
  msgstr ""
1094
 
1095
- #: ../../admin/config/maintenance.php:356
1096
- msgid ""
1097
- "The information here above is useful to troubleshoot issues with the "
1098
- "tracker. Please include this code when sending a support request."
1099
  msgstr ""
1100
 
1101
- #: ../../admin/config/maintenance.php:363
1102
- msgid "Reset Reports"
1103
  msgstr ""
1104
 
1105
- #: ../../admin/config/maintenance.php:366
1106
- msgid ""
1107
- "Are you sure you want to restore the default arrangement of your reports?"
1108
  msgstr ""
1109
 
1110
- #: ../../admin/config/maintenance.php:366
1111
- msgid "No Panic Button"
1112
  msgstr ""
1113
 
1114
- #: ../../admin/config/maintenance.php:367
1115
- msgid ""
1116
- "Reset the default arrangement of your reports. Helpful when, for some "
1117
- "reason, reports disappear from your panels or something doesn't look right "
1118
- "in your views."
 
 
1119
  msgstr ""
1120
 
1121
  #: ../../admin/lang/dynamic_strings.php:3
1122
  msgid "xx"
1123
  msgstr "Unknown"
1124
 
1125
- #: ../../admin/lang/dynamic_strings.php:4
1126
- msgid "unknown"
1127
- msgstr "Unknown"
1128
-
1129
- #: ../../admin/lang/dynamic_strings.php:5
1130
- msgid "win8.1"
1131
- msgstr "Windows 8.1"
1132
-
1133
  #: ../../admin/lang/dynamic_strings.php:6
1134
- msgid "win8"
1135
- msgstr "Windows 8"
1136
 
1137
  #: ../../admin/lang/dynamic_strings.php:7
1138
- msgid "win7"
1139
- msgstr "Windows 7"
1140
 
1141
  #: ../../admin/lang/dynamic_strings.php:8
1142
- msgid "winvista"
1143
- msgstr "Windows Vista"
1144
 
1145
  #: ../../admin/lang/dynamic_strings.php:9
1146
- msgid "win2003"
1147
- msgstr "Windows 2003"
1148
 
1149
  #: ../../admin/lang/dynamic_strings.php:10
1150
- msgid "winxp"
1151
- msgstr "Windows XP"
1152
 
1153
  #: ../../admin/lang/dynamic_strings.php:11
1154
- msgid "winnt"
1155
- msgstr "Windows NT"
1156
 
1157
  #: ../../admin/lang/dynamic_strings.php:12
1158
- msgid "win2000"
1159
- msgstr "Windows 2000"
1160
 
1161
  #: ../../admin/lang/dynamic_strings.php:13
1162
- msgid "winme"
1163
- msgstr "Windows ME"
1164
 
1165
  #: ../../admin/lang/dynamic_strings.php:14
1166
- msgid "win98"
1167
- msgstr "Windows 98"
1168
 
1169
  #: ../../admin/lang/dynamic_strings.php:15
1170
- msgid "win95"
1171
- msgstr "Windows 95"
1172
 
1173
  #: ../../admin/lang/dynamic_strings.php:16
1174
- msgid "win31"
1175
- msgstr "Windows 3.1"
1176
 
1177
  #: ../../admin/lang/dynamic_strings.php:17
1178
- msgid "win32"
1179
- msgstr "Windows 32-bit"
1180
 
1181
  #: ../../admin/lang/dynamic_strings.php:18
1182
- msgid "win16"
1183
- msgstr "Windows 16-bit"
1184
 
1185
  #: ../../admin/lang/dynamic_strings.php:19
1186
- msgid "mac68k"
1187
- msgstr "Mac 68k"
1188
 
1189
  #: ../../admin/lang/dynamic_strings.php:20
1190
- msgid "macosx"
1191
- msgstr "Mac OS X"
1192
 
1193
  #: ../../admin/lang/dynamic_strings.php:21
1194
- msgid "macppc"
1195
- msgstr "Mac PowerPC"
1196
 
1197
  #: ../../admin/lang/dynamic_strings.php:22
1198
- msgid "mac"
1199
- msgstr "Mac"
1200
 
1201
  #: ../../admin/lang/dynamic_strings.php:23
1202
- msgid "os/2"
1203
- msgstr "IBM OS/2"
1204
 
1205
  #: ../../admin/lang/dynamic_strings.php:24
1206
- msgid "sunos"
1207
- msgstr "Sun OS"
1208
 
1209
  #: ../../admin/lang/dynamic_strings.php:25
1210
- msgid "solaris"
1211
- msgstr "Solaris"
1212
 
1213
  #: ../../admin/lang/dynamic_strings.php:26
1214
- msgid "unix"
1215
- msgstr "Unix"
1216
 
1217
  #: ../../admin/lang/dynamic_strings.php:27
1218
- msgid "irix"
1219
- msgstr "IRIX"
1220
 
1221
  #: ../../admin/lang/dynamic_strings.php:28
1222
- msgid "hp-ux"
1223
- msgstr "HP-UX"
1224
 
1225
  #: ../../admin/lang/dynamic_strings.php:29
1226
- msgid "aix"
1227
- msgstr "IBM AIX"
1228
 
1229
  #: ../../admin/lang/dynamic_strings.php:30
1230
- msgid "beos"
1231
- msgstr "BeOS"
1232
 
1233
  #: ../../admin/lang/dynamic_strings.php:31
1234
- msgid "cygwin"
1235
- msgstr "Cygwin"
1236
 
1237
  #: ../../admin/lang/dynamic_strings.php:32
1238
- msgid "digital unix"
1239
- msgstr "Digital Unix"
1240
 
1241
  #: ../../admin/lang/dynamic_strings.php:33
1242
- msgid "risc os"
1243
- msgstr "Risc OS"
1244
 
1245
  #: ../../admin/lang/dynamic_strings.php:34
1246
- msgid "openvms"
1247
- msgstr "OpenVMS"
1248
 
1249
  #: ../../admin/lang/dynamic_strings.php:35
1250
- msgid "linux"
1251
- msgstr "Linux"
1252
 
1253
  #: ../../admin/lang/dynamic_strings.php:36
1254
- msgid "freebsd"
1255
- msgstr "FreeBSD"
1256
 
1257
  #: ../../admin/lang/dynamic_strings.php:37
1258
- msgid "openbsd"
1259
- msgstr "OpenBSD"
1260
 
1261
  #: ../../admin/lang/dynamic_strings.php:38
1262
- msgid "netbsd"
1263
- msgstr "NetBSD"
1264
 
1265
  #: ../../admin/lang/dynamic_strings.php:39
1266
- msgid "debian"
1267
- msgstr "Debian"
1268
 
1269
  #: ../../admin/lang/dynamic_strings.php:40
1270
- msgid "amiga"
1271
- msgstr "Amiga"
1272
 
1273
  #: ../../admin/lang/dynamic_strings.php:41
1274
- msgid "android"
1275
- msgstr "Android"
1276
 
1277
  #: ../../admin/lang/dynamic_strings.php:42
1278
- msgid "wyderos"
1279
- msgstr "WyderOS"
1280
 
1281
  #: ../../admin/lang/dynamic_strings.php:43
1282
- msgid "iphone osx"
1283
- msgstr "iPhone OS X"
1284
 
1285
  #: ../../admin/lang/dynamic_strings.php:44
1286
- msgid "ios"
1287
- msgstr "iPhone OS X"
1288
 
1289
  #: ../../admin/lang/dynamic_strings.php:45
1290
- msgid "palm"
1291
- msgstr "Palm"
1292
 
1293
  #: ../../admin/lang/dynamic_strings.php:46
1294
- msgid "wap"
1295
- msgstr "WAP"
1296
 
1297
  #: ../../admin/lang/dynamic_strings.php:47
1298
- msgid "java"
1299
- msgstr "Java"
1300
 
1301
  #: ../../admin/lang/dynamic_strings.php:48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1302
  msgid "winphone7"
1303
  msgstr "Windows Phone"
1304
 
1305
- #: ../../admin/lang/dynamic_strings.php:49
1306
  msgid "winphone7.5"
1307
  msgstr "Windows Phone 7.5"
1308
 
1309
- #: ../../admin/lang/dynamic_strings.php:50
1310
  msgid "winphone8"
1311
  msgstr "Windows Phone 8"
1312
 
1313
- #: ../../admin/lang/dynamic_strings.php:51
1314
  msgid "winphone8.1"
1315
  msgstr "Windows Phone 8.1"
1316
 
1317
- #: ../../admin/lang/dynamic_strings.php:52
1318
- msgid "wince"
1319
- msgstr "Windows CE"
1320
 
1321
- #: ../../admin/lang/dynamic_strings.php:53
1322
- msgid "symbianos"
1323
- msgstr "Symbian OS"
1324
 
1325
- #: ../../admin/lang/dynamic_strings.php:54
1326
- msgid "blackberry os"
1327
- msgstr "BlackBerry OS"
1328
 
1329
- #: ../../admin/lang/dynamic_strings.php:55
1330
- msgid "webos"
1331
- msgstr "WebOS"
1332
 
1333
- #: ../../admin/lang/dynamic_strings.php:56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1334
  msgid "p-and"
1335
  msgstr "Android"
1336
 
1337
- #: ../../admin/lang/dynamic_strings.php:57
1338
  msgid "p-bla"
1339
  msgstr "BlackBerry"
1340
 
1341
- #: ../../admin/lang/dynamic_strings.php:58
1342
  msgid "p-chr"
1343
  msgstr "Chrome OS"
1344
 
1345
- #: ../../admin/lang/dynamic_strings.php:59
1346
  msgid "p-fir"
1347
  msgstr "Fire OS"
1348
 
1349
- #: ../../admin/lang/dynamic_strings.php:60
1350
  msgid "p-fre"
1351
  msgstr "Linux FreeBSD"
1352
 
1353
- #: ../../admin/lang/dynamic_strings.php:61
1354
  msgid "p-ios"
1355
  msgstr "Apple iOS"
1356
 
1357
- #: ../../admin/lang/dynamic_strings.php:62
1358
  msgid "p-jav"
1359
  msgstr "Java-based OS"
1360
 
1361
- #: ../../admin/lang/dynamic_strings.php:63
1362
  msgid "p-lin"
1363
  msgstr "Linux"
1364
 
1365
- #: ../../admin/lang/dynamic_strings.php:64
1366
  msgid "p-mac"
1367
  msgstr "Apple"
1368
 
1369
- #: ../../admin/lang/dynamic_strings.php:65
1370
  msgid "p-rim"
1371
  msgstr "Blackberry RIM"
1372
 
1373
- #: ../../admin/lang/dynamic_strings.php:66
1374
  msgid "p-sym"
1375
  msgstr "Symbian OS"
1376
 
1377
- #: ../../admin/lang/dynamic_strings.php:67
1378
  msgid "p-ubu"
1379
  msgstr "Linux Ubuntu"
1380
 
1381
- #: ../../admin/lang/dynamic_strings.php:68
1382
  msgid "p-unk"
1383
  msgstr "Unknown"
1384
 
1385
- #: ../../admin/lang/dynamic_strings.php:69
1386
  msgid "p-win"
1387
  msgstr "Microsoft"
1388
 
1389
- #: ../../admin/lang/dynamic_strings.php:70
1390
- msgid "powertv"
1391
- msgstr "PowerTV"
1392
-
1393
- #: ../../admin/lang/dynamic_strings.php:71
1394
- msgid "acrobat"
1395
- msgstr "Acrobat Reader"
1396
-
1397
- #: ../../admin/lang/dynamic_strings.php:72
1398
- msgid "director"
1399
- msgstr "Macromedia Director"
1400
-
1401
- #: ../../admin/lang/dynamic_strings.php:73
1402
- msgid "flash"
1403
- msgstr "Adobe Flash Player"
1404
-
1405
- #: ../../admin/lang/dynamic_strings.php:74
1406
- msgid "mediaplayer"
1407
- msgstr "Microsoft Media Player"
1408
-
1409
- #: ../../admin/lang/dynamic_strings.php:75
1410
- msgid "quicktime"
1411
- msgstr "QuickTime"
1412
-
1413
- #: ../../admin/lang/dynamic_strings.php:76
1414
- msgid "real"
1415
- msgstr "Real Player"
1416
-
1417
- #: ../../admin/lang/dynamic_strings.php:77
1418
- msgid "silverlight"
1419
- msgstr "Microsoft Silverlight"
1420
-
1421
  # Afrikaans
1422
- #: ../../admin/lang/dynamic_strings.php:78
1423
  msgid "l-af"
1424
  msgstr "Afrikaans"
1425
 
1426
  # Afrikaans
1427
- #: ../../admin/lang/dynamic_strings.php:79
1428
  msgid "l-af-za"
1429
  msgstr "Afrikaans (South Africa)"
1430
 
1431
  # Arabic
1432
- #: ../../admin/lang/dynamic_strings.php:80
1433
  msgid "l-ar"
1434
  msgstr "Arabic"
1435
 
1436
  # Arabic
1437
- #: ../../admin/lang/dynamic_strings.php:81
1438
  msgid "l-ar-ae"
1439
  msgstr "Arabic (U.A.E.)"
1440
 
1441
  # Arabic
1442
- #: ../../admin/lang/dynamic_strings.php:82
1443
  msgid "l-ar-bh"
1444
  msgstr "Arabic (Bahrain)"
1445
 
1446
  # Arabic
1447
- #: ../../admin/lang/dynamic_strings.php:83
1448
  msgid "l-ar-dz"
1449
  msgstr "Arabic (Algeria)"
1450
 
1451
  # Arabic
1452
- #: ../../admin/lang/dynamic_strings.php:84
1453
  msgid "l-ar-eg"
1454
  msgstr "Arabic (Egypt)"
1455
 
1456
  # Arabic
1457
- #: ../../admin/lang/dynamic_strings.php:85
1458
  msgid "l-ar-iq"
1459
  msgstr "Arabic (Iraq)"
1460
 
1461
  # Arabic
1462
- #: ../../admin/lang/dynamic_strings.php:86
1463
  msgid "l-ar-jo"
1464
  msgstr "Arabic (Jordan)"
1465
 
1466
  # Arabic
1467
- #: ../../admin/lang/dynamic_strings.php:87
1468
  msgid "l-ar-kw"
1469
  msgstr "Arabic (Kuwait)"
1470
 
1471
  # Arabic
1472
- #: ../../admin/lang/dynamic_strings.php:88
1473
  msgid "l-ar-lb"
1474
  msgstr "Arabic (Lebanon)"
1475
 
1476
  # Arabic
1477
- #: ../../admin/lang/dynamic_strings.php:89
1478
  msgid "l-ar-ly"
1479
  msgstr "Arabic (Libya)"
1480
 
1481
  # Arabic
1482
- #: ../../admin/lang/dynamic_strings.php:90
1483
  msgid "l-ar-ma"
1484
  msgstr "Arabic (Morocco)"
1485
 
1486
  # Arabic
1487
- #: ../../admin/lang/dynamic_strings.php:91
1488
  msgid "l-ar-om"
1489
  msgstr "Arabic (Oman)"
1490
 
1491
  # Arabic
1492
- #: ../../admin/lang/dynamic_strings.php:92
1493
  msgid "l-ar-qa"
1494
  msgstr "Arabic (Qatar)"
1495
 
1496
  # Arabic
1497
- #: ../../admin/lang/dynamic_strings.php:93
1498
  msgid "l-ar-sa"
1499
  msgstr "Arabic (Saudi Arabia)"
1500
 
1501
  # Arabic
1502
- #: ../../admin/lang/dynamic_strings.php:94
1503
  msgid "l-ar-sy"
1504
  msgstr "Arabic (Syria)"
1505
 
1506
  # Arabic
1507
- #: ../../admin/lang/dynamic_strings.php:95
1508
  msgid "l-ar-tn"
1509
  msgstr "Arabic (Tunisia)"
1510
 
1511
  # Arabic
1512
- #: ../../admin/lang/dynamic_strings.php:96
1513
  msgid "l-ar-ye"
1514
  msgstr "Arabic (Yemen)"
1515
 
1516
  # Azerbaijani
1517
- #: ../../admin/lang/dynamic_strings.php:97
1518
  msgid "l-az"
1519
  msgstr "Azerbaijani"
1520
 
1521
  # Azerbaijani
1522
- #: ../../admin/lang/dynamic_strings.php:98
1523
  msgid "l-az-az"
1524
  msgstr "Azeri (Latin)"
1525
 
1526
  # Belarusian
1527
- #: ../../admin/lang/dynamic_strings.php:99
1528
  msgid "l-be"
1529
  msgstr "Belarusian"
1530
 
1531
  # Belarusian
1532
- #: ../../admin/lang/dynamic_strings.php:100
1533
  msgid "l-be-by"
1534
  msgstr "Belarusian (Belarus)"
1535
 
1536
  # Bulgarian
1537
- #: ../../admin/lang/dynamic_strings.php:101
1538
  msgid "l-bg"
1539
  msgstr "Bulgarian"
1540
 
1541
  # Bulgarian
1542
- #: ../../admin/lang/dynamic_strings.php:102
1543
  msgid "l-bg-bg"
1544
  msgstr "Bulgarian (Bulgaria)"
1545
 
1546
  # Bosnian
1547
- #: ../../admin/lang/dynamic_strings.php:103
1548
  msgid "l-bs-ba"
1549
  msgstr "Bosnian"
1550
 
1551
  # Catalan; Valencian
1552
- #: ../../admin/lang/dynamic_strings.php:104
1553
  msgid "l-ca"
1554
  msgstr "Catalan"
1555
 
1556
  # Catalan; Valencian
1557
- #: ../../admin/lang/dynamic_strings.php:105
1558
  msgid "l-ca-es"
1559
  msgstr "Catalan; Valencian"
1560
 
1561
  # Czech
1562
- #: ../../admin/lang/dynamic_strings.php:106
1563
  msgid "l-cs"
1564
  msgstr "Czech"
1565
 
1566
  # Czech
1567
- #: ../../admin/lang/dynamic_strings.php:107
1568
  msgid "l-cs-cz"
1569
  msgstr "Czech (Czech Republic)"
1570
 
1571
  # Welsh
1572
- #: ../../admin/lang/dynamic_strings.php:108
1573
  msgid "l-cy"
1574
  msgstr "Welsh"
1575
 
1576
  # Welsh
1577
- #: ../../admin/lang/dynamic_strings.php:109
1578
  msgid "l-cy-gb"
1579
  msgstr "Welsh (UK)"
1580
 
1581
  # Danish
1582
- #: ../../admin/lang/dynamic_strings.php:110
1583
  msgid "l-da"
1584
  msgstr "Danish"
1585
 
1586
  # Danish
1587
- #: ../../admin/lang/dynamic_strings.php:111
1588
  msgid "l-da-dk"
1589
  msgstr "Danish (Denmark)"
1590
 
1591
  # German
1592
- #: ../../admin/lang/dynamic_strings.php:112
1593
  msgid "l-de"
1594
  msgstr "German"
1595
 
1596
  # German
1597
- #: ../../admin/lang/dynamic_strings.php:113
1598
  msgid "l-de-at"
1599
  msgstr "German (Austria)"
1600
 
1601
  # German
1602
- #: ../../admin/lang/dynamic_strings.php:114
1603
  msgid "l-de-ch"
1604
  msgstr "German (Switzerland)"
1605
 
1606
  # German
1607
- #: ../../admin/lang/dynamic_strings.php:115
1608
  msgid "l-de-de"
1609
  msgstr "German (Germany)"
1610
 
1611
  # German
1612
- #: ../../admin/lang/dynamic_strings.php:116
1613
  msgid "l-de-li"
1614
  msgstr "German (Liechtenstein)"
1615
 
1616
  # German
1617
- #: ../../admin/lang/dynamic_strings.php:117
1618
  msgid "l-de-lu"
1619
  msgstr "German (Luxembourg)"
1620
 
1621
  # Dhivehi; Divehi; Maldivian
1622
- #: ../../admin/lang/dynamic_strings.php:118
1623
  msgid "l-dv"
1624
  msgstr "Dhivehi; Divehi; Maldivian"
1625
 
1626
  # Dhivehi; Divehi; Maldivian
1627
- #: ../../admin/lang/dynamic_strings.php:119
1628
  msgid "l-dv-mv"
1629
  msgstr "Maldivian"
1630
 
1631
  # Modern Greek (1453-)
1632
- #: ../../admin/lang/dynamic_strings.php:120
1633
  msgid "l-el"
1634
  msgstr "Greek"
1635
 
1636
  # Modern Greek (1453-)
1637
- #: ../../admin/lang/dynamic_strings.php:121
1638
  msgid "l-el-gr"
1639
  msgstr "Greek (Greece)"
1640
 
1641
  # English
1642
- #: ../../admin/lang/dynamic_strings.php:122
1643
  msgid "l-en"
1644
  msgstr "English"
1645
 
1646
  # English
1647
- #: ../../admin/lang/dynamic_strings.php:123
1648
  msgid "l-en-au"
1649
  msgstr "English (Australia)"
1650
 
1651
  # English
1652
- #: ../../admin/lang/dynamic_strings.php:124
1653
  msgid "l-en-bz"
1654
  msgstr "English (Belize)"
1655
 
1656
  # English
1657
- #: ../../admin/lang/dynamic_strings.php:125
1658
  msgid "l-en-ca"
1659
  msgstr "English (Canada)"
1660
 
1661
  # English
1662
- #: ../../admin/lang/dynamic_strings.php:126
1663
  msgid "l-en-cb"
1664
  msgstr "English (Caribbean)"
1665
 
1666
  # English
1667
- #: ../../admin/lang/dynamic_strings.php:127
1668
  msgid "l-en-gb"
1669
  msgstr "English (Great Britain)"
1670
 
1671
  # English
1672
- #: ../../admin/lang/dynamic_strings.php:128
1673
  msgid "l-en-ie"
1674
  msgstr "English (Ireland)"
1675
 
1676
  # English
1677
- #: ../../admin/lang/dynamic_strings.php:129
1678
  msgid "l-en-jm"
1679
  msgstr "English (Jamaica)"
1680
 
1681
  # English
1682
- #: ../../admin/lang/dynamic_strings.php:130
1683
  msgid "l-en-nz"
1684
  msgstr "English (New Zealand)"
1685
 
1686
  # English
1687
- #: ../../admin/lang/dynamic_strings.php:131
1688
  msgid "l-en-ph"
1689
  msgstr "English (Philippines)"
1690
 
1691
  # English
1692
- #: ../../admin/lang/dynamic_strings.php:132
1693
  msgid "l-en-tt"
1694
  msgstr "English (Trinidad and Tobago)"
1695
 
1696
  # English
1697
- #: ../../admin/lang/dynamic_strings.php:133
1698
  msgid "l-en-us"
1699
  msgstr "English (USA)"
1700
 
1701
  # English
1702
- #: ../../admin/lang/dynamic_strings.php:134
1703
  msgid "l-en-za"
1704
  msgstr "English (South Africa)"
1705
 
1706
  # English
1707
- #: ../../admin/lang/dynamic_strings.php:135
1708
  msgid "l-en-zw"
1709
  msgstr "English (Zimbabwe)"
1710
 
1711
  # Esperanto
1712
- #: ../../admin/lang/dynamic_strings.php:136
1713
  msgid "l-eo"
1714
  msgstr "Esperanto"
1715
 
1716
  # Spanish; Castilian
1717
- #: ../../admin/lang/dynamic_strings.php:137
1718
  msgid "l-es"
1719
  msgstr "Spanish"
1720
 
1721
  # Spanish; Castilian
1722
- #: ../../admin/lang/dynamic_strings.php:138
1723
  msgid "l-es-ar"
1724
  msgstr "Spanish (Argentina)"
1725
 
1726
  # Spanish; Castilian
1727
- #: ../../admin/lang/dynamic_strings.php:139
1728
  msgid "l-es-bo"
1729
  msgstr "Spanish (Bolivia)"
1730
 
1731
  # Spanish; Castilian
1732
- #: ../../admin/lang/dynamic_strings.php:140
1733
  msgid "l-es-cl"
1734
  msgstr "Spanish (Chile)"
1735
 
1736
  # Spanish; Castilian
1737
- #: ../../admin/lang/dynamic_strings.php:141
1738
  msgid "l-es-co"
1739
  msgstr "Spanish (Colombia)"
1740
 
1741
  # Spanish; Castilian
1742
- #: ../../admin/lang/dynamic_strings.php:142
1743
  msgid "l-es-cr"
1744
  msgstr "Spanish (Costa Rica)"
1745
 
1746
  # Spanish; Castilian
1747
- #: ../../admin/lang/dynamic_strings.php:143
1748
  msgid "l-es-do"
1749
  msgstr "Spanish (Dominican Republic)"
1750
 
1751
  # Spanish; Castilian
1752
- #: ../../admin/lang/dynamic_strings.php:144
1753
  msgid "l-es-ec"
1754
  msgstr "Spanish (Ecuador)"
1755
 
1756
  # Spanish; Castilian
1757
- #: ../../admin/lang/dynamic_strings.php:145
1758
  msgid "l-es-es"
1759
  msgstr "Spanish (Spain)"
1760
 
1761
  # Spanish; Castilian
1762
- #: ../../admin/lang/dynamic_strings.php:146
1763
  msgid "l-es-gt"
1764
  msgstr "Spanish (Guatemala)"
1765
 
1766
  # Spanish; Castilian
1767
- #: ../../admin/lang/dynamic_strings.php:147
1768
  msgid "l-es-hn"
1769
  msgstr "Spanish (Honduras)"
1770
 
1771
  # Spanish; Castilian
1772
- #: ../../admin/lang/dynamic_strings.php:148
1773
  msgid "l-es-mx"
1774
  msgstr "Spanish (Mexico)"
1775
 
1776
  # Spanish; Castilian
1777
- #: ../../admin/lang/dynamic_strings.php:149
1778
  msgid "l-es-ni"
1779
  msgstr "Spanish (Nicaragua)"
1780
 
1781
  # Spanish; Castilian
1782
- #: ../../admin/lang/dynamic_strings.php:150
1783
  msgid "l-es-pa"
1784
  msgstr "Spanish (Panama)"
1785
 
1786
  # Spanish; Castilian
1787
- #: ../../admin/lang/dynamic_strings.php:151
1788
  msgid "l-es-pe"
1789
  msgstr "Spanish (Peru)"
1790
 
1791
  # Spanish; Castilian
1792
- #: ../../admin/lang/dynamic_strings.php:152
1793
  msgid "l-es-pr"
1794
  msgstr "Spanish (Puerto Rico)"
1795
 
1796
  # Spanish; Castilian
1797
- #: ../../admin/lang/dynamic_strings.php:153
1798
  msgid "l-es-py"
1799
  msgstr "Spanish (Paraguay)"
1800
 
1801
  # Spanish; Castilian
1802
- #: ../../admin/lang/dynamic_strings.php:154
1803
  msgid "l-es-sv"
1804
  msgstr "Spanish (El Salvador)"
1805
 
1806
  # Spanish; Castilian
1807
- #: ../../admin/lang/dynamic_strings.php:155
1808
  msgid "l-es-uy"
1809
  msgstr "Spanish (Uruguay)"
1810
 
1811
  # Spanish; Castilian
1812
- #: ../../admin/lang/dynamic_strings.php:156
1813
  msgid "l-es-ve"
1814
  msgstr "Spanish (Venezuela)"
1815
 
1816
  # Estonian
1817
- #: ../../admin/lang/dynamic_strings.php:157
1818
  msgid "l-et"
1819
  msgstr "Estonian"
1820
 
1821
  # Estonian
1822
- #: ../../admin/lang/dynamic_strings.php:158
1823
  msgid "l-et-ee"
1824
  msgstr "Estonian (Estonia)"
1825
 
1826
  # Basque
1827
- #: ../../admin/lang/dynamic_strings.php:159
1828
  msgid "l-eu"
1829
  msgstr "Basque"
1830
 
1831
  # Basque
1832
- #: ../../admin/lang/dynamic_strings.php:160
1833
  msgid "l-eu-es"
1834
  msgstr "Basque (Spain)"
1835
 
1836
  # Persian
1837
- #: ../../admin/lang/dynamic_strings.php:161
1838
  msgid "l-fa"
1839
  msgstr "Persian"
1840
 
1841
  # Persian
1842
- #: ../../admin/lang/dynamic_strings.php:162
1843
  msgid "l-fa-ir"
1844
  msgstr "Persian (Iran)"
1845
 
1846
  # Finnish
1847
- #: ../../admin/lang/dynamic_strings.php:163
1848
  msgid "l-fi"
1849
  msgstr "Finnish"
1850
 
1851
  # Finnish
1852
- #: ../../admin/lang/dynamic_strings.php:164
1853
  msgid "l-fi-fi"
1854
  msgstr "Finnish (Finland)"
1855
 
1856
  # Faroese
1857
- #: ../../admin/lang/dynamic_strings.php:165
1858
  msgid "l-fo"
1859
  msgstr "Faroese"
1860
 
1861
  # Faroese
1862
- #: ../../admin/lang/dynamic_strings.php:166
1863
  msgid "l-fo-fo"
1864
  msgstr "Faroese (Faroe Islands)"
1865
 
1866
  # French
1867
- #: ../../admin/lang/dynamic_strings.php:167
1868
  msgid "l-fr"
1869
  msgstr "French"
1870
 
1871
  # French
1872
- #: ../../admin/lang/dynamic_strings.php:168
1873
  msgid "l-fr-be"
1874
  msgstr "French (Belgium)"
1875
 
1876
  # French
1877
- #: ../../admin/lang/dynamic_strings.php:169
1878
  msgid "l-fr-ca"
1879
  msgstr "French (Canada)"
1880
 
1881
  # French
1882
- #: ../../admin/lang/dynamic_strings.php:170
1883
  msgid "l-fr-ch"
1884
  msgstr "French (Switzerland)"
1885
 
1886
  # French
1887
- #: ../../admin/lang/dynamic_strings.php:171
1888
  msgid "l-fr-fr"
1889
  msgstr "French (France)"
1890
 
1891
  # French
1892
- #: ../../admin/lang/dynamic_strings.php:172
1893
  msgid "l-fr-lu"
1894
  msgstr "French (Luxembourg)"
1895
 
1896
  # French
1897
- #: ../../admin/lang/dynamic_strings.php:173
1898
  msgid "l-fr-mc"
1899
  msgstr "French (Monaco)"
1900
 
1901
  # Galician
1902
- #: ../../admin/lang/dynamic_strings.php:174
1903
  msgid "l-gl"
1904
  msgstr "Galician"
1905
 
1906
  # Spanish; Castilian
1907
- #: ../../admin/lang/dynamic_strings.php:175
1908
  msgid "l-gl-es"
1909
  msgstr "Galician (Spain)"
1910
 
1911
  # Gujarati
1912
- #: ../../admin/lang/dynamic_strings.php:176
1913
  msgid "l-gu"
1914
  msgstr "Gujarati"
1915
 
1916
  # Gujarati
1917
- #: ../../admin/lang/dynamic_strings.php:177
1918
  msgid "l-gu-in"
1919
  msgstr "Gujarati (India)"
1920
 
1921
  # Hebrew
1922
- #: ../../admin/lang/dynamic_strings.php:178
1923
  msgid "l-he"
1924
  msgstr "Hebrew"
1925
 
1926
  # Hebrew
1927
- #: ../../admin/lang/dynamic_strings.php:179
1928
  msgid "l-he-il"
1929
  msgstr "Hebrew (Israel)"
1930
 
1931
  # Hindi
1932
- #: ../../admin/lang/dynamic_strings.php:180
1933
  msgid "l-hi"
1934
  msgstr "Hindi"
1935
 
1936
  # Hindi
1937
- #: ../../admin/lang/dynamic_strings.php:181
1938
  msgid "l-hi-in"
1939
  msgstr "Hindi (India)"
1940
 
1941
  # Croatian
1942
- #: ../../admin/lang/dynamic_strings.php:182
1943
  msgid "l-hr"
1944
  msgstr "Croatian"
1945
 
1946
  # Croatian
1947
- #: ../../admin/lang/dynamic_strings.php:183
1948
  msgid "l-hr-ba"
1949
  msgstr "Croatian (Bosnia)"
1950
 
1951
  # Croatian
1952
- #: ../../admin/lang/dynamic_strings.php:184
1953
  msgid "l-hr-hr"
1954
  msgstr "Croatian (Croatia)"
1955
 
1956
  # Hungarian
1957
- #: ../../admin/lang/dynamic_strings.php:185
1958
  msgid "l-hu"
1959
  msgstr "Hungarian"
1960
 
1961
  # Hungarian
1962
- #: ../../admin/lang/dynamic_strings.php:186
1963
  msgid "l-hu-hu"
1964
  msgstr "Hungarian (Hungary)"
1965
 
1966
  # Armenian
1967
- #: ../../admin/lang/dynamic_strings.php:187
1968
  msgid "l-hy"
1969
  msgstr "Armenian"
1970
 
1971
  # Armenian
1972
- #: ../../admin/lang/dynamic_strings.php:188
1973
  msgid "l-hy-am"
1974
  msgstr "Armenian (Armenia)"
1975
 
1976
- #: ../../admin/lang/dynamic_strings.php:189
1977
  msgid "l-id"
1978
- msgstr ""
1979
 
1980
- #: ../../admin/lang/dynamic_strings.php:190
1981
  msgid "l-id-id"
1982
- msgstr ""
1983
 
1984
  # Icelandic
1985
- #: ../../admin/lang/dynamic_strings.php:191
1986
  msgid "l-is"
1987
  msgstr "Icelandic"
1988
 
1989
  # Icelandic
1990
- #: ../../admin/lang/dynamic_strings.php:192
1991
  msgid "l-is-is"
1992
  msgstr "Icelandic (Iceland)"
1993
 
1994
  # Italian
1995
- #: ../../admin/lang/dynamic_strings.php:193
1996
  msgid "l-it"
1997
  msgstr "Italian"
1998
 
1999
  # Italian
2000
- #: ../../admin/lang/dynamic_strings.php:194
2001
  msgid "l-it-ch"
2002
  msgstr "Italian (Switzerland)"
2003
 
2004
  # Italian
2005
- #: ../../admin/lang/dynamic_strings.php:195
2006
  msgid "l-it-it"
2007
  msgstr "Italian (Italy)"
2008
 
2009
  # Japanese
2010
- #: ../../admin/lang/dynamic_strings.php:196
2011
  msgid "l-ja"
2012
  msgstr "Japanese"
2013
 
2014
  # Japanese
2015
- #: ../../admin/lang/dynamic_strings.php:197
2016
  msgid "l-ja-jp"
2017
  msgstr "Japanese (Japan)"
2018
 
2019
  # Georgian
2020
- #: ../../admin/lang/dynamic_strings.php:198
2021
  msgid "l-ka"
2022
  msgstr "Georgian"
2023
 
2024
  # Georgian
2025
- #: ../../admin/lang/dynamic_strings.php:199
2026
  msgid "l-ka-ge"
2027
  msgstr "Georgian (Georgia)"
2028
 
2029
  # Kazakh
2030
- #: ../../admin/lang/dynamic_strings.php:200
2031
  msgid "l-kk"
2032
  msgstr "Kazakh"
2033
 
2034
  # Kazakh
2035
- #: ../../admin/lang/dynamic_strings.php:201
2036
  msgid "l-kk-kz"
2037
  msgstr "Kazakh (Kazakhstan)"
2038
 
2039
  # Kannada
2040
- #: ../../admin/lang/dynamic_strings.php:202
2041
  msgid "l-kn"
2042
  msgstr "Kannada"
2043
 
2044
  # Kannada
2045
- #: ../../admin/lang/dynamic_strings.php:203
2046
  msgid "l-kn-in"
2047
  msgstr "Kannada (India)"
2048
 
2049
  # Korean
2050
- #: ../../admin/lang/dynamic_strings.php:204
2051
  msgid "l-ko"
2052
  msgstr "Korean"
2053
 
2054
  # Korean
2055
- #: ../../admin/lang/dynamic_strings.php:205
2056
  msgid "l-ko-kr"
2057
  msgstr "Korean (Korea)"
2058
 
2059
  # Korean
2060
- #: ../../admin/lang/dynamic_strings.php:206
2061
  msgid "l-kok"
2062
  msgstr "Konkani"
2063
 
2064
  # Korean
2065
- #: ../../admin/lang/dynamic_strings.php:207
2066
  msgid "l-kok-in"
2067
  msgstr "Konkani (India)"
2068
 
2069
  # Kirghiz; Kyrgyz
2070
- #: ../../admin/lang/dynamic_strings.php:208
2071
  msgid "l-ky"
2072
  msgstr "Kirghiz"
2073
 
2074
  # Kirghiz; Kyrgyz
2075
- #: ../../admin/lang/dynamic_strings.php:209
2076
  msgid "l-ky-kg"
2077
  msgstr "Kirghiz (Kazakhstan)"
2078
 
2079
  # Lithuanian
2080
- #: ../../admin/lang/dynamic_strings.php:210
2081
  msgid "l-lt"
2082
  msgstr "Lithuanian"
2083
 
2084
  # Lithuanian
2085
- #: ../../admin/lang/dynamic_strings.php:211
2086
  msgid "l-lt-lt"
2087
  msgstr "Lithuanian (Lithuania)"
2088
 
2089
  # Latvian
2090
- #: ../../admin/lang/dynamic_strings.php:212
2091
  msgid "l-lv"
2092
  msgstr "Latvian"
2093
 
2094
  # Latvian
2095
- #: ../../admin/lang/dynamic_strings.php:213
2096
  msgid "l-lv-lv"
2097
  msgstr "Latvian (Latvia)"
2098
 
2099
  # Maori
2100
- #: ../../admin/lang/dynamic_strings.php:214
2101
  msgid "l-mi"
2102
  msgstr "Maori"
2103
 
2104
  # Maori
2105
- #: ../../admin/lang/dynamic_strings.php:215
2106
  msgid "l-mi-nz"
2107
  msgstr "Maori (New Zealand)"
2108
 
2109
  # Macedonian
2110
- #: ../../admin/lang/dynamic_strings.php:216
2111
  msgid "l-mk"
2112
  msgstr "Macedonian"
2113
 
2114
  # Macedonian
2115
- #: ../../admin/lang/dynamic_strings.php:217
2116
  msgid "l-mk-ml"
2117
  msgstr "Macedonian (FYROM)"
2118
 
2119
  # Mongolian
2120
- #: ../../admin/lang/dynamic_strings.php:218
2121
  msgid "l-mn"
2122
  msgstr "Mongolian"
2123
 
2124
  # Mongolian
2125
- #: ../../admin/lang/dynamic_strings.php:219
2126
  msgid "l-mn-mn"
2127
  msgstr "Mongolian (Mongolia)"
2128
 
2129
  # Marathi
2130
- #: ../../admin/lang/dynamic_strings.php:220
2131
  msgid "l-mr"
2132
  msgstr "Marathi"
2133
 
2134
  # Marathi
2135
- #: ../../admin/lang/dynamic_strings.php:221
2136
  msgid "l-mr-in"
2137
  msgstr "Marathi (India)"
2138
 
2139
  # Malay
2140
- #: ../../admin/lang/dynamic_strings.php:222
2141
  msgid "l-ms"
2142
  msgstr "Malay"
2143
 
2144
  # Malay
2145
- #: ../../admin/lang/dynamic_strings.php:223
2146
  msgid "l-ms-bn"
2147
  msgstr "Malay (Brunei)"
2148
 
2149
  # Malay
2150
- #: ../../admin/lang/dynamic_strings.php:224
2151
  msgid "l-ms-my"
2152
  msgstr "Malay (Malaysia)"
2153
 
2154
  # Maltese
2155
- #: ../../admin/lang/dynamic_strings.php:225
2156
  msgid "l-mt"
2157
  msgstr "Maltese"
2158
 
2159
  # Maltese
2160
- #: ../../admin/lang/dynamic_strings.php:226
2161
  msgid "l-mt-mt"
2162
  msgstr "Maltese (Malta)"
2163
 
2164
  # Norwegian Bokmål
2165
- #: ../../admin/lang/dynamic_strings.php:227
2166
  msgid "l-nb"
2167
  msgstr "Norwegian; Bokmål"
2168
 
2169
  # Norwegian Bokmål
2170
- #: ../../admin/lang/dynamic_strings.php:228
2171
  msgid "l-nb-no"
2172
  msgstr "Norwegian (Norway)"
2173
 
2174
  # Dutch; Flemish
2175
- #: ../../admin/lang/dynamic_strings.php:229
2176
  msgid "l-nl"
2177
  msgstr "Dutch; Flemish"
2178
 
2179
  # Belarusian
2180
- #: ../../admin/lang/dynamic_strings.php:230
2181
  msgid "l-nl-be"
2182
  msgstr "Dutch (Belgium)"
2183
 
2184
  # Dutch; Flemish
2185
- #: ../../admin/lang/dynamic_strings.php:231
2186
  msgid "l-nl-nl"
2187
  msgstr "Dutch (The Netherlands)"
2188
 
2189
  # Norwegian Nynorsk
2190
- #: ../../admin/lang/dynamic_strings.php:232
2191
  msgid "l-nn-no"
2192
  msgstr "Norwegian; Nynorsk (Norway)"
2193
 
2194
- #: ../../admin/lang/dynamic_strings.php:233
2195
  msgid "l-ns"
2196
- msgstr ""
2197
 
2198
- #: ../../admin/lang/dynamic_strings.php:234
2199
  msgid "l-ns-za"
2200
- msgstr ""
2201
 
2202
  # Panjabi; Punjabi
2203
- #: ../../admin/lang/dynamic_strings.php:235
2204
  msgid "l-pa"
2205
  msgstr "Panjabi; Punjabi"
2206
 
2207
  # Panjabi; Punjabi
2208
- #: ../../admin/lang/dynamic_strings.php:236
2209
  msgid "l-pa-in"
2210
  msgstr "Panjabi (India)"
2211
 
2212
  # Polish
2213
- #: ../../admin/lang/dynamic_strings.php:237
2214
  msgid "l-pl"
2215
  msgstr "Polish"
2216
 
2217
  # Polish
2218
- #: ../../admin/lang/dynamic_strings.php:238
2219
  msgid "l-pl-pl"
2220
  msgstr "Polish (Poland)"
2221
 
2222
  # Pushto; Pashto
2223
- #: ../../admin/lang/dynamic_strings.php:239
2224
  msgid "l-ps"
2225
  msgstr "Pushto; Pashto"
2226
 
2227
  # Pushto; Pashto
2228
- #: ../../admin/lang/dynamic_strings.php:240
2229
  msgid "l-ps-ar"
2230
  msgstr "Pashto (Afghanistan)"
2231
 
2232
  # Portuguese
2233
- #: ../../admin/lang/dynamic_strings.php:241
2234
  msgid "l-pt"
2235
  msgstr "Portuguese"
2236
 
2237
  # Portuguese
2238
- #: ../../admin/lang/dynamic_strings.php:242
2239
  msgid "l-pt-br"
2240
  msgstr "Portuguese (Brazil)"
2241
 
2242
  # Portuguese
2243
- #: ../../admin/lang/dynamic_strings.php:243
2244
  msgid "l-pt-pt"
2245
  msgstr "Portuguese (Portugal)"
2246
 
2247
  # Quechua
2248
- #: ../../admin/lang/dynamic_strings.php:244
2249
  msgid "l-qu"
2250
  msgstr "Quechua"
2251
 
2252
  # Quechua
2253
- #: ../../admin/lang/dynamic_strings.php:245
2254
  msgid "l-qu-bo"
2255
  msgstr "Quechua (Bolivia)"
2256
 
2257
  # Quechua
2258
- #: ../../admin/lang/dynamic_strings.php:246
2259
  msgid "l-qu-ec"
2260
  msgstr "Quechua (Ecuador)"
2261
 
2262
  # Quechua
2263
- #: ../../admin/lang/dynamic_strings.php:247
2264
  msgid "l-qu-pe"
2265
  msgstr "Quechua (Peru)"
2266
 
2267
  # Romanian; Moldavian; Moldovan
2268
- #: ../../admin/lang/dynamic_strings.php:248
2269
  msgid "l-ro"
2270
  msgstr "Romanian"
2271
 
2272
  # Romanian; Moldavian; Moldovan
2273
- #: ../../admin/lang/dynamic_strings.php:249
2274
  msgid "l-ro-ro"
2275
  msgstr "Romanian (Romania)"
2276
 
2277
  # Russian
2278
- #: ../../admin/lang/dynamic_strings.php:250
2279
  msgid "l-ru"
2280
  msgstr "Russian"
2281
 
2282
  # Russian
2283
- #: ../../admin/lang/dynamic_strings.php:251
2284
  msgid "l-ru-ru"
2285
  msgstr "Russian (Russia)"
2286
 
2287
- #: ../../admin/lang/dynamic_strings.php:252
 
2288
  msgid "l-sa"
2289
- msgstr ""
2290
 
2291
- #: ../../admin/lang/dynamic_strings.php:253
 
2292
  msgid "l-sa-in"
2293
- msgstr ""
2294
 
2295
  # Northern Sami
2296
- #: ../../admin/lang/dynamic_strings.php:254
2297
  msgid "l-se"
2298
  msgstr "Northern Sami"
2299
 
2300
  # Northern Sami
2301
- #: ../../admin/lang/dynamic_strings.php:255
2302
  msgid "l-se-fi"
2303
  msgstr "Northern Sami (Finland)"
2304
 
2305
  # Northern Sami
2306
- #: ../../admin/lang/dynamic_strings.php:256
2307
  msgid "l-se-no"
2308
  msgstr "Northern Sami (Norway)"
2309
 
2310
  # Northern Sami
2311
- #: ../../admin/lang/dynamic_strings.php:257
2312
  msgid "l-se-se"
2313
  msgstr "Northern Sami (Sweden)"
2314
 
2315
  # Slovak
2316
- #: ../../admin/lang/dynamic_strings.php:258
2317
  msgid "l-sk"
2318
  msgstr "Slovak"
2319
 
2320
  # Slovak
2321
- #: ../../admin/lang/dynamic_strings.php:259
2322
  msgid "l-sk-sk"
2323
  msgstr "Slovak (Slovakia)"
2324
 
2325
  # Slovenian
2326
- #: ../../admin/lang/dynamic_strings.php:260
2327
  msgid "l-sl"
2328
  msgstr "Slovenian"
2329
 
2330
  # Slovenian
2331
- #: ../../admin/lang/dynamic_strings.php:261
2332
  msgid "l-sl-si"
2333
  msgstr "Slovenian (Slovenia)"
2334
 
2335
  # Albanian
2336
- #: ../../admin/lang/dynamic_strings.php:262
2337
  msgid "l-sq"
2338
  msgstr "Albanian"
2339
 
2340
  # Albanian
2341
- #: ../../admin/lang/dynamic_strings.php:263
2342
  msgid "l-sq-al"
2343
  msgstr "Albanian (Albania)"
2344
 
2345
  # Serbian
2346
- #: ../../admin/lang/dynamic_strings.php:264
2347
  msgid "l-sr-ba"
2348
  msgstr "Serbian (Bosnia and Herzegovina)"
2349
 
2350
  # Serbian
2351
- #: ../../admin/lang/dynamic_strings.php:265
2352
  msgid "l-sr-sp"
2353
  msgstr "Serbian (Serbia and Montenegro)"
2354
 
2355
  # Swedish
2356
- #: ../../admin/lang/dynamic_strings.php:266
2357
  msgid "l-sv"
2358
  msgstr "Swedish"
2359
 
2360
  # Swedish
2361
- #: ../../admin/lang/dynamic_strings.php:267
2362
  msgid "l-sv-fi"
2363
  msgstr "Swedish (Finland)"
2364
 
2365
  # Swedish
2366
- #: ../../admin/lang/dynamic_strings.php:268
2367
  msgid "l-sv-se"
2368
  msgstr "Swedish (Sweden)"
2369
 
2370
  # Swahili
2371
- #: ../../admin/lang/dynamic_strings.php:269
2372
  msgid "l-sw"
2373
  msgstr "Swahili"
2374
 
2375
  # Swahili
2376
- #: ../../admin/lang/dynamic_strings.php:270
2377
  msgid "l-sw-ke"
2378
  msgstr "Swahili (Kenya)"
2379
 
2380
  # Tamil
2381
- #: ../../admin/lang/dynamic_strings.php:271
2382
  msgid "l-ta"
2383
  msgstr "Tamil"
2384
 
2385
  # Tamil
2386
- #: ../../admin/lang/dynamic_strings.php:272
2387
  msgid "l-ta-in"
2388
  msgstr "Tamil (India)"
2389
 
2390
  # Telugu
2391
- #: ../../admin/lang/dynamic_strings.php:273
2392
  msgid "l-te"
2393
  msgstr "Telugu"
2394
 
2395
  # Telugu
2396
- #: ../../admin/lang/dynamic_strings.php:274
2397
  msgid "l-te-in"
2398
  msgstr "Telugu (India)"
2399
 
2400
  # Thai
2401
- #: ../../admin/lang/dynamic_strings.php:275
2402
  msgid "l-th"
2403
  msgstr "Thai"
2404
 
2405
  # Thai
2406
- #: ../../admin/lang/dynamic_strings.php:276
2407
  msgid "l-th-th"
2408
  msgstr "Thai (Thailand)"
2409
 
2410
  # Tagalog
2411
- #: ../../admin/lang/dynamic_strings.php:277
2412
  msgid "l-tl"
2413
  msgstr "Tagalog"
2414
 
2415
  # Tagalog
2416
- #: ../../admin/lang/dynamic_strings.php:278
2417
  msgid "l-tl-ph"
2418
  msgstr "Tagalog (Philippines)"
2419
 
2420
  # Tswana
2421
- #: ../../admin/lang/dynamic_strings.php:279
2422
  msgid "l-tn"
2423
  msgstr "Tswana"
2424
 
2425
  # Tswana
2426
- #: ../../admin/lang/dynamic_strings.php:280
2427
  msgid "l-tn-za"
2428
  msgstr "Tswana (South Africa)"
2429
 
2430
  # Turkish
2431
- #: ../../admin/lang/dynamic_strings.php:281
2432
  msgid "l-tr"
2433
  msgstr "Turkish"
2434
 
2435
  # Turkish
2436
- #: ../../admin/lang/dynamic_strings.php:282
2437
  msgid "l-tr-tr"
2438
  msgstr "Turkish (Turkey)"
2439
 
2440
  # Tatar
2441
- #: ../../admin/lang/dynamic_strings.php:283
2442
  msgid "l-tt"
2443
  msgstr "Tatar"
2444
 
2445
  # Tatar
2446
- #: ../../admin/lang/dynamic_strings.php:284
2447
  msgid "l-tt-ru"
2448
  msgstr "Tatar (Russia)"
2449
 
2450
  # Tsonga
2451
- #: ../../admin/lang/dynamic_strings.php:285
2452
  msgid "l-ts"
2453
  msgstr "Tsonga"
2454
 
2455
  # Ukrainian
2456
- #: ../../admin/lang/dynamic_strings.php:286
2457
  msgid "l-uk"
2458
  msgstr "Ukrainian"
2459
 
2460
  # Ukrainian
2461
- #: ../../admin/lang/dynamic_strings.php:287
2462
  msgid "l-uk-ua"
2463
  msgstr "Ukrainian (Ukraine)"
2464
 
2465
  # Urdu
2466
- #: ../../admin/lang/dynamic_strings.php:288
2467
  msgid "l-ur"
2468
  msgstr "Urdu"
2469
 
2470
  # Urdu
2471
- #: ../../admin/lang/dynamic_strings.php:289
2472
  msgid "l-ur-pk"
2473
  msgstr "Urdu (Pakistan)"
2474
 
2475
  # Uzbek
2476
- #: ../../admin/lang/dynamic_strings.php:290
2477
  msgid "l-uz"
2478
  msgstr "Uzbek"
2479
 
2480
  # Uzbek
2481
- #: ../../admin/lang/dynamic_strings.php:291
2482
  msgid "l-uz-uz"
2483
  msgstr "Uzbek (Uzbekistan)"
2484
 
2485
  # Vietnamese
2486
- #: ../../admin/lang/dynamic_strings.php:292
2487
  msgid "l-vi"
2488
  msgstr "Vietnamese"
2489
 
2490
  # Vietnamese
2491
- #: ../../admin/lang/dynamic_strings.php:293
2492
  msgid "l-vi-vn"
2493
  msgstr "Vietnamese (Viet Nam)"
2494
 
2495
  # Xhosa
2496
- #: ../../admin/lang/dynamic_strings.php:294
2497
  msgid "l-xh"
2498
  msgstr "Xhosa"
2499
 
2500
  # Xhosa
2501
- #: ../../admin/lang/dynamic_strings.php:295
2502
  msgid "l-xh-za"
2503
  msgstr "Xhosa (South Africa)"
2504
 
2505
  # Chinese
2506
- #: ../../admin/lang/dynamic_strings.php:296
2507
  msgid "l-zh"
2508
  msgstr "Chinese"
2509
 
2510
  # Chinese
2511
- #: ../../admin/lang/dynamic_strings.php:297
2512
  msgid "l-zh-cn"
2513
  msgstr "Chinese (S)"
2514
 
2515
  # Chinese
2516
- #: ../../admin/lang/dynamic_strings.php:298
2517
  msgid "l-zh-hk"
2518
  msgstr "Chinese (Hong Kong)"
2519
 
2520
  # Chinese
2521
- #: ../../admin/lang/dynamic_strings.php:299
2522
  msgid "l-zh-mo"
2523
  msgstr "Chinese (Macau)"
2524
 
2525
  # Chinese
2526
- #: ../../admin/lang/dynamic_strings.php:300
2527
  msgid "l-zh-sg"
2528
  msgstr "Chinese (Singapore)"
2529
 
2530
  # Chinese
2531
- #: ../../admin/lang/dynamic_strings.php:301
2532
  msgid "l-zh-tw"
2533
  msgstr "Chinese (T)"
2534
 
2535
  # Zulu
2536
- #: ../../admin/lang/dynamic_strings.php:302
2537
  msgid "l-zu"
2538
  msgstr "Zulu"
2539
 
2540
  # Zulu
2541
- #: ../../admin/lang/dynamic_strings.php:303
2542
  msgid "l-zu-za"
2543
  msgstr "Zulu (South Africa)"
2544
 
2545
- #: ../../admin/lang/dynamic_strings.php:304
2546
- #: ../../admin/view/wp-slimstat-reports.php:953 ../../wp-slimstat.php:1404
2547
  msgid "l-"
2548
  msgstr "Unknown"
2549
 
2550
  # Unknown
2551
- #: ../../admin/lang/dynamic_strings.php:305
2552
  msgid "l-empty"
2553
  msgstr "Unknown"
2554
 
2555
  # Unknown
2556
- #: ../../admin/lang/dynamic_strings.php:306
2557
  msgid "l-xx"
2558
  msgstr "Unknown"
2559
 
2560
- #: ../../admin/lang/dynamic_strings.php:307
2561
  msgid "c-xy"
2562
  msgstr "Local IP"
2563
 
@@ -2569,11 +2610,11 @@ msgstr ""
2569
  msgid "Load"
2570
  msgstr ""
2571
 
2572
- #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-reports.php:1205
2573
  msgid "Today"
2574
  msgstr ""
2575
 
2576
- #: ../../admin/view/index.php:67 ../../admin/view/wp-slimstat-reports.php:1206
2577
  msgid "Yesterday"
2578
  msgstr ""
2579
 
@@ -2597,19 +2638,19 @@ msgstr ""
2597
  msgid "Date Range"
2598
  msgstr ""
2599
 
2600
- #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-db.php:70
2601
  msgid "Day"
2602
  msgstr ""
2603
 
2604
- #: ../../admin/view/index.php:84 ../../admin/view/wp-slimstat-db.php:71
2605
  msgid "Month"
2606
  msgstr ""
2607
 
2608
- #: ../../admin/view/index.php:93 ../../admin/view/wp-slimstat-db.php:72
2609
  msgid "Year"
2610
  msgstr ""
2611
 
2612
- #: ../../admin/view/index.php:94 ../../admin/view/wp-slimstat-db.php:69
2613
  msgid "Hour"
2614
  msgstr ""
2615
 
@@ -2617,7 +2658,7 @@ msgstr ""
2617
  msgid "Min"
2618
  msgstr ""
2619
 
2620
- #: ../../admin/view/index.php:103 ../../admin/view/wp-slimstat-db.php:75
2621
  msgid "hours"
2622
  msgstr ""
2623
 
@@ -2636,268 +2677,291 @@ msgid ""
2636
  "country of origin."
2637
  msgstr ""
2638
 
2639
- #: ../../admin/view/right-now.php:8
2640
  msgid "Human"
2641
  msgstr ""
2642
 
2643
- #: ../../admin/view/right-now.php:8
2644
  msgid "Bot/Crawler"
2645
  msgstr ""
2646
 
2647
- #: ../../admin/view/right-now.php:8
2648
  msgid "Mobile Device"
2649
  msgstr ""
2650
 
2651
- #: ../../admin/view/right-now.php:8
2652
  msgid "Syndication Reader"
2653
  msgstr ""
2654
 
2655
- #: ../../admin/view/right-now.php:27
2656
- #: ../../admin/view/wp-slimstat-reports.php:893
 
2657
  msgid "No data to display"
2658
  msgstr ""
2659
 
2660
  # Unknown
2661
- #: ../../admin/view/right-now.php:55
2662
- #: ../../admin/view/wp-slimstat-reports.php:938
2663
- #: ../../admin/view/wp-slimstat-reports.php:1439
2664
  msgid "c-"
2665
  msgstr "Unknown"
2666
 
2667
- #: ../../admin/view/right-now.php:107 ../../admin/view/wp-slimstat-db.php:57
2668
  #: ../../admin/wp-slimstat-admin.php:993
2669
  #: ../../admin/wp-slimstat-admin.php:1033
2670
  msgid "Originating IP"
2671
  msgstr ""
2672
 
2673
- #: ../../admin/view/right-now.php:131
2674
  msgid "Server Latency and Page Speed in milliseconds"
2675
  msgstr ""
2676
 
2677
- #: ../../admin/view/right-now.php:131
2678
  msgid "SL"
2679
  msgstr ""
2680
 
2681
- #: ../../admin/view/right-now.php:131
2682
  msgid "PS"
2683
  msgstr ""
2684
 
2685
- #: ../../admin/view/right-now.php:143
2686
- #: ../../admin/view/wp-slimstat-reports.php:1018
2687
- #: ../../admin/view/wp-slimstat-reports.php:1022
2688
  msgid "Open this URL in a new window"
2689
  msgstr ""
2690
 
2691
- #: ../../admin/view/right-now.php:146
2692
  msgid "Local search results page"
2693
  msgstr ""
2694
 
2695
- #: ../../admin/view/right-now.php:151 ../../admin/view/wp-slimstat-db.php:39
2696
  #: ../../admin/wp-slimstat-admin.php:996
2697
  #: ../../admin/wp-slimstat-admin.php:1012
2698
  msgid "Search Terms"
2699
  msgstr ""
2700
 
2701
- #: ../../admin/view/right-now.php:156
2702
  msgid "Open this referrer in a new window"
2703
  msgstr ""
2704
 
2705
- #: ../../admin/view/right-now.php:157
2706
  msgid "Open this outbound link in a new window"
2707
  msgstr ""
2708
 
2709
- #: ../../admin/view/right-now.php:158
2710
- msgid "Date and Time"
2711
- msgstr ""
2712
-
2713
- #: ../../admin/view/right-now.php:159
2714
  msgid "Content Type"
2715
  msgstr ""
2716
 
2717
- #: ../../admin/view/right-now.php:162
2718
  msgid "Delete this pageview"
2719
  msgstr ""
2720
 
2721
- #: ../../admin/view/wp-slimstat-db.php:36
 
 
 
 
2722
  #: ../../admin/wp-slimstat-admin.php:1009
2723
  msgid "Browser"
2724
  msgstr ""
2725
 
2726
- #: ../../admin/view/wp-slimstat-db.php:37
2727
- #: ../../admin/view/wp-slimstat-reports.php:937
2728
  #: ../../admin/wp-slimstat-admin.php:1010
2729
  msgid "Country Code"
2730
  msgstr ""
2731
 
2732
- #: ../../admin/view/wp-slimstat-db.php:38
2733
  msgid "IP Address"
2734
  msgstr ""
2735
 
2736
- #: ../../admin/view/wp-slimstat-db.php:40
2737
- #: ../../admin/view/wp-slimstat-reports.php:952
2738
  #: ../../admin/wp-slimstat-admin.php:1013
2739
  msgid "Language Code"
2740
  msgstr ""
2741
 
2742
- #: ../../admin/view/wp-slimstat-db.php:41
 
2743
  #: ../../admin/wp-slimstat-admin.php:1014
2744
  msgid "Operating System"
2745
  msgstr ""
2746
 
2747
- #: ../../admin/view/wp-slimstat-db.php:42
 
2748
  #: ../../admin/wp-slimstat-admin.php:1015
2749
  msgid "Permalink"
2750
  msgstr ""
2751
 
2752
- #: ../../admin/view/wp-slimstat-db.php:43
2753
  #: ../../admin/wp-slimstat-admin.php:1016
2754
  msgid "Referer"
2755
  msgstr ""
2756
 
2757
- #: ../../admin/view/wp-slimstat-db.php:44
2758
  #: ../../admin/wp-slimstat-admin.php:1017
2759
  msgid "Visitor's Name"
2760
  msgstr ""
2761
 
2762
- #: ../../admin/view/wp-slimstat-db.php:45
2763
  #: ../../admin/wp-slimstat-admin.php:999
2764
  msgid "Outbound Link"
2765
  msgstr ""
2766
 
2767
- #: ../../admin/view/wp-slimstat-db.php:46
2768
  msgid "Page Speed"
2769
  msgstr ""
2770
 
2771
- #: ../../admin/view/wp-slimstat-db.php:48
2772
  msgid "-- Advanced filters --"
2773
  msgstr ""
2774
 
2775
- #: ../../admin/view/wp-slimstat-db.php:49
2776
- #: ../../admin/view/wp-slimstat-reports.php:293
2777
  msgid "Browser Capabilities"
2778
  msgstr ""
2779
 
2780
- #: ../../admin/view/wp-slimstat-db.php:50
2781
  #: ../../admin/wp-slimstat-admin.php:1028
2782
  msgid "Browser Version"
2783
  msgstr ""
2784
 
2785
- #: ../../admin/view/wp-slimstat-db.php:51
2786
  #: ../../admin/wp-slimstat-admin.php:1029
2787
  msgid "Browser Type"
2788
  msgstr ""
2789
 
2790
- #: ../../admin/view/wp-slimstat-db.php:52
2791
  #: ../../admin/wp-slimstat-admin.php:998
2792
  msgid "User Agent"
2793
  msgstr ""
2794
 
2795
- #: ../../admin/view/wp-slimstat-db.php:53
2796
- #: ../../admin/wp-slimstat-admin.php:1030
2797
- msgid "Pageview Attributes"
2798
  msgstr ""
2799
 
2800
- #: ../../admin/view/wp-slimstat-db.php:54
2801
  msgid "Server Latency"
2802
  msgstr ""
2803
 
2804
- #: ../../admin/view/wp-slimstat-db.php:55
2805
  #: ../../admin/wp-slimstat-admin.php:1031
2806
  msgid "Post Author"
2807
  msgstr ""
2808
 
2809
- #: ../../admin/view/wp-slimstat-db.php:56
2810
  #: ../../admin/wp-slimstat-admin.php:1032
2811
  msgid "Post Category ID"
2812
  msgstr ""
2813
 
2814
- #: ../../admin/view/wp-slimstat-db.php:58
2815
  #: ../../admin/wp-slimstat-admin.php:1034
2816
  msgid "Resource Content Type"
2817
  msgstr ""
2818
 
2819
- #: ../../admin/view/wp-slimstat-db.php:59
2820
  msgid "Resource ID"
2821
  msgstr ""
2822
 
2823
- #: ../../admin/view/wp-slimstat-db.php:60
2824
  msgid "Screen Width"
2825
  msgstr ""
2826
 
2827
- #: ../../admin/view/wp-slimstat-db.php:61
2828
  msgid "Screen Height"
2829
  msgstr ""
2830
 
2831
- #: ../../admin/view/wp-slimstat-db.php:62
2832
  msgid "Viewport Size"
2833
  msgstr ""
2834
 
2835
- #: ../../admin/view/wp-slimstat-db.php:63
2836
  #: ../../admin/wp-slimstat-admin.php:1036
2837
  msgid "Visit ID"
2838
  msgstr ""
2839
 
2840
- #: ../../admin/view/wp-slimstat-db.php:68
2841
  msgid "Minute"
2842
  msgstr ""
2843
 
2844
- #: ../../admin/view/wp-slimstat-db.php:73
2845
  msgid "+/-"
2846
  msgstr ""
2847
 
2848
- #: ../../admin/view/wp-slimstat-db.php:76
2849
  msgid "minutes"
2850
  msgstr ""
2851
 
2852
- #: ../../admin/view/wp-slimstat-db.php:77
2853
  msgid "Unix Timestamp"
2854
  msgstr ""
2855
 
2856
- #: ../../admin/view/wp-slimstat-db.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2857
  msgid "Direction"
2858
  msgstr ""
2859
 
2860
- #: ../../admin/view/wp-slimstat-db.php:80
2861
- msgid "Limit Results"
2862
  msgstr ""
2863
 
2864
- #: ../../admin/view/wp-slimstat-db.php:81
2865
- msgid "Start From"
2866
  msgstr ""
2867
 
2868
  #: ../../admin/view/wp-slimstat-reports.php:20
2869
- #: ../../admin/wp-slimstat-admin.php:635 ../../wp-slimstat.php:1727
2870
- msgid "Real-Time Log"
2871
  msgstr ""
2872
 
2873
  #: ../../admin/view/wp-slimstat-reports.php:21
2874
  #: ../../admin/wp-slimstat-admin.php:636 ../../admin/wp-slimstat-admin.php:651
2875
- #: ../../wp-slimstat.php:1728
2876
  msgid "Overview"
2877
  msgstr ""
2878
 
2879
  #: ../../admin/view/wp-slimstat-reports.php:22
2880
  #: ../../admin/wp-slimstat-admin.php:637 ../../admin/wp-slimstat-admin.php:652
2881
- #: ../../wp-slimstat.php:1729
2882
  msgid "Audience"
2883
  msgstr ""
2884
 
2885
  #: ../../admin/view/wp-slimstat-reports.php:23
2886
  #: ../../admin/wp-slimstat-admin.php:638 ../../admin/wp-slimstat-admin.php:653
2887
- #: ../../wp-slimstat.php:1730
2888
  msgid "Site Analysis"
2889
  msgstr ""
2890
 
2891
  #: ../../admin/view/wp-slimstat-reports.php:24
2892
- #: ../../admin/view/wp-slimstat-reports.php:411
2893
  #: ../../admin/wp-slimstat-admin.php:639 ../../admin/wp-slimstat-admin.php:654
2894
- #: ../../wp-slimstat.php:1731
2895
  msgid "Traffic Sources"
2896
  msgstr ""
2897
 
2898
  #: ../../admin/view/wp-slimstat-reports.php:25
2899
  #: ../../admin/wp-slimstat-admin.php:640 ../../admin/wp-slimstat-admin.php:655
2900
- #: ../../wp-slimstat.php:1732
2901
  msgid "Map Overlay"
2902
  msgstr ""
2903
 
@@ -2918,136 +2982,142 @@ msgid "Double click on an empty region to reset the zoom level"
2918
  msgstr ""
2919
 
2920
  #: ../../admin/view/wp-slimstat-reports.php:77
 
 
 
 
 
 
2921
  msgid "Activity"
2922
  msgstr ""
2923
 
2924
- #: ../../admin/view/wp-slimstat-reports.php:86
2925
  msgid "Color codes"
2926
  msgstr ""
2927
 
2928
- #: ../../admin/view/wp-slimstat-reports.php:86
2929
  msgid "From search result page"
2930
  msgstr ""
2931
 
2932
- #: ../../admin/view/wp-slimstat-reports.php:86
2933
  #: ../../admin/wp-slimstat-admin.php:991
2934
  msgid "Known Visitor"
2935
  msgstr ""
2936
 
2937
- #: ../../admin/view/wp-slimstat-reports.php:86
2938
  msgid "Known Users"
2939
  msgstr ""
2940
 
2941
- #: ../../admin/view/wp-slimstat-reports.php:86
2942
  msgid "Other Humans"
2943
  msgstr ""
2944
 
2945
- #: ../../admin/view/wp-slimstat-reports.php:86
2946
  msgid "Bot or Crawler"
2947
  msgstr ""
2948
 
2949
- #: ../../admin/view/wp-slimstat-reports.php:100
2950
  msgid "About Slimstat"
2951
  msgstr ""
2952
 
2953
- #: ../../admin/view/wp-slimstat-reports.php:106
2954
  msgid "At a Glance"
2955
  msgstr ""
2956
 
2957
- #: ../../admin/view/wp-slimstat-reports.php:112
2958
  msgid "Currently Online"
2959
  msgstr ""
2960
 
2961
- #: ../../admin/view/wp-slimstat-reports.php:123
2962
  msgid ""
2963
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
2964
  "Slimstat leverages this information to identify returning visitors. Please "
2965
  "note that visitors also include registered users."
2966
  msgstr ""
2967
 
2968
- #: ../../admin/view/wp-slimstat-reports.php:126
2969
  msgid "Recent Search Terms"
2970
  msgstr ""
2971
 
2972
- #: ../../admin/view/wp-slimstat-reports.php:135
2973
  msgid "Keywords used by your visitors to find your website on a search engine."
2974
  msgstr ""
2975
 
2976
- #: ../../admin/view/wp-slimstat-reports.php:138
2977
  msgid "Top Pages"
2978
  msgstr ""
2979
 
2980
- #: ../../admin/view/wp-slimstat-reports.php:149
2981
  msgid ""
2982
  "Here a \"page\" is not just a WordPress page type, but any web page on your "
2983
  "website, including posts, products, categories, and so on."
2984
  msgstr ""
2985
 
2986
- #: ../../admin/view/wp-slimstat-reports.php:152
2987
  msgid "Top Traffic Sources"
2988
  msgstr ""
2989
 
2990
- #: ../../admin/view/wp-slimstat-reports.php:164
2991
  msgid "Top Known Visitors"
2992
  msgstr ""
2993
 
2994
- #: ../../admin/view/wp-slimstat-reports.php:175
2995
  msgid "Top Search Terms"
2996
  msgstr ""
2997
 
2998
- #: ../../admin/view/wp-slimstat-reports.php:186
2999
  msgid "Top Countries"
3000
  msgstr ""
3001
 
3002
- #: ../../admin/view/wp-slimstat-reports.php:195
3003
  msgid ""
3004
  "You can configure Slimstat to ignore a specific Country by setting the "
3005
  "corresponding filter under Settings > Slimstat > Filters."
3006
  msgstr ""
3007
 
3008
- #: ../../admin/view/wp-slimstat-reports.php:198
3009
  msgid "Rankings"
3010
  msgstr ""
3011
 
3012
- #: ../../admin/view/wp-slimstat-reports.php:202
3013
  msgid ""
3014
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
3015
  "measures your site's rankings. Values are updated every 12 hours. Filters "
3016
  "set above don't apply to this report."
3017
  msgstr ""
3018
 
3019
- #: ../../admin/view/wp-slimstat-reports.php:205
3020
  msgid "Top Language Families"
3021
  msgstr ""
3022
 
3023
- #: ../../admin/view/wp-slimstat-reports.php:219
3024
  msgid "Human Visits"
3025
  msgstr ""
3026
 
3027
- #: ../../admin/view/wp-slimstat-reports.php:229
3028
  msgid "Audience Overview"
3029
  msgstr ""
3030
 
3031
- #: ../../admin/view/wp-slimstat-reports.php:233
3032
  msgid ""
3033
  "Where not otherwise specified, the metrics in this report are referred to "
3034
  "human visitors."
3035
  msgstr ""
3036
 
3037
- #: ../../admin/view/wp-slimstat-reports.php:236
3038
  msgid "Top Languages"
3039
  msgstr ""
3040
 
3041
- #: ../../admin/view/wp-slimstat-reports.php:247
3042
  msgid "Top Browsers"
3043
  msgstr ""
3044
 
3045
- #: ../../admin/view/wp-slimstat-reports.php:258
3046
  msgid "Top Service Providers"
3047
  msgstr ""
3048
 
3049
- #: ../../admin/view/wp-slimstat-reports.php:267
3050
- #: ../../admin/view/wp-slimstat-reports.php:279
3051
  msgid ""
3052
  "Internet Service Provider: a company which provides other companies or "
3053
  "individuals with access to the Internet. Your DSL or cable internet service "
@@ -3055,403 +3125,423 @@ msgid ""
3055
  "by setting the corresponding filter under Settings > Slimstat > Filters."
3056
  msgstr ""
3057
 
3058
- #: ../../admin/view/wp-slimstat-reports.php:270
3059
  msgid "Top Operating Systems"
3060
  msgstr ""
3061
 
3062
- #: ../../admin/view/wp-slimstat-reports.php:282
3063
  msgid "Top Screen Resolutions"
3064
  msgstr ""
3065
 
3066
- #: ../../admin/view/wp-slimstat-reports.php:299
 
 
 
 
3067
  msgid "Visit Duration"
3068
  msgstr ""
3069
 
3070
- #: ../../admin/view/wp-slimstat-reports.php:305
3071
  msgid "Recent Countries"
3072
  msgstr ""
3073
 
3074
- #: ../../admin/view/wp-slimstat-reports.php:316
3075
- msgid "Recent Screen Resolutions"
3076
  msgstr ""
3077
 
3078
- #: ../../admin/view/wp-slimstat-reports.php:327
3079
  msgid "Recent Operating Systems"
3080
  msgstr ""
3081
 
3082
- #: ../../admin/view/wp-slimstat-reports.php:338
3083
  msgid "Recent Browsers"
3084
  msgstr ""
3085
 
3086
- #: ../../admin/view/wp-slimstat-reports.php:349
3087
  msgid "Recent Languages"
3088
  msgstr ""
3089
 
3090
- #: ../../admin/view/wp-slimstat-reports.php:360
3091
  msgid "Top Browser Families"
3092
  msgstr ""
3093
 
3094
- #: ../../admin/view/wp-slimstat-reports.php:369
3095
  msgid ""
3096
  "This report shows you what user agent families (no version considered) are "
3097
  "popular among your visitors."
3098
  msgstr ""
3099
 
3100
- #: ../../admin/view/wp-slimstat-reports.php:372
3101
  msgid "Top OS Families"
3102
  msgstr ""
3103
 
3104
- #: ../../admin/view/wp-slimstat-reports.php:383
3105
  msgid ""
3106
  "This report shows you what operating system families (no version considered) "
3107
  "are popular among your visitors."
3108
  msgstr ""
3109
 
3110
- #: ../../admin/view/wp-slimstat-reports.php:386
3111
  msgid "Recent Users"
3112
  msgstr ""
3113
 
3114
- #: ../../admin/view/wp-slimstat-reports.php:398
3115
  msgid "Top Users"
3116
  msgstr ""
3117
 
3118
- #: ../../admin/view/wp-slimstat-reports.php:421
3119
  msgid "Summary"
3120
  msgstr ""
3121
 
3122
- #: ../../admin/view/wp-slimstat-reports.php:427
3123
  msgid "Top Referring Search Engines"
3124
  msgstr ""
3125
 
3126
- #: ../../admin/view/wp-slimstat-reports.php:439
3127
  msgid "Recent Exit Pages"
3128
  msgstr ""
3129
 
3130
- #: ../../admin/view/wp-slimstat-reports.php:451
3131
  msgid "Recent Outbound Links"
3132
  msgstr ""
3133
 
3134
- #: ../../admin/view/wp-slimstat-reports.php:464
3135
  msgid "Recent Posts"
3136
  msgstr ""
3137
 
3138
- #: ../../admin/view/wp-slimstat-reports.php:476
3139
  msgid "Recent Bounce Pages"
3140
  msgstr ""
3141
 
3142
- #: ../../admin/view/wp-slimstat-reports.php:487
3143
  msgid ""
3144
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3145
  "left your site from the entrance (landing) page."
3146
  msgstr ""
3147
 
3148
- #: ../../admin/view/wp-slimstat-reports.php:490
3149
  msgid "Recent Feeds"
3150
  msgstr ""
3151
 
3152
- #: ../../admin/view/wp-slimstat-reports.php:502
3153
  msgid "Recent Pages Not Found"
3154
  msgstr ""
3155
 
3156
- #: ../../admin/view/wp-slimstat-reports.php:514
3157
  msgid "Recent Internal Searches"
3158
  msgstr ""
3159
 
3160
- #: ../../admin/view/wp-slimstat-reports.php:524
3161
  msgid "Searches performed using WordPress' built-in search functionality."
3162
  msgstr ""
3163
 
3164
- #: ../../admin/view/wp-slimstat-reports.php:527
3165
  msgid "Top Categories"
3166
  msgstr ""
3167
 
3168
- #: ../../admin/view/wp-slimstat-reports.php:540
3169
  msgid "Top Downloads"
3170
  msgstr ""
3171
 
3172
- #: ../../admin/view/wp-slimstat-reports.php:550
3173
  msgid ""
3174
  "You can configure Slimstat to track specific file extensions as downloads."
3175
  msgstr ""
3176
 
3177
- #: ../../admin/view/wp-slimstat-reports.php:567
3178
- msgid "Top Posts"
3179
  msgstr ""
3180
 
3181
  #: ../../admin/view/wp-slimstat-reports.php:579
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3182
  msgid "Top Internal Searches"
3183
  msgstr ""
3184
 
3185
- #: ../../admin/view/wp-slimstat-reports.php:591
3186
  msgid "Recent Categories"
3187
  msgstr ""
3188
 
3189
- #: ../../admin/view/wp-slimstat-reports.php:603
3190
  msgid "Top Pages Not Found"
3191
  msgstr ""
3192
 
3193
- #: ../../admin/view/wp-slimstat-reports.php:615
3194
  msgid "Top Authors"
3195
  msgstr ""
3196
 
3197
- #: ../../admin/view/wp-slimstat-reports.php:626
3198
  msgid "Top Tags"
3199
  msgstr ""
3200
 
3201
- #: ../../admin/view/wp-slimstat-reports.php:638
3202
  msgid "Recent Downloads"
3203
  msgstr ""
3204
 
3205
- #: ../../admin/view/wp-slimstat-reports.php:650
3206
  msgid "Top Outbound Links"
3207
  msgstr ""
3208
 
3209
- #: ../../admin/view/wp-slimstat-reports.php:661
3210
  msgid "Your Website"
3211
  msgstr ""
3212
 
3213
- #: ../../admin/view/wp-slimstat-reports.php:665
3214
  msgid ""
3215
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
3216
  "this report is not affected by the filters set here above."
3217
  msgstr ""
3218
 
3219
- #: ../../admin/view/wp-slimstat-reports.php:668
3220
  msgid "Top Bounce Pages"
3221
  msgstr ""
3222
 
3223
- #: ../../admin/view/wp-slimstat-reports.php:681
3224
  msgid "Top Exit Pages"
3225
  msgstr ""
3226
 
3227
- #: ../../admin/view/wp-slimstat-reports.php:694
3228
  msgid "Top Entry Pages"
3229
  msgstr ""
3230
 
3231
- #: ../../admin/view/wp-slimstat-reports.php:708
3232
  msgid "World Map"
3233
  msgstr ""
3234
 
3235
- #: ../../admin/view/wp-slimstat-reports.php:783
3236
  msgid "Refresh"
3237
  msgstr ""
3238
 
3239
- #: ../../admin/view/wp-slimstat-reports.php:816
3240
  #, php-format
3241
  msgid "Results %s - %s of %s"
3242
  msgstr ""
3243
 
3244
- #: ../../admin/view/wp-slimstat-reports.php:818
3245
  msgid "Refresh in"
3246
  msgstr ""
3247
 
3248
- #: ../../admin/view/wp-slimstat-reports.php:958
3249
- msgid "OS Code"
3250
  msgstr ""
3251
 
3252
- #: ../../admin/view/wp-slimstat-reports.php:963
3253
- msgid "Category ID"
3254
  msgstr ""
3255
 
3256
- #: ../../admin/view/wp-slimstat-reports.php:981
3257
  msgid "Referrer"
3258
  msgstr ""
3259
 
3260
- #: ../../admin/view/wp-slimstat-reports.php:1008
3261
- #: ../../admin/view/wp-slimstat-reports.php:1219
3262
- #: ../../admin/view/wp-slimstat-reports.php:1260
3263
- #: ../../admin/view/wp-slimstat-reports.php:1266
3264
- #: ../../admin/view/wp-slimstat-reports.php:1272
3265
- #: ../../admin/view/wp-slimstat-reports.php:1278
3266
- #: ../../admin/view/wp-slimstat-reports.php:1284
3267
- #: ../../admin/view/wp-slimstat-reports.php:1290
3268
- #: ../../admin/view/wp-slimstat-reports.php:1296
 
3269
  msgid "Hits"
3270
  msgstr ""
3271
 
3272
- #: ../../admin/view/wp-slimstat-reports.php:1057
3273
- #: ../../admin/view/wp-slimstat-reports.php:1238
3274
  msgid "Visits"
3275
  msgstr ""
3276
 
3277
- #: ../../admin/view/wp-slimstat-reports.php:1062
3278
  msgid "Domains"
3279
  msgstr ""
3280
 
3281
- #: ../../admin/view/wp-slimstat-reports.php:1178
3282
  msgid "Dataset Size"
3283
  msgstr ""
3284
 
3285
- #: ../../admin/view/wp-slimstat-reports.php:1179
3286
  msgid "DB Size"
3287
  msgstr ""
3288
 
3289
- #: ../../admin/view/wp-slimstat-reports.php:1180
3290
  msgid "Tracking Active"
3291
  msgstr ""
3292
 
3293
- #: ../../admin/view/wp-slimstat-reports.php:1181
3294
  msgid "Javascript Mode"
3295
  msgstr ""
3296
 
3297
- #: ../../admin/view/wp-slimstat-reports.php:1182
3298
  msgid "Tracking Browser Caps"
3299
  msgstr ""
3300
 
3301
- #: ../../admin/view/wp-slimstat-reports.php:1183
3302
  msgid "Auto purge"
3303
  msgstr ""
3304
 
3305
- #: ../../admin/view/wp-slimstat-reports.php:1183
3306
  #: ../../admin/wp-slimstat-admin.php:1066
3307
  msgid "No"
3308
  msgstr ""
3309
 
3310
- #: ../../admin/view/wp-slimstat-reports.php:1184
3311
  msgid "Oldest pageview"
3312
  msgstr ""
3313
 
3314
- #: ../../admin/view/wp-slimstat-reports.php:1184
3315
  msgid "No visits"
3316
  msgstr ""
3317
 
3318
- #: ../../admin/view/wp-slimstat-reports.php:1195
3319
- #: ../../admin/view/wp-slimstat-reports.php:1320
3320
  msgid ""
3321
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
3322
  "the tracking code is executed."
3323
  msgstr ""
3324
 
3325
- #: ../../admin/view/wp-slimstat-reports.php:1197
3326
  msgid "Days in Range"
3327
  msgstr ""
3328
 
3329
- #: ../../admin/view/wp-slimstat-reports.php:1198
3330
  msgid ""
3331
  "How many pages have been visited on average every day during the current "
3332
  "period."
3333
  msgstr ""
3334
 
3335
- #: ../../admin/view/wp-slimstat-reports.php:1199
3336
  msgid "Average Daily Pageviews"
3337
  msgstr ""
3338
 
3339
- #: ../../admin/view/wp-slimstat-reports.php:1200
3340
  msgid ""
3341
  "Visitors who landed on your site after searching for a keyword on Google, "
3342
  "Yahoo, etc."
3343
  msgstr ""
3344
 
3345
- #: ../../admin/view/wp-slimstat-reports.php:1201
3346
  msgid "From Search Results"
3347
  msgstr ""
3348
 
3349
- #: ../../admin/view/wp-slimstat-reports.php:1202
3350
  msgid ""
3351
  "Used to differentiate between multiple requests to download a file from one "
3352
  "internet address (IP) and requests originating from many distinct addresses"
3353
  msgstr ""
3354
 
3355
- #: ../../admin/view/wp-slimstat-reports.php:1204
3356
  msgid "Last 30 minutes"
3357
  msgstr ""
3358
 
3359
- #: ../../admin/view/wp-slimstat-reports.php:1237
3360
  msgid ""
3361
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3362
  "multiple times if they perform multiple visits."
3363
  msgstr ""
3364
 
3365
- #: ../../admin/view/wp-slimstat-reports.php:1239
3366
  msgid "It includes only traffic generated by human visitors."
3367
  msgstr ""
3368
 
3369
- #: ../../admin/view/wp-slimstat-reports.php:1241
3370
- #: ../../admin/view/wp-slimstat-reports.php:1332
3371
  msgid ""
3372
  "Percentage of single-page visits, i.e. visits in which the person left your "
3373
  "site from the entrance page."
3374
  msgstr ""
3375
 
3376
- #: ../../admin/view/wp-slimstat-reports.php:1242
3377
  msgid "Bounce rate"
3378
  msgstr ""
3379
 
3380
- #: ../../admin/view/wp-slimstat-reports.php:1243
3381
  msgid "Visitors who had previously left a comment on your blog."
3382
  msgstr ""
3383
 
3384
- #: ../../admin/view/wp-slimstat-reports.php:1244
3385
  msgid "Known visitors"
3386
  msgstr ""
3387
 
3388
- #: ../../admin/view/wp-slimstat-reports.php:1245
3389
  msgid "Human users who visited your site only once."
3390
  msgstr ""
3391
 
3392
- #: ../../admin/view/wp-slimstat-reports.php:1246
3393
  msgid "New visitors"
3394
  msgstr ""
3395
 
3396
- #: ../../admin/view/wp-slimstat-reports.php:1247
3397
  msgid "Bots"
3398
  msgstr ""
3399
 
3400
- #: ../../admin/view/wp-slimstat-reports.php:1248
3401
  msgid "Pages per visit"
3402
  msgstr ""
3403
 
3404
- #: ../../admin/view/wp-slimstat-reports.php:1249
3405
  msgid "Longest visit"
3406
  msgstr ""
3407
 
3408
- #: ../../admin/view/wp-slimstat-reports.php:1249
3409
  msgid "hits"
3410
  msgstr ""
3411
 
3412
- #: ../../admin/view/wp-slimstat-reports.php:1262
3413
  msgid "0 - 30 seconds"
3414
  msgstr ""
3415
 
3416
- #: ../../admin/view/wp-slimstat-reports.php:1268
3417
  msgid "31 - 60 seconds"
3418
  msgstr ""
3419
 
3420
- #: ../../admin/view/wp-slimstat-reports.php:1274
3421
  msgid "1 - 3 minutes"
3422
  msgstr ""
3423
 
3424
- #: ../../admin/view/wp-slimstat-reports.php:1280
3425
  msgid "3 - 5 minutes"
3426
  msgstr ""
3427
 
3428
- #: ../../admin/view/wp-slimstat-reports.php:1286
3429
  msgid "5 - 7 minutes"
3430
  msgstr ""
3431
 
3432
- #: ../../admin/view/wp-slimstat-reports.php:1292
3433
  msgid "7 - 10 minutes"
3434
  msgstr ""
3435
 
3436
- #: ../../admin/view/wp-slimstat-reports.php:1298
3437
  msgid "More than 10 minutes"
3438
  msgstr ""
3439
 
3440
- #: ../../admin/view/wp-slimstat-reports.php:1307
3441
  msgid "Average time on site"
3442
  msgstr ""
3443
 
3444
- #: ../../admin/view/wp-slimstat-reports.php:1322
3445
  msgid ""
3446
  "A referrer (or referring site) is the site that a visitor previously visited "
3447
  "before following a link to your site."
3448
  msgstr ""
3449
 
3450
- #: ../../admin/view/wp-slimstat-reports.php:1323
3451
  msgid "Unique Referrers"
3452
  msgstr ""
3453
 
3454
- #: ../../admin/view/wp-slimstat-reports.php:1324
3455
  msgid ""
3456
  "Visitors who visited the site by typing the URL directly into their browser. "
3457
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
@@ -3459,21 +3549,21 @@ msgid ""
3459
  "documents that don't include tracking variables."
3460
  msgstr ""
3461
 
3462
- #: ../../admin/view/wp-slimstat-reports.php:1325
3463
  msgid "Direct Pageviews"
3464
  msgstr ""
3465
 
3466
- #: ../../admin/view/wp-slimstat-reports.php:1326
3467
  msgid ""
3468
  "Visitors who came to your site via searches on Google or some other search "
3469
  "engine."
3470
  msgstr ""
3471
 
3472
- #: ../../admin/view/wp-slimstat-reports.php:1327
3473
  msgid "From a search result"
3474
  msgstr ""
3475
 
3476
- #: ../../admin/view/wp-slimstat-reports.php:1328
3477
  msgid ""
3478
  "The first page that a user views during a session. This is also known as the "
3479
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
@@ -3481,1242 +3571,1265 @@ msgid ""
3481
  "a landing page."
3482
  msgstr ""
3483
 
3484
- #: ../../admin/view/wp-slimstat-reports.php:1329
3485
  msgid "Unique Landing Pages"
3486
  msgstr ""
3487
 
3488
- #: ../../admin/view/wp-slimstat-reports.php:1330
3489
  msgid "Number of single-page visits to your site over the selected period."
3490
  msgstr ""
3491
 
3492
- #: ../../admin/view/wp-slimstat-reports.php:1331
3493
  msgid "Bounce Pages"
3494
  msgstr ""
3495
 
3496
- #: ../../admin/view/wp-slimstat-reports.php:1333
3497
  msgid "New Visitors Rate"
3498
  msgstr ""
3499
 
3500
- #: ../../admin/view/wp-slimstat-reports.php:1334
3501
  msgid ""
3502
  "Visitors who visited the site in the last 5 minutes coming from a search "
3503
  "engine."
3504
  msgstr ""
3505
 
3506
- #: ../../admin/view/wp-slimstat-reports.php:1335
3507
  msgid "Currently from search engines"
3508
  msgstr ""
3509
 
3510
- #: ../../admin/view/wp-slimstat-reports.php:1407
 
 
 
 
 
 
 
 
3511
  msgid "Number of pages in your site included in Google's index."
3512
  msgstr ""
3513
 
3514
- #: ../../admin/view/wp-slimstat-reports.php:1408
3515
  msgid "Google Index"
3516
  msgstr ""
3517
 
3518
- #: ../../admin/view/wp-slimstat-reports.php:1409
3519
  msgid "Number of pages, according to Google, that link back to your site."
3520
  msgstr ""
3521
 
3522
- #: ../../admin/view/wp-slimstat-reports.php:1410
3523
  msgid "Google Backlinks"
3524
  msgstr ""
3525
 
3526
- #: ../../admin/view/wp-slimstat-reports.php:1411
3527
  msgid ""
3528
  "How many times the Facebook Like button has been approximately clicked on "
3529
  "your site."
3530
  msgstr ""
3531
 
3532
- #: ../../admin/view/wp-slimstat-reports.php:1412
3533
  msgid "Facebook Likes"
3534
  msgstr ""
3535
 
3536
- #: ../../admin/view/wp-slimstat-reports.php:1413
3537
  msgid ""
3538
  "How many times your site has been shared by someone on the social network."
3539
  msgstr ""
3540
 
3541
- #: ../../admin/view/wp-slimstat-reports.php:1414
3542
  msgid "Facebook Shares"
3543
  msgstr ""
3544
 
3545
- #: ../../admin/view/wp-slimstat-reports.php:1415
3546
  msgid "How many times links to your website have been clicked on Facebook."
3547
  msgstr ""
3548
 
3549
- #: ../../admin/view/wp-slimstat-reports.php:1416
3550
  msgid "Facebook Clicks"
3551
  msgstr ""
3552
 
3553
- #: ../../admin/view/wp-slimstat-reports.php:1417
3554
  msgid ""
3555
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3556
  "traffic data."
3557
  msgstr ""
3558
 
3559
- #: ../../admin/view/wp-slimstat-reports.php:1418
3560
  msgid "Alexa World Rank"
3561
  msgstr ""
3562
 
3563
- #: ../../admin/view/wp-slimstat-reports.php:1419
3564
  msgid "Alexa Country Rank"
3565
  msgstr ""
3566
 
3567
- #: ../../admin/view/wp-slimstat-reports.php:1420
3568
  msgid "Alexa Popularity"
3569
  msgstr ""
3570
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3571
  # Unknown
3572
- #: ../../admin/view/wp-slimstat-reports.php:1430
3573
  msgid "c-xx"
3574
  msgstr "Unknown"
3575
 
3576
  # Afghanistan
3577
- #: ../../admin/view/wp-slimstat-reports.php:1430
3578
  msgid "c-af"
3579
  msgstr "Afghanistan"
3580
 
3581
  # Åland Islands
3582
- #: ../../admin/view/wp-slimstat-reports.php:1430
3583
  msgid "c-ax"
3584
  msgstr "Aland Islands"
3585
 
3586
  # Albania
3587
- #: ../../admin/view/wp-slimstat-reports.php:1430
3588
  msgid "c-al"
3589
  msgstr "Albania"
3590
 
3591
  # Algeria
3592
- #: ../../admin/view/wp-slimstat-reports.php:1430
3593
  msgid "c-dz"
3594
  msgstr "Algeria"
3595
 
3596
  # Andorra
3597
- #: ../../admin/view/wp-slimstat-reports.php:1430
3598
  msgid "c-ad"
3599
  msgstr "Andorra"
3600
 
3601
  # Angola
3602
- #: ../../admin/view/wp-slimstat-reports.php:1430
3603
  msgid "c-ao"
3604
  msgstr "Angola"
3605
 
3606
  # Anguilla
3607
- #: ../../admin/view/wp-slimstat-reports.php:1430
3608
  msgid "c-ai"
3609
  msgstr "Anguilla"
3610
 
3611
  # Antigua and Barbuda
3612
- #: ../../admin/view/wp-slimstat-reports.php:1430
3613
  msgid "c-ag"
3614
  msgstr "Antigua and Barbuda"
3615
 
3616
  # Argentina
3617
- #: ../../admin/view/wp-slimstat-reports.php:1430
3618
  msgid "c-ar"
3619
  msgstr "Argentina"
3620
 
3621
  # Armenia
3622
- #: ../../admin/view/wp-slimstat-reports.php:1430
3623
  msgid "c-am"
3624
  msgstr "Armenia"
3625
 
3626
  # Aruba
3627
- #: ../../admin/view/wp-slimstat-reports.php:1430
3628
  msgid "c-aw"
3629
  msgstr "Aruba"
3630
 
3631
  # Australia
3632
- #: ../../admin/view/wp-slimstat-reports.php:1430
3633
  msgid "c-au"
3634
  msgstr "Australia"
3635
 
3636
  # Austria
3637
- #: ../../admin/view/wp-slimstat-reports.php:1430
3638
  msgid "c-at"
3639
  msgstr "Austria"
3640
 
3641
  # Azerbaijan
3642
- #: ../../admin/view/wp-slimstat-reports.php:1430
3643
  msgid "c-az"
3644
  msgstr "Azerbaijan"
3645
 
3646
  # Bahamas
3647
- #: ../../admin/view/wp-slimstat-reports.php:1430
3648
  msgid "c-bs"
3649
  msgstr "Bahamas"
3650
 
3651
  # Bahrain
3652
- #: ../../admin/view/wp-slimstat-reports.php:1430
3653
  msgid "c-bh"
3654
  msgstr "Bahrain"
3655
 
3656
  # Bangladesh
3657
- #: ../../admin/view/wp-slimstat-reports.php:1430
3658
  msgid "c-bd"
3659
  msgstr "Bangladesh"
3660
 
3661
  # Barbados
3662
- #: ../../admin/view/wp-slimstat-reports.php:1430
3663
  msgid "c-bb"
3664
  msgstr "Barbados"
3665
 
3666
  # Belarus
3667
- #: ../../admin/view/wp-slimstat-reports.php:1430
3668
  msgid "c-by"
3669
  msgstr "Belarus"
3670
 
3671
  # Belgium
3672
- #: ../../admin/view/wp-slimstat-reports.php:1430
3673
  msgid "c-be"
3674
  msgstr "Belgium"
3675
 
3676
  # Belize
3677
- #: ../../admin/view/wp-slimstat-reports.php:1430
3678
  msgid "c-bz"
3679
  msgstr "Belize"
3680
 
3681
  # Benin
3682
- #: ../../admin/view/wp-slimstat-reports.php:1430
3683
  msgid "c-bj"
3684
  msgstr "Benin"
3685
 
3686
  # Bermuda
3687
- #: ../../admin/view/wp-slimstat-reports.php:1430
3688
  msgid "c-bm"
3689
  msgstr "Bermuda"
3690
 
3691
  # Bhutan
3692
- #: ../../admin/view/wp-slimstat-reports.php:1430
3693
  msgid "c-bt"
3694
  msgstr "Bhutan"
3695
 
3696
  # Bolivia
3697
- #: ../../admin/view/wp-slimstat-reports.php:1430
3698
  msgid "c-bo"
3699
  msgstr "Bolivia"
3700
 
3701
  # Bosnia and Herzegovina
3702
- #: ../../admin/view/wp-slimstat-reports.php:1430
3703
  msgid "c-ba"
3704
  msgstr "Bosnia and Herzegovina"
3705
 
3706
  # Botswana
3707
- #: ../../admin/view/wp-slimstat-reports.php:1430
3708
  msgid "c-bw"
3709
  msgstr "Botswana"
3710
 
3711
  # Brazil
3712
- #: ../../admin/view/wp-slimstat-reports.php:1430
3713
  msgid "c-br"
3714
  msgstr "Brazil"
3715
 
3716
  # Brunei Darussalam
3717
- #: ../../admin/view/wp-slimstat-reports.php:1430
3718
  msgid "c-bn"
3719
  msgstr "Brunei Darussalam"
3720
 
3721
  # Bulgaria
3722
- #: ../../admin/view/wp-slimstat-reports.php:1430
3723
  msgid "c-bg"
3724
  msgstr "Bulgaria"
3725
 
3726
  # Burkina Faso
3727
- #: ../../admin/view/wp-slimstat-reports.php:1430
3728
  msgid "c-bf"
3729
  msgstr "Burkina Faso"
3730
 
3731
  # Burundi
3732
- #: ../../admin/view/wp-slimstat-reports.php:1430
3733
  msgid "c-bi"
3734
  msgstr "Burundi"
3735
 
3736
  # Cambodia
3737
- #: ../../admin/view/wp-slimstat-reports.php:1430
3738
  msgid "c-kh"
3739
  msgstr "Cambodia"
3740
 
3741
  # Cameroon
3742
- #: ../../admin/view/wp-slimstat-reports.php:1430
3743
  msgid "c-cm"
3744
  msgstr "Cameroon"
3745
 
3746
  # Canada
3747
- #: ../../admin/view/wp-slimstat-reports.php:1430
3748
  msgid "c-ca"
3749
  msgstr "Canada"
3750
 
3751
  # Cape Verde
3752
- #: ../../admin/view/wp-slimstat-reports.php:1430
3753
  msgid "c-cv"
3754
  msgstr "Cape Verde"
3755
 
3756
  # Cayman Islands
3757
- #: ../../admin/view/wp-slimstat-reports.php:1430
3758
  msgid "c-ky"
3759
  msgstr "Cayman Islands"
3760
 
3761
  # Central African Republic
3762
- #: ../../admin/view/wp-slimstat-reports.php:1430
3763
  msgid "c-cf"
3764
  msgstr "Central African Republic"
3765
 
3766
  # Chad
3767
- #: ../../admin/view/wp-slimstat-reports.php:1430
3768
  msgid "c-td"
3769
  msgstr "Chad"
3770
 
3771
  # Chile
3772
- #: ../../admin/view/wp-slimstat-reports.php:1430
3773
  msgid "c-cl"
3774
  msgstr "Chile"
3775
 
3776
  # China
3777
- #: ../../admin/view/wp-slimstat-reports.php:1430
3778
  msgid "c-cn"
3779
  msgstr "China"
3780
 
3781
  # Colombia
3782
- #: ../../admin/view/wp-slimstat-reports.php:1430
3783
  msgid "c-co"
3784
  msgstr "Colombia"
3785
 
3786
  # Comoros
3787
- #: ../../admin/view/wp-slimstat-reports.php:1430
3788
  msgid "c-km"
3789
  msgstr "Comoros"
3790
 
3791
  # Congo
3792
- #: ../../admin/view/wp-slimstat-reports.php:1430
3793
  msgid "c-cg"
3794
  msgstr "Congo"
3795
 
3796
  # The Democratic Republic of the Congo
3797
- #: ../../admin/view/wp-slimstat-reports.php:1430
3798
  msgid "c-cd"
3799
  msgstr "The Democratic Republic of the Congo"
3800
 
3801
  # Costa Rica
3802
- #: ../../admin/view/wp-slimstat-reports.php:1430
3803
  msgid "c-cr"
3804
  msgstr "Costa Rica"
3805
 
3806
  # Côte d'Ivoire
3807
- #: ../../admin/view/wp-slimstat-reports.php:1430
3808
  msgid "c-ci"
3809
  msgstr "Côte d'Ivoire"
3810
 
3811
  # Croatia
3812
- #: ../../admin/view/wp-slimstat-reports.php:1430
3813
  msgid "c-hr"
3814
  msgstr "Croatia"
3815
 
3816
  # Cuba
3817
- #: ../../admin/view/wp-slimstat-reports.php:1430
3818
  msgid "c-cu"
3819
  msgstr "Cuba"
3820
 
3821
  # Cyprus
3822
- #: ../../admin/view/wp-slimstat-reports.php:1430
3823
  msgid "c-cy"
3824
  msgstr "Cyprus"
3825
 
3826
  # Czech Republic
3827
- #: ../../admin/view/wp-slimstat-reports.php:1430
3828
  msgid "c-cz"
3829
  msgstr "Czech Republic"
3830
 
3831
  # Denmark
3832
- #: ../../admin/view/wp-slimstat-reports.php:1430
3833
  msgid "c-dk"
3834
  msgstr "Denmark"
3835
 
3836
  # Djibouti
3837
- #: ../../admin/view/wp-slimstat-reports.php:1430
3838
  msgid "c-dj"
3839
  msgstr "Djibouti"
3840
 
3841
  # Dominica
3842
- #: ../../admin/view/wp-slimstat-reports.php:1430
3843
  msgid "c-dm"
3844
  msgstr "Dominica"
3845
 
3846
  # Dominican Republic
3847
- #: ../../admin/view/wp-slimstat-reports.php:1430
3848
  msgid "c-do"
3849
  msgstr "Dominican Republic"
3850
 
3851
  # Ecuador
3852
- #: ../../admin/view/wp-slimstat-reports.php:1430
3853
  msgid "c-ec"
3854
  msgstr "Ecuador"
3855
 
3856
  # Egypt
3857
- #: ../../admin/view/wp-slimstat-reports.php:1430
3858
  msgid "c-eg"
3859
  msgstr "Egypt"
3860
 
3861
  # El Salvador
3862
- #: ../../admin/view/wp-slimstat-reports.php:1430
3863
  msgid "c-sv"
3864
  msgstr "El Salvador"
3865
 
3866
  # Equatorial Guinea
3867
- #: ../../admin/view/wp-slimstat-reports.php:1430
3868
  msgid "c-gq"
3869
  msgstr "Equatorial Guinea"
3870
 
3871
  # Eritrea
3872
- #: ../../admin/view/wp-slimstat-reports.php:1430
3873
  msgid "c-er"
3874
  msgstr "Eritrea"
3875
 
3876
  # Estonia
3877
- #: ../../admin/view/wp-slimstat-reports.php:1430
3878
  msgid "c-ee"
3879
  msgstr "Estonia"
3880
 
3881
  # Ethiopia
3882
- #: ../../admin/view/wp-slimstat-reports.php:1430
3883
  msgid "c-et"
3884
  msgstr "Ethiopia"
3885
 
3886
  # Faroe Islands
3887
- #: ../../admin/view/wp-slimstat-reports.php:1430
3888
  msgid "c-fo"
3889
  msgstr "Faroe Islands"
3890
 
3891
  # Falkland Islands (Malvinas)
3892
- #: ../../admin/view/wp-slimstat-reports.php:1430
3893
  msgid "c-fk"
3894
  msgstr "Falkland Islands (Malvinas)"
3895
 
3896
  # Fiji
3897
- #: ../../admin/view/wp-slimstat-reports.php:1430
3898
  msgid "c-fj"
3899
  msgstr "Fiji"
3900
 
3901
  # Finland
3902
- #: ../../admin/view/wp-slimstat-reports.php:1430
3903
  msgid "c-fi"
3904
  msgstr "Finland"
3905
 
3906
  # France
3907
- #: ../../admin/view/wp-slimstat-reports.php:1430
3908
  msgid "c-fr"
3909
  msgstr "France"
3910
 
3911
  # French Guiana
3912
- #: ../../admin/view/wp-slimstat-reports.php:1430
3913
  msgid "c-gf"
3914
  msgstr "French Guiana"
3915
 
3916
  # Gabon
3917
- #: ../../admin/view/wp-slimstat-reports.php:1430
3918
  msgid "c-ga"
3919
  msgstr "Gabon"
3920
 
3921
  # Gambia
3922
- #: ../../admin/view/wp-slimstat-reports.php:1430
3923
  msgid "c-gm"
3924
  msgstr "Gambia"
3925
 
3926
  # Georgia
3927
- #: ../../admin/view/wp-slimstat-reports.php:1430
3928
  msgid "c-ge"
3929
  msgstr "Georgia"
3930
 
3931
  # Germany
3932
- #: ../../admin/view/wp-slimstat-reports.php:1430
3933
  msgid "c-de"
3934
  msgstr "Germany"
3935
 
3936
  # Ghana
3937
- #: ../../admin/view/wp-slimstat-reports.php:1430
3938
  msgid "c-gh"
3939
  msgstr "Ghana"
3940
 
3941
  # Greece
3942
- #: ../../admin/view/wp-slimstat-reports.php:1430
3943
  msgid "c-gr"
3944
  msgstr "Greece"
3945
 
3946
  # Greenland
3947
- #: ../../admin/view/wp-slimstat-reports.php:1430
3948
  msgid "c-gl"
3949
  msgstr "Greenland"
3950
 
3951
  # Grenada
3952
- #: ../../admin/view/wp-slimstat-reports.php:1430
3953
  msgid "c-gd"
3954
  msgstr "Grenada"
3955
 
3956
  # Guadeloupe
3957
- #: ../../admin/view/wp-slimstat-reports.php:1430
3958
  msgid "c-gp"
3959
  msgstr "Guadeloupe"
3960
 
3961
  # Guatemala
3962
- #: ../../admin/view/wp-slimstat-reports.php:1430
3963
  msgid "c-gt"
3964
  msgstr "Guatemala"
3965
 
3966
  # Guinea
3967
- #: ../../admin/view/wp-slimstat-reports.php:1430
3968
  msgid "c-gn"
3969
  msgstr "Guinea"
3970
 
3971
  # Guinea-Bissau
3972
- #: ../../admin/view/wp-slimstat-reports.php:1430
3973
  msgid "c-gw"
3974
  msgstr "Guinea-Bissau"
3975
 
3976
  # Guyana
3977
- #: ../../admin/view/wp-slimstat-reports.php:1430
3978
  msgid "c-gy"
3979
  msgstr "Guyana"
3980
 
3981
  # Haiti
3982
- #: ../../admin/view/wp-slimstat-reports.php:1430
3983
  msgid "c-ht"
3984
  msgstr "Haiti"
3985
 
3986
  # Honduras
3987
- #: ../../admin/view/wp-slimstat-reports.php:1430
3988
  msgid "c-hn"
3989
  msgstr "Honduras"
3990
 
3991
  # Hong Kong
3992
- #: ../../admin/view/wp-slimstat-reports.php:1430
3993
  msgid "c-hk"
3994
  msgstr "Hong Kong"
3995
 
3996
  # Hungary
3997
- #: ../../admin/view/wp-slimstat-reports.php:1430
3998
  msgid "c-hu"
3999
  msgstr "Hungary"
4000
 
4001
  # Iceland
4002
- #: ../../admin/view/wp-slimstat-reports.php:1430
4003
  msgid "c-is"
4004
  msgstr "Iceland"
4005
 
4006
  # India
4007
- #: ../../admin/view/wp-slimstat-reports.php:1430
4008
  msgid "c-in"
4009
  msgstr "India"
4010
 
4011
  # Indonesia
4012
- #: ../../admin/view/wp-slimstat-reports.php:1430
4013
  msgid "c-id"
4014
  msgstr "Indonesia"
4015
 
4016
  # Islamic Republic of Iran
4017
- #: ../../admin/view/wp-slimstat-reports.php:1430
4018
  msgid "c-ir"
4019
  msgstr "Islamic Republic of Iran"
4020
 
4021
  # Iraq
4022
- #: ../../admin/view/wp-slimstat-reports.php:1430
4023
  msgid "c-iq"
4024
  msgstr "Iraq"
4025
 
4026
  # Ireland
4027
- #: ../../admin/view/wp-slimstat-reports.php:1430
4028
  msgid "c-ie"
4029
  msgstr "Ireland"
4030
 
4031
  # Israel
4032
- #: ../../admin/view/wp-slimstat-reports.php:1430
4033
  msgid "c-il"
4034
  msgstr "Israel"
4035
 
4036
  # Italy
4037
- #: ../../admin/view/wp-slimstat-reports.php:1430
4038
  msgid "c-it"
4039
  msgstr "Italy"
4040
 
4041
  # Jamaica
4042
- #: ../../admin/view/wp-slimstat-reports.php:1430
4043
  msgid "c-jm"
4044
  msgstr "Jamaica"
4045
 
4046
  # Japan
4047
- #: ../../admin/view/wp-slimstat-reports.php:1430
4048
  msgid "c-jp"
4049
  msgstr "Japan"
4050
 
4051
  # Jordan
4052
- #: ../../admin/view/wp-slimstat-reports.php:1430
4053
  msgid "c-jo"
4054
  msgstr "Jordan"
4055
 
4056
  # Kazakhstan
4057
- #: ../../admin/view/wp-slimstat-reports.php:1430
4058
  msgid "c-kz"
4059
  msgstr "Kazakhstan"
4060
 
4061
  # Kenya
4062
- #: ../../admin/view/wp-slimstat-reports.php:1430
4063
  msgid "c-ke"
4064
  msgstr "Kenya"
4065
 
4066
  # Nauru
4067
- #: ../../admin/view/wp-slimstat-reports.php:1430
4068
  msgid "c-nr"
4069
  msgstr "Nauru"
4070
 
4071
  # Democratic People's Republic of Korea
4072
- #: ../../admin/view/wp-slimstat-reports.php:1430
4073
  msgid "c-kp"
4074
  msgstr "Democratic People's Republic of Korea"
4075
 
4076
  # Republic of Korea
4077
- #: ../../admin/view/wp-slimstat-reports.php:1430
4078
  msgid "c-kr"
4079
  msgstr "Republic of Korea"
4080
 
4081
- #: ../../admin/view/wp-slimstat-reports.php:1430
4082
  msgid "c-kv"
4083
  msgstr "Kosovo"
4084
 
4085
  # Kuwait
4086
- #: ../../admin/view/wp-slimstat-reports.php:1430
4087
  msgid "c-kw"
4088
  msgstr "Kuwait"
4089
 
4090
  # Kyrgyzstan
4091
- #: ../../admin/view/wp-slimstat-reports.php:1430
4092
  msgid "c-kg"
4093
  msgstr "Kyrgyzstan"
4094
 
4095
  # Lao People's Democratic Republic
4096
- #: ../../admin/view/wp-slimstat-reports.php:1430
4097
  msgid "c-la"
4098
  msgstr "Lao People's Democratic Republic"
4099
 
4100
  # Latvia
4101
- #: ../../admin/view/wp-slimstat-reports.php:1430
4102
  msgid "c-lv"
4103
  msgstr "Latvia"
4104
 
4105
  # Lebanon
4106
- #: ../../admin/view/wp-slimstat-reports.php:1430
4107
  msgid "c-lb"
4108
  msgstr "Lebanon"
4109
 
4110
  # Lesotho
4111
- #: ../../admin/view/wp-slimstat-reports.php:1430
4112
  msgid "c-ls"
4113
  msgstr "Lesotho"
4114
 
4115
  # Liberia
4116
- #: ../../admin/view/wp-slimstat-reports.php:1430
4117
  msgid "c-lr"
4118
  msgstr "Liberia"
4119
 
4120
  # Libyan Arab Jamahiriya
4121
- #: ../../admin/view/wp-slimstat-reports.php:1430
4122
  msgid "c-ly"
4123
  msgstr "Libyan Arab Jamahiriya"
4124
 
4125
  # Liechtenstein
4126
- #: ../../admin/view/wp-slimstat-reports.php:1430
4127
  msgid "c-li"
4128
  msgstr "Liechtenstein"
4129
 
4130
  # Lithuania
4131
- #: ../../admin/view/wp-slimstat-reports.php:1430
4132
  msgid "c-lt"
4133
  msgstr "Lithuania"
4134
 
4135
  # Luxembourg
4136
- #: ../../admin/view/wp-slimstat-reports.php:1430
4137
  msgid "c-lu"
4138
  msgstr "Luxembourg"
4139
 
4140
  # The Former Yugoslav Republic of Macedonia
4141
- #: ../../admin/view/wp-slimstat-reports.php:1430
4142
  msgid "c-mk"
4143
  msgstr "The Former Yugoslav Republic of Macedonia"
4144
 
4145
  # Madagascar
4146
- #: ../../admin/view/wp-slimstat-reports.php:1430
4147
  msgid "c-mg"
4148
  msgstr "Madagascar"
4149
 
4150
  # Malawi
4151
- #: ../../admin/view/wp-slimstat-reports.php:1430
4152
  msgid "c-mw"
4153
  msgstr "Malawi"
4154
 
4155
  # Malaysia
4156
- #: ../../admin/view/wp-slimstat-reports.php:1430
4157
  msgid "c-my"
4158
  msgstr "Malaysia"
4159
 
4160
  # Mali
4161
- #: ../../admin/view/wp-slimstat-reports.php:1430
4162
  msgid "c-ml"
4163
  msgstr "Mali"
4164
 
4165
  # Malta
4166
- #: ../../admin/view/wp-slimstat-reports.php:1430
4167
  msgid "c-mt"
4168
  msgstr "Malta"
4169
 
4170
  # Martinique
4171
- #: ../../admin/view/wp-slimstat-reports.php:1430
4172
  msgid "c-mq"
4173
  msgstr "Martinique"
4174
 
4175
  # Mauritania
4176
- #: ../../admin/view/wp-slimstat-reports.php:1430
4177
  msgid "c-mr"
4178
  msgstr "Mauritania"
4179
 
4180
  # Mauritius
4181
- #: ../../admin/view/wp-slimstat-reports.php:1430
4182
  msgid "c-mu"
4183
  msgstr "Mauritius"
4184
 
4185
  # Mexico
4186
- #: ../../admin/view/wp-slimstat-reports.php:1430
4187
  msgid "c-mx"
4188
  msgstr "Mexico"
4189
 
4190
  # Moldova
4191
- #: ../../admin/view/wp-slimstat-reports.php:1430
4192
  msgid "c-md"
4193
  msgstr "Moldova"
4194
 
4195
  # Mongolia
4196
- #: ../../admin/view/wp-slimstat-reports.php:1430
4197
  msgid "c-mn"
4198
  msgstr "Mongolia"
4199
 
4200
  # Montenegro
4201
- #: ../../admin/view/wp-slimstat-reports.php:1430
4202
  msgid "c-me"
4203
  msgstr "Montenegro"
4204
 
4205
  # Montserrat
4206
- #: ../../admin/view/wp-slimstat-reports.php:1430
4207
  msgid "c-ms"
4208
  msgstr "Montserrat"
4209
 
4210
  # Morocco
4211
- #: ../../admin/view/wp-slimstat-reports.php:1430
4212
  msgid "c-ma"
4213
  msgstr "Morocco"
4214
 
4215
  # Mozambique
4216
- #: ../../admin/view/wp-slimstat-reports.php:1430
4217
  msgid "c-mz"
4218
  msgstr "Mozambique"
4219
 
4220
  # Myanmar
4221
- #: ../../admin/view/wp-slimstat-reports.php:1430
4222
  msgid "c-mm"
4223
  msgstr "Myanmar"
4224
 
4225
  # Namibia
4226
- #: ../../admin/view/wp-slimstat-reports.php:1430
4227
  msgid "c-na"
4228
  msgstr "Namibia"
4229
 
4230
  # Nepal
4231
- #: ../../admin/view/wp-slimstat-reports.php:1430
4232
  msgid "c-np"
4233
  msgstr "Nepal"
4234
 
4235
  # Netherlands
4236
- #: ../../admin/view/wp-slimstat-reports.php:1430
4237
  msgid "c-nl"
4238
  msgstr "Netherlands"
4239
 
4240
  # New Caledonia
4241
- #: ../../admin/view/wp-slimstat-reports.php:1430
4242
  msgid "c-nc"
4243
  msgstr "New Caledonia"
4244
 
4245
  # New Zealand
4246
- #: ../../admin/view/wp-slimstat-reports.php:1430
4247
  msgid "c-nz"
4248
  msgstr "New Zealand"
4249
 
4250
  # Nicaragua
4251
- #: ../../admin/view/wp-slimstat-reports.php:1430
4252
  msgid "c-ni"
4253
  msgstr "Nicaragua"
4254
 
4255
  # Niger
4256
- #: ../../admin/view/wp-slimstat-reports.php:1430
4257
  msgid "c-ne"
4258
  msgstr "Niger"
4259
 
4260
  # Nigeria
4261
- #: ../../admin/view/wp-slimstat-reports.php:1430
4262
  msgid "c-ng"
4263
  msgstr "Nigeria"
4264
 
4265
  # Norway
4266
- #: ../../admin/view/wp-slimstat-reports.php:1430
4267
  msgid "c-no"
4268
  msgstr "Norway"
4269
 
4270
  # Oman
4271
- #: ../../admin/view/wp-slimstat-reports.php:1430
4272
  msgid "c-om"
4273
  msgstr "Oman"
4274
 
4275
  # Pakistan
4276
- #: ../../admin/view/wp-slimstat-reports.php:1430
4277
  msgid "c-pk"
4278
  msgstr "Pakistan"
4279
 
4280
  # Palau
4281
- #: ../../admin/view/wp-slimstat-reports.php:1430
4282
  msgid "c-pw"
4283
  msgstr "Palau"
4284
 
4285
  # Occupied Palestinian Territory
4286
- #: ../../admin/view/wp-slimstat-reports.php:1430
4287
  msgid "c-ps"
4288
  msgstr "Occupied Palestinian Territory"
4289
 
4290
  # Panama
4291
- #: ../../admin/view/wp-slimstat-reports.php:1430
4292
  msgid "c-pa"
4293
  msgstr "Panama"
4294
 
4295
  # Papua New Guinea
4296
- #: ../../admin/view/wp-slimstat-reports.php:1430
4297
  msgid "c-pg"
4298
  msgstr "Papua New Guinea"
4299
 
4300
  # Paraguay
4301
- #: ../../admin/view/wp-slimstat-reports.php:1430
4302
  msgid "c-py"
4303
  msgstr "Paraguay"
4304
 
4305
  # Peru
4306
- #: ../../admin/view/wp-slimstat-reports.php:1430
4307
  msgid "c-pe"
4308
  msgstr "Peru"
4309
 
4310
  # Philippines
4311
- #: ../../admin/view/wp-slimstat-reports.php:1430
4312
  msgid "c-ph"
4313
  msgstr "Philippines"
4314
 
4315
  # Poland
4316
- #: ../../admin/view/wp-slimstat-reports.php:1430
4317
  msgid "c-pl"
4318
  msgstr "Poland"
4319
 
4320
  # Portugal
4321
- #: ../../admin/view/wp-slimstat-reports.php:1430
4322
  msgid "c-pt"
4323
  msgstr "Portugal"
4324
 
4325
  # Puerto Rico
4326
- #: ../../admin/view/wp-slimstat-reports.php:1430
4327
  msgid "c-pr"
4328
  msgstr "Puerto Rico"
4329
 
4330
  # Qatar
4331
- #: ../../admin/view/wp-slimstat-reports.php:1430
4332
  msgid "c-qa"
4333
  msgstr "Qatar"
4334
 
4335
  # Réunion
4336
- #: ../../admin/view/wp-slimstat-reports.php:1430
4337
  msgid "c-re"
4338
  msgstr "Réunion"
4339
 
4340
  # Romania
4341
- #: ../../admin/view/wp-slimstat-reports.php:1430
4342
  msgid "c-ro"
4343
  msgstr "Romania"
4344
 
4345
  # Russian Federation
4346
- #: ../../admin/view/wp-slimstat-reports.php:1430
4347
  msgid "c-ru"
4348
  msgstr "Russian Federation"
4349
 
4350
  # Rwanda
4351
- #: ../../admin/view/wp-slimstat-reports.php:1430
4352
  msgid "c-rw"
4353
  msgstr "Rwanda"
4354
 
4355
  # Saint Kitts and Nevis
4356
- #: ../../admin/view/wp-slimstat-reports.php:1430
4357
  msgid "c-kn"
4358
  msgstr "Saint Kitts and Nevis"
4359
 
4360
  # Saint Lucia
4361
- #: ../../admin/view/wp-slimstat-reports.php:1430
4362
  msgid "c-lc"
4363
  msgstr "Saint Lucia"
4364
 
4365
  # Saint Martin
4366
- #: ../../admin/view/wp-slimstat-reports.php:1430
4367
  msgid "c-mf"
4368
  msgstr "Saint Martin"
4369
 
4370
  # Saint Vincent and the Grenadines
4371
- #: ../../admin/view/wp-slimstat-reports.php:1430
4372
  msgid "c-vc"
4373
  msgstr "Saint Vincent and the Grenadines"
4374
 
4375
  # Samoa
4376
- #: ../../admin/view/wp-slimstat-reports.php:1430
4377
  msgid "c-ws"
4378
  msgstr "Samoa"
4379
 
4380
  # Sao Tome and Principe
4381
- #: ../../admin/view/wp-slimstat-reports.php:1430
4382
  msgid "c-st"
4383
  msgstr "Sao Tome and Principe"
4384
 
4385
  # Saudi Arabia
4386
- #: ../../admin/view/wp-slimstat-reports.php:1430
4387
  msgid "c-sa"
4388
  msgstr "Saudi Arabia"
4389
 
4390
  # Senegal
4391
- #: ../../admin/view/wp-slimstat-reports.php:1430
4392
  msgid "c-sn"
4393
  msgstr "Senegal"
4394
 
4395
  # Serbia
4396
- #: ../../admin/view/wp-slimstat-reports.php:1430
4397
  msgid "c-rs"
4398
  msgstr "Serbia"
4399
 
4400
  # Sierra Leone
4401
- #: ../../admin/view/wp-slimstat-reports.php:1430
4402
  msgid "c-sl"
4403
  msgstr "Sierra Leone"
4404
 
4405
  # Singapore
4406
- #: ../../admin/view/wp-slimstat-reports.php:1430
4407
  msgid "c-sg"
4408
  msgstr "Singapore"
4409
 
4410
  # Slovakia
4411
- #: ../../admin/view/wp-slimstat-reports.php:1430
4412
  msgid "c-sk"
4413
  msgstr "Slovakia"
4414
 
4415
  # Slovenia
4416
- #: ../../admin/view/wp-slimstat-reports.php:1430
4417
  msgid "c-si"
4418
  msgstr "Slovenia"
4419
 
4420
  # Solomon Islands
4421
- #: ../../admin/view/wp-slimstat-reports.php:1430
4422
  msgid "c-sb"
4423
  msgstr "Solomon Islands"
4424
 
4425
  # Somalia
4426
- #: ../../admin/view/wp-slimstat-reports.php:1430
4427
  msgid "c-so"
4428
  msgstr "Somalia"
4429
 
4430
  # South Africa
4431
- #: ../../admin/view/wp-slimstat-reports.php:1430
4432
  msgid "c-za"
4433
  msgstr "South Africa"
4434
 
4435
  # South Georgia and the South Sandwich Islands
4436
- #: ../../admin/view/wp-slimstat-reports.php:1430
4437
  msgid "c-gs"
4438
  msgstr "South Georgia and the South Sandwich Islands"
4439
 
4440
  # Spain
4441
- #: ../../admin/view/wp-slimstat-reports.php:1430
4442
  msgid "c-es"
4443
  msgstr "Spain"
4444
 
4445
  # Sri Lanka
4446
- #: ../../admin/view/wp-slimstat-reports.php:1430
4447
  msgid "c-lk"
4448
  msgstr "Sri Lanka"
4449
 
4450
- #: ../../admin/view/wp-slimstat-reports.php:1430
4451
  msgid "c-sc"
4452
  msgstr "Seychelles"
4453
 
4454
  # Sudan
4455
- #: ../../admin/view/wp-slimstat-reports.php:1430
4456
  msgid "c-sd"
4457
  msgstr "Sudan"
4458
 
4459
- #: ../../admin/view/wp-slimstat-reports.php:1430
4460
  msgid "c-ss"
4461
  msgstr "South Sudan"
4462
 
4463
  # Suriname
4464
- #: ../../admin/view/wp-slimstat-reports.php:1430
4465
  msgid "c-sr"
4466
  msgstr "Suriname"
4467
 
4468
  # Svalbard and Jan Mayen
4469
- #: ../../admin/view/wp-slimstat-reports.php:1430
4470
  msgid "c-sj"
4471
  msgstr "Svalbard and Jan Mayen"
4472
 
4473
  # Swaziland
4474
- #: ../../admin/view/wp-slimstat-reports.php:1430
4475
  msgid "c-sz"
4476
  msgstr "Swaziland"
4477
 
4478
  # Sweden
4479
- #: ../../admin/view/wp-slimstat-reports.php:1430
4480
  msgid "c-se"
4481
  msgstr "Sweden"
4482
 
4483
  # Switzerland
4484
- #: ../../admin/view/wp-slimstat-reports.php:1430
4485
  msgid "c-ch"
4486
  msgstr "Switzerland"
4487
 
4488
  # Syrian Arab Republic
4489
- #: ../../admin/view/wp-slimstat-reports.php:1430
4490
  msgid "c-sy"
4491
  msgstr "Syrian Arab Republic"
4492
 
4493
  # Taiwan, Province of China
4494
- #: ../../admin/view/wp-slimstat-reports.php:1430
4495
  msgid "c-tw"
4496
  msgstr "Taiwan"
4497
 
4498
  # Tajikistan
4499
- #: ../../admin/view/wp-slimstat-reports.php:1430
4500
  msgid "c-tj"
4501
  msgstr "Tajikistan"
4502
 
4503
  # United Republic of Tanzania
4504
- #: ../../admin/view/wp-slimstat-reports.php:1430
4505
  msgid "c-tz"
4506
  msgstr "United Republic of Tanzania"
4507
 
4508
  # Thailand
4509
- #: ../../admin/view/wp-slimstat-reports.php:1430
4510
  msgid "c-th"
4511
  msgstr "Thailand"
4512
 
4513
  # Timor-Leste
4514
- #: ../../admin/view/wp-slimstat-reports.php:1430
4515
  msgid "c-tl"
4516
  msgstr "Timor-Leste"
4517
 
4518
  # Togo
4519
- #: ../../admin/view/wp-slimstat-reports.php:1430
4520
  msgid "c-tg"
4521
  msgstr "Togo"
4522
 
4523
  # Tonga
4524
- #: ../../admin/view/wp-slimstat-reports.php:1430
4525
  msgid "c-to"
4526
  msgstr "Tonga"
4527
 
4528
  # Trinidad and Tobago
4529
- #: ../../admin/view/wp-slimstat-reports.php:1430
4530
  msgid "c-tt"
4531
  msgstr "Trinidad and Tobago"
4532
 
4533
  # Tunisia
4534
- #: ../../admin/view/wp-slimstat-reports.php:1430
4535
  msgid "c-tn"
4536
  msgstr "Tunisia"
4537
 
4538
  # Turkey
4539
- #: ../../admin/view/wp-slimstat-reports.php:1430
4540
  msgid "c-tr"
4541
  msgstr "Turkey"
4542
 
4543
  # Turkmenistan
4544
- #: ../../admin/view/wp-slimstat-reports.php:1430
4545
  msgid "c-tm"
4546
  msgstr "Turkmenistan"
4547
 
4548
  # Turks and Caicos Islands
4549
- #: ../../admin/view/wp-slimstat-reports.php:1430
4550
  msgid "c-tc"
4551
  msgstr "Turks and Caicos Islands"
4552
 
4553
  # Uganda
4554
- #: ../../admin/view/wp-slimstat-reports.php:1430
4555
  msgid "c-ug"
4556
  msgstr "Uganda"
4557
 
4558
  # Ukraine
4559
- #: ../../admin/view/wp-slimstat-reports.php:1430
4560
  msgid "c-ua"
4561
  msgstr "Ukraine"
4562
 
4563
  # United Arab Emirates
4564
- #: ../../admin/view/wp-slimstat-reports.php:1430
4565
  msgid "c-ae"
4566
  msgstr "United Arab Emirates"
4567
 
4568
  # United Kingdom
4569
- #: ../../admin/view/wp-slimstat-reports.php:1430
4570
  msgid "c-gb"
4571
  msgstr "United Kingdom"
4572
 
4573
  # United States
4574
- #: ../../admin/view/wp-slimstat-reports.php:1430
4575
  msgid "c-us"
4576
  msgstr "United States"
4577
 
4578
  # Uruguay
4579
- #: ../../admin/view/wp-slimstat-reports.php:1430
4580
  msgid "c-uy"
4581
  msgstr "Uruguay"
4582
 
4583
  # Uzbekistan
4584
- #: ../../admin/view/wp-slimstat-reports.php:1430
4585
  msgid "c-uz"
4586
  msgstr "Uzbekistan"
4587
 
4588
  # Vanuatu
4589
- #: ../../admin/view/wp-slimstat-reports.php:1430
4590
  msgid "c-vu"
4591
  msgstr "Vanuatu"
4592
 
4593
  # Venezuela
4594
- #: ../../admin/view/wp-slimstat-reports.php:1430
4595
  msgid "c-ve"
4596
  msgstr "Venezuela"
4597
 
4598
  # Viet Nam
4599
- #: ../../admin/view/wp-slimstat-reports.php:1430
4600
  msgid "c-vn"
4601
  msgstr "Viet Nam"
4602
 
4603
  # British Virgin Islands
4604
- #: ../../admin/view/wp-slimstat-reports.php:1430
4605
  msgid "c-vg"
4606
  msgstr "British Virgin Islands"
4607
 
4608
  # U.S. Virgin Islands
4609
- #: ../../admin/view/wp-slimstat-reports.php:1430
4610
  msgid "c-vi"
4611
  msgstr "U.S. Virgin Islands"
4612
 
4613
  # Western Sahara
4614
- #: ../../admin/view/wp-slimstat-reports.php:1430
4615
  msgid "c-eh"
4616
  msgstr "Western Sahara"
4617
 
4618
  # Yemen
4619
- #: ../../admin/view/wp-slimstat-reports.php:1430
4620
  msgid "c-ye"
4621
  msgstr "Yemen"
4622
 
4623
  # Zambia
4624
- #: ../../admin/view/wp-slimstat-reports.php:1430
4625
  msgid "c-zm"
4626
  msgstr "Zambia"
4627
 
4628
  # Zimbabwe
4629
- #: ../../admin/view/wp-slimstat-reports.php:1430
4630
  msgid "c-zw"
4631
  msgstr "Zimbabwe"
4632
 
4633
  # Guernsey
4634
- #: ../../admin/view/wp-slimstat-reports.php:1430
4635
  msgid "c-gg"
4636
  msgstr "Guernsey"
4637
 
4638
  # Jersey
4639
- #: ../../admin/view/wp-slimstat-reports.php:1430
4640
  msgid "c-je"
4641
  msgstr "Jersey"
4642
 
4643
  # Isle of Man
4644
- #: ../../admin/view/wp-slimstat-reports.php:1430
4645
  msgid "c-im"
4646
  msgstr "Isle of Man"
4647
 
4648
  # Maldives
4649
- #: ../../admin/view/wp-slimstat-reports.php:1430
4650
  msgid "c-mv"
4651
  msgstr "Maldives"
4652
 
4653
- #: ../../admin/view/wp-slimstat-reports.php:1431
4654
  msgid "c-eu"
4655
- msgstr ""
4656
 
4657
- #: ../../admin/view/wp-slimstat-reports.php:1523
4658
  msgid ""
4659
  "This value includes not only posts, but also custom post types, regardless "
4660
  "of their status"
4661
  msgstr ""
4662
 
4663
- #: ../../admin/view/wp-slimstat-reports.php:1524
4664
  msgid "Content Items"
4665
  msgstr ""
4666
 
4667
- #: ../../admin/view/wp-slimstat-reports.php:1525
4668
  msgid "Total Comments"
4669
  msgstr ""
4670
 
4671
- #: ../../admin/view/wp-slimstat-reports.php:1526
4672
  msgid "Pingbacks"
4673
  msgstr ""
4674
 
4675
- #: ../../admin/view/wp-slimstat-reports.php:1527
4676
  msgid "Trackbacks"
4677
  msgstr ""
4678
 
4679
- #: ../../admin/view/wp-slimstat-reports.php:1528
4680
  msgid "Avg Comments Per Post"
4681
  msgstr ""
4682
 
4683
- #: ../../admin/view/wp-slimstat-reports.php:1529
4684
  msgid "Avg Posts Per Day"
4685
  msgstr ""
4686
 
4687
- #: ../../admin/view/wp-slimstat-reports.php:1530
4688
  msgid "Avg Server Latency"
4689
  msgstr ""
4690
 
4691
- #: ../../admin/view/wp-slimstat-reports.php:1531
4692
  msgid "Avg Page Load Time"
4693
  msgstr ""
4694
 
4695
- #: ../../admin/view/wp-slimstat-reports.php:1549
4696
  msgid "src"
4697
  msgstr ""
4698
 
4699
- #: ../../admin/view/wp-slimstat-reports.php:1552
4700
  msgid "serp"
4701
  msgstr ""
4702
 
4703
- #: ../../admin/view/wp-slimstat-reports.php:1559
4704
  msgid "Go to the referring page"
4705
  msgstr ""
4706
 
4707
- #: ../../admin/view/wp-slimstat-reports.php:1581
4708
  msgid "Remove filter for"
4709
  msgstr ""
4710
 
4711
- #: ../../admin/view/wp-slimstat-reports.php:1585
4712
  msgid "Save"
4713
  msgstr ""
4714
 
4715
- #: ../../admin/view/wp-slimstat-reports.php:1588
4716
  msgid "Reset All"
4717
  msgstr ""
4718
 
4719
- #: ../../admin/view/wp-slimstat-reports.php:1592
4720
  msgid "Current filters:"
4721
  msgstr ""
4722
 
@@ -4726,7 +4839,7 @@ msgid "SlimStat"
4726
  msgstr ""
4727
 
4728
  #: ../../admin/wp-slimstat-admin.php:641 ../../admin/wp-slimstat-admin.php:656
4729
- #: ../../wp-slimstat.php:1733
4730
  msgid "Custom Reports"
4731
  msgstr ""
4732
 
@@ -4929,6 +5042,10 @@ msgid ""
4929
  "all others"
4930
  msgstr ""
4931
 
 
 
 
 
4932
  #: ../../admin/wp-slimstat-admin.php:1030
4933
  msgid ""
4934
  "this field is set to <em>[pre]</em> if the resource has been accessed "
@@ -5000,88 +5117,88 @@ msgstr ""
5000
  msgid "Site Specific"
5001
  msgstr ""
5002
 
5003
- #: ../../wp-slimstat.php:207 ../../wp-slimstat.php:483
5004
  msgid "Pageview filtered by third-party code"
5005
  msgstr ""
5006
 
5007
- #: ../../wp-slimstat.php:224
5008
  msgid "Malformed URL"
5009
  msgstr ""
5010
 
5011
- #: ../../wp-slimstat.php:243
5012
  msgid "Referrer is blacklisted"
5013
  msgstr ""
5014
 
5015
- #: ../../wp-slimstat.php:321
5016
  msgid "Permalink is blacklisted"
5017
  msgstr ""
5018
 
5019
- #: ../../wp-slimstat.php:332
5020
  msgid "Empty or not supported IP address format (IPv6)"
5021
  msgstr ""
5022
 
5023
- #: ../../wp-slimstat.php:341
5024
  msgid "Logged in user not tracked"
5025
  msgstr ""
5026
 
5027
- #: ../../wp-slimstat.php:349
5028
  msgid "User with given capability not tracked"
5029
  msgstr ""
5030
 
5031
- #: ../../wp-slimstat.php:356
5032
  #, php-format
5033
  msgid "User %s is blacklisted"
5034
  msgstr ""
5035
 
5036
- #: ../../wp-slimstat.php:376
5037
  #, php-format
5038
  msgid "Spammer %s not tracked"
5039
  msgstr ""
5040
 
5041
- #: ../../wp-slimstat.php:405
5042
  #, php-format
5043
  msgid "IP address %s is blacklisted"
5044
  msgstr ""
5045
 
5046
- #: ../../wp-slimstat.php:434
5047
  #, php-format
5048
  msgid "Country %s is blacklisted"
5049
  msgstr ""
5050
 
5051
- #: ../../wp-slimstat.php:443
5052
  msgid "Prefetch requests are ignored"
5053
  msgstr ""
5054
 
5055
- #: ../../wp-slimstat.php:457
5056
  msgid "Bot not tracked"
5057
  msgstr ""
5058
 
5059
- #: ../../wp-slimstat.php:466
5060
  #, php-format
5061
  msgid "Browser %s is blacklisted"
5062
  msgstr ""
5063
 
5064
- #: ../../wp-slimstat.php:1135
5065
  msgid "Invalid payload string. Try clearing your WordPress cache."
5066
  msgstr ""
5067
 
5068
- #: ../../wp-slimstat.php:1145
5069
  msgid "Invalid data signature. Try clearing your WordPress cache."
5070
  msgstr ""
5071
 
5072
- #: ../../wp-slimstat.php:1266
5073
  msgid "There was an error downloading the MaxMind Geolite DB:"
5074
  msgstr ""
5075
 
5076
- #: ../../wp-slimstat.php:1274 ../../wp-slimstat.php:1283
5077
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5078
  msgstr ""
5079
 
5080
- #: ../../wp-slimstat.php:1278
5081
  msgid "Function gzopen not defined. Aborting."
5082
  msgstr ""
5083
 
5084
- #: ../../wp-slimstat.php:1288
5085
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5086
  msgstr ""
5087
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP SlimStat\n"
4
+ "POT-Creation-Date: 2015-07-12 19:13-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: Get Used To IT <support@getused.to.it>\n"
7
  "Language-Team: camu <info@duechiacchiere.it>\n"
27
  "again later."
28
  msgstr ""
29
 
30
+ #: ../../admin/config/addons.php:32 ../../admin/config/index.php:254
31
  #: ../../admin/wp-slimstat-admin.php:642 ../../admin/wp-slimstat-admin.php:657
32
+ #: ../../wp-slimstat.php:1756
33
  msgid "Add-ons"
34
  msgstr ""
35
 
58
  msgid "Description"
59
  msgstr ""
60
 
61
+ #: ../../admin/config/index.php:47
62
+ msgid "Ignore users (username not found)"
 
 
 
 
 
63
  msgstr ""
64
 
65
+ #: ../../admin/config/index.php:67
66
+ msgid ""
67
+ "Invalid capability. Please check <a href=\"http://codex.wordpress.org/"
68
+ "Roles_and_Capabilities\" target=\"_new\">this page</a> for more information"
69
  msgstr ""
70
 
71
+ #: ../../admin/config/index.php:82
72
+ msgid "Read access: username not found"
73
  msgstr ""
74
 
75
+ #: ../../admin/config/index.php:92 ../../admin/config/index.php:117
76
+ msgid ""
77
+ "Invalid minimum capability. Please check <a href=\"http://codex.wordpress."
78
+ "org/Roles_and_Capabilities\" target=\"_new\">this page</a> for more "
79
+ "information"
80
  msgstr ""
81
 
82
+ #: ../../admin/config/index.php:107
83
+ msgid "Config access: username not found"
84
  msgstr ""
85
 
86
+ #: ../../admin/config/index.php:126
87
+ msgid "General"
 
 
88
  msgstr ""
89
 
90
+ #: ../../admin/config/index.php:128 ../../admin/config/index.php:221
91
  msgid "Tracker"
92
  msgstr ""
93
 
94
+ #: ../../admin/config/index.php:129
95
  msgid "Tracking"
96
  msgstr ""
97
 
98
+ #: ../../admin/config/index.php:129
99
  msgid "Turn the tracker on or off, but keep the reports accessible."
100
  msgstr ""
101
 
102
+ #: ../../admin/config/index.php:129 ../../admin/config/index.php:131
103
  msgid "On"
104
  msgstr ""
105
 
106
+ #: ../../admin/config/index.php:129 ../../admin/config/index.php:131
107
  msgid "Off"
108
  msgstr ""
109
 
110
+ #: ../../admin/config/index.php:130
111
  msgid "Admin Pages"
112
  msgstr ""
113
 
114
+ #: ../../admin/config/index.php:130
115
  msgid "Enable this option to track your users' activity within the admin."
116
  msgstr ""
117
 
118
+ #: ../../admin/config/index.php:130
119
  msgid "Track"
120
  msgstr ""
121
 
122
+ #: ../../admin/config/index.php:130
123
  msgid "Do not track"
124
  msgstr ""
125
 
126
+ #: ../../admin/config/index.php:131
127
  msgid "Stealth Mode"
128
  msgstr ""
129
 
130
+ #: ../../admin/config/index.php:131
131
  msgid ""
132
  "Collect information about screen resolutions, outbound links, downloads, "
133
  "etc. If Tracking Mode is set to Javascript, this data will be tracked "
135
  "option will remove the tracking code from your pages' source code."
136
  msgstr ""
137
 
138
+ #: ../../admin/config/index.php:132
139
  msgid "Tracking Mode"
140
  msgstr ""
141
 
142
+ #: ../../admin/config/index.php:132
143
  msgid ""
144
  "Select <strong>Client</strong> if you are using a caching plugin (W3 Total "
145
  "Cache, WP SuperCache, HyperCache, etc). Slimstat will behave pretty much "
148
  "spammers, search engines and other crawlers</strong> will not be tracked."
149
  msgstr ""
150
 
151
+ #: ../../admin/config/index.php:132
152
  msgid "Client"
153
  msgstr ""
154
 
155
+ #: ../../admin/config/index.php:132
156
  msgid "Server"
157
  msgstr ""
158
 
159
+ #: ../../admin/config/index.php:134
160
  msgid "WordPress Integration"
161
  msgstr ""
162
 
163
+ #: ../../admin/config/index.php:135
164
  msgid "Menu Position"
165
  msgstr ""
166
 
167
+ #: ../../admin/config/index.php:135
168
  msgid ""
169
  "Choose between a standalone admin menu for Slimstat or a drop down in the "
170
  "admin bar (if visible)."
171
  msgstr ""
172
 
173
+ #: ../../admin/config/index.php:135
174
  msgid "Side Menu"
175
  msgstr ""
176
 
177
+ #: ../../admin/config/index.php:135
178
  msgid "Admin Bar"
179
  msgstr ""
180
 
181
+ #: ../../admin/config/index.php:136
182
  msgid "Posts and Pages"
183
  msgstr ""
184
 
185
+ #: ../../admin/config/index.php:136
186
  msgid ""
187
  "Add a new column to the Edit Posts/Pages screens, with the number of hits "
188
  "per post in the last 365 days."
189
  msgstr ""
190
 
191
+ #: ../../admin/config/index.php:137
192
  msgid "Dashboard Widgets"
193
  msgstr ""
194
 
195
+ #: ../../admin/config/index.php:137
196
  msgid ""
197
  "Choose if you want to have the most important reports on your WordPress "
198
  "Dashboard. Use the Screen Options dropdown to select which ones to display."
199
  msgstr ""
200
 
201
+ #: ../../admin/config/index.php:138
202
  msgid "Report Interval"
203
  msgstr ""
204
 
205
+ #: ../../admin/config/index.php:138
206
  msgid ""
207
  "Enter the time range, in days, that should be used to calculate the value "
208
  "here above."
209
  msgstr ""
210
 
211
+ #: ../../admin/config/index.php:139
212
  msgid "Report Type"
213
  msgstr ""
214
 
215
+ #: ../../admin/config/index.php:139
216
  msgid ""
217
  "Select what kind of information you would like to see displayed on the Posts "
218
  "admin screen. Pageviews include all the hits regardless of the user, Unique "
219
  "IPs consider only one hit per user in the given time range."
220
  msgstr ""
221
 
222
+ #: ../../admin/config/index.php:139
223
+ #: ../../admin/view/wp-slimstat-reports.php:97
224
+ #: ../../admin/view/wp-slimstat-reports.php:1083
225
+ #: ../../admin/view/wp-slimstat-reports.php:1227
226
+ #: ../../admin/view/wp-slimstat-reports.php:1352
227
  msgid "Pageviews"
228
  msgstr ""
229
 
230
+ #: ../../admin/config/index.php:139
231
+ #: ../../admin/view/wp-slimstat-reports.php:1083
232
+ #: ../../admin/view/wp-slimstat-reports.php:1088
233
+ #: ../../admin/view/wp-slimstat-reports.php:1093
234
+ #: ../../admin/view/wp-slimstat-reports.php:1234
235
+ #: ../../admin/view/wp-slimstat-reports.php:1271
236
  msgid "Unique IPs"
237
  msgstr ""
238
 
239
+ #: ../../admin/config/index.php:140
240
  msgid "Hide Add-ons"
241
  msgstr ""
242
 
243
+ #: ../../admin/config/index.php:140
244
  msgid ""
245
  "Enable this option to hide all your <strong>active</strong> premium add-ons "
246
  "from the list of plugins in WordPress. Please note that you will still "
247
  "receive updates for hidden add-ons."
248
  msgstr ""
249
 
250
+ #: ../../admin/config/index.php:142
251
  msgid "Database"
252
  msgstr ""
253
 
254
+ #: ../../admin/config/index.php:143
255
  msgid "Retain data for"
256
  msgstr ""
257
 
258
+ #: ../../admin/config/index.php:143
259
  msgid ""
260
  "Clean-up log entries older than the number of days specified here above. "
261
  "Enter <strong>0</strong> (number zero) if you want to preserve your data "
262
  "regardless of its age."
263
  msgstr ""
264
 
265
+ #: ../../admin/config/index.php:143
266
  msgid "Next clean-up on"
267
  msgstr ""
268
 
269
+ #: ../../admin/config/index.php:143
270
  #, php-format
271
  msgid ""
272
  "Entries logged on or before %s will be archived or deleted according to the "
273
  "option here below."
274
  msgstr ""
275
 
276
+ #: ../../admin/config/index.php:143 ../../admin/view/index.php:102
277
+ #: ../../admin/view/wp-slimstat-db.php:77
278
+ #: ../../admin/view/wp-slimstat-reports.php:1214
279
  msgid "days"
280
  msgstr ""
281
 
282
+ #: ../../admin/config/index.php:144
283
  msgid "Delete records"
284
  msgstr ""
285
 
286
+ #: ../../admin/config/index.php:144
287
  msgid ""
288
  "If DB space is not an issue, you can decide to archive older records in "
289
  "another table, instead of deleting them. This way performance is preserved, "
293
  "is uninstalled. Make sure to backup your data before you proceed."
294
  msgstr ""
295
 
296
+ #: ../../admin/config/index.php:149 ../../admin/config/index.php:207
297
+ msgid "Reports"
298
+ msgstr ""
299
+
300
+ #: ../../admin/config/index.php:151
301
  msgid "Formats and Conversions"
302
  msgstr ""
303
 
304
+ #: ../../admin/config/index.php:152
305
  msgid "Number Format"
306
  msgstr ""
307
 
308
+ #: ../../admin/config/index.php:152
309
  msgid "Choose the number format you want to use for your reports."
310
  msgstr ""
311
 
312
+ #: ../../admin/config/index.php:153
313
  msgid "Date Format"
314
  msgstr ""
315
 
316
+ #: ../../admin/config/index.php:153
317
  msgid ""
318
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
319
  "Format</a> to use when displaying a pageview's date."
320
  msgstr ""
321
 
322
+ #: ../../admin/config/index.php:154
323
  msgid "Time Format"
324
  msgstr ""
325
 
326
+ #: ../../admin/config/index.php:154
327
  msgid ""
328
  "<a href='http://php.net/manual/en/function.date.php' target='_blank'>PHP "
329
  "Format</a> to use when displaying a pageview's time."
330
  msgstr ""
331
 
332
+ #: ../../admin/config/index.php:155
333
  msgid "Use Display Name"
334
  msgstr ""
335
 
336
+ #: ../../admin/config/index.php:155
337
  msgid ""
338
  "By default, users are listed by their usernames. Use this option to "
339
  "visualize their display names instead."
340
  msgstr ""
341
 
342
+ #: ../../admin/config/index.php:156
343
  msgid "Use Titles"
344
  msgstr ""
345
 
346
+ #: ../../admin/config/index.php:156
347
  msgid ""
348
  "Slimstat converts your permalinks into post, page and category titles. "
349
  "Disable this feature if you need to see the URL in your reports."
350
  msgstr ""
351
 
352
+ #: ../../admin/config/index.php:157
353
  msgid "Convert IP Addresses"
354
  msgstr ""
355
 
356
+ #: ../../admin/config/index.php:157
357
  msgid "Display provider names instead of IP addresses."
358
  msgstr ""
359
 
360
+ #: ../../admin/config/index.php:159
361
  msgid "Functionality"
362
  msgstr ""
363
 
364
+ #: ../../admin/config/index.php:160
365
  msgid "SlimScroll"
366
  msgstr ""
367
 
368
+ #: ../../admin/config/index.php:160
369
  msgid ""
370
  "Enable SlimScroll, a slick jQuery library that replaces the built-in browser "
371
  "scrollbar."
372
  msgstr ""
373
 
374
+ #: ../../admin/config/index.php:161
375
  msgid "Expand Details"
376
  msgstr ""
377
 
378
+ #: ../../admin/config/index.php:161
379
  msgid "Expand each row's details by default, insted of on mousehover."
380
  msgstr ""
381
 
382
+ #: ../../admin/config/index.php:162 ../../admin/config/index.php:166
383
  msgid "Rows to Display"
384
  msgstr ""
385
 
386
+ #: ../../admin/config/index.php:162
387
  msgid "Specify the number of items in each report."
388
  msgstr ""
389
 
390
+ #: ../../admin/config/index.php:164
391
  msgid "Activity Log"
392
  msgstr ""
393
 
394
+ #: ../../admin/config/index.php:165
395
  msgid "Live Stream"
396
  msgstr ""
397
 
398
+ #: ../../admin/config/index.php:165
399
  msgid ""
400
  "Enable the Live view, which refreshes the Activity Log every X seconds. "
401
  "Enter <strong>0</strong> (number zero) to deactivate this feature."
402
  msgstr ""
403
 
404
+ #: ../../admin/config/index.php:165 ../../admin/config/index.php:223
405
  msgid "seconds"
406
  msgstr ""
407
 
408
+ #: ../../admin/config/index.php:166
409
  msgid "Specify the number of items in the Activity Log."
410
  msgstr ""
411
 
412
+ #: ../../admin/config/index.php:168 ../../admin/config/index.php:198
413
+ #: ../../admin/config/index.php:240
414
  msgid "Miscellaneous"
415
  msgstr ""
416
 
417
+ #: ../../admin/config/index.php:169
418
  msgid "Show User Agent"
419
  msgstr ""
420
 
421
+ #: ../../admin/config/index.php:169
422
  msgid ""
423
  "Choose if you want to see the browser name or a complete user agent string "
424
  "when hovering on browser icons."
425
  msgstr ""
426
 
427
+ #: ../../admin/config/index.php:170
428
  msgid "Enable SOV"
429
  msgstr ""
430
 
431
+ #: ../../admin/config/index.php:170
432
  msgid ""
433
  "In linguistic typology, a subject-object-verb (SOV) language is one in which "
434
  "the subject, object, and verb of a sentence appear in that order, like in "
435
  "Japanese."
436
  msgstr ""
437
 
438
+ #: ../../admin/config/index.php:171
439
+ msgid "Social Analytics"
440
+ msgstr ""
441
+
442
+ #: ../../admin/config/index.php:171
443
+ msgid ""
444
+ "Thanks to a <a href='http://getsocial.io/enterprise' "
445
+ "target='_blank'>partnership with GetSocial.io</a>, you can access a powerful "
446
+ "set of analytics for social media where you can identify top performing "
447
+ "posts. Track social sharing to understand which of your posts are generating "
448
+ "more engagement. When this option is enabled, Slimstat sends a list of all "
449
+ "your posts's URLs to their service for analysis once daily."
450
+ msgstr ""
451
+
452
+ #: ../../admin/config/index.php:176
453
+ msgid "Filters"
454
+ msgstr ""
455
+
456
+ #: ../../admin/config/index.php:178
457
  msgid "Visitors and Known Users"
458
  msgstr ""
459
 
460
+ #: ../../admin/config/index.php:179
461
  msgid "Track Registered Users"
462
  msgstr ""
463
 
464
+ #: ../../admin/config/index.php:179
465
  msgid "Enable this option to track logged in users."
466
  msgstr ""
467
 
468
+ #: ../../admin/config/index.php:180
469
  msgid "Blacklist by Username"
470
  msgstr ""
471
 
472
+ #: ../../admin/config/index.php:180
473
  msgid ""
474
  "List all the usernames you don't want to track, separated by commas. Please "
475
  "be aware that spaces are <em>not</em> ignored and that usernames are case "
476
  "sensitive."
477
  msgstr ""
478
 
479
+ #: ../../admin/config/index.php:181
480
  msgid "Blacklist by IP Address"
481
  msgstr ""
482
 
483
+ #: ../../admin/config/index.php:181
484
  msgid ""
485
  "List all the IP addresses you don't want to track, separated by commas. Each "
486
  "network <strong>must</strong> be defined using the <a href='http://en."
489
  "public IP and the originating IP, if available."
490
  msgstr ""
491
 
492
+ #: ../../admin/config/index.php:182
493
  msgid "Blacklist by Capability"
494
  msgstr ""
495
 
496
+ #: ../../admin/config/index.php:182
497
  msgid ""
498
  "Users having at least one of the <a href='http://codex.wordpress.org/"
499
  "Roles_and_Capabilities' target='_new'>capabilities</a> listed here below "
500
  "will not be tracked. Capabilities are case-insensitive."
501
  msgstr ""
502
 
503
+ #: ../../admin/config/index.php:184
504
  msgid "Profiling"
505
  msgstr ""
506
 
507
+ #: ../../admin/config/index.php:185
508
  msgid "Ignore Spammers"
509
  msgstr ""
510
 
511
+ #: ../../admin/config/index.php:185
512
  msgid ""
513
  "Enable this option if you don't want to track visits from users identified "
514
  "as spammers by third-party tools like Akismet. Pageviews generated by users "
516
  "database."
517
  msgstr ""
518
 
519
+ #: ../../admin/config/index.php:186
520
  msgid "Ignore Bots"
521
  msgstr ""
522
 
523
+ #: ../../admin/config/index.php:186
524
  msgid ""
525
  "Turn on this feature if you want to have the accuracy level of server-side "
526
  "tracking, but not the inconvenience of getting your database clogged with "
528
  "note that in Client mode, bots are ignored regardless of this setting."
529
  msgstr ""
530
 
531
+ #: ../../admin/config/index.php:187
532
  msgid "Permalinks"
533
  msgstr ""
534
 
535
+ #: ../../admin/config/index.php:187
536
  msgid ""
537
  "List all the URLs on your website that you don't want to track, separated by "
538
  "commas. Don't include the domain name: <em>/about, ?p=1</em>, etc. "
543
  "case-insensitive."
544
  msgstr ""
545
 
546
+ #: ../../admin/config/index.php:188
547
  msgid "Countries"
548
  msgstr ""
549
 
550
+ #: ../../admin/config/index.php:188
551
  msgid ""
552
  "Country codes (i.e.: <code>en-us, it, es</code>) that you don't want to "
553
  "track, separated by commas."
554
  msgstr ""
555
 
556
+ #: ../../admin/config/index.php:189
557
  msgid "User Agents"
558
  msgstr ""
559
 
560
+ #: ../../admin/config/index.php:189
561
  msgid ""
562
  "Browsers (user agents) you don't want to track, separated by commas. You can "
563
  "specify the browser's version adding a slash after the name (i.e. "
567
  "code> will match IE/7.0 and IE/8.0. Strings are case-insensitive."
568
  msgstr ""
569
 
570
+ #: ../../admin/config/index.php:190
571
  msgid "Referring Sites"
572
  msgstr ""
573
 
574
+ #: ../../admin/config/index.php:190
575
  msgid ""
576
  "Referring URLs that you don't want to track, separated by commas: "
577
  "<code>http://mysite.com*</code>, <code>*/ignore-me-please</code>, etc. "
581
  "https://)."
582
  msgstr ""
583
 
584
+ #: ../../admin/config/index.php:192
585
  msgid "Internal and Outbound Links"
586
  msgstr ""
587
 
588
+ #: ../../admin/config/index.php:193
589
  msgid "Track Outbound Clicks"
590
  msgstr ""
591
 
592
+ #: ../../admin/config/index.php:193
593
  msgid ""
594
  "Track when your visitors click on link to external websites. This option "
595
  "required Spy Mode to be enabled."
596
  msgstr ""
597
 
598
+ #: ../../admin/config/index.php:194
599
  msgid "Track Coordinates"
600
  msgstr ""
601
 
602
+ #: ../../admin/config/index.php:194
603
  msgid ""
604
  "Collect mouse coordinates and other information for clicks on internal "
605
  "links. Strongly recommended if you're using the heatmap add-on. By default, "
606
  "this information is only collected for external links."
607
  msgstr ""
608
 
609
+ #: ../../admin/config/index.php:195
610
  msgid "No Callback"
611
  msgstr ""
612
 
613
+ #: ../../admin/config/index.php:195
614
  msgid ""
615
  "Track the event but do not invoke the callback function on links marked with "
616
  "one of these class names, <em>rel</em> attribute or whose <em>href</em> "
618
  "prevent conflicts with lightbox and similar libraries."
619
  msgstr ""
620
 
621
+ #: ../../admin/config/index.php:196
622
  msgid "Do Not Track"
623
  msgstr ""
624
 
625
+ #: ../../admin/config/index.php:196
626
  msgid ""
627
  "Do not track links marked with one of these class names, <em>rel</em> "
628
  "attributes or whose <em>href</em> attribute contains one of these strings "
629
  "(separated by comma)."
630
  msgstr ""
631
 
632
+ #: ../../admin/config/index.php:199
633
  msgid "Enable Privacy Mode"
634
  msgstr ""
635
 
636
+ #: ../../admin/config/index.php:199
637
  msgid "Mask your visitors' IP addresses to comply with European Privacy Laws."
638
  msgstr ""
639
 
640
+ #: ../../admin/config/index.php:200
641
  msgid "Ignore Prefetch Requests"
642
  msgstr ""
643
 
644
+ #: ../../admin/config/index.php:200
645
  msgid ""
646
  "Prevent Slimstat from tracking pageviews generated by Firefox's <a "
647
  "href='https://developer.mozilla.org/en/Link_prefetching_FAQ' "
648
  "target='_blank'>Link Prefetching functionality</a>."
649
  msgstr ""
650
 
651
+ #: ../../admin/config/index.php:205
652
+ msgid "Permissions"
 
 
 
 
 
 
653
  msgstr ""
654
 
655
+ #: ../../admin/config/index.php:208
656
  msgid "Restrict Authors"
657
  msgstr ""
658
 
659
+ #: ../../admin/config/index.php:208
660
  msgid ""
661
  "Enable this option if you want your authors to only see stats related to "
662
  "their own content."
663
  msgstr ""
664
 
665
+ #: ../../admin/config/index.php:209 ../../admin/config/index.php:213
666
  msgid "Capability"
667
  msgstr ""
668
 
669
+ #: ../../admin/config/index.php:209
670
  msgid ""
671
  "Specify the minimum <a href='http://codex.wordpress.org/"
672
  "Roles_and_Capabilities' target='_new'>capability</a> needed to access the "
676
  "In this case, the list has precedence over the capability."
677
  msgstr ""
678
 
679
+ #: ../../admin/config/index.php:210 ../../admin/config/index.php:214
680
  msgid "Whitelist"
681
  msgstr ""
682
 
683
+ #: ../../admin/config/index.php:210
684
  msgid ""
685
  "List all the users who should have access to the reports, separated by "
686
  "commas. Administrators are implicitly allowed, so you don't need to list "
687
  "them in here. Usernames are case sensitive."
688
  msgstr ""
689
 
690
+ #: ../../admin/config/index.php:212 ../../admin/config/index.php:267
691
+ #: ../../admin/wp-slimstat-admin.php:683 ../../admin/wp-slimstat-admin.php:685
692
+ #: ../../wp-slimstat.php:1759
693
+ msgid "Settings"
694
+ msgstr ""
695
+
696
+ #: ../../admin/config/index.php:213
697
  msgid ""
698
  "Specify the minimum <a href='http://codex.wordpress.org/"
699
  "Roles_and_Capabilities' target='_new'>capability</a> required to configure "
701
  "can be used to override this option for specific users."
702
  msgstr ""
703
 
704
+ #: ../../admin/config/index.php:214
705
  msgid ""
706
  "List all the users who can edit these options, separated by commas. Please "
707
  "be advised that admins <strong>are not</strong> implicitly allowed, so do "
708
  "not forget to include yourself! Usernames are case sensitive."
709
  msgstr ""
710
 
711
+ #: ../../admin/config/index.php:219
712
+ msgid "Advanced"
 
 
 
 
 
 
 
 
 
 
 
713
  msgstr ""
714
 
715
+ #: ../../admin/config/index.php:222
716
  msgid "Detect Smoothing"
717
  msgstr ""
718
 
719
+ #: ../../admin/config/index.php:222
720
  msgid ""
721
  "Detect if your visitors' browsers support anti-aliasing (font smoothing). "
722
+ "This option requires Stealth Mode to be turned off."
723
  msgstr ""
724
 
725
+ #: ../../admin/config/index.php:223
726
  msgid "Session Duration"
727
  msgstr ""
728
 
729
+ #: ../../admin/config/index.php:223
730
  msgid ""
731
  "How many seconds should a human session last? Google Analytics sets it to "
732
  "1800 seconds."
733
  msgstr ""
734
 
735
+ #: ../../admin/config/index.php:224
736
  msgid "Extend Session"
737
  msgstr ""
738
 
739
+ #: ../../admin/config/index.php:224
740
  msgid "Extend the duration of a session each time the user visits a new page."
741
  msgstr ""
742
 
743
+ #: ../../admin/config/index.php:225
744
  msgid "Enable CDN"
745
  msgstr ""
746
 
747
+ #: ../../admin/config/index.php:225
748
  msgid ""
749
  "Use <a href='http://www.jsdelivr.com/' target='_blank'>JSDelivr</a>'s CDN, "
750
  "by serving our tracking code from their fast and reliable network (free "
751
  "service)."
752
  msgstr ""
753
 
754
+ #: ../../admin/config/index.php:226
755
  msgid "Extensions to Track"
756
  msgstr ""
757
 
758
+ #: ../../admin/config/index.php:226
759
  msgid ""
760
  "List all the file extensions that you want to be treated as Downloads. "
761
  "Please note that links pointing to external resources (i.e. PDFs on a "
764
  "below."
765
  msgstr ""
766
 
767
+ #: ../../admin/config/index.php:228
768
  msgid "External Pages"
769
  msgstr ""
770
 
771
+ #: ../../admin/config/index.php:229
772
  msgid ""
773
  "Add the following code to all the non-WP pages you want to track, right "
774
  "before the closing BODY tag"
775
  msgstr ""
776
 
777
+ #: ../../admin/config/index.php:239
778
  msgid "Allow External Domains"
779
  msgstr ""
780
 
781
+ #: ../../admin/config/index.php:239
782
  msgid ""
783
  "If you are getting an error saying that no 'Access-Control-Allow-Origin' "
784
  "header is present on the requested resource, when using the external "
789
  "security implications of allowing CORS requests."
790
  msgstr ""
791
 
792
+ #: ../../admin/config/index.php:241
793
  msgid "Debug Mode"
794
  msgstr ""
795
 
796
+ #: ../../admin/config/index.php:241
797
  msgid "Display the SQL queries used to retrieve the data."
798
  msgstr ""
799
 
800
+ #: ../../admin/config/index.php:242
801
  msgid "IP Lookup"
802
  msgstr ""
803
 
804
+ #: ../../admin/config/index.php:242
805
  msgid "Customize the Geolocation service to be used in the reports."
806
  msgstr ""
807
 
808
+ #: ../../admin/config/index.php:243
809
  msgid "Custom CSS"
810
  msgstr ""
811
 
812
+ #: ../../admin/config/index.php:243
813
  msgid ""
814
  "Paste here your custom stylesheet to personalize the way your reports look. "
815
  "<a href='https://slimstat.freshdesk.com/support/solutions/"
818
  "a> for more information on how to use this setting."
819
  msgstr ""
820
 
821
+ #: ../../admin/config/index.php:244
822
  msgid "Enable UAN"
823
  msgstr ""
824
 
825
+ #: ../../admin/config/index.php:244
826
  msgid ""
827
  "Send anonymous data about user agents to our server for analysis. This "
828
  "allows us to contribute to the <a href='http://browscap.org/' "
831
  "ads network. No worries, your site will not be affected in any way."
832
  msgstr ""
833
 
834
+ #: ../../admin/config/index.php:249
835
+ msgid "Maintenance"
836
+ msgstr ""
837
+
838
  #: ../../admin/config/maintenance.php:16
839
  msgid ""
840
  "Congrats! Slimstat is now optimized for <a href=\"http://www.youtube.com/"
845
  msgid "Indexing has been disabled. Enjoy the extra database space!"
846
  msgstr ""
847
 
848
+ #: ../../admin/config/maintenance.php:35
849
  msgid "records deleted from your database."
850
  msgstr ""
851
 
852
+ #: ../../admin/config/maintenance.php:40
853
  msgid "The geolocation database has been uninstalled from your server."
854
  msgstr ""
855
 
856
+ #: ../../admin/config/maintenance.php:50
857
  msgid "The geolocation database has been installed on your server."
858
  msgstr ""
859
 
860
+ #: ../../admin/config/maintenance.php:158
861
  msgid ""
862
  "Your data was successfully imported. You may now drop the old tables: "
863
  "wp_slim_stats_3, wp_slim_browsers, wp_slim_content_info, wp_slim_screenres, "
866
  "delete the old tables."
867
  msgstr ""
868
 
869
+ #: ../../admin/config/maintenance.php:165
870
  msgid "Your reports were successfully restored to their default arrangement."
871
  msgstr ""
872
 
873
+ #: ../../admin/config/maintenance.php:175
874
  msgid "Your Slimstat tables have been successfully converted to InnoDB."
875
  msgstr ""
876
 
877
+ #: ../../admin/config/maintenance.php:181
878
  msgid "All the archived records were successfully deleted."
879
  msgstr ""
880
 
881
+ #: ../../admin/config/maintenance.php:189
882
  msgid "All the records were successfully deleted."
883
  msgstr ""
884
 
885
+ #: ../../admin/config/maintenance.php:211
886
+ msgid "Debugging"
887
  msgstr ""
888
 
889
+ #: ../../admin/config/maintenance.php:214
890
+ msgid "Tracker Error Code"
 
 
891
  msgstr ""
892
 
893
  #: ../../admin/config/maintenance.php:216
894
+ msgid "recorded on"
 
 
 
 
895
  msgstr ""
896
 
897
+ #: ../../admin/config/maintenance.php:216
898
+ msgid "No Errors so far"
899
  msgstr ""
900
 
901
+ #: ../../admin/config/maintenance.php:217
902
  msgid ""
903
+ "The information here above is useful to troubleshoot issues with the "
904
+ "tracker. Please include this code when sending a support request."
 
 
 
 
905
  msgstr ""
906
 
907
+ #: ../../admin/config/maintenance.php:221
908
+ msgid "Layout"
909
  msgstr ""
910
 
911
+ #: ../../admin/config/maintenance.php:224
912
+ msgid ""
913
+ "Are you sure you want to restore the default arrangement of your reports?"
914
  msgstr ""
915
 
916
+ #: ../../admin/config/maintenance.php:224
917
+ msgid "No Panic Button"
918
  msgstr ""
919
 
920
+ #: ../../admin/config/maintenance.php:226
921
+ msgid ""
922
+ "Reset the default arrangement of your reports. Helpful when, for some "
923
+ "reason, reports disappear from your panels or something doesn't look right "
924
+ "in your views."
925
  msgstr ""
926
 
927
+ #: ../../admin/config/maintenance.php:230
928
  msgid "Data Maintenance"
929
  msgstr ""
930
 
931
+ #: ../../admin/config/maintenance.php:233
932
  msgid "Delete pageviews where"
933
  msgstr ""
934
 
935
+ #: ../../admin/config/maintenance.php:247 ../../admin/view/index.php:16
936
  msgid "equals"
937
  msgstr ""
938
 
939
+ #: ../../admin/config/maintenance.php:248 ../../admin/view/index.php:17
940
  msgid "is not equal to"
941
  msgstr ""
942
 
943
+ #: ../../admin/config/maintenance.php:249 ../../admin/view/index.php:18
944
  msgid "contains"
945
  msgstr ""
946
 
947
+ #: ../../admin/config/maintenance.php:250 ../../admin/view/index.php:19
948
  msgid "is included in"
949
  msgstr ""
950
 
951
+ #: ../../admin/config/maintenance.php:251 ../../admin/view/index.php:20
952
  msgid "does not contain"
953
  msgstr ""
954
 
955
+ #: ../../admin/config/maintenance.php:252 ../../admin/view/index.php:21
956
  msgid "starts with"
957
  msgstr ""
958
 
959
+ #: ../../admin/config/maintenance.php:253 ../../admin/view/index.php:22
960
  msgid "ends with"
961
  msgstr ""
962
 
963
+ #: ../../admin/config/maintenance.php:254 ../../admin/view/index.php:23
964
  msgid "sounds like"
965
  msgstr ""
966
 
967
+ #: ../../admin/config/maintenance.php:255 ../../admin/view/index.php:24
968
  msgid "is greater than"
969
  msgstr ""
970
 
971
+ #: ../../admin/config/maintenance.php:256 ../../admin/view/index.php:25
972
  msgid "is less than"
973
  msgstr ""
974
 
975
+ #: ../../admin/config/maintenance.php:257 ../../admin/view/index.php:27
976
  msgid "matches"
977
  msgstr ""
978
 
979
+ #: ../../admin/config/maintenance.php:258 ../../admin/view/index.php:28
980
  msgid "does not match"
981
  msgstr ""
982
 
983
+ #: ../../admin/config/maintenance.php:259 ../../admin/view/index.php:29
984
  msgid "is empty"
985
  msgstr ""
986
 
987
+ #: ../../admin/config/maintenance.php:260 ../../admin/view/index.php:30
988
  msgid "is not empty"
989
  msgstr ""
990
 
991
+ #: ../../admin/config/maintenance.php:263 ../../admin/view/index.php:42
992
  #: ../../admin/view/index.php:105
993
  msgid "Apply"
994
  msgstr ""
995
 
996
+ #: ../../admin/config/maintenance.php:264
997
  msgid ""
998
  "Are you sure you want to PERMANENTLY delete these records from your database?"
999
  msgstr ""
1000
 
1001
+ #: ../../admin/config/maintenance.php:271
1002
  msgid ""
1003
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1004
  "database?"
1005
  msgstr ""
1006
 
1007
+ #: ../../admin/config/maintenance.php:271
1008
  msgid "Delete All Records"
1009
  msgstr ""
1010
 
1011
+ #: ../../admin/config/maintenance.php:274
1012
  msgid ""
1013
  "Erase all the information collected so far by Slimstat, including the "
1014
  "archive. This operation <strong>does not</strong> reset your settings."
1015
  msgstr ""
1016
 
1017
+ #: ../../admin/config/maintenance.php:280
1018
  msgid ""
1019
  "Are you sure you want to PERMANENTLY DELETE ALL the records from your "
1020
  "archive?"
1021
  msgstr ""
1022
 
1023
+ #: ../../admin/config/maintenance.php:280
1024
  msgid "Delete Archive"
1025
  msgstr ""
1026
 
1027
+ #: ../../admin/config/maintenance.php:283
1028
  msgid "Erase all the archived records. This operation cannot be undone."
1029
  msgstr ""
1030
 
1031
+ #: ../../admin/config/maintenance.php:289
1032
  msgid "Improve Performance"
1033
  msgstr ""
1034
 
1035
+ #: ../../admin/config/maintenance.php:293
1036
  msgid ""
1037
  "Please note that you will need about 30% more DB space to store the extra "
1038
  "information required."
1039
  msgstr ""
1040
 
1041
+ #: ../../admin/config/maintenance.php:297
1042
  msgid "Save DB Space"
1043
  msgstr ""
1044
 
1045
+ #: ../../admin/config/maintenance.php:300
1046
  msgid ""
1047
  "Please note that by removing table indexes, Slimstat's performance will be "
1048
  "affected."
1049
  msgstr ""
1050
 
1051
+ #: ../../admin/config/maintenance.php:307
1052
  msgid ""
1053
  "Hold on tight, we are about to import all your old data. Are you sure you "
1054
  "want to proceed?"
1055
  msgstr ""
1056
 
1057
+ #: ../../admin/config/maintenance.php:307
1058
  msgid "Import old data"
1059
  msgstr ""
1060
 
1061
+ #: ../../admin/config/maintenance.php:310
1062
  msgid ""
1063
  "Import all the records from the old table structure. No data will be deleted "
1064
  "from your database."
1065
  msgstr ""
1066
 
1067
+ #: ../../admin/config/maintenance.php:314
1068
+ msgid "MaxMind IP to Country"
1069
  msgstr ""
1070
 
1071
+ #: ../../admin/config/maintenance.php:320
1072
  msgid ""
1073
+ "Do you want to download and install the geolocation database from MaxMind's "
1074
+ "server?"
 
1075
  msgstr ""
1076
 
1077
+ #: ../../admin/config/maintenance.php:320
1078
+ msgid "Install GeoLite DB"
1079
  msgstr ""
1080
 
1081
+ #: ../../admin/config/maintenance.php:323
1082
+ msgid "Do you want to uninstall the geolocation database?"
1083
  msgstr ""
1084
 
1085
+ #: ../../admin/config/maintenance.php:323
1086
+ msgid "Uninstall GeoLite DB"
1087
  msgstr ""
1088
 
1089
+ #: ../../admin/config/maintenance.php:327
1090
+ msgid ""
1091
+ "The <a href='http://dev.maxmind.com/geoip/legacy/geolite/' "
1092
+ "target='_blank'>MaxMind GeoLite library</a> used to geolocate visitors is "
1093
+ "released under the Creative Commons BY-SA 3.0 license, and cannot be "
1094
+ "directly bundled with the plugin because of license incompatibility issues. "
1095
+ "We are mandated to have the user take an affirmative action in order to "
1096
+ "enable this functionality."
1097
  msgstr ""
1098
 
1099
+ #: ../../admin/config/maintenance.php:332
1100
+ msgid "Import and Export"
1101
  msgstr ""
1102
 
1103
+ #: ../../admin/config/maintenance.php:336
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:341
1111
+ msgid "Import"
 
 
1112
  msgstr ""
1113
 
1114
+ #: ../../admin/config/maintenance.php:342
1115
+ msgid "Are you sure you want to OVERWRITE your current settings?"
1116
  msgstr ""
1117
 
1118
+ #: ../../admin/config/maintenance.php:347
1119
+ msgid "Database Information"
 
1120
  msgstr ""
1121
 
1122
+ #: ../../admin/config/maintenance.php:350
1123
+ msgid "Engine"
1124
  msgstr ""
1125
 
1126
+ #: ../../admin/config/maintenance.php:354
1127
+ msgid "switch to InnoDB"
1128
+ msgstr ""
1129
+
1130
+ #: ../../admin/config/maintenance.php:365
1131
+ #: ../../admin/view/wp-slimstat-reports.php:1209
1132
+ msgid "records"
1133
  msgstr ""
1134
 
1135
  #: ../../admin/lang/dynamic_strings.php:3
1136
  msgid "xx"
1137
  msgstr "Unknown"
1138
 
 
 
 
 
 
 
 
 
1139
  #: ../../admin/lang/dynamic_strings.php:6
1140
+ msgid "aix"
1141
+ msgstr "IBM AIX"
1142
 
1143
  #: ../../admin/lang/dynamic_strings.php:7
1144
+ msgid "amiga"
1145
+ msgstr "Amiga"
1146
 
1147
  #: ../../admin/lang/dynamic_strings.php:8
1148
+ msgid "android"
1149
+ msgstr "Android"
1150
 
1151
  #: ../../admin/lang/dynamic_strings.php:9
1152
+ msgid "beos"
1153
+ msgstr "BeOS"
1154
 
1155
  #: ../../admin/lang/dynamic_strings.php:10
1156
+ msgid "blackberry os"
1157
+ msgstr "BlackBerry OS"
1158
 
1159
  #: ../../admin/lang/dynamic_strings.php:11
1160
+ msgid "chromeos"
1161
+ msgstr "Chrome OS"
1162
 
1163
  #: ../../admin/lang/dynamic_strings.php:12
1164
+ msgid "cygwin"
1165
+ msgstr "Cygwin"
1166
 
1167
  #: ../../admin/lang/dynamic_strings.php:13
1168
+ msgid "debian"
1169
+ msgstr "Debian"
1170
 
1171
  #: ../../admin/lang/dynamic_strings.php:14
1172
+ msgid "digital unix"
1173
+ msgstr "Digital Unix"
1174
 
1175
  #: ../../admin/lang/dynamic_strings.php:15
1176
+ msgid "firefoxos"
1177
+ msgstr "Firefox OS"
1178
 
1179
  #: ../../admin/lang/dynamic_strings.php:16
1180
+ msgid "freebsd"
1181
+ msgstr "FreeBSD"
1182
 
1183
  #: ../../admin/lang/dynamic_strings.php:17
1184
+ msgid "hp-ux"
1185
+ msgstr "HP-UX"
1186
 
1187
  #: ../../admin/lang/dynamic_strings.php:18
1188
+ msgid "ios"
1189
+ msgstr "iPhone OS X"
1190
 
1191
  #: ../../admin/lang/dynamic_strings.php:19
1192
+ msgid "iphone osx"
1193
+ msgstr "iPhone OS X"
1194
 
1195
  #: ../../admin/lang/dynamic_strings.php:20
1196
+ msgid "irix"
1197
+ msgstr "IRIX"
1198
 
1199
  #: ../../admin/lang/dynamic_strings.php:21
1200
+ msgid "java"
1201
+ msgstr "Java"
1202
 
1203
  #: ../../admin/lang/dynamic_strings.php:22
1204
+ msgid "linux"
1205
+ msgstr "Linux"
1206
 
1207
  #: ../../admin/lang/dynamic_strings.php:23
1208
+ msgid "mac"
1209
+ msgstr "Mac"
1210
 
1211
  #: ../../admin/lang/dynamic_strings.php:24
1212
+ msgid "mac68k"
1213
+ msgstr "Mac 68k"
1214
 
1215
  #: ../../admin/lang/dynamic_strings.php:25
1216
+ msgid "macosx"
1217
+ msgstr "Mac OS X"
1218
 
1219
  #: ../../admin/lang/dynamic_strings.php:26
1220
+ msgid "macppc"
1221
+ msgstr "Mac PowerPC"
1222
 
1223
  #: ../../admin/lang/dynamic_strings.php:27
1224
+ msgid "netbsd"
1225
+ msgstr "NetBSD"
1226
 
1227
  #: ../../admin/lang/dynamic_strings.php:28
1228
+ msgid "openbsd"
1229
+ msgstr "OpenBSD"
1230
 
1231
  #: ../../admin/lang/dynamic_strings.php:29
1232
+ msgid "openvms"
1233
+ msgstr "OpenVMS"
1234
 
1235
  #: ../../admin/lang/dynamic_strings.php:30
1236
+ msgid "os/2"
1237
+ msgstr "IBM OS/2"
1238
 
1239
  #: ../../admin/lang/dynamic_strings.php:31
1240
+ msgid "palm"
1241
+ msgstr "Palm"
1242
 
1243
  #: ../../admin/lang/dynamic_strings.php:32
1244
+ msgid "powertv"
1245
+ msgstr "PowerTV"
1246
 
1247
  #: ../../admin/lang/dynamic_strings.php:33
1248
+ msgid "rim os"
1249
+ msgstr "BlackBerry OS"
1250
 
1251
  #: ../../admin/lang/dynamic_strings.php:34
1252
+ msgid "risc os"
1253
+ msgstr "Risc OS"
1254
 
1255
  #: ../../admin/lang/dynamic_strings.php:35
1256
+ msgid "solaris"
1257
+ msgstr "Solaris"
1258
 
1259
  #: ../../admin/lang/dynamic_strings.php:36
1260
+ msgid "sunos"
1261
+ msgstr "Sun OS"
1262
 
1263
  #: ../../admin/lang/dynamic_strings.php:37
1264
+ msgid "symbianos"
1265
+ msgstr "Symbian OS"
1266
 
1267
  #: ../../admin/lang/dynamic_strings.php:38
1268
+ msgid "ubuntu"
1269
+ msgstr "Ubuntu"
1270
 
1271
  #: ../../admin/lang/dynamic_strings.php:39
1272
+ msgid "unix"
1273
+ msgstr "Unix"
1274
 
1275
  #: ../../admin/lang/dynamic_strings.php:40
1276
+ msgid "unknown"
1277
+ msgstr "Unknown"
1278
 
1279
  #: ../../admin/lang/dynamic_strings.php:41
1280
+ msgid "wap"
1281
+ msgstr "WAP"
1282
 
1283
  #: ../../admin/lang/dynamic_strings.php:42
1284
+ msgid "webos"
1285
+ msgstr "WebOS"
1286
 
1287
  #: ../../admin/lang/dynamic_strings.php:43
1288
+ msgid "win10"
1289
+ msgstr "Windows 10"
1290
 
1291
  #: ../../admin/lang/dynamic_strings.php:44
1292
+ msgid "win16"
1293
+ msgstr "Windows 16-bit"
1294
 
1295
  #: ../../admin/lang/dynamic_strings.php:45
1296
+ msgid "win2000"
1297
+ msgstr "Windows 2000"
1298
 
1299
  #: ../../admin/lang/dynamic_strings.php:46
1300
+ msgid "win2003"
1301
+ msgstr "Windows 2003"
1302
 
1303
  #: ../../admin/lang/dynamic_strings.php:47
1304
+ msgid "win31"
1305
+ msgstr "Windows 3.1"
1306
 
1307
  #: ../../admin/lang/dynamic_strings.php:48
1308
+ msgid "win32"
1309
+ msgstr "Windows 32-bit"
1310
+
1311
+ #: ../../admin/lang/dynamic_strings.php:49
1312
+ #: ../../admin/lang/dynamic_strings.php:50
1313
+ msgid "win7"
1314
+ msgstr "Windows 7"
1315
+
1316
+ #: ../../admin/lang/dynamic_strings.php:51
1317
+ msgid "win8"
1318
+ msgstr "Windows 8"
1319
+
1320
+ #: ../../admin/lang/dynamic_strings.php:52
1321
+ msgid "win8.1"
1322
+ msgstr "Windows 8.1"
1323
+
1324
+ #: ../../admin/lang/dynamic_strings.php:53
1325
+ msgid "win95"
1326
+ msgstr "Windows 95"
1327
+
1328
+ #: ../../admin/lang/dynamic_strings.php:54
1329
+ msgid "win98"
1330
+ msgstr "Windows 98"
1331
+
1332
+ #: ../../admin/lang/dynamic_strings.php:55
1333
+ msgid "wince"
1334
+ msgstr "Windows CE"
1335
+
1336
+ #: ../../admin/lang/dynamic_strings.php:56
1337
+ msgid "windows phone"
1338
+ msgstr "Windows Phone"
1339
+
1340
+ #: ../../admin/lang/dynamic_strings.php:57
1341
+ msgid "winme"
1342
+ msgstr "Windows ME"
1343
+
1344
+ #: ../../admin/lang/dynamic_strings.php:58
1345
+ msgid "winnt"
1346
+ msgstr "Windows NT"
1347
+
1348
+ #: ../../admin/lang/dynamic_strings.php:59
1349
  msgid "winphone7"
1350
  msgstr "Windows Phone"
1351
 
1352
+ #: ../../admin/lang/dynamic_strings.php:60
1353
  msgid "winphone7.5"
1354
  msgstr "Windows Phone 7.5"
1355
 
1356
+ #: ../../admin/lang/dynamic_strings.php:61
1357
  msgid "winphone8"
1358
  msgstr "Windows Phone 8"
1359
 
1360
+ #: ../../admin/lang/dynamic_strings.php:62
1361
  msgid "winphone8.1"
1362
  msgstr "Windows Phone 8.1"
1363
 
1364
+ #: ../../admin/lang/dynamic_strings.php:63
1365
+ msgid "winvista"
1366
+ msgstr "Windows Vista"
1367
 
1368
+ #: ../../admin/lang/dynamic_strings.php:64
1369
+ msgid "winxp"
1370
+ msgstr "Windows XP"
1371
 
1372
+ #: ../../admin/lang/dynamic_strings.php:65
1373
+ msgid "wyderos"
1374
+ msgstr "WyderOS"
1375
 
1376
+ #: ../../admin/lang/dynamic_strings.php:68
1377
+ msgid "acrobat"
1378
+ msgstr "Acrobat Reader"
1379
 
1380
+ #: ../../admin/lang/dynamic_strings.php:69
1381
+ msgid "director"
1382
+ msgstr "Macromedia Director"
1383
+
1384
+ #: ../../admin/lang/dynamic_strings.php:70
1385
+ msgid "flash"
1386
+ msgstr "Adobe Flash Player"
1387
+
1388
+ #: ../../admin/lang/dynamic_strings.php:71
1389
+ msgid "mediaplayer"
1390
+ msgstr "Microsoft Media Player"
1391
+
1392
+ #: ../../admin/lang/dynamic_strings.php:72
1393
+ msgid "quicktime"
1394
+ msgstr "QuickTime"
1395
+
1396
+ #: ../../admin/lang/dynamic_strings.php:73
1397
+ msgid "real"
1398
+ msgstr "Real Player"
1399
+
1400
+ #: ../../admin/lang/dynamic_strings.php:74
1401
+ msgid "silverlight"
1402
+ msgstr "Microsoft Silverlight"
1403
+
1404
+ #: ../../admin/lang/dynamic_strings.php:77
1405
  msgid "p-and"
1406
  msgstr "Android"
1407
 
1408
+ #: ../../admin/lang/dynamic_strings.php:78
1409
  msgid "p-bla"
1410
  msgstr "BlackBerry"
1411
 
1412
+ #: ../../admin/lang/dynamic_strings.php:79
1413
  msgid "p-chr"
1414
  msgstr "Chrome OS"
1415
 
1416
+ #: ../../admin/lang/dynamic_strings.php:80
1417
  msgid "p-fir"
1418
  msgstr "Fire OS"
1419
 
1420
+ #: ../../admin/lang/dynamic_strings.php:81
1421
  msgid "p-fre"
1422
  msgstr "Linux FreeBSD"
1423
 
1424
+ #: ../../admin/lang/dynamic_strings.php:82
1425
  msgid "p-ios"
1426
  msgstr "Apple iOS"
1427
 
1428
+ #: ../../admin/lang/dynamic_strings.php:83
1429
  msgid "p-jav"
1430
  msgstr "Java-based OS"
1431
 
1432
+ #: ../../admin/lang/dynamic_strings.php:84
1433
  msgid "p-lin"
1434
  msgstr "Linux"
1435
 
1436
+ #: ../../admin/lang/dynamic_strings.php:85
1437
  msgid "p-mac"
1438
  msgstr "Apple"
1439
 
1440
+ #: ../../admin/lang/dynamic_strings.php:86
1441
  msgid "p-rim"
1442
  msgstr "Blackberry RIM"
1443
 
1444
+ #: ../../admin/lang/dynamic_strings.php:87
1445
  msgid "p-sym"
1446
  msgstr "Symbian OS"
1447
 
1448
+ #: ../../admin/lang/dynamic_strings.php:88
1449
  msgid "p-ubu"
1450
  msgstr "Linux Ubuntu"
1451
 
1452
+ #: ../../admin/lang/dynamic_strings.php:89
1453
  msgid "p-unk"
1454
  msgstr "Unknown"
1455
 
1456
+ #: ../../admin/lang/dynamic_strings.php:90
1457
  msgid "p-win"
1458
  msgstr "Microsoft"
1459
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1460
  # Afrikaans
1461
+ #: ../../admin/lang/dynamic_strings.php:93
1462
  msgid "l-af"
1463
  msgstr "Afrikaans"
1464
 
1465
  # Afrikaans
1466
+ #: ../../admin/lang/dynamic_strings.php:94
1467
  msgid "l-af-za"
1468
  msgstr "Afrikaans (South Africa)"
1469
 
1470
  # Arabic
1471
+ #: ../../admin/lang/dynamic_strings.php:95
1472
  msgid "l-ar"
1473
  msgstr "Arabic"
1474
 
1475
  # Arabic
1476
+ #: ../../admin/lang/dynamic_strings.php:96
1477
  msgid "l-ar-ae"
1478
  msgstr "Arabic (U.A.E.)"
1479
 
1480
  # Arabic
1481
+ #: ../../admin/lang/dynamic_strings.php:97
1482
  msgid "l-ar-bh"
1483
  msgstr "Arabic (Bahrain)"
1484
 
1485
  # Arabic
1486
+ #: ../../admin/lang/dynamic_strings.php:98
1487
  msgid "l-ar-dz"
1488
  msgstr "Arabic (Algeria)"
1489
 
1490
  # Arabic
1491
+ #: ../../admin/lang/dynamic_strings.php:99
1492
  msgid "l-ar-eg"
1493
  msgstr "Arabic (Egypt)"
1494
 
1495
  # Arabic
1496
+ #: ../../admin/lang/dynamic_strings.php:100
1497
  msgid "l-ar-iq"
1498
  msgstr "Arabic (Iraq)"
1499
 
1500
  # Arabic
1501
+ #: ../../admin/lang/dynamic_strings.php:101
1502
  msgid "l-ar-jo"
1503
  msgstr "Arabic (Jordan)"
1504
 
1505
  # Arabic
1506
+ #: ../../admin/lang/dynamic_strings.php:102
1507
  msgid "l-ar-kw"
1508
  msgstr "Arabic (Kuwait)"
1509
 
1510
  # Arabic
1511
+ #: ../../admin/lang/dynamic_strings.php:103
1512
  msgid "l-ar-lb"
1513
  msgstr "Arabic (Lebanon)"
1514
 
1515
  # Arabic
1516
+ #: ../../admin/lang/dynamic_strings.php:104
1517
  msgid "l-ar-ly"
1518
  msgstr "Arabic (Libya)"
1519
 
1520
  # Arabic
1521
+ #: ../../admin/lang/dynamic_strings.php:105
1522
  msgid "l-ar-ma"
1523
  msgstr "Arabic (Morocco)"
1524
 
1525
  # Arabic
1526
+ #: ../../admin/lang/dynamic_strings.php:106
1527
  msgid "l-ar-om"
1528
  msgstr "Arabic (Oman)"
1529
 
1530
  # Arabic
1531
+ #: ../../admin/lang/dynamic_strings.php:107
1532
  msgid "l-ar-qa"
1533
  msgstr "Arabic (Qatar)"
1534
 
1535
  # Arabic
1536
+ #: ../../admin/lang/dynamic_strings.php:108
1537
  msgid "l-ar-sa"
1538
  msgstr "Arabic (Saudi Arabia)"
1539
 
1540
  # Arabic
1541
+ #: ../../admin/lang/dynamic_strings.php:109
1542
  msgid "l-ar-sy"
1543
  msgstr "Arabic (Syria)"
1544
 
1545
  # Arabic
1546
+ #: ../../admin/lang/dynamic_strings.php:110
1547
  msgid "l-ar-tn"
1548
  msgstr "Arabic (Tunisia)"
1549
 
1550
  # Arabic
1551
+ #: ../../admin/lang/dynamic_strings.php:111
1552
  msgid "l-ar-ye"
1553
  msgstr "Arabic (Yemen)"
1554
 
1555
  # Azerbaijani
1556
+ #: ../../admin/lang/dynamic_strings.php:112
1557
  msgid "l-az"
1558
  msgstr "Azerbaijani"
1559
 
1560
  # Azerbaijani
1561
+ #: ../../admin/lang/dynamic_strings.php:113
1562
  msgid "l-az-az"
1563
  msgstr "Azeri (Latin)"
1564
 
1565
  # Belarusian
1566
+ #: ../../admin/lang/dynamic_strings.php:114
1567
  msgid "l-be"
1568
  msgstr "Belarusian"
1569
 
1570
  # Belarusian
1571
+ #: ../../admin/lang/dynamic_strings.php:115
1572
  msgid "l-be-by"
1573
  msgstr "Belarusian (Belarus)"
1574
 
1575
  # Bulgarian
1576
+ #: ../../admin/lang/dynamic_strings.php:116
1577
  msgid "l-bg"
1578
  msgstr "Bulgarian"
1579
 
1580
  # Bulgarian
1581
+ #: ../../admin/lang/dynamic_strings.php:117
1582
  msgid "l-bg-bg"
1583
  msgstr "Bulgarian (Bulgaria)"
1584
 
1585
  # Bosnian
1586
+ #: ../../admin/lang/dynamic_strings.php:118
1587
  msgid "l-bs-ba"
1588
  msgstr "Bosnian"
1589
 
1590
  # Catalan; Valencian
1591
+ #: ../../admin/lang/dynamic_strings.php:119
1592
  msgid "l-ca"
1593
  msgstr "Catalan"
1594
 
1595
  # Catalan; Valencian
1596
+ #: ../../admin/lang/dynamic_strings.php:120
1597
  msgid "l-ca-es"
1598
  msgstr "Catalan; Valencian"
1599
 
1600
  # Czech
1601
+ #: ../../admin/lang/dynamic_strings.php:121
1602
  msgid "l-cs"
1603
  msgstr "Czech"
1604
 
1605
  # Czech
1606
+ #: ../../admin/lang/dynamic_strings.php:122
1607
  msgid "l-cs-cz"
1608
  msgstr "Czech (Czech Republic)"
1609
 
1610
  # Welsh
1611
+ #: ../../admin/lang/dynamic_strings.php:123
1612
  msgid "l-cy"
1613
  msgstr "Welsh"
1614
 
1615
  # Welsh
1616
+ #: ../../admin/lang/dynamic_strings.php:124
1617
  msgid "l-cy-gb"
1618
  msgstr "Welsh (UK)"
1619
 
1620
  # Danish
1621
+ #: ../../admin/lang/dynamic_strings.php:125
1622
  msgid "l-da"
1623
  msgstr "Danish"
1624
 
1625
  # Danish
1626
+ #: ../../admin/lang/dynamic_strings.php:126
1627
  msgid "l-da-dk"
1628
  msgstr "Danish (Denmark)"
1629
 
1630
  # German
1631
+ #: ../../admin/lang/dynamic_strings.php:127
1632
  msgid "l-de"
1633
  msgstr "German"
1634
 
1635
  # German
1636
+ #: ../../admin/lang/dynamic_strings.php:128
1637
  msgid "l-de-at"
1638
  msgstr "German (Austria)"
1639
 
1640
  # German
1641
+ #: ../../admin/lang/dynamic_strings.php:129
1642
  msgid "l-de-ch"
1643
  msgstr "German (Switzerland)"
1644
 
1645
  # German
1646
+ #: ../../admin/lang/dynamic_strings.php:130
1647
  msgid "l-de-de"
1648
  msgstr "German (Germany)"
1649
 
1650
  # German
1651
+ #: ../../admin/lang/dynamic_strings.php:131
1652
  msgid "l-de-li"
1653
  msgstr "German (Liechtenstein)"
1654
 
1655
  # German
1656
+ #: ../../admin/lang/dynamic_strings.php:132
1657
  msgid "l-de-lu"
1658
  msgstr "German (Luxembourg)"
1659
 
1660
  # Dhivehi; Divehi; Maldivian
1661
+ #: ../../admin/lang/dynamic_strings.php:133
1662
  msgid "l-dv"
1663
  msgstr "Dhivehi; Divehi; Maldivian"
1664
 
1665
  # Dhivehi; Divehi; Maldivian
1666
+ #: ../../admin/lang/dynamic_strings.php:134
1667
  msgid "l-dv-mv"
1668
  msgstr "Maldivian"
1669
 
1670
  # Modern Greek (1453-)
1671
+ #: ../../admin/lang/dynamic_strings.php:135
1672
  msgid "l-el"
1673
  msgstr "Greek"
1674
 
1675
  # Modern Greek (1453-)
1676
+ #: ../../admin/lang/dynamic_strings.php:136
1677
  msgid "l-el-gr"
1678
  msgstr "Greek (Greece)"
1679
 
1680
  # English
1681
+ #: ../../admin/lang/dynamic_strings.php:137
1682
  msgid "l-en"
1683
  msgstr "English"
1684
 
1685
  # English
1686
+ #: ../../admin/lang/dynamic_strings.php:138
1687
  msgid "l-en-au"
1688
  msgstr "English (Australia)"
1689
 
1690
  # English
1691
+ #: ../../admin/lang/dynamic_strings.php:139
1692
  msgid "l-en-bz"
1693
  msgstr "English (Belize)"
1694
 
1695
  # English
1696
+ #: ../../admin/lang/dynamic_strings.php:140
1697
  msgid "l-en-ca"
1698
  msgstr "English (Canada)"
1699
 
1700
  # English
1701
+ #: ../../admin/lang/dynamic_strings.php:141
1702
  msgid "l-en-cb"
1703
  msgstr "English (Caribbean)"
1704
 
1705
  # English
1706
+ #: ../../admin/lang/dynamic_strings.php:142
1707
  msgid "l-en-gb"
1708
  msgstr "English (Great Britain)"
1709
 
1710
  # English
1711
+ #: ../../admin/lang/dynamic_strings.php:143
1712
  msgid "l-en-ie"
1713
  msgstr "English (Ireland)"
1714
 
1715
  # English
1716
+ #: ../../admin/lang/dynamic_strings.php:144
1717
  msgid "l-en-jm"
1718
  msgstr "English (Jamaica)"
1719
 
1720
  # English
1721
+ #: ../../admin/lang/dynamic_strings.php:145
1722
  msgid "l-en-nz"
1723
  msgstr "English (New Zealand)"
1724
 
1725
  # English
1726
+ #: ../../admin/lang/dynamic_strings.php:146
1727
  msgid "l-en-ph"
1728
  msgstr "English (Philippines)"
1729
 
1730
  # English
1731
+ #: ../../admin/lang/dynamic_strings.php:147
1732
  msgid "l-en-tt"
1733
  msgstr "English (Trinidad and Tobago)"
1734
 
1735
  # English
1736
+ #: ../../admin/lang/dynamic_strings.php:148
1737
  msgid "l-en-us"
1738
  msgstr "English (USA)"
1739
 
1740
  # English
1741
+ #: ../../admin/lang/dynamic_strings.php:149
1742
  msgid "l-en-za"
1743
  msgstr "English (South Africa)"
1744
 
1745
  # English
1746
+ #: ../../admin/lang/dynamic_strings.php:150
1747
  msgid "l-en-zw"
1748
  msgstr "English (Zimbabwe)"
1749
 
1750
  # Esperanto
1751
+ #: ../../admin/lang/dynamic_strings.php:151
1752
  msgid "l-eo"
1753
  msgstr "Esperanto"
1754
 
1755
  # Spanish; Castilian
1756
+ #: ../../admin/lang/dynamic_strings.php:152
1757
  msgid "l-es"
1758
  msgstr "Spanish"
1759
 
1760
  # Spanish; Castilian
1761
+ #: ../../admin/lang/dynamic_strings.php:153
1762
  msgid "l-es-ar"
1763
  msgstr "Spanish (Argentina)"
1764
 
1765
  # Spanish; Castilian
1766
+ #: ../../admin/lang/dynamic_strings.php:154
1767
  msgid "l-es-bo"
1768
  msgstr "Spanish (Bolivia)"
1769
 
1770
  # Spanish; Castilian
1771
+ #: ../../admin/lang/dynamic_strings.php:155
1772
  msgid "l-es-cl"
1773
  msgstr "Spanish (Chile)"
1774
 
1775
  # Spanish; Castilian
1776
+ #: ../../admin/lang/dynamic_strings.php:156
1777
  msgid "l-es-co"
1778
  msgstr "Spanish (Colombia)"
1779
 
1780
  # Spanish; Castilian
1781
+ #: ../../admin/lang/dynamic_strings.php:157
1782
  msgid "l-es-cr"
1783
  msgstr "Spanish (Costa Rica)"
1784
 
1785
  # Spanish; Castilian
1786
+ #: ../../admin/lang/dynamic_strings.php:158
1787
  msgid "l-es-do"
1788
  msgstr "Spanish (Dominican Republic)"
1789
 
1790
  # Spanish; Castilian
1791
+ #: ../../admin/lang/dynamic_strings.php:159
1792
  msgid "l-es-ec"
1793
  msgstr "Spanish (Ecuador)"
1794
 
1795
  # Spanish; Castilian
1796
+ #: ../../admin/lang/dynamic_strings.php:160
1797
  msgid "l-es-es"
1798
  msgstr "Spanish (Spain)"
1799
 
1800
  # Spanish; Castilian
1801
+ #: ../../admin/lang/dynamic_strings.php:161
1802
  msgid "l-es-gt"
1803
  msgstr "Spanish (Guatemala)"
1804
 
1805
  # Spanish; Castilian
1806
+ #: ../../admin/lang/dynamic_strings.php:162
1807
  msgid "l-es-hn"
1808
  msgstr "Spanish (Honduras)"
1809
 
1810
  # Spanish; Castilian
1811
+ #: ../../admin/lang/dynamic_strings.php:163
1812
  msgid "l-es-mx"
1813
  msgstr "Spanish (Mexico)"
1814
 
1815
  # Spanish; Castilian
1816
+ #: ../../admin/lang/dynamic_strings.php:164
1817
  msgid "l-es-ni"
1818
  msgstr "Spanish (Nicaragua)"
1819
 
1820
  # Spanish; Castilian
1821
+ #: ../../admin/lang/dynamic_strings.php:165
1822
  msgid "l-es-pa"
1823
  msgstr "Spanish (Panama)"
1824
 
1825
  # Spanish; Castilian
1826
+ #: ../../admin/lang/dynamic_strings.php:166
1827
  msgid "l-es-pe"
1828
  msgstr "Spanish (Peru)"
1829
 
1830
  # Spanish; Castilian
1831
+ #: ../../admin/lang/dynamic_strings.php:167
1832
  msgid "l-es-pr"
1833
  msgstr "Spanish (Puerto Rico)"
1834
 
1835
  # Spanish; Castilian
1836
+ #: ../../admin/lang/dynamic_strings.php:168
1837
  msgid "l-es-py"
1838
  msgstr "Spanish (Paraguay)"
1839
 
1840
  # Spanish; Castilian
1841
+ #: ../../admin/lang/dynamic_strings.php:169
1842
  msgid "l-es-sv"
1843
  msgstr "Spanish (El Salvador)"
1844
 
1845
  # Spanish; Castilian
1846
+ #: ../../admin/lang/dynamic_strings.php:170
1847
  msgid "l-es-uy"
1848
  msgstr "Spanish (Uruguay)"
1849
 
1850
  # Spanish; Castilian
1851
+ #: ../../admin/lang/dynamic_strings.php:171
1852
  msgid "l-es-ve"
1853
  msgstr "Spanish (Venezuela)"
1854
 
1855
  # Estonian
1856
+ #: ../../admin/lang/dynamic_strings.php:172
1857
  msgid "l-et"
1858
  msgstr "Estonian"
1859
 
1860
  # Estonian
1861
+ #: ../../admin/lang/dynamic_strings.php:173
1862
  msgid "l-et-ee"
1863
  msgstr "Estonian (Estonia)"
1864
 
1865
  # Basque
1866
+ #: ../../admin/lang/dynamic_strings.php:174
1867
  msgid "l-eu"
1868
  msgstr "Basque"
1869
 
1870
  # Basque
1871
+ #: ../../admin/lang/dynamic_strings.php:175
1872
  msgid "l-eu-es"
1873
  msgstr "Basque (Spain)"
1874
 
1875
  # Persian
1876
+ #: ../../admin/lang/dynamic_strings.php:176
1877
  msgid "l-fa"
1878
  msgstr "Persian"
1879
 
1880
  # Persian
1881
+ #: ../../admin/lang/dynamic_strings.php:177
1882
  msgid "l-fa-ir"
1883
  msgstr "Persian (Iran)"
1884
 
1885
  # Finnish
1886
+ #: ../../admin/lang/dynamic_strings.php:178
1887
  msgid "l-fi"
1888
  msgstr "Finnish"
1889
 
1890
  # Finnish
1891
+ #: ../../admin/lang/dynamic_strings.php:179
1892
  msgid "l-fi-fi"
1893
  msgstr "Finnish (Finland)"
1894
 
1895
  # Faroese
1896
+ #: ../../admin/lang/dynamic_strings.php:180
1897
  msgid "l-fo"
1898
  msgstr "Faroese"
1899
 
1900
  # Faroese
1901
+ #: ../../admin/lang/dynamic_strings.php:181
1902
  msgid "l-fo-fo"
1903
  msgstr "Faroese (Faroe Islands)"
1904
 
1905
  # French
1906
+ #: ../../admin/lang/dynamic_strings.php:182
1907
  msgid "l-fr"
1908
  msgstr "French"
1909
 
1910
  # French
1911
+ #: ../../admin/lang/dynamic_strings.php:183
1912
  msgid "l-fr-be"
1913
  msgstr "French (Belgium)"
1914
 
1915
  # French
1916
+ #: ../../admin/lang/dynamic_strings.php:184
1917
  msgid "l-fr-ca"
1918
  msgstr "French (Canada)"
1919
 
1920
  # French
1921
+ #: ../../admin/lang/dynamic_strings.php:185
1922
  msgid "l-fr-ch"
1923
  msgstr "French (Switzerland)"
1924
 
1925
  # French
1926
+ #: ../../admin/lang/dynamic_strings.php:186
1927
  msgid "l-fr-fr"
1928
  msgstr "French (France)"
1929
 
1930
  # French
1931
+ #: ../../admin/lang/dynamic_strings.php:187
1932
  msgid "l-fr-lu"
1933
  msgstr "French (Luxembourg)"
1934
 
1935
  # French
1936
+ #: ../../admin/lang/dynamic_strings.php:188
1937
  msgid "l-fr-mc"
1938
  msgstr "French (Monaco)"
1939
 
1940
  # Galician
1941
+ #: ../../admin/lang/dynamic_strings.php:189
1942
  msgid "l-gl"
1943
  msgstr "Galician"
1944
 
1945
  # Spanish; Castilian
1946
+ #: ../../admin/lang/dynamic_strings.php:190
1947
  msgid "l-gl-es"
1948
  msgstr "Galician (Spain)"
1949
 
1950
  # Gujarati
1951
+ #: ../../admin/lang/dynamic_strings.php:191
1952
  msgid "l-gu"
1953
  msgstr "Gujarati"
1954
 
1955
  # Gujarati
1956
+ #: ../../admin/lang/dynamic_strings.php:192
1957
  msgid "l-gu-in"
1958
  msgstr "Gujarati (India)"
1959
 
1960
  # Hebrew
1961
+ #: ../../admin/lang/dynamic_strings.php:193
1962
  msgid "l-he"
1963
  msgstr "Hebrew"
1964
 
1965
  # Hebrew
1966
+ #: ../../admin/lang/dynamic_strings.php:194
1967
  msgid "l-he-il"
1968
  msgstr "Hebrew (Israel)"
1969
 
1970
  # Hindi
1971
+ #: ../../admin/lang/dynamic_strings.php:195
1972
  msgid "l-hi"
1973
  msgstr "Hindi"
1974
 
1975
  # Hindi
1976
+ #: ../../admin/lang/dynamic_strings.php:196
1977
  msgid "l-hi-in"
1978
  msgstr "Hindi (India)"
1979
 
1980
  # Croatian
1981
+ #: ../../admin/lang/dynamic_strings.php:197
1982
  msgid "l-hr"
1983
  msgstr "Croatian"
1984
 
1985
  # Croatian
1986
+ #: ../../admin/lang/dynamic_strings.php:198
1987
  msgid "l-hr-ba"
1988
  msgstr "Croatian (Bosnia)"
1989
 
1990
  # Croatian
1991
+ #: ../../admin/lang/dynamic_strings.php:199
1992
  msgid "l-hr-hr"
1993
  msgstr "Croatian (Croatia)"
1994
 
1995
  # Hungarian
1996
+ #: ../../admin/lang/dynamic_strings.php:200
1997
  msgid "l-hu"
1998
  msgstr "Hungarian"
1999
 
2000
  # Hungarian
2001
+ #: ../../admin/lang/dynamic_strings.php:201
2002
  msgid "l-hu-hu"
2003
  msgstr "Hungarian (Hungary)"
2004
 
2005
  # Armenian
2006
+ #: ../../admin/lang/dynamic_strings.php:202
2007
  msgid "l-hy"
2008
  msgstr "Armenian"
2009
 
2010
  # Armenian
2011
+ #: ../../admin/lang/dynamic_strings.php:203
2012
  msgid "l-hy-am"
2013
  msgstr "Armenian (Armenia)"
2014
 
2015
+ #: ../../admin/lang/dynamic_strings.php:204
2016
  msgid "l-id"
2017
+ msgstr "Indonesian"
2018
 
2019
+ #: ../../admin/lang/dynamic_strings.php:205
2020
  msgid "l-id-id"
2021
+ msgstr "Indonesian"
2022
 
2023
  # Icelandic
2024
+ #: ../../admin/lang/dynamic_strings.php:206
2025
  msgid "l-is"
2026
  msgstr "Icelandic"
2027
 
2028
  # Icelandic
2029
+ #: ../../admin/lang/dynamic_strings.php:207
2030
  msgid "l-is-is"
2031
  msgstr "Icelandic (Iceland)"
2032
 
2033
  # Italian
2034
+ #: ../../admin/lang/dynamic_strings.php:208
2035
  msgid "l-it"
2036
  msgstr "Italian"
2037
 
2038
  # Italian
2039
+ #: ../../admin/lang/dynamic_strings.php:209
2040
  msgid "l-it-ch"
2041
  msgstr "Italian (Switzerland)"
2042
 
2043
  # Italian
2044
+ #: ../../admin/lang/dynamic_strings.php:210
2045
  msgid "l-it-it"
2046
  msgstr "Italian (Italy)"
2047
 
2048
  # Japanese
2049
+ #: ../../admin/lang/dynamic_strings.php:211
2050
  msgid "l-ja"
2051
  msgstr "Japanese"
2052
 
2053
  # Japanese
2054
+ #: ../../admin/lang/dynamic_strings.php:212
2055
  msgid "l-ja-jp"
2056
  msgstr "Japanese (Japan)"
2057
 
2058
  # Georgian
2059
+ #: ../../admin/lang/dynamic_strings.php:213
2060
  msgid "l-ka"
2061
  msgstr "Georgian"
2062
 
2063
  # Georgian
2064
+ #: ../../admin/lang/dynamic_strings.php:214
2065
  msgid "l-ka-ge"
2066
  msgstr "Georgian (Georgia)"
2067
 
2068
  # Kazakh
2069
+ #: ../../admin/lang/dynamic_strings.php:215
2070
  msgid "l-kk"
2071
  msgstr "Kazakh"
2072
 
2073
  # Kazakh
2074
+ #: ../../admin/lang/dynamic_strings.php:216
2075
  msgid "l-kk-kz"
2076
  msgstr "Kazakh (Kazakhstan)"
2077
 
2078
  # Kannada
2079
+ #: ../../admin/lang/dynamic_strings.php:217
2080
  msgid "l-kn"
2081
  msgstr "Kannada"
2082
 
2083
  # Kannada
2084
+ #: ../../admin/lang/dynamic_strings.php:218
2085
  msgid "l-kn-in"
2086
  msgstr "Kannada (India)"
2087
 
2088
  # Korean
2089
+ #: ../../admin/lang/dynamic_strings.php:219
2090
  msgid "l-ko"
2091
  msgstr "Korean"
2092
 
2093
  # Korean
2094
+ #: ../../admin/lang/dynamic_strings.php:220
2095
  msgid "l-ko-kr"
2096
  msgstr "Korean (Korea)"
2097
 
2098
  # Korean
2099
+ #: ../../admin/lang/dynamic_strings.php:221
2100
  msgid "l-kok"
2101
  msgstr "Konkani"
2102
 
2103
  # Korean
2104
+ #: ../../admin/lang/dynamic_strings.php:222
2105
  msgid "l-kok-in"
2106
  msgstr "Konkani (India)"
2107
 
2108
  # Kirghiz; Kyrgyz
2109
+ #: ../../admin/lang/dynamic_strings.php:223
2110
  msgid "l-ky"
2111
  msgstr "Kirghiz"
2112
 
2113
  # Kirghiz; Kyrgyz
2114
+ #: ../../admin/lang/dynamic_strings.php:224
2115
  msgid "l-ky-kg"
2116
  msgstr "Kirghiz (Kazakhstan)"
2117
 
2118
  # Lithuanian
2119
+ #: ../../admin/lang/dynamic_strings.php:225
2120
  msgid "l-lt"
2121
  msgstr "Lithuanian"
2122
 
2123
  # Lithuanian
2124
+ #: ../../admin/lang/dynamic_strings.php:226
2125
  msgid "l-lt-lt"
2126
  msgstr "Lithuanian (Lithuania)"
2127
 
2128
  # Latvian
2129
+ #: ../../admin/lang/dynamic_strings.php:227
2130
  msgid "l-lv"
2131
  msgstr "Latvian"
2132
 
2133
  # Latvian
2134
+ #: ../../admin/lang/dynamic_strings.php:228
2135
  msgid "l-lv-lv"
2136
  msgstr "Latvian (Latvia)"
2137
 
2138
  # Maori
2139
+ #: ../../admin/lang/dynamic_strings.php:229
2140
  msgid "l-mi"
2141
  msgstr "Maori"
2142
 
2143
  # Maori
2144
+ #: ../../admin/lang/dynamic_strings.php:230
2145
  msgid "l-mi-nz"
2146
  msgstr "Maori (New Zealand)"
2147
 
2148
  # Macedonian
2149
+ #: ../../admin/lang/dynamic_strings.php:231
2150
  msgid "l-mk"
2151
  msgstr "Macedonian"
2152
 
2153
  # Macedonian
2154
+ #: ../../admin/lang/dynamic_strings.php:232
2155
  msgid "l-mk-ml"
2156
  msgstr "Macedonian (FYROM)"
2157
 
2158
  # Mongolian
2159
+ #: ../../admin/lang/dynamic_strings.php:233
2160
  msgid "l-mn"
2161
  msgstr "Mongolian"
2162
 
2163
  # Mongolian
2164
+ #: ../../admin/lang/dynamic_strings.php:234
2165
  msgid "l-mn-mn"
2166
  msgstr "Mongolian (Mongolia)"
2167
 
2168
  # Marathi
2169
+ #: ../../admin/lang/dynamic_strings.php:235
2170
  msgid "l-mr"
2171
  msgstr "Marathi"
2172
 
2173
  # Marathi
2174
+ #: ../../admin/lang/dynamic_strings.php:236
2175
  msgid "l-mr-in"
2176
  msgstr "Marathi (India)"
2177
 
2178
  # Malay
2179
+ #: ../../admin/lang/dynamic_strings.php:237
2180
  msgid "l-ms"
2181
  msgstr "Malay"
2182
 
2183
  # Malay
2184
+ #: ../../admin/lang/dynamic_strings.php:238
2185
  msgid "l-ms-bn"
2186
  msgstr "Malay (Brunei)"
2187
 
2188
  # Malay
2189
+ #: ../../admin/lang/dynamic_strings.php:239
2190
  msgid "l-ms-my"
2191
  msgstr "Malay (Malaysia)"
2192
 
2193
  # Maltese
2194
+ #: ../../admin/lang/dynamic_strings.php:240
2195
  msgid "l-mt"
2196
  msgstr "Maltese"
2197
 
2198
  # Maltese
2199
+ #: ../../admin/lang/dynamic_strings.php:241
2200
  msgid "l-mt-mt"
2201
  msgstr "Maltese (Malta)"
2202
 
2203
  # Norwegian Bokmål
2204
+ #: ../../admin/lang/dynamic_strings.php:242
2205
  msgid "l-nb"
2206
  msgstr "Norwegian; Bokmål"
2207
 
2208
  # Norwegian Bokmål
2209
+ #: ../../admin/lang/dynamic_strings.php:243
2210
  msgid "l-nb-no"
2211
  msgstr "Norwegian (Norway)"
2212
 
2213
  # Dutch; Flemish
2214
+ #: ../../admin/lang/dynamic_strings.php:244
2215
  msgid "l-nl"
2216
  msgstr "Dutch; Flemish"
2217
 
2218
  # Belarusian
2219
+ #: ../../admin/lang/dynamic_strings.php:245
2220
  msgid "l-nl-be"
2221
  msgstr "Dutch (Belgium)"
2222
 
2223
  # Dutch; Flemish
2224
+ #: ../../admin/lang/dynamic_strings.php:246
2225
  msgid "l-nl-nl"
2226
  msgstr "Dutch (The Netherlands)"
2227
 
2228
  # Norwegian Nynorsk
2229
+ #: ../../admin/lang/dynamic_strings.php:247
2230
  msgid "l-nn-no"
2231
  msgstr "Norwegian; Nynorsk (Norway)"
2232
 
2233
+ #: ../../admin/lang/dynamic_strings.php:248
2234
  msgid "l-ns"
2235
+ msgstr "Northern Sotho"
2236
 
2237
+ #: ../../admin/lang/dynamic_strings.php:249
2238
  msgid "l-ns-za"
2239
+ msgstr "Northern Sotho (South Africa)"
2240
 
2241
  # Panjabi; Punjabi
2242
+ #: ../../admin/lang/dynamic_strings.php:250
2243
  msgid "l-pa"
2244
  msgstr "Panjabi; Punjabi"
2245
 
2246
  # Panjabi; Punjabi
2247
+ #: ../../admin/lang/dynamic_strings.php:251
2248
  msgid "l-pa-in"
2249
  msgstr "Panjabi (India)"
2250
 
2251
  # Polish
2252
+ #: ../../admin/lang/dynamic_strings.php:252
2253
  msgid "l-pl"
2254
  msgstr "Polish"
2255
 
2256
  # Polish
2257
+ #: ../../admin/lang/dynamic_strings.php:253
2258
  msgid "l-pl-pl"
2259
  msgstr "Polish (Poland)"
2260
 
2261
  # Pushto; Pashto
2262
+ #: ../../admin/lang/dynamic_strings.php:254
2263
  msgid "l-ps"
2264
  msgstr "Pushto; Pashto"
2265
 
2266
  # Pushto; Pashto
2267
+ #: ../../admin/lang/dynamic_strings.php:255
2268
  msgid "l-ps-ar"
2269
  msgstr "Pashto (Afghanistan)"
2270
 
2271
  # Portuguese
2272
+ #: ../../admin/lang/dynamic_strings.php:256
2273
  msgid "l-pt"
2274
  msgstr "Portuguese"
2275
 
2276
  # Portuguese
2277
+ #: ../../admin/lang/dynamic_strings.php:257
2278
  msgid "l-pt-br"
2279
  msgstr "Portuguese (Brazil)"
2280
 
2281
  # Portuguese
2282
+ #: ../../admin/lang/dynamic_strings.php:258
2283
  msgid "l-pt-pt"
2284
  msgstr "Portuguese (Portugal)"
2285
 
2286
  # Quechua
2287
+ #: ../../admin/lang/dynamic_strings.php:259
2288
  msgid "l-qu"
2289
  msgstr "Quechua"
2290
 
2291
  # Quechua
2292
+ #: ../../admin/lang/dynamic_strings.php:260
2293
  msgid "l-qu-bo"
2294
  msgstr "Quechua (Bolivia)"
2295
 
2296
  # Quechua
2297
+ #: ../../admin/lang/dynamic_strings.php:261
2298
  msgid "l-qu-ec"
2299
  msgstr "Quechua (Ecuador)"
2300
 
2301
  # Quechua
2302
+ #: ../../admin/lang/dynamic_strings.php:262
2303
  msgid "l-qu-pe"
2304
  msgstr "Quechua (Peru)"
2305
 
2306
  # Romanian; Moldavian; Moldovan
2307
+ #: ../../admin/lang/dynamic_strings.php:263
2308
  msgid "l-ro"
2309
  msgstr "Romanian"
2310
 
2311
  # Romanian; Moldavian; Moldovan
2312
+ #: ../../admin/lang/dynamic_strings.php:264
2313
  msgid "l-ro-ro"
2314
  msgstr "Romanian (Romania)"
2315
 
2316
  # Russian
2317
+ #: ../../admin/lang/dynamic_strings.php:265
2318
  msgid "l-ru"
2319
  msgstr "Russian"
2320
 
2321
  # Russian
2322
+ #: ../../admin/lang/dynamic_strings.php:266
2323
  msgid "l-ru-ru"
2324
  msgstr "Russian (Russia)"
2325
 
2326
+ # Sanskrit
2327
+ #: ../../admin/lang/dynamic_strings.php:267
2328
  msgid "l-sa"
2329
+ msgstr "Sanskrit"
2330
 
2331
+ # Sanskrit (India)
2332
+ #: ../../admin/lang/dynamic_strings.php:268
2333
  msgid "l-sa-in"
2334
+ msgstr "Sanskrit (India)"
2335
 
2336
  # Northern Sami
2337
+ #: ../../admin/lang/dynamic_strings.php:269
2338
  msgid "l-se"
2339
  msgstr "Northern Sami"
2340
 
2341
  # Northern Sami
2342
+ #: ../../admin/lang/dynamic_strings.php:270
2343
  msgid "l-se-fi"
2344
  msgstr "Northern Sami (Finland)"
2345
 
2346
  # Northern Sami
2347
+ #: ../../admin/lang/dynamic_strings.php:271
2348
  msgid "l-se-no"
2349
  msgstr "Northern Sami (Norway)"
2350
 
2351
  # Northern Sami
2352
+ #: ../../admin/lang/dynamic_strings.php:272
2353
  msgid "l-se-se"
2354
  msgstr "Northern Sami (Sweden)"
2355
 
2356
  # Slovak
2357
+ #: ../../admin/lang/dynamic_strings.php:273
2358
  msgid "l-sk"
2359
  msgstr "Slovak"
2360
 
2361
  # Slovak
2362
+ #: ../../admin/lang/dynamic_strings.php:274
2363
  msgid "l-sk-sk"
2364
  msgstr "Slovak (Slovakia)"
2365
 
2366
  # Slovenian
2367
+ #: ../../admin/lang/dynamic_strings.php:275
2368
  msgid "l-sl"
2369
  msgstr "Slovenian"
2370
 
2371
  # Slovenian
2372
+ #: ../../admin/lang/dynamic_strings.php:276
2373
  msgid "l-sl-si"
2374
  msgstr "Slovenian (Slovenia)"
2375
 
2376
  # Albanian
2377
+ #: ../../admin/lang/dynamic_strings.php:277
2378
  msgid "l-sq"
2379
  msgstr "Albanian"
2380
 
2381
  # Albanian
2382
+ #: ../../admin/lang/dynamic_strings.php:278
2383
  msgid "l-sq-al"
2384
  msgstr "Albanian (Albania)"
2385
 
2386
  # Serbian
2387
+ #: ../../admin/lang/dynamic_strings.php:279
2388
  msgid "l-sr-ba"
2389
  msgstr "Serbian (Bosnia and Herzegovina)"
2390
 
2391
  # Serbian
2392
+ #: ../../admin/lang/dynamic_strings.php:280
2393
  msgid "l-sr-sp"
2394
  msgstr "Serbian (Serbia and Montenegro)"
2395
 
2396
  # Swedish
2397
+ #: ../../admin/lang/dynamic_strings.php:281
2398
  msgid "l-sv"
2399
  msgstr "Swedish"
2400
 
2401
  # Swedish
2402
+ #: ../../admin/lang/dynamic_strings.php:282
2403
  msgid "l-sv-fi"
2404
  msgstr "Swedish (Finland)"
2405
 
2406
  # Swedish
2407
+ #: ../../admin/lang/dynamic_strings.php:283
2408
  msgid "l-sv-se"
2409
  msgstr "Swedish (Sweden)"
2410
 
2411
  # Swahili
2412
+ #: ../../admin/lang/dynamic_strings.php:284
2413
  msgid "l-sw"
2414
  msgstr "Swahili"
2415
 
2416
  # Swahili
2417
+ #: ../../admin/lang/dynamic_strings.php:285
2418
  msgid "l-sw-ke"
2419
  msgstr "Swahili (Kenya)"
2420
 
2421
  # Tamil
2422
+ #: ../../admin/lang/dynamic_strings.php:286
2423
  msgid "l-ta"
2424
  msgstr "Tamil"
2425
 
2426
  # Tamil
2427
+ #: ../../admin/lang/dynamic_strings.php:287
2428
  msgid "l-ta-in"
2429
  msgstr "Tamil (India)"
2430
 
2431
  # Telugu
2432
+ #: ../../admin/lang/dynamic_strings.php:288
2433
  msgid "l-te"
2434
  msgstr "Telugu"
2435
 
2436
  # Telugu
2437
+ #: ../../admin/lang/dynamic_strings.php:289
2438
  msgid "l-te-in"
2439
  msgstr "Telugu (India)"
2440
 
2441
  # Thai
2442
+ #: ../../admin/lang/dynamic_strings.php:290
2443
  msgid "l-th"
2444
  msgstr "Thai"
2445
 
2446
  # Thai
2447
+ #: ../../admin/lang/dynamic_strings.php:291
2448
  msgid "l-th-th"
2449
  msgstr "Thai (Thailand)"
2450
 
2451
  # Tagalog
2452
+ #: ../../admin/lang/dynamic_strings.php:292
2453
  msgid "l-tl"
2454
  msgstr "Tagalog"
2455
 
2456
  # Tagalog
2457
+ #: ../../admin/lang/dynamic_strings.php:293
2458
  msgid "l-tl-ph"
2459
  msgstr "Tagalog (Philippines)"
2460
 
2461
  # Tswana
2462
+ #: ../../admin/lang/dynamic_strings.php:294
2463
  msgid "l-tn"
2464
  msgstr "Tswana"
2465
 
2466
  # Tswana
2467
+ #: ../../admin/lang/dynamic_strings.php:295
2468
  msgid "l-tn-za"
2469
  msgstr "Tswana (South Africa)"
2470
 
2471
  # Turkish
2472
+ #: ../../admin/lang/dynamic_strings.php:296
2473
  msgid "l-tr"
2474
  msgstr "Turkish"
2475
 
2476
  # Turkish
2477
+ #: ../../admin/lang/dynamic_strings.php:297
2478
  msgid "l-tr-tr"
2479
  msgstr "Turkish (Turkey)"
2480
 
2481
  # Tatar
2482
+ #: ../../admin/lang/dynamic_strings.php:298
2483
  msgid "l-tt"
2484
  msgstr "Tatar"
2485
 
2486
  # Tatar
2487
+ #: ../../admin/lang/dynamic_strings.php:299
2488
  msgid "l-tt-ru"
2489
  msgstr "Tatar (Russia)"
2490
 
2491
  # Tsonga
2492
+ #: ../../admin/lang/dynamic_strings.php:300
2493
  msgid "l-ts"
2494
  msgstr "Tsonga"
2495
 
2496
  # Ukrainian
2497
+ #: ../../admin/lang/dynamic_strings.php:301
2498
  msgid "l-uk"
2499
  msgstr "Ukrainian"
2500
 
2501
  # Ukrainian
2502
+ #: ../../admin/lang/dynamic_strings.php:302
2503
  msgid "l-uk-ua"
2504
  msgstr "Ukrainian (Ukraine)"
2505
 
2506
  # Urdu
2507
+ #: ../../admin/lang/dynamic_strings.php:303
2508
  msgid "l-ur"
2509
  msgstr "Urdu"
2510
 
2511
  # Urdu
2512
+ #: ../../admin/lang/dynamic_strings.php:304
2513
  msgid "l-ur-pk"
2514
  msgstr "Urdu (Pakistan)"
2515
 
2516
  # Uzbek
2517
+ #: ../../admin/lang/dynamic_strings.php:305
2518
  msgid "l-uz"
2519
  msgstr "Uzbek"
2520
 
2521
  # Uzbek
2522
+ #: ../../admin/lang/dynamic_strings.php:306
2523
  msgid "l-uz-uz"
2524
  msgstr "Uzbek (Uzbekistan)"
2525
 
2526
  # Vietnamese
2527
+ #: ../../admin/lang/dynamic_strings.php:307
2528
  msgid "l-vi"
2529
  msgstr "Vietnamese"
2530
 
2531
  # Vietnamese
2532
+ #: ../../admin/lang/dynamic_strings.php:308
2533
  msgid "l-vi-vn"
2534
  msgstr "Vietnamese (Viet Nam)"
2535
 
2536
  # Xhosa
2537
+ #: ../../admin/lang/dynamic_strings.php:309
2538
  msgid "l-xh"
2539
  msgstr "Xhosa"
2540
 
2541
  # Xhosa
2542
+ #: ../../admin/lang/dynamic_strings.php:310
2543
  msgid "l-xh-za"
2544
  msgstr "Xhosa (South Africa)"
2545
 
2546
  # Chinese
2547
+ #: ../../admin/lang/dynamic_strings.php:311
2548
  msgid "l-zh"
2549
  msgstr "Chinese"
2550
 
2551
  # Chinese
2552
+ #: ../../admin/lang/dynamic_strings.php:312
2553
  msgid "l-zh-cn"
2554
  msgstr "Chinese (S)"
2555
 
2556
  # Chinese
2557
+ #: ../../admin/lang/dynamic_strings.php:313
2558
  msgid "l-zh-hk"
2559
  msgstr "Chinese (Hong Kong)"
2560
 
2561
  # Chinese
2562
+ #: ../../admin/lang/dynamic_strings.php:314
2563
  msgid "l-zh-mo"
2564
  msgstr "Chinese (Macau)"
2565
 
2566
  # Chinese
2567
+ #: ../../admin/lang/dynamic_strings.php:315
2568
  msgid "l-zh-sg"
2569
  msgstr "Chinese (Singapore)"
2570
 
2571
  # Chinese
2572
+ #: ../../admin/lang/dynamic_strings.php:316
2573
  msgid "l-zh-tw"
2574
  msgstr "Chinese (T)"
2575
 
2576
  # Zulu
2577
+ #: ../../admin/lang/dynamic_strings.php:317
2578
  msgid "l-zu"
2579
  msgstr "Zulu"
2580
 
2581
  # Zulu
2582
+ #: ../../admin/lang/dynamic_strings.php:318
2583
  msgid "l-zu-za"
2584
  msgstr "Zulu (South Africa)"
2585
 
2586
+ #: ../../admin/lang/dynamic_strings.php:319
2587
+ #: ../../admin/view/wp-slimstat-reports.php:983 ../../wp-slimstat.php:1409
2588
  msgid "l-"
2589
  msgstr "Unknown"
2590
 
2591
  # Unknown
2592
+ #: ../../admin/lang/dynamic_strings.php:320
2593
  msgid "l-empty"
2594
  msgstr "Unknown"
2595
 
2596
  # Unknown
2597
+ #: ../../admin/lang/dynamic_strings.php:321
2598
  msgid "l-xx"
2599
  msgstr "Unknown"
2600
 
2601
+ #: ../../admin/lang/dynamic_strings.php:323
2602
  msgid "c-xy"
2603
  msgstr "Local IP"
2604
 
2610
  msgid "Load"
2611
  msgstr ""
2612
 
2613
+ #: ../../admin/view/index.php:66 ../../admin/view/wp-slimstat-reports.php:1236
2614
  msgid "Today"
2615
  msgstr ""
2616
 
2617
+ #: ../../admin/view/index.php:67 ../../admin/view/wp-slimstat-reports.php:1237
2618
  msgid "Yesterday"
2619
  msgstr ""
2620
 
2638
  msgid "Date Range"
2639
  msgstr ""
2640
 
2641
+ #: ../../admin/view/index.php:74 ../../admin/view/wp-slimstat-db.php:73
2642
  msgid "Day"
2643
  msgstr ""
2644
 
2645
+ #: ../../admin/view/index.php:84 ../../admin/view/wp-slimstat-db.php:74
2646
  msgid "Month"
2647
  msgstr ""
2648
 
2649
+ #: ../../admin/view/index.php:93 ../../admin/view/wp-slimstat-db.php:75
2650
  msgid "Year"
2651
  msgstr ""
2652
 
2653
+ #: ../../admin/view/index.php:94 ../../admin/view/wp-slimstat-db.php:72
2654
  msgid "Hour"
2655
  msgstr ""
2656
 
2658
  msgid "Min"
2659
  msgstr ""
2660
 
2661
+ #: ../../admin/view/index.php:103 ../../admin/view/wp-slimstat-db.php:78
2662
  msgid "hours"
2663
  msgstr ""
2664
 
2677
  "country of origin."
2678
  msgstr ""
2679
 
2680
+ #: ../../admin/view/right-now.php:12
2681
  msgid "Human"
2682
  msgstr ""
2683
 
2684
+ #: ../../admin/view/right-now.php:12
2685
  msgid "Bot/Crawler"
2686
  msgstr ""
2687
 
2688
+ #: ../../admin/view/right-now.php:12
2689
  msgid "Mobile Device"
2690
  msgstr ""
2691
 
2692
+ #: ../../admin/view/right-now.php:12
2693
  msgid "Syndication Reader"
2694
  msgstr ""
2695
 
2696
+ #: ../../admin/view/right-now.php:37
2697
+ #: ../../admin/view/wp-slimstat-reports.php:917
2698
+ #: ../../admin/view/wp-slimstat-reports.php:1386
2699
  msgid "No data to display"
2700
  msgstr ""
2701
 
2702
  # Unknown
2703
+ #: ../../admin/view/right-now.php:65
2704
+ #: ../../admin/view/wp-slimstat-reports.php:968
2705
+ #: ../../admin/view/wp-slimstat-reports.php:1585
2706
  msgid "c-"
2707
  msgstr "Unknown"
2708
 
2709
+ #: ../../admin/view/right-now.php:117 ../../admin/view/wp-slimstat-db.php:60
2710
  #: ../../admin/wp-slimstat-admin.php:993
2711
  #: ../../admin/wp-slimstat-admin.php:1033
2712
  msgid "Originating IP"
2713
  msgstr ""
2714
 
2715
+ #: ../../admin/view/right-now.php:141
2716
  msgid "Server Latency and Page Speed in milliseconds"
2717
  msgstr ""
2718
 
2719
+ #: ../../admin/view/right-now.php:141
2720
  msgid "SL"
2721
  msgstr ""
2722
 
2723
+ #: ../../admin/view/right-now.php:141
2724
  msgid "PS"
2725
  msgstr ""
2726
 
2727
+ #: ../../admin/view/right-now.php:153
2728
+ #: ../../admin/view/wp-slimstat-reports.php:1047
2729
+ #: ../../admin/view/wp-slimstat-reports.php:1051
2730
  msgid "Open this URL in a new window"
2731
  msgstr ""
2732
 
2733
+ #: ../../admin/view/right-now.php:156
2734
  msgid "Local search results page"
2735
  msgstr ""
2736
 
2737
+ #: ../../admin/view/right-now.php:161 ../../admin/view/wp-slimstat-db.php:42
2738
  #: ../../admin/wp-slimstat-admin.php:996
2739
  #: ../../admin/wp-slimstat-admin.php:1012
2740
  msgid "Search Terms"
2741
  msgstr ""
2742
 
2743
+ #: ../../admin/view/right-now.php:167
2744
  msgid "Open this referrer in a new window"
2745
  msgstr ""
2746
 
2747
+ #: ../../admin/view/right-now.php:168
2748
  msgid "Open this outbound link in a new window"
2749
  msgstr ""
2750
 
2751
+ #: ../../admin/view/right-now.php:169
 
 
 
 
2752
  msgid "Content Type"
2753
  msgstr ""
2754
 
2755
+ #: ../../admin/view/right-now.php:172
2756
  msgid "Delete this pageview"
2757
  msgstr ""
2758
 
2759
+ #: ../../admin/view/right-now.php:179
2760
+ msgid "Date and Time"
2761
+ msgstr ""
2762
+
2763
+ #: ../../admin/view/wp-slimstat-db.php:39
2764
  #: ../../admin/wp-slimstat-admin.php:1009
2765
  msgid "Browser"
2766
  msgstr ""
2767
 
2768
+ #: ../../admin/view/wp-slimstat-db.php:40
2769
+ #: ../../admin/view/wp-slimstat-reports.php:967
2770
  #: ../../admin/wp-slimstat-admin.php:1010
2771
  msgid "Country Code"
2772
  msgstr ""
2773
 
2774
+ #: ../../admin/view/wp-slimstat-db.php:41
2775
  msgid "IP Address"
2776
  msgstr ""
2777
 
2778
+ #: ../../admin/view/wp-slimstat-db.php:43
2779
+ #: ../../admin/view/wp-slimstat-reports.php:982
2780
  #: ../../admin/wp-slimstat-admin.php:1013
2781
  msgid "Language Code"
2782
  msgstr ""
2783
 
2784
+ #: ../../admin/view/wp-slimstat-db.php:44
2785
+ #: ../../admin/view/wp-slimstat-db.php:84
2786
  #: ../../admin/wp-slimstat-admin.php:1014
2787
  msgid "Operating System"
2788
  msgstr ""
2789
 
2790
+ #: ../../admin/view/wp-slimstat-db.php:45
2791
+ #: ../../admin/view/wp-slimstat-db.php:85
2792
  #: ../../admin/wp-slimstat-admin.php:1015
2793
  msgid "Permalink"
2794
  msgstr ""
2795
 
2796
+ #: ../../admin/view/wp-slimstat-db.php:46
2797
  #: ../../admin/wp-slimstat-admin.php:1016
2798
  msgid "Referer"
2799
  msgstr ""
2800
 
2801
+ #: ../../admin/view/wp-slimstat-db.php:47
2802
  #: ../../admin/wp-slimstat-admin.php:1017
2803
  msgid "Visitor's Name"
2804
  msgstr ""
2805
 
2806
+ #: ../../admin/view/wp-slimstat-db.php:48
2807
  #: ../../admin/wp-slimstat-admin.php:999
2808
  msgid "Outbound Link"
2809
  msgstr ""
2810
 
2811
+ #: ../../admin/view/wp-slimstat-db.php:49
2812
  msgid "Page Speed"
2813
  msgstr ""
2814
 
2815
+ #: ../../admin/view/wp-slimstat-db.php:51
2816
  msgid "-- Advanced filters --"
2817
  msgstr ""
2818
 
2819
+ #: ../../admin/view/wp-slimstat-db.php:52
2820
+ #: ../../admin/view/wp-slimstat-reports.php:311
2821
  msgid "Browser Capabilities"
2822
  msgstr ""
2823
 
2824
+ #: ../../admin/view/wp-slimstat-db.php:53
2825
  #: ../../admin/wp-slimstat-admin.php:1028
2826
  msgid "Browser Version"
2827
  msgstr ""
2828
 
2829
+ #: ../../admin/view/wp-slimstat-db.php:54
2830
  #: ../../admin/wp-slimstat-admin.php:1029
2831
  msgid "Browser Type"
2832
  msgstr ""
2833
 
2834
+ #: ../../admin/view/wp-slimstat-db.php:55
2835
  #: ../../admin/wp-slimstat-admin.php:998
2836
  msgid "User Agent"
2837
  msgstr ""
2838
 
2839
+ #: ../../admin/view/wp-slimstat-db.php:56
2840
+ msgid "Annotations"
 
2841
  msgstr ""
2842
 
2843
+ #: ../../admin/view/wp-slimstat-db.php:57
2844
  msgid "Server Latency"
2845
  msgstr ""
2846
 
2847
+ #: ../../admin/view/wp-slimstat-db.php:58
2848
  #: ../../admin/wp-slimstat-admin.php:1031
2849
  msgid "Post Author"
2850
  msgstr ""
2851
 
2852
+ #: ../../admin/view/wp-slimstat-db.php:59
2853
  #: ../../admin/wp-slimstat-admin.php:1032
2854
  msgid "Post Category ID"
2855
  msgstr ""
2856
 
2857
+ #: ../../admin/view/wp-slimstat-db.php:61
2858
  #: ../../admin/wp-slimstat-admin.php:1034
2859
  msgid "Resource Content Type"
2860
  msgstr ""
2861
 
2862
+ #: ../../admin/view/wp-slimstat-db.php:62
2863
  msgid "Resource ID"
2864
  msgstr ""
2865
 
2866
+ #: ../../admin/view/wp-slimstat-db.php:63
2867
  msgid "Screen Width"
2868
  msgstr ""
2869
 
2870
+ #: ../../admin/view/wp-slimstat-db.php:64
2871
  msgid "Screen Height"
2872
  msgstr ""
2873
 
2874
+ #: ../../admin/view/wp-slimstat-db.php:65
2875
  msgid "Viewport Size"
2876
  msgstr ""
2877
 
2878
+ #: ../../admin/view/wp-slimstat-db.php:66
2879
  #: ../../admin/wp-slimstat-admin.php:1036
2880
  msgid "Visit ID"
2881
  msgstr ""
2882
 
2883
+ #: ../../admin/view/wp-slimstat-db.php:71
2884
  msgid "Minute"
2885
  msgstr ""
2886
 
2887
+ #: ../../admin/view/wp-slimstat-db.php:76
2888
  msgid "+/-"
2889
  msgstr ""
2890
 
2891
+ #: ../../admin/view/wp-slimstat-db.php:79
2892
  msgid "minutes"
2893
  msgstr ""
2894
 
2895
+ #: ../../admin/view/wp-slimstat-db.php:80
2896
  msgid "Unix Timestamp"
2897
  msgstr ""
2898
 
2899
+ #: ../../admin/view/wp-slimstat-db.php:83
2900
+ msgid "Language"
2901
+ msgstr ""
2902
+
2903
+ #: ../../admin/view/wp-slimstat-db.php:88
2904
+ msgid "Event ID"
2905
+ msgstr ""
2906
+
2907
+ #: ../../admin/view/wp-slimstat-db.php:89
2908
+ #: ../../admin/view/wp-slimstat-reports.php:1400
2909
+ msgid "Type"
2910
+ msgstr ""
2911
+
2912
+ #: ../../admin/view/wp-slimstat-db.php:90
2913
+ msgid "Event Description"
2914
+ msgstr ""
2915
+
2916
+ #: ../../admin/view/wp-slimstat-db.php:91
2917
+ msgid "Event Coordinates"
2918
+ msgstr ""
2919
+
2920
+ #: ../../admin/view/wp-slimstat-db.php:93
2921
  msgid "Direction"
2922
  msgstr ""
2923
 
2924
+ #: ../../admin/view/wp-slimstat-db.php:94
2925
+ msgid "Max Results"
2926
  msgstr ""
2927
 
2928
+ #: ../../admin/view/wp-slimstat-db.php:95
2929
+ msgid "Offset"
2930
  msgstr ""
2931
 
2932
  #: ../../admin/view/wp-slimstat-reports.php:20
2933
+ #: ../../admin/wp-slimstat-admin.php:635 ../../wp-slimstat.php:1749
2934
+ msgid "Access Log"
2935
  msgstr ""
2936
 
2937
  #: ../../admin/view/wp-slimstat-reports.php:21
2938
  #: ../../admin/wp-slimstat-admin.php:636 ../../admin/wp-slimstat-admin.php:651
2939
+ #: ../../wp-slimstat.php:1750
2940
  msgid "Overview"
2941
  msgstr ""
2942
 
2943
  #: ../../admin/view/wp-slimstat-reports.php:22
2944
  #: ../../admin/wp-slimstat-admin.php:637 ../../admin/wp-slimstat-admin.php:652
2945
+ #: ../../wp-slimstat.php:1751
2946
  msgid "Audience"
2947
  msgstr ""
2948
 
2949
  #: ../../admin/view/wp-slimstat-reports.php:23
2950
  #: ../../admin/wp-slimstat-admin.php:638 ../../admin/wp-slimstat-admin.php:653
2951
+ #: ../../wp-slimstat.php:1752
2952
  msgid "Site Analysis"
2953
  msgstr ""
2954
 
2955
  #: ../../admin/view/wp-slimstat-reports.php:24
2956
+ #: ../../admin/view/wp-slimstat-reports.php:429
2957
  #: ../../admin/wp-slimstat-admin.php:639 ../../admin/wp-slimstat-admin.php:654
2958
+ #: ../../wp-slimstat.php:1753
2959
  msgid "Traffic Sources"
2960
  msgstr ""
2961
 
2962
  #: ../../admin/view/wp-slimstat-reports.php:25
2963
  #: ../../admin/wp-slimstat-admin.php:640 ../../admin/wp-slimstat-admin.php:655
2964
+ #: ../../wp-slimstat.php:1754
2965
  msgid "Map Overlay"
2966
  msgstr ""
2967
 
2982
  msgstr ""
2983
 
2984
  #: ../../admin/view/wp-slimstat-reports.php:77
2985
+ msgid ""
2986
+ "Social Sharing Analytics <a href=\"http://getsocial.io/?utm_source=slimstat"
2987
+ "\">powered by GetSocial</a>"
2988
+ msgstr ""
2989
+
2990
+ #: ../../admin/view/wp-slimstat-reports.php:84
2991
  msgid "Activity"
2992
  msgstr ""
2993
 
2994
+ #: ../../admin/view/wp-slimstat-reports.php:93
2995
  msgid "Color codes"
2996
  msgstr ""
2997
 
2998
+ #: ../../admin/view/wp-slimstat-reports.php:93
2999
  msgid "From search result page"
3000
  msgstr ""
3001
 
3002
+ #: ../../admin/view/wp-slimstat-reports.php:93
3003
  #: ../../admin/wp-slimstat-admin.php:991
3004
  msgid "Known Visitor"
3005
  msgstr ""
3006
 
3007
+ #: ../../admin/view/wp-slimstat-reports.php:93
3008
  msgid "Known Users"
3009
  msgstr ""
3010
 
3011
+ #: ../../admin/view/wp-slimstat-reports.php:93
3012
  msgid "Other Humans"
3013
  msgstr ""
3014
 
3015
+ #: ../../admin/view/wp-slimstat-reports.php:93
3016
  msgid "Bot or Crawler"
3017
  msgstr ""
3018
 
3019
+ #: ../../admin/view/wp-slimstat-reports.php:107
3020
  msgid "About Slimstat"
3021
  msgstr ""
3022
 
3023
+ #: ../../admin/view/wp-slimstat-reports.php:113
3024
  msgid "At a Glance"
3025
  msgstr ""
3026
 
3027
+ #: ../../admin/view/wp-slimstat-reports.php:119
3028
  msgid "Currently Online"
3029
  msgstr ""
3030
 
3031
+ #: ../../admin/view/wp-slimstat-reports.php:130
3032
  msgid ""
3033
  "When visitors leave a comment on your blog, WordPress assigns them a cookie. "
3034
  "Slimstat leverages this information to identify returning visitors. Please "
3035
  "note that visitors also include registered users."
3036
  msgstr ""
3037
 
3038
+ #: ../../admin/view/wp-slimstat-reports.php:133
3039
  msgid "Recent Search Terms"
3040
  msgstr ""
3041
 
3042
+ #: ../../admin/view/wp-slimstat-reports.php:142
3043
  msgid "Keywords used by your visitors to find your website on a search engine."
3044
  msgstr ""
3045
 
3046
+ #: ../../admin/view/wp-slimstat-reports.php:145
3047
  msgid "Top Pages"
3048
  msgstr ""
3049
 
3050
+ #: ../../admin/view/wp-slimstat-reports.php:156
3051
  msgid ""
3052
  "Here a \"page\" is not just a WordPress page type, but any web page on your "
3053
  "website, including posts, products, categories, and so on."
3054
  msgstr ""
3055
 
3056
+ #: ../../admin/view/wp-slimstat-reports.php:159
3057
  msgid "Top Traffic Sources"
3058
  msgstr ""
3059
 
3060
+ #: ../../admin/view/wp-slimstat-reports.php:171
3061
  msgid "Top Known Visitors"
3062
  msgstr ""
3063
 
3064
+ #: ../../admin/view/wp-slimstat-reports.php:182
3065
  msgid "Top Search Terms"
3066
  msgstr ""
3067
 
3068
+ #: ../../admin/view/wp-slimstat-reports.php:193
3069
  msgid "Top Countries"
3070
  msgstr ""
3071
 
3072
+ #: ../../admin/view/wp-slimstat-reports.php:202
3073
  msgid ""
3074
  "You can configure Slimstat to ignore a specific Country by setting the "
3075
  "corresponding filter under Settings > Slimstat > Filters."
3076
  msgstr ""
3077
 
3078
+ #: ../../admin/view/wp-slimstat-reports.php:205
3079
  msgid "Rankings"
3080
  msgstr ""
3081
 
3082
+ #: ../../admin/view/wp-slimstat-reports.php:209
3083
  msgid ""
3084
  "Slimstat retrieves live information from Alexa, Facebook and Google, to "
3085
  "measures your site's rankings. Values are updated every 12 hours. Filters "
3086
  "set above don't apply to this report."
3087
  msgstr ""
3088
 
3089
+ #: ../../admin/view/wp-slimstat-reports.php:212
3090
  msgid "Top Language Families"
3091
  msgstr ""
3092
 
3093
+ #: ../../admin/view/wp-slimstat-reports.php:226
3094
  msgid "Human Visits"
3095
  msgstr ""
3096
 
3097
+ #: ../../admin/view/wp-slimstat-reports.php:236
3098
  msgid "Audience Overview"
3099
  msgstr ""
3100
 
3101
+ #: ../../admin/view/wp-slimstat-reports.php:240
3102
  msgid ""
3103
  "Where not otherwise specified, the metrics in this report are referred to "
3104
  "human visitors."
3105
  msgstr ""
3106
 
3107
+ #: ../../admin/view/wp-slimstat-reports.php:243
3108
  msgid "Top Languages"
3109
  msgstr ""
3110
 
3111
+ #: ../../admin/view/wp-slimstat-reports.php:254
3112
  msgid "Top Browsers"
3113
  msgstr ""
3114
 
3115
+ #: ../../admin/view/wp-slimstat-reports.php:265
3116
  msgid "Top Service Providers"
3117
  msgstr ""
3118
 
3119
+ #: ../../admin/view/wp-slimstat-reports.php:274
3120
+ #: ../../admin/view/wp-slimstat-reports.php:286
3121
  msgid ""
3122
  "Internet Service Provider: a company which provides other companies or "
3123
  "individuals with access to the Internet. Your DSL or cable internet service "
3125
  "by setting the corresponding filter under Settings > Slimstat > Filters."
3126
  msgstr ""
3127
 
3128
+ #: ../../admin/view/wp-slimstat-reports.php:277
3129
  msgid "Top Operating Systems"
3130
  msgstr ""
3131
 
3132
+ #: ../../admin/view/wp-slimstat-reports.php:289
3133
  msgid "Top Screen Resolutions"
3134
  msgstr ""
3135
 
3136
+ #: ../../admin/view/wp-slimstat-reports.php:300
3137
+ msgid "Top Viewport Sizes"
3138
+ msgstr ""
3139
+
3140
+ #: ../../admin/view/wp-slimstat-reports.php:317
3141
  msgid "Visit Duration"
3142
  msgstr ""
3143
 
3144
+ #: ../../admin/view/wp-slimstat-reports.php:323
3145
  msgid "Recent Countries"
3146
  msgstr ""
3147
 
3148
+ #: ../../admin/view/wp-slimstat-reports.php:334
3149
+ msgid "Recent Viewport Sizes"
3150
  msgstr ""
3151
 
3152
+ #: ../../admin/view/wp-slimstat-reports.php:345
3153
  msgid "Recent Operating Systems"
3154
  msgstr ""
3155
 
3156
+ #: ../../admin/view/wp-slimstat-reports.php:356
3157
  msgid "Recent Browsers"
3158
  msgstr ""
3159
 
3160
+ #: ../../admin/view/wp-slimstat-reports.php:367
3161
  msgid "Recent Languages"
3162
  msgstr ""
3163
 
3164
+ #: ../../admin/view/wp-slimstat-reports.php:378
3165
  msgid "Top Browser Families"
3166
  msgstr ""
3167
 
3168
+ #: ../../admin/view/wp-slimstat-reports.php:387
3169
  msgid ""
3170
  "This report shows you what user agent families (no version considered) are "
3171
  "popular among your visitors."
3172
  msgstr ""
3173
 
3174
+ #: ../../admin/view/wp-slimstat-reports.php:390
3175
  msgid "Top OS Families"
3176
  msgstr ""
3177
 
3178
+ #: ../../admin/view/wp-slimstat-reports.php:401
3179
  msgid ""
3180
  "This report shows you what operating system families (no version considered) "
3181
  "are popular among your visitors."
3182
  msgstr ""
3183
 
3184
+ #: ../../admin/view/wp-slimstat-reports.php:404
3185
  msgid "Recent Users"
3186
  msgstr ""
3187
 
3188
+ #: ../../admin/view/wp-slimstat-reports.php:416
3189
  msgid "Top Users"
3190
  msgstr ""
3191
 
3192
+ #: ../../admin/view/wp-slimstat-reports.php:439
3193
  msgid "Summary"
3194
  msgstr ""
3195
 
3196
+ #: ../../admin/view/wp-slimstat-reports.php:445
3197
  msgid "Top Referring Search Engines"
3198
  msgstr ""
3199
 
3200
+ #: ../../admin/view/wp-slimstat-reports.php:457
3201
  msgid "Recent Exit Pages"
3202
  msgstr ""
3203
 
3204
+ #: ../../admin/view/wp-slimstat-reports.php:469
3205
  msgid "Recent Outbound Links"
3206
  msgstr ""
3207
 
3208
+ #: ../../admin/view/wp-slimstat-reports.php:481
3209
  msgid "Recent Posts"
3210
  msgstr ""
3211
 
3212
+ #: ../../admin/view/wp-slimstat-reports.php:493
3213
  msgid "Recent Bounce Pages"
3214
  msgstr ""
3215
 
3216
+ #: ../../admin/view/wp-slimstat-reports.php:504
3217
  msgid ""
3218
  "A <em>bounce page</em> is a single-page visit, or visit in which the person "
3219
  "left your site from the entrance (landing) page."
3220
  msgstr ""
3221
 
3222
+ #: ../../admin/view/wp-slimstat-reports.php:507
3223
  msgid "Recent Feeds"
3224
  msgstr ""
3225
 
3226
+ #: ../../admin/view/wp-slimstat-reports.php:519
3227
  msgid "Recent Pages Not Found"
3228
  msgstr ""
3229
 
3230
+ #: ../../admin/view/wp-slimstat-reports.php:531
3231
  msgid "Recent Internal Searches"
3232
  msgstr ""
3233
 
3234
+ #: ../../admin/view/wp-slimstat-reports.php:541
3235
  msgid "Searches performed using WordPress' built-in search functionality."
3236
  msgstr ""
3237
 
3238
+ #: ../../admin/view/wp-slimstat-reports.php:544
3239
  msgid "Top Categories"
3240
  msgstr ""
3241
 
3242
+ #: ../../admin/view/wp-slimstat-reports.php:557
3243
  msgid "Top Downloads"
3244
  msgstr ""
3245
 
3246
+ #: ../../admin/view/wp-slimstat-reports.php:567
3247
  msgid ""
3248
  "You can configure Slimstat to track specific file extensions as downloads."
3249
  msgstr ""
3250
 
3251
+ #: ../../admin/view/wp-slimstat-reports.php:570
3252
+ msgid "Recent Events"
3253
  msgstr ""
3254
 
3255
  #: ../../admin/view/wp-slimstat-reports.php:579
3256
+ #: ../../admin/view/wp-slimstat-reports.php:603
3257
+ msgid ""
3258
+ "This report lists any <em>event</em> occurred on your website. Please refer "
3259
+ "to the FAQ for more information on how to use this functionality."
3260
+ msgstr ""
3261
+
3262
+ #: ../../admin/view/wp-slimstat-reports.php:582
3263
+ msgid "Top Posts"
3264
+ msgstr ""
3265
+
3266
+ #: ../../admin/view/wp-slimstat-reports.php:594
3267
+ msgid "Top Events"
3268
+ msgstr ""
3269
+
3270
+ #: ../../admin/view/wp-slimstat-reports.php:606
3271
  msgid "Top Internal Searches"
3272
  msgstr ""
3273
 
3274
+ #: ../../admin/view/wp-slimstat-reports.php:618
3275
  msgid "Recent Categories"
3276
  msgstr ""
3277
 
3278
+ #: ../../admin/view/wp-slimstat-reports.php:630
3279
  msgid "Top Pages Not Found"
3280
  msgstr ""
3281
 
3282
+ #: ../../admin/view/wp-slimstat-reports.php:642
3283
  msgid "Top Authors"
3284
  msgstr ""
3285
 
3286
+ #: ../../admin/view/wp-slimstat-reports.php:653
3287
  msgid "Top Tags"
3288
  msgstr ""
3289
 
3290
+ #: ../../admin/view/wp-slimstat-reports.php:665
3291
  msgid "Recent Downloads"
3292
  msgstr ""
3293
 
3294
+ #: ../../admin/view/wp-slimstat-reports.php:677
3295
  msgid "Top Outbound Links"
3296
  msgstr ""
3297
 
3298
+ #: ../../admin/view/wp-slimstat-reports.php:688
3299
  msgid "Your Website"
3300
  msgstr ""
3301
 
3302
+ #: ../../admin/view/wp-slimstat-reports.php:692
3303
  msgid ""
3304
  "Your content at a glance: posts, comments, pingbacks, etc. Please note that "
3305
  "this report is not affected by the filters set here above."
3306
  msgstr ""
3307
 
3308
+ #: ../../admin/view/wp-slimstat-reports.php:695
3309
  msgid "Top Bounce Pages"
3310
  msgstr ""
3311
 
3312
+ #: ../../admin/view/wp-slimstat-reports.php:708
3313
  msgid "Top Exit Pages"
3314
  msgstr ""
3315
 
3316
+ #: ../../admin/view/wp-slimstat-reports.php:721
3317
  msgid "Top Entry Pages"
3318
  msgstr ""
3319
 
3320
+ #: ../../admin/view/wp-slimstat-reports.php:735
3321
  msgid "World Map"
3322
  msgstr ""
3323
 
3324
+ #: ../../admin/view/wp-slimstat-reports.php:808
3325
  msgid "Refresh"
3326
  msgstr ""
3327
 
3328
+ #: ../../admin/view/wp-slimstat-reports.php:845
3329
  #, php-format
3330
  msgid "Results %s - %s of %s"
3331
  msgstr ""
3332
 
3333
+ #: ../../admin/view/wp-slimstat-reports.php:847
3334
  msgid "Refresh in"
3335
  msgstr ""
3336
 
3337
+ #: ../../admin/view/wp-slimstat-reports.php:962
3338
+ msgid "Category ID"
3339
  msgstr ""
3340
 
3341
+ #: ../../admin/view/wp-slimstat-reports.php:988
3342
+ msgid "OS Code"
3343
  msgstr ""
3344
 
3345
+ #: ../../admin/view/wp-slimstat-reports.php:1009
3346
  msgid "Referrer"
3347
  msgstr ""
3348
 
3349
+ #: ../../admin/view/wp-slimstat-reports.php:1037
3350
+ #: ../../admin/view/wp-slimstat-reports.php:1250
3351
+ #: ../../admin/view/wp-slimstat-reports.php:1291
3352
+ #: ../../admin/view/wp-slimstat-reports.php:1297
3353
+ #: ../../admin/view/wp-slimstat-reports.php:1303
3354
+ #: ../../admin/view/wp-slimstat-reports.php:1309
3355
+ #: ../../admin/view/wp-slimstat-reports.php:1315
3356
+ #: ../../admin/view/wp-slimstat-reports.php:1321
3357
+ #: ../../admin/view/wp-slimstat-reports.php:1327
3358
+ #: ../../admin/view/wp-slimstat-reports.php:1407
3359
  msgid "Hits"
3360
  msgstr ""
3361
 
3362
+ #: ../../admin/view/wp-slimstat-reports.php:1088
3363
+ #: ../../admin/view/wp-slimstat-reports.php:1269
3364
  msgid "Visits"
3365
  msgstr ""
3366
 
3367
+ #: ../../admin/view/wp-slimstat-reports.php:1093
3368
  msgid "Domains"
3369
  msgstr ""
3370
 
3371
+ #: ../../admin/view/wp-slimstat-reports.php:1209
3372
  msgid "Dataset Size"
3373
  msgstr ""
3374
 
3375
+ #: ../../admin/view/wp-slimstat-reports.php:1210
3376
  msgid "DB Size"
3377
  msgstr ""
3378
 
3379
+ #: ../../admin/view/wp-slimstat-reports.php:1211
3380
  msgid "Tracking Active"
3381
  msgstr ""
3382
 
3383
+ #: ../../admin/view/wp-slimstat-reports.php:1212
3384
  msgid "Javascript Mode"
3385
  msgstr ""
3386
 
3387
+ #: ../../admin/view/wp-slimstat-reports.php:1213
3388
  msgid "Tracking Browser Caps"
3389
  msgstr ""
3390
 
3391
+ #: ../../admin/view/wp-slimstat-reports.php:1214
3392
  msgid "Auto purge"
3393
  msgstr ""
3394
 
3395
+ #: ../../admin/view/wp-slimstat-reports.php:1214
3396
  #: ../../admin/wp-slimstat-admin.php:1066
3397
  msgid "No"
3398
  msgstr ""
3399
 
3400
+ #: ../../admin/view/wp-slimstat-reports.php:1215
3401
  msgid "Oldest pageview"
3402
  msgstr ""
3403
 
3404
+ #: ../../admin/view/wp-slimstat-reports.php:1215
3405
  msgid "No visits"
3406
  msgstr ""
3407
 
3408
+ #: ../../admin/view/wp-slimstat-reports.php:1226
3409
+ #: ../../admin/view/wp-slimstat-reports.php:1351
3410
  msgid ""
3411
  "A request to load a single HTML file. Slimstat logs a \"pageview\" each time "
3412
  "the tracking code is executed."
3413
  msgstr ""
3414
 
3415
+ #: ../../admin/view/wp-slimstat-reports.php:1228
3416
  msgid "Days in Range"
3417
  msgstr ""
3418
 
3419
+ #: ../../admin/view/wp-slimstat-reports.php:1229
3420
  msgid ""
3421
  "How many pages have been visited on average every day during the current "
3422
  "period."
3423
  msgstr ""
3424
 
3425
+ #: ../../admin/view/wp-slimstat-reports.php:1230
3426
  msgid "Average Daily Pageviews"
3427
  msgstr ""
3428
 
3429
+ #: ../../admin/view/wp-slimstat-reports.php:1231
3430
  msgid ""
3431
  "Visitors who landed on your site after searching for a keyword on Google, "
3432
  "Yahoo, etc."
3433
  msgstr ""
3434
 
3435
+ #: ../../admin/view/wp-slimstat-reports.php:1232
3436
  msgid "From Search Results"
3437
  msgstr ""
3438
 
3439
+ #: ../../admin/view/wp-slimstat-reports.php:1233
3440
  msgid ""
3441
  "Used to differentiate between multiple requests to download a file from one "
3442
  "internet address (IP) and requests originating from many distinct addresses"
3443
  msgstr ""
3444
 
3445
+ #: ../../admin/view/wp-slimstat-reports.php:1235
3446
  msgid "Last 30 minutes"
3447
  msgstr ""
3448
 
3449
+ #: ../../admin/view/wp-slimstat-reports.php:1268
3450
  msgid ""
3451
  "A visit is a session of at most 30 minutes. Returning visitors are counted "
3452
  "multiple times if they perform multiple visits."
3453
  msgstr ""
3454
 
3455
+ #: ../../admin/view/wp-slimstat-reports.php:1270
3456
  msgid "It includes only traffic generated by human visitors."
3457
  msgstr ""
3458
 
3459
+ #: ../../admin/view/wp-slimstat-reports.php:1272
3460
+ #: ../../admin/view/wp-slimstat-reports.php:1363
3461
  msgid ""
3462
  "Percentage of single-page visits, i.e. visits in which the person left your "
3463
  "site from the entrance page."
3464
  msgstr ""
3465
 
3466
+ #: ../../admin/view/wp-slimstat-reports.php:1273
3467
  msgid "Bounce rate"
3468
  msgstr ""
3469
 
3470
+ #: ../../admin/view/wp-slimstat-reports.php:1274
3471
  msgid "Visitors who had previously left a comment on your blog."
3472
  msgstr ""
3473
 
3474
+ #: ../../admin/view/wp-slimstat-reports.php:1275
3475
  msgid "Known visitors"
3476
  msgstr ""
3477
 
3478
+ #: ../../admin/view/wp-slimstat-reports.php:1276
3479
  msgid "Human users who visited your site only once."
3480
  msgstr ""
3481
 
3482
+ #: ../../admin/view/wp-slimstat-reports.php:1277
3483
  msgid "New visitors"
3484
  msgstr ""
3485
 
3486
+ #: ../../admin/view/wp-slimstat-reports.php:1278
3487
  msgid "Bots"
3488
  msgstr ""
3489
 
3490
+ #: ../../admin/view/wp-slimstat-reports.php:1279
3491
  msgid "Pages per visit"
3492
  msgstr ""
3493
 
3494
+ #: ../../admin/view/wp-slimstat-reports.php:1280
3495
  msgid "Longest visit"
3496
  msgstr ""
3497
 
3498
+ #: ../../admin/view/wp-slimstat-reports.php:1280
3499
  msgid "hits"
3500
  msgstr ""
3501
 
3502
+ #: ../../admin/view/wp-slimstat-reports.php:1293
3503
  msgid "0 - 30 seconds"
3504
  msgstr ""
3505
 
3506
+ #: ../../admin/view/wp-slimstat-reports.php:1299
3507
  msgid "31 - 60 seconds"
3508
  msgstr ""
3509
 
3510
+ #: ../../admin/view/wp-slimstat-reports.php:1305
3511
  msgid "1 - 3 minutes"
3512
  msgstr ""
3513
 
3514
+ #: ../../admin/view/wp-slimstat-reports.php:1311
3515
  msgid "3 - 5 minutes"
3516
  msgstr ""
3517
 
3518
+ #: ../../admin/view/wp-slimstat-reports.php:1317
3519
  msgid "5 - 7 minutes"
3520
  msgstr ""
3521
 
3522
+ #: ../../admin/view/wp-slimstat-reports.php:1323
3523
  msgid "7 - 10 minutes"
3524
  msgstr ""
3525
 
3526
+ #: ../../admin/view/wp-slimstat-reports.php:1329
3527
  msgid "More than 10 minutes"
3528
  msgstr ""
3529
 
3530
+ #: ../../admin/view/wp-slimstat-reports.php:1338
3531
  msgid "Average time on site"
3532
  msgstr ""
3533
 
3534
+ #: ../../admin/view/wp-slimstat-reports.php:1353
3535
  msgid ""
3536
  "A referrer (or referring site) is the site that a visitor previously visited "
3537
  "before following a link to your site."
3538
  msgstr ""
3539
 
3540
+ #: ../../admin/view/wp-slimstat-reports.php:1354
3541
  msgid "Unique Referrers"
3542
  msgstr ""
3543
 
3544
+ #: ../../admin/view/wp-slimstat-reports.php:1355
3545
  msgid ""
3546
  "Visitors who visited the site by typing the URL directly into their browser. "
3547
  "<em>Direct</em> can also refer to the visitors who clicked on the links from "
3549
  "documents that don't include tracking variables."
3550
  msgstr ""
3551
 
3552
+ #: ../../admin/view/wp-slimstat-reports.php:1356
3553
  msgid "Direct Pageviews"
3554
  msgstr ""
3555
 
3556
+ #: ../../admin/view/wp-slimstat-reports.php:1357
3557
  msgid ""
3558
  "Visitors who came to your site via searches on Google or some other search "
3559
  "engine."
3560
  msgstr ""
3561
 
3562
+ #: ../../admin/view/wp-slimstat-reports.php:1358
3563
  msgid "From a search result"
3564
  msgstr ""
3565
 
3566
+ #: ../../admin/view/wp-slimstat-reports.php:1359
3567
  msgid ""
3568
  "The first page that a user views during a session. This is also known as the "
3569
  "<em>entrance page</em>. For example, if they search for 'Brooklyn Office "
3571
  "a landing page."
3572
  msgstr ""
3573
 
3574
+ #: ../../admin/view/wp-slimstat-reports.php:1360
3575
  msgid "Unique Landing Pages"
3576
  msgstr ""
3577
 
3578
+ #: ../../admin/view/wp-slimstat-reports.php:1361
3579
  msgid "Number of single-page visits to your site over the selected period."
3580
  msgstr ""
3581
 
3582
+ #: ../../admin/view/wp-slimstat-reports.php:1362
3583
  msgid "Bounce Pages"
3584
  msgstr ""
3585
 
3586
+ #: ../../admin/view/wp-slimstat-reports.php:1364
3587
  msgid "New Visitors Rate"
3588
  msgstr ""
3589
 
3590
+ #: ../../admin/view/wp-slimstat-reports.php:1365
3591
  msgid ""
3592
  "Visitors who visited the site in the last 5 minutes coming from a search "
3593
  "engine."
3594
  msgstr ""
3595
 
3596
+ #: ../../admin/view/wp-slimstat-reports.php:1366
3597
  msgid "Currently from search engines"
3598
  msgstr ""
3599
 
3600
+ #: ../../admin/view/wp-slimstat-reports.php:1404
3601
+ msgid "Coordinates"
3602
+ msgstr ""
3603
+
3604
+ #: ../../admin/view/wp-slimstat-reports.php:1404
3605
+ msgid "Date"
3606
+ msgstr ""
3607
+
3608
+ #: ../../admin/view/wp-slimstat-reports.php:1483
3609
  msgid "Number of pages in your site included in Google's index."
3610
  msgstr ""
3611
 
3612
+ #: ../../admin/view/wp-slimstat-reports.php:1484
3613
  msgid "Google Index"
3614
  msgstr ""
3615
 
3616
+ #: ../../admin/view/wp-slimstat-reports.php:1485
3617
  msgid "Number of pages, according to Google, that link back to your site."
3618
  msgstr ""
3619
 
3620
+ #: ../../admin/view/wp-slimstat-reports.php:1486
3621
  msgid "Google Backlinks"
3622
  msgstr ""
3623
 
3624
+ #: ../../admin/view/wp-slimstat-reports.php:1487
3625
  msgid ""
3626
  "How many times the Facebook Like button has been approximately clicked on "
3627
  "your site."
3628
  msgstr ""
3629
 
3630
+ #: ../../admin/view/wp-slimstat-reports.php:1488
3631
  msgid "Facebook Likes"
3632
  msgstr ""
3633
 
3634
+ #: ../../admin/view/wp-slimstat-reports.php:1489
3635
  msgid ""
3636
  "How many times your site has been shared by someone on the social network."
3637
  msgstr ""
3638
 
3639
+ #: ../../admin/view/wp-slimstat-reports.php:1490
3640
  msgid "Facebook Shares"
3641
  msgstr ""
3642
 
3643
+ #: ../../admin/view/wp-slimstat-reports.php:1491
3644
  msgid "How many times links to your website have been clicked on Facebook."
3645
  msgstr ""
3646
 
3647
+ #: ../../admin/view/wp-slimstat-reports.php:1492
3648
  msgid "Facebook Clicks"
3649
  msgstr ""
3650
 
3651
+ #: ../../admin/view/wp-slimstat-reports.php:1493
3652
  msgid ""
3653
  "Alexa is a subsidiary company of Amazon.com which provides commercial web "
3654
  "traffic data."
3655
  msgstr ""
3656
 
3657
+ #: ../../admin/view/wp-slimstat-reports.php:1494
3658
  msgid "Alexa World Rank"
3659
  msgstr ""
3660
 
3661
+ #: ../../admin/view/wp-slimstat-reports.php:1495
3662
  msgid "Alexa Country Rank"
3663
  msgstr ""
3664
 
3665
+ #: ../../admin/view/wp-slimstat-reports.php:1496
3666
  msgid "Alexa Popularity"
3667
  msgstr ""
3668
 
3669
+ #: ../../admin/view/wp-slimstat-reports.php:1526
3670
+ msgid "Error contacting the GetSocial endpoint."
3671
+ msgstr ""
3672
+
3673
+ #: ../../admin/view/wp-slimstat-reports.php:1534
3674
+ msgid "Error decoding the GetSocial payload."
3675
+ msgstr ""
3676
+
3677
+ #: ../../admin/view/wp-slimstat-reports.php:1566
3678
+ msgid ""
3679
+ "Thanks to a partnership with GetSocial.io, you can access your website's<br/"
3680
+ ">social media metrics and identify your top performing posts.<br/> <a "
3681
+ "class='button-ajax' title='Enable this functionality' href='"
3682
+ msgstr ""
3683
+
3684
  # Unknown
3685
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3686
  msgid "c-xx"
3687
  msgstr "Unknown"
3688
 
3689
  # Afghanistan
3690
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3691
  msgid "c-af"
3692
  msgstr "Afghanistan"
3693
 
3694
  # Åland Islands
3695
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3696
  msgid "c-ax"
3697
  msgstr "Aland Islands"
3698
 
3699
  # Albania
3700
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3701
  msgid "c-al"
3702
  msgstr "Albania"
3703
 
3704
  # Algeria
3705
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3706
  msgid "c-dz"
3707
  msgstr "Algeria"
3708
 
3709
  # Andorra
3710
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3711
  msgid "c-ad"
3712
  msgstr "Andorra"
3713
 
3714
  # Angola
3715
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3716
  msgid "c-ao"
3717
  msgstr "Angola"
3718
 
3719
  # Anguilla
3720
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3721
  msgid "c-ai"
3722
  msgstr "Anguilla"
3723
 
3724
  # Antigua and Barbuda
3725
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3726
  msgid "c-ag"
3727
  msgstr "Antigua and Barbuda"
3728
 
3729
  # Argentina
3730
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3731
  msgid "c-ar"
3732
  msgstr "Argentina"
3733
 
3734
  # Armenia
3735
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3736
  msgid "c-am"
3737
  msgstr "Armenia"
3738
 
3739
  # Aruba
3740
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3741
  msgid "c-aw"
3742
  msgstr "Aruba"
3743
 
3744
  # Australia
3745
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3746
  msgid "c-au"
3747
  msgstr "Australia"
3748
 
3749
  # Austria
3750
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3751
  msgid "c-at"
3752
  msgstr "Austria"
3753
 
3754
  # Azerbaijan
3755
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3756
  msgid "c-az"
3757
  msgstr "Azerbaijan"
3758
 
3759
  # Bahamas
3760
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3761
  msgid "c-bs"
3762
  msgstr "Bahamas"
3763
 
3764
  # Bahrain
3765
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3766
  msgid "c-bh"
3767
  msgstr "Bahrain"
3768
 
3769
  # Bangladesh
3770
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3771
  msgid "c-bd"
3772
  msgstr "Bangladesh"
3773
 
3774
  # Barbados
3775
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3776
  msgid "c-bb"
3777
  msgstr "Barbados"
3778
 
3779
  # Belarus
3780
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3781
  msgid "c-by"
3782
  msgstr "Belarus"
3783
 
3784
  # Belgium
3785
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3786
  msgid "c-be"
3787
  msgstr "Belgium"
3788
 
3789
  # Belize
3790
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3791
  msgid "c-bz"
3792
  msgstr "Belize"
3793
 
3794
  # Benin
3795
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3796
  msgid "c-bj"
3797
  msgstr "Benin"
3798
 
3799
  # Bermuda
3800
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3801
  msgid "c-bm"
3802
  msgstr "Bermuda"
3803
 
3804
  # Bhutan
3805
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3806
  msgid "c-bt"
3807
  msgstr "Bhutan"
3808
 
3809
  # Bolivia
3810
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3811
  msgid "c-bo"
3812
  msgstr "Bolivia"
3813
 
3814
  # Bosnia and Herzegovina
3815
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3816
  msgid "c-ba"
3817
  msgstr "Bosnia and Herzegovina"
3818
 
3819
  # Botswana
3820
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3821
  msgid "c-bw"
3822
  msgstr "Botswana"
3823
 
3824
  # Brazil
3825
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3826
  msgid "c-br"
3827
  msgstr "Brazil"
3828
 
3829
  # Brunei Darussalam
3830
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3831
  msgid "c-bn"
3832
  msgstr "Brunei Darussalam"
3833
 
3834
  # Bulgaria
3835
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3836
  msgid "c-bg"
3837
  msgstr "Bulgaria"
3838
 
3839
  # Burkina Faso
3840
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3841
  msgid "c-bf"
3842
  msgstr "Burkina Faso"
3843
 
3844
  # Burundi
3845
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3846
  msgid "c-bi"
3847
  msgstr "Burundi"
3848
 
3849
  # Cambodia
3850
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3851
  msgid "c-kh"
3852
  msgstr "Cambodia"
3853
 
3854
  # Cameroon
3855
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3856
  msgid "c-cm"
3857
  msgstr "Cameroon"
3858
 
3859
  # Canada
3860
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3861
  msgid "c-ca"
3862
  msgstr "Canada"
3863
 
3864
  # Cape Verde
3865
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3866
  msgid "c-cv"
3867
  msgstr "Cape Verde"
3868
 
3869
  # Cayman Islands
3870
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3871
  msgid "c-ky"
3872
  msgstr "Cayman Islands"
3873
 
3874
  # Central African Republic
3875
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3876
  msgid "c-cf"
3877
  msgstr "Central African Republic"
3878
 
3879
  # Chad
3880
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3881
  msgid "c-td"
3882
  msgstr "Chad"
3883
 
3884
  # Chile
3885
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3886
  msgid "c-cl"
3887
  msgstr "Chile"
3888
 
3889
  # China
3890
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3891
  msgid "c-cn"
3892
  msgstr "China"
3893
 
3894
  # Colombia
3895
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3896
  msgid "c-co"
3897
  msgstr "Colombia"
3898
 
3899
  # Comoros
3900
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3901
  msgid "c-km"
3902
  msgstr "Comoros"
3903
 
3904
  # Congo
3905
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3906
  msgid "c-cg"
3907
  msgstr "Congo"
3908
 
3909
  # The Democratic Republic of the Congo
3910
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3911
  msgid "c-cd"
3912
  msgstr "The Democratic Republic of the Congo"
3913
 
3914
  # Costa Rica
3915
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3916
  msgid "c-cr"
3917
  msgstr "Costa Rica"
3918
 
3919
  # Côte d'Ivoire
3920
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3921
  msgid "c-ci"
3922
  msgstr "Côte d'Ivoire"
3923
 
3924
  # Croatia
3925
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3926
  msgid "c-hr"
3927
  msgstr "Croatia"
3928
 
3929
  # Cuba
3930
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3931
  msgid "c-cu"
3932
  msgstr "Cuba"
3933
 
3934
  # Cyprus
3935
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3936
  msgid "c-cy"
3937
  msgstr "Cyprus"
3938
 
3939
  # Czech Republic
3940
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3941
  msgid "c-cz"
3942
  msgstr "Czech Republic"
3943
 
3944
  # Denmark
3945
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3946
  msgid "c-dk"
3947
  msgstr "Denmark"
3948
 
3949
  # Djibouti
3950
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3951
  msgid "c-dj"
3952
  msgstr "Djibouti"
3953
 
3954
  # Dominica
3955
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3956
  msgid "c-dm"
3957
  msgstr "Dominica"
3958
 
3959
  # Dominican Republic
3960
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3961
  msgid "c-do"
3962
  msgstr "Dominican Republic"
3963
 
3964
  # Ecuador
3965
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3966
  msgid "c-ec"
3967
  msgstr "Ecuador"
3968
 
3969
  # Egypt
3970
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3971
  msgid "c-eg"
3972
  msgstr "Egypt"
3973
 
3974
  # El Salvador
3975
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3976
  msgid "c-sv"
3977
  msgstr "El Salvador"
3978
 
3979
  # Equatorial Guinea
3980
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3981
  msgid "c-gq"
3982
  msgstr "Equatorial Guinea"
3983
 
3984
  # Eritrea
3985
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3986
  msgid "c-er"
3987
  msgstr "Eritrea"
3988
 
3989
  # Estonia
3990
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3991
  msgid "c-ee"
3992
  msgstr "Estonia"
3993
 
3994
  # Ethiopia
3995
+ #: ../../admin/view/wp-slimstat-reports.php:1576
3996
  msgid "c-et"
3997
  msgstr "Ethiopia"
3998
 
3999
  # Faroe Islands
4000
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4001
  msgid "c-fo"
4002
  msgstr "Faroe Islands"
4003
 
4004
  # Falkland Islands (Malvinas)
4005
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4006
  msgid "c-fk"
4007
  msgstr "Falkland Islands (Malvinas)"
4008
 
4009
  # Fiji
4010
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4011
  msgid "c-fj"
4012
  msgstr "Fiji"
4013
 
4014
  # Finland
4015
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4016
  msgid "c-fi"
4017
  msgstr "Finland"
4018
 
4019
  # France
4020
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4021
  msgid "c-fr"
4022
  msgstr "France"
4023
 
4024
  # French Guiana
4025
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4026
  msgid "c-gf"
4027
  msgstr "French Guiana"
4028
 
4029
  # Gabon
4030
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4031
  msgid "c-ga"
4032
  msgstr "Gabon"
4033
 
4034
  # Gambia
4035
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4036
  msgid "c-gm"
4037
  msgstr "Gambia"
4038
 
4039
  # Georgia
4040
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4041
  msgid "c-ge"
4042
  msgstr "Georgia"
4043
 
4044
  # Germany
4045
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4046
  msgid "c-de"
4047
  msgstr "Germany"
4048
 
4049
  # Ghana
4050
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4051
  msgid "c-gh"
4052
  msgstr "Ghana"
4053
 
4054
  # Greece
4055
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4056
  msgid "c-gr"
4057
  msgstr "Greece"
4058
 
4059
  # Greenland
4060
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4061
  msgid "c-gl"
4062
  msgstr "Greenland"
4063
 
4064
  # Grenada
4065
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4066
  msgid "c-gd"
4067
  msgstr "Grenada"
4068
 
4069
  # Guadeloupe
4070
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4071
  msgid "c-gp"
4072
  msgstr "Guadeloupe"
4073
 
4074
  # Guatemala
4075
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4076
  msgid "c-gt"
4077
  msgstr "Guatemala"
4078
 
4079
  # Guinea
4080
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4081
  msgid "c-gn"
4082
  msgstr "Guinea"
4083
 
4084
  # Guinea-Bissau
4085
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4086
  msgid "c-gw"
4087
  msgstr "Guinea-Bissau"
4088
 
4089
  # Guyana
4090
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4091
  msgid "c-gy"
4092
  msgstr "Guyana"
4093
 
4094
  # Haiti
4095
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4096
  msgid "c-ht"
4097
  msgstr "Haiti"
4098
 
4099
  # Honduras
4100
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4101
  msgid "c-hn"
4102
  msgstr "Honduras"
4103
 
4104
  # Hong Kong
4105
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4106
  msgid "c-hk"
4107
  msgstr "Hong Kong"
4108
 
4109
  # Hungary
4110
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4111
  msgid "c-hu"
4112
  msgstr "Hungary"
4113
 
4114
  # Iceland
4115
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4116
  msgid "c-is"
4117
  msgstr "Iceland"
4118
 
4119
  # India
4120
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4121
  msgid "c-in"
4122
  msgstr "India"
4123
 
4124
  # Indonesia
4125
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4126
  msgid "c-id"
4127
  msgstr "Indonesia"
4128
 
4129
  # Islamic Republic of Iran
4130
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4131
  msgid "c-ir"
4132
  msgstr "Islamic Republic of Iran"
4133
 
4134
  # Iraq
4135
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4136
  msgid "c-iq"
4137
  msgstr "Iraq"
4138
 
4139
  # Ireland
4140
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4141
  msgid "c-ie"
4142
  msgstr "Ireland"
4143
 
4144
  # Israel
4145
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4146
  msgid "c-il"
4147
  msgstr "Israel"
4148
 
4149
  # Italy
4150
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4151
  msgid "c-it"
4152
  msgstr "Italy"
4153
 
4154
  # Jamaica
4155
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4156
  msgid "c-jm"
4157
  msgstr "Jamaica"
4158
 
4159
  # Japan
4160
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4161
  msgid "c-jp"
4162
  msgstr "Japan"
4163
 
4164
  # Jordan
4165
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4166
  msgid "c-jo"
4167
  msgstr "Jordan"
4168
 
4169
  # Kazakhstan
4170
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4171
  msgid "c-kz"
4172
  msgstr "Kazakhstan"
4173
 
4174
  # Kenya
4175
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4176
  msgid "c-ke"
4177
  msgstr "Kenya"
4178
 
4179
  # Nauru
4180
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4181
  msgid "c-nr"
4182
  msgstr "Nauru"
4183
 
4184
  # Democratic People's Republic of Korea
4185
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4186
  msgid "c-kp"
4187
  msgstr "Democratic People's Republic of Korea"
4188
 
4189
  # Republic of Korea
4190
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4191
  msgid "c-kr"
4192
  msgstr "Republic of Korea"
4193
 
4194
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4195
  msgid "c-kv"
4196
  msgstr "Kosovo"
4197
 
4198
  # Kuwait
4199
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4200
  msgid "c-kw"
4201
  msgstr "Kuwait"
4202
 
4203
  # Kyrgyzstan
4204
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4205
  msgid "c-kg"
4206
  msgstr "Kyrgyzstan"
4207
 
4208
  # Lao People's Democratic Republic
4209
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4210
  msgid "c-la"
4211
  msgstr "Lao People's Democratic Republic"
4212
 
4213
  # Latvia
4214
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4215
  msgid "c-lv"
4216
  msgstr "Latvia"
4217
 
4218
  # Lebanon
4219
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4220
  msgid "c-lb"
4221
  msgstr "Lebanon"
4222
 
4223
  # Lesotho
4224
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4225
  msgid "c-ls"
4226
  msgstr "Lesotho"
4227
 
4228
  # Liberia
4229
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4230
  msgid "c-lr"
4231
  msgstr "Liberia"
4232
 
4233
  # Libyan Arab Jamahiriya
4234
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4235
  msgid "c-ly"
4236
  msgstr "Libyan Arab Jamahiriya"
4237
 
4238
  # Liechtenstein
4239
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4240
  msgid "c-li"
4241
  msgstr "Liechtenstein"
4242
 
4243
  # Lithuania
4244
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4245
  msgid "c-lt"
4246
  msgstr "Lithuania"
4247
 
4248
  # Luxembourg
4249
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4250
  msgid "c-lu"
4251
  msgstr "Luxembourg"
4252
 
4253
  # The Former Yugoslav Republic of Macedonia
4254
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4255
  msgid "c-mk"
4256
  msgstr "The Former Yugoslav Republic of Macedonia"
4257
 
4258
  # Madagascar
4259
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4260
  msgid "c-mg"
4261
  msgstr "Madagascar"
4262
 
4263
  # Malawi
4264
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4265
  msgid "c-mw"
4266
  msgstr "Malawi"
4267
 
4268
  # Malaysia
4269
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4270
  msgid "c-my"
4271
  msgstr "Malaysia"
4272
 
4273
  # Mali
4274
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4275
  msgid "c-ml"
4276
  msgstr "Mali"
4277
 
4278
  # Malta
4279
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4280
  msgid "c-mt"
4281
  msgstr "Malta"
4282
 
4283
  # Martinique
4284
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4285
  msgid "c-mq"
4286
  msgstr "Martinique"
4287
 
4288
  # Mauritania
4289
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4290
  msgid "c-mr"
4291
  msgstr "Mauritania"
4292
 
4293
  # Mauritius
4294
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4295
  msgid "c-mu"
4296
  msgstr "Mauritius"
4297
 
4298
  # Mexico
4299
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4300
  msgid "c-mx"
4301
  msgstr "Mexico"
4302
 
4303
  # Moldova
4304
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4305
  msgid "c-md"
4306
  msgstr "Moldova"
4307
 
4308
  # Mongolia
4309
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4310
  msgid "c-mn"
4311
  msgstr "Mongolia"
4312
 
4313
  # Montenegro
4314
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4315
  msgid "c-me"
4316
  msgstr "Montenegro"
4317
 
4318
  # Montserrat
4319
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4320
  msgid "c-ms"
4321
  msgstr "Montserrat"
4322
 
4323
  # Morocco
4324
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4325
  msgid "c-ma"
4326
  msgstr "Morocco"
4327
 
4328
  # Mozambique
4329
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4330
  msgid "c-mz"
4331
  msgstr "Mozambique"
4332
 
4333
  # Myanmar
4334
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4335
  msgid "c-mm"
4336
  msgstr "Myanmar"
4337
 
4338
  # Namibia
4339
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4340
  msgid "c-na"
4341
  msgstr "Namibia"
4342
 
4343
  # Nepal
4344
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4345
  msgid "c-np"
4346
  msgstr "Nepal"
4347
 
4348
  # Netherlands
4349
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4350
  msgid "c-nl"
4351
  msgstr "Netherlands"
4352
 
4353
  # New Caledonia
4354
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4355
  msgid "c-nc"
4356
  msgstr "New Caledonia"
4357
 
4358
  # New Zealand
4359
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4360
  msgid "c-nz"
4361
  msgstr "New Zealand"
4362
 
4363
  # Nicaragua
4364
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4365
  msgid "c-ni"
4366
  msgstr "Nicaragua"
4367
 
4368
  # Niger
4369
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4370
  msgid "c-ne"
4371
  msgstr "Niger"
4372
 
4373
  # Nigeria
4374
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4375
  msgid "c-ng"
4376
  msgstr "Nigeria"
4377
 
4378
  # Norway
4379
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4380
  msgid "c-no"
4381
  msgstr "Norway"
4382
 
4383
  # Oman
4384
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4385
  msgid "c-om"
4386
  msgstr "Oman"
4387
 
4388
  # Pakistan
4389
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4390
  msgid "c-pk"
4391
  msgstr "Pakistan"
4392
 
4393
  # Palau
4394
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4395
  msgid "c-pw"
4396
  msgstr "Palau"
4397
 
4398
  # Occupied Palestinian Territory
4399
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4400
  msgid "c-ps"
4401
  msgstr "Occupied Palestinian Territory"
4402
 
4403
  # Panama
4404
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4405
  msgid "c-pa"
4406
  msgstr "Panama"
4407
 
4408
  # Papua New Guinea
4409
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4410
  msgid "c-pg"
4411
  msgstr "Papua New Guinea"
4412
 
4413
  # Paraguay
4414
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4415
  msgid "c-py"
4416
  msgstr "Paraguay"
4417
 
4418
  # Peru
4419
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4420
  msgid "c-pe"
4421
  msgstr "Peru"
4422
 
4423
  # Philippines
4424
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4425
  msgid "c-ph"
4426
  msgstr "Philippines"
4427
 
4428
  # Poland
4429
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4430
  msgid "c-pl"
4431
  msgstr "Poland"
4432
 
4433
  # Portugal
4434
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4435
  msgid "c-pt"
4436
  msgstr "Portugal"
4437
 
4438
  # Puerto Rico
4439
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4440
  msgid "c-pr"
4441
  msgstr "Puerto Rico"
4442
 
4443
  # Qatar
4444
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4445
  msgid "c-qa"
4446
  msgstr "Qatar"
4447
 
4448
  # Réunion
4449
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4450
  msgid "c-re"
4451
  msgstr "Réunion"
4452
 
4453
  # Romania
4454
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4455
  msgid "c-ro"
4456
  msgstr "Romania"
4457
 
4458
  # Russian Federation
4459
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4460
  msgid "c-ru"
4461
  msgstr "Russian Federation"
4462
 
4463
  # Rwanda
4464
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4465
  msgid "c-rw"
4466
  msgstr "Rwanda"
4467
 
4468
  # Saint Kitts and Nevis
4469
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4470
  msgid "c-kn"
4471
  msgstr "Saint Kitts and Nevis"
4472
 
4473
  # Saint Lucia
4474
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4475
  msgid "c-lc"
4476
  msgstr "Saint Lucia"
4477
 
4478
  # Saint Martin
4479
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4480
  msgid "c-mf"
4481
  msgstr "Saint Martin"
4482
 
4483
  # Saint Vincent and the Grenadines
4484
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4485
  msgid "c-vc"
4486
  msgstr "Saint Vincent and the Grenadines"
4487
 
4488
  # Samoa
4489
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4490
  msgid "c-ws"
4491
  msgstr "Samoa"
4492
 
4493
  # Sao Tome and Principe
4494
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4495
  msgid "c-st"
4496
  msgstr "Sao Tome and Principe"
4497
 
4498
  # Saudi Arabia
4499
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4500
  msgid "c-sa"
4501
  msgstr "Saudi Arabia"
4502
 
4503
  # Senegal
4504
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4505
  msgid "c-sn"
4506
  msgstr "Senegal"
4507
 
4508
  # Serbia
4509
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4510
  msgid "c-rs"
4511
  msgstr "Serbia"
4512
 
4513
  # Sierra Leone
4514
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4515
  msgid "c-sl"
4516
  msgstr "Sierra Leone"
4517
 
4518
  # Singapore
4519
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4520
  msgid "c-sg"
4521
  msgstr "Singapore"
4522
 
4523
  # Slovakia
4524
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4525
  msgid "c-sk"
4526
  msgstr "Slovakia"
4527
 
4528
  # Slovenia
4529
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4530
  msgid "c-si"
4531
  msgstr "Slovenia"
4532
 
4533
  # Solomon Islands
4534
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4535
  msgid "c-sb"
4536
  msgstr "Solomon Islands"
4537
 
4538
  # Somalia
4539
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4540
  msgid "c-so"
4541
  msgstr "Somalia"
4542
 
4543
  # South Africa
4544
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4545
  msgid "c-za"
4546
  msgstr "South Africa"
4547
 
4548
  # South Georgia and the South Sandwich Islands
4549
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4550
  msgid "c-gs"
4551
  msgstr "South Georgia and the South Sandwich Islands"
4552
 
4553
  # Spain
4554
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4555
  msgid "c-es"
4556
  msgstr "Spain"
4557
 
4558
  # Sri Lanka
4559
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4560
  msgid "c-lk"
4561
  msgstr "Sri Lanka"
4562
 
4563
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4564
  msgid "c-sc"
4565
  msgstr "Seychelles"
4566
 
4567
  # Sudan
4568
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4569
  msgid "c-sd"
4570
  msgstr "Sudan"
4571
 
4572
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4573
  msgid "c-ss"
4574
  msgstr "South Sudan"
4575
 
4576
  # Suriname
4577
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4578
  msgid "c-sr"
4579
  msgstr "Suriname"
4580
 
4581
  # Svalbard and Jan Mayen
4582
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4583
  msgid "c-sj"
4584
  msgstr "Svalbard and Jan Mayen"
4585
 
4586
  # Swaziland
4587
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4588
  msgid "c-sz"
4589
  msgstr "Swaziland"
4590
 
4591
  # Sweden
4592
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4593
  msgid "c-se"
4594
  msgstr "Sweden"
4595
 
4596
  # Switzerland
4597
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4598
  msgid "c-ch"
4599
  msgstr "Switzerland"
4600
 
4601
  # Syrian Arab Republic
4602
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4603
  msgid "c-sy"
4604
  msgstr "Syrian Arab Republic"
4605
 
4606
  # Taiwan, Province of China
4607
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4608
  msgid "c-tw"
4609
  msgstr "Taiwan"
4610
 
4611
  # Tajikistan
4612
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4613
  msgid "c-tj"
4614
  msgstr "Tajikistan"
4615
 
4616
  # United Republic of Tanzania
4617
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4618
  msgid "c-tz"
4619
  msgstr "United Republic of Tanzania"
4620
 
4621
  # Thailand
4622
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4623
  msgid "c-th"
4624
  msgstr "Thailand"
4625
 
4626
  # Timor-Leste
4627
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4628
  msgid "c-tl"
4629
  msgstr "Timor-Leste"
4630
 
4631
  # Togo
4632
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4633
  msgid "c-tg"
4634
  msgstr "Togo"
4635
 
4636
  # Tonga
4637
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4638
  msgid "c-to"
4639
  msgstr "Tonga"
4640
 
4641
  # Trinidad and Tobago
4642
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4643
  msgid "c-tt"
4644
  msgstr "Trinidad and Tobago"
4645
 
4646
  # Tunisia
4647
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4648
  msgid "c-tn"
4649
  msgstr "Tunisia"
4650
 
4651
  # Turkey
4652
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4653
  msgid "c-tr"
4654
  msgstr "Turkey"
4655
 
4656
  # Turkmenistan
4657
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4658
  msgid "c-tm"
4659
  msgstr "Turkmenistan"
4660
 
4661
  # Turks and Caicos Islands
4662
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4663
  msgid "c-tc"
4664
  msgstr "Turks and Caicos Islands"
4665
 
4666
  # Uganda
4667
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4668
  msgid "c-ug"
4669
  msgstr "Uganda"
4670
 
4671
  # Ukraine
4672
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4673
  msgid "c-ua"
4674
  msgstr "Ukraine"
4675
 
4676
  # United Arab Emirates
4677
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4678
  msgid "c-ae"
4679
  msgstr "United Arab Emirates"
4680
 
4681
  # United Kingdom
4682
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4683
  msgid "c-gb"
4684
  msgstr "United Kingdom"
4685
 
4686
  # United States
4687
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4688
  msgid "c-us"
4689
  msgstr "United States"
4690
 
4691
  # Uruguay
4692
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4693
  msgid "c-uy"
4694
  msgstr "Uruguay"
4695
 
4696
  # Uzbekistan
4697
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4698
  msgid "c-uz"
4699
  msgstr "Uzbekistan"
4700
 
4701
  # Vanuatu
4702
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4703
  msgid "c-vu"
4704
  msgstr "Vanuatu"
4705
 
4706
  # Venezuela
4707
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4708
  msgid "c-ve"
4709
  msgstr "Venezuela"
4710
 
4711
  # Viet Nam
4712
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4713
  msgid "c-vn"
4714
  msgstr "Viet Nam"
4715
 
4716
  # British Virgin Islands
4717
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4718
  msgid "c-vg"
4719
  msgstr "British Virgin Islands"
4720
 
4721
  # U.S. Virgin Islands
4722
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4723
  msgid "c-vi"
4724
  msgstr "U.S. Virgin Islands"
4725
 
4726
  # Western Sahara
4727
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4728
  msgid "c-eh"
4729
  msgstr "Western Sahara"
4730
 
4731
  # Yemen
4732
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4733
  msgid "c-ye"
4734
  msgstr "Yemen"
4735
 
4736
  # Zambia
4737
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4738
  msgid "c-zm"
4739
  msgstr "Zambia"
4740
 
4741
  # Zimbabwe
4742
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4743
  msgid "c-zw"
4744
  msgstr "Zimbabwe"
4745
 
4746
  # Guernsey
4747
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4748
  msgid "c-gg"
4749
  msgstr "Guernsey"
4750
 
4751
  # Jersey
4752
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4753
  msgid "c-je"
4754
  msgstr "Jersey"
4755
 
4756
  # Isle of Man
4757
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4758
  msgid "c-im"
4759
  msgstr "Isle of Man"
4760
 
4761
  # Maldives
4762
+ #: ../../admin/view/wp-slimstat-reports.php:1576
4763
  msgid "c-mv"
4764
  msgstr "Maldives"
4765
 
4766
+ #: ../../admin/view/wp-slimstat-reports.php:1577
4767
  msgid "c-eu"
4768
+ msgstr "Europe"
4769
 
4770
+ #: ../../admin/view/wp-slimstat-reports.php:1669
4771
  msgid ""
4772
  "This value includes not only posts, but also custom post types, regardless "
4773
  "of their status"
4774
  msgstr ""
4775
 
4776
+ #: ../../admin/view/wp-slimstat-reports.php:1670
4777
  msgid "Content Items"
4778
  msgstr ""
4779
 
4780
+ #: ../../admin/view/wp-slimstat-reports.php:1671
4781
  msgid "Total Comments"
4782
  msgstr ""
4783
 
4784
+ #: ../../admin/view/wp-slimstat-reports.php:1672
4785
  msgid "Pingbacks"
4786
  msgstr ""
4787
 
4788
+ #: ../../admin/view/wp-slimstat-reports.php:1673
4789
  msgid "Trackbacks"
4790
  msgstr ""
4791
 
4792
+ #: ../../admin/view/wp-slimstat-reports.php:1674
4793
  msgid "Avg Comments Per Post"
4794
  msgstr ""
4795
 
4796
+ #: ../../admin/view/wp-slimstat-reports.php:1675
4797
  msgid "Avg Posts Per Day"
4798
  msgstr ""
4799
 
4800
+ #: ../../admin/view/wp-slimstat-reports.php:1676
4801
  msgid "Avg Server Latency"
4802
  msgstr ""
4803
 
4804
+ #: ../../admin/view/wp-slimstat-reports.php:1677
4805
  msgid "Avg Page Load Time"
4806
  msgstr ""
4807
 
4808
+ #: ../../admin/view/wp-slimstat-reports.php:1695
4809
  msgid "src"
4810
  msgstr ""
4811
 
4812
+ #: ../../admin/view/wp-slimstat-reports.php:1698
4813
  msgid "serp"
4814
  msgstr ""
4815
 
4816
+ #: ../../admin/view/wp-slimstat-reports.php:1705
4817
  msgid "Go to the referring page"
4818
  msgstr ""
4819
 
4820
+ #: ../../admin/view/wp-slimstat-reports.php:1727
4821
  msgid "Remove filter for"
4822
  msgstr ""
4823
 
4824
+ #: ../../admin/view/wp-slimstat-reports.php:1731
4825
  msgid "Save"
4826
  msgstr ""
4827
 
4828
+ #: ../../admin/view/wp-slimstat-reports.php:1734
4829
  msgid "Reset All"
4830
  msgstr ""
4831
 
4832
+ #: ../../admin/view/wp-slimstat-reports.php:1738
4833
  msgid "Current filters:"
4834
  msgstr ""
4835
 
4839
  msgstr ""
4840
 
4841
  #: ../../admin/wp-slimstat-admin.php:641 ../../admin/wp-slimstat-admin.php:656
4842
+ #: ../../wp-slimstat.php:1755
4843
  msgid "Custom Reports"
4844
  msgstr ""
4845
 
5042
  "all others"
5043
  msgstr ""
5044
 
5045
+ #: ../../admin/wp-slimstat-admin.php:1030
5046
+ msgid "Pageview Attributes"
5047
+ msgstr ""
5048
+
5049
  #: ../../admin/wp-slimstat-admin.php:1030
5050
  msgid ""
5051
  "this field is set to <em>[pre]</em> if the resource has been accessed "
5117
  msgid "Site Specific"
5118
  msgstr ""
5119
 
5120
+ #: ../../wp-slimstat.php:212 ../../wp-slimstat.php:488
5121
  msgid "Pageview filtered by third-party code"
5122
  msgstr ""
5123
 
5124
+ #: ../../wp-slimstat.php:229
5125
  msgid "Malformed URL"
5126
  msgstr ""
5127
 
5128
+ #: ../../wp-slimstat.php:248
5129
  msgid "Referrer is blacklisted"
5130
  msgstr ""
5131
 
5132
+ #: ../../wp-slimstat.php:326
5133
  msgid "Permalink is blacklisted"
5134
  msgstr ""
5135
 
5136
+ #: ../../wp-slimstat.php:337
5137
  msgid "Empty or not supported IP address format (IPv6)"
5138
  msgstr ""
5139
 
5140
+ #: ../../wp-slimstat.php:346
5141
  msgid "Logged in user not tracked"
5142
  msgstr ""
5143
 
5144
+ #: ../../wp-slimstat.php:354
5145
  msgid "User with given capability not tracked"
5146
  msgstr ""
5147
 
5148
+ #: ../../wp-slimstat.php:361
5149
  #, php-format
5150
  msgid "User %s is blacklisted"
5151
  msgstr ""
5152
 
5153
+ #: ../../wp-slimstat.php:381
5154
  #, php-format
5155
  msgid "Spammer %s not tracked"
5156
  msgstr ""
5157
 
5158
+ #: ../../wp-slimstat.php:410
5159
  #, php-format
5160
  msgid "IP address %s is blacklisted"
5161
  msgstr ""
5162
 
5163
+ #: ../../wp-slimstat.php:439
5164
  #, php-format
5165
  msgid "Country %s is blacklisted"
5166
  msgstr ""
5167
 
5168
+ #: ../../wp-slimstat.php:448
5169
  msgid "Prefetch requests are ignored"
5170
  msgstr ""
5171
 
5172
+ #: ../../wp-slimstat.php:462
5173
  msgid "Bot not tracked"
5174
  msgstr ""
5175
 
5176
+ #: ../../wp-slimstat.php:471
5177
  #, php-format
5178
  msgid "Browser %s is blacklisted"
5179
  msgstr ""
5180
 
5181
+ #: ../../wp-slimstat.php:1140
5182
  msgid "Invalid payload string. Try clearing your WordPress cache."
5183
  msgstr ""
5184
 
5185
+ #: ../../wp-slimstat.php:1150
5186
  msgid "Invalid data signature. Try clearing your WordPress cache."
5187
  msgstr ""
5188
 
5189
+ #: ../../wp-slimstat.php:1271
5190
  msgid "There was an error downloading the MaxMind Geolite DB:"
5191
  msgstr ""
5192
 
5193
+ #: ../../wp-slimstat.php:1279 ../../wp-slimstat.php:1288
5194
  msgid "There was an error opening the zipped MaxMind Geolite DB."
5195
  msgstr ""
5196
 
5197
+ #: ../../wp-slimstat.php:1283
5198
  msgid "Function gzopen not defined. Aborting."
5199
  msgstr ""
5200
 
5201
+ #: ../../wp-slimstat.php:1293
5202
  msgid "There was an error opening the unzipped MaxMind Geolite DB."
5203
  msgstr ""
5204
 
admin/view/right-now.php CHANGED
@@ -4,6 +4,8 @@ if ( !function_exists( 'add_action' ) ) {
4
  exit(0);
5
  }
6
 
 
 
7
  // Available icons
8
  $supported_browser_icons = array('Android','Anonymouse','Baiduspider','BlackBerry','BingBot','CFNetwork','Chrome','Chromium','Default Browser','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','Python','PycURL','Safari','W3C_Validator','WordPress','Yahoo! Slurp','YandexBot');
9
  $supported_os_icons = array('android','blackberry os','cellos','chromeos','ios','iphone osx','java','linux','macosx','rim os','symbianos','win7','win8','win8.1','winphone7','winphone7.5','winphone8','winphone8.1','winvista','winxp','unknown');
@@ -12,6 +14,7 @@ $supported_browser_types = array(__('Human','wp-slimstat'),__('Bot/Crawler','wp-
12
  $plugin_url = plugins_url('', dirname(__FILE__));
13
 
14
  // Get the data
 
15
  $all_results = wp_slimstat_db::get_recent( wp_slimstat_reports::$reports_info[ 'slim_p7_02' ][ 'callback_args' ] );
16
  $results = array_slice(
17
  $all_results,
@@ -19,6 +22,9 @@ $results = array_slice(
19
  wp_slimstat::$options[ 'number_results_raw_data' ]
20
  );
21
 
 
 
 
22
  // Return the results if we are not echoing them (export, email, etc)
23
  if ( isset( $_args[ 'echo' ] ) && $_args[ 'echo' ] === false ) {
24
  return $results;
@@ -131,7 +137,7 @@ else {
131
  }
132
 
133
  $performance = '';
134
- if (!empty($results[$i]['server_latency']) || !empty($results[$i]['page_performance'])){
135
  $performance = "<i class='slimstat-font-gauge spaced' title='".__('Server Latency and Page Speed in milliseconds','wp-slimstat')."'></i> ".__('SL','wp-slimstat').": {$results[$i]['server_latency']} / ".__('PS','wp-slimstat').": {$results[$i]['page_performance']}";
136
  }
137
 
@@ -140,7 +146,7 @@ else {
140
  $base_host = $parse_url['host'];
141
  $base_url = '';
142
 
143
- if ( !empty( $results[$i]['resource'] ) ) {
144
  if (!empty($results[$i]['blog_id'])){
145
  $base_url = $parse_url['scheme'].'://'.$base_host;
146
  }
@@ -155,16 +161,22 @@ else {
155
  $results[$i]['searchterms'] = "<i class='spaced slimstat-font-search' title='".__('Search Terms','wp-slimstat')."'></i> ".wp_slimstat_reports::get_search_terms_info($results[$i]['searchterms'], $results[$i]['referer']);
156
  }
157
 
158
- $domain = parse_url($results[$i]['referer']);
159
- $domain = ( !empty( $domain[ 'host' ] ) ) ? $domain['host'] : '';
160
- $results[$i]['referer'] = (!empty($results[$i]['referer']) && empty($results[$i]['searchterms']))?"<a class='spaced slimstat-font-login' target='_blank' title='".htmlentities(__('Open this referrer in a new window','wp-slimstat'), ENT_QUOTES, 'UTF-8')."' href='{$results[$i]['referer']}'></a> $domain":'';
161
- $results[$i][ 'outbound_resource' ] = ( !empty( $results[ $i ][ 'outbound_resource' ] ) ) ? "<a class='inline-icon spaced slimstat-font-logout' target='_blank' title='".htmlentities( __( 'Open this outbound link in a new window', 'wp-slimstat' ), ENT_QUOTES, 'UTF-8' ) . "' href='{$results[$i]['outbound_resource']}'></a> {$results[$i]['outbound_resource']}" : '';
162
- $results[$i]['dt'] = "<i class='spaced slimstat-font-clock' title='".__('Date and Time','wp-slimstat')."'></i> {$results[$i]['dt']}";
163
- $results[$i]['content_type'] = !empty($results[$i]['content_type'])?"<i class='spaced slimstat-font-doc' title='".__('Content Type','wp-slimstat')."'></i> <a class='slimstat-filter-link' href='".wp_slimstat_reports::fs_url('content_type equals '.$results[$i]['content_type'])."'>{$results[$i]['content_type']}</a> ":'';
164
 
165
- if ($current_user_can_delete){
166
- $delete_row = "<a class='slimstat-delete-entry slimstat-font-cancel' data-pageview-id='{$results[$i]['id']}' title='".htmlentities(__('Delete this pageview','wp-slimstat'), ENT_QUOTES, 'UTF-8')."' href='#'></a>";
 
167
  }
 
 
 
 
 
168
 
169
  echo "<p>{$results[$i]['resource']} <span class='details'>{$results[$i]['searchterms']} {$results[$i]['referer']} {$results[$i]['outbound_resource']} {$results[$i]['content_type']} $performance {$results[$i]['dt']} {$delete_row}</span></p>";
170
  }
4
  exit(0);
5
  }
6
 
7
+ $is_dashboard = empty( $_GET[ 'page' ] ) || $_GET[ 'page' ] != 'wp-slim-view-1';
8
+
9
  // Available icons
10
  $supported_browser_icons = array('Android','Anonymouse','Baiduspider','BlackBerry','BingBot','CFNetwork','Chrome','Chromium','Default Browser','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','Python','PycURL','Safari','W3C_Validator','WordPress','Yahoo! Slurp','YandexBot');
11
  $supported_os_icons = array('android','blackberry os','cellos','chromeos','ios','iphone osx','java','linux','macosx','rim os','symbianos','win7','win8','win8.1','winphone7','winphone7.5','winphone8','winphone8.1','winvista','winxp','unknown');
14
  $plugin_url = plugins_url('', dirname(__FILE__));
15
 
16
  // Get the data
17
+ wp_slimstat_db::$debug_message = '';
18
  $all_results = wp_slimstat_db::get_recent( wp_slimstat_reports::$reports_info[ 'slim_p7_02' ][ 'callback_args' ] );
19
  $results = array_slice(
20
  $all_results,
22
  wp_slimstat::$options[ 'number_results_raw_data' ]
23
  );
24
 
25
+ // Echo the debug message
26
+ echo wp_slimstat_db::$debug_message;
27
+
28
  // Return the results if we are not echoing them (export, email, etc)
29
  if ( isset( $_args[ 'echo' ] ) && $_args[ 'echo' ] === false ) {
30
  return $results;
137
  }
138
 
139
  $performance = '';
140
+ if ( !$is_dashboard && ( !empty( $results[ $i ][ 'server_latency' ] ) || !empty( $results[ $i ][ 'page_performance' ] ) ) ) {
141
  $performance = "<i class='slimstat-font-gauge spaced' title='".__('Server Latency and Page Speed in milliseconds','wp-slimstat')."'></i> ".__('SL','wp-slimstat').": {$results[$i]['server_latency']} / ".__('PS','wp-slimstat').": {$results[$i]['page_performance']}";
142
  }
143
 
146
  $base_host = $parse_url['host'];
147
  $base_url = '';
148
 
149
+ if ( !empty( $results[ $i ][ 'resource' ] ) ) {
150
  if (!empty($results[$i]['blog_id'])){
151
  $base_url = $parse_url['scheme'].'://'.$base_host;
152
  }
161
  $results[$i]['searchterms'] = "<i class='spaced slimstat-font-search' title='".__('Search Terms','wp-slimstat')."'></i> ".wp_slimstat_reports::get_search_terms_info($results[$i]['searchterms'], $results[$i]['referer']);
162
  }
163
 
164
+ if ( !$is_dashboard ) {
165
+ $domain = parse_url( $results[ $i ] [ 'referer' ] );
166
+ $domain = !empty( $domain[ 'host' ] ) ? $domain[ 'host' ] : '';
167
+ $results[$i][ 'referer' ] = (!empty($results[$i]['referer']) && empty($results[$i]['searchterms']))?"<a class='spaced slimstat-font-login' target='_blank' title='".htmlentities(__('Open this referrer in a new window','wp-slimstat'), ENT_QUOTES, 'UTF-8')."' href='{$results[$i]['referer']}'></a> $domain":'';
168
+ $results[$i][ 'outbound_resource' ] = ( !empty( $results[ $i ][ 'outbound_resource' ] ) ) ? "<a class='inline-icon spaced slimstat-font-logout' target='_blank' title='".htmlentities( __( 'Open this outbound link in a new window', 'wp-slimstat' ), ENT_QUOTES, 'UTF-8' ) . "' href='{$results[$i]['outbound_resource']}'></a> {$results[$i]['outbound_resource']}" : '';
169
+ $results[$i][ 'content_type' ] = !empty($results[$i]['content_type'])?"<i class='spaced slimstat-font-doc' title='".__('Content Type','wp-slimstat')."'></i> <a class='slimstat-filter-link' href='".wp_slimstat_reports::fs_url('content_type equals '.$results[$i]['content_type'])."'>{$results[$i]['content_type']}</a> ":'';
170
 
171
+ if ($current_user_can_delete){
172
+ $delete_row = "<a class='slimstat-delete-entry slimstat-font-cancel' data-pageview-id='{$results[$i]['id']}' title='".htmlentities(__('Delete this pageview','wp-slimstat'), ENT_QUOTES, 'UTF-8')."' href='#'></a>";
173
+ }
174
  }
175
+ else {
176
+ $results[$i]['referer'] = $results[$i][ 'outbound_resource' ] = $results[$i][ 'content_type' ] = '';
177
+ }
178
+
179
+ $results[$i]['dt'] = "<i class='spaced slimstat-font-clock' title='".__('Date and Time','wp-slimstat')."'></i> {$results[$i]['dt']}";
180
 
181
  echo "<p>{$results[$i]['resource']} <span class='details'>{$results[$i]['searchterms']} {$results[$i]['referer']} {$results[$i]['outbound_resource']} {$results[$i]['content_type']} $performance {$results[$i]['dt']} {$delete_row}</span></p>";
182
  }
admin/view/wp-slimstat-db.php CHANGED
@@ -15,6 +15,9 @@ class wp_slimstat_db {
15
  // Filters that are not visible in the dropdown
16
  public static $all_columns_names = array();
17
 
 
 
 
18
  /*
19
  * Sets the filters and other structures needed to store the data retrieved from the DB
20
  */
@@ -286,15 +289,11 @@ class wp_slimstat_db {
286
  }
287
  }
288
 
289
- protected static function _show_debug( $_message = '' ) {
290
- echo "<p class='debug'>$_message</p>";
291
- }
292
-
293
  public static function get_results( $_sql = '', $_select_no_aggregate_values = '', $_order_by = '', $_group_by = '', $_aggregate_values_add = '' ) {
294
  $_sql = apply_filters( 'slimstat_get_results_sql', $_sql, $_select_no_aggregate_values, $_order_by, $_group_by, $_aggregate_values_add );
295
 
296
  if ( wp_slimstat::$options[ 'show_sql_debug' ] == 'yes' ) {
297
- self::_show_debug( $_sql );
298
  }
299
 
300
  return wp_slimstat::$wpdb->get_results( $_sql, ARRAY_A );
@@ -304,7 +303,7 @@ class wp_slimstat_db {
304
  $_sql = apply_filters( 'slimstat_get_var_sql', $_sql, $_aggregate_value );
305
 
306
  if ( wp_slimstat::$options[ 'show_sql_debug' ] == 'yes' ) {
307
- self::_show_debug( $_sql );
308
  }
309
 
310
  return wp_slimstat::$wpdb->get_var( $_sql );
15
  // Filters that are not visible in the dropdown
16
  public static $all_columns_names = array();
17
 
18
+ // Debug message
19
+ public static $debug_message = '';
20
+
21
  /*
22
  * Sets the filters and other structures needed to store the data retrieved from the DB
23
  */
289
  }
290
  }
291
 
 
 
 
 
292
  public static function get_results( $_sql = '', $_select_no_aggregate_values = '', $_order_by = '', $_group_by = '', $_aggregate_values_add = '' ) {
293
  $_sql = apply_filters( 'slimstat_get_results_sql', $_sql, $_select_no_aggregate_values, $_order_by, $_group_by, $_aggregate_values_add );
294
 
295
  if ( wp_slimstat::$options[ 'show_sql_debug' ] == 'yes' ) {
296
+ self::$debug_message .= "<p class='debug'>$_sql</p>";
297
  }
298
 
299
  return wp_slimstat::$wpdb->get_results( $_sql, ARRAY_A );
303
  $_sql = apply_filters( 'slimstat_get_var_sql', $_sql, $_aggregate_value );
304
 
305
  if ( wp_slimstat::$options[ 'show_sql_debug' ] == 'yes' ) {
306
+ self::$debug_message .= "<p class='debug'>$_sql</p>";
307
  }
308
 
309
  return wp_slimstat::$wpdb->get_var( $_sql );
admin/view/wp-slimstat-reports.php CHANGED
@@ -17,7 +17,7 @@ class wp_slimstat_reports {
17
  */
18
  public static function init(){
19
  self::$screens_info = array(
20
- 'wp-slim-view-1' => __( 'Real-Time Log', 'wp-slimstat' ),
21
  'wp-slim-view-2' => __( 'Overview', 'wp-slimstat' ),
22
  'wp-slim-view-3' => __( 'Audience', 'wp-slimstat' ),
23
  'wp-slim-view-4' => __( 'Site Analysis', 'wp-slimstat' ),
@@ -89,7 +89,7 @@ class wp_slimstat_reports {
89
  'raw' => array( 'wp_slimstat_db', 'get_recent' )
90
  ),
91
  'classes' => array( 'full-width', 'tall' ),
92
- 'screens' => array( 'wp-slim-view-1' ),
93
  'tooltip' => __( 'Color codes', 'wp-slimstat' ).'</strong><p><span class="little-color-box is-search-engine"></span> '.__( 'From search result page', 'wp-slimstat' ).'</p><p><span class="little-color-box is-known-visitor"></span> '.__( 'Known Visitor', 'wp-slimstat' ).'</p><p><span class="little-color-box is-known-user"></span> '.__( 'Known Users', 'wp-slimstat' ).'</p><p><span class="little-color-box is-direct"></span> '.__( 'Other Humans', 'wp-slimstat' ).'</p><p><span class="little-color-box"></span> '.__( 'Bot or Crawler', 'wp-slimstat' ).'</p>'
94
  ),
95
 
@@ -620,7 +620,7 @@ class wp_slimstat_reports {
620
  'callback_args' => array(
621
  'type' => 'recent',
622
  'columns' => 'resource',
623
- 'where' => '(content_type => "category" OR content_type => "tag")',
624
  'raw' => array( 'wp_slimstat_db', 'get_recent' )
625
  ),
626
  'classes' => array( 'normal', 'hidden' ),
@@ -899,8 +899,11 @@ class wp_slimstat_reports {
899
 
900
  public static function raw_results_to_html( $_args = array() ) {
901
 
 
902
  $all_results = call_user_func( $_args[ 'raw' ] , $_args );
903
 
 
 
904
  $results = array_slice(
905
  $all_results,
906
  wp_slimstat_db::$filters_normalized[ 'misc' ][ 'start_from' ],
@@ -936,6 +939,7 @@ class wp_slimstat_reports {
936
  }
937
 
938
  self::report_pagination( $count_page_results, count( $all_results ) );
 
939
  $is_expanded = ( wp_slimstat::$options['expand_details'] == 'yes' ) ? ' expanded' : '';
940
  $permalinks_enabled = get_option( 'permalink_structure' );
941
 
@@ -1071,6 +1075,8 @@ class wp_slimstat_reports {
1071
  }
1072
 
1073
  public static function show_chart( $_args = array() ){
 
 
1074
  switch ( $_args[ 'type' ] ) {
1075
  case 'p1_01':
1076
  $chart_data = wp_slimstat_db::get_data_for_chart( 'COUNT(ip)', 'COUNT(DISTINCT(ip))' );
@@ -1093,7 +1099,7 @@ class wp_slimstat_reports {
1093
  break;
1094
  }
1095
 
1096
-
1097
  ?>
1098
  <div id="chart-placeholder"></div><div id="chart-legend"></div>
1099
  <script type="text/javascript">
@@ -1823,7 +1829,7 @@ class wp_slimstat_reports {
1823
  }
1824
  }
1825
 
1826
- return htmlentities( urldecode( $resource_title ), ENT_QUOTES, 'UTF-8' );
1827
  }
1828
 
1829
  public static function inline_help( $_text = '', $_echo = true ) {
17
  */
18
  public static function init(){
19
  self::$screens_info = array(
20
+ 'wp-slim-view-1' => __( 'Access Log', 'wp-slimstat' ),
21
  'wp-slim-view-2' => __( 'Overview', 'wp-slimstat' ),
22
  'wp-slim-view-3' => __( 'Audience', 'wp-slimstat' ),
23
  'wp-slim-view-4' => __( 'Site Analysis', 'wp-slimstat' ),
89
  'raw' => array( 'wp_slimstat_db', 'get_recent' )
90
  ),
91
  'classes' => array( 'full-width', 'tall' ),
92
+ 'screens' => array( 'wp-slim-view-1', 'dashboard' ),
93
  'tooltip' => __( 'Color codes', 'wp-slimstat' ).'</strong><p><span class="little-color-box is-search-engine"></span> '.__( 'From search result page', 'wp-slimstat' ).'</p><p><span class="little-color-box is-known-visitor"></span> '.__( 'Known Visitor', 'wp-slimstat' ).'</p><p><span class="little-color-box is-known-user"></span> '.__( 'Known Users', 'wp-slimstat' ).'</p><p><span class="little-color-box is-direct"></span> '.__( 'Other Humans', 'wp-slimstat' ).'</p><p><span class="little-color-box"></span> '.__( 'Bot or Crawler', 'wp-slimstat' ).'</p>'
94
  ),
95
 
620
  'callback_args' => array(
621
  'type' => 'recent',
622
  'columns' => 'resource',
623
+ 'where' => '(content_type = "category" OR content_type = "tag")',
624
  'raw' => array( 'wp_slimstat_db', 'get_recent' )
625
  ),
626
  'classes' => array( 'normal', 'hidden' ),
899
 
900
  public static function raw_results_to_html( $_args = array() ) {
901
 
902
+ wp_slimstat_db::$debug_message = '';
903
  $all_results = call_user_func( $_args[ 'raw' ] , $_args );
904
 
905
+ echo wp_slimstat_db::$debug_message;
906
+
907
  $results = array_slice(
908
  $all_results,
909
  wp_slimstat_db::$filters_normalized[ 'misc' ][ 'start_from' ],
939
  }
940
 
941
  self::report_pagination( $count_page_results, count( $all_results ) );
942
+
943
  $is_expanded = ( wp_slimstat::$options['expand_details'] == 'yes' ) ? ' expanded' : '';
944
  $permalinks_enabled = get_option( 'permalink_structure' );
945
 
1075
  }
1076
 
1077
  public static function show_chart( $_args = array() ){
1078
+ wp_slimstat_db::$debug_message = '';
1079
+
1080
  switch ( $_args[ 'type' ] ) {
1081
  case 'p1_01':
1082
  $chart_data = wp_slimstat_db::get_data_for_chart( 'COUNT(ip)', 'COUNT(DISTINCT(ip))' );
1099
  break;
1100
  }
1101
 
1102
+ echo wp_slimstat_db::$debug_message;
1103
  ?>
1104
  <div id="chart-placeholder"></div><div id="chart-legend"></div>
1105
  <script type="text/javascript">
1829
  }
1830
  }
1831
 
1832
+ return str_replace( array( '<', '>' ), array( '&lt;', '&gt;' ), urldecode( $resource_title ) );
1833
  }
1834
 
1835
  public static function inline_help( $_text = '', $_echo = true ) {
admin/wp-slimstat-admin.php CHANGED
@@ -11,8 +11,8 @@ class wp_slimstat_admin{
11
  */
12
  public static function init(){
13
  if ((wp_slimstat::$options['enable_ads_network'] == 'yes' || wp_slimstat::$options['enable_ads_network'] == 'no')){
14
- self::$admin_notice = "<strong>Attention, please!</strong> We are still getting support requests from users having issues with Slimstat because of the GeoLite add-on that was distributed a few months ago. If you are still using this separate add-on, we'd like to remind you that Slimstat 4 introduced a new more intuitive way of managing the MaxMind Geolocation database bundled with our software. Actually, the free Geolite plugin <strong>is not compatible</strong> with the latest version of Slimstat, because of the IPv6 support we introduced a few weeks ago. We recommend that you uninstall the add-on from your systems, thus improving the overall performance of your website. As usual, do not hesitate to contact us if you have any questions.";
15
- self::$admin_notice .= '<br/><br/><a id="slimstat-hide-admin-notice" href="#" class="button-secondary">I got it, thanks</a>';
16
  }
17
  else {
18
  self::$admin_notice = "
@@ -110,7 +110,7 @@ class wp_slimstat_admin{
110
  add_action('manage_posts_custom_column', array(__CLASS__, 'add_post_column'), 10, 2);
111
  add_action('manage_pages_custom_column', array(__CLASS__, 'add_post_column'), 10, 2);
112
 
113
- if( strpos( $_SERVER['REQUEST_URI'], 'edit.php' ) !== false || ( $temp >= 0 && strpos($_SERVER['REQUEST_URI'], '/wp-admin/', $temp) !== false ) ) {
114
  add_action('admin_enqueue_scripts', array(__CLASS__, 'wp_slimstat_stylesheet'));
115
  }
116
  }
@@ -606,7 +606,7 @@ class wp_slimstat_admin{
606
  $params = array(
607
  'datepicker_image' => plugins_url('/admin/images/datepicker.png', dirname(__FILE__)),
608
  'expand_details' => isset(wp_slimstat::$options['expand_details'])?wp_slimstat::$options['expand_details']:'no',
609
- 'refresh_interval' => ( !empty( $_GET[ 'page' ] ) && $_GET[ 'page' ] == 'wp-slim-view-1' ) ? intval( wp_slimstat::$options[ 'refresh_interval' ] ) : 0,
610
  'text_direction' => $GLOBALS['wp_locale']->text_direction,
611
  'use_slimscroll' => isset(wp_slimstat::$options['use_slimscroll'])?wp_slimstat::$options['use_slimscroll']:'yes'
612
  );
@@ -820,7 +820,7 @@ class wp_slimstat_admin{
820
  * Displays a message related to the current version of Slimstat
821
  */
822
  public static function show_admin_notice(){
823
- echo '<div class="updated slimstat-notice" style="padding:10px"><span>'.self::$admin_notice.'</span></div>';
824
  }
825
 
826
  /**
11
  */
12
  public static function init(){
13
  if ((wp_slimstat::$options['enable_ads_network'] == 'yes' || wp_slimstat::$options['enable_ads_network'] == 'no')){
14
+ self::$admin_notice = "The month of August is approaching rather quickly and our support team is taking a few days off. We will still be monitoring our ticketing system, however it might take a little longer to get an answer to your requests. Please be patient and remember that even hardcore developers deserve a little break once in a while.";
15
+ self::$admin_notice .= '<br/><br/><a id="slimstat-hide-admin-notice" href="#" class="button-secondary">Got it, thanks</a>';
16
  }
17
  else {
18
  self::$admin_notice = "
110
  add_action('manage_posts_custom_column', array(__CLASS__, 'add_post_column'), 10, 2);
111
  add_action('manage_pages_custom_column', array(__CLASS__, 'add_post_column'), 10, 2);
112
 
113
+ if ( strpos( $_SERVER['REQUEST_URI'], 'edit.php' ) !== false ) {
114
  add_action('admin_enqueue_scripts', array(__CLASS__, 'wp_slimstat_stylesheet'));
115
  }
116
  }
606
  $params = array(
607
  'datepicker_image' => plugins_url('/admin/images/datepicker.png', dirname(__FILE__)),
608
  'expand_details' => isset(wp_slimstat::$options['expand_details'])?wp_slimstat::$options['expand_details']:'no',
609
+ 'refresh_interval' => intval( wp_slimstat::$options[ 'refresh_interval' ] ),
610
  'text_direction' => $GLOBALS['wp_locale']->text_direction,
611
  'use_slimscroll' => isset(wp_slimstat::$options['use_slimscroll'])?wp_slimstat::$options['use_slimscroll']:'yes'
612
  );
820
  * Displays a message related to the current version of Slimstat
821
  */
822
  public static function show_admin_notice(){
823
+ echo '<div class="notice slimstat-notice" style="padding:10px"><span>'.self::$admin_notice.'</span></div>';
824
  }
825
 
826
  /**
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: analytics, tracking, reports, analyze, wassup, geolocation, online users, spider, tracker, pageviews, stats, maxmind, statistics, statpress
5
  Requires at least: 3.8
6
  Tested up to: 4.3
7
- Stable tag: 4.1.5.1
8
 
9
  == Description ==
10
  [youtube https://www.youtube.com/watch?v=iJCtjxArq4U]
@@ -59,6 +59,17 @@ Our knowledge base is available on our [support center](http://docs.wp-slimstat.
59
 
60
  == Changelog ==
61
 
 
 
 
 
 
 
 
 
 
 
 
62
  = 4.1.5.1 =
63
  * [Update] Our Export to Excel add-on now includes the post slug, when appropriate.
64
  * [Fix] Removed a few warnings displayed when DEBUG MODE was enabled.
4
  Tags: analytics, tracking, reports, analyze, wassup, geolocation, online users, spider, tracker, pageviews, stats, maxmind, statistics, statpress
5
  Requires at least: 3.8
6
  Tested up to: 4.3
7
+ Stable tag: 4.1.5.2
8
 
9
  == Description ==
10
  [youtube https://www.youtube.com/watch?v=iJCtjxArq4U]
59
 
60
  == Changelog ==
61
 
62
+ = 4.1.5.2 =
63
+ * [Note] We are still getting support requests from users having issues with Slimstat because of the GeoLite add-on that was distributed a few months ago. If you are still using this separate add-on, we'd like to remind you that Slimstat 4 introduced a new more intuitive way of managing the MaxMind Geolocation database bundled with our software. Actually, the free Geolite plugin is not compatible with the latest version of Slimstat, because of the IPv6 support we introduced a few weeks ago. We recommend that you uninstall the add-on from your systems, thus improving the overall performance of your website. As usual, do not hesitate to contact us if you have any questions.
64
+ * [Update] Restored Activity Log report in the WordPress Dashboard.
65
+ * [Fix] The Add-ons tab under settings was visible even if no add-ons were installed (thank you, [greg57 and others](https://wordpress.org/support/topic/add-ons-tab-blank)).
66
+ * [Fix] Typo in our German localization (thank you, Marc-Oliver).
67
+ * [Fix] Adding users to the corresponding blacklist was not working if the table wp_users had certain collations (thank you, Romain Petges).
68
+ * [Fix] Non-standard quotes and other characters (hyphens, etc) were getting munged because of a security feature being overzealous (thank you, Victor).
69
+ * [Fix] SQL Debug Mode is now correctly displayed in the WP Dashboard reports.
70
+ * [Fix] More PHP warnings (debug mode) removed.
71
+ * [Fix] Added missing localization strings for certain operating systems (thank you, Romain Petges).
72
+
73
  = 4.1.5.1 =
74
  * [Update] Our Export to Excel add-on now includes the post slug, when appropriate.
75
  * [Fix] Removed a few warnings displayed when DEBUG MODE was enabled.
wp-slimstat.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Slimstat
4
  Plugin URI: http://wordpress.org/plugins/wp-slimstat/
5
  Description: The leading web analytics plugin for WordPress
6
- Version: 4.1.5.1
7
  Author: Camu
8
  Author URI: http://www.wp-slimstat.com/
9
  */
@@ -11,7 +11,7 @@ Author URI: http://www.wp-slimstat.com/
11
  if ( !empty( wp_slimstat::$options ) ) return true;
12
 
13
  class wp_slimstat {
14
- public static $version = '4.1.5.1';
15
  public static $options = array();
16
 
17
  public static $wpdb = '';
@@ -449,7 +449,7 @@ class wp_slimstat {
449
  return $_argument;
450
  }
451
  else{
452
- self::$stat['notes'][] = 'pre:yes';
453
  }
454
  }
455
 
@@ -457,8 +457,8 @@ class wp_slimstat {
457
  self::$browser = self::_get_browser();
458
 
459
  // Are we ignoring bots?
460
- if ((self::$options['javascript_mode'] == 'yes' || self::$options['ignore_bots'] == 'yes') && self::$browser['browser_type']%2 != 0){
461
- self::$stat['id'] = -211;
462
  self::_set_error_array( __( 'Bot not tracked', 'wp-slimstat' ) );
463
  return $_argument;
464
  }
@@ -490,7 +490,7 @@ class wp_slimstat {
490
  }
491
 
492
  // Implode the notes
493
- self::$stat['notes'] = implode(';', self::$stat['notes']);
494
 
495
  // Now let's save this information in the database
496
  self::$stat['id'] = self::_insert_row(self::$stat, $GLOBALS['wpdb']->prefix.'slim_stats');
@@ -1146,7 +1146,7 @@ class wp_slimstat {
1146
  list(self::$data_js['id'], $nonce) = explode('.', self::$data_js['id']);
1147
  if ($nonce !== md5(self::$data_js['id'].self::$options['secret'])){
1148
  do_action('slimstat_track_exit_103');
1149
- self::$stat[ 'id' ] = -102;
1150
  self::_set_error_array( __( 'Invalid data signature. Try clearing your WordPress cache.', 'wp-slimstat' ) );
1151
  self::slimstat_save_options();
1152
  exit('-103.0');
3
  Plugin Name: WP Slimstat
4
  Plugin URI: http://wordpress.org/plugins/wp-slimstat/
5
  Description: The leading web analytics plugin for WordPress
6
+ Version: 4.1.5.2
7
  Author: Camu
8
  Author URI: http://www.wp-slimstat.com/
9
  */
11
  if ( !empty( wp_slimstat::$options ) ) return true;
12
 
13
  class wp_slimstat {
14
+ public static $version = '4.1.5.2';
15
  public static $options = array();
16
 
17
  public static $wpdb = '';
449
  return $_argument;
450
  }
451
  else{
452
+ self::$stat[ 'notes' ][] = 'pre:yes';
453
  }
454
  }
455
 
457
  self::$browser = self::_get_browser();
458
 
459
  // Are we ignoring bots?
460
+ if ( ( self::$options[ 'javascript_mode' ] == 'yes' || self::$options[ 'ignore_bots' ] == 'yes' ) && self::$browser[ 'browser_type' ] % 2 != 0 ) {
461
+ self::$stat[ 'id' ] = -211;
462
  self::_set_error_array( __( 'Bot not tracked', 'wp-slimstat' ) );
463
  return $_argument;
464
  }
490
  }
491
 
492
  // Implode the notes
493
+ self::$stat[ 'notes' ] = implode( ';', self::$stat[ 'notes' ] );
494
 
495
  // Now let's save this information in the database
496
  self::$stat['id'] = self::_insert_row(self::$stat, $GLOBALS['wpdb']->prefix.'slim_stats');
1146
  list(self::$data_js['id'], $nonce) = explode('.', self::$data_js['id']);
1147
  if ($nonce !== md5(self::$data_js['id'].self::$options['secret'])){
1148
  do_action('slimstat_track_exit_103');
1149
+ self::$stat[ 'id' ] = -103;
1150
  self::_set_error_array( __( 'Invalid data signature. Try clearing your WordPress cache.', 'wp-slimstat' ) );
1151
  self::slimstat_save_options();
1152
  exit('-103.0');